diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..b694934fb --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +.venv \ No newline at end of file diff --git a/.env.example b/.env.example new file mode 100644 index 000000000..aebc40609 --- /dev/null +++ b/.env.example @@ -0,0 +1,9 @@ +DB_DRIVER=postgres + +POSTGRES_USER=admin +POSTGRES_PASSWORD=password +POSTGRES_DB= + +# asset storage +GCS_BUCKET_NAME= +GOOGLE_APPLICATION_CREDENTIALS=/path/to/gcs_credentials.json diff --git a/.gcloudignore b/.gcloudignore index 45eb6472f..177160c2f 100644 --- a/.gcloudignore +++ b/.gcloudignore @@ -2,6 +2,17 @@ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +tests +migration +gcs_credentials.json +launcher.sh +test.sh +docker/* +alembic/* +.gitattributes +.git/* + # User-specific stuff .idea/**/workspace.xml .idea/**/tasks.xml @@ -210,6 +221,7 @@ celerybeat.pid .venv env/ venv/ +.venv/* ENV/ env.bak/ venv.bak/ diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..526c8a38d --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.sh text eol=lf \ No newline at end of file diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml new file mode 100644 index 000000000..da47376f1 --- /dev/null +++ b/.github/workflows/dev_deploy.yml @@ -0,0 +1,83 @@ +name: CD (Development) + +on: + push: + branches: [dev] + +permissions: + contents: write + +jobs: + staging-deploy: + + runs-on: ubuntu-latest + environment: staging + + steps: + - name: Check out source repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Install uv in container + uses: astral-sh/setup-uv@v6 + with: + version: "latest" + + - name: Generate requirements.txt + run: | + uv export -o requirements.txt + + - name: Authenticate to Google Cloud + uses: 'google-github-actions/auth@v2' + with: + credentials_json: ${{ secrets.CLOUD_DEPLOY_SERVICE_ACCOUNT_KEY }} + + # Uses Google Cloud Secret Manager to store secret credentials + - name: Create app.yaml + run: | + echo "service: dev-ocotillo-api" > app.yaml + echo "runtime: python313" >> app.yaml + echo "entrypoint: gunicorn -w 4 -k uvicorn.workers.UvicornWorker main:app" >> app.yaml + echo "instance_class: F4" >> app.yaml + echo "inbound_services:" >> app.yaml + echo " - warmup" >> app.yaml + echo "automatic_scaling:" >> app.yaml + echo " min_instances: 0" >> app.yaml + echo " max_instances: 10" >> app.yaml + echo "" >> app.yaml + echo "env_variables:" >> app.yaml + echo " MODE: \"production\"" >> app.yaml + echo " DB_DRIVER: \"cloudsql\"" >> app.yaml + echo " CLOUD_SQL_INSTANCE_NAME: \"${{ secrets.CLOUD_SQL_INSTANCE_NAME }}\"" >> app.yaml + echo " CLOUD_SQL_DATABASE: \"${{ secrets.CLOUD_SQL_DATABASE }}\"" >> app.yaml + echo " CLOUD_SQL_USER: \"${{ secrets.CLOUD_SQL_USER }}\"" >> app.yaml + echo " CLOUD_SQL_PASSWORD: \"${{ secrets.CLOUD_SQL_PASSWORD }}\"" >> app.yaml + echo " GCS_SERVICE_ACCOUNT_KEY: \"${{ secrets.GCS_SERVICE_ACCOUNT_KEY }}\"" >> app.yaml + echo " GCS_BUCKET_NAME: \"${{secrets.GCS_BUCKET_NAME}}\"" >> app.yaml + echo " AUTHENTIK_URL: \"${{secrets.AUTHENTIK_URL}}\"" >> app.yaml + echo " AUTHENTIK_CLIENT_ID: \"${{secrets.AUTHENTIK_CLIENT_ID}}\"" >> app.yaml + echo " AUTHENTIK_AUTHORIZE_URL: \"${{secrets.AUTHENTIK_AUTHORIZE_URL}}\"" >> app.yaml + echo " AUTHENTIK_TOKEN_URL: \"${{secrets.AUTHENTIK_TOKEN_URL}}\"" >> app.yaml + + + - name: Deploy to Google Cloud + run: | + gcloud app deploy app.yaml --quiet --project ${{ secrets.GCP_PROJECT_ID }} + + # Clean up old versions - delete only the oldest version, one created and one destroyed + - name: Clean up oldest version + run: | + OLDEST_VERSION=$(gcloud app versions list --service=dev-ocotillo-api --project=${{ secrets.GCP_PROJECT_ID}} --format="value(id)" --sort-by="version.createTime" | head -n 1) + if [ ! -z "$OLDEST_VERSION" ]; then + echo "Deleting oldest version: $OLDEST_VERSION" + gcloud app versions delete $OLDEST_VERSION --service=dev-ocotillo-api --project=${{ secrets.GCP_PROJECT_ID }} --quiet + echo "Deleted oldest version: $OLDEST_VERSION" + else + echo "No versions to delete" + fi + + - name: Remove app.yaml + run: | + rm app.yaml + diff --git a/.github/workflows/staging_deploy.yml b/.github/workflows/staging_deploy.yml new file mode 100644 index 000000000..c748662fe --- /dev/null +++ b/.github/workflows/staging_deploy.yml @@ -0,0 +1,94 @@ +name: CD (Staging) + +on: + push: + branches: [pre-production] + +permissions: + contents: write + +jobs: + staging-deploy: + + runs-on: ubuntu-latest + environment: staging + + steps: + - name: Check out source repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Install uv in container + uses: astral-sh/setup-uv@v6 + with: + version: "latest" + + - name: Generate requirements.txt + run: | + uv export -o requirements.txt + + - name: Authenticate to Google Cloud + uses: 'google-github-actions/auth@v2' + with: + credentials_json: ${{ secrets.CLOUD_DEPLOY_SERVICE_ACCOUNT_KEY }} + + # Uses Google Cloud Secret Manager to store secret credentials + - name: Create app.yaml + run: | + echo "service: ocotillo-api-staging" > app.yaml + echo "runtime: python313" >> app.yaml + echo "entrypoint: gunicorn -w 4 -k uvicorn.workers.UvicornWorker main:app" >> app.yaml + echo "instance_class: F4" >> app.yaml + echo "inbound_services:" >> app.yaml + echo " - warmup" >> app.yaml + echo "automatic_scaling:" >> app.yaml + echo " min_instances: 0" >> app.yaml + echo " max_instances: 10" >> app.yaml + echo "" >> app.yaml + echo "env_variables:" >> app.yaml + echo " MODE: \"production\"" >> app.yaml + echo " DB_DRIVER: \"cloudsql\"" >> app.yaml + echo " CLOUD_SQL_INSTANCE_NAME: \"${{ secrets.CLOUD_SQL_INSTANCE_NAME }}\"" >> app.yaml + echo " CLOUD_SQL_DATABASE: \"${{ secrets.CLOUD_SQL_DATABASE }}\"" >> app.yaml + echo " CLOUD_SQL_USER: \"${{ secrets.CLOUD_SQL_USER }}\"" >> app.yaml + echo " CLOUD_SQL_PASSWORD: \"${{ secrets.CLOUD_SQL_PASSWORD }}\"" >> app.yaml + echo " GCS_SERVICE_ACCOUNT_KEY: \"${{ secrets.GCS_SERVICE_ACCOUNT_KEY }}\"" >> app.yaml + echo " GCS_BUCKET_NAME: \"${{secrets.GCS_BUCKET_NAME}}\"" >> app.yaml + echo " AUTHENTIK_URL: \"${{secrets.AUTHENTIK_URL}}\"" >> app.yaml + echo " AUTHENTIK_CLIENT_ID: \"${{secrets.AUTHENTIK_CLIENT_ID}}\"" >> app.yaml + echo " AUTHENTIK_AUTHORIZE_URL: \"${{secrets.AUTHENTIK_AUTHORIZE_URL}}\"" >> app.yaml + echo " AUTHENTIK_TOKEN_URL: \"${{secrets.AUTHENTIK_TOKEN_URL}}\"" >> app.yaml + + + - name: Deploy to Google Cloud + run: | + gcloud app deploy app.yaml --quiet --project ${{ secrets.GCP_PROJECT_ID }} + + # Clean up old versions - delete only the oldest version, one created and one destroyed + - name: Clean up oldest version + run: | + OLDEST_VERSION=$(gcloud app versions list --service=ocotillo-api-staging --project=${{ secrets.GCP_PROJECT_ID}} --format="value(id)" --sort-by="version.createTime" | head -n 1) + if [ ! -z "$OLDEST_VERSION" ]; then + echo "Deleting oldest version: $OLDEST_VERSION" + gcloud app versions delete $OLDEST_VERSION --service=ocotillo-api-staging --project=${{ secrets.GCP_PROJECT_ID }} --quiet + echo "Deleted oldest version: $OLDEST_VERSION" + else + echo "No versions to delete" + fi + + - name: Remove app.yaml + run: | + rm app.yaml + + # Use PR author's username as git user name + - name: Set up git user + run: | + git config --global user.name "${{ github.actor }}" + git config --global user.email "${{ github.actor }}@users.noreply.github.com" + + # ":" are not alloed in git tags, so replace with "-" + - name: Tag commit + run: | + git tag -a "staging-deploy-$(date -u +%Y-%m-%d)T$(date -u +%H-%M-%S%z)" -m "staging gcloud deployment: $(date -u +%Y-%m-%d)T$(date -u +%H:%M:%S%z)" + git push origin --tags \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bf7f4ca36..34a7c677a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,20 +5,20 @@ name: Tests on: pull_request: - branches: [ "main",'pre-production'] + branches: [ "main",'pre-production', 'transfer'] permissions: contents: read jobs: - build: + run-tests: runs-on: ubuntu-latest services: - postgis_timescaledb: - image: ghcr.io/dataintegrationgroup/nmdms:latest + postgis: +# image: ghcr.io/dataintegrationgroup/nmdms:latest # image: postgres -# image: postgis/postgis:latest + image: postgis/postgis:latest # image: postgis/postgis:17-3.5 # image: timescale/timescaledb:2.18.0-pg17 env: @@ -63,15 +63,15 @@ jobs: DB_DRIVER: postgres # SPATIALITE_LIBRARY_PATH: /usr/lib/x86_64-linux-gnu/mod_spatialite.so - run: uv run pytest -vv --durations=20 --junitxml=junit.xml + run: uv run pytest -vv --durations=20 --cov --cov-report=xml --junitxml=junit.xml -# - name: Upload results to Codecov -# uses: codecov/codecov-action@v4 -# with: -# token: ${{ secrets.CODECOV_TOKEN }} -# -# - name: Upload test results to Codecov -# if: ${{ !cancelled() }} -# uses: codecov/test-results-action@v1 -# with: -# token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + - name: Upload results to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + + - name: Upload test results to Codecov + if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.gitignore b/.gitignore index 26fc77599..6be8b4d9e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ wheels/ # Virtual environments .venv - +requirements.txt # JetBrains IDEs .idea/ @@ -20,8 +20,11 @@ development.db .env reset_db.sh tests/uploads - +migrate.sh +launcher.sh +gcs_credentials.json +transfers/data/assets* +transfers/transfer*.log # deployment files -app.yaml -alembic.ini \ No newline at end of file +app.yaml \ No newline at end of file diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 000000000..608a59e9b --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,22 @@ +repos: + - repo: https://github.com/psf/black + rev: 24.4.2 + hooks: + - id: black + + - repo: https://github.com/pycqa/flake8 + rev: 7.0.0 + hooks: + - id: flake8 + args: [ + '--count', + '--select=E9,F63,F7,F82,F401,F541,F631,F634,F701,F702', + '--show-source', + '--statistics' + ] + exclude: ^db/__init__.py$ # all models need to be imported for Alembic, but are not used directly + + # - repo: https://github.com/pre-commit/mirrors-mypy + # rev: v1.10.0 # Use the latest stable version or pin to your preference + # hooks: + # - id: mypy \ No newline at end of file diff --git a/Procfile b/Procfile new file mode 100644 index 000000000..82b4db951 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn -b :8080 transfers.entrypoint:app -k uvicorn.workers.UvicornWorker diff --git a/README.md b/README.md index 218adfaaa..e22059596 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ [![Dependabot Updates](https://github.com/DataIntegrationGroup/NMSampleLocations/actions/workflows/dependabot/dependabot-updates/badge.svg)](https://github.com/DataIntegrationGroup/NMSampleLocations/actions/workflows/dependabot/dependabot-updates) [![Sentry Release](https://github.com/DataIntegrationGroup/NMSampleLocations/actions/workflows/release.yml/badge.svg)](https://github.com/DataIntegrationGroup/NMSampleLocations/actions/workflows/release.yml) [![Tests](https://github.com/DataIntegrationGroup/NMSampleLocations/actions/workflows/tests.yml/badge.svg)](https://github.com/DataIntegrationGroup/NMSampleLocations/actions/workflows/tests.yml) +[![codecov](https://codecov.io/gh/DataIntegrationGroup/NMSampleLocations/graph/badge.svg?token=Y20QB357OO)](https://codecov.io/gh/DataIntegrationGroup/NMSampleLocations) **Geospatial Sample Data Management System** _New Mexico Bureau of Geology and Mineral Resources_ @@ -19,7 +20,7 @@ NMSampleLocations is a FastAPI-based backend service designed to manage geospati - ๐Ÿ”Ž Filtering by location, date, type, and more - ๐Ÿ“ฆ PostgreSQL + PostGIS database backend - ๐Ÿ” Optional authentication and role-based access -- ๐Ÿงพ Interactive API documentation via Swagger and ReDoc +- ๐Ÿงพ Interactive API documentation via OpenAPI and ReDoc --- @@ -28,39 +29,170 @@ NMSampleLocations is a FastAPI-based backend service designed to manage geospati ### Prerequisites - Python 3.11+ -- PostgreSQL with PostGIS extension - [`uv`](https://github.com/astral-sh/uv) package manager +- Docker Desktop 4+ if wanting to host server/database locally with containers +- PostgreSQL with PostGIS extension if wanting to host server/database locally without containers -### Installation +### Installation & Setup + +#### 1. Clone the repository ```bash -# Clone the repository git clone https://github.com/DataIntegrationGroup/NMSampleLocations.git cd NMSampleLocations +``` + +#### 2. Set up virtual environment and install depdencies + -# Set up virtual environment and install dependencies + + + + + + + + + +
+ Mac/Linux + + Windows +
+ +```bash uv venv source .venv/bin/activate -uv pip install -r requirements.txt +uv sync --locked +``` + + -# Set up environment variables -cp .env.example .env +```bash +uv venv +source .venv/Scripts/activate +uv sync --locked +``` + +
+ + +#### 3. Setup pre-commit hookes + +```bash +pre-commit install +``` + +#### 4. Setup environment variables + +```bash # Edit `.env` to configure database connection and app settings +cp .env.example .env +``` + +#### 5. Database and server + -# Run database migrations -alembic upgrade head + + + + + + + + + + + + + + + + + + + + + +
+ PostgreSQL + PostGIS installed locally + + Docker +
-# Start the development server +```bash +#run database migrations +alembic upgrade head + +# start development server uvicorn app.main:app --reload ``` + + + +```bash +# include -d flag for silent/detached build +docker compose up --build +``` + +
+Requires PostgreSQL and PostGIS extensions to be installed locally + +Requires Docker Desktop to be installed locally +
+ +Run docker exec -it nmsamplelocations-app-1 bash to open a shell inside the running app container. +
+ +After the database container is running, you can run tests with Pytest from your local command line (not necessarily inside the app container). +
+ + +#### Staging Data + +To get staging data into the database run `python -m transfers.transfer` from the root directory of the project. ### ๐Ÿงญ Project Structure ```text app/ -โ”œโ”€โ”€ api/ # Route declarations -โ”œโ”€โ”€ core/ # Settings and application config -โ”œโ”€โ”€ db/ # Database models, sessions, migrations -โ”œโ”€โ”€ schemas/ # Pydantic data models -โ”œโ”€โ”€ services/ # Business logic and helpers -โ””โ”€โ”€ main.py # FastAPI entry point -``` \ No newline at end of file +โ”œโ”€โ”€ .env # Environment variables +โ”œโ”€โ”€ .pre-commit-config.yaml # pre-commit hook configuration file +โ”œโ”€โ”€ constants.py # Static variables used throughout the code +โ”œโ”€โ”€ docker-compose.yml # Docker compose file to build database and start server +โ”œโ”€โ”€ entrypoint.sh # Used by Docker to run database migrations and start server +โ”œโ”€โ”€ main.py # FastAPI entry point +| +โ”œโ”€โ”€ alembic/ # Alembic configuration and migration scripts +โ”œโ”€โ”€ api/ # Route declarations +โ”œโ”€โ”€ core/ # Settings, application config, and dependencies +โ”œโ”€โ”€ db/ # Database models, sessions, and engine +โ”œโ”€โ”€ docker/ # Custom Docker files +โ”œโ”€โ”€ schemas/ # Pydantic schemas and validations +โ”œโ”€โ”€ services/ # Reusable business logic, helpers, and database interactions +โ”œโ”€โ”€ tests/ # Code tests +โ””โ”€โ”€ transfers/ # Scripts to transfer data from NM_Aquifer to current db schema +``` + +## Model Changes + +1. Revise models in the `db/` directory +2. Revise schemas in the `schemas/` directory + 1. Add validators for both fields and models as necessary + 1. Validations on incoming data only should be handled by Pydantic and 422 errors will be raised (default Pydantic) + 2. Validations against values in the database will be handled at the endpoint with custom checks and 409 errors will be raised +3. Revise tests + 1. Revise fixtures in `tests/conftest.py` + 2. Revise fields in POST test payloads and asserts + 3. Revise fields in PATCH test payloads and asserts + 4. Revise fields in GET all and GET by ID test asserts + 5. Add tests for validations as necessary + +Bonus: +- Update transfer scripts by revising fields and delineating where they come from in `NM_Aquifer` + +Notes: +- All `Create` schema fields are defined as `` if non-nullable and ` | None = None` if nullable +- All `Update` schema fields are optional and default to `None` +- All `Response` schema fields are defined as `` if non-nullable and ` | None` if nullable +- All raised exceptions should use the `PydanticStyleException` as defined in `services/exceptions_helper.py` +- Errors handled by the database should be enumerated and handled in a database_error_handler in each router's file \ No newline at end of file diff --git a/admin/__init__.py b/admin/__init__.py deleted file mode 100644 index 8e546ddc2..000000000 --- a/admin/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -# ============= EOF ============================================= diff --git a/admin/base.py b/admin/base.py deleted file mode 100644 index d8a73b734..000000000 --- a/admin/base.py +++ /dev/null @@ -1,68 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from typing import Any -from geoalchemy2.shape import to_shape -from fastadmin import register, SqlAlchemyModelAdmin, WidgetType - -from db.engine import async_database_sessionmaker -from db.location import Location -from db.thing.well import WellThing - - -@register(Location, sqlalchemy_sessionmaker=async_database_sessionmaker) -class SampleLocationsAdmin(SqlAlchemyModelAdmin): - """ - Admin interface for SampleLocations. - This class is a placeholder for future implementation. - """ - - list_display = ("name",) - - async def serialize_obj(self, obj: Any, list_view: bool = False) -> dict: - """ - Serialize the SampleLocation object for display. - This method can be customized to include additional fields or formatting. - """ - print(f"Serializing SampleLocation object: {obj}") - return { - "id": obj.id, - "name": obj.name, - "description": obj.description, - "point": to_shape(obj.point).wkt if obj.point else None, - "created_at": obj.created_at.isoformat() if obj.created_at else None, - } - - -@register(WellThing, sqlalchemy_sessionmaker=async_database_sessionmaker) -class WellAdmin(SqlAlchemyModelAdmin): - """ - Admin interface for Well. - This class is a placeholder for future implementation. - """ - - list_display = ("name", "location", "well_depth") - list_display_links = ("name",) - list_filter = ("location",) - search_fields = ("name", "location") - - formfield_overrides = { - "name": (WidgetType.SlugInput, {"required": True}), - # "description": (WidgetType.Textarea, {"required": False}), - # "well_depth": (WidgetType.NumberInput, {"required": True}), - } - - -# ============= EOF ============================================= diff --git a/admin/user.py b/admin/user.py deleted file mode 100644 index 6a88e5f01..000000000 --- a/admin/user.py +++ /dev/null @@ -1,84 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -import uuid -from typing import Any - -from fastadmin import register, SqlAlchemyModelAdmin, WidgetType -from sqlalchemy import update, select - -from db.engine import async_database_sessionmaker -from db.base import User - - -@register(User, sqlalchemy_sessionmaker=async_database_sessionmaker) -class UserModelAdmin(SqlAlchemyModelAdmin): - list_display = ("id", "username", "is_superuser") - list_display_links = ("id", "username") - list_filter = ("id", "username", "is_superuser") - search_fields = ("username",) - formfield_overrides = { # noqa: RUF012 - "username": (WidgetType.SlugInput, {"required": True}), - "password": (WidgetType.PasswordInput, {"passwordModalForm": True}), - "avatar_url": ( - WidgetType.Upload, - { - "required": False, - # Disable crop image for upload field - # "disableCropImage": True, - }, - ), - } - - async def authenticate( - self, username: str, password: str - ) -> uuid.UUID | int | None: - sessionmaker = self.get_sessionmaker() - async with sessionmaker() as session: - query = select(self.model_cls).filter_by( - username=username, password=password, is_superuser=True - ) - result = await session.scalars(query) - obj = result.first() - if not obj: - return None - return obj.id - - async def change_password(self, id: uuid.UUID | int, password: str) -> None: - sessionmaker = self.get_sessionmaker() - async with sessionmaker() as session: - # use hash password for real usage - query = ( - update(self.model_cls) - .where(User.id.in_([id])) - .values(password=password) - ) - await session.execute(query) - await session.commit() - - async def orm_save_upload_field(self, obj: Any, field: str, base64: str) -> None: - sessionmaker = self.get_sessionmaker() - async with sessionmaker() as session: - # convert base64 to bytes, upload to s3/filestorage, get url and save or save base64 as is to db (don't recomment it) - query = ( - update(self.model_cls) - .where(User.id.in_([obj.id])) - .values(**{field: base64}) - ) - await session.execute(query) - await session.commit() - - -# ============= EOF ============================================= diff --git a/alembic.ini b/alembic.ini new file mode 100644 index 000000000..8507f6273 --- /dev/null +++ b/alembic.ini @@ -0,0 +1,141 @@ +# A generic, single database configuration. + +[alembic] +# path to migration scripts. +# this is typically a path given in POSIX (e.g. forward slashes) +# format, relative to the token %(here)s which refers to the location of this +# ini file +script_location = %(here)s/alembic + +# template used to generate migration file names; The default value is %%(rev)s_%%(slug)s +# Uncomment the line below if you want the files to be prepended with date and time +# see https://alembic.sqlalchemy.org/en/latest/tutorial.html#editing-the-ini-file +# for all available tokens +# file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s + +# sys.path path, will be prepended to sys.path if present. +# defaults to the current working directory. for multiple paths, the path separator +# is defined by "path_separator" below. +prepend_sys_path = . + + +# timezone to use when rendering the date within the migration file +# as well as the filename. +# If specified, requires the python>=3.9 or backports.zoneinfo library and tzdata library. +# Any required deps can installed by adding `alembic[tz]` to the pip requirements +# string value is passed to ZoneInfo() +# leave blank for localtime +# timezone = + +# max length of characters to apply to the "slug" field +# truncate_slug_length = 40 + +# set to 'true' to run the environment during +# the 'revision' command, regardless of autogenerate +# revision_environment = false + +# set to 'true' to allow .pyc and .pyo files without +# a source .py file to be detected as revisions in the +# versions/ directory +# sourceless = false + +# version location specification; This defaults +# to /versions. When using multiple version +# directories, initial revisions must be specified with --version-path. +# The path separator used here should be the separator specified by "path_separator" +# below. +# version_locations = %(here)s/bar:%(here)s/bat:%(here)s/alembic/versions + +# path_separator; This indicates what character is used to split lists of file +# paths, including version_locations and prepend_sys_path within configparser +# files such as alembic.ini. +# The default rendered in new alembic.ini files is "os", which uses os.pathsep +# to provide os-dependent path splitting. +# +# Note that in order to support legacy alembic.ini files, this default does NOT +# take place if path_separator is not present in alembic.ini. If this +# option is omitted entirely, fallback logic is as follows: +# +# 1. Parsing of the version_locations option falls back to using the legacy +# "version_path_separator" key, which if absent then falls back to the legacy +# behavior of splitting on spaces and/or commas. +# 2. Parsing of the prepend_sys_path option falls back to the legacy +# behavior of splitting on spaces, commas, or colons. +# +# Valid values for path_separator are: +# +# path_separator = : +# path_separator = ; +# path_separator = space +# path_separator = newline +# +# Use os.pathsep. Default configuration used for new projects. +path_separator = os + +# set to 'true' to search source files recursively +# in each "version_locations" directory +# new in Alembic version 1.10 +# recursive_version_locations = false + +# the output encoding used when revision files +# are written from script.py.mako +# output_encoding = utf-8 + +# database URL. This is consumed by the user-maintained env.py script only. +# other means of configuring database URLs may be customized within the env.py +# file. +sqlalchemy.url = + + +[post_write_hooks] +# post_write_hooks defines scripts or Python functions that are run +# on newly generated revision scripts. See the documentation for further +# detail and examples + +# format using "black" - use the console_scripts runner, against the "black" entrypoint +# hooks = black +# black.type = console_scripts +# black.entrypoint = black +# black.options = -l 79 REVISION_SCRIPT_FILENAME + +# lint with attempts to fix using "ruff" - use the exec runner, execute a binary +# hooks = ruff +# ruff.type = exec +# ruff.executable = %(here)s/.venv/bin/ruff +# ruff.options = check --fix REVISION_SCRIPT_FILENAME + +# Logging configuration. This is also consumed by the user-maintained +# env.py script only. +[loggers] +keys = root,sqlalchemy,alembic + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARNING +handlers = console +qualname = + +[logger_sqlalchemy] +level = WARNING +handlers = +qualname = sqlalchemy.engine + +[logger_alembic] +level = INFO +handlers = +qualname = alembic + +[handler_console] +class = StreamHandler +args = (sys.stderr,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(levelname)-5.5s [%(name)s] %(message)s +datefmt = %H:%M:%S diff --git a/alembic/README b/alembic/README index fdacc05f6..98e4f9c44 100644 --- a/alembic/README +++ b/alembic/README @@ -1 +1 @@ -pyproject configuration, based on the generic configuration. \ No newline at end of file +Generic single-database configuration. \ No newline at end of file diff --git a/alembic/env.py b/alembic/env.py index 9f73c07a4..d02a07101 100644 --- a/alembic/env.py +++ b/alembic/env.py @@ -1,9 +1,10 @@ +from alembic import context +from dotenv import load_dotenv from logging.config import fileConfig - +from os import environ from sqlalchemy import engine_from_config from sqlalchemy import pool -from alembic import context # this is the Alembic Config object, which provides # access to the values within the .ini file in use. @@ -19,35 +20,46 @@ # from myapp import mymodel # from db import Base # Import your Base from models/__init__.py -from db import * +from db import Base # target_metadata = mymodel.Base.metadata target_metadata = Base.metadata +model_tables = set(target_metadata.tables.keys()) # other values from the config, defined by the needs of env.py, # can be acquired: # my_important_option = config.get_main_option("my_important_option") # ... etc. +load_dotenv() -def run_migrations_offline() -> None: - """Run migrations in 'offline' mode. +# Fallback to environment variables for PostgreSQL connection +user = environ.get("POSTGRES_USER", None) +password = environ.get("POSTGRES_PASSWORD", None) +db = environ.get("POSTGRES_DB", None) +host = environ.get("POSTGRES_HOST", "localhost") +port = environ.get("POSTGRES_PORT", 5432) +SQLALCHEMY_DATABASE_URL = f"postgresql+psycopg2://{user}:{password}@{host}:{port}/{db}" - This configures the context with just a URL - and not an Engine, though an Engine is acceptable - here as well. By skipping the Engine creation - we don't even need a DBAPI to be available. +config.set_main_option("sqlalchemy.url", SQLALCHEMY_DATABASE_URL) - Calls to context.execute() here emit the given string to the - script output. - """ +def include_object(object, name, type_, reflected, compare_to): + # only include tables in sql alchemy model, not auto-generated tables from PostGIS or TIGER + if type_ == "table" or name.endswith("_version") or name == "transaction": + return name in model_tables + return True + + +def run_migrations_offline() -> None: + """Run migrations in 'offline' mode.""" url = config.get_main_option("sqlalchemy.url") context.configure( url=url, target_metadata=target_metadata, literal_binds=True, dialect_opts={"paramstyle": "named"}, + include_object=include_object, ) with context.begin_transaction(): @@ -68,8 +80,11 @@ def run_migrations_online() -> None: ) with connectable.connect() as connection: - context.configure(connection=connection, target_metadata=target_metadata) - + context.configure( + connection=connection, + target_metadata=target_metadata, + include_object=include_object, + ) with context.begin_transaction(): context.run_migrations() diff --git a/alembic/script.py.mako b/alembic/script.py.mako index 480b130d6..40b87b8a7 100644 --- a/alembic/script.py.mako +++ b/alembic/script.py.mako @@ -8,12 +8,14 @@ Create Date: ${create_date} from typing import Sequence, Union from alembic import op +import geoalchemy2 import sqlalchemy as sa +import sqlalchemy_utils ${imports if imports else ""} # revision identifiers, used by Alembic. revision: str = ${repr(up_revision)} -down_revision: Union[str, None] = ${repr(down_revision)} +down_revision: Union[str, Sequence[str], None] = ${repr(down_revision)} branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)} depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)} diff --git a/alembic/versions/66ac1af4ba69_initial_migration.py b/alembic/versions/66ac1af4ba69_initial_migration.py new file mode 100644 index 000000000..e07bb5807 --- /dev/null +++ b/alembic/versions/66ac1af4ba69_initial_migration.py @@ -0,0 +1,469 @@ +"""initial migration + +Revision ID: 66ac1af4ba69 +Revises: +Create Date: 2025-07-28 12:07:27.082752 + +""" + +from typing import Sequence, Union + +# from alembic import op +from sqlalchemy.orm import configure_mappers + +# revision identifiers, used by Alembic. +revision: str = "66ac1af4ba69" +down_revision: Union[str, Sequence[str], None] = None +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +from db import * # Import your Base from models/__init__.py +from db.engine import engine + +configure_mappers() + +Base.metadata.drop_all(engine) +Base.metadata.create_all(engine) + + +def upgrade() -> None: + """Upgrade schema.""" + + pass + + # The autogenerated code below is commented out to prevent accidental execution. + # It is here as a record of the initial database state. + # Actual initial database creation should be done through the Base.metadata.create_all(engine) call above. + + """ + TODO + The following code will need to be regenerated by Alembic since configure_mappers() is now called + in db/__init__.py to ensure all models are loaded before creating the database schema. This is + require for SQL Alchemy continuum. + + The following code will also need to be added: + + - op.drop_index("idx_location_version_point", table_name="location_version", if_exists=True) + - before calling op.create_index("idx_location_version_point", "location_version", ["point"], unique=False, postgresql_using="gist",) + - op.drop_index("idx_location_point", table_name="location", if_exists=True) + - before calling op.create_index("idx_location_point", "location", ["point"], unique=False, postgresql_using="gist",) + + We will also need to figure out how to handle the SQL Alchemy searchable columns in the models, as they are not currently handled by Alembic. + There is some documentation about sync_triggers, but that has not yet been tested. + """ + + # ### commands auto generated by Alembic - please adjust! ### + # op.create_table('asset', + # sa.Column('name', sa.String(), nullable=False), + # sa.Column('label', sa.String(), nullable=True), + # sa.Column('storage_service', sa.String(), nullable=False), + # sa.Column('storage_path', sa.String(), nullable=False), + # sa.Column('mime_type', sa.String(), nullable=False), + # sa.Column('size', sa.Integer(), nullable=False), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('ix_asset_search_vector', 'asset', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('group', + # sa.Column('name', sa.String(length=100), nullable=False), + # sa.Column('description', sa.String(length=255), nullable=True), + # sa.Column('parent_group_id', sa.Integer(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['parent_group_id'], ['group.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('name') + # ) + # op.create_table('lexicon_category', + # sa.Column('name', sa.String(length=100), nullable=False), + # sa.Column('description', sa.String(length=255), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('name') + # ) + # op.create_table('lexicon_term', + # sa.Column('term', sa.String(length=100), nullable=False), + # sa.Column('definition', sa.String(length=255), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('term') + # ) + # op.create_table('pub_author', + # sa.Column('name', sa.String(), nullable=False), + # sa.Column('affiliation', sa.String(), nullable=True), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('ix_pub_author_search_vector', 'pub_author', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('sensor', + # sa.Column('name', sa.String(length=255), nullable=False), + # sa.Column('model', sa.String(length=50), nullable=True), + # sa.Column('serial_no', sa.String(length=50), nullable=True), + # sa.Column('date_installed', sa.DateTime(), nullable=True), + # sa.Column('date_removed', sa.DateTime(), nullable=True), + # sa.Column('recording_interval', sa.Integer(), nullable=True), + # sa.Column('notes', sa.String(length=50), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('user', + # sa.Column('id', sa.Integer(), nullable=False), + # sa.Column('username', sa.String(length=255), nullable=False), + # sa.Column('password', sa.String(length=255), nullable=False), + # sa.Column('is_superuser', sa.Boolean(), nullable=False), + # sa.Column('is_active', sa.Boolean(), nullable=False), + # sa.Column('avatar_url', sa.Text(), nullable=True), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('contact', + # sa.Column('name', sa.String(length=100), nullable=False), + # sa.Column('role', sa.String(length=100), nullable=False), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['role'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('ix_contact_search_vector', 'contact', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('geochronology_age', + # sa.Column('location_id', sa.Integer(), nullable=False), + # sa.Column('age', sa.Float(), nullable=False), + # sa.Column('age_error', sa.Float(), nullable=True), + # sa.Column('method', sa.String(length=100), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['method'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('groundwater_level_sensor', + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('sensor_id', sa.Integer(), nullable=False), + # sa.ForeignKeyConstraint(['sensor_id'], ['sensor.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('sensor_id') + # ) + # op.create_table('lexicon_term_category_association', + # sa.Column('lexicon_term', sa.String(length=100), nullable=False), + # sa.Column('category_name', sa.String(length=255), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['category_name'], ['lexicon_category.name'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['lexicon_term'], ['lexicon_term.term'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('lexicon_triple', + # sa.Column('subject', sa.String(length=100), nullable=False), + # sa.Column('predicate', sa.String(length=100), nullable=False), + # sa.Column('object_', sa.String(length=100), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['object_'], ['lexicon_term.term'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['subject'], ['lexicon_term.term'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('location', + # sa.Column('name', sa.String(length=255), nullable=True), + # sa.Column('notes', sa.Text(), nullable=True), + # sa.Column('point', geoalchemy2.types.Geometry(geometry_type='POINT', srid=4326, from_text='ST_GeomFromEWKT', name='geometry', nullable=False), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('release_status', sa.String(length=100), nullable=True), + # sa.ForeignKeyConstraint(['release_status'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('idx_location_point', 'location', ['point'], unique=False, postgresql_using='gist') + # op.create_table('publication', + # sa.Column('title', sa.Text(), nullable=False), + # sa.Column('abstract', sa.Text(), nullable=True), + # sa.Column('doi', sa.String(), nullable=True), + # sa.Column('year', sa.Integer(), nullable=True), + # sa.Column('publisher', sa.String(), nullable=True), + # sa.Column('url', sa.String(), nullable=True), + # sa.Column('publication_type', sa.String(length=100), nullable=False), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['publication_type'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('doi') + # ) + # op.create_index('ix_publication_search_vector', 'publication', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('thing', + # sa.Column('name', sa.String(length=255), nullable=False), + # sa.Column('description', sa.String(length=500), nullable=True), + # sa.Column('thing_type', sa.String(length=100), nullable=True), + # sa.Column('spring_type', sa.String(length=100), nullable=True), + # sa.Column('well_depth', sa.Float(), nullable=True), + # sa.Column('hole_depth', sa.Float(), nullable=True), + # sa.Column('well_type', sa.String(length=100), nullable=True), + # sa.Column('well_casing_diameter', sa.Float(), nullable=True), + # sa.Column('well_casing_depth', sa.Float(), nullable=True), + # sa.Column('well_casing_description', sa.String(length=50), nullable=True), + # sa.Column('well_construction_notes', sa.String(length=250), nullable=True), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('release_status', sa.String(length=100), nullable=True), + # sa.ForeignKeyConstraint(['release_status'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['spring_type'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['thing_type'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['well_type'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('ix_thing_search_vector', 'thing', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('address', + # sa.Column('contact_id', sa.Integer(), nullable=False), + # sa.Column('address_line_1', sa.String(length=255), nullable=False), + # sa.Column('address_line_2', sa.String(length=255), nullable=True), + # sa.Column('city', sa.String(length=100), nullable=False), + # sa.Column('state', sa.String(length=50), nullable=False), + # sa.Column('postal_code', sa.String(length=20), nullable=False), + # sa.Column('country', sa.String(length=100), nullable=False), + # sa.Column('address_type', sa.String(length=100), nullable=False), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['address_type'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['contact_id'], ['contact.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['country'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('ix_address_search_vector', 'address', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('asset_thing_association', + # sa.Column('asset_id', sa.Integer(), nullable=False), + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['asset_id'], ['asset.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('collaborative_network_well', + # sa.Column('actively_monitored', sa.Boolean(), nullable=False), + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('email', + # sa.Column('contact_id', sa.Integer(), nullable=False), + # sa.Column('email', sa.String(length=100), nullable=False), + # sa.Column('email_type', sa.String(length=100), nullable=False), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['contact_id'], ['contact.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['email_type'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('ix_email_search_vector', 'email', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('group_thing_association', + # sa.Column('group_id', sa.Integer(), nullable=False), + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['group_id'], ['group.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('location_thing_association', + # sa.Column('location_id', sa.Integer(), nullable=False), + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('effective_start', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('effective_end', sa.DateTime(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['location_id'], ['location.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('location_id', 'thing_id', 'id') + # ) + # op.create_table('phone', + # sa.Column('contact_id', sa.Integer(), nullable=False), + # sa.Column('phone_number', sa.String(length=20), nullable=False), + # sa.Column('phone_type', sa.String(length=100), nullable=False), + # sa.Column('search_vector', sqlalchemy_utils.types.ts_vector.TSVectorType(), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['contact_id'], ['contact.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['phone_type'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_index('ix_phone_search_vector', 'phone', ['search_vector'], unique=False, postgresql_using='gin') + # op.create_table('pub_author_contact_association', + # sa.Column('author_id', sa.Integer(), nullable=False), + # sa.Column('contact_id', sa.Integer(), nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['author_id'], ['pub_author.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['contact_id'], ['contact.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('author_id', 'contact_id') + # ) + # op.create_table('pub_author_publication_association', + # sa.Column('publication_id', sa.Integer(), nullable=False), + # sa.Column('author_id', sa.Integer(), nullable=False), + # sa.Column('author_order', sa.Integer(), nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['author_id'], ['pub_author.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['publication_id'], ['publication.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('publication_id', 'author_id') + # ) + # op.create_table('sample', + # sa.Column('collection_timestamp', sa.DateTime(), nullable=False), + # sa.Column('collection_method', sa.String(length=100), nullable=False), + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['collection_method'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('series', + # sa.Column('observed_property', sa.String(length=100), nullable=False), + # sa.Column('unit', sa.String(length=100), nullable=False), + # sa.Column('name', sa.String(length=255), nullable=False), + # sa.Column('description', sa.Text(), nullable=True), + # sa.Column('sensor_id', sa.Integer(), nullable=True), + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('release_status', sa.String(length=100), nullable=True), + # sa.ForeignKeyConstraint(['observed_property'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['release_status'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['sensor_id'], ['sensor.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.ForeignKeyConstraint(['unit'], ['lexicon_term.term'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('thing_contact_association', + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('contact_id', sa.Integer(), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['contact_id'], ['contact.id'], ), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('thing_id_link', + # sa.Column('thing_id', sa.Integer(), nullable=True), + # sa.Column('relation', sa.String(length=100), nullable=False), + # sa.Column('alternate_id', sa.String(length=100), nullable=False), + # sa.Column('alternate_organization', sa.String(length=100), nullable=False), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['alternate_organization'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['relation'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('well_screen', + # sa.Column('thing_id', sa.Integer(), nullable=False), + # sa.Column('screen_depth_top', sa.Float(), nullable=False), + # sa.Column('screen_depth_bottom', sa.Float(), nullable=False), + # sa.Column('screen_type', sa.String(length=100), nullable=True), + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.ForeignKeyConstraint(['screen_type'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['thing_id'], ['thing.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id') + # ) + # op.create_table('geochemical_series', + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('series_id', sa.Integer(), nullable=False), + # sa.ForeignKeyConstraint(['series_id'], ['series.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('series_id') + # ) + # op.create_table('geothermal_series', + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('series_id', sa.Integer(), nullable=False), + # sa.ForeignKeyConstraint(['series_id'], ['series.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('series_id') + # ) + # op.create_table('groundwater_level_series', + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('series_id', sa.Integer(), nullable=False), + # sa.ForeignKeyConstraint(['series_id'], ['series.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id'), + # sa.UniqueConstraint('series_id') + # ) + # op.create_table('observation', + # sa.Column('id', sa.Integer(), autoincrement=True, nullable=False), + # sa.Column('series_id', sa.Integer(), nullable=False), + # sa.Column('observation_datetime', sa.TIMESTAMP(), nullable=False), + # sa.Column('observation_type', sa.String(length=100), nullable=True), + # sa.Column('depth_to_water', sa.Float(), nullable=True), + # sa.Column('measuring_point_height', sa.Float(), nullable=True), + # sa.Column('level_status', sa.String(length=100), nullable=True), + # sa.Column('depth', sa.Float(), nullable=True), + # sa.Column('temperature', sa.Float(), nullable=True), + # sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), + # sa.Column('release_status', sa.String(length=100), nullable=True), + # sa.ForeignKeyConstraint(['level_status'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['observation_type'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['release_status'], ['lexicon_term.term'], ), + # sa.ForeignKeyConstraint(['series_id'], ['series.id'], ondelete='CASCADE'), + # sa.PrimaryKeyConstraint('id', 'observation_datetime') + # ) + # ### end Alembic commands ### + + +def downgrade() -> None: + """Downgrade schema.""" + pass + # ### commands auto generated by Alembic - please adjust! ### + # op.drop_table('observation') + # op.drop_table('groundwater_level_series') + # op.drop_table('geothermal_series') + # op.drop_table('geochemical_series') + # op.drop_table('well_screen') + # op.drop_table('thing_id_link') + # op.drop_table('thing_contact_association') + # op.drop_table('series') + # op.drop_table('sample') + # op.drop_table('pub_author_publication_association') + # op.drop_table('pub_author_contact_association') + # op.drop_index('ix_phone_search_vector', table_name='phone', postgresql_using='gin') + # op.drop_table('phone') + # op.drop_table('location_thing_association') + # op.drop_table('group_thing_association') + # op.drop_index('ix_email_search_vector', table_name='email', postgresql_using='gin') + # op.drop_table('email') + # op.drop_table('collaborative_network_well') + # op.drop_table('asset_thing_association') + # op.drop_index('ix_address_search_vector', table_name='address', postgresql_using='gin') + # op.drop_table('address') + # op.drop_index('ix_thing_search_vector', table_name='thing', postgresql_using='gin') + # op.drop_table('thing') + # op.drop_index('ix_publication_search_vector', table_name='publication', postgresql_using='gin') + # op.drop_table('publication') + # op.drop_index('idx_location_point', table_name='location', postgresql_using='gist') + # op.drop_table('location') + # op.drop_table('lexicon_triple') + # op.drop_table('lexicon_term_category_association') + # op.drop_table('groundwater_level_sensor') + # op.drop_table('geochronology_age') + # op.drop_index('ix_contact_search_vector', table_name='contact', postgresql_using='gin') + # op.drop_table('contact') + # op.drop_table('user') + # op.drop_table('sensor') + # op.drop_index('ix_pub_author_search_vector', table_name='pub_author', postgresql_using='gin') + # op.drop_table('pub_author') + # op.drop_table('lexicon_term') + # op.drop_table('lexicon_category') + # op.drop_table('group') + # op.drop_index('ix_asset_search_vector', table_name='asset', postgresql_using='gin') + # op.drop_table('asset') + # ### end Alembic commands ### diff --git a/api/asset.py b/api/asset.py index 5fc0c2cf4..78eae02e6 100644 --- a/api/asset.py +++ b/api/asset.py @@ -13,78 +13,215 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -import os -from datetime import timedelta -from uuid import uuid4 -from fastapi import APIRouter, Depends, UploadFile, File, HTTPException +from fastapi import APIRouter, Depends, UploadFile, File +from fastapi_pagination.ext.sqlalchemy import paginate from sqlalchemy import select -from sqlalchemy.orm import Session +from sqlalchemy.exc import ProgrammingError +from starlette.status import HTTP_201_CREATED, HTTP_409_CONFLICT, HTTP_204_NO_CONTENT + +from api.pagination import CustomPage +from core.dependencies import ( + session_dependency, + viewer_function, + admin_dependency, + admin_function, + editor_dependency, +) +from db import Thing +from db.asset import Asset, AssetThingAssociation +from schemas.asset import AssetResponse, CreateAsset, UpdateAsset +from services.audit_helper import audit_add +from services.crud_helper import model_patcher, model_deleter +from services.query_helper import simple_get_by_id +from services.gcs_helper import ( + get_storage_bucket, + gcs_upload, + gcs_remove, + check_asset_exists, + add_signed_url, +) +from services.exceptions_helper import PydanticStyleException + +router = APIRouter( + prefix="/asset", tags=["asset"], dependencies=[Depends(viewer_function)] +) + + +def database_error_handler(payload: CreateAsset, error: ProgrammingError) -> None: + """ + Handle errors raised by the database when adding or updating a asset. + """ -from db.engine import get_db_session -from db.asset import Asset + error_message = error.orig.args[0]["M"] + + if ( + error_message + == 'null value in column "thing_id" of relation "asset_thing_association" violates not-null constraint' + ): + """ + Developer's notes + + this error occurs because the thing_id is set by the Thing record that + is retrieved, so if there is no Thing with thing_id it tries to set + thing_id to None in the AssetThingAssociation table + """ + detail = { + "loc": ["body", "thing_id"], + "msg": f"Thing with ID {payload.thing_id} not found.", + "type": "value_error", + "input": {"thing_id": payload.thing_id}, + } + + raise PydanticStyleException(status_code=HTTP_409_CONFLICT, detail=[detail]) + + +# POST ========================================================================= +@router.post( + "/upload", + status_code=HTTP_201_CREATED, + dependencies=[Depends(admin_function)], +) +async def upload_asset( + bucket=Depends(get_storage_bucket), file: UploadFile = File(...) +) -> dict: + uri, blob_name = gcs_upload(file, bucket) + return { + "uri": uri, + "storage_path": blob_name, + } -router = APIRouter(prefix="/asset", tags=["asset"]) -GCS_BUCKET_NAME = os.environ.get("GCS_BUCKET_NAME") +@router.post("", status_code=HTTP_201_CREATED) +async def add_asset( + user: admin_dependency, + session: session_dependency, + asset_data: CreateAsset, +) -> AssetResponse: + + try: + data = asset_data.model_dump() + thing_id = data.pop("thing_id", None) + + storage_path = data["storage_path"] + + # check to see if an asset entry already exists for + # this storage path and thing_id + existing_asset = check_asset_exists(session, storage_path, thing_id=thing_id) + if existing_asset: + # If an asset already exists, return it + return existing_asset + + data["storage_service"] = "gcs" + asset = Asset(**data) + audit_add(user, asset) + + if thing_id: + assoc = AssetThingAssociation() + audit_add(user, assoc) + thing = session.get(Thing, thing_id) + assoc.thing = thing + assoc.asset = asset + session.add(assoc) + + session.add(asset) + session.commit() + session.refresh(asset) + + return asset + except ProgrammingError as e: + database_error_handler(asset_data, e) + + +# GET ========================================================================== + +""" +Developer's notes + +Do not generate signed urls when listing ALL assets. There is a reason to +generate signed urls when listing assets for a given `thing_id` because this +is used by the front end to display a gallery of images all at once. This is +the only case in which signed urls should be generated for a list of assets. A +signed url is always generated when retrieving assets individually +""" + + +@router.get("") +async def list_assets( + session: session_dependency, + thing_id: int = None, +) -> CustomPage[AssetResponse]: + """ + List all assets or assets associated with a specific thing. + """ + sql = select(Asset) + if thing_id: + sql = sql.join(AssetThingAssociation).where( + AssetThingAssociation.thing_id == thing_id + ) -def get_storage_bucket(): - from google.cloud import storage + def transformer(records: list[Asset]): + if thing_id is not None: + bucket = get_storage_bucket() + records = [add_signed_url(ai, bucket) for ai in records] + return records - client = storage.Client() - bucket = client.bucket(GCS_BUCKET_NAME) - return bucket + return paginate(query=sql, conn=session, transformer=transformer) @router.get("/{asset_id}") async def get_asset( asset_id: int, - database_session: Session = Depends(get_db_session), - bucket=Depends( - get_storage_bucket - ), # Assuming get_storage_bucket is defined elsewhere -): + session: session_dependency, + bucket=Depends(get_storage_bucket), +) -> AssetResponse: """ Retrieve an asset by its ID. """ - sql = select(Asset).where(Asset.id == asset_id) - asset = database_session.scalars(sql).one_or_none() - if not asset: - raise HTTPException(status_code=404, detail="Asset not found") + asset = simple_get_by_id(session, Asset, asset_id) - blob = bucket.blob(asset.storage_path) - asset.url = blob.generate_signed_url(expiration=timedelta(minutes=10), method="GET") + add_signed_url(asset, bucket) return asset -@router.post("/", status_code=201) -async def add_asset( - file: UploadFile = File(...), - database_session: Session = Depends(get_db_session), - bucket=Depends(get_storage_bucket), +# PATCH ======================================================================== +@router.patch("/{asset_id}") +async def update_asset( + asset_id: int, + session: session_dependency, + asset_data: UpdateAsset, + user: editor_dependency, +): + """ + Update an existing asset. + """ + return model_patcher(session, Asset, asset_id, asset_data, user=user) + + +# DELETE ======================================================================= + + +@router.delete("/{asset_id}", status_code=HTTP_204_NO_CONTENT) +async def delete_asset( + asset_id: int, session: session_dependency, user: admin_dependency ): - file_id = str(uuid4()) - blob_name = f"uploads/{file_id}_{file.filename}" - blob = bucket.blob(blob_name) - - blob.upload_from_file(file.file, content_type=file.content_type) - - asset = Asset( - filename=file.filename, - storage_service="gcs", - storage_path=blob_name, - mime_type=file.content_type, - size=file.size, - ) - database_session.add(asset) - database_session.commit() - database_session.refresh(asset) - return { - "id": asset.id, - "filename": asset.filename, - "url": f"https://storage.googleapis.com/{GCS_BUCKET_NAME}/{blob_name}", - } + # TODO: Interesting issue here. we don't have a way of tracking who deleted a record + return model_deleter(session, Asset, asset_id) + + +@router.delete( + "/{asset_id}/remove", + status_code=HTTP_204_NO_CONTENT, + dependencies=[Depends(admin_function)], +) +async def remove_asset( + asset_id: int, + session: session_dependency, + bucket=Depends(get_storage_bucket), +): + asset = simple_get_by_id(session, Asset, asset_id) + gcs_remove(asset.uri, bucket) # ============= EOF ============================================= diff --git a/api/author.py b/api/author.py index 7b224f9b7..1761dec6e 100644 --- a/api/author.py +++ b/api/author.py @@ -19,7 +19,7 @@ from db.engine import get_db_session from db.publication import Author -from schemas.response.publication import PublicationResponse +from schemas.publication import PublicationResponse router = APIRouter( prefix="/author", diff --git a/api/base.py b/api/base.py deleted file mode 100644 index e4e1cdf65..000000000 --- a/api/base.py +++ /dev/null @@ -1,231 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from typing import List - -from fastapi import APIRouter, Depends, status - -from db import adder -from db.contact import Contact -from db.group import Group, GroupThingAssociation -from services.people_helper import add_contact -from services.query_helper import ( - simple_get_by_id, - simple_all_getter, -) -from sqlalchemy.orm import Session - -from db.engine import get_db_session -from db.thing import SpringThing - -from schemas.base_create import ( - CreateSpring, -) -from schemas.create.location import ( - CreateGroup, - CreateGroupThing, -) -from schemas.create.contact import CreateContact -from schemas.base_responses import ( - ContactResponse, -) -from schemas.response.well import ( - GroupResponse, -) - -router = APIRouter( - prefix="/base", -) - - -# ============= Create ============================================ - - -@router.post( - "/group", summary="Create a new group", status_code=status.HTTP_201_CREATED -) -def create_group(group_data: CreateGroup, session: Session = Depends(get_db_session)): - """ - Create a new group in the database. - """ - return adder(session, Group, group_data) - - -@router.post( - "/group_thing", - summary="Create a new group thing", - status_code=status.HTTP_201_CREATED, -) -def create_group_thing( - group_location_data: CreateGroupThing, session: Session = Depends(get_db_session) -): - """ - Create a new group location association in the database. - """ - return adder(session, GroupThingAssociation, group_location_data) - - -@router.post( - "/contact", - summary="Create a new contact", - status_code=status.HTTP_201_CREATED, - response_model=ContactResponse, -) -def create_contact( - contact_data: CreateContact, session: Session = Depends(get_db_session) -): - - return add_contact(session, contact_data) - - # return adder(session, Contact, contact_data) - - -# @router.post( -# "/equipment", summary="Create a new equipment", status_code=status.HTTP_201_CREATED -# ) -# def create_equipment( -# equipment_data: CreateEquipment, session: Session = Depends(get_db_session) -# ): -# """ -# Create a new equipment in the database. -# """ -# # Placeholder for actual equipment creation logic -# # return {"message": "This endpoint will create a new equipment."} -# return adder(session, Equipment, equipment_data) -# - -# ==== Get ============================================ - - -@router.get("/group", response_model=List[GroupResponse], summary="Get groups") -async def get_groups(session: Session = Depends(get_db_session)): - """ - Retrieve all groups from the database. - """ - # sql = select(Group) - # result = db.execute(sql) - # return result.all() - return simple_all_getter(session, Group) - - -@router.get("/contact", response_model=List[ContactResponse], summary="Get contacts") -async def get_contacts(session: Session = Depends(get_db_session)): - """ - Retrieve all contacts from the database. - :param session: - :return: - """ - return simple_all_getter(session, Contact) - - -# @router.get( -# "/group_location", -# response_model=List[GroupLocationResponse], -# summary="Get group locations", -# ) -# async def get_group_locations(session: Session = Depends(get_db_session)): -# """ -# Retrieve all group locations from the database. -# """ -# return simple_all_getter(session, GroupLocationAssociation) -# - -# @router.get( -# "/spring", -# response_model=List[SpringResponse], -# ) -# async def get_springs(session: Session = Depends(get_db_session)): -# """ -# Retrieve all springs from the database. -# """ -# return simple_all_getter(session, SpringThing) - - -# @router.get( -# "/equipment", response_model=List[EquipmentResponse], summary="Get equipment" -# ) -# async def get_equipment(session: Session = Depends(get_db_session)): -# """ -# Retrieve all equipment from the database. -# """ -# return simple_all_getter(session, Equipment) - - -# ============= Get by ID ============================================ -# @router.get( -# "/equipment/{equipment_id}", -# response_model=EquipmentResponse, -# summary="Get equipment by ID", -# ) -# async def get_equipment_by_id( -# equipment_id: int, session: Session = Depends(get_db_session) -# ): -# """ -# Retrieve an equipment by ID from the database. -# """ -# equipment = simple_get_by_id(session, Equipment, equipment_id) -# if not equipment: -# return {"message": "Equipment not found"} -# return equipment - - -@router.get( - "/group/{group_id}", response_model=GroupResponse, summary="Get group by ID" -) -async def get_group_by_id(group_id: int, session: Session = Depends(get_db_session)): - """ - Retrieve a group by ID from the database. - """ - group = simple_get_by_id(session, Group, group_id) - if not group: - return {"message": "Group not found"} - return group - - -# @router.get( -# "/group_location/{group_location_id}", -# response_model=GroupLocationResponse, -# summary="Get group location by ID", -# ) -# async def get_group_location_by_id( -# group_location_id: int, session: Session = Depends(get_db_session) -# ): -# """ -# Retrieve a group location by ID from the database. -# """ -# group_location = simple_get_by_id( -# session, GroupLocationAssociation, group_location_id -# ) -# if not group_location: -# return {"message": "Group location not found"} -# return group_location - - -@router.get( - "/contact/{contact_id}", response_model=ContactResponse, summary="Get contact by ID" -) -async def get_contact_by_id( - contact_id: int, session: Session = Depends(get_db_session) -): - """ - Retrieve a contact by ID from the database. - """ - contact = simple_get_by_id(session, Contact, contact_id) - if not contact: - return {"message": "Contact not found"} - return contact - - -# ============= EOF ============================================= diff --git a/api/chemisty.py b/api/chemisty.py index 0a9815bb2..5519c3f02 100644 --- a/api/chemisty.py +++ b/api/chemisty.py @@ -86,7 +86,7 @@ # @router.post("/analysis", status_code=status.HTTP_201_CREATED, tags=["chemistry"]) # async def add_chemistry_analysis( # analysis_data: CreateWaterChemistryAnalysis = Depends(validate_analyte), -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new chemistry analysis. diff --git a/api/collabnet.py b/api/collabnet.py index 1bf5a3ba8..801c76455 100644 --- a/api/collabnet.py +++ b/api/collabnet.py @@ -1,111 +1,110 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from fastapi import Depends, status -from fastapi.routing import APIRoute, APIRouter -from sqlalchemy import select -from sqlalchemy.orm import Session -from geoalchemy2 import functions as geofunc - - -from db.engine import get_db_session -from db import adder -from db.location import Location -from db.thing import WellThing -from db.collabnet import CollaborativeNetworkWell -from schemas.create.collabnet import CreateCollaborativeNetworkWell - -router = APIRouter(prefix="/collabnet", tags=["collabnet"]) - - -@router.post("/add", status_code=status.HTTP_201_CREATED) -def add_collabnet_well( - data: CreateCollaborativeNetworkWell, - session: Session = Depends(get_db_session), -): - """ - Add a well to the collaborative network. - """ - return adder(session, CollaborativeNetworkWell, data) - - -@router.get("/stats") -def location_stats(session: Session = Depends(get_db_session)): - """ - Get statistics about the collaborative network wells. - """ - # sql = select(GroundwaterLevelObservation) - - # sql = sql.join(WellTimeseries) - - # sql = sql.join(CollaborativeNetworkWell) - # sql = sql.join(Well) - # sql = sql.outerjoin(GroundwaterLevelObservation) - # sql = sql.join(WellTimeseries) - # sql = sql.join(GroundwaterLevelObservation) - - # print(sql) - # stats = session.execute(sql).all() - - sql = select(WellThing, CollaborativeNetworkWell) - sql = sql.join(CollaborativeNetworkWell) - - wells = session.execute(sql).all() - return { - "total_wells": len(wells), - "actively_monitored_wells": sum( - 1 for well, collab in wells if collab.actively_monitored - ), - # "locations": [loc.name for in stats], - } - - -@router.get("/location_feature_collection") -def get_location(session: Session = Depends(get_db_session)): - """ """ - - sql = select(Location, geofunc.ST_AsGeoJSON(Location.point).label("geojson")) - sql = sql.join(WellThing) - sql = sql.join(CollaborativeNetworkWell) - - # if query: - # sql = sql.where(make_query(SampleLocation, query)) - - locations = session.execute(sql).all() - - def make_feature(location: Location, geojson: str): - """ - Create a GeoJSON feature from a SampleLocation and its geojson representation. - """ - return { - "type": "Feature", - "properties": { - "id": location.id, - "name": location.name, - "description": location.description, - "wells": [well.id for well in location.well], - }, - "geometry": geojson, - } - - features = [make_feature(*args) for args in locations] - - return { - "type": "FeatureCollection", - "features": features, - } - - -# ============= EOF ============================================= +# # =============================================================================== +# # Copyright 2025 ross +# # +# # Licensed under the Apache License, Version 2.0 (the "License"); +# # you may not use this file except in compliance with the License. +# # You may obtain a copy of the License at +# # +# # http://www.apache.org/licenses/LICENSE-2.0 +# # +# # Unless required by applicable law or agreed to in writing, software +# # distributed under the License is distributed on an "AS IS" BASIS, +# # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# # See the License for the specific language governing permissions and +# # limitations under the License. +# # =============================================================================== +# from fastapi import Depends, status +# from fastapi.routing import APIRoute, APIRouter +# from sqlalchemy import select +# from sqlalchemy.orm import Session +# from geoalchemy2 import functions as geofunc +# +# from core.dependencies import session_dependency +# from db.engine import get_db_session +# from db import adder +# from db.location import Location +# from db.thing import WellThing +# from db.collabnet import CollaborativeNetworkWell +# from schemas.create.collabnet import CreateCollaborativeNetworkWell +# +# router = APIRouter(prefix="/collabnet", tags=["collabnet"]) +# +# +# @router.post("/add", status_code=status.HTTP_201_CREATED, deprecated=True) +# def add_collabnet_well( +# data: CreateCollaborativeNetworkWell, session: session_dependency +# ): +# """ +# Add a well to the collaborative network. +# """ +# return adder(session, CollaborativeNetworkWell, data) +# +# +# @router.get("/stats", deprecated=True) +# def location_stats(session: Session = Depends(get_db_session)): +# """ +# Get statistics about the collaborative network wells. +# """ +# # sql = select(GroundwaterLevelObservation) +# +# # sql = sql.join(WellTimeseries) +# +# # sql = sql.join(CollaborativeNetworkWell) +# # sql = sql.join(Well) +# # sql = sql.outerjoin(GroundwaterLevelObservation) +# # sql = sql.join(WellTimeseries) +# # sql = sql.join(GroundwaterLevelObservation) +# +# # print(sql) +# # stats = session.execute(sql).all() +# +# sql = select(WellThing, CollaborativeNetworkWell) +# sql = sql.join(CollaborativeNetworkWell) +# +# wells = session.execute(sql).all() +# return { +# "total_wells": len(wells), +# "actively_monitored_wells": sum( +# 1 for well, collab in wells if collab.actively_monitored +# ), +# # "locations": [loc.name for in stats], +# } +# +# +# @router.get("/location_feature_collection", deprecated=True) +# def get_location(session: Session = Depends(get_db_session)): +# """ """ +# +# sql = select(Location, geofunc.ST_AsGeoJSON(Location.point).label("geojson")) +# sql = sql.join(WellThing) +# sql = sql.join(CollaborativeNetworkWell) +# +# # if query: +# # sql = sql.where(make_query(SampleLocation, query)) +# +# locations = session.execute(sql).all() +# +# def make_feature(location: Location, geojson: str): +# """ +# Create a GeoJSON feature from a SampleLocation and its geojson representation. +# """ +# return { +# "type": "Feature", +# "properties": { +# "id": location.id, +# "name": location.name, +# "description": location.description, +# "wells": [well.id for well in location.well], +# }, +# "geometry": geojson, +# } +# +# features = [make_feature(*args) for args in locations] +# +# return { +# "type": "FeatureCollection", +# "features": features, +# } +# +# +# # ============= EOF ============================================= diff --git a/api/contact.py b/api/contact.py new file mode 100644 index 000000000..e7ea8ed4e --- /dev/null +++ b/api/contact.py @@ -0,0 +1,616 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from fastapi import APIRouter, Query +from fastapi import APIRouter +from sqlalchemy import select +from starlette import status +from sqlalchemy.exc import ProgrammingError +from api.pagination import CustomPage +from fastapi_pagination.ext.sqlalchemy import paginate + +from core.dependencies import ( + session_dependency, + amp_admin_dependency, + amp_editor_dependency, + amp_viewer_dependency, +) +from db import ThingContactAssociation, Thing, Contact, Email, Phone, Address +from schemas.contact import ( + CreateContact, + CreateAddress, + CreateEmail, + CreatePhone, + PhoneResponse, + EmailResponse, + AddressResponse, + ContactResponse, + UpdateContact, + UpdateEmail, + UpdatePhone, + UpdateAddress, +) +from services.crud_helper import model_patcher, model_deleter, model_adder +from services.contact_helper import ( + add_contact, +) +from services.lexicon_helper import get_terms_by_category +from services.query_helper import ( + simple_get_by_id, + paginated_all_getter, + order_sort_filter, +) +from services.exceptions_helper import PydanticStyleException + +router = APIRouter(prefix="/contact", tags=["contact"]) + +# ====== DB ERROR HANDLERS ===================================================== + + +def database_error_handler( + payload: CreateEmail | CreateContact | CreatePhone, error: ProgrammingError +) -> None: + """ + Handle errors raised by the database when adding or updating a sample. + """ + + error_message = error.orig.args[0]["M"] + + if ( + error_message + == 'insert or update on table "thing_contact_association" violates foreign key constraint "thing_contact_association_thing_id_fkey"' + ): + detail = { + "loc": ["body", "thing_id"], + "msg": f"Thing with ID {payload.thing_id} not found.", + "type": "value_error", + "input": {"thing_id": payload.thing_id}, + } + elif ( + error_message + == 'insert or update on table "email" violates foreign key constraint "email_contact_id_fkey"' + ): + detail = { + "loc": ["body", "contact_id"], + "msg": f"Contact with ID {payload.contact_id} not found.", + "type": "value_error", + "input": {"contact_id": payload.contact_id}, + } + elif ( + error_message + == 'insert or update on table "phone" violates foreign key constraint "phone_contact_id_fkey"' + ): + detail = { + "loc": ["body", "contact_id"], + "msg": f"Contact with ID {payload.contact_id} not found.", + "type": "value_error", + "input": {"contact_id": payload.contact_id}, + } + elif ( + error_message + == 'insert or update on table "address" violates foreign key constraint "address_contact_id_fkey"' + ): + detail = { + "loc": ["body", "contact_id"], + "msg": f"Contact with ID {payload.contact_id} not found.", + "type": "value_error", + "input": {"contact_id": payload.contact_id}, + } + elif ( + error_message + == 'insert or update on table "contact" violates foreign key constraint "contact_contact_type_fkey"' + ): + valid_terms = get_terms_by_category("contact_type") + valid_contact_types_for_msg = " | ".join(valid_terms) + detail = { + "loc": ["body", "contact_type"], + "msg": f"Invalid contact_type. Valid terms are: {valid_contact_types_for_msg}", + "type": "value_error", + "input": {"contact_type": payload.contact_type}, + } + + raise PydanticStyleException(status_code=status.HTTP_409_CONFLICT, detail=[detail]) + + +# ====== POST ================================================================== + + +@router.post( + "", + summary="Create a new contact", + status_code=status.HTTP_201_CREATED, +) +async def create_contact( + contact_data: CreateContact, session: session_dependency, user: amp_admin_dependency +) -> ContactResponse: + try: + return add_contact(session, contact_data, user=user) + except ProgrammingError as e: + database_error_handler(contact_data, e) + + +@router.post( + "/address", + summary="Add an address to a contact", + status_code=status.HTTP_201_CREATED, +) +async def create_address( + address_data: CreateAddress, + session: session_dependency, + user: amp_admin_dependency, +) -> AddressResponse: + """ + Add a new address to an existing contact in the database. + :param contact_id: ID of the contact to add the address to + :param address_data: Data for the new address + :param session: Database session + :return: Response containing the added address + """ + try: + return model_adder(session, Address, address_data, user=user) + except ProgrammingError as e: + database_error_handler(address_data, e) + + +@router.post( + "/email", + summary="Add an email to a contact", + status_code=status.HTTP_201_CREATED, +) +async def create_email( + email_data: CreateEmail, + session: session_dependency, + user: amp_admin_dependency, +) -> EmailResponse: + try: + return model_adder(session, Email, email_data, user=user) + except ProgrammingError as e: + database_error_handler(email_data, e) + + +@router.post( + "/phone", + summary="Add a phone number to a contact", + status_code=status.HTTP_201_CREATED, +) +async def create_phone( + phone_data: CreatePhone, + session: session_dependency, + user: amp_admin_dependency, +) -> PhoneResponse: + try: + return model_adder(session, Phone, phone_data, user=user) + except ProgrammingError as e: + database_error_handler(phone_data, e) + + +# @router.post( +# "/{contact_id}/thing-association", +# summary="Add a thing-contact association to a contact", +# status_code=status.HTTP_201_CREATED, +# ) +# def add_thing_association_to_contact( +# contact_id: int, +# thing_association_data: CreateThingAssociation, +# session: session_dependency, +# user: amp_admin_dependency, +# ) -> ThingContactAssociationResponse: +# contact = simple_get_by_id(session, Contact, contact_id) +# try: +# return add_thing_association( +# session, contact.id, thing_association_data, user=user +# ) +# except ProgrammingError as e: +# database_error_handler(thing_association_data, e) + + +# PATCH ======================================================================== + + +# TODO: catch database errors with patches, most likely foreign key constraints +# then return a 409 response +@router.patch( + "/email/{email_id}", +) +async def update_contact_email( + email_id: int, + email_data: UpdateEmail, + session: session_dependency, + user: amp_editor_dependency, +) -> EmailResponse: + """ + Update an existing contact's email in the database. + """ + return model_patcher(session, Email, email_id, email_data, user=user) + + +@router.patch( + "/phone/{phone_id}", +) +async def update_contact_phone( + phone_id: int, + phone_data: UpdatePhone, + session: session_dependency, + user: amp_editor_dependency, +) -> PhoneResponse: + """ + Update an existing contact's phone number in the database. + :param contact_id: ID of the contact to update + :param phone_type: Type of the phone to update + :param phone_number: New phone number + :param session: Database session + :return: Updated contact response + """ + return model_patcher(session, Phone, phone_id, phone_data, user=user) + + +@router.patch( + "/address/{address_id}", +) +async def update_contact_address( + address_id: int, + address_data: UpdateAddress, + session: session_dependency, + user: amp_editor_dependency, +) -> AddressResponse: + """ + Update an existing contact's address in the database. + + :param address_id: + :param address_data: + :param session: + :return: + """ + return model_patcher(session, Address, address_id, address_data, user=user) + + +# @router.patch( +# "/thing-association/{thing_contact_association_id}", +# summary="Update thing-contact association", +# ) +# def update_thing_contact_association( +# thing_contact_association_id: int, +# thing_contact_association_data: UpdateThingContactAssociation, +# session: session_dependency, +# user: amp_editor_dependency, +# ) -> ThingContactAssociationResponse: +# """ +# Update an existing thing-contact association in the database. + +# :param thing_contact_association_id: +# :param thing_contact_association_data: +# :param session: +# :return: +# """ +# try: +# return model_patcher( +# session, +# ThingContactAssociation, +# thing_contact_association_id, +# thing_contact_association_data, +# user=user, +# ) +# except ProgrammingError as e: +# database_error_handler(thing_contact_association_data, e) + + +@router.patch("/{contact_id}", summary="Update contact") +async def update_contact( + contact_id: int, + contact_data: UpdateContact, + session: session_dependency, + user: amp_editor_dependency, +) -> ContactResponse: + """ + Update an existing contact in the database. + :param contact_id: ID of the contact to update + :param contact_data: Data to update the contact with + :param session: Database session + :return: Updated contact response + """ + contact = simple_get_by_id(session, Contact, contact_id) + + """ + if new name is set to None, new organization is unset, and existing organization is already None raise an error + if new organization is set to None, new name is unset, and existing name is already None raise an error + + both new name and new organization cannot be set to None - this is a schema restriction + """ + # exclude unsets so only intentional Nones are evaluated + payload_excluding_unsets = contact_data.model_dump(exclude_unset=True) + + if ( + contact.organization is None + and payload_excluding_unsets.get("name", "unset") is None + and payload_excluding_unsets.get("organization", "unset") == "unset" + ): + raise PydanticStyleException( + status_code=status.HTTP_409_CONFLICT, + detail=[ + { + "loc": ["body", "name"], + "msg": "name cannot be set to None because organization is already None.", + "type": "value_error", + "input": {"name": payload_excluding_unsets.get("name")}, + } + ], + ) + elif ( + contact.name is None + and payload_excluding_unsets.get("organization", "unset") is None + and payload_excluding_unsets.get("name", "unset") == "unset" + ): + raise PydanticStyleException( + status_code=status.HTTP_409_CONFLICT, + detail=[ + { + "loc": ["body", "organization"], + "msg": "organization cannot be set to None because name is already None.", + "type": "value_error", + "input": { + "organization": payload_excluding_unsets.get("organization") + }, + } + ], + ) + + try: + return model_patcher(session, Contact, contact_id, contact_data, user=user) + except ProgrammingError as e: + database_error_handler(contact_data, e) + + +# ====== GET =================================================================== + + +@router.get("/email", summary="Get all emails") +async def get_emails( + session: session_dependency, user: amp_viewer_dependency +) -> CustomPage[EmailResponse]: + """ + Retrieve all emails from the database. + :param session: + :return: + """ + return paginated_all_getter(session, Email) + + +@router.get("/email/{email_id}", summary="Get email by ID") +async def get_email_by_id( + email_id: int, session: session_dependency, user: amp_viewer_dependency +) -> EmailResponse: + """ + Retrieve an email by ID from the database. + """ + return simple_get_by_id(session, Email, email_id) + + +@router.get("/phone", summary="Get all phones") +async def get_phones( + session: session_dependency, user: amp_viewer_dependency +) -> CustomPage[PhoneResponse]: + """ + Retrieve all phone numbers from the database. + :param session: + :return: + """ + return paginated_all_getter(session, Phone) + + +@router.get("/phone/{phone_id}", summary="Get phone by ID") +async def get_phone_by_id( + phone_id: int, session: session_dependency, user: amp_viewer_dependency +) -> PhoneResponse: + """ + Retrieve a phone by ID from the database. + """ + return simple_get_by_id(session, Phone, phone_id) + + +@router.get("/address", summary="Get all addresses") +async def get_addresses( + session: session_dependency, user: amp_viewer_dependency +) -> CustomPage[AddressResponse]: + """ + Retrieve all addresses from the database. + :param session: + :return: + """ + return paginated_all_getter(session, Address) + + +@router.get("/address/{address_id}", summary="Get address by ID") +async def get_address_by_id( + address_id: int, session: session_dependency, user: amp_viewer_dependency +) -> AddressResponse: + """ + Retrieve an address by ID from the database. + """ + return simple_get_by_id(session, Address, address_id) + + +# @router.get("/thing-association", summary="Get all thing-contact associations") +# async def get_thing_contact_associations( +# session: session_dependency, user: amp_viewer_dependency +# ) -> CustomPage[ThingContactAssociationResponse]: +# """ +# Retrieve all thing-contact associations from the database. +# :param session: +# :return: +# """ +# return paginated_all_getter(session, ThingContactAssociation) + + +# @router.get( +# "/thing-association/{thing_contact_association_id}", +# summary="Get thing-contact association by ID", +# ) +# async def get_thing_contact_association_by_id( +# thing_contact_association_id: int, +# session: session_dependency, +# user: amp_viewer_dependency, +# ) -> ThingContactAssociationResponse: +# """ +# Retrieve a thing-contact association by ID from the database. +# """ +# return simple_get_by_id( +# session, ThingContactAssociation, thing_contact_association_id +# ) + + +@router.get("", summary="Get contacts") +async def get_contacts( + session: session_dependency, + user: amp_viewer_dependency, + sort: str = None, + order: str = None, + filter_: str = Query(alias="filter", default=None), + thing_id: int | None = None, +) -> CustomPage[ContactResponse]: + """ + Retrieve all contacts from the database. + :param session: + :return: + """ + if thing_id: + sql = select(Contact) + sql = sql.join(ThingContactAssociation).join(Thing) + sql = sql.where(Thing.id == thing_id) + + sql = order_sort_filter(sql, Contact, sort=sort, order=order, filter_=filter_) + return paginate(query=sql, conn=session) + else: + return paginated_all_getter(session, Contact, sort, order, filter_) + + +@router.get("/{contact_id}", summary="Get contact by ID") +async def get_contact_by_id( + contact_id: int, session: session_dependency, user: amp_viewer_dependency +) -> ContactResponse: + """ + Retrieve a contact by ID from the database. + """ + return simple_get_by_id(session, Contact, contact_id) + + +@router.get("/{contact_id}/email", summary="Get contact emails") +async def get_contact_emails( + contact_id: int, session: session_dependency, user: amp_viewer_dependency +) -> CustomPage[EmailResponse]: + """ + Retrieve all emails associated with a contact. + """ + contact = simple_get_by_id(session, Contact, contact_id) + sql = select(Email).where(Email.contact_id == contact.id) + return paginate(query=sql, conn=session) + + +@router.get("/{contact_id}/phone", summary="Get contact phones") +async def get_contact_phones( + contact_id: int, session: session_dependency, user: amp_viewer_dependency +) -> CustomPage[PhoneResponse]: + """ + Retrieve all phone numbers associated with a contact. + """ + contact = simple_get_by_id(session, Contact, contact_id) + sql = select(Phone).where(Phone.contact_id == contact.id) + return paginate(query=sql, conn=session) + + +@router.get("/{contact_id}/address", summary="Get contact addresses") +async def get_contact_addresses( + contact_id: int, session: session_dependency, user: amp_viewer_dependency +) -> CustomPage[AddressResponse]: + """ + Retrieve all addresses associated with a contact. + """ + contact = simple_get_by_id(session, Contact, contact_id) + sql = select(Address).where(Address.contact_id == contact.id) + return paginate(query=sql, conn=session) + + +# @router.get("/{contact_id}/thing-association", summary="Get contact's things") +# async def get_contact_thing_associations( +# contact_id: int, session: session_dependency, user: amp_viewer_dependency +# ) -> CustomPage[ThingContactAssociationResponse]: +# """ +# Retrieve all thing-contact associations for a contact. +# """ +# contact = simple_get_by_id(session, Contact, contact_id) +# sql = select(ThingContactAssociation).where( +# ThingContactAssociation.contact_id == contact.id +# ) +# return paginate(query=sql, conn=session) + + +# DELETE ======================================================================= + + +@router.delete("/email/{email_id}", summary="Delete contact email") +async def delete_contact_email( + email_id: int, session: session_dependency, user: amp_admin_dependency +): + """ + Delete a contact email by ID from the database. + """ + return model_deleter(session, Email, email_id) + + +@router.delete("/phone/{phone_id}", summary="Delete contact phone") +async def delete_contact_phone( + phone_id: int, session: session_dependency, user: amp_admin_dependency +): + """ + Delete a contact phone by ID from the database. + """ + return model_deleter(session, Phone, phone_id) + + +@router.delete("/address/{address_id}", summary="Delete contact address") +async def delete_contact_address( + address_id: int, session: session_dependency, user: amp_admin_dependency +): + """ + Delete a contact address by ID from the database. + """ + return model_deleter(session, Address, address_id) + + +# @router.delete( +# "/thing-association/{thing_contact_association_id}", +# summary="Delete contact thing association", +# ) +# def delete_contact_thing_association( +# thing_contact_association_id: int, +# session: session_dependency, +# user: amp_admin_dependency, +# ): +# """ +# Delete a contact's thing association from the database +# """ +# return model_deleter(session, ThingContactAssociation, thing_contact_association_id) + + +@router.delete("/{contact_id}", summary="Delete contact") +async def delete_contact( + contact_id: int, session: session_dependency, user: amp_admin_dependency +): + """ + Delete a contact by ID from the database. + """ + return model_deleter(session, Contact, contact_id) + + +# ============= EOF ============================================= diff --git a/api/form.py b/api/form.py index d42818226..99d94e1d2 100644 --- a/api/form.py +++ b/api/form.py @@ -1,98 +1,98 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -from fastapi import APIRouter, Depends, status - -from db.engine import get_db_session -from db.location import Location -from db.group import Group -from db.thing.well import WellThing -from schemas.form import ( - WellForm, - WellFormResponse, - GroundwaterLevelFormResponse, - GroundwaterLevelForm, -) -from services.people_helper import add_contact -from services.query_helper import simple_get_by_name - -router = APIRouter(prefix="/form") - - -@router.post( - "/well", response_model=WellFormResponse, status_code=status.HTTP_201_CREATED -) -async def well_form(form_data: WellForm, session=Depends(get_db_session)): - """ - Endpoint to handle well form submissions. - """ - # add location to the database - data = form_data.model_dump() - location_data = data.get("location", None) - - location = Location(**location_data) - session.add(location) - - groups = data.get("groups", None) - for group_data in groups: - if group_data: - group = Group(**group_data) - session.add(group) - - group.locations.append(location) - - # add owner to the database - # owner = Owner(**owner_data) - # existing_owner = simple_get_by_name(session, Owner, owner.name) - # if existing_owner is None: - # session.add(owner) - # session.commit() - # session.refresh(owner) - # else: - # owner = existing_owner - # - # cs = [Contact(**contact) for contact in contact_data if contact is not None] - # owner.contacts.extend(cs) - # for ci in contact_data: - # add_contact(session, ci, owner=owner) - - # add well to the database - well_data = data.get("well", None) - well = WellThing(**well_data) - well.location = location - session.add(well) - - session.commit() - - response_data = {"location": location, "well": well} - return response_data - - -@router.post( - "/groundwaterlevel", - response_model=GroundwaterLevelFormResponse, - status_code=status.HTTP_201_CREATED, -) -async def groundwater_level_form( - gwl_data: GroundwaterLevelForm, session=Depends(get_db_session) -): - """ - Endpoint to handle groundwater level form submissions. - """ - data = gwl_data.model_dump() - - -# ============= EOF ============================================= +# # =============================================================================== +# # Copyright 2025 ross +# # +# # Licensed under the Apache License, Version 2.0 (the "License"); +# # you may not use this file except in compliance with the License. +# # You may obtain a copy of the License at +# # +# # http://www.apache.org/licenses/LICENSE-2.0 +# # +# # Unless required by applicable law or agreed to in writing, software +# # distributed under the License is distributed on an "AS IS" BASIS, +# # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# # See the License for the specific language governing permissions and +# # limitations under the License. +# # =============================================================================== +# +# from fastapi import APIRouter, Depends, status +# +# from db.engine import get_db_session +# from db.location import Location +# from db.group import Group +# from db.thing.well import WellThing +# from schemas.form import ( +# WellForm, +# WellFormResponse, +# GroundwaterLevelFormResponse, +# GroundwaterLevelForm, +# ) +# from services.people_helper import add_contact +# from services.query_helper import simple_get_by_name +# +# router = APIRouter(prefix="/form") +# +# +# @router.post( +# "/well", response_model=WellFormResponse, status_code=status.HTTP_201_CREATED +# ) +# async def well_form(form_data: WellForm, session=Depends(get_db_session)): +# """ +# Endpoint to handle well form submissions. +# """ +# # add location to the database +# data = form_data.model_dump() +# location_data = data.get("location", None) +# +# location = Location(**location_data) +# session.add(location) +# +# groups = data.get("groups", None) +# for group_data in groups: +# if group_data: +# group = Group(**group_data) +# session.add(group) +# +# group.locations.append(location) +# +# # add owner to the database +# # owner = Owner(**owner_data) +# # existing_owner = simple_get_by_name(session, Owner, owner.name) +# # if existing_owner is None: +# # session.add(owner) +# # session.commit() +# # session.refresh(owner) +# # else: +# # owner = existing_owner +# # +# # cs = [Contact(**contact) for contact in contact_data if contact is not None] +# # owner.contacts.extend(cs) +# # for ci in contact_data: +# # add_contact(session, ci, owner=owner) +# +# # add well to the database +# well_data = data.get("well", None) +# well = WellThing(**well_data) +# well.location = location +# session.add(well) +# +# session.commit() +# +# response_data = {"location": location, "well": well} +# return response_data +# +# +# @router.post( +# "/groundwaterlevel", +# response_model=GroundwaterLevelFormResponse, +# status_code=status.HTTP_201_CREATED, +# ) +# async def groundwater_level_form( +# gwl_data: GroundwaterLevelForm, session=Depends(get_db_session) +# ): +# """ +# Endpoint to handle groundwater level form submissions. +# """ +# data = gwl_data.model_dump() +# +# +# # ============= EOF ============================================= diff --git a/api/geochronology.py b/api/geochronology.py index c2a06b1bf..411071d86 100644 --- a/api/geochronology.py +++ b/api/geochronology.py @@ -15,9 +15,9 @@ # =============================================================================== from db.geochronology import GeochronologyAge from fastapi import APIRouter, Depends, status -from db import adder +from services.crud_helper import model_adder from db.engine import get_db_session -from schemas.create.geochronology import CreateGeochronologyAge +from schemas.geochronology import CreateGeochronologyAge from sqlalchemy.orm import Session from sqlalchemy import select @@ -33,7 +33,7 @@ async def create_age( """ # Placeholder for actual implementation # return {"message": "Geochronology age created successfully.", "data": age} - return adder(session, GeochronologyAge, age) + return model_adder(session, GeochronologyAge, age) @router.get("/age", tags=["geochronology"]) diff --git a/api/geospatial.py b/api/geospatial.py new file mode 100644 index 000000000..4f25c2ff6 --- /dev/null +++ b/api/geospatial.py @@ -0,0 +1,146 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +import json +from typing import Annotated, List, Union + +from fastapi import APIRouter, Query, HTTPException +from fastapi.responses import FileResponse +from geoalchemy2.shape import to_shape +from shapely.io import to_geojson + +# from starlette.responses import FileResponse + +from core.dependencies import session_dependency +from db import Group +from schemas.thing import FeatureCollectionResponse +from services.geospatial_helper import create_shapefile, get_thing_features +from services.query_helper import simple_get_by_id + +router = APIRouter(prefix="/geospatial", tags=["geospatial"]) + + +@router.get("") +async def get_geospatial( + session: session_dependency, + thing_type: Annotated[List[str], Query(title="thing_type")] = None, + group: Annotated[str | int, Query(title="group")] = None, + format_: Annotated[ + str, + Query( + title="format", + description="Format of the response. 'geojson' for GeoJSON FeatureCollection, 'shapefile' for a shapefile.", + alias="format", + pattern="^(geojson|shapefile)$", + ), + ] = "geojson", +): + """ + Endpoint to retrieve a GeoJSON FeatureCollection or a shapefile. + If the request is for a shapefile, it will return a zip file containing the shapefile. + Otherwise, it returns a GeoJSON FeatureCollection. + """ + + if format_ == "geojson": + return get_feature_collection(session, thing_type, group) + else: + return get_location_shapefile(session, thing_type, group) + + +@router.get("/project-area/{group_id}", summary="Get project area for group") +async def get_project_area( + session: session_dependency, group_id: int +) -> FeatureCollectionResponse: + + group = simple_get_by_id(session, Group, group_id) + + if not group.project_area: + raise HTTPException(status_code=404, detail="Group has no project area") + + features = [ + { + "type": "Feature", + "geometry": json.loads(to_geojson(to_shape(group.project_area))), + "properties": { + "group_id": group.id, + "group_name": group.name, + "group_description": group.description, + }, + } + ] + + return { + "type": "FeatureCollection", + "features": features, + } + + +def get_feature_collection( + session: session_dependency, + thing_type: List[str] | None = None, + group: Annotated[ + str | int, Query(title="group", description="group", alias="group") + ] = None, +) -> FeatureCollectionResponse: + """ + Endpoint to retrieve a GeoJSON FeatureCollection. + """ + + things = get_thing_features(session, thing_type, group) + + def make_feature_dict(thing, geometry, *other): + return { + "type": "Feature", + "properties": { + "id": thing.id, + "thing_type": thing.thing_type, + "name": thing.name, + "group": group, + }, + "geometry": json.loads(geometry), + } + + features = [make_feature_dict(*item) for item in things] + + return { + "type": "FeatureCollection", + "features": features, + } + + +def get_location_shapefile( + session: session_dependency, + thing_type: str | None = None, + group: str | int | None = None, +) -> FileResponse: + """ + Retrieve all sample locations as a shapefile. + """ + + things = get_thing_features(session, thing_type, group) + create_shapefile(things, "things.shp") + + # Return the shapefile as a zip (optional: zip the .shp, .shx, .dbf files) + import zipfile + + with zipfile.ZipFile("things.zip", "w") as zf: + for ext in ["shp", "shx", "dbf"]: + zf.write(f"things.{ext}") + return FileResponse( + "things.zip", media_type="application/zip", filename="things.zip" + ) + + +# ============= EOF ============================================= diff --git a/api/geothermal.py b/api/geothermal.py index 966d19e46..7d6f96395 100644 --- a/api/geothermal.py +++ b/api/geothermal.py @@ -13,11 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from fastapi import APIRouter, Depends, status -from sqlalchemy.orm import Session - -from db import adder -from db.engine import get_db_session +from fastapi import APIRouter # # from db.geothermal import ( @@ -30,16 +26,6 @@ # GeothermalSampleSet, # GeothermalBottomHoleTemperatureHeader, # ) -from schemas.create.geothermal import ( - CreateTemperatureProfile, - CreateTemperatureProfileObservation, - CreateGeothermalSampleSet, - CreateBottomHoleTemperatureHeader, - CreateBottomHoleTemperature, - CreateGeothermalInterval, - CreateThermalConductivity, - CreateHeatFlow, -) router = APIRouter(prefix="/geothermal", tags=["geothermal"]) @@ -47,7 +33,7 @@ # @router.post("/sample_set", status_code=status.HTTP_201_CREATED) # async def add_geothermal_sample_set( # sample_set_data: CreateGeothermalSampleSet, # Replace with appropriate schema -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new geothermal sample set. @@ -59,7 +45,7 @@ # @router.post("/bottom_hole_temperature_header", status_code=status.HTTP_201_CREATED) # async def add_bottom_hole_temperature_header( # bottom_hole_temperature_header_data: CreateBottomHoleTemperatureHeader, -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new bottom hole temperature header. @@ -75,7 +61,7 @@ # @router.post("/temperature_profile", status_code=status.HTTP_201_CREATED) # async def add_temperature_profile( # temperature_profile_data: CreateTemperatureProfile, -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new temperature profile. @@ -86,7 +72,7 @@ # @router.post("/temperature_profile_observation", status_code=status.HTTP_201_CREATED) # async def add_temperature_profile_observation( # temperature_profile_observation_data: CreateTemperatureProfileObservation, -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new temperature profile observation. @@ -101,7 +87,7 @@ # @router.post("/bottom_hole_temperature", status_code=status.HTTP_201_CREATED) # async def add_bottom_hole_temperature( # bottom_hole_temperature_data: CreateBottomHoleTemperature, -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new bottom hole temperature. @@ -116,7 +102,7 @@ # @router.post("/interval", status_code=status.HTTP_201_CREATED) # async def add_geothermal_interval( # interval_data: CreateGeothermalInterval, # Replace with appropriate schema -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new geothermal interval. @@ -128,7 +114,7 @@ # @router.post("/thermal_conductivity", status_code=status.HTTP_201_CREATED) # async def add_thermal_conductivity( # thermal_conductivity_data: CreateThermalConductivity, # Replace with appropriate schema -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new geothermal thermal conductivity. @@ -140,7 +126,7 @@ # @router.post("/heat_flow", status_code=status.HTTP_201_CREATED) # async def add_heat_flow( # heat_flow_data: CreateHeatFlow, -# session: Session = Depends(get_db_session), +# session: session_dependency # ): # """ # Add a new geothermal heat flow. diff --git a/api/group.py b/api/group.py new file mode 100644 index 000000000..a0983b0bf --- /dev/null +++ b/api/group.py @@ -0,0 +1,123 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== + +from fastapi import Depends, APIRouter, Query +from starlette.status import HTTP_201_CREATED, HTTP_204_NO_CONTENT + +from api.pagination import CustomPage +from core.dependencies import ( + session_dependency, + admin_dependency, + editor_dependency, + viewer_function, +) +from db.group import Group +from schemas.group import UpdateGroup, CreateGroup, GroupResponse +from services.crud_helper import model_patcher, model_deleter, model_adder +from services.query_helper import ( + simple_get_by_id, + paginated_all_getter, +) + +router = APIRouter( + prefix="/group", tags=["group"], dependencies=[Depends(viewer_function)] +) + +# POST ========================================================================= + + +@router.post("", summary="Create a new group", status_code=HTTP_201_CREATED) +async def create_group( + group_data: CreateGroup, session: session_dependency, user: admin_dependency +) -> GroupResponse: + """ + Create a new group in the database. + """ + return model_adder(session, Group, group_data, user=user) + + +# @router.post( +# "/association", +# summary="Create a new group-thing association", +# status_code=status.HTTP_201_CREATED, +# ) +# def create_group_thing( +# group_location_data: CreateGroupThing, +# session: session_dependency, +# user: admin_dependency, +# ): +# """ +# Create a new group location association in the database. +# """ +# return adder(session, GroupThingAssociation, group_location_data, user=user) +# + + +# ============= Get ============================================= +@router.get("", summary="Get groups") +async def get_groups( + session: session_dependency, filter_: str = Query(alias="filter", default=None) +) -> CustomPage[GroupResponse]: + """ + Retrieve all groups from the database. + """ + return paginated_all_getter(session, Group, filter_=filter_) + + +@router.get("/{group_id}", summary="Get group by ID") +async def get_group_by_id(group_id: int, session: session_dependency) -> GroupResponse: + """ + Retrieve a group by ID from the database. + """ + return simple_get_by_id(session, Group, group_id) + + +# @router.get( +# "/association/{association_id}", +# summary="Get group-thing association by ID", +# ) +# async def get_group_thing_by_id(association_id: int, session: session_dependency): +# """ +# Retrieve a group-thing association by ID from the database. +# """ +# return simple_get_by_id(session, GroupThingAssociation, association_id) + + +# ============= Patch ============================================= +@router.patch("/{group_id}", summary="Update a group by ID") +async def update_group( + user: editor_dependency, + group_id: int, + group_data: UpdateGroup, + session: session_dependency, +) -> GroupResponse: + """ + Update a group by ID in the database. + """ + return model_patcher(session, Group, group_id, group_data, user=user) + + +# DELETE ======================================================================= +@router.delete( + "/{group_id}", summary="Delete a group by ID", status_code=HTTP_204_NO_CONTENT +) +async def delete_group( + user: admin_dependency, group_id: int, session: session_dependency +): + return model_deleter(session, Group, group_id) + + +# ============= EOF ============================================= diff --git a/api/lexicon.py b/api/lexicon.py index 7b9498c79..2cfd0d9fb 100644 --- a/api/lexicon.py +++ b/api/lexicon.py @@ -13,85 +13,299 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from fastapi import APIRouter, Depends -from fastapi import status -from db.engine import get_db_session -from db.lexicon import Lexicon, Category, TermCategoryAssociation, LexiconTriple -from schemas.response.lexicon import LexiconTermResponse, LexiconCategoryResponse -from schemas.create.lexicon import ( +from fastapi import APIRouter, Depends, Query +from fastapi_pagination.ext.sqlalchemy import paginate +from sqlalchemy import select, func +from sqlalchemy.exc import ProgrammingError +from starlette.status import ( + HTTP_200_OK, + HTTP_201_CREATED, + HTTP_204_NO_CONTENT, + HTTP_409_CONFLICT, +) + +from api.pagination import CustomPage +from core.dependencies import ( + session_dependency, + editor_dependency, + admin_dependency, + viewer_function, +) +from db.lexicon import ( + LexiconCategory, + LexiconTerm, + LexiconTermCategoryAssociation, + LexiconTriple, +) +from schemas.lexicon import ( CreateLexiconTerm, CreateLexiconCategory, - CreateTriple, + CreateLexiconTriple, + LexiconTermResponse, + LexiconCategoryResponse, + LexiconTripleResponse, + UpdateLexiconTerm, + UpdateLexiconCategory, + UpdateLexiconTriple, +) +from services.crud_helper import model_patcher, model_deleter, model_adder +from services.exceptions_helper import PydanticStyleException +from services.lexicon_helper import add_lexicon_term, add_lexicon_triple +from services.query_helper import ( + paginated_all_getter, + order_sort_filter, + simple_get_by_id, ) -from services.lexicon import add_lexicon_term -from sqlalchemy import select - router = APIRouter( - prefix="/lexicon", + prefix="/lexicon", tags=["lexicon"], dependencies=[Depends(viewer_function)] ) +def database_error_handler( + payload: UpdateLexiconTriple, error: ProgrammingError +) -> None: + """ + Handle errors raised by the database when adding or updating a lexicon triple. + """ + + error_message = error.orig.args[0]["M"] + + if ( + error_message + == 'insert or update on table "lexicon_triple" violates foreign key constraint "lexicon_triple_subject_fkey"' + ): + detail = { + "loc": ["body", "subject"], + "msg": f"LexiconTerm with term {payload.subject} not found.", + "type": "value_error", + "input": {"subject": payload.subject}, + } + elif ( + error_message + == 'insert or update on table "lexicon_triple" violates foreign key constraint "lexicon_triple_object__fkey"' + ): + detail = { + "loc": ["body", "object_"], + "msg": f"LexiconTerm with term {payload.object_} not found.", + "type": "value_error", + "input": {"object_": payload.object_}, + } + + raise PydanticStyleException(status_code=HTTP_409_CONFLICT, detail=[detail]) + + +# POST ========================================================================= + + @router.post( - "/category/add", - status_code=status.HTTP_201_CREATED, - response_model=LexiconCategoryResponse, + "/category", + status_code=HTTP_201_CREATED, ) -def add_category(category_data: CreateLexiconCategory, session=Depends(get_db_session)): +async def add_category( + category_data: CreateLexiconCategory, + session: session_dependency, + user: admin_dependency, +) -> LexiconCategoryResponse: """ Endpoint to add a category to the lexicon. """ - data = category_data.model_dump() - name = data["name"] - description = data.get("description", "") - - category = Category(name=name, description=description) - session.add(category) - session.commit() - return category + return model_adder(session, LexiconCategory, category_data, user=user) @router.post( - "/add", + "/term", summary="Add term", - response_model=LexiconTermResponse, - status_code=status.HTTP_201_CREATED, + status_code=HTTP_201_CREATED, ) -def add_term(term_data: CreateLexiconTerm, session=Depends(get_db_session)): +async def add_term( + term_data: CreateLexiconTerm, session: session_dependency, user: admin_dependency +) -> LexiconTermResponse: """ Endpoint to add a term to the lexicon. """ data = term_data.model_dump() - return add_lexicon_term(session, data["term"], data["definition"], data["category"]) + return add_lexicon_term( + session, data["term"], data["definition"], data["categories"], user=user + ) @router.post( - "/triple/add", + "/triple", summary="Add triple", - status_code=status.HTTP_201_CREATED, + status_code=HTTP_201_CREATED, ) -def add_triple(triple_data: CreateTriple, session=Depends(get_db_session)): +async def add_triple( + triple_data: CreateLexiconTriple, + session: session_dependency, + user: admin_dependency, +) -> LexiconTripleResponse: triple_data = triple_data.model_dump() subject = triple_data["subject"] predicate = triple_data["predicate"] object_ = triple_data["object_"] + return add_lexicon_triple(session, subject, predicate, object_, user=user) - if isinstance(subject, dict): - add_lexicon_term( - session, subject["term"], subject["definition"], subject["category"] - ) - subject = subject["term"] - if isinstance(object_, dict): - add_lexicon_term( - session, object_["term"], object_["definition"], object_["category"] +# PATCH ======================================================================== + + +@router.patch("/term/{term_id}", status_code=HTTP_200_OK) +async def update_lexicon_term( + term_id: int, + term_data: UpdateLexiconTerm, + session: session_dependency, + user: editor_dependency, +) -> LexiconTermResponse: + + return model_patcher(session, LexiconTerm, term_id, term_data, user=user) + + +@router.patch("/category/{category_id}", status_code=HTTP_200_OK) +async def update_lexicon_category( + category_id: int, + category_data: UpdateLexiconCategory, + session: session_dependency, + user: editor_dependency, +) -> LexiconCategoryResponse: + return model_patcher( + session, LexiconCategory, category_id, category_data, user=user + ) + + +@router.patch("/triple/{triple_id}", status_code=HTTP_200_OK) +async def update_lexicon_triple( + triple_id: int, + triple_data: UpdateLexiconTriple, + session: session_dependency, + user: editor_dependency, +) -> LexiconTripleResponse: + try: + return model_patcher(session, LexiconTriple, triple_id, triple_data, user=user) + except ProgrammingError as e: + database_error_handler(triple_data, e) + + +# GET ========================================================================== + + +@router.get("/term", summary="Get lexicon terms", status_code=HTTP_200_OK) +async def get_lexicon_terms( + session: session_dependency, + category: str | None = None, + term: str | None = None, + sort: str = None, + order: str = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[LexiconTermResponse]: + """ + Endpoint to retrieve lexicon terms. + """ + + sql = select(LexiconTerm) + if category: + sql = ( + sql.join(LexiconTermCategoryAssociation) + .join(LexiconCategory) + .where(LexiconCategory.name == category) ) - object_ = object_["term"] + if term: + sql = sql.where(LexiconTerm.term.ilike(f"%{term}%")) + + # If sort is 'categories', we do not apply sorting or filtering + if sort == "categories": + sort = None + order = None + + sql = order_sort_filter(sql, LexiconTerm, sort=sort, order=order, filter_=filter_) + + if order is None: + sql = sql.order_by(func.lower(LexiconTerm.term).asc()) + + return paginate(query=sql, conn=session) + + +@router.get("/term/{term_id}", status_code=HTTP_200_OK) +async def get_lexicon_term( + term_id: int, session: session_dependency +) -> LexiconTermResponse: + return simple_get_by_id(session, LexiconTerm, term_id) + - triple = LexiconTriple(subject=subject, predicate=predicate, object_=object_) - session.add(triple) - session.commit() - return triple +@router.get("/category") +async def get_lexicon_categories( + session: session_dependency, + sort: str = "name", + order: str = "asc", + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[LexiconCategoryResponse]: + """ + Endpoint to retrieve lexicon categories. + """ + return paginated_all_getter(session, LexiconCategory, sort, order, filter_) + + +@router.get("/category/{category_id}") +async def get_lexicon_category( + category_id: int, session: session_dependency +) -> LexiconCategoryResponse: + return simple_get_by_id(session, LexiconCategory, category_id) + + +@router.get("/triple", summary="Get lexicon triples", status_code=HTTP_200_OK) +async def get_lexicon_triples( + session: session_dependency, + sort: str = "subject", + order: str = "asc", + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[LexiconTripleResponse]: + """ + Endpoint to retrieve lexicon triples. + """ + return paginated_all_getter(session, LexiconTriple, sort, order, filter_) + + +@router.get("/triple/{triple_id}", status_code=HTTP_200_OK) +async def get_lexicon_triple( + triple_id: int, session: session_dependency +) -> LexiconTripleResponse: + return simple_get_by_id(session, LexiconTriple, triple_id) + + +# DELETE ======================================================================= + + +@router.delete( + "/term/{term_id}", + summary="Delete a lexicon term by ID", + status_code=HTTP_204_NO_CONTENT, +) +async def delete_lexicon_term( + session: session_dependency, user: admin_dependency, term_id: int +): + return model_deleter(session, LexiconTerm, term_id) + + +@router.delete( + "/category/{category_id}", + summary="Delete a lexicon category by ID", + status_code=HTTP_204_NO_CONTENT, +) +async def delete_lexicon_category( + session: session_dependency, user: admin_dependency, category_id: int +): + return model_deleter(session, LexiconCategory, category_id) + + +@router.delete( + "/triple/{triple_id}", + summary="Delete a lexicon triple by ID", + status_code=HTTP_204_NO_CONTENT, +) +async def delete_lexicon_triple( + session: session_dependency, user: admin_dependency, triple_id: int +): + return model_deleter(session, LexiconTriple, triple_id) # ============= EOF ============================================= diff --git a/api/location.py b/api/location.py index fe8ac730c..253663ab4 100644 --- a/api/location.py +++ b/api/location.py @@ -13,118 +13,130 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from typing import Union - -from fastapi import Depends +from fastapi import Query, Response from fastapi_pagination.ext.sqlalchemy import paginate -from geoalchemy2 import functions as geofunc from sqlalchemy import select, func -from sqlalchemy.orm import Session from starlette import status -from starlette.responses import FileResponse from api.pagination import CustomPage from constants import SRID_WGS84 -from db import adder, Location, WellThing -from db.engine import get_db_session -from schemas.base_get import GetLocation -from schemas.create.location import CreateLocation -from schemas.response.location import SampleLocationResponse -from schemas.response.well import SampleLocationWellResponse -from services.geospatial_helper import create_shapefile, make_within_wkt -from services.query_helper import make_query - +from core.dependencies import ( + session_dependency, + admin_dependency, + editor_dependency, + viewer_dependency, +) +from db.location import Location +from schemas.location import CreateLocation, LocationResponse, UpdateLocation +from services.geospatial_helper import make_within_wkt +from services.query_helper import make_query, order_sort_filter, simple_get_by_id +from services.crud_helper import model_patcher, model_deleter, model_adder from fastapi import APIRouter router = APIRouter(prefix="/location", tags=["location"]) -# ============= EOF ============================================= @router.post( - "/", - response_model=GetLocation, + "", + # response_model=GetLocation, summary="Create a new sample location", status_code=status.HTTP_201_CREATED, ) -def create_location( - location_data: CreateLocation, session: Session = Depends(get_db_session) -): +async def create_location( + location_data: CreateLocation, session: session_dependency, user: admin_dependency +) -> LocationResponse: """ Create a new sample location in the database. """ - return adder(session, Location, location_data) - - -@router.get("/shapefile", summary="Get location as shapefile") -async def get_location_shapefile( - query: str = None, session: Session = Depends(get_db_session) -): - """ - Retrieve all sample locations as a shapefile. - """ - sql = select(Location) - if query: - sql = sql.where(make_query(Location, query)) - - result = session.execute(sql) - locations = result.scalars().all() - # create a shapefile from the locations + return model_adder(session, Location, location_data, user=user) - create_shapefile(locations, "locations.shp") - # Return the shapefile as a zip (optional: zip the .shp, .shx, .dbf files) - import zipfile - with zipfile.ZipFile("locations.zip", "w") as zf: - for ext in ["shp", "shx", "dbf"]: - zf.write(f"locations.{ext}") - return FileResponse( - "locations.zip", media_type="application/zip", filename="locations.zip" - ) - - -@router.get("/feature_collection", summary="Get location feature collection") -async def get_location_feature_collection( - query: str = None, session: Session = Depends(get_db_session) -): +@router.patch( + "/{location_id}", + summary="Update a location", +) +async def update_location( + location_id: int, + location_data: UpdateLocation, + session: session_dependency, + user: editor_dependency, +) -> LocationResponse: """ - Retrieve all sample locations as a GeoJSON FeatureCollection. + Update a sample location in the database. """ - sql = select(Location, geofunc.ST_AsGeoJSON(Location.point).label("geojson")) - if query: - sql = sql.where(make_query(Location, query)) - - result = session.execute(sql) - locations = result.all() - - features = [] - for location, geojson in locations: - feature = { - "type": "Feature", - "geometry": geojson, - } - features.append(feature) - - return { - "type": "FeatureCollection", - "features": features, - } + return model_patcher(session, Location, location_id, location_data, user=user) + + +# @router.get("/shapefile", summary="Get location as shapefile") +# async def get_location_shapefile( +# query: str = None, session: Session = Depends(get_db_session) +# ) -> FileResponse: +# """ +# Retrieve all sample locations as a shapefile. +# """ +# sql = select(Location) +# if query: +# sql = sql.where(make_query(Location, query)) +# +# result = session.execute(sql) +# locations = result.scalars().all() +# # create a shapefile from the locations +# +# create_shapefile(locations, "locations.shp") +# # Return the shapefile as a zip (optional: zip the .shp, .shx, .dbf files) +# import zipfile +# +# with zipfile.ZipFile("locations.zip", "w") as zf: +# for ext in ["shp", "shx", "dbf"]: +# zf.write(f"locations.{ext}") +# return FileResponse( +# "locations.zip", media_type="application/zip", filename="locations.zip" +# ) + + +# @router.get("/feature_collection", summary="Get location feature collection") +# async def get_location_feature_collection( +# query: str = None, session: Session = Depends(get_db_session) +# ) -> dict: +# """ +# Retrieve all sample locations as a GeoJSON FeatureCollection. +# """ +# sql = select(Location, geofunc.ST_AsGeoJSON(Location.point).label("geojson")) +# if query: +# sql = sql.where(make_query(Location, query)) +# +# result = session.execute(sql) +# locations = result.all() +# +# features = [] +# for location, geojson in locations: +# feature = { +# "type": "Feature", +# "geometry": json.loads(geojson), +# } +# features.append(feature) +# +# return { +# "type": "FeatureCollection", +# "features": features, +# } @router.get( - "/", - response_model=CustomPage[ - Union[SampleLocationResponse, SampleLocationWellResponse] - ], + "", summary="Get all locations", ) async def get_location( + session: session_dependency, + user: viewer_dependency, nearby_point: str = None, nearby_distance_km: float = 1, within: str = None, query: str = None, - expand: str = None, - session: Session = Depends(get_db_session), -): + sort: str = None, + order: str = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[LocationResponse]: """ Retrieve all wells from the database. """ @@ -142,38 +154,33 @@ async def get_location( elif within: sql = make_within_wkt(sql, within) - if expand == "well": - sql = sql.outerjoin(WellThing) - - def transformer(items): - if expand == "well": - return [SampleLocationWellResponse.model_validate(item) for item in items] - return [SampleLocationResponse.model_validate(item) for item in items] + sql = order_sort_filter(sql, Location, sort, order, filter_) - return paginate(query=sql, conn=session, transformer=transformer) + return paginate(query=sql, conn=session) @router.get( "/{location_id}", - response_model=Union[SampleLocationResponse, SampleLocationWellResponse], summary="Get location by ID", ) async def get_location_by_id( - location_id: int, expand: str = None, session: Session = Depends(get_db_session) -): + location_id: int, session: session_dependency, user: viewer_dependency +) -> LocationResponse: """ Retrieve a sample location by ID from the database. """ - sql = select(Location).where(Location.id == location_id) + location = simple_get_by_id(session, Location, location_id) + return location - result = session.execute(sql) - location = result.scalar_one_or_none() - if not location: - return {"message": "Location not found"} +@router.delete("/{location_id}", summary="Delete location by ID") +async def delete_location( + location_id: int, session: session_dependency, user: admin_dependency +) -> Response: + """ + Delete a sample location by ID from the database. + """ + return model_deleter(session, Location, location_id) - response_klass = SampleLocationResponse - if expand == "well": - response_klass = SampleLocationWellResponse - return response_klass.model_validate(location) +# ============= EOF ============================================= diff --git a/api/observation.py b/api/observation.py new file mode 100644 index 000000000..27da81974 --- /dev/null +++ b/api/observation.py @@ -0,0 +1,326 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from datetime import datetime +from fastapi import APIRouter, Query, Request +from starlette.status import HTTP_200_OK, HTTP_201_CREATED, HTTP_204_NO_CONTENT + +from api.pagination import CustomPage +from core.dependencies import ( + session_dependency, + amp_admin_dependency, + admin_dependency, + amp_viewer_dependency, + viewer_dependency, +) +from db import Observation +from schemas.observation import ( + CreateGroundwaterLevelObservation, + GroundwaterLevelObservationResponse, + CreateWaterChemistryObservation, + WaterChemistryObservationResponse, + CreateGeothermalObservation, + GeothermalObservationResponse, + ObservationResponse, + UpdateGroundwaterLevelObservation, + UpdateWaterChemistryObservation, + UpdateGeothermalObservation, +) +from services.crud_helper import model_deleter, model_adder +from services.query_helper import simple_get_by_id +from services.observation_helper import ( + get_observations, + observation_model_patcher, + get_observation_of_an_observation_class_by_id, +) + +router = APIRouter(prefix="/observation", tags=["observation"]) + + +# ============= Post ============================================= +@router.post("/groundwater-level", status_code=HTTP_201_CREATED) +async def add_groundwater_level_observation( + obs_data: CreateGroundwaterLevelObservation, + session: session_dependency, + user: amp_admin_dependency, +) -> GroundwaterLevelObservationResponse: + """ + Add a new groundwater observation to the database. + """ + return model_adder(session, Observation, obs_data, user=user) + + +@router.post("/water-chemistry", status_code=HTTP_201_CREATED) +async def add_water_chemistry_observation( + obs_data: CreateWaterChemistryObservation, + session: session_dependency, + user: amp_admin_dependency, +) -> WaterChemistryObservationResponse: + """ + Add a new water chemistry observation to the database. + This endpoint is currently a placeholder and does not implement any functionality. + """ + return model_adder(session, Observation, obs_data, user=user) + + +@router.post("/geothermal", status_code=HTTP_201_CREATED) +async def add_geothermal_observation( + obs_data: CreateGeothermalObservation, + session: session_dependency, + user: admin_dependency, +) -> GeothermalObservationResponse: + """ + Add a new geothermal observation to the database. + This endpoint is currently a placeholder and does not implement any functionality. + """ + return model_adder(session, Observation, obs_data, user=user) + + +# PATCH ======================================================================== + + +@router.patch("/groundwater-level/{observation_id}", status_code=HTTP_200_OK) +async def update_groundwater_level_observation( + observation_id: int, + obs_data: UpdateGroundwaterLevelObservation, + session: session_dependency, + user: amp_admin_dependency, + request: Request, +) -> GroundwaterLevelObservationResponse: + """ + Update an existing groundwater level observation in the database. + """ + return observation_model_patcher(session, request, observation_id, obs_data, user) + + +@router.patch("/water-chemistry/{observation_id}", status_code=HTTP_200_OK) +async def update_water_chemistry_observation( + observation_id: int, + obs_data: UpdateWaterChemistryObservation, + session: session_dependency, + user: amp_admin_dependency, + request: Request, +) -> WaterChemistryObservationResponse: + """ + Update an existing water chemistry observation in the database. + """ + return observation_model_patcher(session, request, observation_id, obs_data, user) + + +@router.patch("/geothermal/{observation_id}", status_code=HTTP_200_OK) +async def update_geothermal_observation( + observation_id: int, + obs_data: UpdateGeothermalObservation, + session: session_dependency, + user: admin_dependency, + request: Request, +) -> GeothermalObservationResponse: + """ + Update an existing geothermal observation in the database. + """ + return observation_model_patcher(session, request, observation_id, obs_data, user) + + +# ============= Get ============================================== + + +@router.get("/groundwater-level", summary="Get groundwater level observations") +async def get_groundwater_level_observations( + request: Request, + session: session_dependency, + user: amp_viewer_dependency, + thing_id: int | None = None, + sensor_id: int | None = None, + sample_id: int | None = None, + start_time: datetime | None = None, + end_time: datetime | None = None, + sort: str | None = None, + order: str | None = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[GroundwaterLevelObservationResponse]: + """ + Retrieve all groundwater level observations from the database. + """ + return get_observations( + request=request, + session=session, + thing_id=thing_id, + sensor_id=sensor_id, + sample_id=sample_id, + start_time=start_time, + end_time=end_time, + sort=sort, + order=order, + filter_=filter_, + ) + + +@router.get( + "/groundwater-level/{observation_id}", + summary="Get groundwater level observation by ID", +) +async def get_groundwater_level_observation_by_id( + session: session_dependency, + request: Request, + user: amp_viewer_dependency, + observation_id: int, +) -> GroundwaterLevelObservationResponse: + return get_observation_of_an_observation_class_by_id( + session=session, + request=request, + observation_id=observation_id, + ) + + +@router.get("/water-chemistry", summary="Get water chemistry observations") +async def get_water_chemistry_observations( + request: Request, + session: session_dependency, + user: amp_viewer_dependency, + thing_id: int | None = None, + sensor_id: int | None = None, + sample_id: int | None = None, + start_time: datetime | None = None, + end_time: datetime | None = None, + sort: str | None = None, + order: str | None = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[WaterChemistryObservationResponse]: + """ + Retrieve all water chemistry observations from the database. + """ + return get_observations( + request=request, + session=session, + thing_id=thing_id, + sensor_id=sensor_id, + sample_id=sample_id, + start_time=start_time, + end_time=end_time, + sort=sort, + order=order, + filter_=filter_, + ) + + +@router.get( + "/water-chemistry/{observation_id}", summary="Get water chemistry observation by ID" +) +async def get_water_chemistry_observation_by_id( + session: session_dependency, + request: Request, + user: amp_viewer_dependency, + observation_id: int, +) -> WaterChemistryObservationResponse: + return get_observation_of_an_observation_class_by_id( + session=session, + request=request, + observation_id=observation_id, + ) + + +@router.get("/geothermal", summary="Get geothermal observations") +async def get_geothermal_observations( + request: Request, + session: session_dependency, + user: viewer_dependency, + thing_id: int | None = None, + sensor_id: int | None = None, + sample_id: int | None = None, + start_time: datetime | None = None, + end_time: datetime | None = None, + sort: str | None = None, + order: str | None = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[GeothermalObservationResponse]: + """ + Retrieve all geothermal observations from the database. + """ + return get_observations( + request=request, + session=session, + thing_id=thing_id, + sensor_id=sensor_id, + sample_id=sample_id, + start_time=start_time, + end_time=end_time, + sort=sort, + order=order, + filter_=filter_, + ) + + +@router.get("/geothermal/{observation_id}", summary="Get geothermal observation by ID") +async def get_geothermal_observation_by_id( + session: session_dependency, + request: Request, + user: amp_viewer_dependency, + observation_id: int, +) -> GeothermalObservationResponse: + return get_observation_of_an_observation_class_by_id( + session=session, request=request, observation_id=observation_id + ) + + +@router.get("", summary="Get all observations") +async def get_all_observations( + request: Request, + session: session_dependency, + user: amp_viewer_dependency, + thing_id: int | None = None, + sensor_id: int | None = None, + sample_id: int | None = None, + start_time: datetime | None = None, + end_time: datetime | None = None, + sort: str | None = None, + order: str | None = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[ObservationResponse]: + return get_observations( + request=request, + session=session, + thing_id=thing_id, + sensor_id=sensor_id, + sample_id=sample_id, + start_time=start_time, + end_time=end_time, + sort=sort, + order=order, + filter_=filter_, + ) + + +@router.get("/{observation_id}", summary="Get an observation by its ID") +async def get_observation_by_id( + session: session_dependency, user: amp_viewer_dependency, observation_id: int +) -> ObservationResponse: + return simple_get_by_id(session, Observation, observation_id) + + +# DELETE ======================================================================= + + +@router.delete( + "/{observation_id}", + summary="Delete an observation", + status_code=HTTP_204_NO_CONTENT, +) +async def delete_observation( + session: session_dependency, user: amp_admin_dependency, observation_id: int +) -> None: + return model_deleter(session, Observation, observation_id) + + +# ============= EOF ============================================= diff --git a/api/pagination.py b/api/pagination.py index 4c91e8659..5b9d30d0a 100644 --- a/api/pagination.py +++ b/api/pagination.py @@ -2,6 +2,7 @@ from fastapi_pagination.customization import UseName, UseParamsFields, CustomizedPage from fastapi import Query + MAX_PAGINATION_SIZE = 10000 CustomPage = CustomizedPage[ diff --git a/api/publication.py b/api/publication.py index d086757bd..53ffe69d6 100644 --- a/api/publication.py +++ b/api/publication.py @@ -13,12 +13,9 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from db import adder from db.engine import get_db_session -from db.publication import Publication -from fastapi import APIRouter, Depends, HTTPException, status -from schemas.create.publication import CreatePublication -from schemas.response.publication import PublicationResponse +from fastapi import APIRouter, Depends, status +from schemas.publication import PublicationResponse, CreatePublication from services.publication_helper import add_publication from sqlalchemy.orm import Session diff --git a/api/sample.py b/api/sample.py index 230bfaf69..a16b69d4e 100644 --- a/api/sample.py +++ b/api/sample.py @@ -1,185 +1,154 @@ -# # =============================================================================== -# # Copyright 2025 ross -# # -# # Licensed under the Apache License, Version 2.0 (the "License"); -# # you may not use this file except in compliance with the License. -# # You may obtain a copy of the License at -# # -# # http://www.apache.org/licenses/LICENSE-2.0 -# # -# # Unless required by applicable law or agreed to in writing, software -# # distributed under the License is distributed on an "AS IS" BASIS, -# # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# # See the License for the specific language governing permissions and -# # limitations under the License. -# # =============================================================================== -# from typing import List -# -# from fastapi import APIRouter, Depends, status -# from sqlalchemy import select -# from sqlalchemy.orm import Session -# -# from db.engine import get_db_session -# from db.series import TimeObservation, TimeSeries, SampleWellAssociation -# from db.sample import Sample -# from schemas.response.timeseries import WellTimeseriesResponse -# from schemas.create.timeseries import ( -# CreateTimeSeries, -# CreateSample, -# CreateTimeObservation, -# ) -# -# router = APIRouter( -# prefix="/sample", -# ) -# -# -# @router.post( -# "/time_series/add", -# status_code=status.HTTP_201_CREATED, -# ) -# def add_sample_timeseries( -# timeseries_data: CreateTimeSeries, session: Session = Depends(get_db_session) -# ): -# -# timeseries = TimeSeries(**timeseries_data.model_dump()) -# session.add(timeseries) -# session.commit() -# return timeseries -# -# -# @router.post("/add", -# status_code=status.HTTP_201_CREATED, summary="Add Sample") -# def add_sample( -# sample_data: CreateSample, -# session: Session = Depends(get_db_session), -# ): -# """ -# Endpoint to add a sample. -# """ -# data = sample_data.model_dump() -# well_id = data.pop("well_id", None) -# sample = Sample(**data) -# if well_id: -# sample_well_association = SampleWellAssociation() -# sample_well_association.well_id = well_id -# sample_well_association.sample = sample -# session.add(sample_well_association) -# -# session.add(sample) -# session.commit() -# # return sample -# -# -# @router.post( -# "/time_series/observations/add", -# status_code=status.HTTP_201_CREATED, -# summary="Add Sample Timeseries Observations", -# ) -# def add_sample_observations( -# observations: List[CreateTimeObservation], -# session: Session = Depends(get_db_session), -# ): -# """ -# Endpoint to add observations to a sample timeseries. -# """ -# obs = [] -# for observation in observations: -# data = observation.model_dump() -# ts = TimeObservation(**data) -# -# session.add(ts) -# obs.append(ts) -# -# session.commit() -# return obs -# -# -# # =======get endpoints ======== -# @router.get("/samples/well/{well_id}", summary="Get Samples for Well ID") -# def get_well_samples( -# well_id: int, -# session: Session = Depends(get_db_session), -# ): -# """ -# Endpoint to retrieve samples associated with a well. -# """ -# sql = select(Sample) -# sql = sql.join(SampleWellAssociation) -# sql = sql.where(SampleWellAssociation.well_id == well_id) -# return session.execute(sql).scalars().all() -# -# -# @router.get("/time_series/well/{well_id}") -# def get_well_timeseries( -# well_id: int, -# session: Session = Depends(get_db_session), -# ): -# """ -# Endpoint to retrieve well timeseries. -# """ -# sql = select(TimeSeries) -# sql = sql.join(TimeObservation) -# sql = sql.join(Sample) -# sql = sql.join(SampleWellAssociation) -# # sql = select(SampleWellAssociation) -# -# sql = sql.where(SampleWellAssociation.well_id == well_id) -# return session.execute(sql).scalars().all() -# # timeseries = session.query(TimeSeries).filter(TimeSeries.type == "well").all() -# # return WellTimeseriesResponse(timeseries=timeseries) -# -# @router.get( -# "/time_series/{time_series_id}/observations", -# ) -# def get_timeseries_observations( -# time_series_id: int, -# session: Session = Depends(get_db_session), -# ): -# """ -# Endpoint to retrieve observations for a specific timeseries. -# """ -# sql = select(TimeObservation).where(TimeObservation.time_series_id == time_series_id) -# -# return session.execute(sql).scalars().all() -# # @router.post( -# # "/well", -# # response_model=WellTimeseriesResponse, -# # summary="Add Well Timeseries", -# # status_code=status.HTTP_201_CREATED, -# # ) -# # def add_well_timeseries( -# # well_timeseries_data: CreateWellTimeseries, session=Depends(get_db_session) -# # ): -# # """ -# # Endpoint to add a well timeseries. -# # """ -# # -# # ts = WellTimeseries(**well_timeseries_data.model_dump()) -# # session.add(ts) -# # session.commit() -# # -# # return ts -# # -# # -# # @router.post( -# # "/well/groundwater_level/observations", -# # status_code=status.HTTP_201_CREATED, -# # summary="Add groundwater level observation", -# # ) -# # def add_well_observations( -# # observations: List[CreateGroundwaterLevelObservation], -# # session=Depends(get_db_session), -# # ): -# # """ -# # Endpoint to add observations to a well timeseries. -# # """ -# # for observation in observations: -# # ts = GroundwaterLevelObservation(**observation.model_dump()) -# # session.add(ts) -# # -# # session.commit() -# # return {"message": "Observations added successfully."} -# -# +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== + +from fastapi import APIRouter, Query, Response +from sqlalchemy.exc import IntegrityError, ProgrammingError +from starlette.status import HTTP_201_CREATED, HTTP_409_CONFLICT + +from api.pagination import CustomPage +from core.dependencies import ( + session_dependency, + admin_dependency, + editor_dependency, + viewer_dependency, +) +from db.sample import Sample +from schemas import ResourceNotFoundResponse +from schemas.sample import SampleResponse, CreateSample, UpdateSample +from services.query_helper import paginated_all_getter, simple_get_by_id +from services.crud_helper import model_patcher, model_deleter, model_adder +from services.exceptions_helper import PydanticStyleException + +router = APIRouter( + prefix="/sample", + tags=["sample"], +) + + +def database_error_handler( + payload: CreateSample | UpdateSample, error: IntegrityError | ProgrammingError +) -> None: + """ + Handle errors raised by the database when adding or updating a sample. + """ + error_message = error.orig.args[0]["M"] + if ( + error_message + == 'duplicate key value violates unique constraint "sample_field_sample_id_key"' + ): + detail = { + "loc": ["body", "field_sample_id"], + "msg": f"Sample with field_sample_id {payload.field_sample_id} already exists.", + "type": "value_error", + "input": {"field_sample_id": payload.field_sample_id}, + } + elif ( + error_message + == 'insert or update on table "sample" violates foreign key constraint "sample_thing_id_fkey"' + ): + detail = { + "loc": ["body", "thing_id"], + "msg": f"Thing with ID {payload.thing_id} does not exist.", + "type": "value_error", + "input": {"thing_id": payload.thing_id}, + } + + raise PydanticStyleException(status_code=HTTP_409_CONFLICT, detail=[detail]) + + +# ============= Post ============================================= +@router.post("", status_code=HTTP_201_CREATED) +async def add_sample( + sample_data: CreateSample, session: session_dependency, user: admin_dependency +) -> SampleResponse: + """ + Endpoint to add a sample. + """ + try: + return model_adder(session, Sample, sample_data, user=user) + except (IntegrityError, ProgrammingError) as e: + database_error_handler(sample_data, e) + + +# ============= Update ============================================= +@router.patch("/{sample_id}", summary="Update Sample") +async def update_sample( + sample_id: int, + sample_data: UpdateSample, + session: session_dependency, + user: editor_dependency, +) -> SampleResponse | ResourceNotFoundResponse: + """ + Endpoint to update a sample. + """ + + """ + Development notes: + + What do we do if the field is nullable and the schema defaults to None? + If that occurs, then we update the field to None, which may not have + been the intension of the user. We could set some string to indicate + DO NOT UPDATE. Perhaps coordination between the front and backends? + + + This is handled by the `model_patcher` function, which excludes unset fields from + the update. + """ + try: + return model_patcher(session, Sample, sample_id, sample_data, user=user) + except (IntegrityError, ProgrammingError) as e: + database_error_handler(sample_data, e) + + +# ============= Get ============================================= +@router.get("", summary="Get Samples") +async def get_samples( + session: session_dependency, + user: viewer_dependency, + sort: str = None, + order: str = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[SampleResponse]: + """ + Endpoint to retrieve samples. + """ + + return paginated_all_getter( + session, Sample, sort=sort, order=order, filter_=filter_ + ) + + +@router.get("/{sample_id}", summary="Get Sample by ID") +async def get_sample_by_id( + sample_id: int, session: session_dependency, user: viewer_dependency +) -> SampleResponse | ResourceNotFoundResponse: + """ + Endpoint to retrieve a sample by its ID. + """ + return simple_get_by_id(session, Sample, sample_id) + + +# ======= DELETE =============================================================== + + +@router.delete("/{sample_id}", summary="Delete Sample by ID") +async def delete_sample_by_id( + sample_id: int, session: session_dependency, user: admin_dependency +) -> Response: + return model_deleter(session, Sample, sample_id) + + # # ============= EOF ============================================= diff --git a/api/search.py b/api/search.py new file mode 100644 index 000000000..db1d9b661 --- /dev/null +++ b/api/search.py @@ -0,0 +1,177 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from fastapi import APIRouter +from sqlalchemy import select +from sqlalchemy.orm import Session +from api.pagination import CustomPage +from fastapi_pagination import paginate +from fastapi_pagination.utils import disable_installed_extensions_check + +from core.dependencies import session_dependency +from db import ( + Contact, + Email, + Phone, + Address, + Thing, + Asset, + AssetThingAssociation, + search, +) + + +disable_installed_extensions_check() +router = APIRouter(prefix="/search", tags=["search"]) + + +def _get_contact_results(session: Session, q: str, limit: int) -> list[dict]: + vector = ( + Contact.search_vector + | Email.search_vector + | Phone.search_vector + | Address.search_vector + ) + + query = search( + select(Contact).join(Email).join(Phone).join(Address), + q, + vector=vector, + limit=limit, + ) + contacts = session.scalars(query).all() + results = [ + { + "label": c.name, + "group": "Contacts", + "properties": { + "email": [e.email for e in c.emails], + "phone": [p.phone_number for p in c.phones], + "address": [a.address_line_1 for a in c.addresses], + # 'address': c.address, + # 'location_id': c.location_id + }, + } + for c in contacts + ] + + return results + + +def _get_thing_results(session: Session, q: str, limit: int) -> list[dict]: + vector = Thing.search_vector + water_well_query = search( + select(Thing).where(Thing.thing_type == "water well"), + q, + vector=vector, + limit=limit, + ) + spring_well_query = search( + select(Thing).where(Thing.thing_type == "spring"), q, vector=vector, limit=limit + ) + + wells = session.scalars(water_well_query).all() + springs = session.scalars(spring_well_query).all() + + def _make_response(group: str, thing: Thing, properties: dict) -> dict: + + if properties is None: + properties = {} + + properties["thing_type"] = thing.thing_type + properties["id"] = thing.id + return { + "label": thing.name, + "group": group, + "properties": properties, + } + + def make_well_response(thing: Thing) -> dict: + return _make_response( + "Wells", + thing, + { + "well_type": thing.well_type, + "well_depth": thing.well_depth, + "hole_depth": thing.hole_depth, + }, + ) + + def make_spring_response(thing: Thing) -> dict: + return _make_response( + "Springs", + thing, + { + "spring_type": thing.spring_type, + }, + ) + + return [ + func(item) + for items, func in ( + (wells, make_well_response), + (springs, make_spring_response), + ) + for item in items + ] + + +def _get_asset_results(session: Session, q: str, limit: int) -> list[dict]: + vector = Asset.search_vector + query = search( + select(Asset).join(AssetThingAssociation).join(Thing), + q, + vector=vector, + limit=limit, + ) + + assets = session.scalars(query).all() + results = [ + { + "label": a.name, + "group": "Assets", + "properties": { + "things": [t.name for t in a.things], + "storage_service": a.storage_service, + "storage_path": a.storage_path, + "mime_type": a.mime_type, + "size": a.size, + }, + } + for a in assets + ] + + return results + + +@router.get("") +async def search_api( + session: session_dependency, + q: str, + limit: int = 25, +) -> CustomPage[dict]: + """ + Search endpoint for the collaborative network. + """ + + results = _get_contact_results(session, q, limit) + results.extend(_get_thing_results(session, q, limit)) + results.extend(_get_asset_results(session, q, limit)) + + return paginate(results) + # return {"items": results, "total": len(results)} + + +# ============= EOF ============================================= diff --git a/api/sensor.py b/api/sensor.py index 9b17be73f..33dbe5c97 100644 --- a/api/sensor.py +++ b/api/sensor.py @@ -14,41 +14,160 @@ # limitations under the License. # =============================================================================== -from fastapi import APIRouter, Depends -from sqlalchemy.orm import Session +from fastapi import APIRouter, Query, Response +from fastapi_pagination.ext.sqlalchemy import paginate +from sqlalchemy import select, and_ from starlette import status -from db import adder -from db.sensor import Sensor -from db.engine import get_db_session -from schemas.create.sensor import CreateSensor -from services.query_helper import simple_all_getter +from api.pagination import CustomPage +from core.dependencies import ( + session_dependency, + admin_dependency, + editor_dependency, + viewer_dependency, +) +from db import Observation, Sample, Sensor +from schemas.sensor import SensorResponse, CreateSensor, UpdateSensor +from services.crud_helper import model_patcher, model_deleter, model_adder +from services.exceptions_helper import PydanticStyleException +from services.query_helper import order_sort_filter, simple_get_by_id router = APIRouter(prefix="/sensor", tags=["sensor"]) +# ====== POST ================================================================== -@router.post("/", status_code=status.HTTP_201_CREATED) -def add_sensor(sensor_data: CreateSensor, session: Session = Depends(get_db_session)): + +@router.post("", status_code=status.HTTP_201_CREATED) +async def add_sensor( + sensor_data: CreateSensor, session: session_dependency, user: admin_dependency +) -> SensorResponse: """ Add a sensor to the system. - This endpoint is a placeholder and should be implemented with actual logic. """ - return adder(session, Sensor, sensor_data) + return model_adder(session, Sensor, sensor_data, user=user) + + +# ====== PATCH ================================================================= + + +@router.patch("/{sensor_id}", status_code=status.HTTP_200_OK) +async def update_sensor( + sensor_id: int, + sensor_data: UpdateSensor, + session: session_dependency, + user: editor_dependency, +) -> SensorResponse: + """ + Update a sensor in the system. + """ + if ( + sensor_data.datetime_installed is not None + and sensor_data.datetime_removed is None + ): + sensor = simple_get_by_id(session, Sensor, sensor_id) + existing_datetime_removed = sensor.datetime_removed + if ( + existing_datetime_removed is not None + and sensor_data.datetime_installed >= existing_datetime_removed + ): + detail = { + "loc": ["body", "datetime_installed"], + "msg": f"new datetime installed must be before existing datetime removed of {existing_datetime_removed.isoformat().replace('+00:00', 'Z')}", + "type": "value_error", + "input": { + "datetime_installed": sensor_data.datetime_installed.isoformat().replace( + "+00:00", "Z" + ) + }, + } + raise PydanticStyleException( + status_code=status.HTTP_409_CONFLICT, detail=[detail] + ) + elif ( + sensor_data.datetime_installed is None + and sensor_data.datetime_removed is not None + ): + sensor = simple_get_by_id(session, Sensor, sensor_id) + existing_datetime_installed = sensor.datetime_installed + if sensor_data.datetime_removed <= existing_datetime_installed: + detail = { + "loc": ["body", "datetime_removed"], + "msg": f"new datetime removed must be after existing datetime installed of {existing_datetime_installed.isoformat().replace('+00:00', 'Z')}", + "type": "value_error", + "input": { + "datetime_removed": sensor_data.datetime_removed.isoformat().replace( + "+00:00", "Z" + ) + }, + } + raise PydanticStyleException( + status_code=status.HTTP_409_CONFLICT, detail=[detail] + ) + + return model_patcher(session, Sensor, sensor_id, sensor_data, user=user) -@router.get("/", status_code=status.HTTP_200_OK) -def get_sensors(session: Session = Depends(get_db_session)): +# ====== DELETE ================================================================ + + +@router.delete("/{sensor_id}") +async def delete_sensor( + sensor_id: int, session: session_dependency, user: admin_dependency +) -> Response: + """ + Delete a sensor in the system + """ + return model_deleter(session, Sensor, sensor_id) + + +# ====== GET =================================================================== + + +@router.get("", status_code=status.HTTP_200_OK) +async def get_sensors( + session: session_dependency, + user: viewer_dependency, + thing_id: int = None, # Optional filter for thing_id + observed_property: str = None, # Optional filter for observed_property + sort: str | None = None, + order: str | None = None, + filter_: str = Query(alias="filter", default=None), +) -> CustomPage[SensorResponse]: """ Retrieve all sensors from the system. This endpoint is a placeholder and should be implemented with actual logic. """ - return simple_all_getter(session, Sensor) + sql = select(Sensor) + # TODO: a sensor is not yet related to observation, so this won't work at the moment + if thing_id is not None or observed_property is not None: + conditions = [] + joins = [] + if observed_property is not None: + conditions.append(Observation.observed_property == observed_property) + + if thing_id is not None: + joins.append(Sample) + conditions.append(Sample.thing_id == thing_id) + + if conditions: + sql = sql.join(Observation) + for j in joins: + sql = sql.join(j) + + sql = sql.where(and_(*conditions)) + + sql = order_sort_filter(sql, Sensor, sort=sort, order=order, filter_=filter_) + return paginate(conn=session, query=sql) @router.get("/{sensor_id}", status_code=status.HTTP_200_OK) -def get_sensor(sensor_id: int, session: Session = Depends(get_db_session)): - sensor = session.get(Sensor, sensor_id) - return sensor +async def get_sensor( + sensor_id: int, session: session_dependency, user: viewer_dependency +) -> SensorResponse: + """ + Retrieve a sensor by its ID. + """ + return simple_get_by_id(session, Sensor, sensor_id) # ============= EOF ============================================= diff --git a/api/series.py b/api/series.py new file mode 100644 index 000000000..3007c9a96 --- /dev/null +++ b/api/series.py @@ -0,0 +1,85 @@ +# # =============================================================================== +# # Copyright 2025 ross +# # +# # Licensed under the Apache License, Version 2.0 (the "License"); +# # you may not use this file except in compliance with the License. +# # You may obtain a copy of the License at +# # +# # http://www.apache.org/licenses/LICENSE-2.0 +# # +# # Unless required by applicable law or agreed to in writing, software +# # distributed under the License is distributed on an "AS IS" BASIS, +# # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# # See the License for the specific language governing permissions and +# # limitations under the License. +# # =============================================================================== +# from fastapi import APIRouter, Depends +# from fastapi_pagination.ext.sqlalchemy import paginate +# from sqlalchemy import select +# from sqlalchemy.orm import Session +# from starlette.status import HTTP_201_CREATED +# +# from api.pagination import CustomPage +# from core.dependencies import session_dependency +# from db import adder +# from db.engine import get_db_session +# from db.series.series import Series +# from schemas_v2.series import SeriesResponse, CreateSeries +# from services.query_helper import paginated_all_getter +# +# router = APIRouter( +# prefix="/series", +# tags=["series"], +# ) +# +# +# # ============= Get ============================================== +# @router.get( +# "", +# ) +# def get_series( +# session: session_dependency, +# thing_id: int = None, # Optional filter for a specific thing +# observed_property: str = None, # Optional filter for observed property +# sensor_id: int = None, # Optional filter for sensor ID +# ) -> CustomPage[SeriesResponse]: +# """ +# Endpoint to retrieve series data. +# """ +# if thing_id is not None or observed_property is not None: +# sql = select(Series) +# if thing_id is not None: +# sql = sql.where(Series.thing_id == thing_id) +# if observed_property is not None: +# sql = sql.where(Series.observed_property == observed_property) +# if sensor_id is not None: +# sql = sql.where(Series.sensor_id == sensor_id) +# +# return paginate(conn=session, query=sql) +# +# return paginated_all_getter(session, Series) +# +# +# @router.get("/{series_id}") +# def get_series_by_id( +# series_id: int, session: Session = Depends(get_db_session) +# ) -> SeriesResponse: +# """ +# Endpoint to retrieve a specific series by its ID. +# """ +# +# return session.get(Series, series_id) +# +# +# # ============= Post ============================================= +# @router.post("", status_code=HTTP_201_CREATED) +# def add_series( +# series_data: CreateSeries, session: Session = Depends(get_db_session) +# ) -> SeriesResponse: +# """ +# Endpoint to add a new series. +# """ +# return adder(session, Series, series_data) +# +# +# # ============= EOF ============================================= diff --git a/api/thing.py b/api/thing.py index de879e66e..4f8b6a81e 100644 --- a/api/thing.py +++ b/api/thing.py @@ -13,166 +13,527 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from typing import List - -from fastapi import APIRouter, Depends +from fastapi import APIRouter, Depends, Query, Request from fastapi_pagination.ext.sqlalchemy import paginate from sqlalchemy import select -from sqlalchemy.orm import Session -from starlette import status +from sqlalchemy.exc import ProgrammingError +from starlette.status import ( + HTTP_200_OK, + HTTP_201_CREATED, + HTTP_204_NO_CONTENT, + HTTP_409_CONFLICT, +) -from api.base import router from api.pagination import CustomPage -from db import ( - WellThing, - WellScreen, - SpringThing, - adder, - LocationThingAssociation, - Thing, -) -from db.engine import get_db_session -from schemas.base_create import CreateSpring -from schemas.base_get import GetWell -from schemas.base_responses import SpringResponse -from schemas.create.well import CreateWell, CreateWellScreen -from schemas.response.well import WellResponse, WellScreenResponse -from services.query_helper import make_query, simple_all_getter, simple_get_by_id -from services.thing_helper import add_well -from services.validation.well import validate_screens - -router = APIRouter(prefix="/thing", tags=["thing"]) - - -@router.get("/well", response_model=CustomPage[WellResponse], summary="Get all wells") -async def get_wells( - # api_id: str = None, - # ose_pod_id: str = None, +from core.app import public_route +from core.dependencies import ( + session_dependency, + amp_admin_dependency, + admin_dependency, + editor_dependency, + # amp_viewer_dependency, + # viewer_dependency, + # no_permission_dependency, + viewer_function, + amp_viewer_function, + # no_permission_function, + amp_editor_dependency, +) +from db.thing import Thing, WellScreen +from db.thing import ThingIdLink +from schemas.thing import ( + CreateThingIdLink, + CreateWell, + CreateWellScreen, + ThingResponse, + WellResponse, + WellScreenResponse, + UpdateSpring, + UpdateWell, + SpringResponse, + CreateSpring, + ThingIdLinkResponse, + UpdateThingIdLink, + UpdateWellScreen, +) +from services.crud_helper import model_patcher, model_adder, model_deleter +from services.exceptions_helper import PydanticStyleException +from services.query_helper import ( + simple_get_by_id, + paginated_all_getter, + order_sort_filter, +) +from services.thing_helper import ( + add_thing, + patch_thing, + add_well_screen, + get_db_things, + get_thing_of_a_thing_type_by_id, + get_active_location, +) +from services.lexicon_helper import get_terms_by_category + +router = APIRouter( + prefix="/thing", tags=["thing"], dependencies=[Depends(viewer_function)] +) + + +def database_error_handler( + payload: CreateWell | CreateSpring, error: ProgrammingError +) -> None: + """ + Handle errors raised by the database when adding or updating a thing. + """ + + error_message = error.orig.args[0]["M"] + + if ( + error_message + == 'insert or update on table "group_thing_association" violates foreign key constraint "group_thing_association_group_id_fkey"' + ): + + detail = { + "loc": ["body", "group_id"], + "msg": f"Group with ID {payload.group_id} not found.", + "type": "value_error", + "input": {"group_id": payload.group_id}, + } + elif ( + error_message + == 'insert or update on table "location_thing_association" violates foreign key constraint "location_thing_association_location_id_fkey"' + ): + + detail = { + "loc": ["body", "location_id"], + "msg": f"Location with ID {payload.location_id} not found.", + "type": "value_error", + "input": {"location_id": payload.location_id}, + } + elif ( + error_message + == 'insert or update on table "well_screen" violates foreign key constraint "well_screen_thing_id_fkey"' + ): + detail = { + "loc": ["body", "thing_id"], + "msg": f"Thing with ID {payload.thing_id} not found.", + "type": "value_error", + "input": {"thing_id": payload.thing_id}, + } + elif ( + error_message + == 'insert or update on table "well_screen" violates foreign key constraint "well_screen_screen_type_fkey"' + ): + valid_screen_types = get_terms_by_category("casing_material") + valid_screen_types_for_msg = " | ".join(valid_screen_types) + detail = { + "loc": ["body", "screen_type"], + "msg": f"{payload.screen_type} is an invalid screen type. Valid types are: {valid_screen_types_for_msg}.", + "type": "value_error", + "input": {"screen_type": payload.screen_type}, + } + elif ( + error_message + == 'insert or update on table "thing_id_link" violates foreign key constraint "thing_id_link_thing_id_fkey"' + ): + detail = { + "loc": ["body", "thing_id"], + "msg": f"Thing with ID {payload.thing_id} not found.", + "type": "value_error", + "input": {"thing_id": payload.thing_id}, + } + + raise PydanticStyleException(status_code=HTTP_409_CONFLICT, detail=[detail]) + + +# GET ========================================================================== + + +@router.get("/water-well", summary="Get all water wells", status_code=HTTP_200_OK) +async def get_water_wells( + session: session_dependency, + request: Request, + sort: str = None, + order: str = None, + filter_: str = Query(alias="filter", default=None), query: str = None, - session: Session = Depends(get_db_session), -): +) -> CustomPage[WellResponse]: """ Retrieve all wells from the database. """ + thing_type = request.url.path.split("/")[2].replace("-", " ") + return get_db_things(filter_, order, query, session, sort, thing_type=thing_type) - # if api_id: - # sql = select(WellThing).where(WellThing.api_id == api_id) - # elif ose_pod_id: - # sql = select(WellThing).where(WellThing.ose_pod_id == ose_pod_id) - if query: - sql = select(WellThing).where(make_query(WellThing, query)) - else: - sql = select(WellThing) - return paginate(query=sql, conn=session) - # If no parameters, return all wells - # return simple_all_getter(session, Well) +@router.get( + "/water-well/{thing_id}", summary="Get water well by ID", status_code=HTTP_200_OK +) +async def get_well_by_id( + thing_id: int, session: session_dependency, request: Request +) -> WellResponse: + """ + Retrieve a water well by ID from the database. + """ + return get_thing_of_a_thing_type_by_id(session, request, thing_id) - # result = session.execute(sql) - # return result.scalars().all() + +@router.get( + "/water-well/{thing_id}/well-screen", + summary="Get well screens by water well ID", + status_code=HTTP_200_OK, +) +async def get_well_screens_by_well_id( + thing_id: int, session: session_dependency, request: Request +) -> CustomPage[WellScreenResponse]: + """ + Retrieve all well screens for a specific water well by its ID. + """ + thing = get_thing_of_a_thing_type_by_id(session, request, thing_id) + sql = select(WellScreen).where(WellScreen.thing_id == thing.id) + return paginate(query=sql, conn=session) @router.get( - "/well/screen", response_model=List[WellScreenResponse], summary="Get well screens" + "/well-screen", + summary="Get well screens", + dependencies=[Depends(amp_viewer_function)], ) -async def get_well_screens(session: Session = Depends(get_db_session)): +async def get_well_screens( + session: session_dependency, + thing_id: int = None, +) -> CustomPage[WellScreenResponse]: """ Retrieve all well screens from the database. """ - return simple_all_getter(session, WellScreen) + if thing_id: + sql = select(WellScreen).where(WellScreen.thing_id == thing_id) + return paginate(query=sql, conn=session) + + return paginated_all_getter(session, WellScreen) @router.get( - "/spring", - response_model=List[SpringResponse], + "/well-screen/{wellscreen_id}", + dependencies=[Depends(amp_viewer_function)], + summary="Get well screen by ID", ) -async def get_springs(session: Session = Depends(get_db_session)): +async def get_well_screen_by_id( + session: session_dependency, + wellscreen_id: int, +) -> WellScreenResponse: + """ + Retrieve a well screen by ID from the database. + """ + well_screen = simple_get_by_id(session, WellScreen, wellscreen_id) + return well_screen + + +@router.get("/spring", summary="Get all springs") +async def get_springs( + session: session_dependency, + request: Request, + sort: str = None, + order: str = None, + filter_: str = Query(alias="filter", default=None), + query: str = None, +) -> CustomPage[SpringResponse]: """ Retrieve all springs from the database. """ - return simple_all_getter(session, SpringThing) + thing_type = request.url.path.split("/")[2].replace("-", " ") + return get_db_things(filter_, order, query, session, sort, thing_type=thing_type) + + +@router.get("/spring/{thing_id}", summary="Get spring by ID", status_code=HTTP_200_OK) +async def get_spring_by_id( + thing_id: int, session: session_dependency, request: Request +) -> SpringResponse: + """ + Retrieve a spring by ID from the database. + """ + return get_thing_of_a_thing_type_by_id(session, request, thing_id) @router.get( - "/spring/{spring_id}", response_model=SpringResponse, summary="Get spring by ID" + "/id-link", + summary="Get all thing links", ) -async def get_spring_by_id(spring_id: int, session: Session = Depends(get_db_session)): +async def get_thing_id_links( + session: session_dependency, + filter_: str = Query(alias="filter", default=None), + sort: str = None, + order: str = None, +) -> CustomPage[ThingIdLinkResponse]: """ - Retrieve a spring by ID from the database. + Retrieve all thing links, optionally filtered and sorted. + """ + sql = select(ThingIdLink) + sql = order_sort_filter(sql, ThingIdLink, sort=sort, order=order, filter_=filter_) + + return paginate(query=sql, conn=session) + + +@public_route +@router.get("/id-link/{link_id}", summary="Get thing links by link ID") +async def get_thing_id_links( + link_id: int, + session: session_dependency, +) -> ThingIdLinkResponse: """ - spring = simple_get_by_id(session, SpringThing, spring_id) - if not spring: - return {"message": "Spring not found"} - return spring + Retrieve all links for a specific thing by its ID. + """ + return simple_get_by_id(session, ThingIdLink, link_id) -@router.get("/well/{well_id}", response_model=WellResponse, summary="Get well by ID") -async def get_well_by_id(well_id: int, session: Session = Depends(get_db_session)): +@public_route +@router.get("", summary="Get all things", status_code=HTTP_200_OK) +async def get_things( + session: session_dependency, + # thing_id: int = None, + within: str = None, + query: str = None, + sort: str = None, + order: str = None, + filter_: str = Query( + default=None, + alias="filter", + ), +) -> CustomPage[ThingResponse]: """ - Retrieve a well by ID from the database. + Retrieve all things or filter by type. """ - well = simple_get_by_id(session, WellThing, well_id) - if not well: - return {"message": "Well not found"} - return well + return get_db_things( + filter_, + order, + query, + session, + sort, + within=within, + ) -@router.get( - "/wellscreen/{wellscreen_id}", + +@router.get("/{thing_id}", summary="Get thing by ID", status_code=HTTP_200_OK) +async def get_thing_by_id( + thing_id: int, session: session_dependency, request: Request +) -> ThingResponse: + """ + Retrieve a thing by ID from the database. + """ + thing = simple_get_by_id(session, Thing, thing_id) + thing.active_location = get_active_location(session, thing) + return thing + + +@router.get("/{thing_id}/id-link", summary="Get thing links by thing ID") +async def get_thing_id_links( + thing_id: int, + session: session_dependency, +) -> CustomPage[ThingIdLinkResponse]: + """ + Retrieve all links for a specific thing by its ID. + """ + thing = simple_get_by_id(session, Thing, thing_id) + sql = select(ThingIdLink).where(ThingIdLink.thing_id == thing.id) + return paginate(query=sql, conn=session) + + +# POST ======================================================================== + + +@router.post( + "/id-link", status_code=HTTP_201_CREATED, summary="Create a new thing link" ) -async def get_well_screen_by_id( - wellscreen_id: int, session: Session = Depends(get_db_session) -): +async def create_thing_id_link( + link_data: CreateThingIdLink, + session: session_dependency, + user: admin_dependency, +) -> ThingIdLinkResponse: """ - Retrieve a well screen by ID from the database. + Create a new link between a thing and an alternate ID. """ - well_screen = simple_get_by_id(session, WellScreen, wellscreen_id) - if not well_screen: - return {"message": "Well screen not found"} - return well_screen + try: + return model_adder(session, ThingIdLink, link_data, user=user) + except ProgrammingError as e: + database_error_handler(link_data, e) + + +@router.post( + "/water-well", + summary="Create a water well", + status_code=HTTP_201_CREATED, +) +async def create_well( + thing_data: CreateWell, + session: session_dependency, + request: Request, + user: amp_admin_dependency, +) -> WellResponse: + """ + Create a new water well in the database. + """ + try: + return add_thing(session=session, data=thing_data, request=request, user=user) + except ProgrammingError as e: + database_error_handler(thing_data, e) -# ===== POST ============= @router.post( - "/well", - response_model=GetWell, - summary="Create a new well", - status_code=status.HTTP_201_CREATED, + "/spring", + summary="Create a new spring", + status_code=HTTP_201_CREATED, ) -def create_well(well_data: CreateWell, session: Session = Depends(get_db_session)): +async def create_spring( + thing_data: CreateSpring, + session: session_dependency, + request: Request, + user: amp_admin_dependency, +) -> SpringResponse: """ Create a new well in the database. """ - data = well_data.model_dump() - well = add_well(session, data) - return well + try: + return add_thing(session=session, data=thing_data, request=request, user=user) + except ProgrammingError as e: + database_error_handler(thing_data, e) @router.post( - "/well/screen", + "/well-screen", summary="Create a new well screen", - status_code=status.HTTP_201_CREATED, + status_code=HTTP_201_CREATED, ) -def create_wellscreen( - well_screen_data: CreateWellScreen = Depends(validate_screens), - session: Session = Depends(get_db_session), -): +async def create_wellscreen( + session: session_dependency, + user: amp_admin_dependency, + well_screen_data: CreateWellScreen, +) -> WellScreenResponse: """ Create a new well screen in the database. """ - return adder(session, WellScreen, well_screen_data) + try: + return add_well_screen(session, well_screen_data, user=user) + except ProgrammingError as e: + database_error_handler(well_screen_data, e) + except PydanticStyleException as e: + raise e -@router.post( - "/spring", summary="Create a new spring", status_code=status.HTTP_201_CREATED +# PATCH ======================================================================== + + +@router.patch( + "/water-well/{thing_id}", + summary="Update well by parent thing ID", + status_code=HTTP_200_OK, +) +async def update_water_well( + thing_id: int, + thing_data: UpdateWell, + session: session_dependency, + user: amp_editor_dependency, + request: Request, +) -> WellResponse: + """ + Update an existing well by ID. + """ + return patch_thing(session, request, thing_id, thing_data, user=user) + + +@router.patch( + "/spring/{thing_id}", + summary="Update spring by parent thing ID", + status_code=HTTP_200_OK, +) +async def update_spring( + thing_id: int, + thing_data: UpdateSpring, + session: session_dependency, + user: amp_editor_dependency, + request: Request, +) -> SpringResponse: + """ + Update an existing spring by ID. + """ + return patch_thing(session, request, thing_id, thing_data, user=user) + + +@router.patch( + "/id-link/{link_id}", summary="Update thing link by ID", status_code=HTTP_200_OK +) +async def update_thing_id_link( + link_id: int, + link_data: UpdateThingIdLink, + session: session_dependency, + user: editor_dependency, +) -> ThingIdLinkResponse: + return model_patcher(session, ThingIdLink, link_id, link_data, user=user) + + +@router.patch( + "/well-screen/{well_screen_id}", + summary="Update Well Screen by ID", + status_code=HTTP_200_OK, +) +async def update_well_screen( + well_screen_id: int, + well_screen_data: UpdateWellScreen, + session: session_dependency, + user: editor_dependency, +) -> WellScreenResponse: + + # TODO: add validation + return model_patcher( + session, WellScreen, well_screen_id, well_screen_data, user=user + ) + + +# DELETE ======================================================================= + + +@router.delete( + "/{thing_id}", summary="Delete thing by ID", status_code=HTTP_204_NO_CONTENT +) +async def delete_thing( + thing_id: int, + session: session_dependency, + user: editor_dependency, +) -> None: + """ + Delete a thing by ID. + """ + return model_deleter(session, Thing, thing_id) + + +@router.delete( + "/well-screen/{well_screen_id}", + summary="Delete well screen by ID", + status_code=HTTP_204_NO_CONTENT, +) +async def delete_well_screen( + well_screen_id: int, + session: session_dependency, + user: editor_dependency, +) -> None: + """ + Delete a well screen by ID. + """ + return model_deleter(session, WellScreen, well_screen_id) + + +@router.delete( + "/id-link/{link_id}", + summary="Delete thing link by ID", + status_code=HTTP_204_NO_CONTENT, ) -def create_spring( - spring_data: CreateSpring, session: Session = Depends(get_db_session) -): +async def delete_thing_id_link( + link_id: int, + session: session_dependency, + user: editor_dependency, +) -> None: """ - Create a new spring in the database. + Delete a thing link by ID. """ - return adder(session, SpringThing, spring_data) + return model_deleter(session, ThingIdLink, link_id) # ============= EOF ============================================= diff --git a/core/app.py b/core/app.py index 5172c67c2..2b018614b 100644 --- a/core/app.py +++ b/core/app.py @@ -13,63 +13,21 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +import os from contextlib import asynccontextmanager from typing import AsyncGenerator from fastapi import FastAPI -from sqlalchemy import text -from sqlalchemy.exc import DatabaseError +from fastapi.openapi.docs import ( + get_swagger_ui_html, + get_swagger_ui_oauth2_redirect_html, +) +from fastapi.openapi.utils import get_openapi -from db.base import Base -from db.engine import engine, get_db_session -from services.lexicon import add_lexicon_term +from .initializers import init_db, init_lexicon from .settings import settings -def init_db(): - """ - Initialize the database by creating all tables. - This function is called during application startup. - """ - Base.metadata.drop_all(bind=engine) - Base.metadata.create_all(bind=engine) - - -def init_lexicon(): - with open("./core/lexicon.json") as f: - import json - - default_lexicon = json.load(f) - - # populate lexicon - - session = next(get_db_session()) - - for term_dict in default_lexicon: - try: - add_lexicon_term( - session, - term_dict["term"], - term_dict["definition"], - term_dict["category"], - ) - except DatabaseError: - session.rollback() - - -def create_superuser(): - from admin.user import User - - session = next(get_db_session()) - user = User( - username="admin", - password="admin", - is_superuser=True, - ) - session.add(user) - session.commit() - - @asynccontextmanager async def lifespan(app: FastAPI) -> AsyncGenerator[None, None]: """ @@ -77,7 +35,6 @@ async def lifespan(app: FastAPI) -> AsyncGenerator[None, None]: """ if settings.get_enum("MODE") == "development": init_db() - create_superuser() init_lexicon() yield @@ -85,8 +42,147 @@ async def lifespan(app: FastAPI) -> AsyncGenerator[None, None]: app = FastAPI( title="Sample Location API", description="API for managing sample locations", - version="0.0.1", + version=settings.version, lifespan=lifespan, ) + +# --- full OpenAPI schema --- +def full_openapi(): + if app.openapi_schema: + return app.openapi_schema + schema = get_openapi( + title="Ocotillo API (Full)", + version=settings.version, + description="Full API schema (authorized users)", + routes=app.routes, + ) + app.openapi_schema = schema + return app.openapi_schema + + +# --- public OpenAPI schema --- +def public_openapi(): + schema = get_openapi( + title="Ocotillo API (Public)", + version="0.0.1", + description="Public API schema (anonymous users)", + routes=app.routes, + ) + + # Keep only operations where the endpoint function is marked public + new_paths = {} + for path, path_item in schema["paths"].items(): + new_methods = {} + for method, operation in path_item.items(): + # Recover the actual route handler + + route = next( + ( + r + for r in app.routes + if r.path == path and method.upper() in r.methods + ), + None, + ) + if not route: + continue + + endpoint = getattr(route, "endpoint", None) + if getattr(endpoint, "_is_public", False): + # Strip security info for public docs + operation["security"] = [] + new_methods[method] = operation + + if new_methods: + new_paths[path] = new_methods + + schema["paths"] = new_paths + + # --- Collect all referenced schemas recursively --- + referenced = set() + + def collect_refs(obj): + if isinstance(obj, dict): + for k, v in obj.items(): + if ( + k == "$ref" + and isinstance(v, str) + and v.startswith("#/components/schemas/") + ): + referenced.add(v.split("/")[-1]) + else: + collect_refs(v) + elif isinstance(obj, list): + for item in obj: + collect_refs(item) + + # Step 1: Collect refs from paths + collect_refs(schema["paths"]) + + # Step 2: Recursively resolve inside components + visited = set() + to_visit = set(referenced) + + while to_visit: + name = to_visit.pop() + if name in visited: + continue + visited.add(name) + + model = schema.get("components", {}).get("schemas", {}).get(name) + if not model: + continue + + collect_refs(model) + # Add only new schemas we havenโ€™t visited yet + to_visit |= referenced - visited + + # Step 3: Filter components.schemas to only referenced ones + if "components" in schema and "schemas" in schema["components"]: + schema["components"]["schemas"] = { + n: m for n, m in schema["components"]["schemas"].items() if n in referenced + } + + # 4. Drop security schemes entirely for the public spec + if "components" in schema and "securitySchemes" in schema["components"]: + schema["components"].pop("securitySchemes", None) + return schema + + +# set the public schema as the default +app.openapi = public_openapi + +CLIENT_ID = os.environ.get("AUTHENTIK_CLIENT_ID") + + +@app.get("/docs-auth", include_in_schema=False) +async def custom_swagger_ui(): + return get_swagger_ui_html( + openapi_url="/openapi-auth.json", + title="Swagger UI", + oauth2_redirect_url="/docs-auth/oauth2-redirect", + init_oauth={ + "clientId": CLIENT_ID, + "usePkceWithAuthorizationCodeGrant": True, # if you use PKCE + }, + ) + + +@app.get("/openapi-auth.json", include_in_schema=False) +async def get_openapi_auth(): + return full_openapi() + + +@app.get("/docs-auth/oauth2-redirect", include_in_schema=False) +async def swagger_ui_redirect(): + return get_swagger_ui_oauth2_redirect_html() + + +def public_route(func): + """Mark a route as public for OpenAPI filtering.""" + setattr(func, "_is_public", True) + return func + + # ============= EOF ============================================= diff --git a/core/dependencies.py b/core/dependencies.py new file mode 100644 index 000000000..ea8dc4502 --- /dev/null +++ b/core/dependencies.py @@ -0,0 +1,59 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from typing import Annotated, Callable + +from fastapi import Depends +from sqlalchemy.orm import Session + +from core.permissions import authenticated +from db.engine import get_db_session + +session_dependency = Annotated[Session, Depends(get_db_session)] + +# authentication functions + +# Admin, can do everything Editor and Viewer can do +# + create new objects +admin_function = authenticated(permissions=["Admin"]) + +# Editor can do everything Viewer can do +# + edit existing objects +editor_function = authenticated(permissions=["Editor"]) + +# Viewer can view all "global" entities Location, Sample, Group, Lexicon, etc +viewer_function = authenticated(permissions=["Viewer"]) + +# AMP specific permissions +amp_admin_function = authenticated(permissions=["AMPAdmin"]) +amp_editor_function = authenticated(permissions=["AMPEditor"]) +amp_viewer_function = authenticated(permissions=["AMPViewer"]) + +# for testing +no_permission_function = authenticated(permissions=["NoPermission"]) + + +# permissions dependencies +admin_dependency = Annotated[Callable, Depends(admin_function)] +editor_dependency = Annotated[Callable, Depends(editor_function)] +viewer_dependency = Annotated[Callable, Depends(viewer_function)] + + +amp_admin_dependency = Annotated[Callable, Depends(amp_admin_function)] +amp_editor_dependency = Annotated[Callable, Depends(amp_editor_function)] +amp_viewer_dependency = Annotated[Callable, Depends(amp_viewer_function)] + +no_permission_dependency = Annotated[Callable, Depends(no_permission_function)] +# ============= EOF ============================================= diff --git a/core/initializers.py b/core/initializers.py new file mode 100644 index 000000000..0533d9587 --- /dev/null +++ b/core/initializers.py @@ -0,0 +1,78 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from pathlib import Path + +from sqlalchemy import text +from sqlalchemy.exc import DatabaseError + +from db import Base +from db.engine import engine, session_ctx +from services.lexicon_helper import add_lexicon_term + + +# ============= EOF ============================================= +def init_db(): + """ + Initialize the database by creating all tables. + This function is called during application startup. + """ + + Base.metadata.drop_all(bind=engine) + Base.metadata.create_all(bind=engine) + + +def init_hypertables(): + """ + Initialize hypertables for time-series data. + This function is called during application startup. + """ + # session = next(get_db_session()) + # Create hypertables for time-series data + with session_ctx() as session: + session.execute( + text("select create_hypertable('observation', 'observation_datetime');") + ) + + # session.commit() + # session.close() + + +def init_lexicon(path=None): + if path is None: + path = Path(__file__).parent / "lexicon.json" + + with open(path) as f: + import json + + default_lexicon = json.load(f) + + # populate lexicon + + with session_ctx() as session: + for term_dict in default_lexicon: + try: + add_lexicon_term( + session, + term_dict["term"], + term_dict["definition"], + term_dict["categories"], + ) + except DatabaseError as e: + print( + f"Failed to add term {term_dict['term']}: {term_dict['definition']} error: {e}" + ) + + session.rollback() diff --git a/core/lexicon.json b/core/lexicon.json index 2d23d6968..1cd498752 100644 --- a/core/lexicon.json +++ b/core/lexicon.json @@ -1,66 +1,487 @@ [ - {"term": "manual", "definition": "manual sampling", "category": "collection_method"}, - {"term": "continuous", "definition": "continuous sampling", "category": "collection_method"}, - - {"term": "groundwater level", "definition": "groundwater level measurement", "category": "observed_property"}, - - {"term": "Owner", "definition": "Owner", "category": "role"}, - - {"term": "Primary", "definition": "Primary", "category": "email_type"}, - {"term": "Primary", "definition": "Primary", "category": "address_type"}, - {"term": "Primary", "definition": "Primary", "category": "phone_type"}, - - {"term": "TDS", "definition": "Total Dissolved Solids", "category": "water_chemistry"}, - {"term": "Na", "definition": "Sodium", "category": "water_chemistry"}, - {"term": "Cl", "definition": "Chloride", "category": "water_chemistry"}, - {"term": "Ca", "definition": "Calcium", "category": "water_chemistry"}, - {"term": "Mg", "definition": "Magnesium", "category": "water_chemistry"}, - {"term": "SO4", "definition": "Sulfate", "category": "water_chemistry"}, - {"term": "HCO3", "definition": "Bicarbonate", "category": "water_chemistry"}, - - {"term": "ft", "definition": "feet", "category": "unit"}, - {"term": "ftbgs", "definition": "feet below ground surface", "category": "unit"}, - {"term": "F", "definition": "Fahrenheit", "category": "unit"}, - {"term": "mg/L", "definition": "Milligrams per Liter", "category": "unit"}, - {"term": "mW/mยฒ", "definition": "milliwatts per square meter", "category": "unit"}, - {"term": "W/mยฒ", "definition": "watts per square meter", "category": "unit"}, - {"term": "W/mยทK", "definition": "watts per meter Kelvin", "category": "unit"}, - {"term": "mยฒ/s", "definition": "square meters per second", "category": "unit"}, - - {"term": "Exploration", "definition": "Exploration well", "category": "well_type"}, - {"term": "Monitoring", "definition": "Monitoring", "category": "well_type"}, - {"term": "Production", "definition": "Production", "category": "well_type"}, - {"term": "Injection", "definition": "Injection", "category": "well_type"}, - - - {"term": "PVC", "definition": "Polyvinyl Chloride", "category": "casing_material"}, - {"term": "Steel", "definition": "Steel", "category": "casing_material"}, - {"term": "Concrete", "definition": "Concrete", "category": "casing_material"}, - - {"term": "Provisional", "definition": "Provisional quality control status", "category": "quality_control_status"}, - {"term": "Approved", "definition": "Approved quality control status", "category": "quality_control_status"}, - {"term": "Rejected", "definition": "Rejected quality control status", "category": "quality_control_status"}, - - {"term": "mud", "definition": "drilling mud", "category": "drilling_fluid"}, - - {"term": "Ar/Ar", "definition": "Ar40/Ar39 geochronology", "category": "geochronology"}, - {"term": "AFT", "definition": "apatite fission track", "category": "geochronology"}, - {"term": "K/Ar", "definition": "Potassium-Argon dating", "category": "geochronology"}, - {"term": "U/Th", "definition": "Uranium/Thorium dating", "category": "geochronology"}, - {"term": "Rb/Sr", "definition": "Rubidium-Strontium dating", "category": "geochronology"}, - {"term": "U/Pb", "definition": "Uranium/Lead dating", "category": "geochronology"}, - {"term": "Lu/Hf", "definition": "Lutetium-Hafnium dating", "category": "geochronology"}, - {"term": "Re/Os", "definition": "Rhenium-Osmium dating", "category": "geochronology"}, - {"term": "Sm/Nd", "definition": "Samarium-Neodymium dating", "category": "geochronology"}, - - {"term": "Map", "definition": "Map", "category": "publication_type"}, - {"term": "Report", "definition": "Report", "category": "publication_type"}, - {"term": "Dataset", "definition": "Dataset", "category": "publication_type"}, - {"term": "Model", "definition": "Model", "category": "publication_type"}, - {"term": "Software", "definition": "Software", "category": "publication_type"}, - {"term": "Paper", "definition": "Paper", "category": "publication_type"}, - {"term": "Thesis", "definition": "Thesis", "category": "publication_type"}, - {"term": "Book", "definition": "Book", "category": "publication_type"}, - {"term": "Conference", "definition": "Conference", "category": "publication_type"}, - {"term": "Webpage", "definition": "Webpage", "category": "publication_type"} + + {"categories": [{"name": "qc_sample", "description": null}], "term": "original", "definition": ""}, + {"categories": [{"name": "qc_sample", "description": null}], "term": "duplicate", "definition": ""}, + + {"categories" : [{"name": "vertical_datum", "description": null}], "term": "NAVD88", "definition": "North American Vertical Datum of 1988"}, + {"categories" : [{"name": "vertical_datum", "description": null}], "term": "NGVD29", "definition": "National Geodetic Vertical Datum of 1929"}, + {"categories" : [{"name": "vertical_datum", "description": null}, + {"name": "horizontal_datum", "description": null}], "term": "WGS84", "definition": "World Geodetic System of 1984"}, + + {"categories": [{"name": "horizontal_datum", "description": null}], "term": "NAD83", "definition": "North American Datum of 1983"}, + {"categories": [{"name": "horizontal_datum", "description": null}], "term": "NAD27", "definition": "North American Datum of 1927"}, + + {"categories": [{"name": "elevation_method", "description": null}], "term": "Altimeter", "definition": "altimeter"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Differentially corrected GPS", "definition": "differentially corrected GPS"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Survey-grade GPS", "definition": "survey-grade GPS"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Global positioning system (GPS)", "definition": "Global positioning system (GPS)"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "LiDAR DEM", "definition": "LiDAR DEM"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Level or other survey method", "definition": "Level or other survey method"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Interpolated from topographic map", "definition": "Interpolated from topographic map"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Interpolated from digital elevation model (DEM)", "definition": "Interpolated from digital elevation model (DEM)"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Reported", "definition": "Reported"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "Survey-grade Global Navigation Satellite Sys, Lvl1", "definition": "Survey-grade Global Navigation Satellite Sys, Lvl1"}, + {"categories": [{"name": "elevation_method", "description": null}], "term": "USGS National Elevation Dataset (NED)", "definition": "USGS National Elevation Dataset (NED)"}, + {"categories": [{"name": "elevation_method", "description": null}, + {"name": "collection_method", "description": null}, + {"name": "coordinate_method", "description": null}, + {"name": "current_use", "description": null}, + {"name": "status", "description": null}, + {"name": "organization", "description": null}], "term": "Unknown", "definition": "Unknown"}, + + {"categories": [{"name": "collection_method", "description": null}], "term": "bailer", "definition": "bailer"}, + {"categories": [{"name": "collection_method", "description": null}], "term": "faucet at well head", "definition": "faucet at well head"}, + {"categories": [{"name": "collection_method", "description": null}], "term": "faucet or outlet at house", "definition": "faucet or outlet at house"}, + {"categories": [{"name": "collection_method", "description": null}], "term": "grab sample", "definition": "grab sample"}, + {"categories": [{"name": "collection_method", "description": null}], "term": "pump", "definition": "pump"}, + {"categories": [{"name": "collection_method", "description": null}], "term": "thief sampler", "definition": "thief sampler"}, + + {"categories": [{"name": "construction_method", "description": null}], "term": "Air-rotary", "definition": "Air-rotary"}, + {"categories": [{"name": "construction_method", "description": null}], "term": "Bored or augered", "definition": "Bored or augered"}, + {"categories": [{"name": "construction_method", "description": null}], "term": "Cable-tool", "definition": "Cable-tool"}, + {"categories": [{"name": "construction_method", "description": null}], "term": "Hydraulic rotary (mud or water)", "definition": "Hydraulic rotary (mud or water)"}, + {"categories": [{"name": "construction_method", "description": null}], "term": "Air percussion", "definition": "Air percussion"}, + {"categories": [{"name": "construction_method", "description": null}], "term": "Reverse rotary", "definition": "Reverse rotary"}, + {"categories": [{"name": "construction_method", "description": null}], "term": "Driven", "definition": "Driven"}, + {"categories": [{"name": "construction_method", "description": null}, + {"name": "measurement_method", "description": null}], "term": "Other (explain in notes)", "definition": "Other (explain in notes)"}, + + {"categories": [{"name": "coordinate_method", "description": null}], "term": "Differentially corrected GPS", "definition": "Differentially corrected GPS"}, + {"categories": [{"name": "coordinate_method", "description": null}], "term": "Survey-grade global positioning system (SGPS)", "definition": "Survey-grade global positioning system (SGPS)"}, + {"categories": [{"name": "coordinate_method", "description": null}], "term": "GPS, uncorrected", "definition": "GPS, uncorrected"}, + {"categories": [{"name": "coordinate_method", "description": null}], "term": "Interpolated from map", "definition": "Interpolated from map"}, + {"categories": [{"name": "coordinate_method", "description": null}], "term": "Interpolated from DEM", "definition": "Interpolated from DEM"}, + {"categories": [{"name": "coordinate_method", "description": null}], "term": "Reported", "definition": "Reported"}, + {"categories": [{"name": "coordinate_method", "description": null}], "term": "Transit, theodolite, or other survey method", "definition": "Transit, theodolite, or other survey method"}, + + {"categories": [{"name": "current_use", "description": null}], "term": "Open, unequipped well", "definition": "Open, unequipped well"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Commercial", "definition": "Commercial"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Domestic", "definition": "Domestic"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Power generation", "definition": "Power generation"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Irrigation", "definition": "Irrigation"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Livestock", "definition": "Livestock"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Mining", "definition": "Mining"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Industrial", "definition": "Industrial"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Observation", "definition": "Observation"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Public supply", "definition": "Public supply"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Shared domestic", "definition": "Shared domestic"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Institutional", "definition": "Institutional"}, + {"categories": [{"name": "current_use", "description": null}], "term": "Unused", "definition": "Unused"}, + + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accurate to within two hundreths of a foot", "definition": "Good"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accurate to within one foot", "definition": "Fair"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accuracy not to nearest foot or water level not repeatable", "definition": "Poor"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accurate to nearest foot (USGS accuracy level)", "definition": "Water level accurate to nearest foot (USGS accuracy level)"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accurate to nearest tenth of a foot (USGS accuracy level)", "definition": "Water level accurate to nearest tenth of a foot (USGS accuracy level)"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accurate to nearest one-hundredth of a foot (USGS accuracy level)", "definition": "Water level accurate to nearest one-hundredth of a foot (USGS accuracy level)"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accuracy not to nearest foot (USGS accuracy level)", "definition": "Water level accuracy not to nearest foot (USGS accuracy level)"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "Water level accuracy unknown (USGS accuracy level)", "definition": "Water level accuracy unknown (USGS accuracy level)"}, + {"categories": [{"name": "data_quality", "description": null}], "term": "None", "definition": "NA"}, + + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}, + {"name": "discharge_source", "description": null}], "term": "Reported by another agency", "definition": "Reported by another agency"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "From driller's log or well report", "definition": "From driller's log or well report"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}, + {"name": "discharge_source", "description": null}], "term": "Private geologist, consultant or univ associate", "definition": "Private geologist, consultant or univ associate"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "Depth interpreted fr geophys logs by source agency", "definition": "Depth interpreted fr geophys logs by source agency"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "Memory of owner, operator, driller", "definition": "Memory of owner, operator, driller"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "Reported by owner of well", "definition": "Reported by owner of well"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "Reported by person other than driller owner agency", "definition": "Reported by person other than driller owner agency"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "Measured by NMBGMR staff", "definition": "Measured by NMBGMR staff"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "Other", "definition": "Other"}, + {"categories": [{"name": "data_source", "description": null}, + {"name": "depth_completion_source", "description": null}], "term": "Data Portal", "definition": "Data Portal"}, + + {"categories": [{"name": "discharge_source", "description": null}], "term": "Information from a report", "definition": "Information from a report"}, + {"categories": [{"name": "discharge_source", "description": null}], "term": "Measured by Bureau scientist", "definition": "Measured by Bureau scientist"}, + {"categories": [{"name": "discharge_source", "description": null}], "term": "Other (explain)", "definition": "Other (explain)"}, + + {"categories": [{"name": "unit", "description": null}], "term": "dimensionless", "definition": ""}, + {"categories": [{"name": "unit", "description": null}], "term": "ft", "definition": "feet"}, + {"categories": [{"name": "unit", "description": null}], "term": "ftbgs", "definition": "feet below ground surface"}, + {"categories": [{"name": "unit", "description": null}], "term": "F", "definition": "Fahrenheit"}, + {"categories": [{"name": "unit", "description": null}], "term": "mg/L", "definition": "Milligrams per Liter"}, + {"categories": [{"name": "unit", "description": null}], "term": "mW/mยฒ", "definition": "milliwatts per square meter"}, + {"categories": [{"name": "unit", "description": null}], "term": "W/mยฒ", "definition": "watts per square meter"}, + {"categories": [{"name": "unit", "description": null}], "term": "W/mยทK", "definition": "watts per meter Kelvin"}, + {"categories": [{"name": "unit", "description": null}], "term": "mยฒ/s", "definition": "square meters per second"}, + {"categories": [{"name": "unit", "description": null}], "term": "deg C", "definition": "degree Celsius"}, + {"categories": [{"name": "unit", "description": null}], "term": "deg second", "definition": "degree second"}, + {"categories": [{"name": "unit", "description": null}], "term": "deg minute", "definition": "degree minute"}, + + {"categories": [{"name": "observed_property", "description": null}], "term": "groundwater level:groundwater level", "definition": "groundwater level measurement" }, + {"categories": [{"name": "observed_property", "description": null}], "term": "geothermal:temperature", "definition": "Temperature measurement"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:pH", "definition": "pH"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Alkalinity, Total", "definition": "Alkalinity, Total"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Alkalinity as CaCO3", "definition": "Alkalinity as CaCO3"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Alkalinity as OH-", "definition": "Alkalinity as OH-"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Calcium", "definition": "Calcium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Calcium, total, unfiltered", "definition": "Calcium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Chloride", "definition": "Chloride"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Carbonate", "definition": "Carbonate"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Conductivity, laboratory", "definition": "Conductivity, laboratory"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Bicarbonate", "definition": "Bicarbonate"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Hardness (CaCO3)", "definition": "Hardness (CaCO3)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Ion Balance", "definition": "Ion Balance"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Potassium", "definition": "Potassium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Potassium, total, unfiltered", "definition": "Potassium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Magnesium", "definition": "Magnesium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Magnesium, total, unfiltered", "definition": "Magnesium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Sodium", "definition": "Sodium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Sodium, total, unfiltered", "definition": "Sodium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Sodium and Potassium combined", "definition": "Sodium and Potassium combined"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Sulfate", "definition": "Sulfate"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Total Anions", "definition": "Total Anions"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Total Cations", "definition": "Total Cations"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Total Dissolved Solids", "definition": "Total Dissolved Solids"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Tritium", "definition": "Tritium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Age of Water using dissolved gases", "definition": "Age of Water using dissolved gases"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Silver", "definition": "Silver"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Silver, total, unfiltered", "definition": "Silver, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Aluminum", "definition": "Aluminum"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Aluminum, total, unfiltered", "definition": "Aluminum, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Arsenic", "definition": "Arsenic"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Arsenic, total, unfiltered", "definition": "Arsenic, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Boron", "definition": "Boron"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Boron, total, unfiltered", "definition": "Boron, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Barium", "definition": "Barium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Barium, total, unfiltered", "definition": "Barium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Beryllium", "definition": "Beryllium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Beryllium, total, unfiltered", "definition": "Beryllium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Bromide", "definition": "Bromide"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:13C:12C ratio", "definition": "13C:12C ratio"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:14C content, pmc", "definition": "14C content, pmc"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Uncorrected C14 age", "definition": "Uncorrected C14 age"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Cadmium", "definition": "Cadmium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Cadmium, total, unfiltered", "definition": "Cadmium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Chlorofluorocarbon-11 avg age", "definition": "Chlorofluorocarbon-11 avg age"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Chlorofluorocarbon-113 avg age", "definition": "Chlorofluorocarbon-113 avg age"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Chlorofluorocarbon-113/12 avg RATIO age", "definition": "Chlorofluorocarbon-113/12 avg RATIO age"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Chlorofluorocarbon-12 avg age", "definition": "Chlorofluorocarbon-12 avg age"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Cobalt", "definition": "Cobalt"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Cobalt, total, unfiltered", "definition": "Cobalt, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Chromium", "definition": "Chromium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Chromium, total, unfiltered", "definition": "Chromium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Copper", "definition": "Copper"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Copper, total, unfiltered", "definition": "Copper, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:delta O18 sulfate", "definition": "delta O18 sulfate"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Sulfate 34 isotope ratio", "definition": "Sulfate 34 isotope ratio"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Fluoride", "definition": "Fluoride"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Iron", "definition": "Iron"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Iron, total, unfiltered", "definition": "Iron, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Deuterium:Hydrogen ratio", "definition": "Deuterium:Hydrogen ratio"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Mercury", "definition": "Mercury"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Mercury, total, unfiltered", "definition": "Mercury, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Lithium", "definition": "Lithium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Lithium, total, unfiltered", "definition": "Lithium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Manganese", "definition": "Manganese"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Manganese, total, unfiltered", "definition": "Manganese, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Molybdenum", "definition": "Molybdenum"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Molybdenum, total, unfiltered", "definition": "Molybdenum, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Nickel", "definition": "Nickel"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Nickel, total, unfiltered", "definition": "Nickel, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Nitrite (as NO2)", "definition": "Nitrite (as NO2)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Nitrite (as N)", "definition": "Nitrite (as N)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Nitrate (as NO3)", "definition": "Nitrate (as NO3)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Nitrate (as N)", "definition": "Nitrate (as N)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:18O:16O ratio", "definition": "18O:16O ratio"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Lead", "definition": "Lead"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Lead, total, unfiltered", "definition": "Lead, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Phosphate", "definition": "Phosphate"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Antimony", "definition": "Antimony"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Antimony, total, unfiltered", "definition": "Antimony, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Selenium", "definition": "Selenium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Selenium, total, unfiltered", "definition": "Selenium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Sulfur hexafluoride", "definition": "Sulfur hexafluoride"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Silicon", "definition": "Silicon"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Silicon, total, unfiltered", "definition": "Silicon, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Silica", "definition": "Silica"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Tin", "definition": "Tin"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Tin, total, unfiltered", "definition": "Tin, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Strontium", "definition": "Strontium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Strontium, total, unfiltered", "definition": "Strontium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Strontium 87:86 ratio", "definition": "Strontium 87:86 ratio"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Thorium", "definition": "Thorium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Thorium, total, unfiltered", "definition": "Thorium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Titanium", "definition": "Titanium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Titanium, total, unfiltered", "definition": "Titanium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Thallium", "definition": "Thallium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Thallium, total, unfiltered", "definition": "Thallium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Uranium (total, by ICP-MS)", "definition": "Uranium (total, by ICP-MS)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Uranium, total, unfiltered", "definition": "Uranium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Vanadium", "definition": "Vanadium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Vanadium, total, unfiltered", "definition": "Vanadium, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Zinc", "definition": "Zinc"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Zinc, total, unfiltered", "definition": "Zinc, total, unfiltered"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Corrected C14 in years", "definition": "Corrected C14 in years"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Arsenite (arsenic species)", "definition": "Arsenite (arsenic species)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Arsenate (arsenic species)", "definition": "Arsenate (arsenic species)"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Cyanide", "definition": "Cyanide"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Estimated recharge temperature", "definition": "Estimated recharge temperature"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Hydrogen sulfide", "definition": "Hydrogen sulfide"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Ammonia", "definition": "Ammonia"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Ammonium", "definition": "Ammonium"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Total nitrogen", "definition": "Total nitrogen"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Total Kjeldahl nitrogen", "definition": "Total Kjeldahl nitrogen"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Dissolved organic carbon", "definition": "Dissolved organic carbon"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:Total organic carbon", "definition": "Total organic carbon"}, + {"categories": [{"name": "observed_property", "description": null}], "term": "water chemistry:delta C13 of dissolved inorganic carbon", "definition": "delta C13 of dissolved inorganic carbon"}, + + + {"categories": [{"name": "release_status", "description": null}], "term": "draft", "definition": "draft version"}, + {"categories": [{"name": "release_status", "description": null}], "term": "provisional", "definition": "provisional version"}, + {"categories": [{"name": "release_status", "description": null}], "term": "final", "definition": "final version"}, + {"categories": [{"name": "release_status", "description": null}], "term": "published", "definition": "published version"}, + {"categories": [{"name": "release_status", "description": null}], "term": "archived", "definition": "archived version"}, + {"categories": [{"name": "release_status", "description": null}], "term": "public", "definition": "public version"}, + {"categories": [{"name": "release_status", "description": null}], "term": "private", "definition": "private version"}, + + {"categories": [{"name": "relation", "description": null}], "term": "same_as", "definition": "same as"}, + {"categories": [{"name": "relation", "description": null}], "term": "related_to", "definition": "related to"}, + {"categories": [{"name": "relation", "description": null}], "term": "OSEWellTagID", "definition": "NM OSE well tag ID"}, + {"categories": [{"name": "relation", "description": null}], "term": "OSEPOD", "definition": "NM OSE 'Point of Diversion' ID"}, + {"categories": [{"name": "relation", "description": null}], "term": "PLSS", "definition": "Public Land Survey System ID"}, + + {"categories": [{"name": "sample_type", "description": null}], "term": "groundwater", "definition": "groundwater sample from a well"}, + + {"categories": [{"name": "thing_type", "description": null}], "term": "water well", "definition": "a hole drill into the ground to access groundwater"}, + {"categories": [{"name": "thing_type", "description": null}], "term": "spring", "definition": "a natural discharge of groundwater at the surface"}, + {"categories": [{"name": "thing_type", "description": null}], "term": "perennial stream", "definition": "that has a continuous flow of water throughout the year, even during drier periods."}, + {"categories": [{"name": "thing_type", "description": null}], "term": "ephemeral stream", "definition": "a stream that flows only briefly during and after precipitation events"}, + {"categories": [{"name": "thing_type", "description": null}], "term": "meteorological station", "definition": "a station that measures the weather conditions at a particular location"}, + + {"categories": [{"name": "level_status", "description": null}], "term": "Water level affected by atmospheric pressure", "definition": "Water level affected by atmospheric pressure"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Water level was frozen (no level recorded).", "definition": "Water level was frozen (no level recorded)."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Site was dry", "definition": "Site was dry"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Site was flowing recently.", "definition": "Site was flowing recently."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Site was flowing. Water level or head couldn't be measured w/out additional equipment.", "definition": "Site was flowing. Water level or head couldn't be measured w/out additional equipment."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Nearby site that taps the same aquifer was flowing.", "definition": "Nearby site that taps the same aquifer was flowing."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Nearby site that taps the same aquifer had been flowing recently.", "definition": "Nearby site that taps the same aquifer had been flowing recently."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Recharge water was being injected into the aquifer at this site.", "definition": "Recharge water was being injected into the aquifer at this site."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Recharge water was being injected into nearby site that taps the same aquifer.", "definition": "Recharge water was being injected into nearby site that taps the same aquifer."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Water was cascading down the inside of the well.", "definition": "Water was cascading down the inside of the well."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Water level was affected by brackish or saline water.", "definition": "Water level was affected by brackish or saline water."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Well was not in hydraulic contact w/formation (from source other than defined in USGS C714 or C93).", "definition": "Well was not in hydraulic contact w/formation (from source other than defined in USGS C714 or C93)."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Measurement was discontinued (no level recorded).", "definition": "Measurement was discontinued (no level recorded)."}, + {"categories": [{"name": "level_status", "description": null}], "term": "Obstruction was encountered in the well (no level recorded)", "definition": "Obstruction was encountered in the well (no level recorded)"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Site was being pumped", "definition": "Site was being pumped"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Site was pumped recently", "definition": "Site was pumped recently"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Nearby site that taps the same aquifer was being pumped", "definition": "Nearby site that taps the same aquifer was being pumped"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Nearby site that taps the same aquifer was pumped recently", "definition": "Nearby site that taps the same aquifer was pumped recently"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Foreign substance present on the water surface", "definition": "Foreign substance present on the water surface"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Well was destroyed (no subsequent water levels should be recorded)", "definition": "Well was destroyed (no subsequent water levels should be recorded)"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Water level affected by stage in nearby surface-water site", "definition": "Water level affected by stage in nearby surface-water site"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Other conditions exist that would affect the level (remarks)", "definition": "Other conditions exist that would affect the level (remarks)"}, + {"categories": [{"name": "level_status", "description": null}], "term": "Water level not affected by status", "definition": "Water level not affected by status"}, + + {"categories": [{"name": "status", "description": null}], "term": "Abandoned", "definition": "Abandoned"}, + {"categories": [{"name": "status", "description": null}], "term": "Active, pumping well", "definition": "Active, pumping well"}, + {"categories": [{"name": "status", "description": null}], "term": "Destroyed, exists but not usable", "definition": "Destroyed, exists but not usable"}, + {"categories": [{"name": "status", "description": null}], "term": "Inactive, exists but not used", "definition": "Inactive, exists but not used"}, + + {"categories": [{"name": "measurement_method", "description": null}], "term": "Airline measurement", "definition": "Airline measurement"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Analog or graphic recorder", "definition": "Analog or graphic recorder"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Calibrated airline measurement", "definition": "Calibrated airline measurement"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Differential GPS; especially applicable to surface expression of ground water", "definition": "Differential GPS; especially applicable to surface expression of ground water"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Estimated", "definition": "Estimated"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Transducer", "definition": "Transducer"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Pressure-gage measurement", "definition": "Pressure-gage measurement"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Calibrated pressure-gage measurement", "definition": "Calibrated pressure-gage measurement"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Interpreted from geophysical logs", "definition": "Interpreted from geophysical logs"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Manometer", "definition": "Manometer"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Non-recording gage", "definition": "Non-recording gage"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Observed (required for F, N, and W water level status)", "definition": "Observed (required for F, N, and W water level status)"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Sonic water level meter (acoustic pulse)", "definition": "Sonic water level meter (acoustic pulse)"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Reported, method not known", "definition": "Reported, method not known"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Steel-tape measurement", "definition": "Steel-tape measurement"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Electric tape measurement (E-probe)", "definition": "Electric tape measurement (E-probe)"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Unknown (for legacy data only; not for new data entry)", "definition": "Unknown (for legacy data only; not for new data entry)"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Calibrated electric tape; accuracy of equipment has been checked", "definition": "Calibrated electric tape; accuracy of equipment has been checked"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Calibrated electric cable", "definition": "Calibrated electric cable"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Uncalibrated electric cable", "definition": "Uncalibrated electric cable"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Continuous acoustic sounder", "definition": "Continuous acoustic sounder"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "Measurement not attempted", "definition": "Measurement not attempted"}, + {"categories": [{"name": "measurement_method", "description": null}], "term": "null placeholder", "definition": "null placeholder"}, + + {"categories": [{"name": "organization", "description": null}], "term": "USGS", "definition": "US Geological Survey"}, + {"categories": [{"name": "organization", "description": null}], "term": "TWDB", "definition": "Texas Water Development Board"}, + {"categories": [{"name": "organization", "description": null}], "term": "NMED", "definition": "New Mexico Environment Department"}, + {"categories": [{"name": "organization", "description": null}], "term": "NMOSE", "definition": "New Mexico Office of the State Engineer"}, + {"categories": [{"name": "organization", "description": null}], "term": "NMBGMR", "definition": "New Mexico Bureau of Geology and Mineral Resources"}, + {"categories": [{"name": "organization", "description": null}], "term": "Bernalillo Cty", "definition": "Bernalillo County"}, + {"categories": [{"name": "organization", "description": null}], "term": "BLM", "definition": "Bureau of Land Management"}, + {"categories": [{"name": "organization", "description": null}], "term": "SFC", "definition": "Santa Fe County"}, + {"categories": [{"name": "organization", "description": null}], "term": "NESWCD", "definition": "Northeast Soil & Water Conservation District"}, + {"categories": [{"name": "organization", "description": null}], "term": "NMISC", "definition": "New Mexico Interstate Stream Commission"}, + {"categories": [{"name": "organization", "description": null}], "term": "PVACD", "definition": "Pecos Valley Artesian Conservancy District"}, + {"categories": [{"name": "organization", "description": null}], "term": "TSWCD", "definition": "Taos Soil & Water Conservation District"}, + {"categories": [{"name": "organization", "description": null}], "term": "Bayard", "definition": "Bayard Municipal Water"}, + {"categories": [{"name": "organization", "description": null}], "term": "OSWCD", "definition": "Otero Soil & Water Conservation District"}, + {"categories": [{"name": "organization", "description": null}], "term": "SNL", "definition": "Sandia National Laboratories"}, + {"categories": [{"name": "organization", "description": null}], "term": "USFS", "definition": "United States Forest Service"}, + {"categories": [{"name": "organization", "description": null}], "term": "NMT", "definition": "New Mexico Tech"}, + {"categories": [{"name": "organization", "description": null}], "term": "NPS", "definition": "National Park Service"}, + + {"categories": [{"name": "collection_method", "description": null}], "term": "manual", "definition": "manual sampling"}, + {"categories": [{"name": "collection_method", "description": null}], "term": "continuous", "definition": "continuous sampling"}, + + {"categories": [{"name": "country", "description": null}], "term": "United States", "definition": "United States of America"}, + {"categories": [{"name": "country", "description": null}], "term": "Canada", "definition": "Canada"}, + {"categories": [{"name": "country", "description": null}], "term": "Mexico", "definition": "Mexico"}, + {"categories": [{"name": "country", "description": null}], "term": "United Kingdom", "definition": "United Kingdom of Great Britain and Northern Ireland"}, + {"categories": [{"name": "country", "description": null}], "term": "Australia", "definition": "Australia"}, + {"categories": [{"name": "country", "description": null}], "term": "Germany", "definition": "Germany"}, + {"categories": [{"name": "country", "description": null}], "term": "France", "definition": "France"}, + {"categories": [{"name": "country", "description": null}], "term": "Japan", "definition": "Japan"}, + + {"categories": [{"name": "state", "description": null}], "term": "New Mexico", "definition": "New Mexico"}, + {"categories": [{"name": "state", "description": null}], "term": "Texas", "definition": "Texas"}, + {"categories": [{"name": "state", "description": null}], "term": "Arizona", "definition": "Arizona"}, + {"categories": [{"name": "state", "description": null}], "term": "Utah", "definition": "Utah"}, + {"categories": [{"name": "state", "description": null}], "term": "Colorado", "definition": "Colorado"}, + + {"categories": [{"name": "county", "description": null}], "term": "Bernalillo", "definition": "Bernalillo"}, + {"categories": [{"name": "county", "description": null}], "term": "Catron", "definition": "Catron"}, + {"categories": [{"name": "county", "description": null}], "term": "Chaves", "definition": "Chaves"}, + {"categories": [{"name": "county", "description": null}], "term": "Cibola", "definition": "Cibola"}, + {"categories": [{"name": "county", "description": null}], "term": "Colfax", "definition": "Colfax"}, + {"categories": [{"name": "county", "description": null}], "term": "Curry", "definition": "Curry"}, + {"categories": [{"name": "county", "description": null}], "term": "De Baca", "definition": "De Baca"}, + {"categories": [{"name": "county", "description": null}], "term": "Doรฑa Ana", "definition": "Doรฑa Ana"}, + {"categories": [{"name": "county", "description": null}], "term": "Eddy", "definition": "Eddy"}, + {"categories": [{"name": "county", "description": null}], "term": "Grant", "definition": "Grant"}, + {"categories": [{"name": "county", "description": null}], "term": "Guadalupe", "definition": "Guadalupe"}, + {"categories": [{"name": "county", "description": null}], "term": "Harding", "definition": "Harding"}, + {"categories": [{"name": "county", "description": null}], "term": "Hidalgo", "definition": "Hidalgo"}, + {"categories": [{"name": "county", "description": null}], "term": "Lea", "definition": "Lea"}, + {"categories": [{"name": "county", "description": null}], "term": "Lincoln", "definition": "Lincoln"}, + {"categories": [{"name": "county", "description": null}], "term": "Los Alamos", "definition": "Los Alamos"}, + {"categories": [{"name": "county", "description": null}], "term": "Luna", "definition": "Luna"}, + {"categories": [{"name": "county", "description": null}], "term": "McKinley", "definition": "McKinley"}, + {"categories": [{"name": "county", "description": null}], "term": "Mora", "definition": "Mora"}, + {"categories": [{"name": "county", "description": null}], "term": "Otero", "definition": "Otero"}, + {"categories": [{"name": "county", "description": null}], "term": "Quay", "definition": "Quay"}, + {"categories": [{"name": "county", "description": null}], "term": "Rio Arriba", "definition": "Rio Arriba"}, + {"categories": [{"name": "county", "description": null}], "term": "Roosevelt", "definition": "Roosevelt"}, + {"categories": [{"name": "county", "description": null}], "term": "Sandoval", "definition": "Sandoval"}, + {"categories": [{"name": "county", "description": null}], "term": "San Juan", "definition": "San Juan"}, + {"categories": [{"name": "county", "description": null}], "term": "San Miguel", "definition": "San Miguel"}, + {"categories": [{"name": "county", "description": null}], "term": "Santa Fe", "definition": "Santa Fe"}, + {"categories": [{"name": "county", "description": null}], "term": "Sierra", "definition": "Sierra"}, + {"categories": [{"name": "county", "description": null}], "term": "Socorro", "definition": "Socorro"}, + {"categories": [{"name": "county", "description": null}], "term": "Taos", "definition": "Taos"}, + {"categories": [{"name": "county", "description": null}], "term": "Torrance", "definition": "Torrance"}, + {"categories": [{"name": "county", "description": null}], "term": "Union", "definition": "Union"}, + {"categories": [{"name": "county", "description": null}], "term": "Valencia", "definition": "Valencia"}, + + {"categories": [{"name": "role", "description": null}], "term": "Owner", "definition": "Owner"}, + {"categories": [{"name": "role", "description": null}], "term": "Manager", "definition": "Manager"}, + {"categories": [{"name": "role", "description": null}], "term": "Operator", "definition": "Operator"}, + {"categories": [{"name": "role", "description": null}], "term": "Driller", "definition": "Driller"}, + {"categories": [{"name": "role", "description": null}], "term": "Geologist", "definition": "Geologist"}, + {"categories": [{"name": "role", "description": null}], "term": "Hydrologist", "definition": "Hydrologist"}, + {"categories": [{"name": "role", "description": null}], "term": "Hydrogeologist", "definition": "Hydrogeologist"}, + {"categories": [{"name": "role", "description": null}], "term": "Engineer", "definition": "Engineer"}, + {"categories": [{"name": "role", "description": null}], "term": "Technician", "definition": "Technician"}, + + + {"categories": [{"name": "email_type", "description": null}, + {"name": "phone_type", "description": null}, + {"name": "address_type", "description": null}, + {"name": "contact_type", "description": null}], "term": "Primary", "definition": "primary"}, + {"categories": [{"name": "contact_type", "description": null}], "term": "Secondary", "definition": "secondary"}, + + {"categories": [{"name": "email_type", "description": null}, + {"name": "phone_type", "description": null}, + {"name": "address_type", "description": null}], "term": "Work", "definition": "work"}, + + {"categories": [{"name": "email_type", "description": null}, + {"name": "address_type", "description": null}], "term": "Personal", "definition": "personal"}, + + {"categories": [{"name": "address_type", "description": null}], "term": "Mailing", "definition": "mailing"}, + {"categories": [{"name": "address_type", "description": null}], "term": "Physical", "definition": "physical"}, + + {"categories": [{"name": "phone_type", "description": null}], "term": "Home", "definition": "Primary"}, + {"categories": [{"name": "phone_type", "description": null}], "term": "Mobile", "definition": "Primary"}, + + {"categories": [{"name": "spring_type", "description": null}], "term": "Artesian", "definition": "artesian spring"}, + {"categories": [{"name": "spring_type", "description": null}], "term": "Ephemeral", "definition": "ephemeral spring"}, + {"categories": [{"name": "spring_type", "description": null}], "term": "Perennial", "definition": "perennial spring"}, + {"categories": [{"name": "spring_type", "description": null}], "term": "Thermal", "definition": "thermal spring"}, + {"categories": [{"name": "spring_type", "description": null}], "term": "Mineral", "definition": "mineral spring"}, + + {"categories": [{"name": "well_type", "description": null}], "term": "Exploration", "definition": "Exploration well"}, + {"categories": [{"name": "well_type", "description": null}], "term": "Monitoring", "definition": "Monitoring"}, + {"categories": [{"name": "well_type", "description": null}], "term": "Production", "definition": "Production"}, + {"categories": [{"name": "well_type", "description": null}], "term": "Injection", "definition": "Injection"}, + + {"categories": [{"name": "casing_material", "description": null}], "term": "PVC", "definition": "Polyvinyl Chloride"}, + {"categories": [{"name": "casing_material", "description": null}], "term": "Steel", "definition": "Steel"}, + {"categories": [{"name": "casing_material", "description": null}], "term": "Concrete", "definition": "Concrete"}, + + {"categories": [{"name": "quality_control_status", "description": null}], "term": "Provisional", "definition": "Provisional quality control status"}, + {"categories": [{"name": "quality_control_status", "description": null}], "term": "Approved", "definition": "Approved quality control status"}, + {"categories": [{"name": "quality_control_status", "description": null}], "term": "Rejected", "definition": "Rejected quality control status"}, + + {"categories": [{"name": "drilling_fluid", "description": null}], "term": "mud", "definition": "drilling mud"}, + + {"categories": [{"name": "geochronology", "description": null}], "term": "Ar/Ar", "definition": "Ar40/Ar39 geochronology"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "AFT", "definition": "apatite fission track"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "K/Ar", "definition": "Potassium-Argon dating"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "U/Th", "definition": "Uranium/Thorium dating"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "Rb/Sr", "definition": "Rubidium-Strontium dating"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "U/Pb", "definition": "Uranium/Lead dating"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "Lu/Hf", "definition": "Lutetium-Hafnium dating"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "Re/Os", "definition": "Rhenium-Osmium dating"}, + {"categories": [{"name": "geochronology", "description": null}], "term": "Sm/Nd", "definition": "Samarium-Neodymium dating"}, + + + {"categories": [{"name": "publication_type", "description": null}], "term": "Map", "definition": "Map"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Report", "definition": "Report"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Dataset", "definition": "Dataset"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Model", "definition": "Model"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Software", "definition": "Software"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Paper", "definition": "Paper"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Thesis", "definition": "Thesis"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Book", "definition": "Book"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Conference", "definition": "Conference"}, + {"categories": [{"name": "publication_type", "description": null}], "term": "Webpage", "definition": "Webpage"}, + + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Monitor every six months", "definition": "Monitor every six months"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Annual water level", "definition": "Annual water level"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Monitoring bi-monthly", "definition": "Monitoring bi-monthly"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Monitoring complete", "definition": "Monitoring complete"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Datalogger installed", "definition": "Datalogger installed"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Monitor every 10 years (long-term monitor)", "definition": "Monitor every 10 years (long-term monitor)"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Monitor monthly", "definition": "Monitor monthly"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Sampling complete", "definition": "Sampling complete"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Reported to NMBGMR bimonthly", "definition": "Reported to NMBGMR bimonthly"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Sample well", "definition": "Sample well"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Water level cannot be measured", "definition": "Water level cannot be measured"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Repeat sampling", "definition": "Repeat sampling"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Wellntel device", "definition": "Wellntel device"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Bi-annual (every other year)", "definition": "Bi-annual (every other year)"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Inactive", "definition": "Inactive"}, + {"categories": [{"name": "monitoring_status", "description": null}], "term": "Data share", "definition": "Data share"}, + + {"categories": [{"name": "sample_type", "description": null}], "term": "Background", "definition": "Background"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Equipment blank", "definition": "Equipment blank"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Field blank", "definition": "Field blank"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Field duplicate", "definition": "Field duplicate"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Field parameters only", "definition": "Field parameters only"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Precipitation", "definition": "Precipitation"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Repeat sample", "definition": "Repeat sample"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Standard field sample", "definition": "Standard field sample"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Soil or Rock sample", "definition": "Soil or Rock sample"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Trip blank", "definition": "Trip blank"}, + {"categories": [{"name": "sample_type", "description": null}], "term": "Source water blank", "definition": "Source water blank"} ] \ No newline at end of file diff --git a/core/permissions.py b/core/permissions.py new file mode 100644 index 000000000..51fcf2a61 --- /dev/null +++ b/core/permissions.py @@ -0,0 +1,144 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +# import os +from inspect import Signature, Parameter +from typing import Optional, List, Union, cast, Callable + +from fastapi import Depends +from fastapi.security import HTTPAuthorizationCredentials, OAuth2AuthorizationCodeBearer +from jwt.algorithms import RSAAlgorithm +from starlette import status +from starlette.requests import Request +from starlette.responses import Response +import os + +from fastapi import Depends, HTTPException, status +from fastapi.security import OAuth2PasswordBearer +from jose import jwt +from jose.exceptions import JWTError +import httpx + +AUTHENTIK_ISSUER = os.environ.get("AUTHENTIK_URL") +ALGORITHMS = ["RS256"] +jwks = {} +if AUTHENTIK_ISSUER: + JWKS_URL = f"{AUTHENTIK_ISSUER}jwks/" + + # Fetch JWKS (could also cache this) + def get_jwks(): + resp = httpx.get(JWKS_URL) + resp.raise_for_status() + return resp.json() + + jwks = get_jwks() + + +def get_public_key(token): + unverified_header = jwt.get_unverified_header(token) + for key in jwks["keys"]: + if key["kid"] == unverified_header["kid"]: + return RSAAlgorithm.from_jwk(key) + raise HTTPException(status_code=401, detail="Invalid signing key") + + +oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") + + +TokenType = Union[str, HTTPAuthorizationCredentials] +scheme = OAuth2AuthorizationCodeBearer( + # authorizationUrl=f"{settings.FIEF_URL}/authorize", + # tokenUrl=f"{settings.FIEF_URL}/api/token", + authorizationUrl=os.environ.get("AUTHENTIK_AUTHORIZE_URL", ""), + tokenUrl=os.environ.get("AUTHENTIK_TOKEN_URL", ""), + scopes={"openid": "openid", "offline_access": "offline_access"}, + auto_error=False, +) + + +def authenticated( + optional: bool = False, + scope: Optional[List[str]] = None, + permissions: Optional[List[str]] = None, +): + + def _authenicated( + request: Request, + response: Response, + token: TokenType = Depends(cast(Callable, scheme)), + ): + # def _authenicated(request: Request, response: Response): + # def _authenicated(): + """ + A placeholder for the authentication logic. + This function should check if the user is authenticated and has the required permissions. + If `optional` is True, it should allow unauthenticated access. + """ + if optional and not token: + return True + + # Here you would typically check the token against your authentication system + # and verify the user's permissions. + + if not token or not verify_token(token, scope, permissions): + response.status_code = status.HTTP_401_UNAUTHORIZED + + # this is a placeholder for the actual authentication logic + return _get_token_payload(token) if token else None + + return _authenicated + + +def verify_token( + token: TokenType, scope: Optional[List[str]], permissions: Optional[List[str]] +) -> bool: + """ + Placeholder function to verify the token. + This should contain the logic to check if the token is valid and has the required permissions. + """ + # Implement your token verification logic here + + payload = _get_token_payload(token) + + # Optionally check scopes and permissions in payload + if scope: + if not all(s in payload.get("scope", []) for s in scope): + return False + if permissions: + if not all(p in payload.get("groups", []) for p in permissions): + return False + return True + + +def _get_token_payload(token: str = Depends(oauth2_scheme)): + try: + public_key = get_public_key(token) + payload = jwt.decode( + token, + public_key, + algorithms=ALGORITHMS, + audience=os.environ.get( + "AUTHENTIK_CLIENT_ID" + ), # Must match Authentik application + ) + return payload + except JWTError as e: + raise HTTPException( + status_code=status.HTTP_401_UNAUTHORIZED, + detail="Could not validate credentials", + ) + + +# ============= EOF ============================================= diff --git a/core/settings.py b/core/settings.py index f978e5c68..e1b94db06 100644 --- a/core/settings.py +++ b/core/settings.py @@ -17,6 +17,7 @@ class Settings: + version = "0.0.1" def __init__(self): self.mode = os.getenv("MODE", "") # Default mode diff --git a/db/__init__.py b/db/__init__.py index 3a3f3fad0..6d71baf61 100644 --- a/db/__init__.py +++ b/db/__init__.py @@ -13,64 +13,43 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== + +# import all models from db package so that Alembic can discover them + +from db.base import * from db.base import Base + from db.asset import * -from db.location import * from db.collabnet import * +from db.contact import * from db.geochronology import * +from db.geothermal import * +from db.group import * from db.lexicon import * +from db.location import * +from db.observation import * from db.publication import * - from db.sample import * -from db.thing import * -from db.series import * -from db.observation import * from db.sensor import * - -import re +from db.thing import * from sqlalchemy import ( - create_engine, - Column, - Integer, - DateTime, func, - JSON, desc, cast, Text, ) from sqlalchemy.dialects.postgresql import REGCONFIG -from sqlalchemy.ext.asyncio import async_sessionmaker, create_async_engine -from sqlalchemy.orm import ( - declarative_base, - sessionmaker, - declared_attr, -) -from sqlalchemy.util import await_only from sqlalchemy_searchable import ( - make_searchable, inspect_search_vectors, search_manager, ) +from sqlalchemy.orm import configure_mappers +configure_mappers() -def adder(session, table, model, **kwargs): - """ - Helper function to add a new record to the database. - """ - md = model.model_dump() - if kwargs: - md.update(kwargs) - obj = table(**md) - session.add(obj) - session.commit() - session.refresh(obj) - return obj - - -def search(query, search_query, vector=None, regconfig=None, sort=True): +def search(query, search_query, vector=None, regconfig=None, sort=True, limit=None): if not search_query.strip(): return query @@ -94,6 +73,9 @@ def search(query, search_query, vector=None, regconfig=None, sort=True): ) ) + if limit: + query = query.limit(limit) + return query.params(term=search_query) diff --git a/db/asset.py b/db/asset.py index 8e650aae0..e795734ae 100644 --- a/db/asset.py +++ b/db/asset.py @@ -13,30 +13,37 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +from typing import Optional + from sqlalchemy import Column, String, Integer, ForeignKey -from sqlalchemy.orm import relationship +from sqlalchemy.orm import relationship, Mapped +from sqlalchemy.testing.schema import mapped_column from sqlalchemy_utils import TSVectorType -from db.base import Base, AutoBaseMixin +from db.base import Base, AutoBaseMixin, ReleaseMixin -class Asset(Base, AutoBaseMixin): +class Asset(Base, AutoBaseMixin, ReleaseMixin): # name = Column(String(100), nullable=False, unique=True) # file_type = Column(String(50), nullable=False) # # content = Column(UploadedFileField) # photo = Column(UploadedFileField(upload_type=UploadedImageWithThumb)) - filename = Column(String) - storage_service = Column(String) - storage_path = Column(String) - mime_type = Column(String) - size = Column(Integer) + name: Mapped[str] = mapped_column(String, nullable=False) + label: Mapped[Optional[str]] = mapped_column(String, nullable=True) + storage_service: Mapped[str] = mapped_column(String, nullable=False) + storage_path: Mapped[str] = mapped_column(String, nullable=False) + mime_type: Mapped[str] = mapped_column(String, nullable=False) + size: Mapped[int] = mapped_column(Integer, nullable=False) + uri: Mapped[str] = mapped_column(String, nullable=False) - search_vector = Column( - TSVectorType("filename", "mime_type", "storage_service", "storage_path") + search_vector: Mapped[TSVectorType] = mapped_column( + TSVectorType("name", "mime_type", "storage_service", "storage_path") ) + things = relationship("Thing", secondary="asset_thing_association") + class AssetThingAssociation(Base, AutoBaseMixin): @@ -47,8 +54,10 @@ class AssetThingAssociation(Base, AutoBaseMixin): Integer, ForeignKey("thing.id", ondelete="CASCADE"), nullable=False ) - thing = relationship("Thing", back_populates="asset_associations") - + thing = relationship( + "Thing", back_populates="asset_associations", overlaps="things" + ) + asset = relationship("Asset", overlaps="things") # publication = relationship("Publication", back_populates="author_associations") # author = relationship("Author", back_populates="publication_associations") diff --git a/db/base.py b/db/base.py index 1354c2315..fe17e7905 100644 --- a/db/base.py +++ b/db/base.py @@ -13,24 +13,99 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from sqlalchemy import Column, DateTime, func, Integer, JSON, String, Boolean, Text -from sqlalchemy.orm import declarative_base, declared_attr, Mapped, mapped_column +from sqlalchemy import ( + Column, + DateTime, + func, + Integer, + JSON, + String, + Boolean, + Text, + ForeignKey, +) +from sqlalchemy.orm import DeclarativeBase, declared_attr, Mapped, mapped_column from sqlalchemy_searchable import make_searchable - +from sqlalchemy_continuum import make_versioned import re -Base = declarative_base() + +make_versioned() + + +class Base(DeclarativeBase): + pass + + make_searchable(Base.metadata) +def lexicon_term(foreignkeykw=None, **kw): + + fkw = foreignkeykw if foreignkeykw else {} + + return mapped_column( + String(100), + ForeignKey("lexicon_term.term", onupdate="CASCADE", **fkw), + **kw, + ) + + def pascal_to_snake(name): return re.sub(r"(?" + return f"" -class Category(Base, AutoBaseMixin): +class LexiconCategory(Base, AutoBaseMixin): """ Model for storing categories of terms. This can be used to group terms into different categories. @@ -46,17 +51,11 @@ class Category(Base, AutoBaseMixin): name = mapped_column(String(100), unique=True, nullable=False) description = mapped_column(String(255), nullable=True) - # terms = relationship( - # "lexicon", - # backref="category", - # cascade="all, delete-orphan", - # lazy="dynamic" - # ) def __repr__(self): - return f"" + return f"" -class TermCategoryAssociation(Base, AutoBaseMixin): +class LexiconTermCategoryAssociation(Base, AutoBaseMixin): """ Model for linking terms to categories. This can be used to create a many-to-many relationship between terms and categories. @@ -64,20 +63,20 @@ class TermCategoryAssociation(Base, AutoBaseMixin): __tablename__ = "lexicon_term_category_association" - lexicon_term = mapped_column( - String(100), ForeignKey("lexicon_term.term", ondelete="CASCADE"), nullable=False + term_id = mapped_column( + Integer, ForeignKey("lexicon_term.id", ondelete="CASCADE"), nullable=False ) - category_name = mapped_column( - String(255), - ForeignKey("lexicon_category.name", ondelete="CASCADE"), + category_id = mapped_column( + Integer, + ForeignKey("lexicon_category.id", ondelete="CASCADE"), nullable=False, ) - term = relationship("Lexicon") - category = relationship("Category") + term = relationship("LexiconTerm") + category = relationship("LexiconCategory") def __repr__(self): - return f"" + return f"" class LexiconTriple(Base, AutoBaseMixin): @@ -86,16 +85,16 @@ class LexiconTriple(Base, AutoBaseMixin): This can be used to represent relationships between terms. """ - subject = mapped_column( - String(100), ForeignKey("lexicon_term.term", ondelete="CASCADE"), nullable=False - ) + subject = lexicon_term(nullable=False, foreignkeykw={"ondelete": "CASCADE"}) predicate = mapped_column(String(100), nullable=False) - object_ = mapped_column( - String(100), ForeignKey("lexicon_term.term", ondelete="CASCADE"), nullable=False - ) + object_ = lexicon_term(nullable=False, foreignkeykw={"ondelete": "CASCADE"}) - subject_term = relationship("Lexicon", foreign_keys=[subject]) - object_term = relationship("Lexicon", foreign_keys=[object_]) + subject_term = relationship( + "LexiconTerm", foreign_keys=[subject], passive_deletes=True + ) + object_term = relationship( + "LexiconTerm", foreign_keys=[object_], passive_deletes=True + ) def __repr__(self): return f"" diff --git a/db/location.py b/db/location.py index 9bd4bab80..f54d7a1f7 100644 --- a/db/location.py +++ b/db/location.py @@ -13,120 +13,89 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +import datetime + from geoalchemy2 import Geometry, WKBElement +from geoalchemy2.shape import to_shape + +from uuid import UUID + from sqlalchemy import ( Column, Integer, String, ForeignKey, - Boolean, DateTime, func, + Text, ) -from sqlalchemy.ext.associationproxy import association_proxy from sqlalchemy.orm import relationship, Mapped, mapped_column +from sqlalchemy.ext.associationproxy import association_proxy, AssociationProxy -from db.base import Base, AutoBaseMixin +from db.base import Base, AutoBaseMixin, ReleaseMixin +from db.lexicon import lexicon_term -class Location(Base, AutoBaseMixin): - name = Column(String(100), nullable=True) - description = Column(String(255), nullable=True) - visible = Column(Boolean, default=False, nullable=False) +class Location(Base, AutoBaseMixin, ReleaseMixin): + __versioned__ = {} + nma_pk_location: Mapped[UUID] = mapped_column( + String(36), nullable=True, unique=True + ) + description: Mapped[str] = mapped_column + name: Mapped[str] = mapped_column(String(255), nullable=True) point: Mapped[WKBElement] = mapped_column( - Geometry(geometry_type="POINT", srid=4326, spatial_index=True) + Geometry(geometry_type="POINTZ", srid=4326, spatial_index=True) ) - thing = association_proxy("location_thing_association", "thing") - # owner_id = Column( - # Integer, ForeignKey("owner.id", ondelete="CASCADE"), nullable=True - # ) - - -class LocationThingAssociation(Base, AutoBaseMixin): - location_id = Column( - Integer, ForeignKey("location.id", ondelete="CASCADE"), primary_key=True + state: Mapped[str] = lexicon_term(nullable=True, default="New Mexico") + county: Mapped[str] = lexicon_term(nullable=True) + quad_name: Mapped[str] = mapped_column(String(100), nullable=True) + notes: Mapped[str] = mapped_column(Text, nullable=True) + nma_notes_location: Mapped[str] = mapped_column(Text, nullable=True) + nma_coordinate_notes: Mapped[str] = mapped_column(Text, nullable=True) + elevation_accuracy: Mapped[float] = mapped_column(nullable=True) + elevation_method: Mapped[str] = lexicon_term(nullable=True) + coordinate_accuracy: Mapped[float] = mapped_column(nullable=True) + coordinate_method: Mapped[str] = lexicon_term(nullable=True) + + # --- Relationship Definitions --- + thing_associations: Mapped[list["LocationThingAssociation"]] = relationship( + back_populates="location", cascade="all, delete-orphan" ) - thing_id = Column( - Integer, ForeignKey("thing.id", ondelete="CASCADE"), primary_key=True + + # --- Proxy Definitions --- + things: AssociationProxy[list["Thing"]] = association_proxy( + "thing_associations", "thing" ) - effective_start = Column(DateTime, nullable=False, server_default=func.now()) - effective_end = Column(DateTime, nullable=True) + @property + def latlon(self): + p = to_shape(self.point) + return p.y, p.x - # location = relationship("Location", back_populates="thing") - # thing = relationship("Thing", back_populates="locations") +class LocationThingAssociation(Base, AutoBaseMixin): + location_id: Mapped[int] = mapped_column( + ForeignKey("location.id", ondelete="CASCADE"), primary_key=True + ) + thing_id: Mapped[int] = mapped_column( + ForeignKey("thing.id", ondelete="CASCADE"), primary_key=True + ) -# class Owner(Base, AutoBaseMixin): -# name = Column(String(100), nullable=False, unique=True) -# description = Column(String(255), nullable=True) -# -# search_vector = Column(TSVectorType("name", "description")) -# -# contacts = relationship( -# "Contact", -# secondary="owner_contact_association", -# ) -# # contacts = relationship( -# # "Contact", back_populates="owner", cascade="all, delete-orphan" -# # ) - - -# class Equipment(Base, AutoBaseMixin): -# equipment_type = Column(String(50)) -# model = Column(String(50)) -# serial_no = Column(String(50)) -# date_installed = Column(DateTime) -# date_removed = Column(DateTime) -# recording_interval = Column(Integer) -# equipment_notes = Column(String(50)) -# location_id = Column( -# Integer, ForeignKey("location.id", ondelete="CASCADE"), nullable=False -# ) -# -# location = relationship("Location") + # REFACTOR TODO: when refactoring/updating location/thing schemas and tests, ensure timezone is UTC + effective_start: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), + nullable=False, + server_default=func.timezone("UTC", func.now()), + ) + effective_end: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=True + ) -# class Spring(Base): -# __tablename__ = 'Spring' -# -# id = Column(Integer, primary_key=True, autoincrement=True) -# location_id = Column(Integer, ForeignKey('samplelocation.id'), nullable=False) -# -# # Define a relationship to samplelocation if needed -# location = relationship("samplelocation") -# -# -# class Stream(Base): -# __tablename__ = 'Stream' -# -# id = Column(Integer, primary_key=True, autoincrement=True) -# location_id = Column(Integer, ForeignKey('samplelocation.id'), nullable=False) -# -# # Define a relationship to samplelocation if needed -# location = relationship("samplelocation") -# -# -# class Surface(Base): -# __tablename__ = 'Surface' -# -# id = Column(Integer, primary_key=True, autoincrement=True) -# location_id = Column(Integer, ForeignKey('samplelocation.id'), nullable=False) -# -# # Define a relationship to samplelocation if needed -# location = relationship("samplelocation") -# -# -# class Subsurface(Base): -# __tablename__ = 'Subsurface' -# -# id = Column(Integer, primary_key=True, autoincrement=True) -# location_id = Column(Integer, ForeignKey('samplelocation.id'), nullable=False) -# -# # Define a relationship to samplelocation if needed -# location = relationship("samplelocation") -# + # --- Relationship Definitions --- + location: Mapped["Location"] = relationship(back_populates="thing_associations") + thing: Mapped["Thing"] = relationship(back_populates="location_associations") # ============= EOF ============================================= diff --git a/db/observation.py b/db/observation.py new file mode 100644 index 000000000..1b49196ef --- /dev/null +++ b/db/observation.py @@ -0,0 +1,73 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from sqlalchemy import ( + ForeignKey, + Integer, + Float, + DateTime, +) +from sqlalchemy.orm import mapped_column, relationship + +from db.base import Base, AutoBaseMixin, ReleaseMixin, lexicon_term + + +class Observation(Base, AutoBaseMixin, ReleaseMixin): + __versioned__ = {} + + sample_id = mapped_column( + Integer, + ForeignKey("sample.id", ondelete="CASCADE"), + nullable=False, + ) + sensor_id = mapped_column( + Integer, + ForeignKey("sensor.id", ondelete="CASCADE"), + nullable=False, + ) + + observation_datetime = mapped_column( + DateTime(timezone=True), nullable=False, doc="Timestamp of the observation" + ) + observed_property = lexicon_term() + value = mapped_column( + Float, + nullable=True, + ) + unit = lexicon_term() + + # groundwater + measuring_point_height = mapped_column( + Float, + nullable=True, + doc="Height of the measuring point above the ground surface in ft", + info={"unit": "ft"}, + ) + + level_status = lexicon_term() + + # geothermal + observation_depth = mapped_column( + Float, + nullable=True, + info={"unit": "feet"}, + doc="Depth of the geothermal observation in feet", + ) + + sensor = relationship("Sensor") + sample = relationship("Sample") + + +# ============= EOF ============================================= diff --git a/db/observation/__init__.py b/db/observation/__init__.py deleted file mode 100644 index 8e546ddc2..000000000 --- a/db/observation/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -# ============= EOF ============================================= diff --git a/db/observation/geochemical.py b/db/observation/geochemical.py deleted file mode 100644 index 8b13baf8a..000000000 --- a/db/observation/geochemical.py +++ /dev/null @@ -1,28 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import ForeignKey, Integer -from sqlalchemy.orm import mapped_column - -from db.base import AutoBaseMixin, Base - - -class GeochemicalObservation(Base, AutoBaseMixin): - observation_id = mapped_column( - Integer, ForeignKey("observation.id", ondelete="CASCADE"), nullable=False - ) - - -# ============= EOF ============================================= diff --git a/db/observation/geothermal.py b/db/observation/geothermal.py deleted file mode 100644 index 2f84840ba..000000000 --- a/db/observation/geothermal.py +++ /dev/null @@ -1,28 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import ForeignKey, Integer -from sqlalchemy.orm import mapped_column - -from db.base import AutoBaseMixin, Base - - -class GeothermalObservation(Base, AutoBaseMixin): - observation_id = mapped_column( - Integer, ForeignKey("observation.id", ondelete="CASCADE"), nullable=False - ) - - -# ============= EOF ============================================= diff --git a/db/observation/groundwaterlevel.py b/db/observation/groundwaterlevel.py deleted file mode 100644 index d7093a1cd..000000000 --- a/db/observation/groundwaterlevel.py +++ /dev/null @@ -1,28 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import ForeignKey, Integer -from sqlalchemy.orm import mapped_column - -from db.base import AutoBaseMixin, Base - - -class GroundwaterLevelObservation(Base, AutoBaseMixin): - observation_id = mapped_column( - Integer, ForeignKey("observation.id", ondelete="CASCADE"), nullable=False - ) - - -# ============= EOF ============================================= diff --git a/db/publication.py b/db/publication.py index 792a22b70..6b04691b3 100644 --- a/db/publication.py +++ b/db/publication.py @@ -15,6 +15,7 @@ # =============================================================================== from sqlalchemy_utils import TSVectorType +from db import lexicon_term from db.base import AutoBaseMixin, Base, AuditMixin from sqlalchemy import Column, Integer, String, Text, Date, ForeignKey, Table, DateTime from sqlalchemy.orm import relationship @@ -31,9 +32,7 @@ class Publication(Base, AutoBaseMixin): publisher = Column(String) url = Column(String) - publication_type = Column( - String(100), ForeignKey("lexicon_term.term"), nullable=False - ) + publication_type = lexicon_term(nullable=False) # publication_type = relationship("PublicationType") # authors = relationship( # "Author", diff --git a/db/sample.py b/db/sample.py new file mode 100644 index 000000000..1e6c749b8 --- /dev/null +++ b/db/sample.py @@ -0,0 +1,129 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from sqlalchemy import DateTime, ForeignKey, UniqueConstraint, Float +from sqlalchemy.orm import mapped_column, relationship, Mapped + +# import models from classes that are defined in separate files +from db.base import Base, AutoBaseMixin, ReleaseMixin +from db.thing import Thing +from db.sensor import Sensor + +from typing import Optional + +import datetime + + +class Sample(Base, AutoBaseMixin, ReleaseMixin): + """ + Defines the Sample table, which stores data for individual + sampling events. + """ + + # __table_name__ is inherited from AutoBaseMixin. + + # --- Column Definitions --- + # Foreign Keys + thing_id: Mapped[int] = mapped_column( + ForeignKey("thing.id", ondelete="CASCADE"), + nullable=False, + comment="Foreign key to the Thing (e.g., sampling location) table.", + ) + sensor_id: Mapped[Optional[int]] = mapped_column( + ForeignKey("sensor.id"), + comment="Foreign key for the specific equipment used.", + ) + + # Sample Attributes + sample_date: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), + nullable=False, + comment="Date and time of sample collection.", + ) + # REFACTOR TODO: update with enum/restricted values + sample_matrix: Mapped[Optional[str]] = mapped_column( + comment="The material of the sample (e.g., 'gw', 'soil')." + ) + # REFACTOR TODO: update with enum/restricted values + sample_method: Mapped[Optional[str]] = mapped_column( + comment="Method used to collect the sample." + ) + field_sample_id: Mapped[str] = mapped_column( + unique=True, nullable=False, comment="User-defined ID for field tracking." + ) + # REFACTOR TODO: update with enum/restricted values + sampler_name: Mapped[Optional[str]] = mapped_column( + nullable=False, comment="Name of the person who collected the sample." + ) + # REFACTOR TODO: update with enum/restricted values + qc_sample: Mapped[str] = mapped_column( + default="Original", + nullable=False, + comment="Quality control sample type (e.g., 'Original', 'field dupe').", + ) + sample_top: Mapped[Optional[float]] = mapped_column( + Float, comment="Top depth of a discrete sample interval." + ) + sample_bottom: Mapped[Optional[float]] = mapped_column( + Float, comment="Bottom depth of a discrete sample interval." + ) + duplicate_sample_number: Mapped[int] = mapped_column( + default=0, + comment="Identifier for duplicate samples (0 = original sample, not a duplicate, 1 = dup no.1, 2 = dup no.2, etc.).", + ) + sample_type: Mapped[str] = mapped_column( + comment="The type of sample (e.g., 'geochemical', 'geothermal', 'groundwater')." + ) + + # --- Relationship Definitions --- + thing: Mapped["Thing"] = relationship(back_populates="samples") + sensor: Mapped[Optional["Sensor"]] = relationship(back_populates="sample") + + # --- Table-level Arguments (e.g., Constraints) --- + # Unique samples should be based on the station_id, sample_date, sample_matrix, + # sample_top, sample_bottom, duplicate_sample, field_sample_id, and qc_sample fields. + __table_args__ = ( + UniqueConstraint( + "thing_id", + "sample_date", + "sample_matrix", + "sample_top", + "sample_bottom", + "duplicate_sample_number", + "field_sample_id", + "qc_sample", + name="uix_sample_uniqueness", + ), + ) + + # ---Jake original code--- + # collection_timestamp = mapped_column(DateTime, nullable=False) + # collection_method = lexicon_term(nullable=False) + # + # thing_id = mapped_column( + # Integer, Foreign collection_timestamp = mapped_column(DateTime, nullable=False) + # collection_method = lexicon_term(nullable=False) + # + # thing_id = mapped_column( + # Integer, ForeignKey("thing.id", ondelete="CASCADE"), nullable=False + # ) + # thing = relationship("Thing")Key("thing.id", ondelete="CASCADE"), nullable=False + # ) + # thing = relationship("Thing") + + # wells = association_proxy("author_associations", "author") + + +# ============= EOF ============================================= diff --git a/db/sample/__init__.py b/db/sample/__init__.py deleted file mode 100644 index 8e546ddc2..000000000 --- a/db/sample/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -# ============= EOF ============================================= diff --git a/db/sample/sample.py b/db/sample/sample.py deleted file mode 100644 index efeeb7c24..000000000 --- a/db/sample/sample.py +++ /dev/null @@ -1,35 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import DateTime, String, ForeignKey, Integer -from sqlalchemy.ext.associationproxy import association_proxy -from sqlalchemy.orm import mapped_column, relationship - -from db.base import Base, AutoBaseMixin - - -# ============= EOF ============================================= -class Sample(Base, AutoBaseMixin): - collection_timestamp = mapped_column(DateTime, nullable=False) - collection_method = mapped_column( - String(100), ForeignKey("lexicon_term.term"), nullable=False - ) - - thing_id = mapped_column( - Integer, ForeignKey("thing.id", ondelete="CASCADE"), nullable=False - ) - thing = relationship("Thing") - - # wells = association_proxy("author_associations", "author") diff --git a/db/sensor/sensor.py b/db/sensor.py similarity index 50% rename from db/sensor/sensor.py rename to db/sensor.py index ae4211cbe..1b7b52166 100644 --- a/db/sensor/sensor.py +++ b/db/sensor.py @@ -13,38 +13,39 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from sqlalchemy import Column, String, Integer, ForeignKey, DateTime -from sqlalchemy.orm import declared_attr +from datetime import datetime -from db.base import Base, AutoBaseMixin +from sqlalchemy import String, Integer, DateTime +from sqlalchemy.orm import relationship, mapped_column, Mapped +from db.base import Base, AutoBaseMixin, ReleaseMixin -class SensorMixin: - @declared_attr - def sensor_id(self): - return Column( - Integer, - ForeignKey("sensor.id", ondelete="CASCADE"), - nullable=False, - unique=True, - ) - -class Sensor(Base, AutoBaseMixin): +class Sensor(Base, AutoBaseMixin, ReleaseMixin): """ Base class for all sensor types. This class can be extended to create specific sensor types. """ # Define common attributes for sensors here - name = Column(String(255), nullable=False) - equipment_type = Column(String(50)) - model = Column(String(50)) - serial_no = Column(String(50)) - date_installed = Column(DateTime) - date_removed = Column(DateTime) - recording_interval = Column(Integer) - equipment_notes = Column(String(50)) + name: Mapped[str] = mapped_column(String(255), nullable=False) + model: Mapped[str] = mapped_column(String(50), nullable=True) + serial_no: Mapped[str] = mapped_column(String(50), nullable=True) + datetime_installed: Mapped[datetime] = mapped_column( + DateTime(timezone=True), nullable=False + ) + datetime_removed: Mapped[datetime] = mapped_column( + DateTime(timezone=True), nullable=True + ) + recording_interval: Mapped[int] = mapped_column(Integer, nullable=True) + notes: Mapped[str] = mapped_column(String(50), nullable=True) + + sample = relationship( + "Sample", + back_populates="sensor", + cascade="all, delete-orphan", + uselist=False, + ) # ============= EOF ============================================= diff --git a/db/sensor/__init__.py b/db/sensor/__init__.py deleted file mode 100644 index 84c847937..000000000 --- a/db/sensor/__init__.py +++ /dev/null @@ -1,19 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from .sensor import Sensor -from .groundwaterlevel import GroundwaterLevelSensor - -# ============= EOF ============================================= diff --git a/db/sensor/groundwaterlevel.py b/db/sensor/groundwaterlevel.py deleted file mode 100644 index 6c040abfb..000000000 --- a/db/sensor/groundwaterlevel.py +++ /dev/null @@ -1,28 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import Column, String, Integer, ForeignKey -from sqlalchemy.orm import relationship - -from db.base import Base, AutoBaseMixin - -from db.sensor.sensor import SensorMixin - - -class GroundwaterLevelSensor(Base, AutoBaseMixin, SensorMixin): - pass - - -# ============= EOF ============================================= diff --git a/db/series/__init__.py b/db/series/__init__.py deleted file mode 100644 index 8e546ddc2..000000000 --- a/db/series/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -# ============= EOF ============================================= diff --git a/db/series/geothermal.py b/db/series/geothermal.py deleted file mode 100644 index 3477cf95c..000000000 --- a/db/series/geothermal.py +++ /dev/null @@ -1,24 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from db.base import Base, AutoBaseMixin -from db.series.series import SeriesMixin - - -class GeothermalSeries(Base, AutoBaseMixin, SeriesMixin): - pass - - -# ============= EOF ============================================= diff --git a/db/series/series.py b/db/series/series.py deleted file mode 100644 index fdb4e56ae..000000000 --- a/db/series/series.py +++ /dev/null @@ -1,200 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import DateTime, Float, String, Integer, ForeignKey, Text, func -from sqlalchemy.orm import declared_attr, mapped_column, relationship - -from db.base import AutoBaseMixin, Base - - -class QCMixin: - @declared_attr - def quality_control_status(self): - return mapped_column( - String(100), ForeignKey("lexicon_term.term"), default="Provisional" - ) - - @declared_attr - def quality_control_notes(self): - return mapped_column(Text) - - @declared_attr - def quality_control_timestamp(self): - return mapped_column(DateTime, nullable=True, server_onupdate=func.now()) - - @declared_attr - def quality_control_user_id(self): - return mapped_column( - Integer, ForeignKey("user.id", ondelete="CASCADE"), nullable=True - ) - - -class SeriesMixin: - @declared_attr - def series_id(self): - return mapped_column( - Integer, - ForeignKey("series.id", ondelete="CASCADE"), - nullable=False, - unique=True, - ) - - -class Series(Base, AutoBaseMixin): - """ - Base class for series that can be associated with samples. - This class can be extended to create specific series types. - """ - - @declared_attr - def observed_property(self): - return mapped_column( - String(100), - ForeignKey("lexicon_term.term", ondelete="CASCADE"), - nullable=False, - ) - - @declared_attr - def unit(self): - return mapped_column( - String(100), ForeignKey("lexicon_term.term"), nullable=False - ) - - @declared_attr - def description(self): - return mapped_column(Text, nullable=True) - - -# class SampleWellAssociation(Base, AutoBaseMixin): -# sample_id = mapped_column( -# "sample_id", -# Integer, -# ForeignKey("sample.id", ondelete="CASCADE"), -# nullable=False, -# ) -# well_id = mapped_column( -# "well_id", -# Integer, -# ForeignKey("well.id", ondelete="CASCADE"), -# nullable=False, -# ) -# -# sample = relationship("Sample", back_populates="well_associations") -# -# -# class TimeSeries(Base, AutoBaseMixin): -# observed_property = mapped_column( -# String(100), -# ForeignKey("lexicon_term.term", ondelete="CASCADE"), -# nullable=False, -# ) -# unit = mapped_column(String(100), ForeignKey("lexicon_term.term"), nullable=False) -# -# -# class TimeObservation(Base, AutoBaseMixin, QCMixin): -# timestamp = mapped_column(DateTime, nullable=False) -# value = mapped_column(Float, nullable=False) -# -# sample_id = mapped_column( -# "sample_id", -# Integer, -# ForeignKey("sample.id", ondelete="CASCADE"), -# nullable=False, -# ) -# time_series_id = mapped_column( -# "time_series_id", -# Integer, -# ForeignKey("time_series.id", ondelete="CASCADE"), -# nullable=False, -# ) -# -# -# class DomainSeries(Base, AutoBaseMixin): -# domain = mapped_column(String(100), ForeignKey("lexicon_term.term"), nullable=False) -# observed_property = mapped_column( -# String(100), ForeignKey("lexicon_term.term"), nullable=False -# ) -# domain_unit = mapped_column( -# String(100), ForeignKey("lexicon_term.term"), nullable=False -# ) -# value_unit = mapped_column( -# String(100), ForeignKey("lexicon_term.term"), nullable=False -# ) -# -# -# class DomainObservation(Base, AutoBaseMixin): -# value = mapped_column(Float, nullable=False) -# domain_value = mapped_column(Float, nullable=False) -# timestamp = mapped_column(DateTime, nullable=True) -# -# sample_id = mapped_column( -# "sample_id", -# Integer, -# ForeignKey("sample.id", ondelete="CASCADE"), -# nullable=False, -# ) -# -# domain_series_id = mapped_column( -# "domain_series_id", -# Integer, -# ForeignKey("domain_series.id", ondelete="CASCADE"), -# nullable=False, -# ) - -# sample_domain_series = relationship( -# "SampleDomainSeries", back_populates="observations", cascade="all, delete-orphan" -# ) - - -# class WellTimeseries(Base, TimeseriesMixin, AutoBaseMixin, PropertiesMixin): -# well_id = mapped_column( -# "well_id", Integer, ForeignKey("well.id", ondelete="CASCADE"), nullable=False -# ) -# -# equipment_id = mapped_column( -# "equipment_id", -# Integer, -# ForeignKey("equipment.id", ondelete="SET NULL"), -# nullable=True, -# ) -# -# -# class GroundwaterLevelObservation(Base, AutoBaseMixin, PropertiesMixin, QCMixin): -# """ """ -# -# # __table_args__ = {"timescaledb_hypertable": {"time_column_name": "timestamp"}} -# -# # Define common fields for observations here -# timestamp = mapped_column(DateTime, nullable=False) -# value = mapped_column(Float, nullable=False) -# unit = mapped_column(String, nullable=False, default="ftbgs") -# -# data_quality = mapped_column(String(100), ForeignKey("lexicon_term.term")) -# level_status = mapped_column(String(100), ForeignKey("lexicon_term.term")) -# -# timeseries_id = mapped_column( -# "timeseries_id", -# Integer, -# ForeignKey("well_timeseries.id", ondelete="CASCADE"), -# nullable=False, -# ) -# -# timeseries = relationship("WellTimeseries", backref="observations") -# -# def __repr__(self): -# return f"" - - -# ============= EOF ============================================= diff --git a/db/thing.py b/db/thing.py new file mode 100644 index 000000000..b6117b9d0 --- /dev/null +++ b/db/thing.py @@ -0,0 +1,135 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from sqlalchemy import Integer, ForeignKey, String, Column, Float +from sqlalchemy.ext.associationproxy import association_proxy +from sqlalchemy.orm import relationship, mapped_column, Mapped +from sqlalchemy_utils import TSVectorType + +from uuid import UUID + +from db import lexicon_term +from db.base import AutoBaseMixin, Base, ReleaseMixin + + +class Thing(Base, AutoBaseMixin, ReleaseMixin): + + name = mapped_column(String(255), nullable=False) + description = mapped_column(String(500)) + thing_type = lexicon_term(nullable=True) + spring_type = lexicon_term(nullable=True) + + asset_associations = relationship( + "AssetThingAssociation", + back_populates="thing", + overlaps="things", + cascade="all, delete-orphan", + ) + assets = association_proxy("asset_associations", "asset") + + location_associations = relationship( + "LocationThingAssociation", + back_populates="thing", + overlaps="location", + cascade="all, delete-orphan", + order_by="LocationThingAssociation.effective_start.desc()", + ) + locations = association_proxy("location_associations", "location") + + contact_associations = relationship( + "ThingContactAssociation", + back_populates="thing", + overlaps="contacts", + cascade="all, delete-orphan", + ) + contacts = association_proxy("contact_associations", "contact") + + # Well fields + well_depth = Column( + Float, + nullable=True, + info={"unit": "feet below ground surface"}, + ) + hole_depth = Column( + Float, nullable=True, info={"unit": "feet below ground surface"} + ) + well_type = lexicon_term() + # e.g., "Production", "Observation", etc. + # + well_casing_diameter = Column(Float, info={"unit": "inches"}) + well_casing_depth = Column(Float, info={"unit": "feet below ground surface"}) + well_casing_description = Column(String(50)) + + well_construction_notes = Column(String(250)) + + # Spring fields + + search_vector = Column( + TSVectorType( + "name", "well_construction_notes", "well_type", "well_casing_description" + ) + ) + + samples = relationship( + "Sample", back_populates="thing", cascade="all, delete-orphan", uselist=True + ) + + +class ThingIdLink(Base, AutoBaseMixin, ReleaseMixin): + """ + Represents a link associated with a Thing. + """ + + thing_id = mapped_column(Integer, ForeignKey("thing.id", ondelete="CASCADE")) + relation = lexicon_term(nullable=False) + alternate_id = mapped_column(String(100), nullable=False) + alternate_organization = lexicon_term(nullable=False) + + thing = relationship("Thing", backref="links") + + +class WellScreen(Base, AutoBaseMixin, ReleaseMixin): + thing_id: Mapped[int] = mapped_column( + ForeignKey("thing.id", ondelete="CASCADE"), nullable=False + ) + screen_depth_top: Mapped[float] = mapped_column( + info={"unit": "feet below ground surface"}, nullable=True + ) + screen_depth_bottom: Mapped[float] = mapped_column( + info={"unit": "feet below ground surface"}, nullable=True + ) + screen_type: Mapped[str] = lexicon_term(nullable=True) # e.g., "PVC", "Steel", etc. + + screen_description: Mapped[str] = mapped_column( + String(1000), info={"unit": "description of the screen"}, nullable=True + ) + nma_pk_wellscreens: Mapped[str] = mapped_column(String(100), nullable=True) + + # Define a relationship to well if needed + thing: Mapped["Thing"] = relationship("Thing") + + +# TODO: this could be the model used to handle AMP monitoring +# class FieldSamplingAdministation(Base, AutoBaseMixin): +# # the thing being monitored +# thing_id: Mapped[int] = mapped_column(Integer, ForeignKey("thing.id", ondelete="CASCADE"), nullable=False) +# +# monitoring_frequency: Mapped[str] = mapped_column(lexicon_term(), nullable=False) +# well_logger_ok: Mapped[bool] = mapped_column(Boolean, nullable=False) +# monitor_ok: Mapped[bool] = mapped_column(Boolean, nullable=False) +# sample_ok: Mapped[bool] = mapped_column(Boolean, nullable=False) + + +# ============= EOF ============================================= diff --git a/db/thing/__init__.py b/db/thing/__init__.py deleted file mode 100644 index b8806c1da..000000000 --- a/db/thing/__init__.py +++ /dev/null @@ -1,20 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from .spring import SpringThing -from .thing import Thing -from .well import WellThing, WellScreen - -# ============= EOF ============================================= diff --git a/db/thing/spring.py b/db/thing/spring.py deleted file mode 100644 index f920e228d..000000000 --- a/db/thing/spring.py +++ /dev/null @@ -1,32 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import Column, String, Integer, ForeignKey -from sqlalchemy.orm import relationship - -from db.base import Base, AutoBaseMixin - - -class SpringThing(Base, AutoBaseMixin): - description = Column(String(255), nullable=True) - location_id = Column( - Integer, ForeignKey("location.id", ondelete="CASCADE"), nullable=False - ) - - # Define a relationship to samplelocations if needed - location = relationship("Location") - - -# ============= EOF ============================================= diff --git a/db/thing/thing.py b/db/thing/thing.py deleted file mode 100644 index d839cf401..000000000 --- a/db/thing/thing.py +++ /dev/null @@ -1,38 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import Integer, ForeignKey, String -from sqlalchemy.ext.associationproxy import association_proxy -from sqlalchemy.orm import relationship -from sqlalchemy.testing.schema import mapped_column - -from db.base import AutoBaseMixin, Base - - -class Thing(Base, AutoBaseMixin): - asset_associations = relationship( - "AssetThingAssociation", - back_populates="thing", - cascade="all, delete-orphan", - ) - assets = association_proxy("asset_associations", "asset") - - release_status = mapped_column(String(100), ForeignKey("lexicon_term.term")) - # location_id = mapped_column( - # Integer, ForeignKey("location.id", ondelete="CASCADE"), nullable=False - # ) - - -# ============= EOF ============================================= diff --git a/db/thing/well.py b/db/thing/well.py deleted file mode 100644 index 74f3905c9..000000000 --- a/db/thing/well.py +++ /dev/null @@ -1,87 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from sqlalchemy import Column, Integer, ForeignKey, String, Float -from sqlalchemy.orm import relationship -from sqlalchemy_utils import TSVectorType - -from db.base import Base, AutoBaseMixin - - -class WellThing(Base, AutoBaseMixin): - thing_id = Column( - Integer, ForeignKey("thing.id", ondelete="CASCADE"), nullable=False, unique=True - ) - # location_id = Column( - # Integer, ForeignKey("location.id", ondelete="CASCADE"), nullable=False - # ) - # - # ose_pod_id = Column(String(50), nullable=True) - # api_id = Column(String(50), nullable=True, default="") # API well number - # usgs_id = Column(String(50), nullable=True) # USGS well number - # - well_depth = Column( - Float, - nullable=True, - info={"unit": "feet below ground surface"}, - ) - hole_depth = Column( - Float, nullable=True, info={"unit": "feet below ground surface"} - ) - well_type = Column( - String(100), - ForeignKey("lexicon_term.term"), - nullable=True, - ) # e.g., "Production", "Observation", etc. - # - # casing_diameter = Column(Float, info={"unit": "inches"}) - # casing_depth = Column(Float, info={"unit": "feet below ground surface"}) - # casing_description = Column(String(50)) - construction_notes = Column(String(250)) - # formation_zone = Column(String(100), ForeignKey("lexicon_term.term"), nullable=True) - # - # location = relationship("SampleLocation", backref="well", uselist=False) - # - # search_vector = Column( - # TSVectorType( - # "ose_pod_id", - # "api_id", - # "usgs_id", - # "well_type", - # "formation_zone", - # "construction_notes", - # ) - # ) - - -class WellScreen(Base, AutoBaseMixin): - well_id = Column( - Integer, ForeignKey("well_thing.id", ondelete="CASCADE"), nullable=False - ) - screen_depth_top = Column( - Float, nullable=False, info={"unit": "feet below ground surface"} - ) - screen_depth_bottom = Column( - Float, nullable=False, info={"unit": "feet below ground surface"} - ) - screen_type = Column( - String(100), ForeignKey("lexicon_term.term"), nullable=True - ) # e.g., "PVC", "Steel", etc. - - # Define a relationship to well if needed - # well = relationship("Well") - - -# ============= EOF ============================================= diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 000000000..ebce2102d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,35 @@ +# keep docker-compose.yml in root directory to configure with root .env + +services: + db: + image: postgis/postgis:17-3.5 + platform: linux/amd64 + environment: + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} + - POSTGRES_DB=${POSTGRES_DB} + ports: + - 5432:5432 + volumes: + - postgres_data:/var/lib/postgresql/data + + app: + build: + context: . + dockerfile: ./docker/app/Dockerfile + environment: + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} + - POSTGRES_DB=${POSTGRES_DB} + - POSTGRES_HOST=db + ports: + - 8000:8000 + depends_on: + - db + links: + - db + volumes: + - .:/app + +volumes: + postgres_data: \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index 51b1f8c5c..000000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,222 +0,0 @@ -# =========================================================================== -# Tools -ARG GO_VERSION=1.22.4 -FROM golang:${GO_VERSION}-alpine AS tools - -ENV TOOLS_VERSION 0.8.1 - -RUN apk update && apk add --no-cache git gcc musl-dev \ - && go install github.com/timescale/timescaledb-tune/cmd/timescaledb-tune@latest \ - && go install github.com/timescale/timescaledb-parallel-copy/cmd/timescaledb-parallel-copy@latest -# =========================================================================== - -#ARG BASE_IMAGE=postgres:17-alpine3.22 -FROM postgres:17-alpine3.22 - -#LABEL maintainer="PostGIS Project - https://postgis.net" \ -# org.opencontainers.image.description="PostGIS 3.5.2+dfsg-1.pgdg110+1 spatial database extension with PostgreSQL 17 bullseye" \ -# org.opencontainers.image.source="https://github.com/postgis/docker-postgis" - -ENV POSTGIS_MAJOR 3 -ENV POSTGIS_VERSION 3.5.2+dfsg-1.pgdg110+1 - -ARG ALPINE_VERSION=3.21 -ARG CLANG_VERSION=19 -ARG PG_MAJOR=17 -ARG PG_VERSION=17 -ARG PG_MAJOR_VERSION=17 -ARG PGVECTOR_VERSION='v0.7.2' - - -#LABEL maintainer="PostGIS Project - https://postgis.net" \ -# org.opencontainers.image.description="PostGIS 3.5.3 spatial database extension with PostgreSQL 17 Alpine" \ -# org.opencontainers.image.source="https://github.com/postgis/docker-postgis" - -ENV POSTGIS_VERSION 3.5.3 -ENV POSTGIS_SHA256 44222ed2b8f742ffc1ceb429b09ebb484c7880f9ba27bf7b6b197346cdd25437 - -RUN set -eux \ - && apk add --no-cache --virtual .fetch-deps \ - ca-certificates \ - openssl \ - tar \ - \ - && wget -O postgis.tar.gz "https://github.com/postgis/postgis/archive/${POSTGIS_VERSION}.tar.gz" \ - && echo "${POSTGIS_SHA256} *postgis.tar.gz" | sha256sum -c - \ - && mkdir -p /usr/src/postgis \ - && tar \ - --extract \ - --file postgis.tar.gz \ - --directory /usr/src/postgis \ - --strip-components 1 \ - && rm postgis.tar.gz \ - \ - && apk add --no-cache --virtual .build-deps \ - \ - gdal-dev \ - geos-dev \ - proj-dev \ - proj-util \ - sfcgal-dev \ - \ - # The upstream variable, '$DOCKER_PG_LLVM_DEPS' contains - # the correct versions of 'llvm-dev' and 'clang' for the current version of PostgreSQL. - # This improvement has been discussed in https://github.com/docker-library/postgres/pull/1077 - $DOCKER_PG_LLVM_DEPS \ - \ - autoconf \ - automake \ - cunit-dev \ - file \ - g++ \ - gcc \ - gettext-dev \ - git \ - json-c-dev \ - libtool \ - libxml2-dev \ - make \ - pcre2-dev \ - perl \ - protobuf-c-dev \ - \ -# build PostGIS - with Link Time Optimization (LTO) enabled - && cd /usr/src/postgis \ - && gettextize \ - && ./autogen.sh \ - && ./configure \ - --enable-lto \ - && make -j$(nproc) \ - && make install \ - \ -# This section is for refreshing the proj data for the regression tests. -# It serves as a workaround for an issue documented at https://trac.osgeo.org/postgis/ticket/5316 -# This increases the Docker image size by about 1 MB. - && projsync --system-directory --file ch_swisstopo_CHENyx06_ETRS \ - && projsync --system-directory --file us_noaa_eshpgn \ - && projsync --system-directory --file us_noaa_prvi \ - && projsync --system-directory --file us_noaa_wmhpgn \ -# This section performs a regression check. - && mkdir /tempdb \ - && chown -R postgres:postgres /tempdb \ - && su postgres -c 'pg_ctl -D /tempdb init' \ - && su postgres -c 'pg_ctl -D /tempdb -c -l /tmp/logfile -o '-F' start ' \ - && cd regress \ - && make -j$(nproc) check RUNTESTFLAGS="--extension --verbose" PGUSER=postgres \ - \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS postgis;"' \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS postgis_raster;"' \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS postgis_sfcgal;"' \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS fuzzystrmatch; --needed for postgis_tiger_geocoder "' \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS address_standardizer;"' \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS address_standardizer_data_us;"' \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS postgis_tiger_geocoder;"' \ - && su postgres -c 'psql -c "CREATE EXTENSION IF NOT EXISTS postgis_topology;"' \ - && su postgres -c 'psql -t -c "SELECT version();"' >> /_pgis_full_version.txt \ - && su postgres -c 'psql -t -c "SELECT PostGIS_Full_Version();"' >> /_pgis_full_version.txt \ - && su postgres -c 'psql -t -c "\dx"' >> /_pgis_full_version.txt \ - \ - && su postgres -c 'pg_ctl -D /tempdb --mode=immediate stop' \ - && rm -rf /tempdb \ - && rm -rf /tmp/logfile \ - && rm -rf /tmp/pgis_reg \ -# add .postgis-rundeps - && apk add --no-cache --virtual .postgis-rundeps \ - \ - gdal \ - geos \ - proj \ - sfcgal \ - \ - json-c \ - libstdc++ \ - pcre2 \ - protobuf-c \ - \ - # ca-certificates: for accessing remote raster files - # fix https://github.com/postgis/docker-postgis/issues/307 - ca-certificates \ -# clean - && cd / \ - && rm -rf /usr/src/postgis \ - && apk del .fetch-deps .build-deps \ -# At the end of the build, we print the collected information -# from the '/_pgis_full_version.txt' file. This is for experimental and internal purposes. - && cat /_pgis_full_version.txt - - -RUN mkdir -p /docker-entrypoint-initdb.d -COPY ./postgis.d/initdb-postgis.sh /docker-entrypoint-initdb.d/10_postgis.sh -COPY ./postgis.d/update-postgis.sh /usr/local/bin - -#=========================================================================== -# TimescaleDB -ARG OSS_ONLY - -#LABEL maintainer="Timescale https://www.timescale.com" - - -RUN set -ex; \ - echo "https://dl-cdn.alpinelinux.org/alpine/v${ALPINE_VERSION}/community/" >> /etc/apk/repositories; \ - apk update; \ - if [ "$PG_MAJOR_VERSION" -ge 16 ] ; then \ - apk add --no-cache postgresql${PG_VERSION}-plpython3; \ - fi - - - -RUN set -ex; \ - apk update; \ - apk add --no-cache --virtual .vector-deps \ - postgresql${PG_VERSION}-dev \ - git \ - build-base \ - clang${CLANG_VERSION} \ - llvm${CLANG_VERSION}-dev \ - llvm${CLANG_VERSION}; \ - git clone --branch ${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git /build/pgvector; \ - cd /build/pgvector; \ - make; \ - make install; \ - apk del .vector-deps; - -COPY timescaledb.d/* /docker-entrypoint-initdb.d/ -COPY --from=tools /go/bin/* /usr/local/bin/ -#COPY --from=oldversions /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ -#COPY --from=oldversions /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ - -ARG TS_VERSION -RUN set -ex \ - && apk add --no-cache --virtual .fetch-deps \ - ca-certificates \ - git \ - openssl \ - openssl-dev \ - tar \ - && mkdir -p /build/ \ - && git clone https://github.com/timescale/timescaledb /build/timescaledb \ - \ - && apk add --no-cache --virtual .build-deps \ - coreutils \ - dpkg-dev dpkg \ - gcc \ - krb5-dev \ - libc-dev \ - make \ - cmake \ - util-linux-dev \ - \ - # Build current version \ - && cd /build/timescaledb && rm -fr build \ - && git checkout ${TS_VERSION} \ - && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} \ - && cd build && make install \ - && cd ~ \ - \ - && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi \ - && apk del .fetch-deps .build-deps \ - && rm -rf /build \ - && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample - - -LABEL org.opencontainers.image.source="https://github.com/DataIntegrationGroup/NMSampleLocations" diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile new file mode 100644 index 000000000..414203128 --- /dev/null +++ b/docker/app/Dockerfile @@ -0,0 +1,33 @@ +FROM python:3.13-slim AS base + +# install system dependencies for psycopg2 and uv +RUN apt-get update && apt-get install -y curl gcc libpq-dev + +# install curl +RUN apt-get update && apt-get install -y curl + +# install uv (fast dependency manager) +RUN curl -Ls https://astral.sh/uv/install.sh | sh -s -- v0.7.17 && \ + cp /root/.local/bin/uv /usr/local/bin/uv + +# install postgresql client +RUN apt-get update && apt-get install -y postgresql-client + +# set workdir +WORKDIR /app + +# copy the full project source +COPY . . + +# install dependencies using uv +ENV UV_PROJECT_ENVIRONMENT="/usr/local/" +RUN uv sync --locked + +# expose FastAPI's default dev port +EXPOSE 8000 + +# set environment variables for database connection +RUN chmod +x entrypoint.sh + +# default command (run database migrations and the FastAPI development server) +CMD ["sh", "entrypoint.sh"] diff --git a/docker/postgis.d/initdb-postgis.sh b/docker/postgis.d/initdb-postgis.sh deleted file mode 100644 index eb5626334..000000000 --- a/docker/postgis.d/initdb-postgis.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -set -e - -# Perform all actions as $POSTGRES_USER -export PGUSER="$POSTGRES_USER" - -# Create the 'template_postgis' template db -"${psql[@]}" <<- 'EOSQL' -CREATE DATABASE template_postgis IS_TEMPLATE true; -EOSQL - -# Load PostGIS into both template_database and $POSTGRES_DB -for DB in template_postgis "$POSTGRES_DB"; do - echo "Loading PostGIS extensions into $DB" - "${psql[@]}" --dbname="$DB" <<-'EOSQL' - CREATE EXTENSION IF NOT EXISTS postgis; - CREATE EXTENSION IF NOT EXISTS postgis_topology; - -- Reconnect to update pg_setting.resetval - -- See https://github.com/postgis/docker-postgis/issues/288 - \c - CREATE EXTENSION IF NOT EXISTS fuzzystrmatch; - CREATE EXTENSION IF NOT EXISTS postgis_tiger_geocoder; -EOSQL -done \ No newline at end of file diff --git a/docker/postgis.d/update-postgis.sh b/docker/postgis.d/update-postgis.sh deleted file mode 100644 index ff4b2e7cd..000000000 --- a/docker/postgis.d/update-postgis.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -set -e - -# Perform all actions as $POSTGRES_USER -export PGUSER="$POSTGRES_USER" - -POSTGIS_VERSION="${POSTGIS_VERSION%%+*}" - -# Load PostGIS into both template_database and $POSTGRES_DB -for DB in template_postgis "$POSTGRES_DB" "${@}"; do - echo "Updating PostGIS extensions '$DB' to $POSTGIS_VERSION" - psql --dbname="$DB" -c " - -- Upgrade PostGIS (includes raster) - CREATE EXTENSION IF NOT EXISTS postgis VERSION '$POSTGIS_VERSION'; - ALTER EXTENSION postgis UPDATE TO '$POSTGIS_VERSION'; - - -- Upgrade Topology - CREATE EXTENSION IF NOT EXISTS postgis_topology VERSION '$POSTGIS_VERSION'; - ALTER EXTENSION postgis_topology UPDATE TO '$POSTGIS_VERSION'; - - -- Install Tiger dependencies in case not already installed - CREATE EXTENSION IF NOT EXISTS fuzzystrmatch; - -- Upgrade US Tiger Geocoder - CREATE EXTENSION IF NOT EXISTS postgis_tiger_geocoder VERSION '$POSTGIS_VERSION'; - ALTER EXTENSION postgis_tiger_geocoder UPDATE TO '$POSTGIS_VERSION'; - " -done \ No newline at end of file diff --git a/docker/timescaledb.d/000_install_timescaledb.sh b/docker/timescaledb.d/000_install_timescaledb.sh deleted file mode 100644 index 38823021f..000000000 --- a/docker/timescaledb.d/000_install_timescaledb.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -create_sql=`mktemp` - -if [ -z "${POSTGRESQL_CONF_DIR:-}" ]; then - POSTGRESQL_CONF_DIR=${PGDATA} -fi - -cat <${create_sql} -CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE; -EOF - -TS_TELEMETRY='basic' -if [ "${TIMESCALEDB_TELEMETRY:-}" == "off" ]; then - TS_TELEMETRY='off' - - # We delete the job as well to ensure that we do not spam the - # log with other messages related to the Telemetry job. - cat <>${create_sql} -SELECT alter_job(1,scheduled:=false); -EOF -fi - -echo "timescaledb.telemetry_level=${TS_TELEMETRY}" >> ${POSTGRESQL_CONF_DIR}/postgresql.conf - -if [ -z "${POSTGRESQL_PASSWORD:-}" ]; then - POSTGRESQL_PASSWORD=${POSTGRES_PASSWORD:-} -fi -export PGPASSWORD="$POSTGRESQL_PASSWORD" - -# create extension timescaledb in initial databases -psql -U "${POSTGRES_USER}" postgres -f ${create_sql} -psql -U "${POSTGRES_USER}" template1 -f ${create_sql} - -if [ "${POSTGRES_DB:-postgres}" != 'postgres' ]; then - psql -U "${POSTGRES_USER}" "${POSTGRES_DB}" -f ${create_sql} -fi \ No newline at end of file diff --git a/docker/timescaledb.d/001_timescaledb_tune.sh b/docker/timescaledb.d/001_timescaledb_tune.sh deleted file mode 100644 index 95cc6db94..000000000 --- a/docker/timescaledb.d/001_timescaledb_tune.sh +++ /dev/null @@ -1,123 +0,0 @@ -#!/bin/bash - -NO_TS_TUNE=${NO_TS_TUNE:-""} -TS_TUNE_MEMORY=${TS_TUNE_MEMORY:-""} -TS_TUNE_NUM_CPUS=${TS_TUNE_NUM_CPUS:-""} -TS_TUNE_MAX_CONNS=${TS_TUNE_MAX_CONNS:-""} -TS_TUNE_MAX_BG_WORKERS=${TS_TUNE_MAX_BG_WORKERS:-""} -TS_TUNE_WAL_DISK_SIZE=${TS_TUNE_WAL_DISK_SIZE:-""} - -if [ ! -z "${NO_TS_TUNE:-}" ]; then - # The user has explicitly requested not to run timescaledb-tune; exit this script - exit 0 -fi - - -if [ -z "${POSTGRESQL_CONF_DIR:-}" ]; then - POSTGRESQL_CONF_DIR=${PGDATA} -fi - -if [ -z "${TS_TUNE_MEMORY:-}" ]; then - # See if we can get the container's total allocated memory from the cgroups metadata - # Try with cgroups v2 first. - if [ -f /sys/fs/cgroup/cgroup.controllers ]; then - TS_TUNE_MEMORY=$(cat /sys/fs/cgroup/memory.max) - case ${TS_TUNE_MEMORY} in - max) - TS_TUNE_MEMORY="" - ;; - *) - TS_CGROUPS_MAX_MEM=true - ;; - esac - # cgroups v2 is not available, try with cgroups v1 - elif [ -f /sys/fs/cgroup/memory/memory.limit_in_bytes ]; then - TS_TUNE_MEMORY=$(cat /sys/fs/cgroup/memory/memory.limit_in_bytes) - TS_CGROUPS_MAX_MEM=true - fi - if [ "${TS_CGROUPS_MAX_MEM:-false}" != "false" ]; then - if [ "${TS_TUNE_MEMORY}" = "18446744073709551615" ]; then - # Bash seems to error out for numbers greater than signed 64-bit, - # so if the value of limit_in_bytes is the 64-bit UNSIGNED max value - # we should just bail out and hope timescaledb-tune can figure this - # out. If we don't, the next comparison is likely going to fail - # or it might store a negative value which will crash later. - TS_TUNE_MEMORY="" - fi - - FREE_KB=$(grep MemTotal: /proc/meminfo | awk '{print $2}') - FREE_BYTES=$(( ${FREE_KB} * 1024 )) - if [ ${TS_TUNE_MEMORY} -gt ${FREE_BYTES} ]; then - # Something weird is going on if the cgroups memory limit exceeds the total available - # amount of system memory reported by "free", which is the total amount of memory available on the host. - # Most likely, it is this issue: https://github.com/moby/moby/issues/18087 (if no limit is - # set, the max limit is set to the max 64 bit integer). In this case, we just leave - # TS_TUNE_MEMORY blank and let timescaledb-tune derive the memory itself using syscalls. - TS_TUNE_MEMORY="" - else - # Convert the bytes to MB so it plays nicely with timescaledb-tune - TS_TUNE_MEMORY="$(echo ${TS_TUNE_MEMORY} | awk '{print int($1 / 1024 / 1024)}')MB" - fi - fi -fi - -if [ -z "${TS_TUNE_NUM_CPUS:-}" ]; then - # See if we can get the container's available CPUs from the cgroups metadata - # Try with cgroups v2 first. - if [ -f /sys/fs/cgroup/cgroup.controllers ]; then - TS_TUNE_NUM_CPUS=$(cat /sys/fs/cgroup/cpu.max | awk '{print $1}') - if [ "${TS_TUNE_NUM_CPUS}" = "max" ]; then - TS_TUNE_NUM_CPUS="" - else - TS_TUNE_NUM_CPUS_PERIOD=$(cat /sys/fs/cgroup/cpu.max | awk '{print $2}') - fi - # cgroups v2 is not available, try with cgroups v1 - elif [ -f /sys/fs/cgroup/cpu/cpu.cfs_quota_us ]; then - TS_TUNE_NUM_CPUS=$(cat /sys/fs/cgroup/cpu/cpu.cfs_quota_us) - if [ "${TS_TUNE_NUM_CPUS}" = "-1" ]; then - TS_TUNE_NUM_CPUS="" - else - TS_TUNE_NUM_CPUS_PERIOD=$(cat /sys/fs/cgroup/cpu/cpu.cfs_period_us) - fi - fi - - if [ -n "${TS_TUNE_NUM_CPUS}" ]; then - if [ "${TS_TUNE_NUM_CPUS_PERIOD}" != "100000" ]; then - # Detecting cpu via cgroups with modified duration is not supported - TS_TUNE_NUM_CPUS="" - else - # Determine (integer) number of CPUs, rounding up - if [ $(( ${TS_TUNE_NUM_CPUS} % 100000 )) -eq 0 ]; then - TS_TUNE_NUM_CPUS=$(( ${TS_TUNE_NUM_CPUS} / 100000 )) - else - TS_TUNE_NUM_CPUS=$(( ( ${TS_TUNE_NUM_CPUS} / 100000 ) + 1 )) - fi - fi - fi -fi - -if [ ! -z "${TS_TUNE_MEMORY:-}" ]; then - TS_TUNE_MEMORY_FLAGS=--memory="${TS_TUNE_MEMORY}" -fi - -if [ ! -z "${TS_TUNE_NUM_CPUS:-}" ]; then - TS_TUNE_NUM_CPUS_FLAGS=--cpus=${TS_TUNE_NUM_CPUS} -fi - -if [ ! -z "${TS_TUNE_MAX_CONNS:-}" ]; then - TS_TUNE_MAX_CONNS_FLAGS=--max-conns=${TS_TUNE_MAX_CONNS} -fi - -if [ ! -z "${TS_TUNE_MAX_BG_WORKERS:-}" ]; then - TS_TUNE_MAX_BG_WORKERS_FLAGS=--max-bg-workers=${TS_TUNE_MAX_BG_WORKERS} -fi - -if [ ! -z "${TS_TUNE_WAL_DISK_SIZE:-}" ]; then - TS_TUNE_WAL_DISK_SIZE_FLAGS=--wal-disk-size="${TS_TUNE_WAL_DISK_SIZE}" -fi - -if [ ! -z "${PG_MAJOR}" ]; then - TS_TUNE_PG_VERSION=--pg-version=${PG_MAJOR} -fi - -/usr/local/bin/timescaledb-tune --quiet --yes --conf-path="${POSTGRESQL_CONF_DIR}/postgresql.conf" ${TS_TUNE_MEMORY_FLAGS} ${TS_TUNE_NUM_CPUS_FLAGS} ${TS_TUNE_MAX_CONNS_FLAGS} ${TS_TUNE_MAX_BG_WORKERS_FLAGS} ${TS_TUNE_WAL_DISK_SIZE_FLAGS} ${TS_TUNE_PG_VERSION} \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 000000000..662487618 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,12 @@ +#!/bin/sh +# Wait for PostgreSQL to be ready +until PGPASSWORD="$POSTGRES_PASSWORD" pg_isready -h db -p 5432 -U "$POSTGRES_USER"; do + echo "Waiting for postgres..." + sleep 2 +done +echo "PostgreSQL is ready!" + +echo "Applying migrations..." +alembic upgrade head +echo "Starting the application..." +uvicorn main:app --host 0.0.0.0 --port 8000 --reload \ No newline at end of file diff --git a/main.py b/main.py index d8aa529b8..7a4f3cbcb 100644 --- a/main.py +++ b/main.py @@ -1,56 +1,72 @@ import os +import sentry_sdk +from dotenv import load_dotenv +from starlette.middleware.base import BaseHTTPMiddleware +from uvicorn.middleware.proxy_headers import ProxyHeadersMiddleware + +load_dotenv() + +sentry_sdk.init( + dsn=os.environ.get("SENTRY_DSN"), + # Set traces_sample_rate to 1.0 to capture 100% + # of transactions for performance monitoring. + traces_sample_rate=1.0, + # Set profiles_sample_rate to 1.0 to profile 100% + # of sampled transactions. + # We recommend adjusting this value in production. + profiles_sample_rate=1.0, + # Set profile_lifecycle to "trace" to automatically + # run the profiler on when there is an active transaction + profile_lifecycle="trace", + # Add data like request headers and IP for users, + # see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info + send_default_pii=True, +) -from fastapi_pagination import add_pagination -os.environ["ADMIN_USER_MODEL"] = "User" -os.environ["ADMIN_USER_MODEL_USERNAME_FIELD"] = "username" -os.environ["ADMIN_SECRET_KEY"] = "secret" +from fastapi_pagination import add_pagination from starlette.middleware.cors import CORSMiddleware from core.app import app -from fastadmin import fastapi_app as admin_app - -from api.base import router as base_router +from api.group import router as group_router +from api.contact import router as contact_router from api.location import router as location_router from api.thing import router as thing_router from api.sensor import router as sensor_router -from api.form import router as form_router +# from api.series import router as series_router +from api.sample import router as sample_router +from api.observation import router as observation_router + +# from api.form import router as form_router -# from api.sample import router as sample_xrouter from api.lexicon import router as lexicon_router -# from api.chemisty import router as chemistry_router from api.geothermal import router as geothermal_router -from api.collabnet import router as collabnet_router from api.geochronology import router as geochronology_router from api.publication import router as publication_router from api.author import router as author_router from api.asset import router as asset_router +from api.search import router as search_router +from api.geospatial import router as geospatial_router - -app.include_router(base_router) -app.include_router(location_router) -app.include_router(thing_router) -app.include_router(sensor_router) - -app.include_router(form_router) -# app.include_router(sample_router) -app.include_router(lexicon_router) -# app.include_router(chemistry_router) -app.include_router(geothermal_router) -app.include_router(collabnet_router) +app.include_router(asset_router) +app.include_router(author_router) +app.include_router(contact_router) app.include_router(geochronology_router) +app.include_router(geospatial_router) +app.include_router(geothermal_router) +app.include_router(group_router) +app.include_router(lexicon_router) +app.include_router(location_router) +app.include_router(observation_router) app.include_router(publication_router) -app.include_router(author_router) -app.include_router(asset_router) - -from admin.user import * -from admin.base import * - -app.mount("/admin", admin_app) +app.include_router(sample_router) +app.include_router(sensor_router) +app.include_router(search_router) +app.include_router(thing_router) app.add_middleware( diff --git a/manage.py b/manage.py index e9d556be1..95b693058 100644 --- a/manage.py +++ b/manage.py @@ -13,14 +13,38 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from core.app import init_lexicon +from dotenv import load_dotenv + +load_dotenv() import click +from core.initializers import init_lexicon +from db.engine import session_ctx + + +# from migration.migration2 import migrate_wells, migrate_water_levels +# +# +# def wells(): +# with session_ctx() as sess: +# migrate_wells(sess, 1000) +# +# +# def waterlevels(): +# with session_ctx() as sess: +# migrate_water_levels(sess, 800) +@click.group() +def cli(): + """Command line interface for managing the application.""" + pass -@click.command() +@cli.command() def initialize_lexicon(): init_lexicon() +if __name__ == "__main__": + cli() + # ============= EOF ============================================= diff --git a/migration/migration.py b/migration/migration.py deleted file mode 100644 index 8773b609b..000000000 --- a/migration/migration.py +++ /dev/null @@ -1,169 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -import numpy as np -import pandas as pd -import pyproj -from shapely import Point -from shapely.ops import transform -from sqlalchemy.exc import ProgrammingError - -from db.engine import get_db_session -from db.all_models import * -from db.thing.well import WellThing -from services.lexicon import add_lexicon_term - -TRANSFORMERS = {} - - -def transform_srid(geometry, source_srid, target_srid): - """ - geometry must be a shapely geometry object, like Point, Polygon, or MultiPolygon - """ - transformer_key = (source_srid, target_srid) - if transformer_key not in TRANSFORMERS: - source_crs = pyproj.CRS(f"EPSG:{source_srid}") - target_crs = pyproj.CRS(f"EPSG:{target_srid}") - transformer = pyproj.Transformer.from_crs( - source_crs, target_crs, always_xy=True - ) - TRANSFORMERS[transformer_key] = transformer - else: - transformer = TRANSFORMERS[transformer_key] - return transform(transformer.transform, geometry) - - -def extract_locations(): - """ - Extracts location data from the database. - This function should connect to the database and retrieve location data. - """ - df = pd.read_csv("data/location.csv") - df = df[df["SiteType"] == "GW"] - df = df[df["Easting"].notna() & df["Northing"].notna()] - return df - - -def extract_wells(): - """ - Extracts well data from the database. - This function should connect to the database and retrieve well data. - """ - df = pd.read_csv("data/welldata.csv") - return df - - -def transform_locations(df): - return df - - -def transform_wells(df): - # cover nans to nulls - df = df.replace(pd.NA, None) - df = df.replace({np.nan: None}) - - return df - - -def load_locations(sess, df): - for row in df.itertuples(): - # Convert the row to a dictionary - row_dict = row._asdict() - - e, n = row_dict["Easting"], row_dict["Northing"] - - point = Point(e, n) - transformed_point = transform_srid( - point, source_srid=26913, target_srid=4326 # WGS84 SRID - ) - - sl = Location( - name=row_dict["PointID"], - point=transformed_point.wkt, - visible=row_dict["PublicRelease"], - ) - - sess.add(sl) - try: - sess.commit() # Commit the changes to the database - except ProgrammingError: - print(f"skipping row due to ProgrammingError. {row_dict['PointID']}") - sess.rollback() - # Remove the index from the dictionary - - -def load_wells(sess, df): - - # print(df.head()) - n = len(df) - - for i, row in enumerate(df.itertuples()): - if not i % 100: - print(f"Processing row {i} of {n}") - - row_dict = row._asdict() - - location = ( - sess.query(Location).filter_by(name=row_dict["PointID"]).one_or_none() - ) - - if location: - well = WellThing() - well.location = location - well.well_depth = row_dict["WellDepth"] - well.hole_depth = row_dict["HoleDepth"] - well.ose_pod_id = row_dict["OSEWellID"] - well.casing_depth = row_dict["CasingDepth"] - well.casing_diameter = row_dict["CasingDiameter"] - well.casing_description = row_dict["CasingDescription"] - - wt = row_dict["Meaning"] - - add_lexicon_term( - sess, wt, "Current use of the well, aka well type", "current_use" - ) - - well.well_type = wt - - # print(row_dict) - sess.add(well) - sess.commit() - # break - - -def location_etl(sess): - """ - Extract, Transform, Load (ETL) process for location data. - """ - df = extract_locations() - df = transform_locations(df) - load_locations(sess, df) - - -def well_etl(sess): - """ - Extract, Transform, Load (ETL) process for well data. - """ - df = extract_wells() - df = transform_wells(df) - load_wells(sess, df) - - -if __name__ == "__main__": - session = next(get_db_session()) - # location_etl(session) - well_etl(session) - session.close() -# ============= EOF ============================================= diff --git a/pyproject.toml b/pyproject.toml index 5e153b015..b94fd7de9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,31 +5,100 @@ description = "Add your description here" readme = "README.md" requires-python = ">=3.13" dependencies = [ - "aiosqlite>=0.21.0", - "alembic>=1.16.1", - "asyncpg>=0.30.0", - "bcrypt>=4.3.0", - "cloud-sql-python-connector>=1.18.2", - "email-validator>=2.2.0", - "fastadmin>=0.2.22", - "fastapi>=0.115.12", - "fastapi-pagination>=0.13.2", - "geoalchemy2>=0.17.1", - "google-cloud-storage>=3.1.1", - "greenlet>=3.2.2", - "gunicorn>=23.0.0", - "httpx>=0.28.1", - "pandas>=2.3.0", - "pg8000>=1.31.2", - "phonenumbers>=9.0.7", - "pillow>=11.2.1", - "psycopg2>=2.9.10", - "pyproj>=3.7.1", - "pyshp>=2.3.1", - "python-multipart>=0.0.20", - "shapely>=2.1.1", - "sqlalchemy-searchable>=2.1.0", - "uvicorn>=0.34.3", + "aiofiles==24.1.0", + "aiohappyeyeballs==2.6.1", + "aiohttp==3.12.15", + "aiosignal==1.4.0", + "aiosqlite==0.21.0", + "alembic==1.16.4", + "annotated-types==0.7.0", + "anyio==4.10.0", + "asgiref==3.9.1", + "asn1crypto==1.5.1", + "asyncpg==0.30.0", + "attrs==25.3.0", + "authlib>=1.6.0", + "bcrypt==4.3.0", + "cachetools==5.5.2", + "certifi==2025.8.3", + "cffi==1.17.1", + "charset-normalizer==3.4.3", + "click==8.2.1", + "cloud-sql-python-connector==1.18.4", + "cryptography==45.0.6", + "dnspython==2.7.0", + "dotenv>=0.9.9", + "email-validator==2.2.0", + "fastapi==0.116.1", + "fastapi-pagination==0.14.0", + "frozenlist==1.7.0", + "geoalchemy2==0.18.0", + "google-api-core==2.25.1", + "google-auth==2.40.3", + "google-cloud-core==2.4.3", + "google-cloud-storage==3.3.0", + "google-crc32c==1.7.1", + "google-resumable-media==2.7.2", + "googleapis-common-protos==1.70.0", + "greenlet==3.2.4", + "gunicorn==23.0.0", + "h11==0.16.0", + "httpcore==1.0.9", + "httpx==0.28.1", + "idna==3.10", + "iniconfig==2.1.0", + "itsdangerous>=2.2.0", + "jinja2>=3.1.6", + "mako==1.3.10", + "markupsafe==3.0.2", + "multidict==6.6.3", + "numpy==2.3.2", + "packaging==25.0", + "pact-python>=2.3.3", + "pandas==2.3.2", + "pandas-stubs==2.3.0.250703", + "pg8000==1.31.4", + "phonenumbers==9.0.13", + "pillow==11.3.0", + "pluggy==1.6.0", + "pre-commit==4.3.0", + "propcache==0.3.2", + "proto-plus==1.26.1", + "protobuf==6.32.0", + "psycopg2-binary>=2.9.10", + "pyasn1==0.6.1", + "pyasn1-modules==0.4.2", + "pycparser==2.22", + "pydantic==2.11.7", + "pydantic-core==2.33.2", + "pygments==2.19.2", + "pyjwt==2.10.1", + "pyproj==3.7.2", + "pyshp==2.3.1", + "pytest==8.4.1", + "pytest-cov>=6.2.1", + "python-dateutil==2.9.0.post0", + "python-jose>=3.5.0", + "python-multipart==0.0.20", + "pytz==2025.2", + "requests==2.32.5", + "rsa==4.9.1", + "scramp==1.4.6", + "sentry-sdk[fastapi]>=2.35.0", + "shapely==2.1.1", + "six==1.17.0", + "sniffio==1.3.1", + "sqlalchemy==2.0.43", + "sqlalchemy-continuum==1.4.2", + "sqlalchemy-searchable==2.1.0", + "sqlalchemy-utils==0.42.0", + "starlette==0.47.3", + "typing-extensions==4.15.0", + "typing-inspection==0.4.1", + "tzdata==2025.2", + "urllib3==2.5.0", + "uvicorn==0.35.0", + "yarl==1.20.1", ] [tool.alembic] @@ -53,6 +122,7 @@ prepend_sys_path = [ [dependency-groups] dev = [ "pytest>=8.4.0", + "python-dotenv>=1.1.1", ] # timezone to use when rendering the date within the migration file diff --git a/requirements.txt b/requirements.txt index 35e72d84b..017f04110 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,80 +1,1132 @@ -aiofiles==24.1.0 -aiohappyeyeballs==2.6.1 -aiohttp==3.12.13 -aiosignal==1.3.2 -aiosqlite==0.21.0 -alembic==1.16.1 -annotated-types==0.7.0 -anyio==4.9.0 -asgiref==3.8.1 -asn1crypto==1.5.1 -asyncpg==0.30.0 -attrs==25.3.0 -bcrypt==4.3.0 -cachetools==5.5.2 -certifi==2025.4.26 -cffi==1.17.1 -charset-normalizer==3.4.2 -click==8.2.1 -cloud-sql-python-connector==1.18.2 -cryptography==45.0.4 -dnspython==2.7.0 -email-validator==2.2.0 -fastadmin==0.2.22 -fastapi==0.115.12 -fastapi-pagination==0.13.2 -frozenlist==1.7.0 -geoalchemy2==0.17.1 -google-api-core==2.25.1 -google-auth==2.40.3 -google-cloud-core==2.4.3 -google-cloud-storage==3.1.1 -google-crc32c==1.7.1 -google-resumable-media==2.7.2 -googleapis-common-protos==1.70.0 -greenlet==3.2.2 -gunicorn==23.0.0 -h11==0.16.0 -httpcore==1.0.9 -httpx==0.28.1 -idna==3.10 -iniconfig==2.1.0 -mako==1.3.10 -markupsafe==3.0.2 -multidict==6.6.3 -numpy==2.3.0 -packaging==25.0 -pg8000==1.31.2 -phonenumbers==9.0.7 -pillow==11.3.0 -pluggy==1.6.0 -propcache==0.3.2 -proto-plus==1.26.1 -protobuf==6.31.1 -psycopg2==2.9.10 -pyasn1==0.6.1 -pyasn1-modules==0.4.2 -pycparser==2.22 -pydantic==2.11.5 -pydantic-core==2.33.2 -pygments==2.19.1 -pyjwt==2.10.1 -pyshp==2.3.1 -pytest==8.4.0 -python-dateutil==2.9.0.post0 -python-multipart==0.0.20 -requests==2.32.4 -rsa==4.9.1 -scramp==1.4.5 -shapely==2.1.1 -six==1.17.0 -sniffio==1.3.1 -sqlalchemy==2.0.41 -sqlalchemy-searchable==2.1.0 -sqlalchemy-utils==0.41.2 -starlette==0.46.2 -typing-extensions==4.14.0 -typing-inspection==0.4.1 -urllib3==2.5.0 -uvicorn==0.34.3 -yarl==1.20.1 +# This file was autogenerated by uv via the following command: +# uv export --format requirements-txt +aiofiles==24.1.0 \ + --hash=sha256:22a075c9e5a3810f0c2e48f3008c94d68c65d763b9b03857924c99e57355166c \ + --hash=sha256:b4ec55f4195e3eb5d7abd1bf7e061763e864dd4954231fb8539a0ef8bb8260e5 + # via + # cloud-sql-python-connector + # nmsamplelocations +aiohappyeyeballs==2.6.1 \ + --hash=sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558 \ + --hash=sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8 + # via + # aiohttp + # nmsamplelocations +aiohttp==3.12.15 \ + --hash=sha256:049ec0360f939cd164ecbfd2873eaa432613d5e77d6b04535e3d1fbae5a9e645 \ + --hash=sha256:1a649001580bdb37c6fdb1bebbd7e3bc688e8ec2b5c6f52edbb664662b17dc84 \ + --hash=sha256:2ee8a8ac39ce45f3e55663891d4b1d15598c157b4d494a4613e704c8b43112cd \ + --hash=sha256:3eae49032c29d356b94eee45a3f39fdf4b0814b397638c2f718e96cfadf4c4e4 \ + --hash=sha256:47f6b962246f0a774fbd3b6b7be25d59b06fdb2f164cf2513097998fc6a29693 \ + --hash=sha256:4fc61385e9c98d72fcdf47e6dd81833f47b2f77c114c29cd64a361be57a763a2 \ + --hash=sha256:5346b93e62ab51ee2a9d68e8f73c7cf96ffb73568a23e683f931e52450e4148d \ + --hash=sha256:5fa5d9eb82ce98959fc1031c28198b431b4d9396894f385cb63f1e2f3f20ca6b \ + --hash=sha256:760fb7db442f284996e39cf9915a94492e1896baac44f06ae551974907922b64 \ + --hash=sha256:894261472691d6fe76ebb7fcf2e5870a2ac284c7406ddc95823c8598a1390f0d \ + --hash=sha256:9b2af240143dd2765e0fb661fd0361a1b469cab235039ea57663cda087250ea9 \ + --hash=sha256:9f922ffd05034d439dde1c77a20461cf4a1b0831e6caa26151fe7aa8aaebc315 \ + --hash=sha256:ac77f709a2cde2cc71257ab2d8c74dd157c67a0558a0d2799d5d571b4c63d44d \ + --hash=sha256:ad702e57dc385cae679c39d318def49aef754455f237499d5b99bea4ef582e51 \ + --hash=sha256:b52dcf013b57464b6d1e51b627adfd69a8053e84b7103a7cd49c030f9ca44461 \ + --hash=sha256:b97752ff12cc12f46a9b20327104448042fce5c33a624f88c18f66f9368091c7 \ + --hash=sha256:f0fa751efb11a541f57db59c1dd821bec09031e01452b2b6217319b3a1f34f3d \ + --hash=sha256:f813c3e9032331024de2eb2e32a88d86afb69291fbc37a3a3ae81cc9917fb3d0 + # via + # cloud-sql-python-connector + # nmsamplelocations +aiosignal==1.4.0 \ + --hash=sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e \ + --hash=sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7 + # via + # aiohttp + # nmsamplelocations +aiosqlite==0.21.0 \ + --hash=sha256:131bb8056daa3bc875608c631c678cda73922a2d4ba8aec373b19f18c17e7aa3 \ + --hash=sha256:2549cf4057f95f53dcba16f2b64e8e2791d7e1adedb13197dd8ed77bb226d7d0 + # via nmsamplelocations +alembic==1.16.4 \ + --hash=sha256:b05e51e8e82efc1abd14ba2af6392897e145930c3e0a2faf2b0da2f7f7fd660d \ + --hash=sha256:efab6ada0dd0fae2c92060800e0bf5c1dc26af15a10e02fb4babff164b4725e2 + # via nmsamplelocations +annotated-types==0.7.0 \ + --hash=sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 \ + --hash=sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89 + # via + # nmsamplelocations + # pydantic +anyio==4.10.0 \ + --hash=sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6 \ + --hash=sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1 + # via + # httpx + # nmsamplelocations + # starlette +asgiref==3.9.1 \ + --hash=sha256:a5ab6582236218e5ef1648f242fd9f10626cfd4de8dc377db215d5d5098e3142 \ + --hash=sha256:f3bba7092a48005b5f5bacd747d36ee4a5a61f4a269a6df590b43144355ebd2c + # via nmsamplelocations +asn1crypto==1.5.1 \ + --hash=sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c \ + --hash=sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67 + # via + # nmsamplelocations + # scramp +asyncpg==0.30.0 \ + --hash=sha256:04ff0785ae7eed6cc138e73fc67b8e51d54ee7a3ce9b63666ce55a0bf095f7ba \ + --hash=sha256:05b185ebb8083c8568ea8a40e896d5f7af4b8554b64d7719c0eaa1eb5a5c3a70 \ + --hash=sha256:46973045b567972128a27d40001124fbc821c87a6cade040cfcd4fa8a30bcdc4 \ + --hash=sha256:9110df111cabc2ed81aad2f35394a00cadf4f2e0635603db6ebbd0fc896f46a4 \ + --hash=sha256:9b6fde867a74e8c76c71e2f64f80c64c0f3163e687f1763cfaf21633ec24ec33 \ + --hash=sha256:ae374585f51c2b444510cdf3595b97ece4f233fde739aa14b50e0d64e8a7a590 \ + --hash=sha256:c47806b1a8cbb0a0db896f4cd34d89942effe353a5035c62734ab13b9f938da3 \ + --hash=sha256:c551e9928ab6707602f44811817f82ba3c446e018bfe1d3abecc8ba5f3eac851 \ + --hash=sha256:f59b430b8e27557c3fb9869222559f7417ced18688375825f8f12302c34e915e + # via nmsamplelocations +attrs==25.3.0 \ + --hash=sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3 \ + --hash=sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b + # via + # aiohttp + # nmsamplelocations +authlib==1.6.1 \ + --hash=sha256:4dffdbb1460ba6ec8c17981a4c67af7d8af131231b5a36a88a1e8c80c111cdfd \ + --hash=sha256:e9d2031c34c6309373ab845afc24168fe9e93dc52d252631f52642f21f5ed06e + # via nmsamplelocations +bcrypt==4.3.0 \ + --hash=sha256:0042b2e342e9ae3d2ed22727c1262f76cc4f345683b5c1715f0250cf4277294f \ + --hash=sha256:0142b2cb84a009f8452c8c5a33ace5e3dfec4159e7735f5afe9a4d50a8ea722d \ + --hash=sha256:08bacc884fd302b611226c01014eca277d48f0a05187666bca23aac0dad6fe24 \ + --hash=sha256:0d3efb1157edebfd9128e4e46e2ac1a64e0c1fe46fb023158a407c7892b0f8c3 \ + --hash=sha256:0e30e5e67aed0187a1764911af023043b4542e70a7461ad20e837e94d23e1d6c \ + --hash=sha256:12fa6ce40cde3f0b899729dbd7d5e8811cb892d31b6f7d0334a1f37748b789fd \ + --hash=sha256:17a854d9a7a476a89dcef6c8bd119ad23e0f82557afbd2c442777a16408e614f \ + --hash=sha256:191354ebfe305e84f344c5964c7cd5f924a3bfc5d405c75ad07f232b6dffb49f \ + --hash=sha256:2ef6630e0ec01376f59a006dc72918b1bf436c3b571b80fa1968d775fa02fe7d \ + --hash=sha256:3004df1b323d10021fda07a813fd33e0fd57bef0e9a480bb143877f6cba996fe \ + --hash=sha256:335a420cfd63fc5bc27308e929bee231c15c85cc4c496610ffb17923abf7f231 \ + --hash=sha256:33752b1ba962ee793fa2b6321404bf20011fe45b9afd2a842139de3011898fef \ + --hash=sha256:3a3fd2204178b6d2adcf09cb4f6426ffef54762577a7c9b54c159008cb288c18 \ + --hash=sha256:3b8d62290ebefd49ee0b3ce7500f5dbdcf13b81402c05f6dafab9a1e1b27212f \ + --hash=sha256:3e36506d001e93bffe59754397572f21bb5dc7c83f54454c990c74a468cd589e \ + --hash=sha256:41261d64150858eeb5ff43c753c4b216991e0ae16614a308a15d909503617732 \ + --hash=sha256:50e6e80a4bfd23a25f5c05b90167c19030cf9f87930f7cb2eacb99f45d1c3304 \ + --hash=sha256:531457e5c839d8caea9b589a1bcfe3756b0547d7814e9ce3d437f17da75c32b0 \ + --hash=sha256:584027857bc2843772114717a7490a37f68da563b3620f78a849bcb54dc11e62 \ + --hash=sha256:59e1aa0e2cd871b08ca146ed08445038f42ff75968c7ae50d2fdd7860ade2180 \ + --hash=sha256:5bd3cca1f2aa5dbcf39e2aa13dd094ea181f48959e1071265de49cc2b82525af \ + --hash=sha256:5c1949bf259a388863ced887c7861da1df681cb2388645766c89fdfd9004c669 \ + --hash=sha256:62f26585e8b219cdc909b6a0069efc5e4267e25d4a3770a364ac58024f62a761 \ + --hash=sha256:67a561c4d9fb9465ec866177e7aebcad08fe23aaf6fbd692a6fab69088abfc51 \ + --hash=sha256:6fb1fd3ab08c0cbc6826a2e0447610c6f09e983a281b919ed721ad32236b8b23 \ + --hash=sha256:74a8d21a09f5e025a9a23e7c0fd2c7fe8e7503e4d356c0a2c1486ba010619f09 \ + --hash=sha256:79e70b8342a33b52b55d93b3a59223a844962bef479f6a0ea318ebbcadf71505 \ + --hash=sha256:7a4be4cbf241afee43f1c3969b9103a41b40bcb3a3f467ab19f891d9bc4642e4 \ + --hash=sha256:7c03296b85cb87db865d91da79bf63d5609284fc0cab9472fdd8367bbd830753 \ + --hash=sha256:842d08d75d9fe9fb94b18b071090220697f9f184d4547179b60734846461ed59 \ + --hash=sha256:864f8f19adbe13b7de11ba15d85d4a428c7e2f344bac110f667676a0ff84924b \ + --hash=sha256:97eea7408db3a5bcce4a55d13245ab3fa566e23b4c67cd227062bb49e26c585d \ + --hash=sha256:afe327968aaf13fc143a56a3360cb27d4ad0345e34da12c7290f1b00b8fe9a8b \ + --hash=sha256:b4d4e57f0a63fd0b358eb765063ff661328f69a04494427265950c71b992a39a \ + --hash=sha256:beeefe437218a65322fbd0069eb437e7c98137e08f22c4660ac2dc795c31f8bb \ + --hash=sha256:c5eeac541cefd0bb887a371ef73c62c3cd78535e4887b310626036a7c0a817bb \ + --hash=sha256:d9af79d322e735b1fc33404b5765108ae0ff232d4b54666d46730f8ac1a43676 \ + --hash=sha256:e53e074b120f2877a35cc6c736b8eb161377caae8925c17688bd46ba56daaa5b \ + --hash=sha256:e965a9c1e9a393b8005031ff52583cedc15b7884fce7deb8b0346388837d6cfe \ + --hash=sha256:f01e060f14b6b57bbb72fc5b4a83ac21c443c9a2ee708e04a10e9192f90a6281 \ + --hash=sha256:f1e3ffa1365e8702dc48c8b360fef8d7afeca482809c5e45e653af82ccd088c1 \ + --hash=sha256:f6746e6fec103fcd509b96bacdfdaa2fbde9a553245dbada284435173a6f1aef \ + --hash=sha256:f81b0ed2639568bf14749112298f9e4e2b28853dab50a8b357e31798686a036d + # via nmsamplelocations +cachetools==5.5.2 \ + --hash=sha256:1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4 \ + --hash=sha256:d26a22bcc62eb95c3beabd9f1ee5e820d3d2704fe2967cbe350e20c8ffcd3f0a + # via + # google-auth + # nmsamplelocations +certifi==2025.8.3 \ + --hash=sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407 \ + --hash=sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5 + # via + # httpcore + # httpx + # nmsamplelocations + # pyproj + # requests + # sentry-sdk +cffi==1.17.1 \ + --hash=sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2 \ + --hash=sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824 \ + --hash=sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed \ + --hash=sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683 \ + --hash=sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9 \ + --hash=sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4 \ + --hash=sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3 \ + --hash=sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd \ + --hash=sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5 \ + --hash=sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d \ + --hash=sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e \ + --hash=sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a + # via + # cryptography + # nmsamplelocations +cfgv==3.4.0 \ + --hash=sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9 \ + --hash=sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560 + # via pre-commit +charset-normalizer==3.4.3 \ + --hash=sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe \ + --hash=sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc \ + --hash=sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa \ + --hash=sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9 \ + --hash=sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d \ + --hash=sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92 \ + --hash=sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31 \ + --hash=sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15 \ + --hash=sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f \ + --hash=sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8 \ + --hash=sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0 \ + --hash=sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927 \ + --hash=sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce \ + --hash=sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14 \ + --hash=sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c \ + --hash=sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096 \ + --hash=sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db \ + --hash=sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5 \ + --hash=sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce \ + --hash=sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049 \ + --hash=sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a \ + --hash=sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef \ + --hash=sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16 \ + --hash=sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9 + # via + # nmsamplelocations + # requests +click==8.2.1 \ + --hash=sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202 \ + --hash=sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b + # via + # nmsamplelocations + # uvicorn +cloud-sql-python-connector==1.18.4 \ + --hash=sha256:0a77a16ab2d93fc78d8593175cb69fedfbc1c67aa99f9b3ba70b5026343db092 \ + --hash=sha256:dd2b015245d77771b5e7566e2817e279e9daca90e0cf30dac032155e813afe76 + # via nmsamplelocations +colorama==0.4.6 ; sys_platform == 'win32' \ + --hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \ + --hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + # via + # click + # pytest +coverage==7.10.2 \ + --hash=sha256:0100b19f230df72c90fdb36db59d3f39232391e8d89616a7de30f677da4f532b \ + --hash=sha256:04c74f9ef1f925456a9fd23a7eef1103126186d0500ef9a0acb0bd2514bdc7cc \ + --hash=sha256:11333094c1bff621aa811b67ed794865cbcaa99984dedea4bd9cf780ad64ecba \ + --hash=sha256:12e52b5aa00aa720097d6947d2eb9e404e7c1101ad775f9661ba165ed0a28303 \ + --hash=sha256:14fb5b6641ab5b3c4161572579f0f2ea8834f9d3af2f7dd8fbaecd58ef9175cc \ + --hash=sha256:1a2e934e9da26341d342d30bfe91422bbfdb3f1f069ec87f19b2909d10d8dcc4 \ + --hash=sha256:228946da741558904e2c03ce870ba5efd9cd6e48cbc004d9a27abee08100a15a \ + --hash=sha256:248b5394718e10d067354448dc406d651709c6765669679311170da18e0e9af8 \ + --hash=sha256:2d358f259d8019d4ef25d8c5b78aca4c7af25e28bd4231312911c22a0e824a57 \ + --hash=sha256:2e980e4179f33d9b65ac4acb86c9c0dde904098853f27f289766657ed16e07b3 \ + --hash=sha256:5250bda76e30382e0a2dcd68d961afcab92c3a7613606e6269855c6979a1b0bb \ + --hash=sha256:52d708b5fd65589461381fa442d9905f5903d76c086c6a4108e8e9efdca7a7ed \ + --hash=sha256:5b9d538e8e04916a5df63052d698b30c74eb0174f2ca9cd942c981f274a18eaf \ + --hash=sha256:5c61675a922b569137cf943770d7ad3edd0202d992ce53ac328c5ff68213ccf4 \ + --hash=sha256:5d6e6d84e6dd31a8ded64759626627247d676a23c1b892e1326f7c55c8d61055 \ + --hash=sha256:651015dcd5fd9b5a51ca79ece60d353cacc5beaf304db750407b29c89f72fe2b \ + --hash=sha256:65b451949cb789c346f9f9002441fc934d8ccedcc9ec09daabc2139ad13853f7 \ + --hash=sha256:6eb586fa7d2aee8d65d5ae1dd71414020b2f447435c57ee8de8abea0a77d5074 \ + --hash=sha256:718044729bf1fe3e9eb9f31b52e44ddae07e434ec050c8c628bf5adc56fe4bdd \ + --hash=sha256:71d40b3ac0f26fa9ffa6ee16219a714fed5c6ec197cdcd2018904ab5e75bcfa3 \ + --hash=sha256:75cc1a3f8c88c69bf16a871dab1fe5a7303fdb1e9f285f204b60f1ee539b8fc0 \ + --hash=sha256:81bf6a32212f9f66da03d63ecb9cd9bd48e662050a937db7199dbf47d19831de \ + --hash=sha256:835f39e618099325e7612b3406f57af30ab0a0af350490eff6421e2e5f608e46 \ + --hash=sha256:8f34b09f68bdadec122ffad312154eda965ade433559cc1eadd96cca3de5c824 \ + --hash=sha256:916369b3b914186b2c5e5ad2f7264b02cff5df96cdd7cdad65dccd39aa5fd9f0 \ + --hash=sha256:95db3750dd2e6e93d99fa2498f3a1580581e49c494bddccc6f85c5c21604921f \ + --hash=sha256:95e23987b52d02e7c413bf2d6dc6288bd5721beb518052109a13bfdc62c8033b \ + --hash=sha256:96e5921342574a14303dfdb73de0019e1ac041c863743c8fe1aa6c2b4a257226 \ + --hash=sha256:9c1cd71483ea78331bdfadb8dcec4f4edfb73c7002c1206d8e0af6797853f5be \ + --hash=sha256:9f75dbf4899e29a37d74f48342f29279391668ef625fdac6d2f67363518056a1 \ + --hash=sha256:a3e853cc04987c85ec410905667eed4bf08b1d84d80dfab2684bb250ac8da4f6 \ + --hash=sha256:a7df481e7508de1c38b9b8043da48d94931aefa3e32b47dd20277e4978ed5b95 \ + --hash=sha256:a91e027d66eff214d88d9afbe528e21c9ef1ecdf4956c46e366c50f3094696d0 \ + --hash=sha256:abb57fdd38bf6f7dcc66b38dafb7af7c5fdc31ac6029ce373a6f7f5331d6f60f \ + --hash=sha256:aca7b5645afa688de6d4f8e89d30c577f62956fefb1bad021490d63173874186 \ + --hash=sha256:c2e117e64c26300032755d4520cd769f2623cde1a1d1c3515b05a3b8add0ade1 \ + --hash=sha256:ca07fa78cc9d26bc8c4740de1abd3489cf9c47cc06d9a8ab3d552ff5101af4c0 \ + --hash=sha256:d800705f6951f75a905ea6feb03fff8f3ea3468b81e7563373ddc29aa3e5d1ca \ + --hash=sha256:daaf98009977f577b71f8800208f4d40d4dcf5c2db53d4d822787cdc198d76e1 \ + --hash=sha256:e8415918856a3e7d57a4e0ad94651b761317de459eb74d34cc1bb51aad80f07e \ + --hash=sha256:e96649ac34a3d0e6491e82a2af71098e43be2874b619547c3282fc11d3840a4b \ + --hash=sha256:ea8d8fe546c528535c761ba424410bbeb36ba8a0f24be653e94b70c93fd8a8ca \ + --hash=sha256:f256173b48cc68486299d510a3e729a96e62c889703807482dbf56946befb5c8 \ + --hash=sha256:f287a25a8ca53901c613498e4a40885b19361a2fe8fbfdbb7f8ef2cad2a23f03 \ + --hash=sha256:f35481d42c6d146d48ec92d4e239c23f97b53a3f1fbd2302e7c64336f28641fe \ + --hash=sha256:fe024d40ac31eb8d5aae70215b41dafa264676caa4404ae155f77d2fa95c37bb + # via pytest-cov +cryptography==45.0.6 \ + --hash=sha256:00e8724bdad672d75e6f069b27970883179bd472cd24a63f6e620ca7e41cc0c5 \ + --hash=sha256:048e7ad9e08cf4c0ab07ff7f36cc3115924e22e2266e034450a890d9e312dd74 \ + --hash=sha256:0d9ef57b6768d9fa58e92f4947cea96ade1233c0e236db22ba44748ffedca394 \ + --hash=sha256:18f878a34b90d688982e43f4b700408b478102dd58b3e39de21b5ebf6509c301 \ + --hash=sha256:1b7fa6a1c1188c7ee32e47590d16a5a0646270921f8020efc9a511648e1b2e08 \ + --hash=sha256:20ae4906a13716139d6d762ceb3e0e7e110f7955f3bc3876e3a07f5daadec5f3 \ + --hash=sha256:20d15aed3ee522faac1a39fbfdfee25d17b1284bafd808e1640a74846d7c4d1b \ + --hash=sha256:275ba5cc0d9e320cd70f8e7b96d9e59903c815ca579ab96c1e37278d231fc402 \ + --hash=sha256:2dac5ec199038b8e131365e2324c03d20e97fe214af051d20c49db129844e8b3 \ + --hash=sha256:3436128a60a5e5490603ab2adbabc8763613f638513ffa7d311c900a8349a2a0 \ + --hash=sha256:44647c5d796f5fc042bbc6d61307d04bf29bccb74d188f18051b635f20a9c75f \ + --hash=sha256:550ae02148206beb722cfe4ef0933f9352bab26b087af00e48fdfb9ade35c5b3 \ + --hash=sha256:5b64e668fc3528e77efa51ca70fadcd6610e8ab231e3e06ae2bab3b31c2b8ed9 \ + --hash=sha256:5bd6020c80c5b2b2242d6c48487d7b85700f5e0038e67b29d706f98440d66eb5 \ + --hash=sha256:5c966c732cf6e4a276ce83b6e4c729edda2df6929083a952cc7da973c539c719 \ + --hash=sha256:780c40fb751c7d2b0c6786ceee6b6f871e86e8718a8ff4bc35073ac353c7cd02 \ + --hash=sha256:7a3085d1b319d35296176af31c90338eeb2ddac8104661df79f80e1d9787b8b2 \ + --hash=sha256:833dc32dfc1e39b7376a87b9a6a4288a10aae234631268486558920029b086ec \ + --hash=sha256:d063341378d7ee9c91f9d23b431a3502fc8bfacd54ef0a27baa72a0843b29159 \ + --hash=sha256:e2a21a8eda2d86bb604934b6b37691585bd095c1f788530c1fcefc53a82b3453 \ + --hash=sha256:e40b80ecf35ec265c452eea0ba94c9587ca763e739b8e559c128d23bff7ebbbf \ + --hash=sha256:ea3c42f2016a5bbf71825537c2ad753f2870191134933196bee408aac397b3d9 \ + --hash=sha256:eccddbd986e43014263eda489abbddfbc287af5cddfd690477993dbb31e31016 \ + --hash=sha256:ee411a1b977f40bd075392c80c10b58025ee5c6b47a822a33c1198598a7a5f05 \ + --hash=sha256:f4028f29a9f38a2025abedb2e409973709c660d44319c61762202206ed577c42 + # via + # authlib + # cloud-sql-python-connector + # nmsamplelocations +distlib==0.4.0 \ + --hash=sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16 \ + --hash=sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d + # via virtualenv +dnspython==2.7.0 \ + --hash=sha256:b4c34b7d10b51bcc3a5071e7b8dee77939f1e878477eeecc965e9835f63c6c86 \ + --hash=sha256:ce9c432eda0dc91cf618a5cedf1a4e142651196bbcd2c80e89ed5a907e5cfaf1 + # via + # cloud-sql-python-connector + # email-validator + # nmsamplelocations +dotenv==0.9.9 \ + --hash=sha256:29cf74a087b31dafdb5a446b6d7e11cbce8ed2741540e2339c69fbef92c94ce9 + # via nmsamplelocations +ecdsa==0.19.1 \ + --hash=sha256:30638e27cf77b7e15c4c4cc1973720149e1033827cfd00661ca5c8cc0cdb24c3 \ + --hash=sha256:478cba7b62555866fcb3bb3fe985e06decbdb68ef55713c4e5ab98c57d508e61 + # via python-jose +email-validator==2.2.0 \ + --hash=sha256:561977c2d73ce3611850a06fa56b414621e0c8faa9d66f2611407d87465da631 \ + --hash=sha256:cb690f344c617a714f22e66ae771445a1ceb46821152df8e165c5f9a364582b7 + # via nmsamplelocations +fastapi==0.116.1 \ + --hash=sha256:c46ac7c312df840f0c9e220f7964bada936781bc4e2e6eb71f1c4d7553786565 \ + --hash=sha256:ed52cbf946abfd70c5a0dccb24673f0670deeb517a88b3544d03c2a6bf283143 + # via + # fastapi-pagination + # nmsamplelocations + # sentry-sdk +fastapi-pagination==0.14.0 \ + --hash=sha256:72ed471c79c3aa07940b287b9cf022503ec2e69e1f2ca5a7a5fcd8152cc43392 \ + --hash=sha256:e576800270f2714c781241b66c11f5da24f6671670edc122f5be7e4c2bd7f353 + # via nmsamplelocations +filelock==3.18.0 \ + --hash=sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2 \ + --hash=sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de + # via virtualenv +frozenlist==1.7.0 \ + --hash=sha256:04fb24d104f425da3540ed83cbfc31388a586a7696142004c577fa61c6298c3f \ + --hash=sha256:05579bf020096fe05a764f1f84cd104a12f78eaab68842d036772dc6d4870b4b \ + --hash=sha256:0aa7e176ebe115379b5b1c95b4096fb1c17cce0847402e227e712c27bdb5a949 \ + --hash=sha256:1a85e345b4c43db8b842cab1feb41be5cc0b10a1830e6295b69d7310f99becaf \ + --hash=sha256:2e310d81923c2437ea8670467121cc3e9b0f76d3043cc1d2331d56c7fb7a3a8f \ + --hash=sha256:32dc2e08c67d86d0969714dd484fd60ff08ff81d1a1e40a77dd34a387e6ebc0c \ + --hash=sha256:376b6222d114e97eeec13d46c486facd41d4f43bab626b7c3f6a8b4e81a5192c \ + --hash=sha256:3a14027124ddb70dfcee5148979998066897e79f89f64b13328595c4bdf77c81 \ + --hash=sha256:3bf8010d71d4507775f658e9823210b7427be36625b387221642725b515dcf3e \ + --hash=sha256:3d688126c242a6fabbd92e02633414d40f50bb6002fa4cf995a1d18051525657 \ + --hash=sha256:3fbba20e662b9c2130dc771e332a99eff5da078b2b2648153a40669a6d0e36ca \ + --hash=sha256:4e7e9652b3d367c7bd449a727dc79d5043f48b88d0cbfd4f9f1060cf2b414104 \ + --hash=sha256:52109052b9791a3e6b5d1b65f4b909703984b770694d3eb64fad124c835d7cba \ + --hash=sha256:5fc4df05a6591c7768459caba1b342d9ec23fa16195e744939ba5914596ae3e1 \ + --hash=sha256:6a5c505156368e4ea6b53b5ac23c92d7edc864537ff911d2fb24c140bb175e60 \ + --hash=sha256:6aeac207a759d0dedd2e40745575ae32ab30926ff4fa49b1635def65806fddee \ + --hash=sha256:765bb588c86e47d0b68f23c1bee323d4b703218037765dcf3f25c838c6fecceb \ + --hash=sha256:82d664628865abeb32d90ae497fb93df398a69bb3434463d172b80fc25b0dd7d \ + --hash=sha256:8bd7eb96a675f18aa5c553eb7ddc24a43c8c18f22e1f9925528128c052cdbe00 \ + --hash=sha256:912a7e8375a1c9a68325a902f3953191b7b292aa3c3fb0d71a216221deca460b \ + --hash=sha256:9537c2777167488d539bc5de2ad262efc44388230e5118868e172dd4a552b146 \ + --hash=sha256:9a5af342e34f7e97caf8c995864c7a396418ae2859cc6fdf1b1073020d516a7e \ + --hash=sha256:a47f2abb4e29b3a8d0b530f7c3598badc6b134562b1a5caee867f7c62fee51e3 \ + --hash=sha256:a6f86e4193bb0e235ef6ce3dde5cbabed887e0b11f516ce8a0f4d3b33078ec2d \ + --hash=sha256:acd03d224b0175f5a850edc104ac19040d35419eddad04e7cf2d5986d98427f1 \ + --hash=sha256:b8c05e4c8e5f36e5e088caa1bf78a687528f83c043706640a92cb76cd6999384 \ + --hash=sha256:bd8c4e58ad14b4fa7802b8be49d47993182fdd4023393899632c88fd8cd994eb \ + --hash=sha256:c0303e597eb5a5321b4de9c68e9845ac8f290d2ab3f3e2c864437d3c5a30cd65 \ + --hash=sha256:cbb65198a9132ebc334f237d7b0df163e4de83fb4f2bdfe46c1e654bdb0c5d43 \ + --hash=sha256:d1a81c85417b914139e3a9b995d4a1c84559afc839a93cf2cb7f15e6e5f6ed2d \ + --hash=sha256:dab46c723eeb2c255a64f9dc05b8dd601fde66d6b19cdb82b2e09cc6ff8d8b5d \ + --hash=sha256:e2cdfaaec6a2f9327bf43c933c0319a7c429058e8537c508964a133dffee412e \ + --hash=sha256:ee80eeda5e2a4e660651370ebffd1286542b67e268aa1ac8d6dbe973120ef7ee \ + --hash=sha256:f2038310bc582f3d6a09b3816ab01737d60bf7b1ec70f5356b09e84fb7408ab1 \ + --hash=sha256:f34560fb1b4c3e30ba35fa9a13894ba39e5acfc5f60f57d8accde65f46cc5e74 \ + --hash=sha256:f3f4410a0a601d349dd406b5713fec59b4cee7e71678d5b17edda7f4655a940b + # via + # aiohttp + # aiosignal + # nmsamplelocations +geoalchemy2==0.18.0 \ + --hash=sha256:9a04690cc33fbc580d15c7c028d9b1b1ea08271489730096c7092e1d486c2b7a \ + --hash=sha256:ff0fe7339ba535c50845a2c7e8817a20c164364128991d795733b3c5904b1ee1 + # via nmsamplelocations +google-api-core==2.25.1 \ + --hash=sha256:8a2a56c1fef82987a524371f99f3bd0143702fecc670c72e600c1cda6bf8dbb7 \ + --hash=sha256:d2aaa0b13c78c61cb3f4282c464c046e45fbd75755683c9c525e6e8f7ed0a5e8 + # via + # google-cloud-core + # google-cloud-storage + # nmsamplelocations +google-auth==2.40.3 \ + --hash=sha256:1370d4593e86213563547f97a92752fc658456fe4514c809544f330fed45a7ca \ + --hash=sha256:500c3a29adedeb36ea9cf24b8d10858e152f2412e3ca37829b3fa18e33d63b77 + # via + # cloud-sql-python-connector + # google-api-core + # google-cloud-core + # google-cloud-storage + # nmsamplelocations +google-cloud-core==2.4.3 \ + --hash=sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53 \ + --hash=sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e + # via + # google-cloud-storage + # nmsamplelocations +google-cloud-storage==3.3.0 \ + --hash=sha256:0338ecd6621b3ecacb108f1cf7513ff0d1bca7f1ff4d58e0220b59f3a725ff23 \ + --hash=sha256:ae9d891d53e17d9681d7c4ef1ffeea0cde9bdc53d5b64fa6ff6bf30d1911cf61 + # via nmsamplelocations +google-crc32c==1.7.1 \ + --hash=sha256:0f99eaa09a9a7e642a61e06742856eec8b19fc0037832e03f941fe7cf0c8e4db \ + --hash=sha256:2bff2305f98846f3e825dbeec9ee406f89da7962accdb29356e4eadc251bd472 \ + --hash=sha256:32d1da0d74ec5634a05f53ef7df18fc646666a25efaaca9fc7dcfd4caf1d98c3 \ + --hash=sha256:6b211ddaf20f7ebeec5c333448582c224a7c90a9d98826fbab82c0ddc11348e6 \ + --hash=sha256:905a385140bf492ac300026717af339790921f411c0dfd9aa5a9e69a08ed32eb \ + --hash=sha256:df8b38bdaf1629d62d51be8bdd04888f37c451564c2042d36e5812da9eff3c35 \ + --hash=sha256:e10554d4abc5238823112c2ad7e4560f96c7bf3820b202660373d769d9e6e4c9 \ + --hash=sha256:e42e20a83a29aa2709a0cf271c7f8aefaa23b7ab52e53b322585297bb94d4638 + # via + # google-cloud-storage + # google-resumable-media + # nmsamplelocations +google-resumable-media==2.7.2 \ + --hash=sha256:3ce7551e9fe6d99e9a126101d2536612bb73486721951e9562fee0f90c6ababa \ + --hash=sha256:5280aed4629f2b60b847b0d42f9857fd4935c11af266744df33d8074cae92fe0 + # via + # google-cloud-storage + # nmsamplelocations +googleapis-common-protos==1.70.0 \ + --hash=sha256:0e1b44e0ea153e6594f9f394fef15193a68aaaea2d843f83e2742717ca753257 \ + --hash=sha256:b8bfcca8c25a2bb253e0e0b0adaf8c00773e5e6af6fd92397576680b807e0fd8 + # via + # google-api-core + # nmsamplelocations +greenlet==3.2.4 \ + --hash=sha256:00fadb3fedccc447f517ee0d3fd8fe49eae949e1cd0f6a611818f4f6fb7dc83b \ + --hash=sha256:061dc4cf2c34852b052a8620d40f36324554bc192be474b9e9770e8c042fd735 \ + --hash=sha256:0dca0d95ff849f9a364385f36ab49f50065d76964944638be9691e1832e9f86d \ + --hash=sha256:1a921e542453fe531144e91e1feedf12e07351b1cf6c9e8a3325ea600a715a31 \ + --hash=sha256:23768528f2911bcd7e475210822ffb5254ed10d71f4028387e5a99b4c6699671 \ + --hash=sha256:299fd615cd8fc86267b47597123e3f43ad79c9d8a22bebdce535e53550763e2f \ + --hash=sha256:44358b9bf66c8576a9f57a590d5f5d6e72fa4228b763d0e43fee6d3b06d3a337 \ + --hash=sha256:49a30d5fda2507ae77be16479bdb62a660fa51b1eb4928b524975b3bde77b3c0 \ + --hash=sha256:554b03b6e73aaabec3745364d6239e9e012d64c68ccd0b8430c64ccc14939a8b \ + --hash=sha256:710638eb93b1fa52823aa91bf75326f9ecdfd5e0466f00789246a5280f4ba0fc \ + --hash=sha256:b4a1870c51720687af7fa3e7cda6d08d801dae660f75a76f3845b642b4da6ee1 \ + --hash=sha256:c17b6b34111ea72fc5a4e4beec9711d2226285f0386ea83477cbb97c30a3f3a5 \ + --hash=sha256:c5111ccdc9c88f423426df3fd1811bfc40ed66264d35aa373420a34377efc98a \ + --hash=sha256:cd3c8e693bff0fff6ba55f140bf390fa92c994083f838fece0f63be121334945 \ + --hash=sha256:d25c5091190f2dc0eaa3f950252122edbbadbb682aa7b1ef2f8af0f8c0afefae \ + --hash=sha256:d76383238584e9711e20ebe14db6c88ddcedc1829a9ad31a584389463b5aa504 \ + --hash=sha256:e37ab26028f12dbb0ff65f29a8d3d44a765c61e729647bf2ddfbbed621726f01 + # via + # nmsamplelocations + # sqlalchemy +gunicorn==23.0.0 \ + --hash=sha256:ec400d38950de4dfd418cff8328b2c8faed0edb0d517d3394e457c317908ca4d \ + --hash=sha256:f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec + # via nmsamplelocations +h11==0.16.0 \ + --hash=sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1 \ + --hash=sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86 + # via + # httpcore + # nmsamplelocations + # uvicorn +httpcore==1.0.9 \ + --hash=sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55 \ + --hash=sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8 + # via + # httpx + # nmsamplelocations +httpx==0.28.1 \ + --hash=sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc \ + --hash=sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad + # via nmsamplelocations +identify==2.6.12 \ + --hash=sha256:ad9672d5a72e0d2ff7c5c8809b62dfa60458626352fb0eb7b55e69bdc45334a2 \ + --hash=sha256:d8de45749f1efb108badef65ee8386f0f7bb19a7f26185f74de6367bffbaf0e6 + # via pre-commit +idna==3.10 \ + --hash=sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9 \ + --hash=sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3 + # via + # anyio + # email-validator + # httpx + # nmsamplelocations + # requests + # yarl +iniconfig==2.1.0 \ + --hash=sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7 \ + --hash=sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760 + # via + # nmsamplelocations + # pytest +itsdangerous==2.2.0 \ + --hash=sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef \ + --hash=sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173 + # via nmsamplelocations +jinja2==3.1.6 \ + --hash=sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d \ + --hash=sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67 + # via nmsamplelocations +mako==1.3.10 \ + --hash=sha256:99579a6f39583fa7e5630a28c3c1f440e4e97a414b80372649c0ce338da2ea28 \ + --hash=sha256:baef24a52fc4fc514a0887ac600f9f1cff3d82c61d4d700a1fa84d597b88db59 + # via + # alembic + # nmsamplelocations +markupsafe==3.0.2 \ + --hash=sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9 \ + --hash=sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396 \ + --hash=sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a \ + --hash=sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c \ + --hash=sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c \ + --hash=sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094 \ + --hash=sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5 \ + --hash=sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb \ + --hash=sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c \ + --hash=sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6 \ + --hash=sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd \ + --hash=sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1 \ + --hash=sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d \ + --hash=sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca \ + --hash=sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a \ + --hash=sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe \ + --hash=sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f \ + --hash=sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f \ + --hash=sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0 \ + --hash=sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79 \ + --hash=sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430 + # via + # jinja2 + # mako + # nmsamplelocations +multidict==6.6.3 \ + --hash=sha256:02fd8f32d403a6ff13864b0851f1f523d4c988051eea0471d4f1fd8010f11134 \ + --hash=sha256:135631cb6c58eac37d7ac0df380294fecdc026b28837fa07c02e459c7fb9c54e \ + --hash=sha256:274d416b0df887aef98f19f21578653982cfb8a05b4e187d4a17103322eeaf8f \ + --hash=sha256:2e4cc8d848cd4fe1cdee28c13ea79ab0ed37fc2e89dd77bac86a2e7959a8c3bc \ + --hash=sha256:3713303e4a6663c6d01d648a68f2848701001f3390a030edaaf3fc949c90bf7c \ + --hash=sha256:4ef421045f13879e21c994b36e728d8e7d126c91a64b9185810ab51d474f27e7 \ + --hash=sha256:500b84f51654fdc3944e936f2922114349bf8fdcac77c3092b03449f0e5bc2b3 \ + --hash=sha256:540d3c06d48507357a7d57721e5094b4f7093399a0106c211f33540fdc374d55 \ + --hash=sha256:5633a82fba8e841bc5c5c06b16e21529573cd654f67fd833650a215520a6210e \ + --hash=sha256:639ecc9fe7cd73f2495f62c213e964843826f44505a3e5d82805aa85cac6f89e \ + --hash=sha256:6c1e61bb4f80895c081790b6b09fa49e13566df8fbff817da3f85b3a8192e36b \ + --hash=sha256:70d974eaaa37211390cd02ef93b7e938de564bbffa866f0b08d07e5e65da783d \ + --hash=sha256:798a9eb12dab0a6c2e29c1de6f3468af5cb2da6053a20dfa3344907eed0937cc \ + --hash=sha256:7af039820cfd00effec86bda5d8debef711a3e86a1d3772e85bea0f243a4bd65 \ + --hash=sha256:7c6df517cf177da5d47ab15407143a89cd1a23f8b335f3a28d57e8b0a3dbb884 \ + --hash=sha256:81ef2f64593aba09c5212a3d0f8c906a0d38d710a011f2f42759704d4557d3f2 \ + --hash=sha256:8db10f29c7541fc5da4defd8cd697e1ca429db743fa716325f236079b96f775a \ + --hash=sha256:900eb9f9da25ada070f8ee4a23f884e0ee66fe4e1a38c3af644256a508ad81ca \ + --hash=sha256:94c47ea3ade005b5976789baaed66d4de4480d0a0bf31cef6edaa41c1e7b56a6 \ + --hash=sha256:9c19cea2a690f04247d43f366d03e4eb110a0dc4cd1bbeee4d445435428ed35b \ + --hash=sha256:9e236a7094b9c4c1b7585f6b9cca34b9d833cf079f7e4c49e6a4a6ec9bfdc68f \ + --hash=sha256:9e864486ef4ab07db5e9cb997bad2b681514158d6954dd1958dfb163b83d53e6 \ + --hash=sha256:9f97e181f344a0ef3881b573d31de8542cc0dbc559ec68c8f8b5ce2c2e91646d \ + --hash=sha256:b24576f208793ebae00280c59927c3b7c2a3b1655e443a25f753c4611bc1c373 \ + --hash=sha256:b9cbc60010de3562545fa198bfc6d3825df430ea96d2cc509c39bd71e2e7d648 \ + --hash=sha256:b9fe5a0e57c6dbd0e2ce81ca66272282c32cd11d31658ee9553849d91289e1c1 \ + --hash=sha256:c60b401f192e79caec61f166da9c924e9f8bc65548d4246842df91651e83d600 \ + --hash=sha256:ce8b7693da41a3c4fde5871c738a81490cea5496c671d74374c8ab889e1834fb \ + --hash=sha256:dbc7cf464cc6d67e83e136c9f55726da3a30176f020a36ead246eceed87f1cd8 \ + --hash=sha256:e0cb0ab69915c55627c933f0b555a943d98ba71b4d1c57bc0d0a66e2567c7471 \ + --hash=sha256:e252017a817fad7ce05cafbe5711ed40faeb580e63b16755a3a24e66fa1d87c0 \ + --hash=sha256:e5e8523bb12d7623cd8300dbd91b9e439a46a028cd078ca695eb66ba31adee3c \ + --hash=sha256:e924fb978615a5e33ff644cc42e6aa241effcf4f3322c09d4f8cebde95aff5f8 \ + --hash=sha256:e93089c1570a4ad54c3714a12c2cef549dc9d58e97bcded193d928649cab78e9 \ + --hash=sha256:ef58340cc896219e4e653dade08fea5c55c6df41bcc68122e3be3e9d873d9a7b \ + --hash=sha256:f3aa090106b1543f3f87b2041eef3c156c8da2aed90c63a2fbed62d875c49c37 \ + --hash=sha256:f3fc723ab8a5c5ed6c50418e9bfcd8e6dceba6c271cee6728a10a4ed8561520c \ + --hash=sha256:fc9dc435ec8699e7b602b94fe0cd4703e69273a01cbc34409af29e7820f777f1 + # via + # aiohttp + # nmsamplelocations + # yarl +nodeenv==1.9.1 \ + --hash=sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f \ + --hash=sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9 + # via pre-commit +numpy==2.3.2 \ + --hash=sha256:07b62978075b67eee4065b166d000d457c82a1efe726cce608b9db9dd66a73a5 \ + --hash=sha256:087ffc25890d89a43536f75c5fe8770922008758e8eeeef61733957041ed2f9b \ + --hash=sha256:092aeb3449833ea9c0bf0089d70c29ae480685dd2377ec9cdbbb620257f84631 \ + --hash=sha256:095737ed986e00393ec18ec0b21b47c22889ae4b0cd2d5e88342e08b01141f58 \ + --hash=sha256:0a4f2021a6da53a0d580d6ef5db29947025ae8b35b3250141805ea9a32bbe86b \ + --hash=sha256:11e58218c0c46c80509186e460d79fbdc9ca1eb8d8aee39d8f2dc768eb781089 \ + --hash=sha256:122bf5ed9a0221b3419672493878ba4967121514b1d7d4656a7580cd11dddcbf \ + --hash=sha256:2738534837c6a1d0c39340a190177d7d66fdf432894f469728da901f8f6dc910 \ + --hash=sha256:27c9f90e7481275c7800dc9c24b7cc40ace3fdb970ae4d21eaff983a32f70c91 \ + --hash=sha256:293b2192c6bcce487dbc6326de5853787f870aeb6c43f8f9c6496db5b1781e45 \ + --hash=sha256:448a66d052d0cf14ce9865d159bfc403282c9bc7bb2a31b03cc18b651eca8b1a \ + --hash=sha256:4d002ecf7c9b53240be3bb69d80f86ddbd34078bae04d87be81c1f58466f264e \ + --hash=sha256:4e6ecfeddfa83b02318f4d84acf15fbdbf9ded18e46989a15a8b6995dfbf85ab \ + --hash=sha256:508b0eada3eded10a3b55725b40806a4b855961040180028f52580c4729916a2 \ + --hash=sha256:546aaf78e81b4081b2eba1d105c3b34064783027a06b3ab20b6eba21fb64132b \ + --hash=sha256:5ad4ebcb683a1f99f4f392cc522ee20a18b2bb12a2c1c42c3d48d5a1adc9d3d2 \ + --hash=sha256:66459dccc65d8ec98cc7df61307b64bf9e08101f9598755d42d8ae65d9a7a6ee \ + --hash=sha256:6f1ae3dcb840edccc45af496f312528c15b1f79ac318169d094e85e4bb35fdf1 \ + --hash=sha256:72c6df2267e926a6d5286b0a6d556ebe49eae261062059317837fda12ddf0c1a \ + --hash=sha256:72dbebb2dcc8305c431b2836bcc66af967df91be793d63a24e3d9b741374c450 \ + --hash=sha256:754d6755d9a7588bdc6ac47dc4ee97867271b17cee39cb87aef079574366db0a \ + --hash=sha256:76c3e9501ceb50b2ff3824c3589d5d1ab4ac857b0ee3f8f49629d0de55ecf7c2 \ + --hash=sha256:7d6e390423cc1f76e1b8108c9b6889d20a7a1f59d9a60cac4a050fa734d6c1e2 \ + --hash=sha256:87c930d52f45df092f7578889711a0768094debf73cfcde105e2d66954358125 \ + --hash=sha256:8dc082ea901a62edb8f59713c6a7e28a85daddcb67454c839de57656478f5b19 \ + --hash=sha256:906a30249315f9c8e17b085cc5f87d3f369b35fedd0051d4a84686967bdbbd0b \ + --hash=sha256:938065908d1d869c7d75d8ec45f735a034771c6ea07088867f713d1cd3bbbe4f \ + --hash=sha256:9c144440db4bf3bb6372d2c3e49834cc0ff7bb4c24975ab33e01199e645416f2 \ + --hash=sha256:a3ef07ec8cbc8fc9e369c8dcd52019510c12da4de81367d8b20bc692aa07573a \ + --hash=sha256:a7af9ed2aa9ec5950daf05bb11abc4076a108bd3c7db9aa7251d5f107079b6a6 \ + --hash=sha256:a9f66e7d2b2d7712410d3bc5684149040ef5f19856f20277cd17ea83e5006286 \ + --hash=sha256:af58de8745f7fa9ca1c0c7c943616c6fe28e75d0c81f5c295810e3c83b5be92f \ + --hash=sha256:b05a89f2fb84d21235f93de47129dd4f11c16f64c87c33f5e284e6a3a54e43f2 \ + --hash=sha256:b5e40e80299607f597e1a8a247ff8d71d79c5b52baa11cc1cce30aa92d2da6e0 \ + --hash=sha256:b9d0878b21e3918d76d2209c924ebb272340da1fb51abc00f986c258cd5e957b \ + --hash=sha256:c63d95dc9d67b676e9108fe0d2182987ccb0f11933c1e8959f42fa0da8d4fa56 \ + --hash=sha256:c771cfac34a4f2c0de8e8c97312d07d64fd8f8ed45bc9f5726a7e947270152b5 \ + --hash=sha256:c8d9727f5316a256425892b043736d63e89ed15bbfe6556c5ff4d9d4448ff3b3 \ + --hash=sha256:cefc2219baa48e468e3db7e706305fcd0c095534a192a08f31e98d83a7d45fb0 \ + --hash=sha256:dd937f088a2df683cbb79dda9a772b62a3e5a8a7e76690612c2737f38c6ef1b6 \ + --hash=sha256:de6ea4e5a65d5a90c7d286ddff2b87f3f4ad61faa3db8dabe936b34c2275b6f8 \ + --hash=sha256:e0486a11ec30cdecb53f184d496d1c6a20786c81e55e41640270130056f8ee48 \ + --hash=sha256:efc81393f25f14d11c9d161e46e6ee348637c0a1e8a54bf9dedc472a3fae993b \ + --hash=sha256:f92d6c2a8535dc4fe4419562294ff957f83a16ebdec66df0805e473ffaad8bd0 \ + --hash=sha256:fed5527c4cf10f16c6d0b6bee1f89958bccb0ad2522c8cadc2efd318bcd545f5 + # via + # nmsamplelocations + # pandas + # pandas-stubs + # shapely +packaging==25.0 \ + --hash=sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484 \ + --hash=sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f + # via + # geoalchemy2 + # gunicorn + # nmsamplelocations + # pytest +pandas==2.3.1 \ + --hash=sha256:0a95b9ac964fe83ce317827f80304d37388ea77616b1425f0ae41c9d2d0d7bb2 \ + --hash=sha256:1c78cf43c8fde236342a1cb2c34bcff89564a7bfed7e474ed2fffa6aed03a956 \ + --hash=sha256:2ba6aff74075311fc88504b1db890187a3cd0f887a5b10f5525f8e2ef55bfdb9 \ + --hash=sha256:2f4d6feeba91744872a600e6edbbd5b033005b431d5ae8379abee5bcfa479fab \ + --hash=sha256:5db9637dbc24b631ff3707269ae4559bce4b7fd75c1c4d7e13f40edc42df4444 \ + --hash=sha256:6de8547d4fdb12421e2d047a2c446c623ff4c11f47fddb6b9169eb98ffba485a \ + --hash=sha256:6f3bf5ec947526106399a9e1d26d40ee2b259c66422efdf4de63c848492d91bb \ + --hash=sha256:782647ddc63c83133b2506912cc6b108140a38a37292102aaa19c81c83db2928 \ + --hash=sha256:8dfc17328e8da77be3cf9f47509e5637ba8f137148ed0e9b5241e1baf526e20a \ + --hash=sha256:9026bd4a80108fac2239294a15ef9003c4ee191a0f64b90f170b40cfb7cf2d22 \ + --hash=sha256:911580460fc4884d9b05254b38a6bfadddfcc6aaef856fb5859e7ca202e45275 \ + --hash=sha256:e5635178b387bd2ba4ac040f82bc2ef6e6b500483975c4ebacd34bec945fda12 \ + --hash=sha256:ec6c851509364c59a5344458ab935e6451b31b818be467eb24b0fe89bd05b6b9 \ + --hash=sha256:fe37e757f462d31a9cd7580236a82f353f5713a80e059a29753cf938c6775d96 + # via nmsamplelocations +pandas-stubs==2.3.0.250703 \ + --hash=sha256:a9265fc69909f0f7a9cabc5f596d86c9d531499fed86b7838fd3278285d76b81 \ + --hash=sha256:fb6a8478327b16ed65c46b1541de74f5c5947f3601850caf3e885e0140584717 + # via nmsamplelocations +pg8000==1.31.4 \ + --hash=sha256:d14fb2054642ee80f9a216721892e99e19db60a005358460ffa48872351423d4 \ + --hash=sha256:e7ecce4339891f27b0b22e2f79eb9efe44118bd384207359fc18350f788ace00 + # via nmsamplelocations +phonenumbers==9.0.12 \ + --hash=sha256:900633afc3e12191458d710262df5efc117838bd1e2e613b64fa254a86bb20a1 \ + --hash=sha256:ccadff6b949494bd606836d8c9678bee5b55cb1cbad1e98bf7adae108e6fd0be + # via nmsamplelocations +pillow==11.3.0 \ + --hash=sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2 \ + --hash=sha256:02a723e6bf909e7cea0dac1b0e0310be9d7650cd66222a5f1c571455c0a45214 \ + --hash=sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59 \ + --hash=sha256:068d9c39a2d1b358eb9f245ce7ab1b5c3246c7c8c7d9ba58cfa5b43146c06e50 \ + --hash=sha256:0743841cabd3dba6a83f38a92672cccbd69af56e3e91777b0ee7f4dba4385632 \ + --hash=sha256:0b275ff9b04df7b640c59ec5a3cb113eefd3795a8df80bac69646ef699c6981a \ + --hash=sha256:0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51 \ + --hash=sha256:1019b04af07fc0163e2810167918cb5add8d74674b6267616021ab558dc98ced \ + --hash=sha256:118ca10c0d60b06d006be10a501fd6bbdfef559251ed31b794668ed569c87e12 \ + --hash=sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8 \ + --hash=sha256:155658efb5e044669c08896c0c44231c5e9abcaadbc5cd3648df2f7c0b96b9a6 \ + --hash=sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580 \ + --hash=sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd \ + --hash=sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8 \ + --hash=sha256:2465a69cf967b8b49ee1b96d76718cd98c4e925414ead59fdf75cf0fd07df673 \ + --hash=sha256:2a3117c06b8fb646639dce83694f2f9eac405472713fcb1ae887469c0d4f6788 \ + --hash=sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e \ + --hash=sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8 \ + --hash=sha256:3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523 \ + --hash=sha256:41342b64afeba938edb034d122b2dda5db2139b9a4af999729ba8818e0056477 \ + --hash=sha256:41742638139424703b4d01665b807c6468e23e699e8e90cffefe291c5832b027 \ + --hash=sha256:45dfc51ac5975b938e9809451c51734124e73b04d0f0ac621649821a63852e7b \ + --hash=sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e \ + --hash=sha256:4c96f993ab8c98460cd0c001447bff6194403e8b1d7e149ade5f00594918128b \ + --hash=sha256:59a03cdf019efbfeeed910bf79c7c93255c3d54bc45898ac2a4140071b02b4ae \ + --hash=sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d \ + --hash=sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f \ + --hash=sha256:7966e38dcd0fa11ca390aed7c6f20454443581d758242023cf36fcb319b1a874 \ + --hash=sha256:79ea0d14d3ebad43ec77ad5272e6ff9bba5b679ef73375ea760261207fa8e0aa \ + --hash=sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd \ + --hash=sha256:83e1b0161c9d148125083a35c1c5a89db5b7054834fd4387499e06552035236c \ + --hash=sha256:857844335c95bea93fb39e0fa2726b4d9d758850b34075a7e3ff4f4fa3aa3b31 \ + --hash=sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e \ + --hash=sha256:8924748b688aa210d79883357d102cd64690e56b923a186f35a82cbc10f997db \ + --hash=sha256:93efb0b4de7e340d99057415c749175e24c8864302369e05914682ba642e5d77 \ + --hash=sha256:98a9afa7b9007c67ed84c57c9e0ad86a6000da96eaa638e4f8abe5b65ff83f0a \ + --hash=sha256:a1bc6ba083b145187f648b667e05a2534ecc4b9f2784c2cbe3089e44868f2b9b \ + --hash=sha256:a418486160228f64dd9e9efcd132679b7a02a5f22c982c78b6fc7dab3fefb635 \ + --hash=sha256:a4d336baed65d50d37b88ca5b60c0fa9d81e3a87d4a7930d3880d1624d5b31f3 \ + --hash=sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe \ + --hash=sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805 \ + --hash=sha256:c96d333dcf42d01f47b37e0979b6bd73ec91eae18614864622d9b87bbd5bbf36 \ + --hash=sha256:d9da3df5f9ea2a89b81bb6087177fb1f4d1c7146d583a3fe5c672c0d94e55e12 \ + --hash=sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c \ + --hash=sha256:ee92f2fd10f4adc4b43d07ec5e779932b4eb3dbfbc34790ada5a6669bc095aa6 \ + --hash=sha256:f0f5d8f4a08090c6d6d578351a2b91acf519a54986c055af27e7a93feae6d3f1 \ + --hash=sha256:f8a5827f84d973d8636e9dc5764af4f0cf2318d26744b3d902931701b0d46653 \ + --hash=sha256:f944255db153ebb2b19c51fe85dd99ef0ce494123f21b9db4877ffdfc5590c7c + # via nmsamplelocations +platformdirs==4.3.8 \ + --hash=sha256:3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc \ + --hash=sha256:ff7059bb7eb1179e2685604f4aaf157cfd9535242bd23742eadc3c13542139b4 + # via virtualenv +pluggy==1.6.0 \ + --hash=sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3 \ + --hash=sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746 + # via + # nmsamplelocations + # pytest + # pytest-cov +pre-commit==4.3.0 \ + --hash=sha256:2b0747ad7e6e967169136edffee14c16e148a778a54e4f967921aa1ebf2308d8 \ + --hash=sha256:499fe450cc9d42e9d58e606262795ecb64dd05438943c62b66f6a8673da30b16 + # via nmsamplelocations +propcache==0.3.2 \ + --hash=sha256:03c89c1b14a5452cf15403e291c0ccd7751d5b9736ecb2c5bab977ad6c5bcd81 \ + --hash=sha256:0a2f2235ac46a7aa25bdeb03a9e7060f6ecbd213b1f9101c43b3090ffb971ef6 \ + --hash=sha256:0cc17efde71e12bbaad086d679ce575268d70bc123a5a71ea7ad76f70ba30bba \ + --hash=sha256:156c03d07dc1323d8dacaa221fbe028c5c70d16709cdd63502778e6c3ccca1b0 \ + --hash=sha256:20d7d62e4e7ef05f221e0db2856b979540686342e7dd9973b815599c7057e168 \ + --hash=sha256:261fa020c1c14deafd54c76b014956e2f86991af198c51139faf41c4d5e83892 \ + --hash=sha256:310d11aa44635298397db47a3ebce7db99a4cc4b9bbdfcf6c98a60c8d5261cf1 \ + --hash=sha256:4445542398bd0b5d32df908031cb1b30d43ac848e20470a878b770ec2dcc6330 \ + --hash=sha256:46d7f8aa79c927e5f987ee3a80205c987717d3659f035c85cf0c3680526bdb44 \ + --hash=sha256:4adfb44cb588001f68c5466579d3f1157ca07f7504fc91ec87862e2b8e556b88 \ + --hash=sha256:4c1396592321ac83157ac03a2023aa6cc4a3cc3cfdecb71090054c09e5a7cce3 \ + --hash=sha256:4c181cad81158d71c41a2bce88edce078458e2dd5ffee7eddd6b05da85079f43 \ + --hash=sha256:54e02207c79968ebbdffc169591009f4474dde3b4679e16634d34c9363ff56b4 \ + --hash=sha256:6d8f3f0eebf73e3c0ff0e7853f68be638b4043c65a70517bb575eff54edd8dbe \ + --hash=sha256:74413c0ba02ba86f55cf60d18daab219f7e531620c15f1e23d95563f505efe7e \ + --hash=sha256:7f08f1cc28bd2eade7a8a3d2954ccc673bb02062e3e7da09bc75d843386b342f \ + --hash=sha256:8a08154613f2249519e549de2330cf8e2071c2887309a7b07fb56098f5170a02 \ + --hash=sha256:8a544caaae1ac73f1fecfae70ded3e93728831affebd017d53449e3ac052ac1e \ + --hash=sha256:8cabf5b5902272565e78197edb682017d21cf3b550ba0460ee473753f28d23c1 \ + --hash=sha256:92b69e12e34869a6970fd2f3da91669899994b47c98f5d430b781c26f1d9f387 \ + --hash=sha256:9704bedf6e7cbe3c65eca4379a9b53ee6a83749f047808cbb5044d40d7d72198 \ + --hash=sha256:98f1ec44fb675f5052cccc8e609c46ed23a35a1cfd18545ad4e29002d858a43f \ + --hash=sha256:9a3cf035bbaf035f109987d9d55dc90e4b0e36e04bbbb95af3055ef17194057b \ + --hash=sha256:9ecb0aad4020e275652ba3975740f241bd12a61f1a784df044cf7477a02bc252 \ + --hash=sha256:ab50cef01b372763a13333b4e54021bdcb291fc9a8e2ccb9c2df98be51bcde6c \ + --hash=sha256:acdf05d00696bc0447e278bb53cb04ca72354e562cf88ea6f9107df8e7fd9770 \ + --hash=sha256:ca592ed634a73ca002967458187109265e980422116c0a107cf93d81f95af945 \ + --hash=sha256:d1a342c834734edb4be5ecb1e9fb48cb64b1e2320fccbd8c54bf8da8f2a84c33 \ + --hash=sha256:e41671f1594fc4ab0a6dec1351864713cb3a279910ae8b58f884a88a0a632c05 \ + --hash=sha256:f066b437bb3fa39c58ff97ab2ca351db465157d68ed0440abecb21715eb24b28 \ + --hash=sha256:f1304b085c83067914721e7e9d9917d41ad87696bf70f0bc7dee450e9c71ad0a \ + --hash=sha256:f86e5d7cd03afb3a1db8e9f9f6eff15794e79e791350ac48a8c924e6f439f394 \ + --hash=sha256:fad3b2a085ec259ad2c2842666b2a0a49dea8463579c606426128925af1ed725 \ + --hash=sha256:fd3e6019dc1261cd0291ee8919dd91fbab7b169bb76aeef6c716833a3f65d206 + # via + # aiohttp + # nmsamplelocations + # yarl +proto-plus==1.26.1 \ + --hash=sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66 \ + --hash=sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012 + # via + # google-api-core + # nmsamplelocations +protobuf==6.32.0 \ + --hash=sha256:501fe6372fd1c8ea2a30b4d9be8f87955a64d6be9c88a973996cef5ef6f0abf1 \ + --hash=sha256:75a2aab2bd1aeb1f5dc7c5f33bcb11d82ea8c055c9becbb41c26a8c43fd7092c \ + --hash=sha256:84f9e3c1ff6fb0308dbacb0950d8aa90694b0d0ee68e75719cb044b7078fe741 \ + --hash=sha256:a81439049127067fc49ec1d36e25c6ee1d1a2b7be930675f919258d03c04e7d2 \ + --hash=sha256:a8bdbb2f009cfc22a36d031f22a625a38b615b5e19e558a7b756b3279723e68e \ + --hash=sha256:ba377e5b67b908c8f3072a57b63e2c6a4cbd18aea4ed98d2584350dbf46f2783 \ + --hash=sha256:d52691e5bee6c860fff9a1c86ad26a13afbeb4b168cd4445c922b7e2cf85aaf0 + # via + # google-api-core + # googleapis-common-protos + # nmsamplelocations + # proto-plus +psycopg2-binary==2.9.10 \ + --hash=sha256:230eeae2d71594103cd5b93fd29d1ace6420d0b86f4778739cb1a5a32f607d1f \ + --hash=sha256:245159e7ab20a71d989da00f280ca57da7641fa2cdcf71749c193cea540a74f7 \ + --hash=sha256:26540d4a9a4e2b096f1ff9cce51253d0504dca5a85872c7f7be23be5a53eb18d \ + --hash=sha256:27422aa5f11fbcd9b18da48373eb67081243662f9b46e6fd07c3eb46e4535142 \ + --hash=sha256:3abb691ff9e57d4a93355f60d4f4c1dd2d68326c968e7db17ea96df3c023ef73 \ + --hash=sha256:3c4ded1a24b20021ebe677b7b08ad10bf09aac197d6943bfe6fec70ac4e4690d \ + --hash=sha256:4b3df0e6990aa98acda57d983942eff13d824135fe2250e6522edaa782a06de2 \ + --hash=sha256:8608c078134f0b3cbd9f89b34bd60a943b23fd33cc5f065e8d5f840061bd0673 \ + --hash=sha256:bb89f0a835bcfc1d42ccd5f41f04870c1b936d8507c6df12b7737febc40f0909 \ + --hash=sha256:e217ce4d37667df0bc1c397fdcd8de5e81018ef305aed9415c3b093faaeb10fb \ + --hash=sha256:f0c2d907a1e102526dd2986df638343388b94c33860ff3bbe1384130828714b1 \ + --hash=sha256:f8157bed2f51db683f31306aa497311b560f2265998122abe1dce6428bd86567 + # via nmsamplelocations +pyasn1==0.6.1 \ + --hash=sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629 \ + --hash=sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034 + # via + # nmsamplelocations + # pyasn1-modules + # python-jose + # rsa +pyasn1-modules==0.4.2 \ + --hash=sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a \ + --hash=sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6 + # via + # google-auth + # nmsamplelocations +pycparser==2.22 \ + --hash=sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6 \ + --hash=sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc + # via + # cffi + # nmsamplelocations +pydantic==2.11.7 \ + --hash=sha256:d989c3c6cb79469287b1569f7447a17848c998458d49ebe294e975b9baf0f0db \ + --hash=sha256:dde5df002701f6de26248661f6835bbe296a47bf73990135c7d07ce741b9623b + # via + # fastapi + # fastapi-pagination + # nmsamplelocations +pydantic-core==2.33.2 \ + --hash=sha256:04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56 \ + --hash=sha256:0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef \ + --hash=sha256:0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a \ + --hash=sha256:1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f \ + --hash=sha256:1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916 \ + --hash=sha256:2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a \ + --hash=sha256:52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849 \ + --hash=sha256:5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e \ + --hash=sha256:61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac \ + --hash=sha256:65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162 \ + --hash=sha256:7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc \ + --hash=sha256:95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5 \ + --hash=sha256:9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d \ + --hash=sha256:c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9 \ + --hash=sha256:c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9 \ + --hash=sha256:c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5 \ + --hash=sha256:e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9 \ + --hash=sha256:f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6 + # via + # nmsamplelocations + # pydantic +pygments==2.19.2 \ + --hash=sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887 \ + --hash=sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b + # via + # nmsamplelocations + # pytest +pyjwt==2.10.1 \ + --hash=sha256:3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953 \ + --hash=sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb + # via nmsamplelocations +pyproj==3.7.2 \ + --hash=sha256:1914e29e27933ba6f9822663ee0600f169014a2859f851c054c88cf5ea8a333c \ + --hash=sha256:19466e529b1b15eeefdf8ff26b06fa745856c044f2f77bf0edbae94078c1dfa1 \ + --hash=sha256:237499c7862c578d0369e2b8ac56eec550e391a025ff70e2af8417139dabb41c \ + --hash=sha256:25b0b7cb0042444c29a164b993c45c1b8013d6c48baa61dc1160d834a277e83b \ + --hash=sha256:2aaa328605ace41db050d06bac1adc11f01b71fe95c18661497763116c3a0f02 \ + --hash=sha256:2b617d573be4118c11cd96b8891a0b7f65778fa7733ed8ecdb297a447d439100 \ + --hash=sha256:2da731876d27639ff9d2d81c151f6ab90a1546455fabd93368e753047be344a2 \ + --hash=sha256:35dccbce8201313c596a970fde90e33605248b66272595c061b511c8100ccc08 \ + --hash=sha256:39a0cf1ecc7e282d1d30f36594ebd55c9fae1fda8a2622cee5d100430628f88c \ + --hash=sha256:47d87db2d2c436c5fd0409b34d70bb6cdb875cca2ebe7a9d1c442367b0ab8d59 \ + --hash=sha256:5141a538ffdbe4bfd157421828bb2e07123a90a7a2d6f30fa1462abcfb5ce681 \ + --hash=sha256:55a3610d75023c7b1c6e583e48ef8f62918e85a2ae81300569d9f104d6684bb6 \ + --hash=sha256:5a964da1696b8522806f4276ab04ccfff8f9eb95133a92a25900697609d40112 \ + --hash=sha256:5aff3343038d7426aa5076f07feb88065f50e0502d1b0d7c22ddfdd2c75a3f81 \ + --hash=sha256:77f066626030f41be543274f5ac79f2a511fe89860ecd0914f22131b40a0ec25 \ + --hash=sha256:8115faf2597f281a42ab608ceac346b4eb1383d3b45ab474fd37341c4bf82a67 \ + --hash=sha256:85def3a6388e9ba51f964619aa002a9d2098e77c6454ff47773bb68871024281 \ + --hash=sha256:8c225f5978abd506fd9a78eaaf794435e823c9156091cabaab5374efb29d7f69 \ + --hash=sha256:8d7349182fa622696787cc9e195508d2a41a64765da9b8a6bee846702b9e6220 \ + --hash=sha256:b0552178c61f2ac1c820d087e8ba6e62b29442debddbb09d51c4bf8acc84d888 \ + --hash=sha256:b1bccefec3875ab81eabf49059e2b2ea77362c178b66fd3528c3e4df242f1516 \ + --hash=sha256:b7544e0a3d6339dc9151e9c8f3ea62a936ab7cc446a806ec448bbe86aebb979b \ + --hash=sha256:bb41c29d5f60854b1075853fe80c58950b398d4ebb404eb532536ac8d2834ed7 \ + --hash=sha256:bbbac2f930c6d266f70ec75df35ef851d96fdb3701c674f42fd23a9314573b37 \ + --hash=sha256:c79b9b84c4a626c5dc324c0d666be0bfcebd99f7538d66e8898c2444221b3da7 \ + --hash=sha256:c9b6f1d8ad3e80a0ee0903a778b6ece7dca1d1d40f6d114ae01bc8ddbad971aa \ + --hash=sha256:ceecf374cacca317bc09e165db38ac548ee3cad07c3609442bd70311c59c21aa \ + --hash=sha256:d230b186eb876ed4f29a7c5ee310144c3a0e44e89e55f65fb3607e13f6db337c \ + --hash=sha256:d27b48f0e81beeaa2b4d60c516c3a1cfbb0c7ff6ef71256d8e9c07792f735279 \ + --hash=sha256:d5371ca114d6990b675247355a801925814eca53e6c4b2f1b5c0a956336ee36e \ + --hash=sha256:d9d25bae416a24397e0d85739f84d323b55f6511e45a522dd7d7eae70d10c7e4 \ + --hash=sha256:e258ab4dbd3cf627809067c0ba8f9884ea76c8e5999d039fb37a1619c6c3e1f6 \ + --hash=sha256:f000841e98ea99acbb7b8ca168d67773b0191de95187228a16110245c5d954d5 \ + --hash=sha256:f18c0579dd6be00b970cb1a6719197fceecc407515bab37da0066f0184aafdf3 \ + --hash=sha256:f54d91ae18dd23b6c0ab48126d446820e725419da10617d86a1b69ada6d881d3 \ + --hash=sha256:f7f5133dca4c703e8acadf6f30bc567d39a42c6af321e7f81975c2518f3ed357 \ + --hash=sha256:fc52ba896cfc3214dc9f9ca3c0677a623e8fdd096b257c14a31e719d21ff3fdd + # via nmsamplelocations +pyshp==2.3.1 \ + --hash=sha256:4caec82fd8dd096feba8217858068bacb2a3b5950f43c048c6dc32a3489d5af1 \ + --hash=sha256:67024c0ccdc352ba5db777c4e968483782dfa78f8e200672a90d2d30fd8b7b49 + # via nmsamplelocations +pytest==8.4.1 \ + --hash=sha256:539c70ba6fcead8e78eebbf1115e8b589e7565830d7d006a8723f19ac8a0afb7 \ + --hash=sha256:7c67fd69174877359ed9371ec3af8a3d2b04741818c51e5e99cc1742251fa93c + # via + # nmsamplelocations + # pytest-cov +pytest-cov==6.2.1 \ + --hash=sha256:25cc6cc0a5358204b8108ecedc51a9b57b34cc6b8c967cc2c01a4e00d8a67da2 \ + --hash=sha256:f5bc4c23f42f1cdd23c70b1dab1bbaef4fc505ba950d53e0081d0730dd7e86d5 + # via nmsamplelocations +python-dateutil==2.9.0.post0 \ + --hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \ + --hash=sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + # via + # nmsamplelocations + # pandas + # pg8000 +python-dotenv==1.1.1 \ + --hash=sha256:31f23644fe2602f88ff55e1f5c79ba497e01224ee7737937930c448e4d0e24dc \ + --hash=sha256:a8a6399716257f45be6a007360200409fce5cda2661e3dec71d23dc15f6189ab + # via dotenv +python-jose==3.5.0 \ + --hash=sha256:abd1202f23d34dfad2c3d28cb8617b90acf34132c7afd60abd0b0b7d3cb55771 \ + --hash=sha256:fb4eaa44dbeb1c26dcc69e4bd7ec54a1cb8dd64d3b4d81ef08d90ff453f2b01b + # via nmsamplelocations +python-multipart==0.0.20 \ + --hash=sha256:8a62d3a8335e06589fe01f2a3e178cdcc632f3fbe0d492ad9ee0ec35aab1f104 \ + --hash=sha256:8dd0cab45b8e23064ae09147625994d090fa46f5b0d1e13af944c331a7fa9d13 + # via nmsamplelocations +pytz==2025.2 \ + --hash=sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3 \ + --hash=sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00 + # via + # nmsamplelocations + # pandas +pyyaml==6.0.2 \ + --hash=sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133 \ + --hash=sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484 \ + --hash=sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc \ + --hash=sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1 \ + --hash=sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652 \ + --hash=sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5 \ + --hash=sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563 \ + --hash=sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183 \ + --hash=sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e \ + --hash=sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba + # via pre-commit +requests==2.32.5 \ + --hash=sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6 \ + --hash=sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf + # via + # cloud-sql-python-connector + # google-api-core + # google-cloud-storage + # nmsamplelocations +rsa==4.9.1 \ + --hash=sha256:68635866661c6836b8d39430f97a996acbd61bfa49406748ea243539fe239762 \ + --hash=sha256:e7bdbfdb5497da4c07dfd35530e1a902659db6ff241e39d9953cad06ebd0ae75 + # via + # google-auth + # nmsamplelocations + # python-jose +scramp==1.4.6 \ + --hash=sha256:a0cf9d2b4624b69bac5432dd69fecfc55a542384fe73c3a23ed9b138cda484e1 \ + --hash=sha256:fe055ebbebf4397b9cb323fcc4b299f219cd1b03fd673ca40c97db04ac7d107e + # via + # nmsamplelocations + # pg8000 +sentry-sdk==2.35.0 \ + --hash=sha256:5ea58d352779ce45d17bc2fa71ec7185205295b83a9dbb5707273deb64720092 \ + --hash=sha256:6e0c29b9a5d34de8575ffb04d289a987ff3053cf2c98ede445bea995e3830263 + # via nmsamplelocations +shapely==2.1.1 \ + --hash=sha256:04e4c12a45a1d70aeb266618d8cf81a2de9c4df511b63e105b90bfdfb52146de \ + --hash=sha256:0c062384316a47f776305ed2fa22182717508ffdeb4a56d0ff4087a77b2a0f6d \ + --hash=sha256:1415146fa12d80a47d13cfad5310b3c8b9c2aa8c14a0c845c9d3d75e77cb54f6 \ + --hash=sha256:21fcab88b7520820ec16d09d6bea68652ca13993c84dffc6129dc3607c95594c \ + --hash=sha256:3004a644d9e89e26c20286d5fdc10f41b1744c48ce910bd1867fdff963fe6c48 \ + --hash=sha256:4ecf6c196b896e8f1360cc219ed4eee1c1e5f5883e505d449f263bd053fb8c05 \ + --hash=sha256:500621967f2ffe9642454808009044c21e5b35db89ce69f8a2042c2ffd0e2772 \ + --hash=sha256:69e08bf9697c1b73ec6aa70437db922bafcea7baca131c90c26d59491a9760f9 \ + --hash=sha256:6ca74d851ca5264aae16c2b47e96735579686cb69fa93c4078070a0ec845b8d8 \ + --hash=sha256:8cb8f17c377260452e9d7720eeaf59082c5f8ea48cf104524d953e5d36d4bdb7 \ + --hash=sha256:ab8d878687b438a2f4c138ed1a80941c6ab0029e0f4c785ecfe114413b498a97 \ + --hash=sha256:b640e390dabde790e3fb947198b466e63223e0a9ccd787da5f07bcb14756c28d \ + --hash=sha256:d14a9afa5fa980fbe7bf63706fdfb8ff588f638f145a1d9dbc18374b5b7de913 \ + --hash=sha256:e5ce6a5cc52c974b291237a96c08c5592e50f066871704fb5b12be2639d9026a \ + --hash=sha256:ef2d09d5a964cc90c2c18b03566cf918a61c248596998a0301d5b632beadb9db \ + --hash=sha256:fb00070b4c4860f6743c600285109c273cca5241e970ad56bb87bef0be1ea3a0 \ + --hash=sha256:fd9130501bf42ffb7e0695b9ea17a27ae8ce68d50b56b6941c7f9b3d3453bc52 + # via nmsamplelocations +six==1.17.0 \ + --hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \ + --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81 + # via + # ecdsa + # nmsamplelocations + # python-dateutil +sniffio==1.3.1 \ + --hash=sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2 \ + --hash=sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc + # via + # anyio + # nmsamplelocations +sqlalchemy==2.0.43 \ + --hash=sha256:14111d22c29efad445cd5021a70a8b42f7d9152d8ba7f73304c4d82460946aaa \ + --hash=sha256:1681c21dd2ccee222c2fe0bef671d1aef7c504087c9c4e800371cfcc8ac966fc \ + --hash=sha256:21b27b56eb2f82653168cefe6cb8e970cdaf4f3a6cb2c5e3c3c1cf3158968ff9 \ + --hash=sha256:5d79f9fdc9584ec83d1b3c75e9f4595c49017f5594fee1a2217117647225d738 \ + --hash=sha256:788bfcef6787a7764169cfe9859fe425bf44559619e1d9f56f5bddf2ebf6f417 \ + --hash=sha256:7f1ac7828857fcedb0361b48b9ac4821469f7694089d15550bbcf9ab22564a1d \ + --hash=sha256:971ba928fcde01869361f504fcff3b7143b47d30de188b11c6357c0505824197 \ + --hash=sha256:9c5a9da957c56e43d72126a3f5845603da00e0293720b03bde0aacffcf2dc04f \ + --hash=sha256:9df7126fd9db49e3a5a3999442cc67e9ee8971f3cb9644250107d7296cb2a164 \ + --hash=sha256:e7c08f57f75a2bb62d7ee80a89686a5e5669f199235c6d1dac75cd59374091c3 + # via + # alembic + # geoalchemy2 + # nmsamplelocations + # sqlalchemy-continuum + # sqlalchemy-searchable + # sqlalchemy-utils +sqlalchemy-continuum==1.4.2 \ + --hash=sha256:0fd2be79f718eda47c2206879d92ec4ebf1889364637b3caf3ee5d34bd19c8e3 \ + --hash=sha256:154588d79deb8b1683b5f39c130e6f0ad793c0b2f27e8c210565c23fb6fe74de + # via nmsamplelocations +sqlalchemy-searchable==2.1.0 \ + --hash=sha256:89d120ed1a752d22e32b3f028f62cae571241ccce081df8d8a42e1fa9a53da93 \ + --hash=sha256:a4ef31d6ba60face514563beed6c4a72b5639add67503689e83d5f7d9a6c76ec + # via nmsamplelocations +sqlalchemy-utils==0.41.2 \ + --hash=sha256:85cf3842da2bf060760f955f8467b87983fb2e30f1764fd0e24a48307dc8ec6e \ + --hash=sha256:bc599c8c3b3319e53ce6c5c3c471120bd325d0071fb6f38a10e924e3d07b9990 + # via + # nmsamplelocations + # sqlalchemy-continuum + # sqlalchemy-searchable +starlette==0.47.3 \ + --hash=sha256:6bc94f839cc176c4858894f1f8908f0ab79dfec1a6b8402f6da9be26ebea52e9 \ + --hash=sha256:89c0778ca62a76b826101e7c709e70680a1699ca7da6b44d38eb0a7e61fe4b51 + # via + # fastapi + # nmsamplelocations +types-pytz==2025.2.0.20250809 \ + --hash=sha256:222e32e6a29bb28871f8834e8785e3801f2dc4441c715cd2082b271eecbe21e5 \ + --hash=sha256:4f55ed1b43e925cf851a756fe1707e0f5deeb1976e15bf844bcaa025e8fbd0db + # via pandas-stubs +typing-extensions==4.14.1 \ + --hash=sha256:38b39f4aeeab64884ce9f74c94263ef78f3c22467c8724005483154c26648d36 \ + --hash=sha256:d1e1e3b58374dc93031d6eda2420a48ea44a36c2b4766a4fdeb3710755731d76 + # via + # aiosqlite + # alembic + # fastapi + # fastapi-pagination + # nmsamplelocations + # pydantic + # pydantic-core + # sqlalchemy + # typing-inspection +typing-inspection==0.4.1 \ + --hash=sha256:389055682238f53b04f7badcb49b989835495a96700ced5dab2d8feae4b26f51 \ + --hash=sha256:6ae134cc0203c33377d43188d4064e9b357dba58cff3185f22924610e70a9d28 + # via + # nmsamplelocations + # pydantic +tzdata==2025.2 \ + --hash=sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8 \ + --hash=sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9 + # via + # nmsamplelocations + # pandas +urllib3==2.5.0 \ + --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \ + --hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc + # via + # nmsamplelocations + # requests + # sentry-sdk +uvicorn==0.35.0 \ + --hash=sha256:197535216b25ff9b785e29a0b79199f55222193d47f820816e7da751e9bc8d4a \ + --hash=sha256:bc662f087f7cf2ce11a1d7fd70b90c9f98ef2e2831556dd078d131b96cc94a01 + # via nmsamplelocations +virtualenv==20.32.0 \ + --hash=sha256:2c310aecb62e5aa1b06103ed7c2977b81e042695de2697d01017ff0f1034af56 \ + --hash=sha256:886bf75cadfdc964674e6e33eb74d787dff31ca314ceace03ca5810620f4ecf0 + # via pre-commit +yarl==1.20.1 \ + --hash=sha256:041eaa14f73ff5a8986b4388ac6bb43a77f2ea09bf1913df7a35d4646db69e53 \ + --hash=sha256:0b5ff0fbb7c9f1b1b5ab53330acbfc5247893069e7716840c8e7d5bb7355038a \ + --hash=sha256:11a62c839c3a8eac2410e951301309426f368388ff2f33799052787035793b02 \ + --hash=sha256:14f326acd845c2b2e2eb38fb1346c94f7f3b01a4f5c788f8144f9b630bfff9a3 \ + --hash=sha256:1c92f4390e407513f619d49319023664643d3339bd5e5a56a3bebe01bc67ec04 \ + --hash=sha256:344d1103e9c1523f32a5ed704d576172d2cabed3122ea90b1d4e11fe17c66458 \ + --hash=sha256:377fae2fef158e8fd9d60b4c8751387b8d1fb121d3d0b8e9b0be07d1b41e83dc \ + --hash=sha256:3cf34efa60eb81dd2645a2e13e00bb98b76c35ab5061a3989c7a70f78c85006d \ + --hash=sha256:468f6e40285de5a5b3c44981ca3a319a4b208ccc07d526b20b12aeedcfa654b7 \ + --hash=sha256:495b4ef2fea40596bfc0affe3837411d6aa3371abcf31aac0ccc4bdd64d4ef5c \ + --hash=sha256:49bdd1b8e00ce57e68ba51916e4bb04461746e794e7c4d4bbc42ba2f18297691 \ + --hash=sha256:541d050a355bbbc27e55d906bc91cb6fe42f96c01413dd0f4ed5a5240513874f \ + --hash=sha256:56dac5f452ed25eef0f6e3c6a066c6ab68971d96a9fb441791cad0efba6140d3 \ + --hash=sha256:59174e7332f5d153d8f7452a102b103e2e74035ad085f404df2e40e663a22b28 \ + --hash=sha256:595c07bc79af2494365cc96ddeb772f76272364ef7c80fb892ef9d0649586513 \ + --hash=sha256:66252d780b45189975abfed839616e8fd2dbacbdc262105ad7742c6ae58f3e31 \ + --hash=sha256:67e708dfb8e78d8a19169818eeb5c7a80717562de9051bf2413aca8e3696bf16 \ + --hash=sha256:69ff8439d8ba832d6bed88af2c2b3445977eba9a4588b787b32945871c2444e3 \ + --hash=sha256:6f3eff4cc3f03d650d8755c6eefc844edde99d641d0dcf4da3ab27141a5f8ddf \ + --hash=sha256:793fd0580cb9664548c6b83c63b43c477212c0260891ddf86809e1c06c8b08f1 \ + --hash=sha256:7bdd2f80f4a7df852ab9ab49484a4dee8030023aa536df41f2d922fd57bf023f \ + --hash=sha256:83b8eb083fe4683c6115795d9fc1cfaf2cbbefb19b3a1cb68f6527460f483a77 \ + --hash=sha256:88cab98aa4e13e1ade8c141daeedd300a4603b7132819c484841bb7af3edce9e \ + --hash=sha256:8e0fe9364ad0fddab2688ce72cb7a8e61ea42eff3c7caeeb83874a5d479c896c \ + --hash=sha256:8f64fbf81878ba914562c672024089e3401974a39767747691c65080a67b18c1 \ + --hash=sha256:909313577e9619dcff8c31a0ea2aa0a2a828341d92673015456b3ae492e7317b \ + --hash=sha256:b121ff6a7cbd4abc28985b6028235491941b9fe8fe226e6fdc539c977ea1739d \ + --hash=sha256:c03bfebc4ae8d862f853a9757199677ab74ec25424d0ebd68a0027e9c639a390 \ + --hash=sha256:c7d7f497126d65e2cad8dc5f97d34c27b19199b6414a40cb36b52f41b79014be \ + --hash=sha256:d017a4997ee50c91fd5466cef416231bb82177b93b029906cefc542ce14c35ac \ + --hash=sha256:d1a4fbb50e14396ba3d375f68bfe02215d8e7bc3ec49da8341fe3157f59d2ff5 \ + --hash=sha256:d25ddcf954df1754ab0f86bb696af765c5bfaba39b74095f27eececa049ef9a4 \ + --hash=sha256:e3968ec7d92a0c0f9ac34d5ecfd03869ec0cab0697c91a45db3fbbd95fe1b653 \ + --hash=sha256:f60233b98423aab21d249a30eb27c389c14929f47be8430efa7dbd91493a729d \ + --hash=sha256:f60e4ad5db23f0b96e49c018596707c3ae89f5d0bd97f0ad3684bcbad899f1e7 \ + --hash=sha256:f6342d643bf9a1de97e512e45e4b9560a043347e779a173250824f8b254bd5ce + # via + # aiohttp + # nmsamplelocations diff --git a/schedule b/schedule new file mode 100644 index 000000000..cadb867ef --- /dev/null +++ b/schedule @@ -0,0 +1,9 @@ + + +this is used to add a schedule. +This schedule is used to keeping the api runingl + +gcloud scheduler jobs create http keep-alive-job \ + --schedule="*/10 8-18 * * 1-5" \ + --uri="https://ocotillo-api-dot-waterdatainitiative-271000.appspot.com/_ah/warmup" \ + --http-method=GET \ No newline at end of file diff --git a/schemas/__init__.py b/schemas/__init__.py index dd298bf1a..698dc02dd 100644 --- a/schemas/__init__.py +++ b/schemas/__init__.py @@ -13,10 +13,26 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from pydantic import BaseModel, ConfigDict +from pydantic import BaseModel, ConfigDict, AwareDatetime -class ORMBaseModel(BaseModel): +class ResourceNotFoundResponse(BaseModel): + detail: str + + +class BaseCreateModel(BaseModel): + release_status: str + + +class BaseUpdateModel(BaseCreateModel): + release_status: str | None = None + + +class BaseResponseModel(BaseModel): + id: int # every ORM model should have an id field + created_at: AwareDatetime + release_status: str + model_config = ConfigDict( from_attributes=True, populate_by_name=True, diff --git a/schemas/create/sensor.py b/schemas/asset.py similarity index 59% rename from schemas/create/sensor.py rename to schemas/asset.py index 65ca7b175..c62ab68a5 100644 --- a/schemas/create/sensor.py +++ b/schemas/asset.py @@ -15,20 +15,33 @@ # =============================================================================== from pydantic import BaseModel +from schemas import BaseCreateModel, BaseUpdateModel, BaseResponseModel -class CreateSensor(BaseModel): - """ - Schema for creating a new sensor. - """ +class BaseAsset(BaseModel): name: str - equipment_type: str | None = None - model: str | None = None - serial_no: str | None = None - date_installed: str | None = None # ISO format date string - date_removed: str | None = None # ISO format date string - recording_interval: int | None = None - equipment_notes: str | None = None + label: str | None = None + storage_path: str + mime_type: str + size: int + uri: str + + +# -------- CREATE ---------- +class CreateAsset(BaseCreateModel, BaseAsset): + thing_id: int | None = None + + +# -------- RESPONSE -------- +class AssetResponse(BaseResponseModel, BaseAsset): + storage_service: str + signed_url: str | None = None + + +# -------- UPDATE ---------- +class UpdateAsset(BaseUpdateModel): + name: str | None = None + label: str | None = None # ============= EOF ============================================= diff --git a/schemas/base_create.py b/schemas/base_create.py deleted file mode 100644 index 19bbddb08..000000000 --- a/schemas/base_create.py +++ /dev/null @@ -1,45 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from datetime import datetime - -from schemas import ORMBaseModel - - -class CreateSpring(ORMBaseModel): - """ - Schema for creating a spring. - """ - - location_id: int - - -class CreateEquipment(ORMBaseModel): - """ - Schema for creating equipment. - """ - - location_id: int - - equipment_type: str - model: str | None = None - serial_no: str | None = None - date_installed: datetime | None = None # ISO format date string - date_removed: datetime | None = None # ISO format date string - recording_interval: int | None = None # in seconds - equipment_notes: str | None = None - - -# ============= EOF ============================================= diff --git a/schemas/base_get.py b/schemas/base_get.py deleted file mode 100644 index 1151eafce..000000000 --- a/schemas/base_get.py +++ /dev/null @@ -1,46 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from schemas.base import BaseRecord - - -class GetLocation(BaseRecord): - """ - Schema for a sample location. - """ - - name: str | None = None - description: str | None = None - - -class GetWell(BaseRecord): - """ - Schema for a well. - """ - - id: int - - -class GetGroup(BaseRecord): - """ - Schema for a group. - """ - - id: int - # name: str | None = None - # description: str | None = None - - -# ============= EOF ============================================= diff --git a/schemas/base_responses.py b/schemas/base_responses.py deleted file mode 100644 index d1c9b429b..000000000 --- a/schemas/base_responses.py +++ /dev/null @@ -1,93 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -from schemas import ORMBaseModel - - -class SpringResponse(ORMBaseModel): - """ - Response schema for spring details. - """ - - id: int - location_id: int - description: str | None = None - - -class EquipmentResponse(ORMBaseModel): - """ - Response schema for equipment details. - """ - - id: int - location_id: int - equipment_type: str | None = None - model: str | None = None - serial_no: str | None = None - date_installed: str | None = None # ISO format date string - date_removed: str | None = None # ISO format date string - recording_interval: int | None = None - equipment_notes: str | None = None - - -class PhoneResponse(ORMBaseModel): - """ - Response schema for phone details. - """ - - id: int - phone_number: str - phone_type: str # e.g., 'mobile', 'landline', etc. - - -class EmailResponse(ORMBaseModel): - """ - Response schema for email details. - """ - - id: int - email: str - email_type: str # e.g., 'personal', 'work', etc. - - -class AddressResponse(ORMBaseModel): - """ - Response schema for address details. - """ - - id: int - address_line_1: str - address_line_2: str | None = None - city: str - state: str - postal_code: str - country: str - - -class ContactResponse(ORMBaseModel): - """ - Response schema for contact details. - """ - - id: int - name: str - role: str - emails: list[EmailResponse] = [] - phones: list[PhoneResponse] = [] - addresses: list[AddressResponse] = [] - - -# ============= EOF ============================================= diff --git a/schemas/contact.py b/schemas/contact.py new file mode 100644 index 000000000..22d835240 --- /dev/null +++ b/schemas/contact.py @@ -0,0 +1,271 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from typing import List + +import phonenumbers +from email_validator import validate_email, EmailNotValidError +from phonenumbers import NumberParseException +from pydantic import field_validator, BaseModel, model_validator + +from schemas import BaseResponseModel, BaseCreateModel, BaseUpdateModel +from schemas.thing import ThingResponse + + +# -------- VALIDATORS ---------- + + +class ValidateContact(BaseModel): + name: str | None = None + organization: str | None = None + + @model_validator(mode="before") + def check_empty(data: dict) -> dict: + if ( + data.get("name", "unset") is None + and data.get("organization", "unset") is None + ): + raise ValueError("Either name or organization must be provided.") + return data + + +class ValidateEmail(BaseModel): + + email: str | None = None + + @field_validator("email", check_fields=False) + @classmethod + def validate_email(cls, email: str | None) -> str | None: + if email is not None: + try: + emailinfo = validate_email(email, check_deliverability=False) + return emailinfo.normalized + except EmailNotValidError as e: + raise ValueError(f"Invalid email format. {email}") + + +class ValidatePhone(BaseModel): + + phone_number: str | None = None + + @field_validator("phone_number", check_fields=False) + @classmethod + def validate_phone(cls, phone_number_str: str | None) -> str | None: + if phone_number_str is not None: + region = "US" + try: + parsed_number = phonenumbers.parse(phone_number_str, region) + if phonenumbers.is_valid_number(parsed_number): + formatted_number = phonenumbers.format_number( + parsed_number, phonenumbers.PhoneNumberFormat.E164 + ) + return formatted_number + else: + raise ValueError(f"Invalid phone number. {phone_number_str}") + except NumberParseException as e: + raise ValueError(f"Invalid phone number. {phone_number_str}") + + +# -------- CREATE ---------- +class CreateEmail(BaseCreateModel, ValidateEmail): + """ + Schema for creating an email. + """ + + contact_id: int | None = None # set to None for when made via POST /contact + email: str + email_type: str = "Primary" # Default to 'Primary' + + +class CreatePhone(BaseCreateModel, ValidatePhone): + """ + Schema for creating a phone number. + """ + + contact_id: int | None = None # set to None for when made via POST /contact + phone_number: str + phone_type: str = "Primary" # Default to 'Primary' + + +class CreateAddress(BaseCreateModel): + """ + Schema for creating an address. + """ + + contact_id: int | None = None # set to None for when made via POST /contact + # todo: use a postal API to validate address and suggest corrections + address_line_1: str # Required (e.g., "123 Main St") + address_line_2: str | None = None # Optional (e.g., "Apt 4B", "Suite 200") + city: str + # todo: add validation. Should state be required? what about foreign addresses? + state: str = "NM" # Default to New Mexico + postal_code: str + country: str = "United States" # Default to United States + address_type: str = "Primary" + + +# class CreateThingAssociation(BaseModel): +# """ +# Schema for creating a ContactThingAssociation +# """ + +# contact_id: int +# thing_id: int + + +class CreateContact(BaseCreateModel, ValidateContact): + """ + Schema for creating a contact. + """ + + thing_id: int + name: str | None = None + organization: str | None = None + role: str + contact_type: str = "Primary" + # description: str | None = None + # email: str | None = None + # phone: str | None = None + + emails: list[CreateEmail] | None = None + phones: list[CreatePhone] | None = None + addresses: list[CreateAddress] | None = None + + +# -------- RESPONSE ---------- + + +class BaseItemResponse(BaseResponseModel): + contact_id: int + + +class PhoneResponse(BaseItemResponse): + """ + Response schema for phone details. + """ + + phone_number: str + phone_type: str # e.g., 'mobile', 'landline', etc. + + +class EmailResponse(BaseItemResponse): + """ + Response schema for email details. + """ + + email: str + email_type: str # e.g., 'personal', 'work', etc. + + +class AddressResponse(BaseItemResponse): + """ + Response schema for address details. + """ + + address_line_1: str + address_line_2: str | None = None + city: str + state: str + postal_code: str + country: str + address_type: str + + +class ContactResponse(BaseResponseModel): + """ + Response schema for contact details. + """ + + name: str | None + organization: str | None + role: str + contact_type: str + emails: List[EmailResponse] = [] + phones: List[PhoneResponse] = [] + addresses: List[AddressResponse] = [] + things: List[ThingResponse] = [] # List of related things + + +# class ThingContactAssociationResponse(BaseUpdateModel): +# """ +# Response schema for thing-contact association details. +# """ + +# id: int +# thing_id: int +# contact_id: int + + +# -------- UPDATE ---------- +class UpdateContact(BaseUpdateModel, ValidateContact): + """ + Schema for updating contact information. + """ + + name: str | None = None + role: str | None = None + contact_type: str | None = None + thing_id: int | None = None + organization: str | None = None + # email: str | None = None + # phone: str | None = None + # address: str | None = None + + +class UpdateEmail(BaseUpdateModel, ValidateEmail): + """ + Schema for updating email information. + """ + + contact_id: int | None = None + email: str | None = None + email_type: str | None = None + + +class UpdatePhone(BaseUpdateModel, ValidatePhone): + """ + Schema for updating phone information. + """ + + contact_id: int | None = None + phone_number: str | None = None + phone_type: str | None = None + + +class UpdateAddress(BaseUpdateModel): + """ + Schema for updating address information. + """ + + contact_id: int | None = None + address_line_1: str | None = None + address_line_2: str | None = None + city: str | None = None + state: str | None = None + postal_code: str | None = None + country: str | None = None + address_type: str | None = None + + +# class UpdateThingContactAssociation(BaseUpdateModel): +# """ +# Schema for updating thing-contact association information. +# """ + +# thing_id: int | None = None +# contact_id: int | None = None + + +# ============= EOF ============================================= diff --git a/schemas/create/__init__.py b/schemas/create/__init__.py deleted file mode 100644 index 8e546ddc2..000000000 --- a/schemas/create/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -# ============= EOF ============================================= diff --git a/schemas/create/asset.py b/schemas/create/asset.py deleted file mode 100644 index 934056a0c..000000000 --- a/schemas/create/asset.py +++ /dev/null @@ -1,21 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from typing import Any - -from pydantic import BaseModel - - -# ============= EOF ============================================= diff --git a/schemas/create/chemistry.py b/schemas/create/chemistry.py deleted file mode 100644 index 65b1f9f4c..000000000 --- a/schemas/create/chemistry.py +++ /dev/null @@ -1,36 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from datetime import datetime - -from pydantic import BaseModel - - -# class CreateAnalysisSet(BaseModel): -# well_id: int # mapped_column(Integer, ForeignKey('well.id')) -# laboratory: str | None = None # mapped_column(String(100), nullable=True) -# -# collection_timestamp: datetime -# -# -# class CreateWaterChemistryAnalysis(BaseModel): -# analysis_set_id: int -# value: float -# unit: str -# analyte: str -# analysis_timestamp: datetime | None = None - - -# ============= EOF ============================================= diff --git a/schemas/create/collabnet.py b/schemas/create/collabnet.py deleted file mode 100644 index 2987188c1..000000000 --- a/schemas/create/collabnet.py +++ /dev/null @@ -1,24 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from pydantic import BaseModel - - -class CreateCollaborativeNetworkWell(BaseModel): - well_id: int - actively_monitored: bool = False - - -# ============= EOF ============================================= diff --git a/schemas/create/contact.py b/schemas/create/contact.py deleted file mode 100644 index 7cb85ceb9..000000000 --- a/schemas/create/contact.py +++ /dev/null @@ -1,137 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -import phonenumbers -from email_validator import validate_email, EmailNotValidError -from phonenumbers import NumberParseException -from pydantic import field_validator - -from schemas import ORMBaseModel - - -class CreateEmail(ORMBaseModel): - """ - Schema for creating an email. - """ - - email: str - email_type: str = "Primary" # Default to 'Primary' - - @field_validator("email") - @classmethod - def validate_email(cls, email): - try: - emailinfo = validate_email(email, check_deliverability=False) - return emailinfo.normalized - except EmailNotValidError as e: - raise ValueError(f"Invalid email format. {email}") - - -class CreatePhone(ORMBaseModel): - """ - Schema for creating a phone number. - """ - - phone_number: str - phone_type: str | None = None - - @field_validator("phone_number", mode="before") - @classmethod - def validate_phone(cls, phone_number_str): - region = "US" - try: - parsed_number = phonenumbers.parse(phone_number_str, region) - if phonenumbers.is_valid_number(parsed_number): - formatted_number = phonenumbers.format_number( - parsed_number, phonenumbers.PhoneNumberFormat.E164 - ) - return formatted_number - else: - raise ValueError(f"Invalid phone number. {phone_number_str}") - except NumberParseException as e: - raise ValueError(f"Invalid phone number. {phone_number_str}") - - -class CreateAddress(ORMBaseModel): - """ - Schema for creating an address. - """ - - address_line_1: str # Required (e.g., "123 Main St") - address_line_2: str | None = None # Optional (e.g., "Apt 4B", "Suite 200") - city: str - state: str = "NM" # Default to New Mexico - postal_code: str - country: str = "US" # Default to United States - address_type: str | None = None # Optional (e.g., "Primary", "Billing", "Shipping") - - -class CreateContact(ORMBaseModel): - """ - Schema for creating a contact. - """ - - thing_id: int - name: str - role: str - # description: str | None = None - # email: str | None = None - # phone: str | None = None - - emails: list[CreateEmail] - phones: list[CreatePhone] - addresses: list[CreateAddress] - - -# ============= EOF ============================================= - -# -# -# @field_validator("phone", mode="before") -# @classmethod -# def validate_phone(cls, phone_number_str): -# region = "US" -# try: -# parsed_number = phonenumbers.parse(phone_number_str, region) -# if phonenumbers.is_valid_number(parsed_number): -# # You can also format the number if needed -# formatted_number = phonenumbers.format_number( -# parsed_number, phonenumbers.PhoneNumberFormat.E164 -# ) -# return formatted_number -# else: -# raise ValueError(f"Invalid phone number. {phone_number_str}") -# except NumberParseException as e: -# raise ValueError(f"Invalid phone number. {phone_number_str}") -# -# @field_validator("email") -# @classmethod -# def validate_email(cls, email): -# # try: -# # Check that the email address is valid. Turn on check_deliverability -# # for first-time validations like on account creation pages (but not -# # login pages). -# emailinfo = validate_email(email, check_deliverability=False) -# -# # After this point, use only the normalized form of the email address, -# # especially before going to a database query. -# email = emailinfo.normalized -# return email -# # except EmailNotValidError as e: -# # if v is not None: -# # # Basic email validation -# # if not re.fullmatch(r"[^@]+@[^@]+\.[^@]+", v): -# # raise ValueError(f"Invalid email format. {v}") -# # return v diff --git a/schemas/create/lexicon.py b/schemas/create/lexicon.py deleted file mode 100644 index 52ffc1162..000000000 --- a/schemas/create/lexicon.py +++ /dev/null @@ -1,55 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from pydantic import BaseModel - - -class CreateLexiconTerm(BaseModel): - """ - Pydantic model for creating a lexicon term. - This model can be extended to include additional fields as needed. - """ - - term: str - definition: str - category: str | int | None = None - - -class CreateLexiconCategory(BaseModel): - """ - Pydantic model for creating a lexicon category. - This model can be extended to include additional fields as needed. - """ - - name: str - description: str | None = None - - -class CreateTriple(BaseModel): - """ - Pydantic model for creating a triple. - This model can be extended to include additional fields as needed. - """ - - subject: CreateLexiconTerm - predicate: str - object_: CreateLexiconTerm - - # class Config: - # allow_population_by_field_name = True - # fields = {"object_": "object"} - - -# ============= EOF ============================================= diff --git a/schemas/create/publication.py b/schemas/create/publication.py deleted file mode 100644 index 5a369d2ac..000000000 --- a/schemas/create/publication.py +++ /dev/null @@ -1,33 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from pydantic import BaseModel - - -class CreatePublication(BaseModel): - """ - Schema for creating a new publication. - """ - - title: str - authors: list[str] - year: int - doi: str | None = None - url: str | None = None - - publication_type: str - - -# ============= EOF ============================================= diff --git a/schemas/create/timeseries.py b/schemas/create/timeseries.py deleted file mode 100644 index 85266afc1..000000000 --- a/schemas/create/timeseries.py +++ /dev/null @@ -1,49 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from datetime import datetime - -from pydantic import BaseModel - - -class CreateTimeSeries(BaseModel): - observed_property: str - unit: str - - -class CreateSample(BaseModel): - collection_timestamp: datetime - collection_method: str - well_id: int | None = None - - -class CreateTimeObservation(BaseModel): - timestamp: datetime # ISO 8601 format - value: float - sample_id: int - time_series_id: int - - -# ============= EOF ============================================= -# class CreateWellTimeseries(BaseModel): -# name: str -# description: str | None = None -# well_id: int -# -# -# class CreateGroundwaterLevelObservation(BaseModel): -# timestamp: datetime # ISO 8601 format -# value: float -# timeseries_id: int diff --git a/schemas/create/well.py b/schemas/create/well.py deleted file mode 100644 index 1a25eb41b..000000000 --- a/schemas/create/well.py +++ /dev/null @@ -1,67 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from pydantic import model_validator -from schemas import ORMBaseModel - - -class CreateWell(ORMBaseModel): - """ - Schema for creating a well. - """ - - location_id: int - # api_id: str | None = None - # ose_pod_id: str | None = None - well_type: str | None = None - well_depth: float | None = None # in feet - hole_depth: float | None = None # in feet - construction_notes: str | None = None - - -class CreateWellScreen(ORMBaseModel): - """ - Schema for creating a well screen. - """ - - well_id: int - screen_depth_bottom: float - screen_depth_top: float - screen_type: str | None = None - - @model_validator(mode="after") - def validate_screen_type(self): - if self.screen_type is not None: - valid_screen_types = [ - "PVC", - ] # todo: get valid screen types from database - if self.screen_type not in valid_screen_types: - raise ValueError( - f"Invalid screen_type: {self.screen_type}. " - f"Valid options are: {', '.join(valid_screen_types)}." - ) - return self - - # validate that screen depth bottom is greater than top - @model_validator(mode="after") - def check_depths(self): - if self.screen_depth_bottom < self.screen_depth_top: - raise ValueError( - "screen_depth_bottom must be greater than screen_depth_top" - ) - return self - - -# ============= EOF ============================================= diff --git a/schemas/form.py b/schemas/form.py deleted file mode 100644 index e9666b061..000000000 --- a/schemas/form.py +++ /dev/null @@ -1,123 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from datetime import date -from typing import List - -from pydantic import BaseModel - -from schemas.response.location import SampleLocationResponse - - -class WFLocation(BaseModel): - """ - A class representing a geographic location. - This class is used to validate and process location data. - """ - - point: str # Assuming point is a string representation of a geographic point (e.g., 'POINT(-105.0 40.0)') - # You can add more fields as necessary, such as latitude, longitude, etc. - - -class WFContact(BaseModel): - """ - A class representing a contact information. - This class is used to validate and process contact data. - """ - - name: str - phone: str # Assuming phone is a string representation of a phone number - email: str # Assuming email is a string representation of an email address - # You can add more fields as necessary, such as address, etc. - - -class WFWell(BaseModel): - ose_pod_id: str | None = None # OSE POD well number, optional - api_id: str | None = None # API well number, optional - usgs_id: str | None = None # USGS well number, optional - - well_depth: float | None = None # Depth of the well in feet, optional - hole_depth: float | None = None # Depth of the hole in feet, optional - casing_diameter: float | None = None # Diameter of the casing in inches, optional - casing_depth: float | None = None # Depth of the casing in feet, optional - casing_description: str | None = None # Description of the casing, optional - construction_notes: str | None = None # Construction notes, optional - - -class WFGroup(BaseModel): - name: str - description: str | None = None - - -class WellForm(BaseModel): - """ - A class representing a form for well data submission. - This class is used to validate and process well data submissions. - """ - - location: WFLocation - well: WFWell - groups: List[WFGroup] | None = None # Optional group field - - # Define the fields for the well form - # site_id: str - # depth_to_water_ftbgs: float - # date_measured: str # ISO format date string - # time_measured: str # ISO format time string - # level_status: str - # data_quality: str - # measuring_agency: str - # data_source: str - # measurement_method: str - # measured_by: str - # site_notes: str = None # Optional field - # public_release: bool = True # Default to True - - -class WellFormResponse(BaseModel): - """ - A class representing the response for a well form submission. - This class is used to structure the response data after a successful submission. - """ - - location: SampleLocationResponse - # You can add more fields to the response as necessary, such as status messages, etc. - - -class GroundwaterLevelForm(BaseModel): - """ - A class representing a form for groundwater level data submission. - This class is used to validate and process groundwater level data submissions. - """ - - well_id: int # ID of the well - depth_to_water_bgs: float # Depth to water below ground surface - measurement_date: date # ISO format date string - notes: str | None = None # Optional notes field - - -class GroundwaterLevelFormResponse(BaseModel): - """ - A class representing the response for a groundwater level form submission. - This class is used to structure the response data after a successful submission. - """ - - well_id: int - depth_to_water_bgs: float # Depth to water below ground surface - measurement_date: date # ISO format date string - notes: str | None = None # Optional notes field - - -# ============= EOF ============================================= diff --git a/schemas/create/geochronology.py b/schemas/geochronology.py similarity index 100% rename from schemas/create/geochronology.py rename to schemas/geochronology.py diff --git a/schemas/create/geothermal.py b/schemas/geothermal.py similarity index 100% rename from schemas/create/geothermal.py rename to schemas/geothermal.py diff --git a/schemas/group.py b/schemas/group.py new file mode 100644 index 000000000..49c3a25a4 --- /dev/null +++ b/schemas/group.py @@ -0,0 +1,77 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from geoalchemy2 import WKBElement +from geoalchemy2.shape import to_shape +from pydantic import BaseModel, field_validator, model_validator +from typing_extensions import Self + +from schemas import BaseCreateModel, BaseUpdateModel, BaseResponseModel +from services.validation.geospatial import validate_wkt_geometry + + +class ValidateGroup(BaseModel): + project_area: str | None = None + description: str | None = None + parent_group_id: int | None = None + + @field_validator("project_area") + def validate_area_is_wkt(cls, wkt): + valid_wkt = validate_wkt_geometry(wkt) + if "MULTIPOLYGON" not in valid_wkt: + raise ValueError("WKT must be a valid MULTIPOLYGON") + + return valid_wkt + + +# -------- CREATE ---------- +class CreateGroup(BaseCreateModel, ValidateGroup): + """ + Schema for creating a group. + """ + + name: str + + +# -------- RESPONSE -------- +class GroupResponse(BaseResponseModel): + """ + Pydantic model for the response of a group. + This model can be extended to include additional fields as needed. + """ + + name: str + project_area: str | None + description: str | None + parent_group_id: int | None + + @model_validator(mode="before") + def project_area_to_wkt(self: Self) -> Self: + if isinstance(self.project_area, WKBElement): + self.project_area = to_shape(self.project_area).wkt + return self + + +# -------- UPDATE ---------- +class UpdateGroup(BaseUpdateModel, ValidateGroup): + """ + Pydantic model for updating a group. + This model can be extended to include additional fields as needed. + """ + + name: str | None = None + + +# ============= EOF ============================================= diff --git a/schemas/lexicon.py b/schemas/lexicon.py new file mode 100644 index 000000000..de215ad03 --- /dev/null +++ b/schemas/lexicon.py @@ -0,0 +1,113 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from pydantic import BaseModel, ConfigDict, AwareDatetime +from typing import List + + +# -------- CREATE ---------- +class CreateLexiconCategory(BaseModel): + """ + Pydantic model for creating a lexicon category. + This model can be extended to include additional fields as needed. + """ + + name: str + description: str | None = None + + +class CreateLexiconTerm(BaseModel): + """ + Pydantic model for creating a lexicon term. + This model can be extended to include additional fields as needed. + """ + + term: str + definition: str + categories: list[CreateLexiconCategory] + + +class CreateLexiconTriple(BaseModel): + """ + Pydantic model for creating a triple. + This model can be extended to include additional fields as needed. + """ + + subject: CreateLexiconTerm + predicate: str + object_: CreateLexiconTerm + + +# UPDATE ======================================================================= + + +class UpdateLexiconCategory(BaseModel): + name: str | None = None + description: str | None = None + + +class UpdateLexiconTerm(BaseModel): + term: str | None = None + definition: str | None = None + + +class UpdateLexiconTriple(BaseModel): + subject: str | None = None + predicate: str | None = None + object_: str | None = None + + +# -------- RESPONSE ---------- + + +class BaseLexiconResponse(BaseModel): + id: int + created_at: AwareDatetime + + model_config = ConfigDict( + from_attributes=True, + populate_by_name=True, + ) + + +class LexiconCategoryResponse(BaseLexiconResponse): + """ + Pydantic model for the response of a lexicon category. + This model can be extended to include additional fields as needed. + """ + + name: str + description: str | None = None + # terms: list[LexiconTermResponse] | None = None + + +class LexiconTermResponse(BaseLexiconResponse): + """ + Pydantic model for the response of a lexicon term. + This model can be extended to include additional fields as needed. + """ + + term: str + definition: str + categories: List[LexiconCategoryResponse] = [] + + +class LexiconTripleResponse(BaseLexiconResponse): + subject: str + predicate: str + object_: str + + +# ============= EOF ============================================= diff --git a/schemas/location.py b/schemas/location.py new file mode 100644 index 000000000..d98235108 --- /dev/null +++ b/schemas/location.py @@ -0,0 +1,116 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from geoalchemy2 import WKBElement +from geoalchemy2.shape import to_shape +from pydantic import BaseModel, field_validator + +from schemas import BaseCreateModel, BaseUpdateModel, BaseResponseModel +from services.validation.geospatial import validate_wkt_geometry + +""" +TODO + +Create common validator classes to be shared amongst create and update schemas. +Since many fields are optional in the update schemas set check_fields=False in the field_validator. +""" + + +# -------- CREATE ---------- +class CreateLocation(BaseCreateModel): + """ + Schema for creating a sample location. + """ + + name: str | None = None + notes: str | None = None + point: str # point is required and should be in WKT format + release_status: str | None = "draft" + elevation_accuracy: float | None = None + elevation_method: str | None = None + coordinate_accuracy: float | None = None + coordinate_method: str | None = None + + @classmethod + @field_validator("point") + def validate_point_is_wkt(cls, wkt): + return validate_wkt_geometry(wkt) + + +class CreateGroupThing(BaseModel): + """ + Schema for creating a group location. + """ + + group_id: int + thing_id: int + + +# -------- RESPONSE ---------- +class LocationResponse(BaseResponseModel): + """ + Response schema for sample location details. + """ + + name: str | None + notes: str | None + point: str + release_status: str | None + elevation_accuracy: float | None + elevation_method: str | None + coordinate_accuracy: float | None + coordinate_method: str | None + state: str | None + county: str | None + quad_name: str | None + + @field_validator("point", mode="before") + def point_to_wkt(cls, value): + if isinstance(value, WKBElement): + return to_shape(value).wkt + + # If the value is a string, assume it's already in WKT format + if isinstance(value, str): + return value + + return None + + +class GroupLocationResponse(BaseResponseModel): + """ + Response schema for group location details. + """ + + group_id: int + location_id: int + + +# -------- UPDATE ---------- +class UpdateLocation(BaseUpdateModel): + """ + Schema for updating a location. + """ + + name: str | None = None + notes: str | None = None + point: str | None = None + release_status: str | None = None + elevation_accuracy: float | None = None + elevation_method: str | None = None + coordinate_accuracy: float | None = None + coordinate_method: str | None = None + + +# ============= EOF ============================================= diff --git a/schemas/observation.py b/schemas/observation.py new file mode 100644 index 000000000..a5269f91d --- /dev/null +++ b/schemas/observation.py @@ -0,0 +1,172 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from datetime import timezone +from pydantic import ( + BaseModel, + AwareDatetime, + PastDatetime, + field_validator, + model_validator, +) +from typing import Annotated +from typing_extensions import Self + +from schemas import BaseCreateModel, BaseUpdateModel, BaseResponseModel + + +# class GeothermalMixin: +# depth: float +# temperature: float + + +# -------- VALIDATE ------- + + +class ValidateObservation(BaseModel): + _observation_class: str + observed_property: str + observation_datetime: AwareDatetime + + @field_validator("observation_datetime", check_fields=False) + def convert_observation_datetime_to_utc( + observation_datetime: AwareDatetime, + ) -> AwareDatetime: + """ + Convert observation_timestamp to UTC timezone if it's not already. This runs after + the Annotated validator PastDatetime() is run. + """ + if ( + observation_datetime is not None + and observation_datetime.tzinfo != timezone.utc + ): + return observation_datetime.astimezone(timezone.utc) + return observation_datetime + + @model_validator(mode="after") + def prepend_observed_property(self: Self) -> Self: + observed_property = self.observed_property + observation_class = self._observation_class + if observed_property is not None: + observation_class = self._observation_class + if not observed_property.startswith(f"{observation_class}:"): + self.observed_property = f"{observation_class}:{observed_property}" + return self + + +# -------- CREATE ---------- +class CreateBaseObservation(BaseCreateModel, ValidateObservation): + observation_datetime: Annotated[AwareDatetime, PastDatetime()] + sample_id: int | None = None + sensor_id: int + observed_property: str + release_status: str + value: float | None + unit: str | None + + +class CreateGroundwaterLevelObservation(CreateBaseObservation): + _observation_class: str = "groundwater level" + measuring_point_height: float + level_status: str + + +class CreateWaterChemistryObservation(CreateBaseObservation): + _observation_class: str = "water chemistry" + + +class CreateGeothermalObservation(CreateBaseObservation): + _observation_class: str = "geothermal" + observation_depth: float + + +# -------- UPDATE ------------ + + +class UpdateBaseObservation(BaseUpdateModel, ValidateObservation): + observation_datetime: Annotated[AwareDatetime, PastDatetime()] | None = None + sample_id: int | None = None + sensor_id: int | None = None + observed_property: str | None = None + release_status: str | None = None + value: float | None | None = None + unit: str | None = None + + +class UpdateGroundwaterLevelObservation(UpdateBaseObservation): + _observation_class: str = "groundwater level" + measuring_point_height: float | None = None + level_status: str | None = None + + +class UpdateWaterChemistryObservation(UpdateBaseObservation): + _observation_class: str = "water chemistry" + + +class UpdateGeothermalObservation(UpdateBaseObservation): + _observation_class: str = "geothermal" + observation_depth: float | None = None + + +# -------- RESPONSE ---------- +class BaseObservationResponse(BaseResponseModel): + sample_id: int + sensor_id: int + observation_datetime: AwareDatetime + observed_property: str + release_status: str + value: float | None + unit: str + + @field_validator("observed_property") + def remove_observed_property_prefix(cls, v: str) -> str: + colon_index = v.find(":") + return v[colon_index + 1 :] + + +class GroundwaterLevelObservationResponse(BaseObservationResponse): + depth_to_water_bgs: float | None + measuring_point_height: float | None + level_status: str | None + + @model_validator(mode="before") + def calculate_depth_to_water_bgs(self: Self) -> Self: + depth_to_water = self.value + measuring_point_height = self.measuring_point_height + if depth_to_water is not None and measuring_point_height is not None: + self.depth_to_water_bgs = depth_to_water - measuring_point_height + else: + self.depth_to_water_bgs = None + return self + + +class WaterChemistryObservationResponse(BaseObservationResponse): + pass + + +class GeothermalObservationResponse(BaseObservationResponse): + observation_depth: float | None + + +class ObservationResponse( + GroundwaterLevelObservationResponse, GeothermalObservationResponse +): + """ + Response model for observations. + Combines groundwater level and geothermal observation responses. + """ + + +# ============= EOF ============================================= diff --git a/schemas/response/publication.py b/schemas/publication.py similarity index 79% rename from schemas/response/publication.py rename to schemas/publication.py index fff906f6d..28e9a6b5a 100644 --- a/schemas/response/publication.py +++ b/schemas/publication.py @@ -16,6 +16,22 @@ from pydantic import BaseModel +# -------- CREATE ---------- +class CreatePublication(BaseModel): + """ + Schema for creating a new publication. + """ + + title: str + authors: list[str] + year: int + doi: str | None = None + url: str | None = None + + publication_type: str + + +# -------- RESPONSE ---------- class AuthorResponse(BaseModel): """ Schema for the response of an author. @@ -41,4 +57,5 @@ class PublicationResponse(BaseModel): publication_type: str +# -------- UPDATE ---------- # ============= EOF ============================================= diff --git a/schemas/response/__init__.py b/schemas/response/__init__.py deleted file mode 100644 index 8e546ddc2..000000000 --- a/schemas/response/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== - -# ============= EOF ============================================= diff --git a/schemas/response/chemistry.py b/schemas/response/chemistry.py deleted file mode 100644 index 84739b0e0..000000000 --- a/schemas/response/chemistry.py +++ /dev/null @@ -1,33 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from schemas import ORMBaseModel - - -class WaterChemistryAnalysisSetResponse(ORMBaseModel): - well_id: int - laboratory: str - # collection_timestamp: str # ISO 8601 format - # analyses: list # List of WaterChemistryAnalysisResponse objects - # id: int # Unique identifier for the analysis set - - -class WaterChemistryAnalysisResponse(ORMBaseModel): - analysis_set_id: int - value: float - unit: str - - -# ============= EOF ============================================= diff --git a/schemas/response/lexicon.py b/schemas/response/lexicon.py deleted file mode 100644 index db7dee13e..000000000 --- a/schemas/response/lexicon.py +++ /dev/null @@ -1,42 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from schemas import ORMBaseModel - - -class LexiconTermResponse(ORMBaseModel): - """ - Pydantic model for the response of a lexicon term. - This model can be extended to include additional fields as needed. - """ - - term: str - definition: str - category: str | None = None - - -class LexiconCategoryResponse(ORMBaseModel): - """ - Pydantic model for the response of a lexicon category. - This model can be extended to include additional fields as needed. - """ - - id: int - name: str - description: str | None = None - # terms: list[LexiconTermResponse] | None = None - - -# ============= EOF ============================================= diff --git a/schemas/response/location.py b/schemas/response/location.py deleted file mode 100644 index 6d905bb43..000000000 --- a/schemas/response/location.py +++ /dev/null @@ -1,52 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from geoalchemy2 import WKBElement -from geoalchemy2.shape import to_shape -from pydantic import field_validator -from schemas import ORMBaseModel - - -class SampleLocationResponse(ORMBaseModel): - """ - Response schema for sample location details. - """ - - id: int - name: str | None = None - description: str | None = None - point: str - - @field_validator("point", mode="before") - def point_to_wkt(cls, value): - if isinstance(value, WKBElement): - return to_shape(value).wkt - - # If the value is a string, assume it's already in WKT format - if isinstance(value, str): - return value - - -class GroupLocationResponse(ORMBaseModel): - """ - Response schema for group location details. - """ - - id: int - group_id: int - location_id: int - - -# ============= EOF ============================================= diff --git a/schemas/response/timeseries.py b/schemas/response/timeseries.py deleted file mode 100644 index dd15213ae..000000000 --- a/schemas/response/timeseries.py +++ /dev/null @@ -1,23 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from schemas import ORMBaseModel - - -# ============= EOF ============================================= -class WellTimeseriesResponse(ORMBaseModel): - name: str - description: str | None = None - well_id: int diff --git a/schemas/response/well.py b/schemas/response/well.py deleted file mode 100644 index a691a433a..000000000 --- a/schemas/response/well.py +++ /dev/null @@ -1,65 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from typing import List - -from schemas import ORMBaseModel -from schemas.response.location import SampleLocationResponse - - -class WellResponse(ORMBaseModel): - """ - Response schema for well details. - """ - - id: int - # api_id: str | None = None - # ose_pod_id: str | None = None - # usgs_id: str | None = None - construction_notes: str | None = None - - # Additional fields can be added as needed - - -class SampleLocationWellResponse(SampleLocationResponse): - """ - Response schema for sample location with well details. - """ - - well: List[WellResponse] = [] # List of wells associated with the sample location - - -class WellScreenResponse(ORMBaseModel): - """ - Response schema for well screen details. - """ - - id: int - well_id: int - screen_depth_bottom: float - screen_depth_top: float - - -class GroupResponse(ORMBaseModel): - """ - Response schema for group details. - """ - - id: int - name: str - description: str | None = None - - -# ============= EOF ============================================= diff --git a/schemas/sample.py b/schemas/sample.py new file mode 100644 index 000000000..8ed753deb --- /dev/null +++ b/schemas/sample.py @@ -0,0 +1,163 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from datetime import timezone +from pydantic import ( + BaseModel, + field_validator, + model_validator, + AwareDatetime, + PastDatetime, +) +from typing import Annotated +from typing_extensions import Self + +from schemas import BaseCreateModel, BaseUpdateModel, BaseResponseModel +from schemas.thing import ThingResponse + +""" +REFACTOR TODO: can we use inheritance for commonly defined fields and then set them as optional +or not between Create, Update, and Response schemas? +""" + + +# -------- VALIDATE ---------- +class ValidateSample(BaseModel): + """ + Validator for Sample data for Create and Update schemas. + """ + + # # REFACTOR TODO: is below ground negative or positive? the combine this with validate_sample_bottom defined below + # @field_validator("sample_bottom", check_fields=False) + # def validate_sample_bottom(cls, sample_bottom: float | None, values) -> float | None: + # """ + # Validate that the sample_bottom is not less than sample_top. + # """ + # sample_top = values.get('sample_top') + # if sample_bottom is not None and sample_top is not None: + # if sample_bottom > sample_top: + # raise ValueError( + # "Sample bottom cannot be greater than sample top." + # ) + # return sample_bottom + + sample_date: AwareDatetime | None = None + sample_top: float | None = None + sample_bottom: float | None = None + + @model_validator(mode="after") + def validate_top_and_bottom(self) -> Self: + """ + Validate that sample_top and sample_bottom are both defined or both None. + """ + sample_top = getattr(self, "sample_top", None) + sample_bottom = getattr(self, "sample_bottom", None) + + if (sample_top is not None and sample_bottom is None) or ( + sample_top is None and sample_bottom is not None + ): + raise ValueError( + "Sample top and bottom must both be defined or both must be None." + ) + return self + + @field_validator("sample_date", check_fields=False) + def convert_sample_date_to_utc(sample_date: AwareDatetime) -> AwareDatetime: + """ + Convert sample_date to UTC timezone if it's not already. This runs after + the Annotated validator PastDatetime() is run. + """ + if sample_date is not None and sample_date.tzinfo != timezone.utc: + return sample_date.astimezone(timezone.utc) + return sample_date + + +# -------- CREATE ---------- +class CreateSample(BaseCreateModel, ValidateSample): + thing_id: int + sample_type: str + field_sample_id: str + sample_date: Annotated[AwareDatetime, PastDatetime()] + sampler_name: str # REFACTOR TODO: update with enum/restricted values + qc_sample: str = "Original" + + sensor_id: int | None = None + sample_matrix: str | None = ( + None # REFACTOR TODO: update with enum/restricted values + ) + sample_method: str | None = ( + None # REFACTOR TODO: update with enum/restricted values + ) + + duplicate_sample_number: int | None = 0 + + # REFACTOR TODO: update with numeric restrictions? Are negative values below ground and positive above? + # for example: wells below, rain above, and soil/rock could be at ground surface + sample_top: float | None = None + sample_bottom: float | None = None + + +# -------- UPDATE ---------- +class UpdateSample(BaseUpdateModel, ValidateSample): + """ + Development notes: + + setting = None makes the field optional, but if it is defined it must be of that type. + """ + + thing_id: int | None = None # REFACTOR TODO: should users be able to change this? + sample_type: str | None = None + field_sample_id: str | None = None + sample_date: Annotated[AwareDatetime, PastDatetime()] | None = None + sampler_name: str | None = None # REFACTOR TODO: update with enum/restricted values + qc_sample: str | None = None + + sensor_id: int | None = None # REFACTOR TODO: should users be able to change this? + sample_matrix: str | None = ( + None # REFACTOR TODO: update with enum/restricted values + ) + sample_method: str | None = ( + None # REFACTOR TODO: update with enum/restricted values + ) + + duplicate_sample_number: int | None = None + + # REFACTOR TODO: update with numeric restrictions? Are negative values below ground and positive above? + # for example: wells below, rain above, and soil/rock could be at ground surface + sample_top: float | None = None + sample_bottom: float | None = None + + +# -------- RESPONSE ---------- +class SampleResponse(BaseResponseModel): + thing: ThingResponse + sample_type: str + field_sample_id: str + sample_date: AwareDatetime + release_status: str + sampler_name: str + qc_sample: str + + sensor_id: int | None + sample_matrix: str | None + sample_method: str | None + + duplicate_sample_number: int | None + + sample_top: float | None + sample_bottom: float | None + + +# ============= EOF ============================================= diff --git a/schemas/sensor.py b/schemas/sensor.py new file mode 100644 index 000000000..6dbcf9f19 --- /dev/null +++ b/schemas/sensor.py @@ -0,0 +1,91 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from typing_extensions import Annotated, Self +from datetime import timezone +from pydantic import ( + BaseModel, + AwareDatetime, + PastDatetime, + model_validator, + field_validator, +) + +from schemas import BaseCreateModel, BaseUpdateModel, BaseResponseModel + +# ------- VALIDATION ------ + + +class ValidateSensor(BaseModel): + + datetime_installed: AwareDatetime | None = None + datetime_removed: AwareDatetime | None = None + + @field_validator("datetime_installed", "datetime_removed") + def convert_datetime_fields_to_utc(cls, field: AwareDatetime) -> AwareDatetime: + if field is not None and field.tzinfo != timezone.utc: + field = field.astimezone(timezone.utc) + return field + + @model_validator(mode="after") + def check_datetime_values(self) -> Self: + if ( + getattr(self, "datetime_removed", None) is not None + and getattr(self, "datetime_installed", None) is not None + ): + if self.datetime_removed <= self.datetime_installed: + raise ValueError("datetime removed must be after datetime installed") + return self + + +# -------- CREATE ---------- +class CreateSensor(BaseCreateModel, ValidateSensor): + """ + Schema for creating a new sensor. + """ + + name: str + # equipment_type: str | None = None + model: str | None = None + serial_no: str | None = None + datetime_installed: Annotated[AwareDatetime, PastDatetime()] + datetime_removed: AwareDatetime | None = None # ISO format date string + recording_interval: int | None = None + notes: str | None = None + + +# -------- UPDATE ---------- +class UpdateSensor(BaseUpdateModel, ValidateSensor): + name: str | None = None + model: str | None = None + serial_no: str | None = None + datetime_installed: AwareDatetime | None = None + datetime_removed: AwareDatetime | None = None + recording_interval: int | None = None + notes: str | None = None + + +# -------- RESPONSE ---------- +class SensorResponse(BaseResponseModel): + name: str + model: str | None # = Column(String(50)) + serial_no: str | None # = Column(String(50)) + datetime_installed: AwareDatetime + datetime_removed: AwareDatetime | None # = Column(DateTime) + recording_interval: int | None # = Column(Integer) + notes: str | None # = Column(String(50)) + + +# ============= EOF ============================================= diff --git a/schemas/create/location.py b/schemas/series.py similarity index 62% rename from schemas/create/location.py rename to schemas/series.py index b906eb0e6..3b1b52f61 100644 --- a/schemas/create/location.py +++ b/schemas/series.py @@ -13,35 +13,35 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from schemas import ORMBaseModel +from pydantic import BaseModel -class CreateLocation(ORMBaseModel): +# -------- CREATE ---------- +class CreateSeries(BaseModel): """ - Schema for creating a sample location. + Schema for creating a new series. + This schema can be extended with additional fields as needed. """ name: str description: str | None = None - point: str = "POINT(0 0)" # Default to a point at the origin - visible: bool = False - - -class CreateGroup(ORMBaseModel): - """ - Schema for creating a group. - """ - + thing_id: int + sensor_id: int + observed_property: str + unit: str + release_status: str | None = ( + "draft" # Default to 'draft', can be 'published' or 'archived' + ) + + +# -------- RESPONSE -------- +class SeriesResponse(BaseModel): + id: int name: str + observed_property: str + thing_id: int -class CreateGroupThing(ORMBaseModel): - """ - Schema for creating a group location. - """ - - group_id: int - location_id: int - +# -------- UPDATE ---------- # ============= EOF ============================================= diff --git a/schemas/thing.py b/schemas/thing.py new file mode 100644 index 000000000..2ac3d72ba --- /dev/null +++ b/schemas/thing.py @@ -0,0 +1,222 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from typing import List + +from pydantic import BaseModel, model_validator + +from schemas import BaseCreateModel, BaseUpdateModel, BaseResponseModel +from schemas.location import LocationResponse + + +# -------- CREATE ---------- +class CreateThingIdLink(BaseModel): + """ + Schema for creating a link between a thing and its ID. + """ + + thing_id: int + relation: str + alternate_id: str + alternate_organization: str + + +class CreateBaseThing(BaseCreateModel): + """ + Developer's notes + + thing_type does not need to be set by the user, this is determined by the + POST endpoint + + e.g. POST /thing/water-well, POST /thing/spring determines the thing_type + """ + + location_id: int | None = None # Optional location ID for the thing + group_id: int | None = None # Optional group ID for the thing + name: str # Name of the thing + + +class CreateWell(CreateBaseThing): + """ + Schema for creating a well. + """ + + well_type: str | None = None + well_depth: float | None = None # in feet + hole_depth: float | None = None # in feet + well_construction_notes: str | None = None + + +class CreateSpring(CreateBaseThing): + """ + Schema for creating a spring. + """ + + spring_type: str | None = None + + +class CreateWellScreen(BaseCreateModel): + """ + Schema for creating a well screen. + """ + + thing_id: int + screen_depth_bottom: float + screen_depth_top: float + screen_type: str | None = None + screen_description: str | None = None + + # validate that screen depth bottom is greater than top + @model_validator(mode="after") + def check_depths(self): + if self.screen_depth_bottom < self.screen_depth_top: + raise ValueError( + "screen_depth_bottom must be greater than screen_depth_top" + ) + return self + + +# ------ RESPONSE ---------- +class BaseThingResponse(BaseResponseModel): + name: str + thing_type: str + active_location: LocationResponse | None = None + + +class WellResponse(BaseThingResponse): + """ + Response schema for well details. + """ + + # api_id: str | None = None + # ose_pod_id: str | None = None + # usgs_id: str | None = None + + well_type: str | None = None # e.g., "Production", "Observation", etc. + well_depth: float | None = None # in feet + hole_depth: float | None = None # in feet + well_construction_notes: str | None = None + # Additional fields can be added as needed + + +class SpringResponse(BaseThingResponse): + """ + Response schema for spring details. + """ + + spring_type: str | None = None # e.g., "Natural", "Artifical", etc. + + +class ThingResponse(WellResponse, SpringResponse): + pass + + +class ThingIdLinkResponse(BaseResponseModel): + thing_id: int + thing: ThingResponse + relation: str + alternate_id: str + alternate_organization: str + + +class LocationWellResponse(LocationResponse): + """ + Response schema for sample location with well details. + """ + + well: List[WellResponse] = [] # List of wells associated with the sample location + + +class WellScreenResponse(BaseResponseModel): + """ + Response schema for well screen details. + """ + + thing_id: int + thing: WellResponse + screen_depth_bottom: float + screen_depth_top: float + screen_type: str | None = None + screen_description: str | None = None + + +class GeoJSONGeometry(BaseModel): + """ + Geometry schema for GeoJSON response. + """ + + type: str + coordinates: ( + List[float] + | List[List[float]] + | List[List[List[float]]] + | List[List[List[List[float]]]] + ) # Supports Point, LineString, Polygon, MultiPolygon + + +class Feature(BaseModel): + """ + Feature schema for GeoJSON response. + """ + + type: str = "Feature" + geometry: GeoJSONGeometry + properties: dict = {} + + +class FeatureCollectionResponse(BaseModel): + """ + Response schema for GeoJSON FeatureCollection. + """ + + type: str = "FeatureCollection" + features: List[Feature] = [] + + +# -------- UPDATE ------------ +class UpdateThing(BaseUpdateModel): + """ + Schema for updating a thing. + """ + + name: str | None = None # Optional name for the thing + + +class UpdateWell(UpdateThing): + + well_type: str | None = None + well_depth: float | None = None # in feet + hole_depth: float | None = None # in feet + well_construction_notes: str | None = None + + +class UpdateSpring(UpdateThing): + spring_type: str | None = None + + +class UpdateThingIdLink(BaseUpdateModel): + alternate_organization: str | None = None + alternate_id: str | None = None + relation: str | None = None + + +class UpdateWellScreen(BaseUpdateModel): + screen_depth_bottom: float | None = None + screen_depth_top: float | None = None + screen_description: str | None = None + screen_type: str | None = None + + +# ============= EOF ============================================= diff --git a/services/__init__.py b/services/__init__.py index 8e546ddc2..850ec5839 100644 --- a/services/__init__.py +++ b/services/__init__.py @@ -14,4 +14,5 @@ # limitations under the License. # =============================================================================== + # ============= EOF ============================================= diff --git a/db/series/geochemical.py b/services/audit_helper.py similarity index 77% rename from db/series/geochemical.py rename to services/audit_helper.py index b51a5bbc7..8f6b5811a 100644 --- a/db/series/geochemical.py +++ b/services/audit_helper.py @@ -13,12 +13,14 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from db.base import Base, AutoBaseMixin -from db.series.series import SeriesMixin +from sqlalchemy.orm import DeclarativeBase -class GeochemicalSeries(Base, AutoBaseMixin, SeriesMixin): - pass +def audit_add(user: dict, obj: DeclarativeBase) -> None: + # see note in "AuditMixin" + if user: + obj.created_by_id = user["sub"] + obj.created_by_name = user["name"] # ============= EOF ============================================= diff --git a/services/contact_helper.py b/services/contact_helper.py new file mode 100644 index 000000000..3f7031999 --- /dev/null +++ b/services/contact_helper.py @@ -0,0 +1,91 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from db.contact import Contact, Email, Phone, Address, ThingContactAssociation +from schemas.contact import ( + CreateContact, +) +from services.audit_helper import audit_add +from sqlalchemy.orm import Session + + +def add_contact(session: Session, data: CreateContact | dict, user: dict) -> Contact: + """ + Add a new contact to the database. + """ + + if isinstance(data, CreateContact): + data = data.model_dump(exclude_unset=True) + + email_data = data.pop("emails", []) + phone_data = data.pop("phones", []) + address_data = data.pop("addresses", []) + thing_id = data.pop("thing_id", None) + contact_data = data + + """ + Developer's note + + Rollback if there's an error creating a record in one of the tables so + that orphaned/fractured records are not made + """ + + try: + contact = Contact(**contact_data) + for e in email_data: + email = Email(**e) + contact.emails.append(email) + # session.add(email) + + for p in phone_data: + phone = Phone(**p) + contact.phones.append(phone) + # session.add(phone) + + for a in address_data: + address = Address(**a) + contact.addresses.append(address) + # session.add(address) + + audit_add(user, contact) + audit_add(user, contact.emails) + audit_add(user, contact.phones) + audit_add(user, contact.addresses) + + session.add(contact) + session.flush() + session.refresh(contact) + + location_contact_association = ThingContactAssociation() + location_contact_association.thing_id = thing_id + location_contact_association.contact_id = contact.id + + audit_add(user, location_contact_association) + + session.add(location_contact_association) + # owner_contact_association = OwnerContactAssociation() + # owner_contact_association.owner_id = owner.id + # owner_contact_association.contact_id = contact.id + # session.add(owner_contact_association) + session.flush() + session.commit() + except Exception as e: + session.rollback() + raise e + + return contact + + +# ============= EOF ============================================= diff --git a/services/crud_helper.py b/services/crud_helper.py new file mode 100644 index 000000000..daa4bbf3d --- /dev/null +++ b/services/crud_helper.py @@ -0,0 +1,75 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from fastapi import Response +from pydantic import BaseModel +from sqlalchemy.orm import Session, DeclarativeBase +from starlette.status import HTTP_204_NO_CONTENT + +from services.query_helper import simple_get_by_id + + +def model_adder(session, table, model, user=None, **kwargs): + """ + Helper function to add a new record to the database. + """ + + md = model.model_dump() + if kwargs: + md.update(kwargs) + + if user: + # TODO: see note in "AuditMixin" + md["created_by_id"] = user["sub"] + md["created_by_name"] = user["name"] + + obj = table(**md) + session.add(obj) + session.commit() + session.refresh(obj) + return obj + + +def model_patcher( + session: Session, + model: DeclarativeBase, + item_id: int, + payload: BaseModel, + user: dict = None, +): + # simple_get_by_id raises HTTP_404_NOT_FOUND if the item is not found + item = simple_get_by_id(session, model, item_id) + + for key, value in payload.model_dump(exclude_unset=True).items(): + setattr(item, key, value) + + if user: + item.updated_by_id = user["sub"] + item.updated_by_name = user["name"] + + session.commit() + session.refresh(item) + return item + + +def model_deleter(session: Session, model: DeclarativeBase, item_id: int): + # simple_get_by_id raises HTTP_404_NOT_FOUND if the item is not found + item = simple_get_by_id(session, model, item_id) + session.delete(item) + session.commit() + return Response(status_code=HTTP_204_NO_CONTENT) + + +# ============= EOF ============================================= diff --git a/services/exceptions_helper.py b/services/exceptions_helper.py new file mode 100644 index 000000000..bd83a0263 --- /dev/null +++ b/services/exceptions_helper.py @@ -0,0 +1,33 @@ +from fastapi import HTTPException +from typing import TypedDict + + +class PydanticDetailDict(TypedDict): + loc: list + msg: str + type: str + input: dict + + +class PydanticStyleException(HTTPException): + """ + Exception to be raised for errors not handled by Pydantic to maintain + the same style. + """ + + def __init__( + self, + status_code: int, + detail: list[PydanticDetailDict], + ): + """ + The detail needs to be a list with the following keys: + "loc": list + "msg": string + "type": string + "input": Any + """ + super().__init__( + status_code=status_code, + detail=detail, + ) diff --git a/services/gcs_helper.py b/services/gcs_helper.py new file mode 100644 index 000000000..158019e2f --- /dev/null +++ b/services/gcs_helper.py @@ -0,0 +1,112 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +import base64 +import json +import os +import datetime +from hashlib import md5 +from fastapi import UploadFile +from google.oauth2 import service_account +from sqlalchemy import select +from core.settings import settings +from db import Asset, AssetThingAssociation + +GCS_BUCKET_NAME = os.environ.get("GCS_BUCKET_NAME") +GCS_BUCKET_BASE_URL = f"https://storage.cloud.google.com/{GCS_BUCKET_NAME}/uploads" + +from google.cloud import storage + + +def get_storage_client() -> storage.Client: + if settings.mode == "production": + key_base64 = os.environ.get("GCS_SERVICE_ACCOUNT_KEY") + decoded = base64.b64decode(key_base64).decode("utf-8") + + # Load service account credentials + creds = service_account.Credentials.from_service_account_info( + json.loads(decoded) + ) + + # Create storage client + client = storage.Client(credentials=creds) + elif settings.mode == "transfer": + client = storage.Client() + else: + client = storage.Client.from_service_account_json( + os.environ.get("GOOGLE_APPLICATION_CREDENTIALS") + ) + return client + + +def get_storage_bucket(client=None) -> storage.Bucket: + if client is None: + client = get_storage_client() + + bucket = client.bucket(GCS_BUCKET_NAME) + return bucket + + +def gcs_upload(file: UploadFile, bucket: storage.Bucket = None): + if bucket is None: + bucket = get_storage_bucket() + + # make file id from hash of file contents + file.file.seek(0) + file_id = md5(file.file.read()).hexdigest() + + head, extension = os.path.splitext(file.filename) + + blob_name = f"uploads/{head}_{file_id}{extension}" + eblob = bucket.get_blob(blob_name) + if eblob: + print("blob exists") + return ( + f"{GCS_BUCKET_BASE_URL}/{blob_name}", + blob_name, + ) + + blob = bucket.blob(blob_name) + + file.file.seek(0) + blob.upload_from_file(file.file, content_type=file.content_type) + url = f"{GCS_BUCKET_BASE_URL}/{blob_name}" + return url, blob_name + + +def gcs_remove(uri: str, bucket: storage.Bucket): + blob = bucket.blob(uri) + blob.delete() + + +def add_signed_url(asset: Asset, bucket: storage.Bucket): + asset.signed_url = bucket.blob(asset.storage_path).generate_signed_url( + version="v4", + expiration=datetime.timedelta(minutes=15), + method="GET", + ) + return asset + + +def check_asset_exists(session, blob_name, thing_id=None): + sql = select(Asset).where(Asset.storage_path == blob_name) + if thing_id: + sql = sql.join(AssetThingAssociation).where( + AssetThingAssociation.thing_id == thing_id + ) + return session.scalars(sql).one_or_none() + + +# ============= EOF ============================================= diff --git a/services/geospatial_helper.py b/services/geospatial_helper.py index eb9a843fb..37189f4a4 100644 --- a/services/geospatial_helper.py +++ b/services/geospatial_helper.py @@ -13,28 +13,82 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +import json + import shapefile +from shapely.errors import GEOSException +from geoalchemy2 import functions as geofunc +from shapely.io import from_geojson import constants -from db.location import Location -from geoalchemy2.functions import ST_GeomFromText, ST_Within +from db.thing import Thing +from db.group import GroupThingAssociation, Group +from db.location import Location, LocationThingAssociation +from geoalchemy2.functions import ST_GeomFromText, ST_Within, ST_AsGeoJSON from geoalchemy2.shape import to_shape from shapely.wkt import loads as wkt_loads -from sqlalchemy import Select +from sqlalchemy import Select, select + + +def get_thing_features( + session, thing_type: list | str | None, group: str | int | None +) -> list: + # sql = ( + # select(Thing, ST_AsGeoJSON(Location.point).label("geojson")) + # .join(LocationThingAssociation, Thing.id == LocationThingAssociation.thing_id) + # .join(Location, LocationThingAssociation.location_id == Location.id) + # ) + + # selection_args = [Thing, ST_AsGeoJSON(Location.point).label("geojson")] + # if thing_type == "well": + # selection_args.append(WellThing) + # elif thing_type == "spring": + # selection_args.append(SpringThing) + + sql = ( + select(Thing, ST_AsGeoJSON(Location.point).label("geojson")) + .join(LocationThingAssociation, Thing.id == LocationThingAssociation.thing_id) + .join(Location, LocationThingAssociation.location_id == Location.id) + ) + if thing_type: + if isinstance(thing_type, str): + thing_type = thing_type.lower() + sql = sql.where(Thing.thing_type == thing_type) + elif isinstance(thing_type, list): + thing_type = [t.lower() for t in thing_type] + sql = sql.where(Thing.thing_type.in_(thing_type)) + else: + raise ValueError("thing_type must be a string or a list of strings") -def create_shapefile(locations: list, filename: str = "locations.shp"): + if group: + sql = sql.join(GroupThingAssociation).join(Group) + if isinstance(group, str): + sql = sql.where(Group.name == group) + else: + sql = sql.where(Group.id == group) + + return session.execute(sql).all() + + +def create_shapefile(things: list, filename: str = "things.shp") -> None: # Create a point shapefile with shapefile.Writer(filename, shapeType=shapefile.POINT) as shp: + shp.field("id", "L") shp.field("name", "C") - for loc in locations: - # Assume loc.point is WKT or a Shapely geometry - if isinstance(loc.point, str): - geom = wkt_loads(loc.point) + + for thing, point in things: + # Assume loc.point is WKT or a Shapely geometry or GeoJSON + if isinstance(point, str): + try: + geom = wkt_loads(point) + except GEOSException: + geom = from_geojson(point) else: - geom = to_shape(loc.point) + geom = to_shape(point) + shp.point(geom.x, geom.y) - shp.record(loc.name) + shp.record(thing.id, thing.name) def make_within_wkt(sql: Select, wkt: str) -> Select: diff --git a/services/lexicon.py b/services/lexicon.py deleted file mode 100644 index c9a4bb07c..000000000 --- a/services/lexicon.py +++ /dev/null @@ -1,61 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from db.lexicon import Category, Lexicon, TermCategoryAssociation -from sqlalchemy.orm import Session -from sqlalchemy import select - - -def add_lexicon_term(session: Session, term: str, definition: str, category: str | int): - """ - Add a term to the lexicon with its definition and category. - - """ - with session.no_autoflush: - if isinstance(category, str): - sql = select(Category).where(Category.name == category) - dbcategory = session.scalars(sql).one_or_none() - if dbcategory is None: - # Create a new category if it does not exist - dbcategory = Category(name=category) - session.add(dbcategory) - session.commit() - session.flush() - else: - dbcategory = session.get(Category, category) - - # Check if the term already exists - sql = select(Lexicon).where(Lexicon.term == term) - existing_term = session.scalars(sql).one_or_none() - if existing_term is not None: - return existing_term - - term = Lexicon(term=term, definition=definition) - session.add(term) - - if dbcategory is not None: - link = TermCategoryAssociation() - - link.category = dbcategory - link.term = term - - session.add(link) - - session.commit() - - return term - - -# ============= EOF ============================================= diff --git a/services/lexicon_helper.py b/services/lexicon_helper.py new file mode 100644 index 000000000..c4a98454b --- /dev/null +++ b/services/lexicon_helper.py @@ -0,0 +1,143 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from db.engine import get_db_session +from db.lexicon import ( + LexiconCategory, + LexiconTerm, + LexiconTermCategoryAssociation, + LexiconTriple, +) +from sqlalchemy.orm import Session +from sqlalchemy import select + +from services.audit_helper import audit_add + + +def add_lexicon_term( + session: Session, + term: str, + definition: str, + categories: list | None, + user: dict = None, +) -> LexiconTerm: + """ + Add a term to the lexicon with its definition and category. + + """ + db_categories = [] + if isinstance(categories, list): + + category_names = [c.get("name") for c in categories] + + sql = select(LexiconCategory).where(LexiconCategory.name.in_(category_names)) + associated_categories = session.scalars(sql).all() + associated_category_names = [c.name for c in associated_categories] + + unassociated_categories = [ + category + for category in categories + if category.get("name") not in associated_category_names + ] + for category in unassociated_categories: + # Create a new category if it does not exist + category = LexiconCategory( + name=category.get("name"), description=category.get("description") + ) + audit_add(user, category) + session.add(category) + session.commit() + session.flush() + + db_categories.append(category) + + db_categories.extend(associated_categories) + + # Check if the term already exists + sql = select(LexiconTerm).where(LexiconTerm.term == term) + dbterm = session.scalars(sql).one_or_none() + if dbterm is None: + dbterm = LexiconTerm(term=term, definition=definition) + audit_add(user, dbterm) + session.add(dbterm) + + if len(db_categories) > 0: + for category in db_categories: + link = LexiconTermCategoryAssociation() + + link.category = category + link.term = dbterm + audit_add(user, link) + session.add(link) + + session.commit() + + return dbterm + + +def add_lexicon_triple( + session: Session, + subject: dict, + predicate: str, + object_: dict, + user: dict = None, +) -> LexiconTriple: + """ + Add a triple to the lexicon. + """ + # add subject and object to db if they don't already exist + for term in subject, object_: + if isinstance(term, dict): + sql = select(LexiconTerm).where(LexiconTerm.term == term["term"]) + existing_term = session.scalars(sql).one_or_none() + if existing_term is None: + add_lexicon_term( + session, + term["term"], + term["definition"], + term["categories"], + user=user, + ) + + triple = LexiconTriple( + subject=subject["term"], predicate=predicate, object_=object_["term"] + ) + audit_add(user, triple) + session.add(triple) + session.commit() + return triple + + +def get_terms_by_category(category: str) -> list: + """ + Fetches the terms from the database by category. + + Returns: + list: A list of terms. + """ + + with next(get_db_session()) as session: + + sql = select(LexiconTerm) + sql = sql.join(LexiconTermCategoryAssociation) + sql = sql.join(LexiconCategory) + sql = sql.filter(LexiconCategory.name == category) + + categories = [lex.term for lex in session.scalars(sql).all()] + + return categories + + +# ============= EOF ============================================= diff --git a/services/observation_helper.py b/services/observation_helper.py new file mode 100644 index 000000000..8f4561c32 --- /dev/null +++ b/services/observation_helper.py @@ -0,0 +1,144 @@ +from pydantic import BaseModel +from sqlalchemy.orm import Session +from starlette.status import HTTP_404_NOT_FOUND +from fastapi_pagination.ext.sqlalchemy import paginate +from sqlalchemy import select +from typing import List +from fastapi import Request, Query +from datetime import datetime + +from core.dependencies import session_dependency +from db import Observation, Sample +from schemas.observation import ( + ObservationResponse, + WaterChemistryObservationResponse, + GeothermalObservationResponse, + GroundwaterLevelObservationResponse, +) +from services.exceptions_helper import PydanticStyleException +from services.query_helper import simple_get_by_id, order_sort_filter + + +def get_observation_class_from_request(request: Request) -> str: + path = request.url.path + path_components = path.split("/") + if len(path_components) == 2: + # no observation class specified in path + observation_class_in_path = path_components[1] + if len(path_components) >= 3: + # observation class specified in path + observation_class_in_path = path_components[2] + + observation_class = observation_class_in_path.replace("-", " ") + return observation_class + + +def get_observations( + request: Request, + session: session_dependency, + thing_id: int | None = None, + sensor_id: int | None = None, + sample_id: int | None = None, + start_time: datetime | None = None, + end_time: datetime | None = None, + sort: str | None = None, + order: str | None = None, + filter_: str = Query(alias="filter", default=None), +) -> ( + List[ObservationResponse] + | List[WaterChemistryObservationResponse] + | List[GeothermalObservationResponse] + | List[GroundwaterLevelObservationResponse] +): + """ + Retrieve all observations + """ + observation_class = get_observation_class_from_request(request) + + sql = select(Observation) + if thing_id is not None: + sql = sql.join(Sample) + sql = sql.where(Sample.thing_id == thing_id) + if sample_id is not None: + sql = sql.where(Observation.sample_id == sample_id) + if sensor_id is not None: + sql = sql.where(Observation.sensor_id == sensor_id) + + if start_time: + sql = sql.where(Observation.observation_datetime >= start_time) + if end_time: + sql = sql.where(Observation.observation_datetime <= end_time) + + # root of path is /observation + if observation_class != "observation": + sql = sql.where(Observation.observed_property.like(f"{observation_class}:%")) + + sql = order_sort_filter(sql, Observation, sort, order, filter_) + + if not order: + sql = sql.order_by(Observation.observation_datetime.desc()) + + return paginate(query=sql, conn=session) + + +def verify_observed_property_corresponds_with_observation_class( + observation: Observation, request: Request +): + observation_class = get_observation_class_from_request(request) + + observed_property = observation.observed_property + colon_index = observed_property.find(":") + actual_observation_class = observed_property[:colon_index] + + if actual_observation_class != observation_class: + raise PydanticStyleException( + status_code=HTTP_404_NOT_FOUND, + detail=[ + { + "loc": ["path", "observation_id"], + "type": "value_error", + "input": {"observation_id": observation.id}, + "msg": f"Observation with ID {observation.id} is not a {observation_class} observation. It is a {actual_observation_class} observation.", + } + ], + ) + + +def get_observation_of_an_observation_class_by_id( + session: Session, request: Request, observation_id: int +) -> Observation: + """ + Retrieve an observation by its ID. + """ + observation = simple_get_by_id(session, Observation, observation_id) + + verify_observed_property_corresponds_with_observation_class(observation, request) + + return observation + + +def observation_model_patcher( + session: Session, + request: Request, + observation_id: int, + payload: BaseModel, + user: dict, +) -> Observation: + """ + Patch an observation model with the provided payload. + """ + # simple_get_by_id raises HTTP_404_NOT_FOUND if the item is not found + observation = simple_get_by_id(session, Observation, observation_id) + + verify_observed_property_corresponds_with_observation_class(observation, request) + + for key, value in payload.model_dump(exclude_unset=True).items(): + setattr(observation, key, value) + + if user: + observation.updated_by_id = user["sub"] + observation.updated_by_name = user["name"] + + session.commit() + session.refresh(observation) + return observation diff --git a/services/people_helper.py b/services/people_helper.py deleted file mode 100644 index 53cf91ee4..000000000 --- a/services/people_helper.py +++ /dev/null @@ -1,69 +0,0 @@ -# =============================================================================== -# Copyright 2025 ross -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# =============================================================================== -from db.contact import Contact, Email, Phone, Address, ThingContactAssociation -from schemas.create.contact import CreateContact -from sqlalchemy.orm import Session - - -def add_contact( - session: Session, - contact_data: CreateContact | dict, -): - """ - Add a new contact to the database. - """ - - if isinstance(contact_data, CreateContact): - contact_data = contact_data.model_dump() - - contact = Contact( - name=contact_data["name"], - role=contact_data["role"], - ) - for e in contact_data.get("emails", []): - email = Email(**e) - contact.emails.append(email) - # session.add(email) - - for p in contact_data.get("phones", []): - phone = Phone(**p) - contact.phones.append(phone) - # session.add(phone) - - for a in contact_data.get("addresses", []): - address = Address(**a) - contact.addresses.append(address) - # session.add(address) - - session.add(contact) - session.commit() - session.refresh(contact) - - location_contact_association = ThingContactAssociation() - location_contact_association.thing_id = contact_data.get("thing_id") - location_contact_association.contact_id = contact.id - - session.add(location_contact_association) - # owner_contact_association = OwnerContactAssociation() - # owner_contact_association.owner_id = owner.id - # owner_contact_association.contact_id = contact.id - # session.add(owner_contact_association) - session.commit() - - return contact - - -# ============= EOF ============================================= diff --git a/services/publication_helper.py b/services/publication_helper.py index ec45a90b3..9ae346acd 100644 --- a/services/publication_helper.py +++ b/services/publication_helper.py @@ -14,7 +14,7 @@ # limitations under the License. # =============================================================================== from db.publication import Author, Publication, AuthorPublicationAssociation -from schemas.create.publication import CreatePublication +from schemas.publication import CreatePublication from sqlalchemy.orm import Session from sqlalchemy import select diff --git a/services/query_helper.py b/services/query_helper.py index 3a776eb64..28935d47c 100644 --- a/services/query_helper.py +++ b/services/query_helper.py @@ -13,7 +13,16 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from sqlalchemy import select, Float, Integer +import json +from typing import Any + +from fastapi import HTTPException +from fastapi_pagination.ext.sqlalchemy import paginate +from sqlalchemy import select, Float, Integer, Column, Select, func +from sqlalchemy.orm import DeclarativeBase, Session +from sqlalchemy.sql.elements import OperatorExpression +from starlette.status import HTTP_404_NOT_FOUND + from db import search as search_func from services.regex import QUERY_REGEX @@ -30,7 +39,7 @@ def to_bool(value: str) -> bool | str: return value -def make_where(col, op: str, v: str): +def make_where(col: Column, op: str, v: str) -> OperatorExpression: if op == "like": return col.like(v) @@ -48,7 +57,7 @@ def cast_value(col, val): return getattr(col, f"__{op}__")(cast_value(col, v)) -def make_query(table, query: str): +def make_query(table: DeclarativeBase, query: str) -> OperatorExpression: # ensure the length of the query is reasonable if len(query) > 1000: raise ValueError("Query is too long") @@ -79,8 +88,7 @@ def make_query(table, query: str): return w -# ============= EOF ============================================= -def simple_get_by_name(session, table, name): +def simple_get_by_name(session, table, name) -> object | None: """ Helper function to get a record by name from the database. """ @@ -89,26 +97,83 @@ def simple_get_by_name(session, table, name): return result.scalar_one_or_none() -def simple_get_by_id(session, table, item_id): +def simple_get_by_id( + session: Session, table: DeclarativeBase, item_id: int +) -> object | None: """ Helper function to get a record by ID from the database. """ - sql = select(table).where(table.id == item_id) - result = session.execute(sql) - return result.scalar_one_or_none() + + item = session.get(table, item_id) + if item is None: + raise HTTPException( + status_code=HTTP_404_NOT_FOUND, + detail=f"{table.__name__} with ID {item_id} not found.", + ) + return item -def simple_all_getter(session, table): +def simple_all_getter(session, table) -> list[object]: """ Helper function to get records from the database. """ sql = select(table) return session.scalars(sql).all() - # result = session.execute(sql) - # return result.scalars().all() -def searchable_getter(session, table, search, vector=None, joins=None): +def order_sort_filter( + sql: Select[Any], table: DeclarativeBase, sort: str, order: str, filter_: str +) -> Select[Any]: + if order: + if not sort: + raise ValueError( + "Sort parameter is required when order is specified. " + f"The sort parameter should be a column name in the table {table}." + ) + attr = func.lower(getattr(table, sort)) + if order.lower() == "asc": + sql = sql.order_by(attr.asc()) + elif order.lower() == "desc": + sql = sql.order_by(attr.desc()) + else: + raise ValueError("Invalid order parameter. Use 'asc' or 'desc'.") + + if filter_: + required_keys = {"field", "value", "operator"} + if filter_ is not None: + try: + f = json.loads(filter_) + except Exception: + raise HTTPException(status_code=400, detail="Invalid JSON in filter") + + missing = required_keys - f.keys() + if missing: + raise HTTPException( + status_code=422, + detail=f"Missing required filter keys: {', '.join(missing)}", + ) + + field = f["field"] + value = f["value"] + operator = f["operator"] + column = getattr(table, field) + if operator == "contains": + sql = sql.where(column.ilike(f"%{value}%")) + + return sql + + +def paginated_all_getter(session, table, sort=None, order=None, filter_=None) -> Any: + """ + Helper function to get all records from the database with pagination. + """ + + sql = select(table) + sql = order_sort_filter(sql, table, sort, order, filter_) + return paginate(query=sql, conn=session) + + +def searchable_getter(session, table, search, vector=None, joins=None) -> list[object]: if vector is None: vector = getattr(table, "search_vector", None) @@ -123,3 +188,6 @@ def searchable_getter(session, table, search, vector=None, joins=None): vector=vector, ) return session.scalars(q).all() + + +# ============= EOF ============================================= diff --git a/services/thing_helper.py b/services/thing_helper.py index a8bbd3791..5d88cd564 100644 --- a/services/thing_helper.py +++ b/services/thing_helper.py @@ -13,29 +13,232 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from db import LocationThingAssociation, Thing, WellThing +from fastapi import Request +from fastapi_pagination.ext.sqlalchemy import paginate +from pydantic import BaseModel +from sqlalchemy import select, func +from sqlalchemy.orm import Session, aliased +from starlette.status import HTTP_404_NOT_FOUND, HTTP_409_CONFLICT +from db import LocationThingAssociation, Thing, Base, Location, WellScreen +from db.group import GroupThingAssociation +from services.audit_helper import audit_add +from services.crud_helper import model_patcher +from services.exceptions_helper import PydanticStyleException +from services.geospatial_helper import make_within_wkt +from services.query_helper import make_query, order_sort_filter, simple_get_by_id +from shapely import wkb +from shapely.geometry import mapping + + +def wkb_to_geojson(wkb_element): + if wkb_element is None: + return None + geom = wkb.loads(bytes(wkb_element.data)) + return mapping(geom) + + +def get_active_location(session: Session, thing: Thing) -> Location | None: + """ + The following SQL query retrieves the active location associated with by + assuming that the latest effective_start is the active location. + """ + sql = ( + select(Location) + .join(LocationThingAssociation) + .where(LocationThingAssociation.thing_id == thing.id) + .order_by(LocationThingAssociation.effective_start.desc()) + ) + active_location = session.execute(sql).scalars().one_or_none() + return active_location + + +def get_db_things( + filter_, + order, + query, + session, + sort, + thing_type: str = None, + within: str = None, +) -> list: + + latest_assoc = ( + select( + LocationThingAssociation.thing_id, + func.max(LocationThingAssociation.effective_start).label("max_start"), + ) + .group_by(LocationThingAssociation.thing_id) + .subquery() + ) + + if query: + sql = select(Thing, Location).where(make_query(Thing, query)) + else: + sql = select(Thing, Location) + + lta_alias = aliased(LocationThingAssociation) + sql = ( + sql.join(lta_alias, Thing.id == lta_alias.thing_id) + .join(Location, lta_alias.location_id == Location.id) + .join( + latest_assoc, + (latest_assoc.c.thing_id == lta_alias.thing_id) + & (latest_assoc.c.max_start == lta_alias.effective_start), + ) + ) + + if thing_type: + sql = sql.where(Thing.thing_type == thing_type) + + if within: + sql = make_within_wkt(sql, within) + + sql = order_sort_filter(sql, Thing, sort, order, filter_) + + def transformer(records): + def make_new_record(thing, location): + thing.active_location = location + return thing + + return [make_new_record(*record) for record in records] + + return paginate(query=sql, conn=session, transformer=transformer) + + +def get_thing_type_from_request(request: Request) -> str: + path = request.url.path + path_components = path.split("/") + if len(path_components) == 2: + # no thing type specified in path + thing_type_in_path = path_components[1] + if len(path_components) >= 3: + # thing type specified in path + thing_type_in_path = path_components[2] + + thing_type = thing_type_in_path.replace("-", " ") + return thing_type + + +def verify_thing_type_correspondence(thing: Thing, request: Request): + thing_type = get_thing_type_from_request(request) + if thing.thing_type != thing_type: + raise PydanticStyleException( + status_code=HTTP_404_NOT_FOUND, + detail=[ + { + "loc": ["path", "thing_id"], + "type": "value_error", + "input": {"thing_id": thing.id}, + "msg": f"Thing with ID {thing.id} is not a {thing_type} Thing. It is a {thing.thing_type} Thing.", + } + ], + ) + + +def get_thing_of_a_thing_type_by_id(session: Session, request: Request, thing_id: int): + thing = simple_get_by_id(session, Thing, thing_id) + + verify_thing_type_correspondence(thing, request) + + thing.active_location = get_active_location(session, thing) + return thing + + +def add_thing( + session: Session, + data: BaseModel | dict, + user: dict = None, + request: Request | None = None, + thing_type: str | None = None, # to be used only for data transfers, not the API +) -> Base: + if request is not None: + thing_type = get_thing_type_from_request(request) + + if isinstance(data, BaseModel): + data = data.model_dump() -def add_well(session, data): location_id = data.pop("location_id", None) - assoc = LocationThingAssociation() - - thing = Thing() - session.add(thing) - session.commit() - session.refresh(thing) - - well = WellThing(**data) - well.thing_id = thing.id - session.add(well) - session.commit() - session.refresh(well) - - assoc.location_id = location_id - assoc.thing_id = thing.id - session.add(assoc) - session.commit() - return well + group_id = data.pop("group_id", None) + + try: + thing = Thing(**data) + thing.thing_type = thing_type + + audit_add(user, thing) + + session.add(thing) + session.flush() + session.refresh(thing) + + # endpoint catches ProgrammingError if location_id or group_id do not exist + if group_id: + assoc = GroupThingAssociation() + audit_add(user, assoc) + assoc.group_id = group_id + assoc.thing_id = thing.id + session.add(assoc) + + if location_id is not None: + assoc = LocationThingAssociation() + audit_add(user, assoc) + assoc.location_id = location_id + assoc.thing_id = thing.id + session.add(assoc) + + session.commit() + except Exception as e: + session.rollback() + raise e + + thing.active_location = get_active_location(session, thing) + return thing + + +def add_well_screen(session, well_screen_data: BaseModel, user: dict = None): + try: + well_screen_data_dump = well_screen_data.model_dump() + well_screen = WellScreen(**well_screen_data_dump) + audit_add(user, well_screen) + + session.add(well_screen) + session.flush() + + thing = session.get(Thing, well_screen_data.thing_id) + if thing.thing_type != "water well": + raise PydanticStyleException( + status_code=HTTP_409_CONFLICT, + detail=[ + { + "loc": ["body", "thing_id"], + "type": "value_error", + "input": {"thing_id": thing.id}, + "msg": f"Thing with ID {thing.id} is not a water well Thing. It is a {thing.thing_type} Thing.", + } + ], + ) + + session.commit() + except Exception as e: + session.rollback() + raise e + return well_screen + + +def patch_thing( + session: Session, + request: Request, + thing_id: int, + payload: BaseModel, + user: dict, +): + thing = simple_get_by_id(session, Thing, thing_id) + + verify_thing_type_correspondence(thing, request) + + thing = model_patcher(session, Thing, thing_id, payload, user) + thing.active_location = get_active_location(session, thing) + return thing # ============= EOF ============================================= diff --git a/services/validation/__init__.py b/services/validation/__init__.py index b16da56dd..850ec5839 100644 --- a/services/validation/__init__.py +++ b/services/validation/__init__.py @@ -13,30 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from sqlalchemy import select - -from db.engine import get_db_session -from db.lexicon import Lexicon, Category, TermCategoryAssociation - - -def get_category(category: str) -> list: - """ - Fetches the categories from the database. - - Returns: - list: A list of categories. - """ - - session = next(get_db_session()) - - sql = select(Lexicon) - sql = sql.join(TermCategoryAssociation) - sql = sql.join(Category) - sql = sql.filter(Category.name == category) - - categories = [lex.term for lex in session.scalars(sql).all()] - - return categories # ============= EOF ============================================= diff --git a/db/series/groundwaterlevel.py b/services/validation/geospatial.py similarity index 62% rename from db/series/groundwaterlevel.py rename to services/validation/geospatial.py index 671609562..a6c2d7377 100644 --- a/db/series/groundwaterlevel.py +++ b/services/validation/geospatial.py @@ -13,23 +13,24 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from sqlalchemy import Integer, ForeignKey -from sqlalchemy.testing.schema import mapped_column +from shapely import wkt -from db.base import Base, AutoBaseMixin -from db.series.series import SeriesMixin - -class GroundwaterLevelSeries(Base, AutoBaseMixin, SeriesMixin): +def validate_wkt_geometry(value: str | None) -> str | None: """ - Represents a series of groundwater level measurements. + Validate that the provided string is a valid WKT geometry. + Raises ValueError if the geometry is invalid. """ + if value is None: + return value - # Define the columns for the groundwater level series - - # Relationships can be defined here if needed - # e.g., relationship to Location model if it exists - pass + try: + geometry = wkt.loads(value) + if not geometry.is_valid: + raise ValueError("WKT geometry is not topologically valid") + return value + except Exception as e: + raise ValueError(f"Invalid WKT geometry: {e}") # ============= EOF ============================================= diff --git a/services/validation/well.py b/services/validation/well.py index 941db5424..253aaa95f 100644 --- a/services/validation/well.py +++ b/services/validation/well.py @@ -13,8 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from schemas.create.well import CreateWellScreen -from services.validation import get_category +from schemas.thing import CreateWellScreen +from services.lexicon_helper import get_terms_by_category async def validate_screens(well_screen_data: CreateWellScreen): @@ -26,7 +26,7 @@ async def validate_screens(well_screen_data: CreateWellScreen): # session = database_sessionmaker() # with session: # get valid screen types from the database - valid_screen_types = get_category("casing_material") + valid_screen_types = get_terms_by_category("casing_material") if ( well_screen_data.screen_type and well_screen_data.screen_type not in valid_screen_types diff --git a/tests/__init__.py b/tests/__init__.py index 3583b529e..985e4ae10 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -14,14 +14,12 @@ # limitations under the License. # =============================================================================== from fastapi.testclient import TestClient -from sqlalchemy.orm import configure_mappers -from core.app import init_lexicon +from core.initializers import init_lexicon +from db import Base +from db.engine import engine, session_ctx from main import app -from db.engine import engine -from db.base import Base -configure_mappers() Base.metadata.drop_all(engine) Base.metadata.create_all(engine) @@ -30,4 +28,39 @@ client = TestClient(app) + +def override_authentication(default=True): + """ + Override the authentication dependency for testing purposes. + This allows all users to be considered authenticated. + """ + + def closure(): + # print("Overriding authentication") + return default + + return closure + + +def cleanup_post_test(model: Base, new_record_id: int) -> None: + """ + Function to cleanup POST tests + """ + with session_ctx() as session: + session.delete(session.get(model, new_record_id)) + session.commit() + + +def cleanup_patch_test(model: Base, payload: dict, original_data: Base) -> None: + """ + Function to cleanup PATCH tests + """ + with session_ctx() as session: + updated_record = session.get(model, original_data.id) + for field in payload.keys(): + original_value = getattr(original_data, field) + setattr(updated_record, field, original_value) + session.commit() + + # ============= EOF ============================================= diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 000000000..85092920e --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,762 @@ +import pytest +import uuid + +from db import * +from db.engine import session_ctx + + +@pytest.fixture(scope="session") +def location(): + with session_ctx() as session: + loc = Location( + name="first location", + notes="these are some test notes", + point="POINT(0 0 0)", + release_status="draft", + elevation_accuracy=100, + elevation_method="Survey-grade GPS", + coordinate_accuracy=50, + coordinate_method="GPS, uncorrected", + state="New Mexico", + county="Socorro", + quad_name="some NM quad", + ) + session.add(loc) + session.commit() + session.refresh(loc) + yield loc + + session.close() + + +@pytest.fixture(scope="function") +def second_location(): + with session_ctx() as session: + location = Location( + name="second location", + point="POINT (10.2 10.2 0)", + release_status="draft", + ) + session.add(location) + session.commit() + yield location + session.delete(location) + session.commit() + + +@pytest.fixture(scope="session") +def water_well_thing(location): + with session_ctx() as session: + water_well = Thing( + name="Test Well", + thing_type="water well", + release_status="draft", + well_type="Production", + well_depth=10, + hole_depth=10, + well_construction_notes="Test well construction notes", + ) + session.add(water_well) + session.commit() + session.refresh(water_well) + + assoc = LocationThingAssociation() + assoc.location_id = location.id + assoc.thing_id = water_well.id + assoc.effective_start = "2025-02-01T00:00:00Z" + session.add(assoc) + session.commit() + yield water_well + + +@pytest.fixture(scope="session") +def well_screen(water_well_thing): + with session_ctx() as session: + screen = WellScreen( + thing_id=water_well_thing.id, + screen_depth_top=10.0, + screen_depth_bottom=20.0, + screen_type="PVC", + screen_description="Test well screen description", + release_status="draft", + ) + session.add(screen) + session.commit() + yield screen + + +@pytest.fixture(scope="function") +def second_well_screen(water_well_thing): + with session_ctx() as session: + screen = WellScreen( + thing_id=water_well_thing.id, + screen_depth_top=30.0, + screen_depth_bottom=40.0, + screen_type="PVC", + screen_description="Test well screen description", + release_status="private", + ) + session.add(screen) + session.commit() + yield screen + session.delete(screen) + session.commit() + + +@pytest.fixture(scope="session") +def thing_id_link(water_well_thing): + with session_ctx() as session: + id_link = ThingIdLink( + thing_id=water_well_thing.id, + relation="same_as", + alternate_id="4321-1234", + alternate_organization="USGS", + release_status="private", + ) + session.add(id_link) + session.commit() + yield id_link + + +@pytest.fixture(scope="function") +def second_thing_id_link(water_well_thing): + with session_ctx() as session: + id_link = ThingIdLink( + thing_id=water_well_thing.id, + relation="same_as", + alternate_id="4321-1234", + alternate_organization="USGS", + release_status="private", + ) + session.add(id_link) + session.commit() + yield id_link + session.delete(id_link) + session.commit() + + +@pytest.fixture(scope="session") +def spring_thing(location): + with session_ctx() as session: + spring = Thing( + name="Test Spring", + thing_type="spring", + release_status="draft", + spring_type="Artesian", + ) + session.add(spring) + session.commit() + session.refresh(spring) + + assoc = LocationThingAssociation() + assoc.location_id = location.id + assoc.thing_id = spring.id + session.add(assoc) + session.commit() + yield spring + + +@pytest.fixture(scope="function") +def second_spring_thing(location): + with session_ctx() as session: + spring = Thing( + name="Second Test Spring", + thing_type="spring", + release_status="draft", + spring_type="Artesian", + ) + session.add(spring) + session.commit() + session.refresh(spring) + + assoc = LocationThingAssociation() + assoc.location_id = location.id + assoc.thing_id = spring.id + session.add(assoc) + session.commit() + yield spring + session.delete(spring) + session.commit() + + +@pytest.fixture(scope="session") +def sensor(): + with session_ctx() as session: + sensor = Sensor( + name=f"Test Sensor {uuid.uuid4()}", + model="Model X", + serial_no="123456", + datetime_installed="2023-01-01T00:00:00Z", + datetime_removed="2023-01-02T00:00:00Z", + recording_interval=60, + notes="Test equipment", + release_status="draft", + ) + session.add(sensor) + session.commit() + yield sensor + + +@pytest.fixture(scope="function") +def second_sensor(): + with session_ctx() as session: + sensor = Sensor( + name="Test Sensor 2", + model="Model X", + serial_no="123456", + datetime_installed="2023-01-01T00:00:00Z", + datetime_removed="2023-01-02T00:00:00Z", + recording_interval=60, + notes="Test equipment", + release_status="draft", + ) + session.add(sensor) + session.commit() + yield sensor + session.delete(sensor) + session.commit() + + +@pytest.fixture(scope="session") +def sample(water_well_thing, sensor): + with session_ctx() as session: + sample = Sample( + sample_date="2025-01-01T00:00:00Z", + thing_id=water_well_thing.id, + sample_type="groundwater", + sampler_name="Test Sampler", + release_status="draft", + field_sample_id=f"FS-{uuid.uuid4()}", + qc_sample="Original", + sensor_id=sensor.id, + sample_matrix="water", + sample_method="manual", + duplicate_sample_number=0, + sample_top=None, + sample_bottom=None, + ) + session.add(sample) + session.commit() + yield sample + + +@pytest.fixture(scope="function") +def second_sample(water_well_thing, sensor): + with session_ctx() as session: + sample = Sample( + thing_id=water_well_thing.id, + sample_type="groundwater", + field_sample_id="FS-9999999", + sample_date="2025-01-01T00:00:00Z", + release_status="draft", + sampler_name="Test Sampler", + qc_sample="Duplicate", + sensor_id=sensor.id, + sample_matrix="water", + sample_method="manual", + duplicate_sample_number=3, + sample_top=2, + sample_bottom=3, + ) + session.add(sample) + session.commit() + yield sample + session.delete(sample) + session.commit() + + +@pytest.fixture(scope="session") +def contact(water_well_thing): + with session_ctx() as session: + contact = Contact( + release_status="private", + name="Test Contact", + role="Owner", + contact_type="Primary", + organization="Test Organization", + ) + session.add(contact) + session.commit() + session.refresh(contact) + + association = ThingContactAssociation( + thing_id=water_well_thing.id, contact_id=contact.id + ) + session.add(association) + session.commit() + session.refresh(association) + + yield contact + + +@pytest.fixture(scope="session") +def address(contact): + with session_ctx() as session: + address = Address( + release_status="private", + address_line_1="123 Main St", + address_line_2="Apt 4B", + city="Test City", + state="NM", + postal_code="87501", + country="United States", + address_type="Primary", + contact_id=contact.id, + ) + session.add(address) + session.commit() + session.refresh(address) + yield address + + +@pytest.fixture(scope="session") +def email(contact): + with session_ctx() as session: + email = Email( + email="test@example.com", + email_type="Primary", + contact_id=contact.id, + release_status="private", + ) + session.add(email) + session.commit() + session.refresh(email) + yield email + + +@pytest.fixture(scope="session") +def phone(contact): + with session_ctx() as session: + phone = Phone( + phone_number="+15051234567", + phone_type="Mobile", + contact_id=contact.id, + release_status="private", + ) + session.add(phone) + session.commit() + session.refresh(phone) + yield phone + + +@pytest.fixture(scope="function") +def second_contact(): + with session_ctx() as session: + contact = Contact( + release_status="private", + name="Test Second Contact", + role="Owner", + contact_type="Primary", + organization=None, + ) + session.add(contact) + session.commit() + session.refresh(contact) + + yield contact + + session.delete(contact) + session.commit() + + +@pytest.fixture(scope="function") +def second_email(second_contact): + with session_ctx() as session: + email = Email( + email="testsecondcontact@gmail.com", + email_type="Primary", + contact_id=second_contact.id, + release_status="private", + ) + session.add(email) + session.commit() + session.refresh(email) + yield email + session.delete(email) + session.commit() + + +@pytest.fixture(scope="function") +def second_phone(second_contact): + with session_ctx() as session: + phone = Phone( + phone_number="123-456-7890", + phone_type="Primary", + contact_id=second_contact.id, + release_status="private", + ) + session.add(phone) + session.commit() + session.refresh(phone) + yield phone + session.delete(phone) + session.commit() + + +@pytest.fixture(scope="function") +def second_address(second_contact): + with session_ctx() as session: + address = Address( + release_status="private", + address_line_1="456 Secondary St", + address_line_2="Apt 12A", + city="Test Metropolis", + state="NM", + postal_code="87501", + country="United States", + address_type="Primary", + contact_id=second_contact.id, + ) + session.add(address) + session.commit() + session.refresh(address) + yield address + session.delete(address) + session.commit() + + +@pytest.fixture(scope="function") +def third_contact(): + with session_ctx() as session: + contact = Contact( + release_status="private", + name=None, + role="Owner", + contact_type="Primary", + organization="Third Organization", + ) + session.add(contact) + session.commit() + session.refresh(contact) + + yield contact + + session.delete(contact) + session.commit() + + +@pytest.fixture(scope="session") +def asset(): + with session_ctx() as session: + asset = Asset( + release_status="draft", + name="Test Asset", + label="test label", + mime_type="image/png", + size=12345, + storage_service="mock_service", + storage_path="mock/path/to/asset", + uri="https://storage.googleapis.com/mock-bucket/mock-asset", + ) + session.add(asset) + session.commit() + session.refresh(asset) + yield asset + + +@pytest.fixture(scope="function") +def asset_with_associated_thing(water_well_thing): + with session_ctx() as session: + asset = Asset( + release_status="draft", + name="Test Asset with water_well_thing", + label="test label", + mime_type="application/pdf", + size=12345, + storage_service="mock_service", + storage_path="mock/path/to/asset", + uri="https://storage.googleapis.com/mock-bucket/mock-asset", + ) + session.add(asset) + session.commit() + session.refresh(asset) + + association = AssetThingAssociation( + asset_id=asset.id, thing_id=water_well_thing.id + ) + session.add(association) + session.commit() + session.refresh(association) + + yield asset + session.delete(asset) + session.delete(association) + session.commit() + + +@pytest.fixture(scope="function") +def second_asset(): + with session_ctx() as session: + asset = Asset( + name="Second test asset", + label="Second test label", + mime_type="application/pdf", + size=2468, + storage_service="mock_service", + storage_path="mock/path/to/asset", + uri="https://storage.googleapis.com/mock-bucket/second-mock-asset", + ) + session.add(asset) + session.commit() + session.refresh(asset) + yield asset + session.delete(asset) + session.commit() + + +@pytest.fixture(scope="session") +def groundwater_level_observation(sensor, sample): + with session_ctx() as session: + observation = Observation( + observation_datetime="2025-01-01T00:04:00Z", + sample_id=sample.id, + sensor_id=sensor.id, + observed_property="groundwater level:groundwater level", + release_status="draft", + value=10.0, + unit="ft", + measuring_point_height=5.0, + level_status="Water level not affected by status", + ) + session.add(observation) + session.commit() + yield observation + + +@pytest.fixture(scope="session") +def water_chemistry_observation(sensor, sample): + with session_ctx() as session: + observation = Observation( + observation_datetime="2025-01-01T00:03:00Z", + sample_id=sample.id, + sensor_id=sensor.id, + observed_property="water chemistry:pH", + release_status="draft", + value=4.0, + unit="dimensionless", + ) + session.add(observation) + session.commit() + yield observation + + +@pytest.fixture(scope="session") +def geothermal_observation(sensor, sample): + with session_ctx() as session: + observation = Observation( + observation_datetime="2025-01-01T00:02:00Z", + sample_id=sample.id, + sensor_id=sensor.id, + observed_property="geothermal:temperature", + release_status="draft", + value=20.0, + unit="deg C", + observation_depth=200.0, + ) + session.add(observation) + session.commit() + yield observation + + +@pytest.fixture(scope="function") +def observation_to_delete(sample, sensor): + with session_ctx() as session: + observation = Observation( + observation_datetime="2019-01-01T00:03:00Z", + sample_id=sample.id, + sensor_id=sensor.id, + observed_property="water chemistry:pH", + release_status="draft", + value=4.0, + unit="dimensionless", + ) + session.add(observation) + session.commit() + yield observation + + +@pytest.fixture(scope="session") +def group(water_well_thing): + with session_ctx() as session: + group = Group( + release_status="draft", + name="Test Group", + description="This is a test group.", + project_area="MULTIPOLYGON(((-107.2 33.6, -106.6 33.6, -106.6 34.2, -107.2 34.2, -107.2 33.6)))", + ) + + session.add(group) + session.commit() + session.refresh(group) + + group_thing_association = GroupThingAssociation( + group_id=group.id, thing_id=water_well_thing.id + ) + session.add(group_thing_association) + session.commit() + session.refresh(group_thing_association) + + yield group + + +@pytest.fixture(scope="function") +def second_group(water_well_thing): + with session_ctx() as session: + group = Group( + release_status="draft", + name="Second Test Group", + description="This is a second test group.", + project_area="MULTIPOLYGON(((-107.2 33.6, -106.6 33.6, -106.6 34.2, 0 0, -107.2 34.2, -107.2 33.6)))", + ) + + session.add(group) + session.commit() + session.refresh(group) + + group_thing_association = GroupThingAssociation( + group_id=group.id, thing_id=water_well_thing.id + ) + session.add(group_thing_association) + session.commit() + session.refresh(group_thing_association) + + yield group + + +@pytest.fixture(scope="session") +def lexicon_category(): + with session_ctx() as session: + category = LexiconCategory( + name="first test category", description="describes the first test category" + ) + session.add(category) + session.commit() + session.refresh(category) + yield category + + +@pytest.fixture(scope="function") +def second_lexicon_category(): + with session_ctx() as session: + category = LexiconCategory( + name="second test category", + description="describes the second test category", + ) + session.add(category) + session.commit() + session.refresh(category) + yield category + session.delete(category) + session.commit() + + +@pytest.fixture(scope="session") +def lexicon_term(lexicon_category): + with session_ctx() as session: + term = LexiconTerm( + term="first test term", + definition="defines the first test term", + ) + session.add(term) + session.commit() + session.refresh(term) + + term_category_association = LexiconTermCategoryAssociation( + term_id=term.id, category_id=lexicon_category.id + ) + session.add(term_category_association) + session.commit() + session.refresh(term_category_association) + + yield term + + +@pytest.fixture(scope="session") +def second_lexicon_term(lexicon_category): + with session_ctx() as session: + term = LexiconTerm( + term="second test term", + definition="defines the second test term", + ) + session.add(term) + session.commit() + session.refresh(term) + + term_category_association = LexiconTermCategoryAssociation( + term_id=term.id, category_id=lexicon_category.id + ) + session.add(term_category_association) + session.commit() + session.refresh(term_category_association) + + yield term + + +@pytest.fixture(scope="session") +def third_lexicon_term(lexicon_category): + with session_ctx() as session: + term = LexiconTerm( + term="third test term", + definition="defines the third test term", + ) + session.add(term) + session.commit() + session.refresh(term) + + term_category_association = LexiconTermCategoryAssociation( + term_id=term.id, category_id=lexicon_category.id + ) + session.add(term_category_association) + session.commit() + session.refresh(term_category_association) + + yield term + + +@pytest.fixture(scope="session") +def fourth_lexicon_term(lexicon_category): + with session_ctx() as session: + term = LexiconTerm( + term="fourth test term", + definition="defines the fourth test term", + ) + session.add(term) + session.commit() + session.refresh(term) + + term_category_association = LexiconTermCategoryAssociation( + term_id=term.id, category_id=lexicon_category.id + ) + session.add(term_category_association) + session.commit() + session.refresh(term_category_association) + + yield term + + +@pytest.fixture(scope="session") +def lexicon_triple(lexicon_term, second_lexicon_term): + with session_ctx() as session: + triple = LexiconTriple( + subject=lexicon_term.term, + predicate="related_to", + object_=second_lexicon_term.term, + ) + session.add(triple) + session.commit() + session.refresh(triple) + yield triple + + +@pytest.fixture(scope="session") +def second_lexicon_triple(third_lexicon_term, fourth_lexicon_term): + with session_ctx() as session: + triple = LexiconTriple( + subject=third_lexicon_term.term, + predicate="related_to", + object_=fourth_lexicon_term.term, + ) + session.add(triple) + session.commit() + session.refresh(triple) + yield triple diff --git a/tests/test_asset.py b/tests/test_asset.py index ecc42d33a..094bbf0fa 100644 --- a/tests/test_asset.py +++ b/tests/test_asset.py @@ -13,26 +13,18 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -import shutil - from api.asset import get_storage_bucket from core.app import app -from tests import client +from core.dependencies import viewer_function, admin_function, editor_function +from db import Asset +from tests import client, cleanup_post_test, override_authentication, cleanup_patch_test + import pytest -import os -import glob - - -# @pytest.fixture(scope="module", autouse=True) -# def cleanup(): -# """ -# Fixture to clean up after tests. -# This can be used to delete any assets created during the tests. -# """ -# yield -# depot = DepotManager.get() -# for asset in depot.list(): -# depot.delete(asset) +from unittest.mock import patch + +# CLASSES, FIXTURES, AND FUNCTIONS ============================================= + + class MockBlob: def upload_from_file(self, *args, **kwargs): pass @@ -40,50 +32,247 @@ def upload_from_file(self, *args, **kwargs): def generate_signed_url(self, *args, **kwargs): return "https://storage.googleapis.com/mock-bucket/mock-asset" + def delete(self, *args, **kwargs): + pass + class MockStorageBucket: + name = "mock-bucket" + def blob(self, *args, **kwargs): return MockBlob() + def get_blob(self, *args, **kwargs): + return None + def mock_storage_bucket(): return MockStorageBucket() -app.dependency_overrides = { - get_storage_bucket: mock_storage_bucket, -} +@pytest.fixture(scope="module", autouse=True) +def override_dependency_fixture(): + app.dependency_overrides = { + get_storage_bucket: mock_storage_bucket, + } + + app.dependency_overrides[viewer_function] = override_authentication() + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "test", "sub": "314159"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "test", "sub": "314159"} + ) + + yield + + app.dependency_overrides = {} + + +# POST & UPLOAD tests ========================================================== -def test_add_asset(): +def test_upload_asset(): path = "tests/data/riochama.png" with open(path, "rb") as file: response = client.post( - "/asset", + "/asset/upload", files={"file": ("riochama.png", file, "image/png")}, ) assert response.status_code == 201 data = response.json() - assert data["filename"] == "riochama.png" - url = data["url"] - assert url.startswith("https://storage.googleapis.com/") + assert "storage_path" in data -def test_get_asset(): - response = client.get("/asset/1") +def test_add_asset(water_well_thing): + payload = { + "release_status": "draft", + "thing_id": water_well_thing.id, + "name": "test_asset.png", + "label": "Test Asset", + "uri": "https://storage.googleapis.com/mock-bucket/mock-asset", + "storage_service": "mock_service", + "storage_path": "mock/path/to/asset/test_asset.png", + "mime_type": "image/png", + "size": 12345, + } + resp = client.post("/asset", json=payload) + assert resp.status_code == 201 + data = resp.json() + assert "id" in data + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["name"] == payload["name"] + assert data["label"] == payload["label"] + assert data["uri"] == payload["uri"] + assert data["storage_service"] == "gcs" + assert data["storage_path"] == payload["storage_path"] + assert data["mime_type"] == payload["mime_type"] + assert data["size"] == payload["size"] + assert data["signed_url"] == None + + cleanup_post_test(Asset, data["id"]) + + +def test_add_asset_409_bad_thing_id(water_well_thing): + bad_thing_id = 99999 + payload = { + "thing_id": bad_thing_id, + "name": "test_asset.png", + "label": "Test Asset", + "uri": "https://storage.googleapis.com/mock-bucket/mock-asset", + "storage_service": "mock_service", + "storage_path": "mock/path/to/asset/test_asset.png", + "mime_type": "image/png", + "size": 12345, + "release_status": "draft", + } + resp = client.post("/asset", json=payload) + assert resp.status_code == 409 + data = resp.json() + assert data["detail"][0]["loc"] == ["body", "thing_id"] + assert data["detail"][0]["msg"] == f"Thing with ID {bad_thing_id} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": bad_thing_id} + + +# GET tests ==================================================================== + + +def test_get_assets(asset, asset_with_associated_thing): + response = client.get("/asset") assert response.status_code == 200 data = response.json() - assert data["id"] == 1 - assert data["filename"] == "riochama.png" - assert data["url"] == "https://storage.googleapis.com/mock-bucket/mock-asset" + assert data["total"] == 2 + assert data["items"][0]["id"] == asset.id + assert data["items"][0]["created_at"] == asset.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["release_status"] == asset.release_status + assert data["items"][0]["name"] == asset.name + assert data["items"][0]["label"] == asset.label + assert data["items"][0]["storage_path"] == asset.storage_path + assert data["items"][0]["mime_type"] == asset.mime_type + assert data["items"][0]["size"] == asset.size + assert data["items"][0]["uri"] == asset.uri + assert data["items"][0]["storage_service"] == asset.storage_service + assert data["items"][0]["signed_url"] == None + assert data["items"][1]["id"] == asset_with_associated_thing.id + assert data["items"][1][ + "created_at" + ] == asset_with_associated_thing.created_at.isoformat().replace("+00:00", "Z") + assert ( + data["items"][1]["release_status"] == asset_with_associated_thing.release_status + ) + assert data["items"][1]["name"] == asset_with_associated_thing.name + assert data["items"][1]["label"] == asset_with_associated_thing.label + assert data["items"][1]["storage_path"] == asset_with_associated_thing.storage_path + assert data["items"][1]["mime_type"] == asset_with_associated_thing.mime_type + assert data["items"][1]["size"] == asset_with_associated_thing.size + assert data["items"][1]["uri"] == asset_with_associated_thing.uri + assert ( + data["items"][1]["storage_service"] + == asset_with_associated_thing.storage_service + ) + assert data["items"][1]["signed_url"] == None -def test_get_asset_not_found(): - response = client.get("/asset/9999") + +def test_get_assets_thing_id(asset_with_associated_thing, water_well_thing): + with patch("api.asset.get_storage_bucket", return_value=MockStorageBucket()): + query_parameters = {"thing_id": water_well_thing.id} + response = client.get("/asset", params=query_parameters) + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == asset_with_associated_thing.id + assert ( + data["items"][0]["signed_url"] + == mock_storage_bucket().blob().generate_signed_url() + ) + + +def test_get_asset_by_id(asset): + response = client.get(f"/asset/{asset.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == asset.id + assert data["created_at"] == asset.created_at.isoformat().replace("+00:00", "Z") + assert data["release_status"] == asset.release_status + assert data["name"] == asset.name + assert data["label"] == asset.label + assert data["storage_path"] == asset.storage_path + assert data["mime_type"] == asset.mime_type + assert data["size"] == asset.size + assert data["uri"] == asset.uri + assert data["storage_service"] == asset.storage_service + assert data["signed_url"] == MockBlob().generate_signed_url() + + +def test_get_asset_by_id_404_not_found(asset): + bad_id = 99999 + response = client.get(f"/asset/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Asset with ID {bad_id} not found." + + +# PATCH tests ================================================================== + + +def test_patch_asset(asset): + payload = { + "name": "patched name", + "label": "patched label", + "release_status": "public", + } + response = client.patch(f"/asset/{asset.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["id"] == asset.id + assert data["name"] == payload["name"] + assert data["label"] == payload["label"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Asset, payload, asset) + + +def test_patch_asset_404_not_found(asset): + bad_id = 99999 + payload = {"name": "patched name", "label": "patched label"} + response = client.patch(f"/asset/{bad_id}", json=payload) assert response.status_code == 404 - assert response.json() == {"detail": "Asset not found"} + data = response.json() + assert data["detail"] == f"Asset with ID {bad_id} not found." + + +# DELETE tests ================================================================= + + +def test_delete_asset(second_asset): + response = client.delete(f"/asset/{second_asset.id}") + assert response.status_code == 204 + + # verify deletion + response = client.get(f"/asset/{second_asset.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Asset with ID {second_asset.id} not found." + + +def test_delete_asset_404_not_found(second_asset): + bad_id = 99999 + response = client.delete(f"/asset/{bad_id}/remove") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Asset with ID {bad_id} not found." + + +def test_remove_asset(second_asset): + response = client.delete(f"/asset/{second_asset.id}/remove") + assert response.status_code == 204 # ============= EOF ============================================= diff --git a/tests/test_base.py b/tests/test_base.py deleted file mode 100644 index ac5a465aa..000000000 --- a/tests/test_base.py +++ /dev/null @@ -1,281 +0,0 @@ -# from fastapi.testclient import TestClient -# from main import app -# from models import Base, engine -import pytest - -from db import Thing -from db.engine import get_db_session - -# Base.metadata.drop_all(engine) -# Base.metadata.create_all(engine) - -# client = TestClient(app) - -from tests import client - - -# ADD tests ====================================================== -@pytest.mark.skip -def test_add_group(): - response = client.post("/base/group", json={"name": "Test Group"}) - assert response.status_code == 201 - data = response.json() - assert "id" in data - assert data["name"] == "Test Group" - - -@pytest.mark.skip -def test_add_group_location(): - response = client.post( - "/base/group_location", json={"group_id": 1, "location_id": 1} - ) - assert response.status_code == 201 - data = response.json() - assert "id" in data - assert data["group_id"] == 1 - assert data["location_id"] == 1 - - -@pytest.fixture(scope="function") -def thing(): - session = next(get_db_session()) - thing = Thing() - session.add(thing) - session.commit() - yield - - session.close() - - -def test_add_contact(thing): - response = client.post( - "/base/contact", - json={ - "name": "Test Contact", - "role": "Owner", - "thing_id": 1, - "emails": [{"email": "fasdfasdf@gmail.com", "email_type": "Primary"}], - "phones": [{"phone_number": "+12345678901", "phone_type": "Primary"}], - "addresses": [ - { - "address_line_1": "123 Main St", - "city": "Test City", - "state": "NM", - "postal_code": "87501", - "country": "US", - "address_type": "Primary", - } - ], - }, - ) - data = response.json() - assert response.status_code == 201 - assert "id" in data - assert data["name"] == "Test Contact" - assert data["role"] == "Owner" - - assert len(data["emails"]) == 1 - assert data["emails"][0]["email"] == "fasdfasdf@gmail.com" - - assert len(data["phones"]) == 1 - assert data["phones"][0]["phone_number"] == "+12345678901" - assert len(data["addresses"]) == 1 - assert data["addresses"][0]["address_line_1"] == "123 Main St" - - # assert data["email"] == "fasdfasdf@gmail.com" - - # for i in range(2, 5): - # response = client.post( - # "/base/contact", - # json={ - # "owner_id": i, - # "name": f"Test Contact {i}", - # "email": f"foo{i}@gmail.com", - # "phone": f"+1234567890{i}", - # }, - # ) - # assert response.status_code == 201 - # data = response.json() - # assert "id" in data - # assert data["name"] == f"Test Contact {i}" - # assert data["email"] == f"foo{i}@gmail.com" - # assert data["phone"] == f"+1234567890{i}" - - -def test_phone_validation_fail(): - for phone in [ - "definitely not a phone", - # "1234567890", - # "123-456-7890", - # "123-456-78901", - # "123-4567-890", - "123-456-789a", - "123-456-7890x1234", - "123.456.7890", - "(123) 456-7890", - ]: - - response = client.post( - "/base/contact", - json={ - "name": "Test Contact 2", - "thing_id": 1, - "role": "Primary", - "emails": [{"email": "fasdfasdf@gmail.com", "email_type": "Primary"}], - "phones": [{"phone_number": phone, "phone_type": "Primary"}], - "addresses": [ - { - "address_line_1": "123 Main St", - "city": "Test City", - "state": "NM", - "postal_code": "87501", - "country": "US", - "address_type": "Primary", - } - ], - }, - ) - data = response.json() - assert response.status_code == 422 - assert "detail" in data, "Expected 'detail' in response" - assert len(data["detail"]) == 1, "Expected 1 error in response" - detail = data["detail"][0] - assert detail["msg"] == f"Value error, Invalid phone number. {phone}" - - -def test_email_validation_fail(): - - for email in [ - "", - "invalid-email", - "invalid@domain", - "invalid@domain.", - "@domain.com", - ]: - response = client.post( - "/base/contact", - json={ - "name": "Test ContactX", - "thing_id": 1, - "role": "Primary", - "emails": [{"email": email, "email_type": "Primary"}], - "phones": [{"phone_number": "+12345678901", "phone_type": "Primary"}], - "addresses": [ - { - "address_line_1": "123 Main St", - "city": "Test City", - "state": "NM", - "postal_code": "87501", - "country": "US", - "address_type": "Primary", - } - ], - }, - ) - data = response.json() - assert response.status_code == 422 - assert "detail" in data, "Expected 'detail' in response" - assert len(data["detail"]) == 1, "Expected 1 error in response" - detail = data["detail"][0] - assert detail["msg"] == f"Value error, Invalid email format. {email}" - - -# GET tests ====================================================== - - -# def test_get_locations(): -# response = client.get("/base/location") -# assert response.status_code == 200 -# assert len(response.json()) > 0 - - -@pytest.mark.skip -def test_get_groups(): - response = client.get("/base/group") - assert response.status_code == 200 - assert len(response.json()) > 0 - - -def test_get_contacts(): - response = client.get("/base/contact") - assert response.status_code == 200 - assert len(response.json()) > 0 - - -@pytest.mark.skip -def test_get_group_locations(): - response = client.get("/base/group_location") - assert response.status_code == 200 - assert len(response.json()) > 0 - - -# test item retrieval via filter =========================================== - - -# Test item retrieval ====================================================== -@pytest.mark.skip -def test_item_get_spring(): - response = client.get("/base/spring/1") - assert response.status_code == 200 - data = response.json() - assert data["id"] == 1 - assert data["location_id"] == 1 - - -@pytest.mark.skip -def test_item_get_location(): - response = client.get("/base/location/1") - assert response.status_code == 200 - data = response.json() - assert data["id"] == 1 - assert data["name"] == "Test Location 1" - assert "well" not in data - - -@pytest.mark.skip -def test_item_get_group(): - response = client.get("/base/group/1") - assert response.status_code == 200 - data = response.json() - assert data["id"] == 1 - assert data["name"] == "Test Group" - - -@pytest.mark.skip -def test_item_get_wells(): - response = client.get("/base/well/1") - assert response.status_code == 200 - data = response.json() - assert data["id"] == 1 - assert data["location_id"] == 1 - - -@pytest.mark.skip -def test_item_get_well_screens(): - response = client.get("/base/wellscreen/1") - assert response.status_code == 200 - data = response.json() - assert data["id"] == 1 - assert data["well_id"] == 1 - assert data["screen_depth_top"] == 10.0 - assert data["screen_depth_bottom"] == 20.0 - - -@pytest.mark.skip -def test_item_get_group_locations(): - response = client.get("/base/group_location/1") - assert response.status_code == 200 - data = response.json() - assert data["id"] == 1 - assert data["group_id"] == 1 - assert data["location_id"] == 1 - - -def test_item_get_contact(): - response = client.get("/base/contact/1") - assert response.status_code == 200 - data = response.json() - assert data["id"] == 1 - assert data["name"] == "Test Contact" - # assert data["email"] == "fasdfasdf@gmail.com" - # assert data["phone"] == "+12345678901" diff --git a/tests/test_collabnet.py b/tests/test_collabnet.py index 673939cb1..2a8ba0d7f 100644 --- a/tests/test_collabnet.py +++ b/tests/test_collabnet.py @@ -18,36 +18,36 @@ import pytest from db import Location -from db.engine import get_db_session +from db.engine import get_db_session, session_ctx # from db import get_db_session, database_sessionmaker # from db.base import Location -from db.thing.well import WellThing -from db.collabnet import CollaborativeNetworkWell -from services.thing_helper import add_well +# from db.thing.well import WellThing +# from db.collabnet import CollaborativeNetworkWell +from services.thing_helper import add_thing from tests import client @pytest.fixture(scope="function") def well(): - session = next(get_db_session()) + with session_ctx() as session: + loc = Location(point="SRID=4326;POINT(0 0)") + session.add(loc) + session.commit() - loc = Location(name="Test Location", point="SRID=4326;POINT(0 0)") - session.add(loc) - session.commit() + wt = add_thing( + session, + { + "location_id": 1, + "name": "Collabnet Test Well", + }, + "well", + ) - wt = add_well( - session, - { - "location_id": 1, - }, - ) - - yield wt - - session.close() + yield wt +@pytest.mark.skip def test_add_collabnet_well(well): response = client.post( "/collabnet/add", diff --git a/tests/test_contact.py b/tests/test_contact.py new file mode 100644 index 000000000..b505ff4cb --- /dev/null +++ b/tests/test_contact.py @@ -0,0 +1,1055 @@ +from core.dependencies import ( + amp_viewer_function, + amp_editor_function, + amp_admin_function, +) +from db import Contact, Address, Email, Phone +from main import app +from tests import client, cleanup_post_test, cleanup_patch_test, override_authentication +from schemas.contact import ValidateEmail, ValidatePhone, ValidateContact + +import pytest +from pydantic import ValidationError +import re + + +@pytest.fixture(scope="module", autouse=True) +def override_authentication_dependency_fixture(): + + app.dependency_overrides[amp_admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[amp_editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[amp_viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# VALIDATION tests ============================================================= + + +def test_check_empty_fields(): + with pytest.raises( + ValueError, match="Either name or organization must be provided." + ): + ValidateContact(name=None, organization=None) + + +def test_validate_phone(): + for phone in [ + "definitely not a phone", + "123-456-789a", + "123-456-7890x1234", + "123.456.7890", + "(123) 456-7890", + ]: + pattern = re.escape(f"Value error, Invalid phone number. {phone}") + with pytest.raises(ValidationError, match=pattern): + ValidatePhone(phone_number=phone, phone_type="Primary") + + +def test_validate_email(): + for email in [ + "invalid-email", + "user@.com", + "user@domain..com", + ]: + pattern = re.escape(f"Value error, Invalid email format. {email}") + with pytest.raises(ValidationError, match=pattern): + ValidateEmail(email=email) + + +# ADD tests ==================================================================== + + +def test_add_contact(spring_thing): + payload = { + "release_status": "private", + "name": "Test Contact 2", + "role": "Owner", + "contact_type": "Primary", + "organization": "Well Owner LLC", + "thing_id": spring_thing.id, + "emails": [ + { + "email": "testcontact2@gmail.com", + "email_type": "Primary", + "release_status": "private", + } + ], + "phones": [ + { + "phone_number": "+14153334444", + "phone_type": "Primary", + "release_status": "private", + } + ], + "addresses": [ + { + "release_status": "private", + "address_line_1": "123 Default St", + "address_line_2": "Apt 8R", + "city": "Test Metropolis", + "state": "NM", + "postal_code": "87501", + "country": "United States", + "address_type": "Primary", + } + ], + } + response = client.post("/contact", json=payload) + data = response.json() + + assert response.status_code == 201 + assert "id" in data + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["name"] == payload["name"] + assert data["role"] == payload["role"] + assert data["contact_type"] == payload["contact_type"] + assert data["organization"] == payload["organization"] + + assert len(data["emails"]) == 1 + assert "id" in data["emails"][0] + assert "created_at" in data["emails"][0] + assert data["emails"][0]["contact_id"] == data["id"] + assert data["emails"][0]["email"] == payload["emails"][0]["email"] + assert data["emails"][0]["email_type"] == payload["emails"][0]["email_type"] + assert data["emails"][0]["release_status"] == payload["emails"][0]["release_status"] + + assert len(data["phones"]) == 1 + assert "id" in data["phones"][0] + assert "created_at" in data["phones"][0] + assert data["phones"][0]["contact_id"] == data["id"] + assert data["phones"][0]["phone_number"] == payload["phones"][0]["phone_number"] + assert data["phones"][0]["phone_type"] == payload["phones"][0]["phone_type"] + assert data["phones"][0]["release_status"] == payload["phones"][0]["release_status"] + + assert len(data["addresses"]) == 1 + assert "id" in data["addresses"][0] + assert "created_at" in data["addresses"][0] + assert data["addresses"][0]["contact_id"] == data["id"] + assert ( + data["addresses"][0]["address_line_1"] + == payload["addresses"][0]["address_line_1"] + ) + assert ( + data["addresses"][0]["address_line_2"] + == payload["addresses"][0]["address_line_2"] + ) + assert data["addresses"][0]["city"] == payload["addresses"][0]["city"] + assert data["addresses"][0]["state"] == payload["addresses"][0]["state"] + assert data["addresses"][0]["postal_code"] == payload["addresses"][0]["postal_code"] + assert data["addresses"][0]["country"] == payload["addresses"][0]["country"] + assert ( + data["addresses"][0]["address_type"] == payload["addresses"][0]["address_type"] + ) + assert data["release_status"] == payload["release_status"] + + cleanup_post_test(Contact, data["id"]) + + +def test_add_contact_409_bad_thing_id(): + bad_thing_id = 9999 + payload = { + "release_status": "private", + "name": "Test Contact 3", + "role": "Owner", + "contact_type": "Primary", + "organization": "Well Owner LLC", + "thing_id": bad_thing_id, + "emails": [ + { + "email": "testcontact3@gmail.com", + "email_type": "Primary", + "release_status": "private", + } + ], + "phones": [ + { + "phone_number": "+14153334445", + "phone_type": "Primary", + "release_status": "private", + } + ], + "addresses": [ + { + "release_status": "private", + "address_line_1": "123 Default St", + "address_line_2": "Apt 8R", + "city": "Test Metropolis", + "state": "NM", + "postal_code": "87501", + "country": "United States", + "address_type": "Primary", + } + ], + } + response = client.post("/contact", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["msg"] == f"Thing with ID {bad_thing_id} not found." + + +def test_add_address(contact): + payload = { + "contact_id": contact.id, + "address_line_1": "456 Secondary St", + "address_line_2": "Apt 12A", + "city": "Test Metropolis", + "state": "NM", + "postal_code": "87502", + "country": "United States", + "address_type": "Primary", + "release_status": "draft", + } + response = client.post("/contact/address", json=payload) + data = response.json() + assert response.status_code == 201 + assert "id" in data + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["contact_id"] == contact.id + assert data["address_line_1"] == payload["address_line_1"] + assert data["address_line_2"] == payload["address_line_2"] + assert data["city"] == payload["city"] + assert data["state"] == payload["state"] + assert data["postal_code"] == payload["postal_code"] + assert data["country"] == payload["country"] + assert data["address_type"] == payload["address_type"] + + cleanup_post_test(Address, data["id"]) + + +def test_add_address_409_contact_not_found(contact): + bad_contact_id = 9999 + payload = { + "contact_id": bad_contact_id, + "address_line_1": "456 Secondary St", + "address_line_2": "Apt 12A", + "city": "Test Metropolis", + "state": "NM", + "postal_code": "87502", + "country": "United States", + "address_type": "Secondary", + "release_status": "draft", + } + response = client.post("/contact/address", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["msg"] == f"Contact with ID {bad_contact_id} not found." + assert data["detail"][0]["loc"] == ["body", "contact_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"contact_id": bad_contact_id} + + +def test_add_email(contact): + payload = { + "contact_id": contact.id, + "email": "anothertestemail@nmt.edu", + "email_type": "Primary", + "release_status": "draft", + } + response = client.post("/contact/email", json=payload) + data = response.json() + assert response.status_code == 201 + assert "id" in data + assert "created_at" in data + assert data["contact_id"] == contact.id + assert data["email"] == payload["email"] + assert data["email_type"] == payload["email_type"] + assert data["release_status"] == payload["release_status"] + + cleanup_post_test(Email, data["id"]) + + +def test_add_email_409_contact_not_found(contact): + bad_contact_id = 9999 + payload = { + "contact_id": bad_contact_id, + "email": "anothertestemail@nmt.edu", + "email_type": "Primary", + "release_status": "draft", + } + response = client.post("/contact/email", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["msg"] == f"Contact with ID {bad_contact_id} not found." + assert data["detail"][0]["loc"] == ["body", "contact_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"contact_id": bad_contact_id} + + +def test_add_phone(contact): + payload = { + "contact_id": contact.id, + "phone_number": "+12345678901", + "phone_type": "Primary", + "release_status": "draft", + } + response = client.post("/contact/phone", json=payload) + data = response.json() + assert response.status_code == 201 + assert "id" in data + assert "created_at" in data + assert data["contact_id"] == contact.id + assert data["phone_number"] == payload["phone_number"] + assert data["phone_type"] == payload["phone_type"] + assert data["release_status"] == payload["release_status"] + + cleanup_post_test(Phone, data["id"]) + + +def test_add_phone_409_contact_not_found(contact): + bad_contact_id = 9999 + payload = { + "contact_id": bad_contact_id, + "phone_number": "+12345678901", + "phone_type": "Primary", + "release_status": "draft", + } + response = client.post("/contact/phone", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["msg"] == f"Contact with ID {bad_contact_id} not found." + assert data["detail"][0]["loc"] == ["body", "contact_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"contact_id": bad_contact_id} + + +# def test_add_thing_association(thing, second_contact): +# payload = {"thing_id": thing.id} +# response = client.post( +# f"/contact/{second_contact.id}/thing-association", json=payload +# ) +# data = response.json() +# assert response.status_code == 201 +# assert "id" in data +# assert data["thing_id"] == thing.id +# assert data["contact_id"] == second_contact.id + +# cleanup_post_test(ThingContactAssociation, data["id"]) + + +# def test_add_thing_association_404_contact_not_found(contact, thing): +# bad_contact_id = 99999 +# payload = {"thing_id": thing.id} +# response = client.post(f"/contact/{bad_contact_id}/thing-association", json=payload) +# assert response.status_code == 404 +# data = response.json() +# assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +# def test_add_thing_association_409_thing_not_found(thing, contact): +# bad_thing_id = 9999 +# payload = {"thing_id": bad_thing_id} +# response = client.post(f"/contact/{contact.id}/thing-association", json=payload) +# assert response.status_code == 409 +# data = response.json() +# assert data["detail"][0]["msg"] == f"Thing with ID {bad_thing_id} not found." +# assert data["detail"][0]["loc"] == ["body", "thing_id"] +# assert data["detail"][0]["type"] == "value_error" +# assert data["detail"][0]["input"] == {"thing_id": bad_thing_id} + + +# GET tests ====================================================== + + +def test_get_contacts(contact, email, address, phone): + response = client.get("/contact") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == contact.id + assert data["items"][0]["created_at"] == contact.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["name"] == contact.name + assert data["items"][0]["role"] == contact.role + assert data["items"][0]["contact_type"] == contact.contact_type + assert data["items"][0]["release_status"] == contact.release_status + assert data["items"][0]["organization"] == contact.organization + + assert len(data["items"][0]["emails"]) == 1 + assert data["items"][0]["emails"][0]["id"] == email.id + assert data["items"][0]["emails"][0][ + "created_at" + ] == email.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["emails"][0]["contact_id"] == email.contact_id + assert data["items"][0]["emails"][0]["email"] == email.email + assert data["items"][0]["emails"][0]["email_type"] == email.email_type + assert data["items"][0]["emails"][0]["release_status"] == email.release_status + + assert len(data["items"][0]["phones"]) == 1 + assert data["items"][0]["phones"][0]["id"] == phone.id + assert data["items"][0]["phones"][0][ + "created_at" + ] == phone.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["phones"][0]["contact_id"] == phone.contact_id + assert data["items"][0]["phones"][0]["phone_number"] == phone.phone_number + assert data["items"][0]["phones"][0]["phone_type"] == phone.phone_type + assert data["items"][0]["phones"][0]["release_status"] == phone.release_status + + assert len(data["items"][0]["addresses"]) == 1 + assert data["items"][0]["addresses"][0]["id"] == address.id + assert data["items"][0]["addresses"][0][ + "created_at" + ] == address.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["addresses"][0]["contact_id"] == address.contact_id + assert data["items"][0]["addresses"][0]["address_line_1"] == address.address_line_1 + assert data["items"][0]["addresses"][0]["address_line_2"] == address.address_line_2 + assert data["items"][0]["addresses"][0]["city"] == address.city + assert data["items"][0]["addresses"][0]["state"] == address.state + assert data["items"][0]["addresses"][0]["postal_code"] == address.postal_code + assert data["items"][0]["addresses"][0]["country"] == address.country + assert data["items"][0]["addresses"][0]["address_type"] == address.address_type + assert data["items"][0]["addresses"][0]["release_status"] == address.release_status + + +def test_get_contact_by_id(contact, email, address, phone): + response = client.get(f"/contact/{contact.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == contact.id + assert data["created_at"] == contact.created_at.isoformat().replace("+00:00", "Z") + assert data["name"] == contact.name + assert data["role"] == contact.role + assert data["contact_type"] == contact.contact_type + assert data["release_status"] == contact.release_status + assert data["organization"] == contact.organization + + assert len(data["emails"]) == 1 + assert data["emails"][0]["id"] == email.id + assert data["emails"][0]["created_at"] == email.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["emails"][0]["contact_id"] == email.contact_id + assert data["emails"][0]["email"] == email.email + assert data["emails"][0]["email_type"] == email.email_type + assert data["emails"][0]["release_status"] == email.release_status + + assert len(data["phones"]) == 1 + assert data["phones"][0]["id"] == phone.id + assert data["phones"][0]["created_at"] == phone.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["phones"][0]["contact_id"] == phone.contact_id + assert data["phones"][0]["phone_number"] == phone.phone_number + assert data["phones"][0]["phone_type"] == phone.phone_type + assert data["phones"][0]["release_status"] == phone.release_status + + assert len(data["addresses"]) == 1 + assert data["addresses"][0]["id"] == address.id + assert data["addresses"][0]["created_at"] == address.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["addresses"][0]["contact_id"] == address.contact_id + assert data["addresses"][0]["address_line_1"] == address.address_line_1 + assert data["addresses"][0]["address_line_2"] == address.address_line_2 + assert data["addresses"][0]["city"] == address.city + assert data["addresses"][0]["state"] == address.state + assert data["addresses"][0]["postal_code"] == address.postal_code + assert data["addresses"][0]["country"] == address.country + assert data["addresses"][0]["address_type"] == address.address_type + assert data["addresses"][0]["release_status"] == address.release_status + + +def test_get_contact_by_id_404_not_found(contact): + bad_contact_id = 99999 + response = client.get(f"/contact/{bad_contact_id}") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +def test_get_contact_emails(contact, email): + response = client.get(f"/contact/{contact.id}/email") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == email.id + assert data["items"][0]["created_at"] == email.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["contact_id"] == email.contact_id + assert data["items"][0]["email"] == email.email + assert data["items"][0]["email_type"] == email.email_type + assert data["items"][0]["release_status"] == email.release_status + + +def test_get_contact_emails_404_contact_not_found(contact, email): + bad_contact_id = 99999 + response = client.get(f"/contact/{bad_contact_id}/email") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +def test_get_contact_phones(contact, phone): + response = client.get(f"/contact/{contact.id}/phone") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == phone.id + assert data["items"][0]["created_at"] == phone.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["contact_id"] == phone.contact_id + assert data["items"][0]["phone_number"] == phone.phone_number + assert data["items"][0]["phone_type"] == phone.phone_type + assert data["items"][0]["release_status"] == phone.release_status + + +def test_get_contact_phones_404_contact_not_found(contact, phone): + bad_contact_id = 99999 + response = client.get(f"/contact/{bad_contact_id}/phone") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +def test_get_contact_addresses(contact, address): + response = client.get(f"/contact/{contact.id}/address") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == address.id + assert data["items"][0]["created_at"] == address.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["contact_id"] == address.contact_id + assert data["items"][0]["address_line_1"] == address.address_line_1 + assert data["items"][0]["address_line_2"] == address.address_line_2 + assert data["items"][0]["city"] == address.city + assert data["items"][0]["state"] == address.state + assert data["items"][0]["postal_code"] == address.postal_code + assert data["items"][0]["country"] == address.country + assert data["items"][0]["address_type"] == address.address_type + assert data["items"][0]["release_status"] == address.release_status + + +def test_get_contact_addresses_404_contact_not_found(contact, address): + bad_contact_id = 99999 + response = client.get(f"/contact/{bad_contact_id}/address") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +def test_get_emails(email): + response = client.get("/contact/email") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == email.id + assert data["items"][0]["created_at"] == email.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["contact_id"] == email.contact_id + assert data["items"][0]["email"] == email.email + assert data["items"][0]["email_type"] == email.email_type + assert data["items"][0]["release_status"] == email.release_status + + +def test_get_email_by_id(email): + response = client.get(f"/contact/email/{email.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == email.id + assert data["created_at"] == email.created_at.isoformat().replace("+00:00", "Z") + assert data["contact_id"] == email.contact_id + assert data["email"] == email.email + assert data["email_type"] == email.email_type + assert data["release_status"] == email.release_status + + +def test_get_email_404_not_found(email): + bad_email_id = 99999 + response = client.get(f"/contact/email/{bad_email_id}") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Email with ID {bad_email_id} not found." + + +def test_get_phones(phone): + response = client.get("/contact/phone") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == phone.id + assert data["items"][0]["created_at"] == phone.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["contact_id"] == phone.contact_id + assert data["items"][0]["phone_number"] == phone.phone_number + assert data["items"][0]["phone_type"] == phone.phone_type + assert data["items"][0]["release_status"] == phone.release_status + + +def test_get_phone_by_id(phone): + response = client.get(f"/contact/phone/{phone.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == phone.id + assert data["created_at"] == phone.created_at.isoformat().replace("+00:00", "Z") + assert data["contact_id"] == phone.contact_id + assert data["phone_number"] == phone.phone_number + assert data["phone_type"] == phone.phone_type + assert data["release_status"] == phone.release_status + + +def test_get_phone_404_not_found(): + bad_id = 99999 + response = client.get(f"/contact/phone/{bad_id}") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Phone with ID {bad_id} not found." + + +def test_get_addresses(address): + response = client.get("/contact/address") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == address.id + assert data["items"][0]["created_at"] == address.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["contact_id"] == address.contact_id + assert data["items"][0]["address_line_1"] == address.address_line_1 + assert data["items"][0]["address_line_2"] == address.address_line_2 + assert data["items"][0]["city"] == address.city + assert data["items"][0]["state"] == address.state + assert data["items"][0]["postal_code"] == address.postal_code + assert data["items"][0]["country"] == address.country + assert data["items"][0]["address_type"] == address.address_type + assert data["items"][0]["release_status"] == address.release_status + + +def test_get_address_by_id(address): + response = client.get(f"/contact/address/{address.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == address.id + assert data["created_at"] == address.created_at.isoformat().replace("+00:00", "Z") + assert data["contact_id"] == address.contact_id + assert data["address_line_1"] == address.address_line_1 + assert data["address_line_2"] == address.address_line_2 + assert data["city"] == address.city + assert data["state"] == address.state + assert data["postal_code"] == address.postal_code + assert data["country"] == address.country + assert data["address_type"] == address.address_type + assert data["release_status"] == address.release_status + + +def test_get_address_by_id_404_not_found(address): + bad_address_id = 99999 + response = client.get(f"/contact/address/{bad_address_id}") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Address with ID {bad_address_id} not found." + + +# def test_get_thing_contact_associations(thing_contact_association): +# response = client.get("/contact/thing-association") +# assert response.status_code == 200 +# data = response.json() +# assert data["total"] == 1 +# assert data["items"][0]["id"] == thing_contact_association.id +# assert data["items"][0]["contact_id"] == thing_contact_association.contact_id +# assert data["items"][0]["thing_id"] == thing_contact_association.thing_id + + +# def test_get_contact_thing_contact_association(contact, thing_contact_association): +# response = client.get(f"/contact/{contact.id}/thing-association") +# assert response.status_code == 200 +# data = response.json() +# assert data["total"] == 1 +# assert data["items"][0]["id"] == thing_contact_association.id +# assert data["items"][0]["contact_id"] == thing_contact_association.contact_id +# assert data["items"][0]["thing_id"] == thing_contact_association.thing_id + + +# def test_get_thing_contact_association_404_contact_not_found( +# contact, thing_contact_association +# ): +# bad_contact_id = 999999 +# response = client.get(f"/contact/{bad_contact_id}/thing-association") +# assert response.status_code == 404 +# data = response.json() +# assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +# def test_get_thing_contact_association_by_id(thing_contact_association): +# response = client.get(f"/contact/thing-association/{thing_contact_association.id}") +# assert response.status_code == 200 +# data = response.json() +# assert data["id"] == thing_contact_association.id +# assert data["contact_id"] == thing_contact_association.contact_id +# assert data["thing_id"] == thing_contact_association.thing_id + + +# def test_get_thing_contact_association_by_id_404_not_found(thing_contact_association): +# bad_id = 999999 +# response = client.get(f"/contact/thing-association/{bad_id}") +# assert response.status_code == 404 +# data = response.json() +# assert data["detail"] == f"ThingContactAssociation with ID {bad_id} not found." + + +# PATCH tests ================================================================== + + +def test_patch_contact(contact): + payload = {"name": "Updated Contact", "release_status": "archived"} + response = client.patch( + f"/contact/{contact.id}", + json=payload, + ) + + assert response.status_code == 200 + data = response.json() + assert data["name"] == payload["name"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Contact, payload, contact) + + +def test_patch_contact_404_not_found(contact): + bad_contact_id = 999999 + payload = {"name": "Updated Contact"} + response = client.patch( + f"/contact/{bad_contact_id}", + json=payload, + ) + + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +def test_patch_contact_409_null_name(second_contact): + payload = {"name": None} + response = client.patch( + f"/contact/{second_contact.id}", + json=payload, + ) + + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "name"] + assert ( + data["detail"][0]["msg"] + == "name cannot be set to None because organization is already None." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"name": payload["name"]} + + +def test_patch_contact_409_null_organization(third_contact): + payload = {"organization": None} + response = client.patch( + f"/contact/{third_contact.id}", + json=payload, + ) + + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "organization"] + assert ( + data["detail"][0]["msg"] + == "organization cannot be set to None because name is already None." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"organization": payload["organization"]} + + +def test_patch_contact_409_bad_contact_type(third_contact): + payload = {"contact_type": "Tertiary"} + response = client.patch(f"/contact/{third_contact.id}", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "contact_type"] + assert ( + data["detail"][0]["msg"] + == "Invalid contact_type. Valid terms are: Primary | Secondary" + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"contact_type": payload["contact_type"]} + + +def test_patch_email(email): + payload = {"email": "boo@bar.com", "release_status": "archived"} + response = client.patch(f"/contact/email/{email.id}", json=payload) + data = response.json() + assert response.status_code == 200 + assert data["email"] == payload["email"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Email, payload, email) + + +def test_patch_email_404_not_found(email): + bad_email_id = 999999 + payload = {"email": "boo@bar.com"} + response = client.patch(f"/contact/email/{bad_email_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Email with ID {bad_email_id} not found." + + +def test_patch_phone(phone): + payload = {"phone_number": "+19709654321", "release_status": "archived"} + response = client.patch(f"/contact/phone/{phone.id}", json=payload) + data = response.json() + assert response.status_code == 200 + assert data["id"] == phone.id + assert data["phone_number"] == payload["phone_number"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Phone, payload, phone) + + +def test_patch_phone_404_not_found(phone): + bad_phone_id = 999999 + payload = {"phone_number": "+19709654321"} + response = client.patch(f"/contact/phone/{bad_phone_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Phone with ID {bad_phone_id} not found." + + +def test_edit_address(address): + payload = { + "release_status": "archived", + "address_line_1": "456 Elm St", + "address_line_2": "Apt 21B", + "city": "Updated City", + "state": "CA", + "postal_code": "90210", + "country": "United States", + } + response = client.patch(f"/contact/address/{address.id}", json=payload) + data = response.json() + assert response.status_code == 200 + assert data["address_line_1"] == payload["address_line_1"] + assert data["address_line_2"] == payload["address_line_2"] + assert data["city"] == payload["city"] + assert data["state"] == payload["state"] + assert data["postal_code"] == payload["postal_code"] + assert data["country"] == payload["country"] + assert data["address_type"] == address.address_type + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Address, payload, address) + + +def test_patch_address_404_not_found(address): + bad_address_id = 999999 + payload = { + "address_line_1": "456 Elm St", + "address_line_2": "Apt 21B", + "city": "Updated City", + "state": "CA", + "postal_code": "90210", + "country": "United States", + } + response = client.patch(f"/contact/address/{bad_address_id}", json=payload) + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Address with ID {bad_address_id} not found." + + +# def test_patch_thing_contact_association(thing_contact_association, second_contact): +# payload = {"contact_id": second_contact.id} +# response = client.patch( +# f"/contact/thing-association/{thing_contact_association.id}", json=payload +# ) +# data = response.json() +# assert response.status_code == 200 +# assert data["id"] == thing_contact_association.id +# assert data["contact_id"] == payload["contact_id"] + +# cleanup_patch_test(ThingContactAssociation, payload, thing_contact_association) + + +# def test_patch_thing_contact_association_404_not_found( +# thing_contact_association, second_contact +# ): +# bad_id = 999999 +# payload = {"contact_id": second_contact.id} +# response = client.patch(f"/contact/thing-association/{bad_id}", json=payload) +# assert response.status_code == 404 +# data = response.json() +# assert data["detail"] == f"ThingContactAssociation with ID {bad_id} not found." + + +# def test_patch_thing_contact_association_409_contact_not_found( +# thing_contact_association, +# ): +# bad_contact_id = 999999 +# payload = {"contact_id": bad_contact_id} +# response = client.patch( +# f"/contact/thing-association/{thing_contact_association.id}", json=payload +# ) +# assert response.status_code == 409 +# data = response.json() +# assert len(data["detail"]) == 1 +# assert data["detail"][0]["msg"] == f"Contact with ID {bad_contact_id} not found." + + +# def test_patch_thing_contact_association_409_thing_not_found(thing_contact_association): +# bad_thing_id = 999999 +# payload = {"thing_id": bad_thing_id} +# response = client.patch( +# f"/contact/thing-association/{thing_contact_association.id}", json=payload +# ) +# assert response.status_code == 409 +# data = response.json() +# assert len(data["detail"]) == 1 +# assert data["detail"][0]["msg"] == f"Thing with ID {bad_thing_id} not found." + + +# DELETE tests ================================================================= + + +def test_delete_contact(second_contact, second_email, second_phone, second_address): + response = client.delete(f"/contact/{second_contact.id}") + assert response.status_code == 204 + + # verify contact is deleted and it cascades to emails, phones, and addresses + response = client.get(f"/contact/{second_contact.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Contact with ID {second_contact.id} not found." + + response = client.get(f"/contact/email/{second_email.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Email with ID {second_email.id} not found." + + response = client.get(f"/contact/phone/{second_phone.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Phone with ID {second_phone.id} not found." + + response = client.get(f"/contact/address/{second_address.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Address with ID {second_address.id} not found." + + +def test_delete_contact_404_not_found(second_contact): + bad_contact_id = 999999 + response = client.delete(f"/contact/{bad_contact_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Contact with ID {bad_contact_id} not found." + + +def test_delete_email(second_contact, second_email): + response = client.delete(f"/contact/email/{second_email.id}") + assert response.status_code == 204 + + # verify email is deleted + response = client.get(f"/contact/email/{second_email.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Email with ID {second_email.id} not found." + + # verify email is no longer associated with the contact + response = client.get(f"/contact/{second_contact.id}") + assert response.status_code == 200 + data = response.json() + assert data["emails"] == [] + + +def test_delete_email_404_not_found(second_email): + bad_email_id = 999999 + response = client.delete(f"/contact/email/{bad_email_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Email with ID {bad_email_id} not found." + + +def test_delete_phone(second_contact, second_phone): + response = client.delete(f"/contact/phone/{second_phone.id}") + assert response.status_code == 204 + + # verify phone is deleted + response = client.get(f"/contact/phone/{second_phone.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Phone with ID {second_phone.id} not found." + + # verify phone is no longer associated with the contact + response = client.get(f"/contact/{second_contact.id}") + assert response.status_code == 200 + data = response.json() + assert data["phones"] == [] + + +def test_delete_phone_404_not_found(second_phone): + bad_phone_id = 999999 + response = client.delete(f"/contact/phone/{bad_phone_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Phone with ID {bad_phone_id} not found." + + +def test_delete_address(second_contact, second_address): + response = client.delete(f"/contact/address/{second_address.id}") + assert response.status_code == 204 + + # verify address is deleted + response = client.get(f"/contact/address/{second_address.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Address with ID {second_address.id} not found." + + # verify address is no longer associated with the contact + response = client.get(f"/contact/{second_contact.id}") + assert response.status_code == 200 + data = response.json() + assert data["addresses"] == [] + + +def test_delete_address_404_not_found(second_address): + bad_address_id = 99999 + response = client.delete(f"/contact/address/{bad_address_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Address with ID {bad_address_id} not found." + + +# def test_delete_thing_contact_association(second_thing_contact_association): +# response = client.delete( +# f"/contact/thing-association/{second_thing_contact_association.id}" +# ) +# assert response.status_code == 204 + +# # verify association is deleted +# response = client.get( +# f"/contact/thing-association/{second_thing_contact_association.id}" +# ) +# assert response.status_code == 404 +# data = response.json() +# assert ( +# data["detail"] +# == f"ThingContactAssociation with ID {second_thing_contact_association.id} not found." +# ) + + +# def test_delete_thing_contact_association_404_not_found( +# second_thing_contact_association, +# ): +# bad_id = 999999 +# response = client.delete(f"/contact/thing-association/{bad_id}") +# assert response.status_code == 404 +# data = response.json() +# assert data["detail"] == f"ThingContactAssociation with ID {bad_id} not found." diff --git a/tests/test_geospatial.py b/tests/test_geospatial.py index effc912de..5759a87d4 100644 --- a/tests/test_geospatial.py +++ b/tests/test_geospatial.py @@ -13,13 +13,120 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +from pathlib import Path import pytest -from tests import client +from main import app +from core.dependencies import ( + admin_function, + editor_function, + amp_admin_function, + amp_editor_function, + viewer_function, + amp_viewer_function, +) +from db import Thing, Location, LocationThingAssociation, Group +from db.engine import session_ctx +from tests import client, override_authentication +from geoalchemy2 import functions as geofunc + + +@pytest.fixture(scope="module", autouse=True) +def override_authentication_dependency_fixture(): + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[viewer_function] = override_authentication() + app.dependency_overrides[amp_admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[amp_editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[amp_viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# @pytest.fixture(scope="module", autouse=True) +# def location_fixture(): +# client.post( +# "/location", +# json={ +# "point": "POINT(10.1 10.1)", +# }, +# ) + + +@pytest.fixture(autouse=True, scope="module") +def populate(): + with session_ctx() as session: + # Create some sample data + thing1 = Thing(name="Thing 1", thing_type="water well") + thing2 = Thing(name="Thing 2", thing_type="water well") + session.add(thing1) + session.add(thing2) + + session.commit() + + loc1 = Location( + name="Test Location 1", + point=geofunc.ST_GeomFromText("POINT(10.1 10.1 0)", srid=4326), + ) + loc2 = Location( + name="Test Location 2", + point=geofunc.ST_GeomFromText("POINT(20 20 0)", srid=4326), + ) + session.add(loc1) + session.add(loc2) + + session.add(LocationThingAssociation(location=loc1, thing=thing1)) + session.add(LocationThingAssociation(location=loc2, thing=thing2)) + + group = Group( + name="Test Group Foo", + description="Test Group Description", + project_area="MULTIPOLYGON(((10 10, 20 10, 20 20, 10 20, 10 10)))", + ) + + session.add(group) + session.commit() + yield + + # Cleanup + session.delete(loc1) + session.delete(loc2) + session.delete(group) + session.delete(thing1) + session.delete(thing2) + session.commit() + + +def test_get_project_area(): + response = client.get("/geospatial/project-area/1") + assert response.status_code == 200 + data = response.json() + assert "type" in data + assert data["type"] == "FeatureCollection" + assert "features" in data + assert len(data["features"]) > 0 + assert data["features"][0]["properties"]["group_id"] == 1 + assert data["features"][0]["properties"]["group_name"] == "Test Group Foo" + assert ( + data["features"][0]["properties"]["group_description"] + == "Test Group Description" + ) + assert data["features"][0]["geometry"]["type"] == "MultiPolygon" + # assert data["features"][0][] == 'MULTIPOLYGON(((10 10, 20 10, 20 20, 10 20, 10 10)))' def test_get_geojson(): - response = client.get("/location/feature_collection") + response = client.get("/geospatial", params={"format": "geojson"}) assert response.status_code == 200 data = response.json() assert "type" in data @@ -29,15 +136,17 @@ def test_get_geojson(): def test_get_shapefile(): - response = client.get("/location/shapefile") + response = client.get("/geospatial", params={"format": "shapefile"}) assert response.status_code == 200 assert response.headers["Content-Type"] == "application/zip" assert "Content-Disposition" in response.headers assert ( - 'attachment; filename="locations.zip"' - == response.headers["Content-Disposition"] + 'attachment; filename="things.zip"' == response.headers["Content-Disposition"] ) + for shapefile_ending in [".shp", ".shx", ".dbf", ".prj", ".zip"]: + Path(f"things{shapefile_ending}").unlink(missing_ok=True) + @pytest.mark.skip def test_get_locations_expand(): @@ -56,7 +165,7 @@ def test_get_locations_expand(): assert "well" in item -@pytest.mark.skip("Needs fixture to ensure a location exists in this polygon") +# @pytest.mark.skip("Needs fixture to ensure a location exists in this polygon") def test_get_within_locations(): response = client.get( "/location", @@ -75,6 +184,19 @@ def test_get_within_locations(): # assert data[0]["name"] == "Test Location" # Check if the correct location is returned +def test_get_within_things(): + response = client.get( + "/thing", + params={ + "within": "POLYGON((10.0 10.0, 20.0 10.0, 20.0 20.0, 10.0 20.0, 10.0 10.0))", + }, + ) + data = response.json() + assert response.status_code == 200 + assert "items" in data + assert len(data["items"]) == 1 + + @pytest.mark.skip("Needs fixture to ensure a location exists nearby the point") def test_get_nearby_locations(): response = client.get( diff --git a/tests/test_group.py b/tests/test_group.py new file mode 100644 index 000000000..2b5be0d0b --- /dev/null +++ b/tests/test_group.py @@ -0,0 +1,171 @@ +from geoalchemy2.shape import to_shape +from pydantic import ValidationError +import pytest + +from db import Group +from core.dependencies import admin_function, viewer_function, editor_function +from main import app +from schemas.group import ValidateGroup +from tests import client, override_authentication, cleanup_post_test, cleanup_patch_test + + +@pytest.fixture(scope="module", autouse=True) +def override_authentication_dependency_fixture(): + + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# VALIDATION tests ============================================================= + + +def test_project_area_not_topologically_valid(): + wkt = "MULTIPOLYGON(((0 0, 1 1, 2 2, 0 0)))" + with pytest.raises( + ValidationError, match="WKT geometry is not topologically valid" + ): + ValidateGroup(project_area=wkt) + + +def test_project_area_invalid_wkt(): + for wkt in [ + "MULTIPOLYGON((0 0, 1 1, 2 2, 0 0))", + "0 0, 1 1, 2 2, 3 3, 4 5, 0 0", + ]: + with pytest.raises(ValidationError, match=r"Invalid WKT geometry: "): + ValidateGroup(project_area=wkt) + + +def test_project_area_not_multipolygon(): + for wkt in [ + "POINT (0 0)", + "LINESTRING (0 0, 1 1, 2 2, 3 3)", + "POLYGON ((0 0, 1 1, 2 2, 1 2, 0 0))", + ]: + with pytest.raises(ValidationError, match="WKT must be a valid MULTIPOLYGON"): + ValidateGroup(project_area=wkt) + + +# ADD tests ====================================================== + + +def test_add_group(): + payload = { + "release_status": "private", + "name": "Test Group", + "description": "This is a test group.", + "project_area": "MULTIPOLYGON (((0 0, 1 1, 2 2, 3 3, 4 4, 1 2, 0 0)))", + } + response = client.post("/group", json=payload) + assert response.status_code == 201 + data = response.json() + assert "id" in data + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["name"] == payload["name"] + assert data["description"] == payload["description"] + assert data["project_area"] == payload["project_area"] + + cleanup_post_test(Group, data["id"]) + + +# GET tests ====================================================== + + +def test_get_groups(group): + response = client.get("/group") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == group.id + assert data["items"][0]["created_at"] == group.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["release_status"] == group.release_status + assert data["items"][0]["name"] == group.name + assert data["items"][0]["project_area"] == to_shape(group.project_area).wkt + assert data["items"][0]["description"] == group.description + assert data["items"][0]["parent_group_id"] == group.parent_group_id + + +def test_get_group_by_id(group): + response = client.get(f"/group/{group.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == group.id + assert data["created_at"] == group.created_at.isoformat().replace("+00:00", "Z") + assert data["name"] == group.name + assert data["project_area"] == to_shape(group.project_area).wkt + assert data["description"] == group.description + assert data["parent_group_id"] == group.parent_group_id + assert data["release_status"] == group.release_status + + +def test_get_group_by_id_404_not_found(group): + bad_id = 99999 + response = client.get(f"/group/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Group with ID {bad_id} not found." + + +@pytest.mark.skip("associations not yet implemented") +def test_get_group_things(): + response = client.get("/group/association") + assert response.status_code == 200 + assert len(response.json()) > 0 + + +# PATCH tests ================================================================== + + +def test_patch_group(group): + payload = {"name": "Updated Group", "release_status": "private"} + response = client.patch(f"/group/{group.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["id"] == group.id + assert data["name"] == payload["name"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Group, payload, group) + + +def test_patch_group_404_not_found(group): + payload = {"name": "Failed group patch"} + bad_id = 99999 + response = client.patch(f"/group/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Group with ID {bad_id} not found." + + +# DELETE tests ================================================================= + + +def test_delete_group(second_group): + response = client.delete(f"/group/{second_group.id}") + assert response.status_code == 204 + + # verify deletion + response = client.get(f"/group/{second_group.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Group with ID {second_group.id} not found." + + +def test_delete_group_404_not_found(second_group): + bad_id = 99999 + response = client.delete(f"/group/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Group with ID {bad_id} not found." diff --git a/tests/test_lexicon.py b/tests/test_lexicon.py index c4e3503dc..e53bfca7e 100644 --- a/tests/test_lexicon.py +++ b/tests/test_lexicon.py @@ -13,73 +13,487 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from services.validation import get_category -from tests import client +from db import LexiconTerm, LexiconCategory, LexiconTriple +from tests import client, override_authentication, cleanup_post_test, cleanup_patch_test +from core.dependencies import admin_function, viewer_function, editor_function +from main import app -def test_add_lexicon_category(): - name = "Test Category" - description = "This is a test category." +import pytest - response = client.post( - "/lexicon/category/add", - json={"name": name, "description": description}, + +@pytest.fixture(scope="module", autouse=True) +def override_authentication_dependency_fixture(): + + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} ) + app.dependency_overrides[viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# POST tests =================================================================== + +def test_add_lexicon_term_with_new_categories(): + payload = { + "term": "test_term", + "definition": "This is a test definition.", + "categories": [{"name": "test category", "description": "test lexicon terms"}], + } + response = client.post( + "/lexicon/term", + json=payload, + ) assert response.status_code == 201 data = response.json() - assert data["name"] == name - assert data["description"] == description + assert "id" in data + assert "created_at" in data + assert data["term"] == payload["term"] + assert data["definition"] == payload["definition"] + assert len(data["categories"]) == 1 + assert data["categories"][0]["name"] == payload["categories"][0]["name"] + assert ( + data["categories"][0]["description"] == payload["categories"][0]["description"] + ) + cleanup_post_test(LexiconTerm, data["id"]) + cleanup_post_test(LexiconCategory, data["categories"][0]["id"]) -def test_add_lexicon_term(): - term = "test_term" - definition = "This is a test definition." - category = "Test Category" +def test_add_lexicon_term_with_existing_categories(): + payload = { + "term": "test_term_existing_categories", + "definition": "This is a test definition.", + "categories": [{"name": "unit", "description": None}], + } response = client.post( - "/lexicon/add", - json={"term": term, "definition": definition, "category": category}, + "/lexicon/term", + json=payload, ) assert response.status_code == 201 data = response.json() - assert data["term"] == term - assert data["definition"] == definition + assert "id" in data + assert "created_at" in data + assert data["term"] == payload["term"] + assert data["definition"] == payload["definition"] + assert len(data["categories"]) == 1 + assert data["categories"][0]["name"] == payload["categories"][0]["name"] + assert ( + data["categories"][0]["description"] == payload["categories"][0]["description"] + ) + cleanup_post_test(LexiconTerm, data["id"]) -def test_get_category(): - items = get_category("casing_material") - assert isinstance(items, list) + +def test_add_lexicon_category(): + payload = {"name": "test category name", "description": "test category description"} + response = client.post("/lexicon/category", json=payload) + assert response.status_code == 201 + data = response.json() + assert "id" in data + assert "created_at" in data + assert data["name"] == payload["name"] + assert data["description"] == payload["description"] + + cleanup_post_test(LexiconCategory, data["id"]) -def test_add_triple(): +def test_add_lexicon_triple_new_terms(): subject = { "term": "MG-030", "definition": "magdalena well", - "category": "location_identifier", + "categories": [{"name": "location_identifier"}], } predicate = "same_as" object_ = { "term": "USGS1234", "definition": "magdalena well", - "category": "location_identifier", + "categories": [{"name": "location_identifier"}], + } + payload = { + "subject": subject, + "predicate": predicate, + "object_": object_, } - response = client.post( - "/lexicon/triple/add", - json={ - "subject": subject, - "predicate": predicate, - "object_": object_, - }, - ) + response = client.post("/lexicon/triple", json=payload) assert response.status_code == 201 data = response.json() + assert "id" in data + assert "created_at" in data assert data["subject"] == subject["term"] assert data["predicate"] == predicate assert data["object_"] == object_["term"] + cleanup_post_test(LexiconTriple, data["id"]) + + response = client.get(f"/lexicon/term?term={subject['term']}") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["term"] == subject["term"] + assert data["items"][0]["definition"] == subject["definition"] + + cleanup_post_test(LexiconTerm, data["items"][0]["id"]) + + response = client.get(f"/lexicon/term?term={object_['term']}") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["term"] == object_["term"] + assert data["items"][0]["definition"] == object_["definition"] + + cleanup_post_test(LexiconTerm, data["items"][0]["id"]) + cleanup_post_test(LexiconCategory, data["items"][0]["categories"][0]["id"]) + + +def test_add_lexicon_triple_existing_terms(lexicon_term, second_lexicon_term): + subject = { + "term": lexicon_term.term, + "definition": lexicon_term.definition, + "categories": [ + { + "name": category.name, + "description": category.description, + } + for category in lexicon_term.categories + ], + } + predicate = "same_as" + object_ = { + "term": second_lexicon_term.term, + "definition": second_lexicon_term.definition, + "categories": [ + { + "name": category.name, + "description": category.description, + } + for category in second_lexicon_term.categories + ], + } + payload = { + "subject": subject, + "predicate": predicate, + "object_": object_, + } + + response = client.post("/lexicon/triple", json=payload) + + assert response.status_code == 201 + data = response.json() + assert "id" in data + assert "created_at" in data + assert data["subject"] == subject["term"] + assert data["predicate"] == predicate + assert data["object_"] == object_["term"] + + cleanup_post_test(LexiconTriple, data["id"]) + + +# PATCH tests ================================================================== + + +def test_patch_term(lexicon_term): + payload = {"term": "patched term", "definition": "patched definition"} + response = client.patch(f"/lexicon/term/{lexicon_term.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["term"] == payload["term"] + assert data["definition"] == payload["definition"] + + cleanup_patch_test(LexiconTerm, payload, lexicon_term) + + +def test_patch_term_404_not_found(lexicon_term): + bad_id = 99999 + payload = {"term": "patched term", "definition": "patched definition"} + response = client.patch(f"/lexicon/term/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconTerm with ID {bad_id} not found." + + +def test_patch_category(lexicon_category): + payload = {"name": "patched name", "description": "patched description"} + response = client.patch(f"/lexicon/category/{lexicon_category.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["name"] == payload["name"] + assert data["description"] == payload["description"] + + cleanup_patch_test(LexiconCategory, payload, lexicon_category) + + +def test_patch_category_404_not_found(lexicon_category): + bad_id = 99999 + payload = {"name": "patched name", "definition": "patched definition"} + response = client.patch(f"/lexicon/category/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconCategory with ID {bad_id} not found." + + +def test_patch_triple(lexicon_triple, third_lexicon_term, fourth_lexicon_term): + payload = { + "subject": third_lexicon_term.term, + "predicate": "patched predicate", + "object_": fourth_lexicon_term.term, + } + response = client.patch(f"/lexicon/triple/{lexicon_triple.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["subject"] == payload["subject"] + assert data["predicate"] == payload["predicate"] + assert data["object_"] == payload["object_"] + + cleanup_patch_test(LexiconTriple, payload, lexicon_triple) + + +def test_patch_triple_404_not_found( + lexicon_triple, third_lexicon_term, fourth_lexicon_term +): + bad_id = 99999 + payload = { + "subject": third_lexicon_term.term, + "predicate": "patched predicate", + "object_": fourth_lexicon_term.term, + } + response = client.patch(f"/lexicon/triple/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconTriple with ID {bad_id} not found." + + +def test_patch_triple_409_bad_subject(lexicon_triple, third_lexicon_term): + bad_subject = "nonexistent subject" + payload = { + "subject": bad_subject, + "predicate": "patched predicate", + "object_": third_lexicon_term.term, + } + response = client.patch(f"/lexicon/triple/{lexicon_triple.id}", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "subject"] + assert data["detail"][0]["msg"] == f"LexiconTerm with term {bad_subject} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"subject": bad_subject} + + +def test_patch_triple_409_bad_object(lexicon_triple, third_lexicon_term): + bad_object = "nonexistent object" + payload = { + "subject": third_lexicon_term.term, + "predicate": "patched predicate", + "object_": bad_object, + } + response = client.patch(f"/lexicon/triple/{lexicon_triple.id}", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "object_"] + assert data["detail"][0]["msg"] == f"LexiconTerm with term {bad_object} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"object_": bad_object} + + +# GET tests ==================================================================== + + +def test_get_lexicon_terms(): + # many terms are defined in conftest.py and core/lexicon.json, so rather + # than test a specific one just ensure the responses are correct + response = client.get("lexicon/term") + assert response.status_code == 200 + data = response.json() + assert data["total"] > 0 + for term in data["items"]: + assert isinstance(term["id"], int) + assert isinstance(term["created_at"], str) + assert isinstance(term["term"], str) + assert isinstance(term["definition"], str) + assert isinstance(term["categories"], list) + + +def test_get_lexicon_term_by_id(lexicon_term): + response = client.get(f"/lexicon/term/{lexicon_term.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == lexicon_term.id + assert data["created_at"] == lexicon_term.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["term"] == lexicon_term.term + assert data["definition"] == lexicon_term.definition + assert len(data["categories"]) == 1 + assert data["categories"][0]["id"] == lexicon_term.categories[0].id + assert data["categories"][0]["created_at"] == lexicon_term.categories[ + 0 + ].created_at.isoformat().replace("+00:00", "Z") + assert data["categories"][0]["name"] == lexicon_term.categories[0].name + assert ( + data["categories"][0]["description"] == lexicon_term.categories[0].description + ) + + +def test_get_lexicon_terms_sort_categories_branch(): + """ + Ensure the special-case branch (sort == 'categories') in GET /lexicon is exercised. + It should not apply sorting/filtering and still return a valid pagination payload. + """ + resp = client.get("/lexicon/term", params={"sort": "categories"}) + assert resp.status_code == 200 + data = resp.json() + # fastapi-pagination returns a Page-like object with these keys + assert "items" in data + assert "total" in data + + +def test_get_lexicon_term_by_id_404_not_found(lexicon_term): + bad_id = 999999 + response = client.get(f"/lexicon/term/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconTerm with ID {bad_id} not found." + + +def test_get_lexicon_categories(): + # many categories are defined in conftest.py and core/lexicon.json, so + # rather than test a specific one just ensure the responses are correct + response = client.get("/lexicon/category") + assert response.status_code == 200 + data = response.json() + assert data["total"] > 0 + for category in data["items"]: + assert isinstance(category["id"], int) + assert isinstance(category["created_at"], str) + assert isinstance(category["name"], str) + assert isinstance(category["description"], (str, type(None))) + + +def test_get_lexicon_category_by_id(lexicon_category): + response = client.get(f"/lexicon/category/{lexicon_category.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == lexicon_category.id + assert data["created_at"] == lexicon_category.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["name"] == lexicon_category.name + assert data["description"] == lexicon_category.description + + +def test_get_lexicon_category_by_id_404_not_found(lexicon_category): + bad_id = 999999 + response = client.get(f"/lexicon/category/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconCategory with ID {bad_id} not found." -# ============= EOF ============================================= + +def test_get_lexicon_triples(lexicon_triple): + response = client.get("/lexicon/triple") + assert response.status_code == 200 + data = response.json() + assert data["total"] > 0 + assert data["items"][0]["id"] == lexicon_triple.id + assert data["items"][0][ + "created_at" + ] == lexicon_triple.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["subject"] == lexicon_triple.subject + assert data["items"][0]["predicate"] == lexicon_triple.predicate + assert data["items"][0]["object_"] == lexicon_triple.object_ + + +def test_get_lexicon_triple_by_id(lexicon_triple): + response = client.get(f"/lexicon/triple/{lexicon_triple.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == lexicon_triple.id + assert data["created_at"] == lexicon_triple.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["subject"] == lexicon_triple.subject + assert data["predicate"] == lexicon_triple.predicate + assert data["object_"] == lexicon_triple.object_ + + +def test_get_lexicon_triple_by_id_404_not_found(lexicon_triple): + bad_id = 999999 + response = client.get(f"/lexicon/triple/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconTriple with ID {bad_id} not found." + + +# DELETE tests ================================================================= + + +def test_delete_lexicon_term(second_lexicon_term): + response = client.delete(f"/lexicon/term/{second_lexicon_term.id}") + assert response.status_code == 204 + + # verify the lexicon term was deleted + response = client.get(f"/lexicon/term/{second_lexicon_term.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconTerm with ID {second_lexicon_term.id} not found." + + +def test_delete_lexicon_term_404_not_found(second_lexicon_term): + bad_id = 999999 + response = client.delete(f"/lexicon/term/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconTerm with ID {bad_id} not found." + + +def test_delete_lexicon_category(second_lexicon_category): + response = client.delete(f"/lexicon/category/{second_lexicon_category.id}") + assert response.status_code == 204 + + # verify the lexicon category was deleted + response = client.get(f"/lexicon/category/{second_lexicon_category.id}") + assert response.status_code == 404 + data = response.json() + assert ( + data["detail"] + == f"LexiconCategory with ID {second_lexicon_category.id} not found." + ) + + +def test_delete_lexicon_category_404_not_found(second_lexicon_category): + bad_id = 999999 + response = client.delete(f"/lexicon/category/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconCategory with ID {bad_id} not found." + + +def test_delete_lexicon_triple(second_lexicon_triple): + response = client.delete(f"/lexicon/triple/{second_lexicon_triple.id}") + assert response.status_code == 204 + + # verify the lexicon triple was deleted + response = client.get(f"/lexicon/triple/{second_lexicon_triple.id}") + assert response.status_code == 404 + data = response.json() + assert ( + data["detail"] == f"LexiconTriple with ID {second_lexicon_triple.id} not found." + ) + + +def test_delete_lexicon_triple_404_not_found(second_lexicon_triple): + bad_id = 999999 + response = client.delete(f"/lexicon/triple/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"LexiconTriple with ID {bad_id} not found." diff --git a/tests/test_location.py b/tests/test_location.py index d818113c7..a27ddf775 100644 --- a/tests/test_location.py +++ b/tests/test_location.py @@ -13,61 +13,185 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== +from geoalchemy2.shape import to_shape import pytest -from tests import client +from core.dependencies import admin_function, editor_function, viewer_function +from db import Location +from main import app +from tests import client, override_authentication, cleanup_post_test, cleanup_patch_test -def test_add_location(): - response = client.post( - "/location", - json={ - "name": "Test Location 1", - "point": "POINT(10.1 10.1)", - "visible": True, - }, +@pytest.fixture(scope="module", autouse=True) +def override_dependencies_fixture(): + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} ) + app.dependency_overrides[viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# ============= Post tests for locations ====================================== + + +def test_add_location(): + payload = { + "name": "test location", + "notes": "these are some test notes", + "point": "POINT Z (10.1 10.1 0)", + "release_status": "draft", + "elevation_accuracy": 1.0, + "elevation_method": "Survey-grade GPS", + "coordinate_accuracy": 5.0, + "coordinate_method": "GPS, uncorrected", + } + response = client.post("/location", json=payload) + assert response.status_code == 201 data = response.json() - assert data["id"] == 2 - - response = client.post( - "/location", - json={ - "name": "Test Location 2", - "point": "POINT(50.0 50.0)", - "visible": False, - }, + assert "id" in data + assert "created_at" in data + assert data["name"] == payload["name"] + assert data["notes"] == payload["notes"] + assert data["point"] == payload["point"] + assert data["release_status"] == payload["release_status"] + assert data["elevation_accuracy"] == payload["elevation_accuracy"] + assert data["elevation_method"] == payload["elevation_method"] + assert data["coordinate_accuracy"] == payload["coordinate_accuracy"] + assert data["coordinate_method"] == payload["coordinate_method"] + + # cleanup after test + cleanup_post_test(Location, data["id"]) + + +# ============= Patch tests for locations ===================================== + + +def test_update_location(location): + payload = { + "name": "patched name", + "notes": "these are some patched notes", + "point": "POINT Z (10.1 20.2 0)", + "release_status": "draft", + "elevation_accuracy": 2.0, + "elevation_method": "Survey-grade GPS", + "coordinate_accuracy": 10.0, + "coordinate_method": "GPS, uncorrected", + } + response = client.patch(f"/location/{location.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["id"] == location.id + assert data["name"] == payload["name"] + assert data["notes"] == payload["notes"] + assert data["point"] == payload["point"] + assert data["release_status"] == payload["release_status"] + assert data["elevation_accuracy"] == payload["elevation_accuracy"] + assert data["elevation_method"] == payload["elevation_method"] + assert data["coordinate_accuracy"] == payload["coordinate_accuracy"] + assert data["coordinate_method"] == payload["coordinate_method"] + + # cleanup after test + cleanup_patch_test(Location, payload, location) + + +def test_patch_location_404_not_found(location): + """ + Testing updating a location that does not exist + """ + bad_location_id = 99999 + location_name_patch = "another test name" + response = client.patch( + f"/location/{bad_location_id}", json={"name": location_name_patch} ) - assert response.status_code == 201 data = response.json() - assert data["id"] == 3 + assert response.status_code == 404 + assert data["detail"] == f"Location with ID {bad_location_id} not found." + + +# ============= GET tests for locations ======================================= -@pytest.mark.skip -def test_get_locations_expand(): - response = client.get("/base/location?expand=well") +def test_get_locations(location): + """ + Test retrieving locations + """ + response = client.get("/location") assert response.status_code == 200 data = response.json() - assert "items" in data - assert len(data["items"]) > 0 - for item in data["items"]: - assert "id" in item - assert "point" in item - assert "well" in item + assert data["total"] == 1 + assert data["items"][0]["id"] == location.id + assert data["items"][0]["created_at"] == location.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["name"] == location.name + assert data["items"][0]["notes"] == location.notes + assert data["items"][0]["point"] == to_shape(location.point).wkt + assert data["items"][0]["release_status"] == location.release_status + assert data["items"][0]["elevation_accuracy"] == location.elevation_accuracy + assert data["items"][0]["elevation_method"] == location.elevation_method + assert data["items"][0]["coordinate_accuracy"] == location.coordinate_accuracy + assert data["items"][0]["coordinate_method"] == location.coordinate_method + assert data["items"][0]["state"] == location.state + assert data["items"][0]["county"] == location.county + assert data["items"][0]["quad_name"] == location.quad_name -@pytest.mark.skip -def test_get_location_expand(): - response = client.get("/base/location/1", params={"expand": "well"}) +def test_get_location_by_id(location): + response = client.get(f"/location/{location.id}") assert response.status_code == 200 data = response.json() - assert "id" in data - assert data["id"] == 1 - assert "point" in data - assert data["point"] == "POINT (10.1 10.1)" - assert "well" in data - assert len(data["well"]) == 1 + assert data["id"] == location.id + assert data["created_at"] == location.created_at.isoformat().replace("+00:00", "Z") + assert data["name"] == location.name + assert data["point"] == to_shape(location.point).wkt + assert data["release_status"] == location.release_status + assert data["elevation_accuracy"] == location.elevation_accuracy + assert data["elevation_method"] == location.elevation_method + assert data["coordinate_accuracy"] == location.coordinate_accuracy + assert data["coordinate_method"] == location.coordinate_method + assert data["state"] == location.state + assert data["county"] == location.county + assert data["quad_name"] == location.quad_name + + +def test_get_sample_by_id_404_not_found(location): + bad_location_id = 999999999 + response = client.get(f"/location/{bad_location_id}") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Location with ID {bad_location_id} not found." + + +# ============= DELETE tests for locations ==================================== + + +def test_delete_location(second_location): + response = client.delete(f"/location/{second_location.id}") + assert response.status_code == 204 + + # Verify the location is deleted + response = client.get(f"/location/{second_location.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Location with ID {second_location.id} not found." + + +def test_delete_location_404_not_found(second_location): + """ + Testing deleting a location that does not exist + """ + bad_location_id = 99999 + response = client.delete(f"/location/{bad_location_id}") + data = response.json() + assert response.status_code == 404 + assert data["detail"] == f"Location with ID {bad_location_id} not found." # ============= EOF ============================================= diff --git a/tests/test_observation.py b/tests/test_observation.py new file mode 100644 index 000000000..293b59023 --- /dev/null +++ b/tests/test_observation.py @@ -0,0 +1,734 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from db import Observation +from core.dependencies import ( + amp_admin_function, + admin_function, + amp_viewer_function, + viewer_function, +) +from main import app +from tests import client, cleanup_post_test, override_authentication, cleanup_patch_test +import pytest + + +@pytest.fixture(scope="module", autouse=True) +def override_authentication_dependency_fixture(): + app.dependency_overrides[amp_admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[amp_viewer_function] = override_authentication() + app.dependency_overrides[viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# ============= Post tests ================= +def test_add_water_chemistry_observation(sample, sensor): + payload = { + "observation_datetime": "2025-01-01T00:00:00Z", + "release_status": "draft", + "value": 7.5, + "unit": "dimensionless", + "sample_id": sample.id, + "sensor_id": sensor.id, + "observed_property": "pH", + } + response = client.post("/observation/water-chemistry", json=payload) + data = response.json() + assert response.status_code == 201 + + assert "id" in data + assert "created_at" in data + assert data["observation_datetime"] == payload["observation_datetime"] + assert data["release_status"] == payload["release_status"] + assert data["value"] == payload["value"] + assert data["unit"] == payload["unit"] + assert data["sample_id"] == payload["sample_id"] + assert data["sensor_id"] == payload["sensor_id"] + assert data["observed_property"] == payload["observed_property"] + + cleanup_post_test(Observation, data["id"]) + + +def test_add_groundwater_level_observation(sample, sensor): + payload = { + "observation_datetime": "2025-01-01T00:00:00Z", + "release_status": "draft", + "value": 101, + "measuring_point_height": 53, + "sample_id": sample.id, + "sensor_id": sensor.id, + "level_status": "Water level not affected by status", + "observed_property": "groundwater level", + "unit": "ft", + } + response = client.post("/observation/groundwater-level", json=payload) + data = response.json() + assert response.status_code == 201 + + assert "id" in data + assert "created_at" in data + assert data["observation_datetime"] == payload["observation_datetime"] + assert data["release_status"] == payload["release_status"] + assert data["value"] == payload["value"] + assert data["measuring_point_height"] == payload["measuring_point_height"] + assert data["sensor_id"] == payload["sensor_id"] + assert data["level_status"] == payload["level_status"] + assert data["observed_property"] == payload["observed_property"] + assert ( + data["depth_to_water_bgs"] + == payload["value"] - payload["measuring_point_height"] + ) + + cleanup_post_test(Observation, data["id"]) + + +def test_add_geothermal_observation(sample, sensor): + payload = { + "observation_datetime": "2025-01-01T00:00:00Z", + "release_status": "draft", + "observation_depth": 100, + "value": 25.5, + "sample_id": sample.id, + "sensor_id": sensor.id, + "observed_property": "temperature", + "unit": "deg C", + } + response = client.post("/observation/geothermal", json=payload) + data = response.json() + assert response.status_code == 201 + + assert "id" in data + assert "created_at" in data + assert data["observation_datetime"] == payload["observation_datetime"] + assert data["release_status"] == payload["release_status"] + assert data["observation_depth"] == payload["observation_depth"] + assert data["value"] == payload["value"] + assert data["sample_id"] == payload["sample_id"] + assert data["sensor_id"] == payload["sensor_id"] + assert data["observed_property"] == payload["observed_property"] + assert data["unit"] == payload["unit"] + + cleanup_post_test(Observation, data["id"]) + + +# PATCH tests ================================================================== + + +def test_patch_groundwater_level_observation(groundwater_level_observation): + payload = {"measuring_point_height": 3, "release_status": "private"} + response = client.patch( + f"/observation/groundwater-level/{groundwater_level_observation.id}", + json=payload, + ) + data = response.json() + assert response.status_code == 200 + + assert data["measuring_point_height"] == payload["measuring_point_height"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Observation, payload, groundwater_level_observation) + + +def test_patch_groundwater_level_observation_404_not_found( + groundwater_level_observation, +): + bad_id = 99999 + payload = {"measuring_point_height": 3} + response = client.patch(f"/observation/groundwater-level/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +def test_patch_groundwater_level_observation_404_wrong_observation_class( + water_chemistry_observation, geothermal_observation +): + for obs in water_chemistry_observation, geothermal_observation: + payload = {"measuring_point_height": 3} + response = client.patch( + f"/observation/groundwater-level/{obs.id}", json=payload + ) + assert response.status_code == 404 + data = response.json() + + if obs.observed_property == "geothermal:temperature": + observation_class = "geothermal" + else: + observation_class = "water chemistry" + + assert ( + data["detail"][0]["msg"] + == f"Observation with ID {obs.id} is not a groundwater level observation. It is a {observation_class} observation." + ) + + +def test_patch_water_chemistry_observation(water_chemistry_observation): + payload = {"value": 8, "release_status": "private"} + response = client.patch( + f"/observation/water-chemistry/{water_chemistry_observation.id}", + json=payload, + ) + data = response.json() + assert response.status_code == 200 + + assert data["value"] == payload["value"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Observation, payload, water_chemistry_observation) + + +def test_patch_water_chemistry_observation_404_not_found(water_chemistry_observation): + bad_id = 999999 + payload = {"value": 8} + response = client.patch(f"/observation/water-chemistry/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +def test_patch_water_chemistry_observation_404_wrong_observation_class( + groundwater_level_observation, geothermal_observation +): + for obs in groundwater_level_observation, geothermal_observation: + payload = {"value": 8} + response = client.patch(f"/observation/water-chemistry/{obs.id}", json=payload) + assert response.status_code == 404 + data = response.json() + + if obs.observed_property == "geothermal:temperature": + observation_class = "geothermal" + else: + observation_class = "groundwater level" + + assert ( + data["detail"][0]["msg"] + == f"Observation with ID {obs.id} is not a water chemistry observation. It is a {observation_class} observation." + ) + + +def test_patch_geothermal_observation(geothermal_observation): + payload = {"observation_depth": 4, "release_status": "private"} + response = client.patch( + f"/observation/geothermal/{geothermal_observation.id}", json=payload + ) + assert response.status_code == 200 + data = response.json() + assert data["observation_depth"] == payload["observation_depth"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(Observation, payload, geothermal_observation) + + +def test_patch_geothermal_observation_404_not_found(geothermal_observation): + bad_id = 999999 + payload = {"observation_depth": 8} + response = client.patch(f"/observation/geothermal/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +def test_patch_geothermal_observation_404_wrong_observation_class( + groundwater_level_observation, water_chemistry_observation +): + for obs in groundwater_level_observation, water_chemistry_observation: + payload = {"value": 8} + response = client.patch(f"/observation/geothermal/{obs.id}", json=payload) + assert response.status_code == 404 + data = response.json() + + if obs.observed_property == "groundwater level:groundwater level": + observation_class = "groundwater level" + else: + observation_class = "water chemistry" + + assert ( + data["detail"][0]["msg"] + == f"Observation with ID {obs.id} is not a geothermal observation. It is a {observation_class} observation." + ) + + +# ============= Get tests ================= + + +def test_get_all_observations( + groundwater_level_observation, water_chemistry_observation, geothermal_observation +): + response = client.get("/observation") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 3 + assert data["items"][0]["id"] == groundwater_level_observation.id + assert data["items"][1]["id"] == water_chemistry_observation.id + assert data["items"][2]["id"] == geothermal_observation.id + + +def test_get_observation_by_id( + groundwater_level_observation, water_chemistry_observation, geothermal_observation +): + for obs in ( + groundwater_level_observation, + water_chemistry_observation, + geothermal_observation, + ): + response = client.get(f"/observation/{obs.id}") + assert response.status_code == 200 + data = response.json() + + assert data["id"] == obs.id + assert data["created_at"] == obs.created_at.isoformat().replace("+00:00", "Z") + assert data["release_status"] == obs.release_status + if obs.observed_property == "groundwater level:groundwater level": + assert data["depth_to_water_bgs"] == obs.value - obs.measuring_point_height + assert data["observation_depth"] is None + elif obs.observed_property == "geothermal:temperature": + assert data["depth_to_water_bgs"] is None + assert data["observation_depth"] == obs.observation_depth + else: + assert data["depth_to_water_bgs"] is None + assert data["observation_depth"] is None + + +def test_get_observation_by_id_404_not_found( + groundwater_level_observation, water_chemistry_observation, geothermal_observation +): + bad_id = 999999 + response = client.get(f"/observation/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +def test_get_groundwater_level_observations( + groundwater_level_observation, water_chemistry_observation, geothermal_observation +): + response = client.get("/observation/groundwater-level") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == groundwater_level_observation.id + assert data["items"][0][ + "created_at" + ] == groundwater_level_observation.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["sample_id"] == groundwater_level_observation.sample_id + assert data["items"][0]["sensor_id"] == groundwater_level_observation.sensor_id + assert ( + data["items"][0]["observation_datetime"] + == groundwater_level_observation.observation_datetime + ) + colon_index = groundwater_level_observation.observed_property.find(":") + assert ( + data["items"][0]["observed_property"] + == groundwater_level_observation.observed_property[colon_index + 1 :] + ) + assert ( + data["items"][0]["release_status"] + == groundwater_level_observation.release_status + ) + assert ( + data["items"][0]["level_status"] == groundwater_level_observation.level_status + ) + assert data["items"][0]["value"] == groundwater_level_observation.value + assert data["items"][0]["unit"] == groundwater_level_observation.unit + assert ( + data["items"][0]["depth_to_water_bgs"] + == groundwater_level_observation.value + - groundwater_level_observation.measuring_point_height + ) + assert ( + data["items"][0]["measuring_point_height"] + == groundwater_level_observation.measuring_point_height + ) + assert ( + data["items"][0]["level_status"] == groundwater_level_observation.level_status + ) + + +def test_get_groundwater_level_observation_by_id(groundwater_level_observation): + response = client.get( + f"/observation/groundwater-level/{groundwater_level_observation.id}" + ) + assert response.status_code == 200 + data = response.json() + assert data["id"] == groundwater_level_observation.id + assert data[ + "created_at" + ] == groundwater_level_observation.created_at.isoformat().replace("+00:00", "Z") + assert data["sample_id"] == groundwater_level_observation.sample_id + assert data["sensor_id"] == groundwater_level_observation.sensor_id + assert ( + data["observation_datetime"] + == groundwater_level_observation.observation_datetime + ) + colon_index = groundwater_level_observation.observed_property.find(":") + assert ( + data["observed_property"] + == groundwater_level_observation.observed_property[colon_index + 1 :] + ) + assert data["release_status"] == groundwater_level_observation.release_status + assert data["level_status"] == groundwater_level_observation.level_status + assert data["value"] == groundwater_level_observation.value + assert data["unit"] == groundwater_level_observation.unit + assert ( + data["depth_to_water_bgs"] + == groundwater_level_observation.value + - groundwater_level_observation.measuring_point_height + ) + assert ( + data["measuring_point_height"] + == groundwater_level_observation.measuring_point_height + ) + assert data["level_status"] == groundwater_level_observation.level_status + + +def test_get_groundwater_level_observation_by_id_404_not_found( + groundwater_level_observation, +): + bad_id = 99999 + response = client.get(f"/observation/groundwater-level/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert "detail" in data, "Expected 'detail' in response" + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +def test_get_groundwater_level_observation_by_id_404_wrong_observation_class( + water_chemistry_observation, geothermal_observation +): + for obs in water_chemistry_observation, geothermal_observation: + response = client.get(f"/observation/groundwater-level/{obs.id}") + assert response.status_code == 404 + data = response.json() + + if obs.observed_property == "geothermal:temperature": + actual_observation_class = "geothermal" + else: + actual_observation_class = "water chemistry" + + assert ( + data["detail"][0]["msg"] + == f"Observation with ID {obs.id} is not a groundwater level observation. It is a {actual_observation_class} observation." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"observation_id": obs.id} + assert data["detail"][0]["loc"] == ["path", "observation_id"] + + +def test_get_groundwater_observation_by_sample(sample): + response = client.get( + "/observation/groundwater-level", + params={"sample_id": sample.id, "observed_property": "groundwater level"}, + ) + assert response.status_code == 200 + data = response.json() + assert "items" in data, "Expected 'items' in response" + items = data["items"] + assert len(items) > 0, "Expected at least one groundwater observation for the thing" + + +def test_get_groundwater_observation_by_thing(water_well_thing): + response = client.get( + "/observation/groundwater-level", + params={ + "thing_id": water_well_thing.id, + "observed_property": "groundwater level", + }, + ) + assert response.status_code == 200 + data = response.json() + assert "items" in data, "Expected 'items' in response" + items = data["items"] + assert len(items) > 0, "Expected at least one groundwater observation for the thing" + + +def test_get_groundwater_observation_by_thing_nonexistent(): + response = client.get("/observation/groundwater-level", params={"thing_id": 999}) + assert response.status_code == 200 + data = response.json() + assert "items" in data, "Expected 'items' in response" + items = data["items"] + assert ( + len(items) == 0 + ), "Expected no groundwater observations for a non-existent thing" + + +def test_get_groundwater_observation_by_time_range(): + response = client.get( + "/observation/groundwater-level", + params={ + "start_time": "2025-01-01T00:00:00Z", + "end_time": "2025-01-02T00:00:00Z", + }, + ) + assert response.status_code == 200 + data = response.json() + assert "items" in data, "Expected 'items' in response" + items = data["items"] + assert ( + len(items) > 0 + ), "Expected at least one groundwater observation in the time range" + + +def test_get_groundwater_observation_by_time_range_nonexistent(): + response = client.get( + "/observation/groundwater-level", + params={ + "start_time": "2020-01-01T00:00:00Z", + "end_time": "2020-01-02T00:00:00Z", + }, + ) + assert response.status_code == 200 + data = response.json() + assert "items" in data, "Expected 'items' in response" + items = data["items"] + assert len(items) == 0, "Expected no groundwater observations in the time range" + + +def test_get_water_chemistry_observations(water_chemistry_observation): + response = client.get("/observation/water-chemistry") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == water_chemistry_observation.id + assert data["items"][0][ + "created_at" + ] == water_chemistry_observation.created_at.isoformat().replace("+00:00", "Z") + assert ( + data["items"][0]["release_status"] == water_chemistry_observation.release_status + ) + assert data["items"][0]["sample_id"] == water_chemistry_observation.sample_id + assert data["items"][0]["sensor_id"] == water_chemistry_observation.sensor_id + assert ( + data["items"][0]["observation_datetime"] + == water_chemistry_observation.observation_datetime + ) + colon_index = water_chemistry_observation.observed_property.find(":") + assert ( + data["items"][0]["observed_property"] + == water_chemistry_observation.observed_property[colon_index + 1 :] + ) + assert data["items"][0]["value"] == water_chemistry_observation.value + assert data["items"][0]["unit"] == water_chemistry_observation.unit + + +def test_get_water_chemistry_observation_by_id(water_chemistry_observation): + response = client.get( + f"/observation/water-chemistry/{water_chemistry_observation.id}" + ) + assert response.status_code == 200 + data = response.json() + assert data["id"] == water_chemistry_observation.id + assert data[ + "created_at" + ] == water_chemistry_observation.created_at.isoformat().replace("+00:00", "Z") + assert data["release_status"] == water_chemistry_observation.release_status + assert data["sample_id"] == water_chemistry_observation.sample_id + assert data["sensor_id"] == water_chemistry_observation.sensor_id + assert ( + data["observation_datetime"] == water_chemistry_observation.observation_datetime + ) + colon_index = water_chemistry_observation.observed_property.find(":") + assert ( + data["observed_property"] + == water_chemistry_observation.observed_property[colon_index + 1 :] + ) + assert data["value"] == water_chemistry_observation.value + assert data["unit"] == water_chemistry_observation.unit + + +def test_get_water_chemistry_observation_by_id_404_not_found( + water_chemistry_observation, +): + bad_id = 99999 + response = client.get(f"/observation/water-chemistry/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +def test_get_water_chemistry_observation_by_id_404_wrong_observation_class( + groundwater_level_observation, geothermal_observation +): + for obs in groundwater_level_observation, geothermal_observation: + response = client.get(f"/observation/water-chemistry/{obs.id}") + assert response.status_code == 404 + data = response.json() + + if obs.observed_property == "groundwater level:groundwater level": + actual_observation_class = "groundwater level" + else: + actual_observation_class = "geothermal" + + assert ( + data["detail"][0]["msg"] + == f"Observation with ID {obs.id} is not a water chemistry observation. It is a {actual_observation_class} observation." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"observation_id": obs.id} + assert data["detail"][0]["loc"] == ["path", "observation_id"] + + +def test_get_geothermal_observations(geothermal_observation): + response = client.get("/observation/geothermal") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == geothermal_observation.id + assert data["items"][0][ + "created_at" + ] == geothermal_observation.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["release_status"] == geothermal_observation.release_status + assert data["items"][0]["sample_id"] == geothermal_observation.sample_id + assert data["items"][0]["sensor_id"] == geothermal_observation.sensor_id + assert ( + data["items"][0]["observation_datetime"] + == geothermal_observation.observation_datetime + ) + colon_index = geothermal_observation.observed_property.find(":") + assert ( + data["items"][0]["observed_property"] + == geothermal_observation.observed_property[colon_index + 1 :] + ) + assert data["items"][0]["value"] == geothermal_observation.value + assert data["items"][0]["unit"] == geothermal_observation.unit + assert ( + data["items"][0]["observation_depth"] + == geothermal_observation.observation_depth + ) + + +def test_get_geothermal_observation_by_id(geothermal_observation): + response = client.get(f"/observation/geothermal/{geothermal_observation.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == geothermal_observation.id + assert data["created_at"] == geothermal_observation.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["release_status"] == geothermal_observation.release_status + assert data["sample_id"] == geothermal_observation.sample_id + assert data["sensor_id"] == geothermal_observation.sensor_id + assert data["observation_datetime"] == geothermal_observation.observation_datetime + colon_index = geothermal_observation.observed_property.find(":") + assert ( + data["observed_property"] + == geothermal_observation.observed_property[colon_index + 1 :] + ) + assert data["value"] == geothermal_observation.value + assert data["unit"] == geothermal_observation.unit + assert data["observation_depth"] == geothermal_observation.observation_depth + + +def test_get_geothermal_observation_by_id_404_not_found(geothermal_observation): + bad_id = 99999 + response = client.get(f"/observation/geothermal/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +def test_get_geothermal_observation_by_id_404_wrong_observation_class( + water_chemistry_observation, groundwater_level_observation +): + for obs in water_chemistry_observation, groundwater_level_observation: + response = client.get(f"/observation/geothermal/{obs.id}") + assert response.status_code == 404 + data = response.json() + + if obs.observed_property == "groundwater level:groundwater level": + actual_observation_class = "groundwater level" + else: + actual_observation_class = "water chemistry" + + assert ( + data["detail"][0]["msg"] + == f"Observation with ID {obs.id} is not a geothermal observation. It is a {actual_observation_class} observation." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"observation_id": obs.id} + assert data["detail"][0]["loc"] == ["path", "observation_id"] + + +# JB's comment: I don't think that geographic filters are necessary for +# observations. I think that they should only be applicable to finding Things +# and locations. Then the user can proceed from there to find observations. +@pytest.mark.skip(reason="unclear why not working. is it necessary functionality?") +def test_get_groundwater_observation_by_polygon(): + response = client.get( + "/observation/groundwater-level", + params={ + "polygon": "POLYGON((-10.0 -10.0, 20.0 10.0, 20.0 20.0, 10.0 20.0, -10.0 -10.0))", + }, + ) + assert response.status_code == 200 + data = response.json() + assert "items" in data, "Expected 'items' in response" + items = data["items"] + assert ( + len(items) > 0 + ), "Expected at least one groundwater observation within the polygon" + + +# JB's comment: I don't think that geographic filters are necessary for +# observations. I think that they should only be applicable to finding Things +# and locations. Then the user can proceed from there to find observations +@pytest.mark.skip(reason="unclear why not working. is it necessary functionality?") +def test_get_groundwater_observation_by_polygon_nonexistent(): + response = client.get( + "/observation/groundwater-level", + params={ + "polygon": "POLYGON((-100.0 -100.0, -90.0 -90.0, -90.0 -80.0, -100.0 -80.0, -100.0 -100.0))", + }, + ) + assert response.status_code == 200 + data = response.json() + assert "items" in data, "Expected 'items' in response" + items = data["items"] + assert len(items) == 0, "Expected no groundwater observations within the polygon" + + +# DELETE tests ================================================================= + + +def test_delete_observation_by_id(observation_to_delete): + response = client.delete(f"/observation/{observation_to_delete.id}") + assert response.status_code == 204 + + # Verify that the observation was deleted + get_response = client.get(f"/observation/{observation_to_delete.id}") + assert get_response.status_code == 404 + data = get_response.json() + assert ( + data["detail"] == f"Observation with ID {observation_to_delete.id} not found." + ) + + +def test_delete_observation_by_id_404_not_found(observation_to_delete): + bad_id = 99999 + response = client.delete(f"/observation/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Observation with ID {bad_id} not found." + + +# ============= EOF ============================================= diff --git a/tests/test_regex.py b/tests/test_regex.py index 2b7498e7a..8b63d4160 100644 --- a/tests/test_regex.py +++ b/tests/test_regex.py @@ -53,10 +53,10 @@ def test_query_regex_nested_between(): def test_query_regex_like(): - text = "construction_notes like '%test%'" + text = "well_construction_notes like '%test%'" match = QUERY_REGEX.match(text) assert match is not None - assert match.group("field") == "construction_notes" + assert match.group("field") == "well_construction_notes" assert match.group("value") == "'%test%'" assert match.group("operator") == "like" diff --git a/tests/test_sample.py b/tests/test_sample.py index 23d75160b..ba452d24c 100644 --- a/tests/test_sample.py +++ b/tests/test_sample.py @@ -13,11 +13,326 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from tests import client +import pytest +from pydantic import ValidationError +from main import app +from core.dependencies import admin_function, editor_function, viewer_function +from db.sample import Sample +from schemas.sample import ValidateSample +from tests import client, cleanup_post_test, cleanup_patch_test, override_authentication -def test_get_all_samples_for_well(): - response = client.get("/samples/well/1") + +@pytest.fixture(scope="module", autouse=True) +def override_dependencies_fixture(): + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# ============== Custom validators ================================================= + + +def test_validate_sample_top_and_bottom(): + for i in range(2): + sample_top = 10.0 if i == 0 else None + sample_bottom = 5.0 if i == 1 else None + with pytest.raises( + ValidationError, + match="Sample top and bottom must both be defined or both must be None.", + ): + ValidateSample(sample_top=sample_top, sample_bottom=sample_bottom) + + +# ============= Post tests for samples ============================================= +def test_add_sample(spring_thing, sensor): + """ + Test adding a sample. + """ + payload = { + "thing_id": spring_thing.id, + "sample_type": "groundwater", + "field_sample_id": "FS-1234567", + "sample_date": "2025-01-01T00:00:00Z", + "release_status": "draft", + "sampler_name": "Test Sampler", + "qc_sample": "Duplicate", + "sensor_id": sensor.id, + "sample_matrix": "water", + "sample_method": "manual", + "duplicate_sample_number": 3, + "sample_top": 2, + "sample_bottom": 3, + } + response = client.post( + "/sample", + json=payload, + ) + data = response.json() + assert response.status_code == 201 + assert "id" in data + assert "created_at" in data + assert data["thing"]["id"] == spring_thing.id + assert data["sample_type"] == payload["sample_type"] + assert data["field_sample_id"] == payload["field_sample_id"] + assert data["sample_date"] == payload["sample_date"] + assert data["release_status"] == payload["release_status"] + assert data["sampler_name"] == payload["sampler_name"] + assert data["qc_sample"] == payload["qc_sample"] + assert data["sensor_id"] == payload["sensor_id"] + assert data["sample_matrix"] == payload["sample_matrix"] + assert data["sample_method"] == payload["sample_method"] + assert data["duplicate_sample_number"] == payload["duplicate_sample_number"] + assert data["sample_top"] == payload["sample_top"] + assert data["sample_bottom"] == payload["sample_bottom"] + + # cleanup after adding the sample + cleanup_post_test(Sample, data["id"]) + + +def test_409_add_sample_invalid_field_sample_id(sample, spring_thing): + """ + Test adding a sample with an invalid field_sample_id. + """ + payload = { + "thing_id": spring_thing.id, + "sample_type": "groundwater", + "field_sample_id": sample.field_sample_id, # This should already exist + "sample_date": "2025-01-01T00:00:00Z", + "release_status": "draft", + "sampler_name": "Test Sampler", + "qc_sample": "Duplicate", + "sensor_id": None, + "sample_matrix": "water", + "sample_method": "manual", + "duplicate_sample_number": 3, + "sample_top": 2, + "sample_bottom": 3, + } + response = client.post( + "/sample", + json=payload, + ) + data = response.json() + assert response.status_code == 409 + assert data["detail"][0]["loc"] == ["body", "field_sample_id"] + assert ( + data["detail"][0]["msg"] + == f"Sample with field_sample_id {sample.field_sample_id} already exists." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"field_sample_id": sample.field_sample_id} + + +def test_409_add_sample_invalid_thing_id(): + """ + Test adding a sample with an invalid thing_id. + """ + payload = { + "thing_id": 9999999, + "sample_type": "groundwater", + "field_sample_id": "FS-9999999", + "sample_date": "2025-01-01T00:00:00Z", + "release_status": "draft", + "sampler_name": "Test Sampler", + "qc_sample": "Duplicate", + "sensor_id": None, + "sample_matrix": "water", + "sample_method": "manual", + "duplicate_sample_number": 3, + "sample_top": 2, + "sample_bottom": 3, + } + response = client.post( + "/sample", + json=payload, + ) + data = response.json() + assert response.status_code == 409 + assert data["detail"][0]["loc"] == ["body", "thing_id"] + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {payload['thing_id']} does not exist." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": payload["thing_id"]} + + +# ============= Patch tests for samples ============================================= +def test_patch_sample(sample): + """ + Test updating a sample. + """ + payload = { + "sampler_name": "test sample b", + "sample_method": "continuous", + "sample_date": "2025-01-02T00:00:00Z", + "release_status": "private", + } + response = client.patch(f"/sample/{sample.id}", json=payload) + assert response.status_code == 200 + data = response.json() + + assert data["id"] == sample.id + assert data["sampler_name"] == payload["sampler_name"] + assert data["sample_date"] == payload["sample_date"] + assert data["sample_method"] == payload["sample_method"] + assert data["release_status"] == payload["release_status"] + + # rollback after updating the sample + cleanup_patch_test(Sample, payload, sample) + + +def test_patch_sample_404_not_found(sample): + """ + Test updating a sample that does not exist + """ + sample_method_patch = "continuous" + response = client.patch( + "/sample/999", + json={ + "sample_method": sample_method_patch, + }, + ) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == "Sample with ID 999 not found." + + +def test_409_patch_sample_invalid_field_sample_id(sample, second_sample): + """ + Test updating a sample with an invalid field_sample_id. + """ + payload = { + "field_sample_id": sample.field_sample_id, # This should already exist + } + response = client.patch( + f"/sample/{second_sample.id}", + json=payload, + ) + data = response.json() + assert response.status_code == 409 + assert data["detail"][0]["loc"] == ["body", "field_sample_id"] + assert ( + data["detail"][0]["msg"] + == f"Sample with field_sample_id {payload['field_sample_id']} already exists." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"field_sample_id": sample.field_sample_id} + + +def test_409_patch_sample_invalid_thing_id(sample): + """ + Test updating a sample with an invalid thing_id. + """ + payload = { + "thing_id": 9999999, + } + response = client.patch( + f"/sample/{sample.id}", + json=payload, + ) + data = response.json() + assert response.status_code == 409 + assert data["detail"][0]["loc"] == ["body", "thing_id"] + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {payload['thing_id']} does not exist." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": payload["thing_id"]} + + +# ============= Get tests for samples ============================================= +def test_get_samples(sample, water_well_thing): + """ + Test retrieving samples + """ + response = client.get("/sample") + assert response.status_code == 200 + data = response.json() + assert len(data["items"]) == 1 + assert data["items"][0]["id"] == sample.id + assert data["items"][0]["created_at"] == sample.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["thing"]["id"] == water_well_thing.id + assert data["items"][0]["sample_type"] == sample.sample_type + assert data["items"][0]["field_sample_id"] == sample.field_sample_id + assert data["items"][0]["sample_date"] == sample.sample_date + assert data["items"][0]["release_status"] == sample.release_status + assert data["items"][0]["sampler_name"] == sample.sampler_name + assert data["items"][0]["qc_sample"] == sample.qc_sample + assert data["items"][0]["sensor_id"] == sample.sensor_id + assert data["items"][0]["sample_matrix"] == sample.sample_matrix + assert data["items"][0]["sample_method"] == sample.sample_method + assert data["items"][0]["duplicate_sample_number"] == sample.duplicate_sample_number + assert data["items"][0]["sample_top"] == sample.sample_top + assert data["items"][0]["sample_bottom"] == sample.sample_bottom + + +def test_get_sample_by_id(sample, water_well_thing): + """ + Test retrieving a sample by its ID. + """ + response = client.get(f"/sample/{sample.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == sample.id + assert data["created_at"] == sample.created_at.isoformat().replace("+00:00", "Z") + assert data["thing"]["id"] == water_well_thing.id + assert data["sample_type"] == sample.sample_type + assert data["field_sample_id"] == sample.field_sample_id + assert data["sample_date"] == sample.sample_date + assert data["release_status"] == sample.release_status + assert data["sampler_name"] == sample.sampler_name + assert data["qc_sample"] == sample.qc_sample + assert data["sensor_id"] == sample.sensor_id + assert data["sample_matrix"] == sample.sample_matrix + assert data["sample_method"] == sample.sample_method + assert data["duplicate_sample_number"] == sample.duplicate_sample_number + assert data["sample_top"] == sample.sample_top + assert data["sample_bottom"] == sample.sample_bottom + + +def test_get_sample_by_id_404_not_found(sample): + """ + Test retrieving a sample that does not exist. + """ + response = client.get("/sample/999") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == "Sample with ID 999 not found." + + +# DELETE tests ================================================================= + + +def test_delete_sample(second_sample): + response = client.delete(f"/sample/{second_sample.id}") + assert response.status_code == 204 + + # verify the sample is deleted + response = client.get(f"/sample/{second_sample.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Sample with ID {second_sample.id} not found." + + +def test_delete_sample_404_not_found(second_sample): + bad_sample_id = 999999 + response = client.delete(f"/sample/{bad_sample_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Sample with ID {bad_sample_id} not found." # ============= EOF ============================================= diff --git a/tests/test_search.py b/tests/test_search.py index 83ca079af..e7619b0c9 100644 --- a/tests/test_search.py +++ b/tests/test_search.py @@ -13,36 +13,141 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from sqlalchemy import select, func, desc, cast, Text -from sqlalchemy.dialects.postgresql import REGCONFIG +import pytest +from sqlalchemy import select +from db import search +from db.contact import Contact, Phone, Email +from db.engine import session_ctx +from tests import client -from db.engine import database_sessionmaker, get_db_session -from db.contact import Contact +def test_search_api(water_well_thing, spring_thing, contact): + response = client.get("/search", params={"q": "Test"}) + assert response.status_code == 200 + data = response.json() + assert isinstance(data, dict) + items = data.get("items") + assert isinstance(items, list) + assert len(items) == 3 -from tests import client +@pytest.mark.skip(reason="This test is not working .") +def test_search_api2(): + response = client.get("/search", params={"q": "riochama"}) + assert response.status_code == 200 + data = response.json() + print(data) + assert isinstance(data, list) + assert len(data) == 1 + assert data[0]["label"] == "riochama.png" -def test_search_query(): - session = next(get_db_session()) - # query = search(select(Owner), "Test") - # owner = session.scalars(query).first() - # assert owner is not None - session.close() +def test_search_api3(): + response = client.get("/search", params={"q": "nonexistent"}) + assert response.status_code == 200 + data = response.json() + assert isinstance(data, dict) + items = data.get("items") + assert isinstance(items, list) + assert len(items) == 0 + + +def test_search_contact(contact): + with session_ctx() as session: + query = search(select(Contact), "Test") + + queried_contact = session.scalars(query).first() + assert queried_contact is not None + + +def test_search_contact_no_results(contact): + with session_ctx() as session: + query = search(select(Contact), "NonExistent") + queried_contact = session.scalars(query).first() + assert queried_contact is None + + +def test_search_contact_like(contact): + with session_ctx() as session: + query = search(select(Contact), "Te") + queried_contact = session.scalars(query).first() + assert queried_contact is not None + + +def test_search_contact_by_email(contact, email): + with session_ctx() as session: + vector = Contact.search_vector | Email.search_vector + query = search( + select(Contact).join(Email), + "test@example.com", + vector=vector, + ) + + queried_contact = session.scalars(query).first() + assert queried_contact is not None + + +def test_search_contact_by_email_no_results(contact, email): + with session_ctx() as session: + vector = Contact.search_vector | Email.search_vector + query = search( + select(Contact).join(Email), + "foo", + vector=vector, + ) + queried_contact = session.scalars(query).first() + assert queried_contact is None + + +def test_search_contact_by_phone_number(contact, phone): + with session_ctx() as session: + vector = Contact.search_vector | Phone.search_vector + query = search( + select(Contact).join(Phone), + "+15051234567", + vector=vector, + ) + queried_contact = session.scalars(query).first() + assert queried_contact is not None + + +def test_search_contact_by_phone_number_no_results(contact, phone): + with session_ctx() as session: + vector = Contact.search_vector | Phone.search_vector + query = search( + select(Contact).join(Phone), + "+12345678902", + vector=vector, + ) + queried_contact = session.scalars(query).first() + assert queried_contact is None + + +def test_search_contact_by_phone_like(contact, phone): + with session_ctx() as session: + vector = Contact.search_vector | Phone.search_vector + query = search( + select(Contact).join(Phone), + "+15", + vector=vector, + ) + queried_contact = session.scalars(query).first() + assert queried_contact is not None + + +def test_search_contact_by_phone_like_no_results(contact, phone): + with session_ctx() as session: + vector = Contact.search_vector | Phone.search_vector + query = search( + select(Contact).join(Phone), + "+99", + vector=vector, + ) + queried_contact = session.scalars(query).first() + assert queried_contact is None -# -# def test_search_query_no_results(): -# session = next(get_db_session()) -# -# query = search(select(Owner), "NonExistentOwner") -# owner = session.scalars(query).first() -# assert owner is None -# session.close() -# -# # def test_search_owner_by_contact_name(): # session = next(get_db_session()) # diff --git a/tests/test_sensor.py b/tests/test_sensor.py index 50c270898..0c9e5aab9 100644 --- a/tests/test_sensor.py +++ b/tests/test_sensor.py @@ -13,50 +13,198 @@ # See the License for the specific language governing permissions and # limitations under the License. # =============================================================================== -from tests import client +from core.dependencies import admin_function, editor_function, viewer_function +from db import Sensor +from main import app +from schemas.sensor import ValidateSensor +from tests import client, cleanup_post_test, cleanup_patch_test, override_authentication +import pytest +from pydantic import ValidationError -def test_add_sensor(): - response = client.post( - "/sensor", - json={ - "name": "Test Sensor", - "equipment_type": "Pump", - "model": "Model X", - "serial_no": "123456", - "date_installed": "2023-01-01T00:00:00", - # "date_removed": None, - "recording_interval": 60, - "equipment_notes": "Test equipment", - # "location_id": 2, - }, + +@pytest.fixture(scope="module", autouse=True) +def override_dependencies_fixture(): + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} ) + app.dependency_overrides[viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# ====== VALIDATION tests ====================================================== + + +def test_validate_datetime_installed_datetime_removed(): + with pytest.raises( + ValidationError, match="datetime removed must be after datetime installed" + ): + ValidateSensor( + datetime_installed="2023-01-02T00:00:00Z", + datetime_removed="2023-01-01T00:00:00Z", + ) + + +# ====== POST tests ============================================================ + + +def test_add_sensor(): + payload = { + "name": "Test Sensor 2", + "model": "Model X", + "serial_no": "12345678", + "datetime_installed": "2024-01-01T00:00:00Z", + "datetime_removed": None, + "recording_interval": 60, + "notes": "Test equipment", + "release_status": "draft", + } + response = client.post("/sensor", json=payload) assert response.status_code == 201 data = response.json() assert "id" in data - # assert data["location_id"] == 2 + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["name"] == payload["name"] + assert data["model"] == payload["model"] + assert data["serial_no"] == payload["serial_no"] + assert data["datetime_installed"] == payload["datetime_installed"] + assert data["datetime_removed"] == payload["datetime_removed"] + assert data["recording_interval"] == payload["recording_interval"] + assert data["notes"] == payload["notes"] + + # cleanup after post test + cleanup_post_test(Sensor, data["id"]) + + +# ====== PATCH tests =========================================================== + + +def test_patch_sensor(sensor): + payload = { + "name": "patched name", + "model": "patched model", + "release_status": "draft", + } + response = client.patch(f"/sensor/{sensor.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["id"] == sensor.id + assert data["name"] == payload["name"] + assert data["model"] == payload["model"] + assert data["release_status"] == payload["release_status"] + + # cleanup after patch test + cleanup_patch_test(Sensor, payload, sensor) + + +def test_patch_sensor_404_not_found(sensor): + bad_sensor_id = 99999 + payload = {"name": "patched name", "model": "patched model"} + response = client.patch(f"/sensor/{bad_sensor_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Sensor with ID {bad_sensor_id} not found." + + +def test_patch_sensor_409_conflicting_datetime_installed(sensor): + payload = {"datetime_installed": "2025-01-01T00:00:00Z"} + response = client.patch(f"/sensor/{sensor.id}", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "datetime_installed"] + assert ( + data["detail"][0]["msg"] + == f"new datetime installed must be before existing datetime removed of {sensor.datetime_removed}" + ) + assert data["detail"][0]["type"] == "value_error" + + +def test_patch_sensor_409_conflicting_datetime_removed(sensor): + payload = {"datetime_removed": "2020-01-01T00:00:00Z"} + response = client.patch(f"/sensor/{sensor.id}", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "datetime_removed"] + assert ( + data["detail"][0]["msg"] + == f"new datetime removed must be after existing datetime installed of {sensor.datetime_installed}" + ) + assert data["detail"][0]["type"] == "value_error" -def test_get_sensors(): +# ====== GET tests ============================================================= + + +def test_get_sensors(sensor): response = client.get("/sensor") assert response.status_code == 200 data = response.json() - assert isinstance(data, list), "Expected a list of sensors" - if data: - assert "id" in data[0], "Expected 'id' in sensor data" - assert "name" in data[0], "Expected 'name' in sensor data" - assert "equipment_type" in data[0], "Expected 'equipment_type' in sensor data" + assert data["total"] == 1 + assert data["items"][0]["id"] == sensor.id + assert data["items"][0]["created_at"] == sensor.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["items"][0]["release_status"] == sensor.release_status + assert data["items"][0]["name"] == sensor.name + assert data["items"][0]["model"] == sensor.model + assert data["items"][0]["serial_no"] == sensor.serial_no + assert data["items"][0]["datetime_installed"] == sensor.datetime_installed + assert data["items"][0]["datetime_removed"] == sensor.datetime_removed + assert data["items"][0]["recording_interval"] == sensor.recording_interval + assert data["items"][0]["notes"] == sensor.notes -def test_get_sensor(): - # Assuming the first sensor has an ID of 1 - response = client.get("/sensor/1") +def test_get_sensor_by_id(sensor): + response = client.get(f"/sensor/{sensor.id}") assert response.status_code == 200 data = response.json() - assert "id" in data, "Expected 'id' in sensor data" - assert data["id"] == 1, "Expected sensor ID to be 1" - assert "name" in data, "Expected 'name' in sensor data" - assert "equipment_type" in data, "Expected 'equipment_type' in sensor data" + assert data["id"] == sensor.id + assert data["created_at"] == sensor.created_at.isoformat().replace("+00:00", "Z") + assert data["release_status"] == sensor.release_status + assert data["name"] == sensor.name + assert data["model"] == sensor.model + assert data["serial_no"] == sensor.serial_no + assert data["datetime_installed"] == sensor.datetime_installed + assert data["datetime_removed"] == sensor.datetime_removed + assert data["recording_interval"] == sensor.recording_interval + assert data["notes"] == sensor.notes + + +def test_get_sensor_by_id_404_not_found(sensor): + bad_sensor_id = 999999 + response = client.get(f"/sensor/{bad_sensor_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Sensor with ID {bad_sensor_id} not found." + + +# ====== DELETE tests ========================================================== + + +def test_delete_sensor(second_sensor): + response = client.delete(f"/sensor/{second_sensor.id}") + assert response.status_code == 204 + + # verify sensor is gone + response = client.get(f"/sensor/{second_sensor.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Sensor with ID {second_sensor.id} not found." + + +def test_delete_sensor_404_not_found(sensor): + bad_sensor_id = 999999 + response = client.delete(f"/sensor/{bad_sensor_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Sensor with ID {bad_sensor_id} not found." # ============= EOF ============================================= diff --git a/tests/test_series.py b/tests/test_series.py index 5e0751652..0dbcd31db 100644 --- a/tests/test_series.py +++ b/tests/test_series.py @@ -25,79 +25,124 @@ from tests import client -@pytest.mark.skip -def test_add_sample(): +@pytest.mark.skip(reason="series deprecated") +def test_add_series(): response = client.post( - "/sample/add", + "/series", json={ - "collection_timestamp": datetime.datetime.now().isoformat(), - "collection_method": "manual", - "well_id": 1, - }, - ) - - assert response.status_code == 201 - # data = response.json() - # assert "id" in data, "Expected 'id' in response data" - # assert data["collection_method"] == "manual", "Expected 'method' to be 'manual'" - - -@pytest.mark.skip -def test_add_sample_timeseries(): - response = client.post( - "/sample/time_series/add", - json={ - "name": "Test Sample Timeseries", + "name": "Test Series", + "description": "A test series for groundwater level.", "observed_property": "groundwater level", + "sensor_id": 1, + "thing_id": 1, "unit": "ft", }, ) assert response.status_code == 201 data = response.json() + assert data["name"] == "Test Series", "Expected 'name' to be 'Test Series'" assert ( data["observed_property"] == "groundwater level" - ), "Expected 'observed_property' to be 'groundwater level'" - + ), "Expected 'observed_property' to be 'groundwater_level'" -@pytest.mark.skip -def test_add_sample_observation(): - response = client.post( - "/sample/time_series/observations/add", - json=[ - { - "timestamp": datetime.datetime.now().isoformat(), - "value": 10.5, - "sample_id": 1, - "time_series_id": 1, - } - ], - ) - assert response.status_code == 201 +@pytest.mark.skip(reason="series deprecated") +def test_get_series(): + response = client.get("/series") + assert response.status_code == 200 data = response.json() - assert isinstance(data, list), "Expected a list of observations" - assert len(data) == 1, "Expected one observation to be added" - assert data[0]["value"] == 10.5, "Expected observation value to be 10.5" - assert data[0]["sample_id"] == 1, "Expected observation sample_id to be 1" - assert data[0]["time_series_id"] == 1, "Expected observation time_series_id to be 1" + assert "items" in data, "Expected 'items' in response data" + items = data["items"] + assert isinstance(items, list), "Expected a list of series" + assert len(items) > 0, "Expected at least one series in the response" -@pytest.mark.skip -def test_sample_timeseries(): - response = client.get("/sample/time_series/well/1") - data = response.json() +@pytest.mark.skip(reason="series deprecated") +def test_get_series_by_id(): + response = client.get("/series/1") assert response.status_code == 200 - assert len(data) == 1, "Expected at least one timeseries for the well" + data = response.json() + assert isinstance(data, dict), "Expected a dictionary for series details" + assert data["id"] == 1, "Expected series id to be 1" + assert data["name"] == "Test Series", "Expected series name to be 'Test Series'" -@pytest.mark.skip -def test_sample_timeseries_observations(): - response = client.get("/sample/time_series/1/observations") - data = response.json() - assert response.status_code == 200 - assert isinstance(data, list), "Expected a list of observations" - assert len(data) == 1, "Expected at least one observation for the timeseries" +# ============= EOF ============================================= + +# @pytest.mark.skip +# def test_add_sample(): +# response = client.post( +# "/sample/add", +# json={ +# "collection_timestamp": datetime.datetime.now().isoformat(), +# "collection_method": "manual", +# "well_id": 1, +# }, +# ) +# +# assert response.status_code == 201 +# # data = response.json() +# # assert "id" in data, "Expected 'id' in response data" +# # assert data["collection_method"] == "manual", "Expected 'method' to be 'manual'" +# +# +# @pytest.mark.skip +# def test_add_sample_timeseries(): +# response = client.post( +# "/sample/time_series/add", +# json={ +# "name": "Test Sample Timeseries", +# "observed_property": "groundwater level", +# "unit": "ft", +# }, +# ) +# assert response.status_code == 201 +# data = response.json() +# assert ( +# data["observed_property"] == "groundwater level" +# ), "Expected 'observed_property' to be 'groundwater level'" +# +# +# @pytest.mark.skip +# def test_add_sample_observation(): +# response = client.post( +# "/sample/time_series/observations/add", +# json=[ +# { +# "timestamp": datetime.datetime.now().isoformat(), +# "value": 10.5, +# "sample_id": 1, +# "time_series_id": 1, +# } +# ], +# ) +# +# assert response.status_code == 201 +# data = response.json() +# assert isinstance(data, list), "Expected a list of observations" +# assert len(data) == 1, "Expected one observation to be added" +# assert data[0]["value"] == 10.5, "Expected observation value to be 10.5" +# assert data[0]["sample_id"] == 1, "Expected observation sample_id to be 1" +# assert data[0]["time_series_id"] == 1, "Expected observation time_series_id to be 1" +# +# +# @pytest.mark.skip +# def test_sample_timeseries(): +# response = client.get("/sample/time_series/well/1") +# data = response.json() +# assert response.status_code == 200 +# assert len(data) == 1, "Expected at least one timeseries for the well" +# +# +# @pytest.mark.skip +# def test_sample_timeseries_observations(): +# response = client.get("/sample/time_series/1/observations") +# data = response.json() +# assert response.status_code == 200 +# assert isinstance(data, list), "Expected a list of observations" +# assert len(data) == 1, "Expected at least one observation for the timeseries" +# # def test_add_timeseries(): # response = client.post( @@ -192,5 +237,3 @@ def test_sample_timeseries_observations(): # results[0][1], float # ), "Expected a datetime result from the time bucket query" # - -# ============= EOF ============================================= diff --git a/tests/test_thing.py b/tests/test_thing.py index 9f50640dc..b9f7485bb 100644 --- a/tests/test_thing.py +++ b/tests/test_thing.py @@ -15,122 +15,952 @@ # =============================================================================== import pytest -from tests import client - - -def test_add_well(): - # response = client.post( - # "/lexicon/add", json={"term": "Monitoring", "definition": "Monitoring Well"} - # ) - # assert response.status_code == 200 - # response = client.post( - # "/lexicon/add", json={"term": "Production", "definition": "Production Well"} - # ) - # assert response.status_code == 200 - - response = client.post( - "/thing/well", - json={ - "location_id": 1, - "api_id": "1001-0001", - "ose_pod_id": "RA-0001", - "well_type": "Monitoring", - "well_depth": 100.0, - "construction_notes": "this is a test of notes", - }, +from db import Thing, WellScreen, ThingIdLink +from tests import client, override_authentication, cleanup_post_test, cleanup_patch_test +from main import app +from core.dependencies import ( + admin_function, + editor_function, + amp_admin_function, + amp_editor_function, + viewer_function, + amp_viewer_function, +) +from schemas.location import LocationResponse + + +@pytest.fixture(scope="module", autouse=True) +def override_authentication_dependency_fixture(): + app.dependency_overrides[admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[viewer_function] = override_authentication() + app.dependency_overrides[amp_admin_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} ) + app.dependency_overrides[amp_editor_function] = override_authentication( + default={"name": "foobar", "sub": "1234567890"} + ) + app.dependency_overrides[amp_viewer_function] = override_authentication() + + yield + + app.dependency_overrides = {} + + +# POST tests =================================================================== + + +def test_add_water_well(location, group): + payload = { + "location_id": location.id, + "group_id": group.id, + "release_status": "draft", + "name": "Test Well", + "well_type": "Monitoring", + "well_depth": 100.0, + "hole_depth": 110, + "well_construction_notes": "this is a test of notes", + } + + response = client.post("/thing/water-well", json=payload) assert response.status_code == 201 data = response.json() assert "id" in data + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["name"] == payload["name"] + assert data["thing_type"] == "water well" + assert data["well_type"] == payload["well_type"] + assert data["hole_depth"] == payload["hole_depth"] + assert data["well_depth"] == payload["well_depth"] + assert data["well_construction_notes"] == payload["well_construction_notes"] - response = client.post( - "/thing/well", - json={ - "location_id": 2, - "api_id": "1001-0002", - "ose_pod_id": "RA-0002", - "well_type": "Production", - "well_depth": 1200.0, - }, + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") ) + assert data["active_location"] == expected_location + + cleanup_post_test(Thing, data["id"]) + + +def test_add_water_well_409_bad_group_id(location): + bad_group_id = 9999 + payload = { + "location_id": location.id, + "group_id": bad_group_id, # Invalid group ID + "release_status": "draft", + "name": "Test Well", + "well_type": "Monitoring", + "well_depth": 100.0, + "hole_depth": 110, + "well_construction_notes": "this is a test of notes", + } + + response = client.post("/thing/water-well", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "group_id"] + assert data["detail"][0]["msg"] == f"Group with ID {bad_group_id} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"group_id": bad_group_id} + + +def test_add_water_well_409_bad_location_id(group): + bad_location_id = 9999 + payload = { + "location_id": bad_location_id, + "group_id": group.id, # Invalid group ID + "release_status": "draft", + "name": "Test Well", + "well_type": "Monitoring", + "well_depth": 100.0, + "hole_depth": 110, + "well_construction_notes": "this is a test of notes", + } + + response = client.post("/thing/water-well", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "location_id"] + assert data["detail"][0]["msg"] == f"Location with ID {bad_location_id} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"location_id": bad_location_id} + + +def test_add_spring(location, group): + payload = { + "location_id": location.id, + "group_id": group.id, + "name": "test spring", + "release_status": "draft", + "spring_type": "Ephemeral", + } + response = client.post("/thing/spring", json=payload) assert response.status_code == 201 data = response.json() assert "id" in data + assert "created_at" in data + assert data["name"] == payload["name"] + assert data["release_status"] == payload["release_status"] + assert data["spring_type"] == payload["spring_type"] + + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["active_location"] == expected_location + + cleanup_post_test(Thing, data["id"]) -def test_add_spring(): - response = client.post("/thing/spring", json={"location_id": 1}) +def test_add_spring_409_bad_group_id(location): + bad_group_id = 9999 + payload = { + "location_id": location.id, + "group_id": bad_group_id, # Invalid group ID + "name": "test spring", + "release_status": "draft", + "spring_type": "Ephemeral", + } + response = client.post("/thing/spring", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "group_id"] + assert data["detail"][0]["msg"] == f"Group with ID {bad_group_id} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"group_id": bad_group_id} + + +def test_add_spring_409_bad_location_id(group): + bad_location_id = 9999 + payload = { + "location_id": bad_location_id, + "group_id": group.id, # Invalid group ID + "name": "test spring", + "release_status": "draft", + "spring_type": "Ephemeral", + } + response = client.post("/thing/spring", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "location_id"] + assert data["detail"][0]["msg"] == f"Location with ID {bad_location_id} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"location_id": bad_location_id} + + +def test_add_well_screen(water_well_thing): + payload = { + "thing_id": water_well_thing.id, + "screen_depth_top": 10.0, + "screen_depth_bottom": 20.0, + "screen_type": "PVC", + "release_status": "draft", + } + response = client.post("/thing/well-screen", json=payload) + assert response.status_code == 201 data = response.json() assert "id" in data + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["thing_id"] == water_well_thing.id + assert data["screen_depth_top"] == payload["screen_depth_top"] + assert data["screen_depth_bottom"] == payload["screen_depth_bottom"] + assert data["screen_type"] == payload["screen_type"] + + cleanup_post_test(WellScreen, data["id"]) + + +def test_add_well_screen_409_bad_thing_id(): + bad_thing_id = 9999 + payload = { + "thing_id": bad_thing_id, + "screen_depth_top": 10.0, + "screen_depth_bottom": 20.0, + "screen_type": "PVC", + "release_status": "draft", + } + response = client.post("/thing/well-screen", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "thing_id"] + assert data["detail"][0]["msg"] == f"Thing with ID {bad_thing_id} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": bad_thing_id} + + +def test_well_add_well_screen_409_wrong_thing_type(spring_thing): + payload = { + "thing_id": spring_thing.id, + "screen_depth_top": 10.0, + "screen_depth_bottom": 20.0, + "screen_type": "PVC", + "release_status": "draft", + } + response = client.post("/thing/well-screen", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "thing_id"] + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {spring_thing.id} is not a water well Thing. It is a spring Thing." + ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": spring_thing.id} -def test_add_well_screen(): - # response = client.post( - # "/lexicon/add", - # json={"term": "PVC", "definition": "PVC Well Screen"}, - # ) - # assert response.status_code == 200 - response = client.post( - "/thing/well/screen", - json={ - "well_id": 1, - "screen_depth_top": 10.0, - "screen_depth_bottom": 20.0, - "screen_type": "PVC", - }, +def test_add_well_screen_409_bad_screen_type(water_well_thing): + payload = { + "thing_id": water_well_thing.id, + "screen_depth_top": 10.0, + "screen_depth_bottom": 20.0, + "screen_type": "NotARealType", + "release_status": "draft", + } + response = client.post("/thing/well-screen", json=payload) + + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "screen_type"] + assert ( + data["detail"][0]["msg"] + == f"{payload['screen_type']} is an invalid screen type. Valid types are: PVC | Steel | Concrete." ) + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"screen_type": payload["screen_type"]} + +def test_add_thing_link(spring_thing): + payload = { + "thing_id": spring_thing.id, + "relation": "same_as", + "alternate_id": "4321-1234", + "alternate_organization": "USGS", + "release_status": "draft", + } + response = client.post("/thing/id-link", json=payload) assert response.status_code == 201 data = response.json() assert "id" in data - assert data["well_id"] == 1 + assert "created_at" in data + assert data["release_status"] == payload["release_status"] + assert data["thing_id"] == spring_thing.id + assert data["relation"] == payload["relation"] + assert data["alternate_id"] == payload["alternate_id"] + assert data["alternate_organization"] == payload["alternate_organization"] + + cleanup_post_test(ThingIdLink, data["id"]) + + +def test_add_thing_id_link_409_bad_thing_id(): + bad_thing_id = 9999 + payload = { + "thing_id": bad_thing_id, + "relation": "same_as", + "alternate_id": "4321-1234", + "alternate_organization": "USGS", + "release_status": "draft", + } + response = client.post("/thing/id-link", json=payload) + assert response.status_code == 409 + data = response.json() + assert data["detail"][0]["loc"] == ["body", "thing_id"] + assert data["detail"][0]["msg"] == f"Thing with ID {bad_thing_id} not found." + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": bad_thing_id} + + +# GET tests ==================================================================== + + +def test_get_water_wells(water_well_thing, location): + response = client.get("/thing/water-well") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == water_well_thing.id + assert data["items"][0][ + "created_at" + ] == water_well_thing.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["name"] == water_well_thing.name + assert data["items"][0]["thing_type"] == water_well_thing.thing_type + assert data["items"][0]["release_status"] == water_well_thing.release_status + assert data["items"][0]["well_type"] == water_well_thing.well_type + assert data["items"][0]["well_depth"] == water_well_thing.well_depth + assert data["items"][0]["hole_depth"] == water_well_thing.hole_depth + assert ( + data["items"][0]["well_construction_notes"] + == water_well_thing.well_construction_notes + ) + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["items"][0]["active_location"] == expected_location -# ===================== get ========================== -def test_get_wells(): - response = client.get("/thing/well") +def test_get_water_well_by_id(water_well_thing, location): + response = client.get(f"/thing/water-well/{water_well_thing.id}") assert response.status_code == 200 - assert len(response.json()) > 0 + data = response.json() + assert data["id"] == water_well_thing.id + assert data["created_at"] == water_well_thing.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["name"] == water_well_thing.name + assert data["thing_type"] == water_well_thing.thing_type + assert data["release_status"] == water_well_thing.release_status + assert data["well_type"] == water_well_thing.well_type + assert data["well_depth"] == water_well_thing.well_depth + assert data["hole_depth"] == water_well_thing.hole_depth + assert data["well_construction_notes"] == water_well_thing.well_construction_notes + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["active_location"] == expected_location + + +def test_get_water_well_by_id_404_not_found(water_well_thing): + bad_id = 99999 + response = client.get(f"/thing/water-well/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert "detail" in data + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +def test_get_water_well_by_id_404_wrong_type(spring_thing): + response = client.get(f"/thing/water-well/{spring_thing.id}") + assert response.status_code == 404 + data = response.json() + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {spring_thing.id} is not a water well Thing. It is a spring Thing." + ) + assert data["detail"][0]["loc"] == ["path", "thing_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": spring_thing.id} -def test_get_springs(): +def test_get_springs(spring_thing, location): response = client.get("/thing/spring") assert response.status_code == 200 - assert len(response.json()) > 0 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == spring_thing.id + assert data["items"][0][ + "created_at" + ] == spring_thing.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["name"] == spring_thing.name + assert data["items"][0]["thing_type"] == spring_thing.thing_type + assert data["items"][0]["release_status"] == spring_thing.release_status + assert data["items"][0]["spring_type"] == spring_thing.spring_type + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["items"][0]["active_location"] == expected_location + + +def test_get_spring_by_id(spring_thing, location): + response = client.get(f"/thing/spring/{spring_thing.id}") + assert response.status_code == 200 + data = response.json() + assert data["id"] == spring_thing.id + assert data["created_at"] == spring_thing.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["name"] == spring_thing.name + assert data["thing_type"] == spring_thing.thing_type + assert data["release_status"] == spring_thing.release_status + assert data["spring_type"] == spring_thing.spring_type + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["active_location"] == expected_location + + +def test_get_spring_by_id_404_not_found(spring_thing): + bad_id = 99999 + response = client.get(f"/thing/spring/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert "detail" in data + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +def test_get_spring_by_id_404_wrong_type(water_well_thing): + response = client.get(f"/thing/spring/{water_well_thing.id}") + assert response.status_code == 404 + data = response.json() + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {water_well_thing.id} is not a spring Thing. It is a water well Thing." + ) + assert data["detail"][0]["loc"] == ["path", "thing_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": water_well_thing.id} + + +def test_get_well_screens(well_screen): + response = client.get("/thing/well-screen") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == well_screen.id + assert data["items"][0]["thing_id"] == well_screen.thing_id + assert data["items"][0]["screen_depth_top"] == well_screen.screen_depth_top + assert data["items"][0]["screen_depth_bottom"] == well_screen.screen_depth_bottom + assert data["items"][0]["screen_type"] == well_screen.screen_type + assert data["items"][0]["screen_description"] == well_screen.screen_description + assert data["items"][0]["release_status"] == well_screen.release_status + assert data["items"][0]["created_at"] == well_screen.created_at.isoformat().replace( + "+00:00", "Z" + ) -def test_get_well_by_id(): - response = client.get("/thing/well/1") +def test_get_well_screen_by_id(well_screen): + response = client.get(f"/thing/well-screen/{well_screen.id}") assert response.status_code == 200 data = response.json() - assert data["id"] == 1 + assert data["id"] == well_screen.id + assert data["thing_id"] == well_screen.thing_id + assert data["screen_depth_top"] == well_screen.screen_depth_top + assert data["screen_depth_bottom"] == well_screen.screen_depth_bottom + assert data["screen_type"] == well_screen.screen_type + assert data["screen_description"] == well_screen.screen_description + assert data["release_status"] == well_screen.release_status + assert data["created_at"] == well_screen.created_at.isoformat().replace( + "+00:00", "Z" + ) + + +def test_get_well_screen_by_id_404_not_found(well_screen): + bad_id = 99999 + response = client.get(f"/thing/well-screen/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert "detail" in data + assert data["detail"] == f"WellScreen with ID {bad_id} not found." -def test_get_well_screens(): - response = client.get("/thing/well/screen") +def test_get_well_screens_by_water_well(water_well_thing, well_screen): + response = client.get(f"/thing/water-well/{water_well_thing.id}/well-screen") assert response.status_code == 200 - assert len(response.json()) > 0 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == well_screen.id + assert data["items"][0]["thing_id"] == well_screen.thing_id + assert data["items"][0]["screen_depth_top"] == well_screen.screen_depth_top + assert data["items"][0]["screen_depth_bottom"] == well_screen.screen_depth_bottom + assert data["items"][0]["screen_type"] == well_screen.screen_type + assert data["items"][0]["screen_description"] == well_screen.screen_description -def test_item_get_well_filter(): - response = client.get("/thing/well", params={"query": "well_type eq 'Monitoring'"}) +def test_get_well_screens_by_water_well_id_404_not_found(water_well_thing, well_screen): + bad_id = 99999 + response = client.get(f"/thing/water-well/{bad_id}/well-screen") + assert response.status_code == 404 + data = response.json() + assert "detail" in data + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +def test_get_well_screens_by_water_well_id_404_wrong_type(spring_thing): + response = client.get(f"/thing/water-well/{spring_thing.id}/well-screen") + assert response.status_code == 404 + data = response.json() + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {spring_thing.id} is not a water well Thing. It is a spring Thing." + ) + assert data["detail"][0]["loc"] == ["path", "thing_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": spring_thing.id} + + +def test_get_thing_id_links(thing_id_link): + response = client.get("/thing/id-link") assert response.status_code == 200 data = response.json() - assert "items" in data - assert len(data["items"]) == 1 - # assert "api_id" in data["items"][0] - # assert data["items"][0]["api_id"] == "1001-0002" + assert data["total"] == 1 + assert data["items"][0]["id"] == thing_id_link.id + assert data["items"][0][ + "created_at" + ] == thing_id_link.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["release_status"] == thing_id_link.release_status + assert data["items"][0]["thing_id"] == thing_id_link.thing_id + assert data["items"][0]["relation"] == thing_id_link.relation + assert data["items"][0]["alternate_id"] == thing_id_link.alternate_id + assert ( + data["items"][0]["alternate_organization"] + == thing_id_link.alternate_organization + ) -# @pytest.mark.skip -def test_item_get_well_filter_nonexistent(): - # response = client.get("/thing/well", params={"well_type": "9999-9999"}) - response = client.get("/thing/well", params={"query": "well_type eq 'foo'"}) +def test_get_thing_id_link_by_id(thing_id_link): + response = client.get(f"/thing/id-link/{thing_id_link.id}") assert response.status_code == 200 data = response.json() - assert "items" in data - assert len(data["items"]) == 0 + assert data["id"] == thing_id_link.id + assert data["created_at"] == thing_id_link.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["release_status"] == thing_id_link.release_status + assert data["thing_id"] == thing_id_link.thing_id + assert data["relation"] == thing_id_link.relation + assert data["alternate_id"] == thing_id_link.alternate_id + assert data["alternate_organization"] == thing_id_link.alternate_organization + + +def test_get_thing_id_link_by_id_404_not_found(thing_id_link): + bad_id = 99999 + response = client.get(f"/thing/id-link/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert "detail" in data + assert data["detail"] == f"ThingIdLink with ID {bad_id} not found." -# ============= EOF ============================================= +def test_get_thing_links_by_thing_id(water_well_thing, thing_id_link): + response = client.get(f"/thing/{water_well_thing.id}/id-link") + assert response.status_code == 200 + data = response.json() + assert data["total"] == 1 + assert data["items"][0]["id"] == thing_id_link.id + assert data["items"][0]["thing_id"] == thing_id_link.thing_id + assert data["items"][0]["relation"] == thing_id_link.relation + assert data["items"][0]["alternate_id"] == thing_id_link.alternate_id + assert ( + data["items"][0]["alternate_organization"] + == thing_id_link.alternate_organization + ) + + +def test_get_thing_links_by_thing_id_404_not_found(water_well_thing, thing_id_link): + bad_id = 99999 + response = client.get(f"/thing/{bad_id}/id-link") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +def test_get_things(water_well_thing, spring_thing, location): + response = client.get("/thing") + assert response.status_code == 200 + + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + + data = response.json() + assert data["total"] == 2 + + assert data["items"][0]["id"] == water_well_thing.id + assert data["items"][0][ + "created_at" + ] == water_well_thing.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][0]["name"] == water_well_thing.name + assert data["items"][0]["thing_type"] == water_well_thing.thing_type + assert data["items"][0]["release_status"] == water_well_thing.release_status + assert data["items"][0]["well_type"] == water_well_thing.well_type + assert data["items"][0]["well_depth"] == water_well_thing.well_depth + assert data["items"][0]["hole_depth"] == water_well_thing.hole_depth + assert ( + data["items"][0]["well_construction_notes"] + == water_well_thing.well_construction_notes + ) + assert data["items"][0]["spring_type"] is None + assert data["items"][0]["active_location"] == expected_location + + assert data["items"][1]["id"] == spring_thing.id + assert data["items"][1][ + "created_at" + ] == spring_thing.created_at.isoformat().replace("+00:00", "Z") + assert data["items"][1]["name"] == spring_thing.name + assert data["items"][1]["thing_type"] == spring_thing.thing_type + assert data["items"][1]["release_status"] == spring_thing.release_status + assert data["items"][1]["spring_type"] == spring_thing.spring_type + assert data["items"][1]["well_type"] is None + assert data["items"][1]["well_depth"] is None + assert data["items"][1]["hole_depth"] is None + assert data["items"][1]["well_construction_notes"] is None + assert data["items"][1]["active_location"] == expected_location + + +def test_get_thing_by_id(water_well_thing, location): + response = client.get(f"/thing/{water_well_thing.id}") + assert response.status_code == 200 + data = response.json() + + assert data["id"] == water_well_thing.id + assert data["created_at"] == water_well_thing.created_at.isoformat().replace( + "+00:00", "Z" + ) + assert data["release_status"] == water_well_thing.release_status + assert data["name"] == water_well_thing.name + assert data["thing_type"] == water_well_thing.thing_type + assert data["release_status"] == water_well_thing.release_status + assert data["well_type"] == water_well_thing.well_type + assert data["well_depth"] == water_well_thing.well_depth + assert data["hole_depth"] == water_well_thing.hole_depth + assert data["well_construction_notes"] == water_well_thing.well_construction_notes + assert data["spring_type"] is None + + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["active_location"] == expected_location + + +def test_get_thing_by_id_404_not_found(water_well_thing): + bad_id = 99999 + response = client.get(f"/thing/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +# # weaver tests +# def test_weaver_get_wells_geojson(): +# response = client.get("/geospatial", params={"type": "well"}) +# assert response.status_code == 200 +# data = response.json() +# assert "type" in data +# assert data["type"] == "FeatureCollection" +# assert len(data["features"]) > 0 +# assert "id" in data["features"][0]["properties"] + + +# def test_weaver_get_all_collabnet_wells(): +# response = client.get( +# "/geospatial", params={"type": "well", "group": "collabnet"} +# ) # TODO: QUESTION: use type filter and a group filter instead of /collabnet endpoint? +# assert response.status_code == 200 +# data = response.json() + +# assert "features" in data +# assert len(data["features"]) > 0 +# for feature in data["features"]: +# assert "geometry" in feature +# assert isinstance(feature["geometry"], dict) +# assert "properties" in feature +# assert isinstance(feature["properties"], dict) +# assert "coordinates" in feature["geometry"] +# assert "id" in feature or "name" in feature["properties"] +# assert "group" in feature["properties"] + + +# def test_weaver_thing_contact_info_by_id(): +# response = client.get("/contact?thing_id=1") # or something like this +# assert response.status_code == 200 +# data = response.json() +# assert isinstance(data, dict) +# assert "items" in data +# assert len(data["items"]) > 0 +# item = data["items"][0] +# assert "id" in item +# assert "name" in item +# assert "addresses" in item +# assert "emails" in item +# assert "phones" in item + +# assert isinstance(item["addresses"], list) +# assert isinstance(item["emails"], list) +# assert isinstance(item["phones"], list) + + +# PATCH tests ================================================================== + + +def test_patch_water_well(water_well_thing, location): + payload = { + "name": "patched water well", + "release_status": "provisional", + "well_type": "Injection", + "well_depth": 20, + "hole_depth": 40, + "well_construction_notes": "patched well construction notes", + } + response = client.patch(f"/thing/water-well/{water_well_thing.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["name"] == payload["name"] + assert data["release_status"] == payload["release_status"] + assert data["well_type"] == payload["well_type"] + assert data["well_depth"] == payload["well_depth"] + assert data["hole_depth"] == payload["hole_depth"] + assert data["well_construction_notes"] == payload["well_construction_notes"] + + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["active_location"] == expected_location + + cleanup_patch_test(Thing, payload, water_well_thing) + + +def test_patch_water_well_404_not_found(): + bad_id = 99999 + payload = { + "name": "patched water well", + "release_status": "provisional", + "well_type": "Injection", + "well_depth": 20, + "hole_depth": 40, + "well_construction_notes": "patched well construction notes", + } + response = client.patch(f"/thing/water-well/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +def test_patch_water_well_404_wrong_type(spring_thing): + payload = { + "name": "patched water well", + "release_status": "provisional", + "well_type": "Injection", + "well_depth": 20, + "hole_depth": 40, + "well_construction_notes": "patched well construction notes", + } + response = client.patch(f"/thing/water-well/{spring_thing.id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {spring_thing.id} is not a water well Thing. It is a spring Thing." + ) + assert data["detail"][0]["loc"] == ["path", "thing_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": spring_thing.id} + + +def test_patch_spring(spring_thing, location): + payload = { + "name": "patched spring", + "release_status": "private", + "spring_type": "Mineral", + } + response = client.patch(f"/thing/spring/{spring_thing.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["name"] == payload["name"] + assert data["release_status"] == payload["release_status"] + assert data["spring_type"] == payload["spring_type"] + + expected_location = LocationResponse.model_validate(location).model_dump() + expected_location["created_at"] = ( + expected_location["created_at"].isoformat().replace("+00:00", "Z") + ) + assert data["active_location"] == expected_location + + cleanup_patch_test(Thing, payload, spring_thing) + + +def test_patch_spring_404_not_found(spring_thing): + bad_id = 99999 + payload = { + "name": "patched spring", + "release_status": "private", + "spring_type": "Mineral", + } + response = client.patch(f"/thing/spring/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +def test_patch_spring_404_wrong_type(water_well_thing): + payload = { + "name": "patched spring", + "release_status": "private", + "spring_type": "Mineral", + } + response = client.patch(f"/thing/spring/{water_well_thing.id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert ( + data["detail"][0]["msg"] + == f"Thing with ID {water_well_thing.id} is not a spring Thing. It is a water well Thing." + ) + assert data["detail"][0]["loc"] == ["path", "thing_id"] + assert data["detail"][0]["type"] == "value_error" + assert data["detail"][0]["input"] == {"thing_id": water_well_thing.id} + + +def test_patch_thing_id_link(thing_id_link): + payload = { + "relation": "related_to", + "alternate_id": "9999-8888", + "alternate_organization": "TWDB", + "release_status": "draft", + } + response = client.patch(f"/thing/id-link/{thing_id_link.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["relation"] == payload["relation"] + assert data["alternate_id"] == payload["alternate_id"] + assert data["alternate_organization"] == payload["alternate_organization"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(ThingIdLink, payload, thing_id_link) + + +def test_patch_thing_id_link_404_not_found(): + bad_id = 9999 + payload = { + "relation": "related_to", + "alternate_id": "9999-8888", + "alternate_organization": "EPA", + } + response = client.patch(f"/thing/id-link/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"ThingIdLink with ID {bad_id} not found." + + +def test_patch_well_screen(well_screen): + payload = { + "screen_depth_bottom": 2, + "screen_depth_top": 1, + "screen_description": "patched screen description", + "screen_type": "Steel", + "release_status": "draft", + } + response = client.patch(f"/thing/well-screen/{well_screen.id}", json=payload) + assert response.status_code == 200 + data = response.json() + assert data["screen_depth_bottom"] == payload["screen_depth_bottom"] + assert data["screen_depth_top"] == payload["screen_depth_top"] + assert data["screen_description"] == payload["screen_description"] + assert data["screen_type"] == data["screen_type"] + assert data["release_status"] == payload["release_status"] + + cleanup_patch_test(WellScreen, payload, well_screen) + + +def test_patch_well_screen_404_not_found(): + bad_id = 9999 + payload = { + "screen_depth_bottom": 2, + "screen_depth_top": 1, + "screen_desciption": "patched screen description", + "screen_type": "Steel", + } + response = client.patch(f"/thing/well-screen/{bad_id}", json=payload) + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"WellScreen with ID {bad_id} not found." + + +# DELETE tests ================================================================= + + +def test_delete_thing(second_spring_thing): + response = client.delete(f"/thing/{second_spring_thing.id}") + assert response.status_code == 204 + + # Verify the thing is deleted + response = client.get(f"/thing/spring/{second_spring_thing.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Thing with ID {second_spring_thing.id} not found." + + +def test_delete_thing_404_not_found(): + bad_id = 9999 + response = client.delete(f"/thing/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"Thing with ID {bad_id} not found." + + +def test_delete_well_screen(second_well_screen): + response = client.delete(f"/thing/well-screen/{second_well_screen.id}") + assert response.status_code == 204 + + # Verify the well screen is deleted + response = client.get(f"/thing/well-screen/{second_well_screen.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"WellScreen with ID {second_well_screen.id} not found." + + +def test_delete_well_screen_404_not_found(): + bad_id = 9999 + response = client.delete(f"/thing/well-screen/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"WellScreen with ID {bad_id} not found." + + +def test_delete_thing_id_link(second_thing_id_link): + response = client.delete(f"/thing/id-link/{second_thing_id_link.id}") + assert response.status_code == 204 + + # Verify the thing ID link is deleted + response = client.get(f"/thing/id-link/{second_thing_id_link.id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"ThingIdLink with ID {second_thing_id_link.id} not found." + + +def test_delete_thing_id_link_404_not_found(second_thing_id_link): + bad_id = 9999 + response = client.delete(f"/thing/id-link/{bad_id}") + assert response.status_code == 404 + data = response.json() + assert data["detail"] == f"ThingIdLink with ID {bad_id} not found." diff --git a/transfer_test.sh b/transfer_test.sh new file mode 100644 index 000000000..6e87dea94 --- /dev/null +++ b/transfer_test.sh @@ -0,0 +1,4 @@ +curl -X POST "https://nma-ocotillo-transfer-95715287188.us-central1.run.app/health" \ +-H "Authorization: bearer $(gcloud auth print-identity-token)" \ +-H "Content-Type: application/json" \ +-d '{"limit": "10"}' \ No newline at end of file diff --git a/transfers/__init__.py b/transfers/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/transfers/asset_transfer.py b/transfers/asset_transfer.py new file mode 100644 index 000000000..3c90d2264 --- /dev/null +++ b/transfers/asset_transfer.py @@ -0,0 +1,106 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +# for testing only. remove later +from dotenv import load_dotenv +from db.engine import session_ctx + +load_dotenv() +# ----------------------------------------------- + +import io + +from starlette.datastructures import UploadFile +from sqlalchemy.orm import Session +from db import Asset, AssetThingAssociation, Thing +from services.audit_helper import audit_add +from services.gcs_helper import ( + gcs_upload, + check_asset_exists, + get_storage_bucket, + get_storage_client, +) +from transfers.util import get_valid_things, logger + + +def transfer_assets(session: Session) -> None: + client = get_storage_client() + + bucket = get_storage_bucket(client) + logger.info(f"Using bucket {bucket.name}") + + # for name in ['AR0001']: # for testing + for thing in get_valid_things(session): + name = thing.name + # find images in temp bucket + logger.info(f"Processing PointID: {thing.name}") + blobs = bucket.list_blobs(prefix=f"nma-photos/{thing.name}") + # move blobs from temp to assets bucket + for srcblob in blobs: + f = srcblob.download_as_bytes() + head, filename = srcblob.name.split("/") + + ff = UploadFile(file=io.BytesIO(f), filename=filename, size=len(f)) + + uri, blob_name = gcs_upload(ff, bucket) + add_asset(session, ff, filename, thing.id, uri, blob_name) + + +def transfer_assets_testing(session: Session) -> None: + for p in ("asset1.png", "asset2.png", "asset3.png"): + with open(f"./transfers/data/assets/{p}", "rb") as f: + uf = UploadFile(file=f, filename=p, size=10) + uri, blob_name = gcs_upload(uf) + thing_id = 151 + + if check_asset_exists(session, blob_name, thing_id): + logger.warning(f"Asset {blob_name} already exists. Skipping.") + continue + add_asset(session, uf, p, thing_id, uri, blob_name) + + +def add_asset( + session: Session, + uf: UploadFile, + label: str, + thing_id: int, + uri: str, + blob_name: str, +) -> None: + asset = Asset( + name=label, + label=label, + storage_path=blob_name, + storage_service="gcs", + mime_type="image/png", + size=uf.size, + uri=uri, + ) + assoc = AssetThingAssociation() + audit_add({"sub": "foobar", "name": "Mr. Foobar"}, assoc) + thing = session.get(Thing, thing_id) + assoc.thing = thing + assoc.asset = asset + session.add(assoc) + session.add(asset) + session.commit() + + +if __name__ == "__main__": + + with session_ctx() as session: + transfer_assets(session) + +# ============= EOF ============================================= diff --git a/transfers/contact_transfer.py b/transfers/contact_transfer.py new file mode 100644 index 000000000..41a46d1eb --- /dev/null +++ b/transfers/contact_transfer.py @@ -0,0 +1,243 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +import numpy as np +import pandas as pd +from transfers.util import read_csv, filter_to_valid_point_ids, logger +from db import Thing, Contact, ThingContactAssociation, Email, Phone, Address + +from schemas.contact import CreateContact, CreateAddress + + +def extract_owner_role(comment): + # if comment is None: + # return "Owner" + # if "Owner" in comment: + # return "Owner" + # if "Manager" in comment: + # return "Manager" + # if "Director" in comment: + # return "Director" + + return "Owner" + + +""" +Developer's notes + +Use Pydantic to perform model validations since all restrictions will +be built into the models +""" + + +def transfer_contacts(session): + + odf = read_csv("OwnersData") + odf = odf.drop(["OBJECTID", "GlobalID"], axis=1) + ldf = read_csv("OwnerLink") + ldf = ldf.drop(["OBJECTID", "GlobalID"], axis=1) + locdf = read_csv("Location") + ldf = ldf.join(locdf.set_index("LocationId"), on="LocationId") + + odf = odf.join(ldf.set_index("OwnerKey"), on="OwnerKey") + + odf = odf.replace(pd.NA, None) + odf = odf.replace({np.nan: None}) + odf = filter_to_valid_point_ids(session, odf) + for i, row in odf.iterrows(): + thing = session.query(Thing).where(Thing.name == row.PointID).first() + print(f"Processing PointID: {i} {row.PointID}") + if thing is None: + logger.warning( + f"Thing with PointID {row.PointID} not found. Skipping owner." + ) + continue + + try: + add_first_contact(session, row, thing) + session.commit() + session.flush() + logger.info(f"added first contact for PointID {row.PointID}") + except Exception as e: + logger.warning( + f"Skipping first contact for PointID {row.PointID} due to validation error: {e}" + ) + from pprint import pprint + + pprint(e) + session.rollback() + + try: + add_second_contact(session, row, thing) + session.commit() + session.flush() + print(f"added second contact for PointID {row.PointID}") + except Exception as e: + print( + f"Skipping second contact for PointID {row.PointID} due to validation error: {e}" + ) + session.rollback() + + +def add_first_contact(session, row, thing): + # TODO: extract role from OwnerComment + # role = extract_owner_role(row.OwnerComment) + role = "Owner" + release_status = "private" + + # TODO: put in guards for null values + if row.FirstName is None and row.LastName is None: + name = None + elif row.FirstName is not None and row.LastName is None: + name = row.FirstName + elif row.FirstName is None and row.LastName is not None: + name = row.LastName + else: + name = f"{row.FirstName} {row.LastName}" + + contact_data = { + "thing_id": thing.id, + "release_status": release_status, + "name": name, + "role": role, + "contact_type": "Primary", + "organization": row.Company, + "nma_pk_owners": row.OwnerKey, + } + + contact = _make_contact_and_assoc(session, contact_data, thing) + + if row.Email: + # TODO: use Pydantic to validate email + contact.emails.append( + Email( + email=row.Email, + email_type="Primary", + release_status=release_status, + ) + ) + if row.Phone: + # TODO: use Pydantic to validate phone + contact.phones.append( + Phone( + phone_number=row.Phone, + phone_type="Primary", + release_status=release_status, + ) + ) + if row.CellPhone: + # TODO: use Pydantic to validate cell phone + contact.phones.append( + Phone( + phone_number=row.CellPhone, + phone_type="Mobile", + release_status=release_status, + ) + ) + + if row.MailingAddress: + address_data = { + "address_line_1": row.MailingAddress, + "city": row.MailCity, + "state": row.MailState, + "postal_code": row.MailZipCode, + "address_type": "Mailing", + "release_status": release_status, + } + try: + CreateAddress.model_validate(address_data) + contact.addresses.append(Address(**address_data)) + + except Exception as e: + logger.warning( + f"Skipping mailing address for first contact {name}. Validation error: {e}" + ) + + if row.PhysicalAddress: + try: + address_data = { + "address_line_1": row.PhysicalAddress, + "city": row.PhysicalCity, + "state": row.PhysicalState, + "postal_code": row.PhysicalZipCode, + "address_type": "Physical", + "release_status": release_status, + } + CreateAddress.model_validate(address_data) + contact.addresses.append(Address(**address_data)) + except Exception as e: + logger.warning( + f"Skipping physical address for first contact {name}. Validation error: {e}" + ) + + +def add_second_contact(session, row, thing): + + release_status = "private" + if row.SecondFirstName is None and row.SecondLastName is None: + name = None + elif row.SecondFirstName is not None and row.SecondLastName is None: + name = row.SecondFirstName + elif row.SecondFirstName is None and row.SecondLastName is not None: + name = row.SecondLastName + else: + name = f"{row.SecondFirstName} {row.SecondLastName}" + + contact_data = { + "thing_id": thing.id, + "release_status": release_status, + "name": name, + "role": "Owner", + "contact_type": "Secondary", + "organization": row.Company, + "nma_pk_owners": row.OwnerKey, + } + + contact = _make_contact_and_assoc(session, contact_data, thing) + + if row.SecondCtctEmail: + contact.emails.append( + Email( + email=row.SecondCtctEmail, + email_type="Primary", + release_status=release_status, + ) + ) + + if row.SecondCtctPhone: + contact.phones.append( + Phone( + phone_number=row.SecondCtctPhone, + phone_type="Primary", + release_status=release_status, + ) + ) + + +def _make_contact_and_assoc(session, data, thing): + CreateContact.model_validate(data) + + data.pop("thing_id") + contact = Contact(**data) + + assoc = ThingContactAssociation() + assoc.thing = thing + assoc.contact = contact + session.add(assoc) + session.add(contact) + return contact + + +# ============= EOF ============================================= diff --git a/migration/data/location.csv b/transfers/data/location.csv similarity index 100% rename from migration/data/location.csv rename to transfers/data/location.csv diff --git a/transfers/data/location2.csv b/transfers/data/location2.csv new file mode 100644 index 000000000..0898c0061 --- /dev/null +++ b/transfers/data/location2.csv @@ -0,0 +1,32337 @@ +"PointID","AlternateSiteID","AlternateSiteID2","Easting","Northing","SiteType","PublicRelease","LocationNotes" +"NM-01998","","","678939","3550950","GW","false","" +"SB-0561","TWDB 4854501","","468895","3448211","GW","false","" +"NM-26509","","","460354","4063090","GW","false","" +"NM-12166","","","638389","3671100","GW","false","" +"NM-23019","","","353937","3894650","GW","false","" +"NM-02102","","","304361","3560500","GW","false","" +"NM-11375","","","284213","3659740","GW","false","" +"NM-19002","","","478803","3815070","GW","false","" +"NM-21420","","","346432","3872710","GW","false","" +"NM-20093","","","676503","3839620","GW","false","" +"NM-26703","","","444559","4079370","GW","false","" +"NM-21370","","","363488","3871850","GW","false","" +"NM-21925","","","366879","3881790","GW","false","" +"NM-21398","","","381801","3872060","GW","false","" +"NM-25955","","","422930","4006070","GW","false","" +"WL-0053","NM3574125","","463702","3964783","GW","true","From Las Vegas, go north on Hwy 518 ~12.5 miles, turn left on Hwy 94 and go 8.7 miles to junction w/Hwy 105. Get on Hwy 105 by driving straight (Hwy 94 is a right turn). Follow Hwy 105 about 2.8 miles to entrance of Pendaries Village on south (left). Follow Pendaries Village Lane, which makes several turns, about 0.6 miles to the 4-way intersection w/Cumbre and Patron, turn right to stay on Pendaries Village Lane another 0.8 miles. Well 1 is on the north (right) side of the road, ~75 ft. north of road in enclosure next to pumphouse." +"NM-02823","","","437814","3696240","GW","false","" +"SM-4048","","","431704","3629967","PS","true","Stream flow measurement by Patrick Walsh" +"PC-141","PS-18","","373692","3912802","SP","true","" +"NM-15003","","","668370","3728840","GW","false","" +"NM-18028","","","619258","3799760","GW","false","" +"NM-03128","","","638212","3812600","GW","false","" +"NM-24098","","","438444","3927480","GW","false","" +"OG-0033","","","642990","3817077","GW","true","" +"NM-23348","","","378531","3900750","GW","false","" +"NM-05221","","","239110","3564680","GW","false","" +"NM-08372","","","648184","3617580","GW","false","" +"NM-06974","","","571429","3591970","GW","false","" +"NM-08731","","","287889","3624250","GW","false","" +"MI-0076","","","461951","3921032","GW","true","Topographic situation: " +"NM-09696","","","556681","3632460","GW","false","" +"NM-07825","","","273700","3610810","GW","false","" +"DE-0018","","","632644","3562040","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Well in enclosure next to old gas tank." +"NM-08480","","","215288","3622210","GW","false","" +"NM-10600","","","552271","3645430","GW","false","" +"NM-02501","","","558940","3611130","GW","false","" +"DE-0002","","","539107","3592164","GW","false","" +"NM-16880","","","547607","3778700","GW","false","" +"NM-14229","","","543746","3699100","GW","false","" +"TO-0257","7N6E27.341","","380879","3851820","GW","true","" +"NM-20084","","","618412","3837960","GW","false","" +"NM-14266","","","141651","3706200","GW","false","" +"NM-14917","","","557750","3723530","GW","false","" +"NM-08819","","","647793","3624590","GW","false","" +"NM-07296","","","219839","3602250","GW","false","" +"NM-09170","","","636832","3628410","GW","false","" +"NM-04553","","","239579","3553320","GW","false","" +"NM-24415","","","463402","3936580","GW","false","" +"NM-14443","","","407947","3705290","GW","false","" +"SA-0344","","","253640","3693537","ES","true","" +"NM-15632","","","679900","3747170","GW","false","" +"NM-25780","","","246660","3999080","GW","false","" +"NM-02903","","","662596","3736630","GW","false","" +"NM-25069","","","660035","3953820","GW","false","" +"NM-09083","","","200550","3630660","GW","false","" +"NM-19694","","","601026","3831160","GW","false","" +"NM-15911","","","329427","3753780","GW","false","" +"NM-01001","","","678490","3822150","GW","false","" +"NM-15515","","","672631","3743930","GW","false","" +"NM-11144","","","680406","3654900","GW","false","" +"NM-25781","","","395911","3996150","GW","false","" +"NM-07846","","","678406","3610310","GW","false","" +"NM-24385","","","651072","3936830","GW","false","" +"AH-049","","","440065","4043487","GW","true","" +"NM-06453","","","359151","3582910","GW","false","" +"NM-26471","","","223613","4066610","GW","false","" +"NM-27585","","","666252","3793490","GW","false","" +"NM-09861","","","667570","3634340","GW","false","" +"NM-21747","","","274073","3881980","GW","false","" +"SO-0242","SFC-W05B","","312821","3721005","GW","true","" +"NM-13759","","","545058","3694640","GW","false","" +"NM-14259","","","548598","3699620","GW","false","" +"NM-19152","","","663957","3820620","GW","false","" +"ED-0098","21S26E15.114","","567153","3594220","GW","true","" +"NM-18234","","","279817","3804800","GW","false","" +"NM-20079","","","601819","3837700","GW","false","" +"JM-021","","","300969","3643298","GW","true","" +"NM-06361","","","258503","3583120","GW","false","" +"NM-09030","","","559507","3625300","GW","false","" +"DA-0115","25S4W15.33","","288208","3556830","GW","true","" +"NM-03893","","","117174","3527650","GW","false","" +"NM-01163","","","608722","3869190","GW","false","" +"NM-05057","","","618355","3559290","GW","false","" +"TO-0419","9N9E32.131a","","407584","3869490","GW","true","" +"NM-22365","","","663155","3886990","GW","false","" +"NM-20271","","","675159","3842000","GW","false","" +"NM-01555","","","483532","3982930","GW","false","" +"EB-400","","","403504","3928935","GW","true","" +"NM-05980","","","248219","3575700","GW","false","" +"QU-538","","","444332","4060907","SP","true","" +"NM-02978","","","230110","3775700","GW","false","" +"TC-286","CO-33","","410096","4098276","GW","true","" +"NM-20840","","","662143","3855540","GW","false","" +"NM-11650","","","558743","3661670","GW","false","" +"SB-0621","TWDB 4906601","","379518","3532677","GW","false","" +"NM-01617","","","285118","4020960","GW","false","" +"SB-0471","TWDB 4824601","","497051","3504536","GW","false","" +"NM-17765","","","357784","3794260","GW","false","" +"NM-04512","","","662637","3550190","GW","false","" +"NM-00509","","","275126","3650890","GW","false","" +"NM-16381","","","303343","3770990","GW","false","" +"NM-09630","","","560013","3631840","GW","false","" +"NM-07282","","","644591","3599500","GW","false","" +"NM-22958","","","636335","3893880","GW","false","" +"NM-04311","","","245186","3545600","GW","false","" +"NM-19949","","","653040","3836030","GW","false","" +"NM-02165","","","332923","3565130","GW","false","" +"NM-17880","","","663128","3798020","GW","false","" +"QY-0522","16.37.6.121","","676000","3947060","GW","true","" +"NM-06387","","","335243","3582070","GW","false","" +"TO-0276","7N8E3.433","","400818","3857660","GW","true","" +"QU-022","CER-30","","445801","4067711","GW","true","Last driveway on the right before church in Cerro. Vault in front yard." +"EB-055","","","418080","3939640","GW","true","Pecos Trail Subdivision" +"NM-14793","","","546670","3719040","GW","false","" +"NM-16929","","","584323","3779730","GW","false","" +"TO-0063","4N6E3.444","","381310","3829200","GW","true","" +"EB-370","","","401630","3937747","GW","true","" +"BW-0540","15S9E24.3","","402780","3650960","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24567","","","430955","3939820","GW","false","" +"SA-2002","","","268243","3771320","M","true","From Hwy 60, take turnoff for FR549 (Mt. Withington and Bear Trap), go south for 10.7 mi. Turn West and go 3 miles to Cox Ranch driveway. Precip collector on fence line SE of main house and well." +"BW-0624","7S10E26.42","","419613","3725770","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17956","","","529034","3797380","GW","false","" +"NM-12421","","","558644","3673800","GW","false","" +"MI-0281","","","497201","3954592","GW","true","Topographic situation: Valley" +"TO-0272","7N8E1.423","","404471","3857920","GW","true","" +"NM-07623","","","660870","3606410","GW","false","" +"QU-047","","","445927","4066649","GW","true","From Hwy 522, take NM 378 to Cerro. In 0.5 miles the road curves right; find driveway (address 54C) on the left. Well is in vault in multicolored shed behind the house." +"NM-12410","","","553027","3673490","GW","false","" +"NM-20915","","","653668","3857830","GW","false","" +"NM-07876","","","661275","3610390","GW","false","" +"NM-23434","","","227674","3907690","GW","false","" +"NM-11445","","","657127","3659490","GW","false","" +"NM-27917","","","567918","3827490","GW","false","" +"BW-0833","3.22.21.3.312","","124038","3593950","GW","true","" +"NM-01836","","","257776","3528289","GW","false","" +"NM-14272","","","209772","3704130","GW","false","" +"NM-12334","","","552230","3672470","GW","false","" +"NM-12983","","","561272","3684070","GW","false","" +"NM-22144","","","389576","3883820","GW","false","" +"TS-006","","","438042","4063309","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"NM-15057","","","553314","3729210","GW","false","" +"NM-13559","","","614300","3692840","GW","false","" +"TC-339","","","452570","4093385","GW","true","" +"RA-072","","","421571","4006073","GW","true","Do not use Jet pump." +"NM-12354","","","666937","3674470","GW","false","" +"MI-0052","","","458098","3914034","GW","true","Topographic situation: Valley" +"NM-18489","","","597410","3806750","GW","false","" +"QY-0155","11.29.13.321","","607278","3893270","GW","true","" +"NM-07766","","","662842","3608630","GW","false","" +"NM-17937","","","660226","3798770","GW","false","" +"AB-1000","S009","","305969","3841450","SP","true","" +"NM-21401","","","345857","3872590","GW","false","" +"NM-17547","","","522768","3788800","GW","false","" +"NM-26041","","","594855","4015190","GW","false","" +"NM-14104","","","549332","3697460","GW","false","" +"NM-10729","","","266520","3649230","GW","false","" +"NM-25543","","","407099","3980590","GW","false","" +"NM-06745","","","261033","3590520","GW","false","" +"NM-00813","","","466709","3712290","GW","false","" +"NM-01604","","","316651","4012160","GW","false","" +"NM-15888","","","653190","3753330","GW","false","" +"NM-04371","","","344206","3545950","GW","false","" +"NM-19904","","","342769","3835400","GW","false","" +"MI-0087","","","471129","3924184","GW","true","Topographic situation: Plains" +"NM-18364","","","349139","3805400","GW","false","" +"NM-05898","","","243093","3573920","GW","false","" +"BC-0411","414","","341045","3872056","GW","false","" +"NM-08766","","","560798","3622570","GW","false","" +"NM-15137","","","387359","3732550","GW","false","" +"NM-06058","","","587277","3573990","GW","false","" +"NM-21586","","","347500","3877550","GW","false","" +"NM-07793","","","649566","3608850","GW","false","" +"NM-06091","","","589519","3574750","GW","false","" +"NM-10560","","","634800","3645760","GW","false","" +"ED-0014","16S31E2.122","","608090","3647710","GW","true","" +"BW-0008","21S4E22.222","","357712","3593880","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05092","","","266357","3561860","GW","false","" +"NM-27083","","","298055","3779890","GW","true","" +"NM-15681","","","629798","3746970","GW","false","" +"NM-10094","","","549399","3638030","GW","false","" +"SO-0081","4N1W14.111","","323899","3827830","GW","true","Benchmark near well." +"BW-0752","2.9.32.1.433","","636375","3879150","GW","true","" +"NM-18601","","","639918","3809510","GW","false","" +"NM-02240","","","137702","3575110","GW","false","" +"MG-027","WF-Y","","297649","3779995","GW","true","1157 Highway 64, house w/blue roof. Well located 800' north of house." +"NM-06422","","","673162","3583380","GW","false","" +"NM-16095","","","658536","3759330","GW","false","" +"NM-20661","","","676220","3851700","GW","false","" +"SD-0358","9N.7E.31.334","","386829","3868690","SP","true","" +"NM-25086","","","421569","3954170","GW","false","" +"TO-0183","5N8E28.122","","398582","3833320","GW","true","" +"SB-0529","TWDB 4846701","","466735","3459917","GW","false","" +"NM-14765","","","610981","3718400","GW","false","" +"NM-21205","","","316465","3868490","GW","false","" +"NM-20400","","","655591","3844790","GW","false","" +"TO-0304","7N8E27.434","","400973","3851260","GW","true","" +"WL-0266","","","329262","3571873","GW","true","Heading south on I-25 from Las Cruces, take I-10 west for ~3.7 mi to exit 140 for NM-28/Ave de Mesilla. Turn left onto NM-28/Ave de Mesilla and continue for 1 mi. Turn right onto Calle del Norte for 1 mi then turn right onto Snow Rd to address immediately on the left. Well is north of windmill stand." +"NM-04914","M-077","","211762","3560660","GW","false","Take NM418 20.5 miles W from intersection of Pine St & NM11 in Deming. South on CR020 4.4 miles, cross cattle guard at pump station, head SW on dirt road, cross cattle guard at 0.4 miles, go SE 2.2 miles on dirt road to well. Well at cluster of house and barns, between two small white bldgs to SE w power pole next to well." +"NM-28064","","","238980","3901160","GW","false","" +"NM-17773","","","664360","3794840","GW","false","" +"NM-17188","","","632281","3784350","GW","false","" +"TO-0423","9N10E18.233","","416548","3874020","GW","true","" +"CX-0041","27N26E12.4","","579034","4049460","GW","true","" +"TO-0206","6N6E15.224","","381881","3846450","GW","true","" +"UC-0182","","","656352","4023171","GW","false","" +"NM-16490","","","663657","3773500","GW","false","" +"NM-02167","","","333030","3565250","GW","false","" +"UC-0015","","","669376","4044857","GW","false","" +"NM-11124","","","481373","3652390","GW","false","" +"NM-27748","","","594002","3792700","GW","false","" +"QY-0659","5.31.18.331","","618738","3835240","GW","true","" +"NM-05842","","","674387","3571540","GW","false","" +"NM-18733","","","601296","3811070","GW","false","" +"NM-00303","","","375085","3611400","GW","false","" +"NM-05001","","","342648","3558910","GW","false","" +"NM-17047","","","653610","3782760","GW","false","" +"NM-03120","","","613660","3810320","GW","false","" +"NM-21496","","","378221","3875530","GW","false","" +"TB-0221","","","420027","3719517","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road 1.9 miles. Take road to west 0.3 miles and turn south 0.5 miles then bear right (east) to the north east corner of building to old turbine case on cement block. Look to north east for open casing set in cement" +"NM-09347","","","665736","3630450","GW","false","" +"NM-01017","","","662977","3828660","GW","false","" +"MI-0169","","","591544","3927645","GW","true","Topographic situation: Plains" +"NM-10580","","","554972","3645230","GW","false","" +"NM-02582","","","409325","3625200","GW","false","" +"NM-13242","","","269682","3690680","GW","false","" +"RA-055","","","418900","4005828","GW","true","Near house being built." +"NM-08820","","","561132","3623280","GW","false","" +"NM-19015","","","678582","3817630","GW","false","" +"NM-19144","","","665553","3819850","GW","false","" +"NM-18965","","","200145","3819210","GW","false","" +"BC-0363","367","","383369","3890838","GW","true","" +"NM-24571","","","404661","3940190","GW","false","" +"NM-23438","","","381920","3904530","GW","false","" +"NM-22738","","","351928","3890890","GW","false","" +"SM-0147","","","468326","3641961","GW","true","Hwy 82 at sharp bend northward east of Mayhill." +"NM-18907","","","341683","3814640","GW","false","" +"SM-3026","","","442880","3640031","L","true","" +"NM-12343","","","552747","3672570","GW","false","" +"QY-0051","10.30.30.322","","609299","3880520","GW","true","" +"NM-21992","","","341108","3883060","GW","false","" +"NM-01835","","","342699","3526440","GW","false","" +"AH-081","DM-14","","443409","4042232","GW","true","" +"NM-22085","","","237531","3886450","GW","false","" +"NM-02408","","","323161","3589420","GW","false","" +"NM-20514","","","616567","3846960","GW","false","" +"SO-0095","1S3E30.11","","345681","3785430","GW","true","" +"NM-10960","","","550067","3649830","GW","false","" +"NM-18280","","","656097","3802910","GW","false","" +"NM-26596","","","192061","4074360","GW","false","" +"NM-20446","","","484769","3844290","GW","false","" +"NM-03590","","","623003","3988600","GW","false","" +"BW-0127","10S10E29.414","","414165","3697070","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09270","","","227391","3631890","GW","false","" +"ED-0258","22S30E5.431","","603277","3587420","GW","true","" +"NM-00548","","","663664","3656890","GW","false","" +"EB-674","","","415491","3938137","GW","true","" +"NM-03925","","","342419","3523580","GW","false","" +"SD-0356","9N.7E.21.341","","390238","3872160","SP","true","" +"NM-05101","","","269188","3561850","GW","false","" +"NM-19691","","","622236","3831720","GW","false","" +"NM-25800","","","604301","3997360","GW","false","" +"NM-28418","S-2016-084","","588416","3562115","GW","true","" +"NM-09295","","","226200","3632140","GW","false","" +"NM-11326","","","630637","3657930","GW","false","" +"NM-18743","","","620436","3811450","GW","false","" +"QY-0697","6.29.29.331","","600855","3841420","GW","true","" +"NM-04739","","","667517","3554850","GW","false","" +"TO-0109","4N9E19.44","","405206","3824050","GW","true","" +"NM-21663","","","340536","3879280","GW","false","" +"NM-06338","","","673851","3581330","GW","false","" +"NM-07746","","","543298","3607080","GW","false","" +"CX-0098","23N24E10","","555509","4011160","GW","true","" +"QY-0132","10.36.26.332","","673281","3881080","GW","true","" +"NM-10019","","","566324","3636860","GW","false","" +"NM-09646","","","675229","3633670","GW","false","" +"NM-14191","","","552502","3698710","GW","false","" +"NM-21626","","","191593","3882460","GW","false","" +"NM-23538","","","370580","3908500","GW","false","" +"NM-10756","","","654031","3648500","GW","false","" +"NM-22883","","","663879","3893200","GW","false","" +"NM-26077","","","593911","4019210","GW","false","" +"NM-17869","","","640919","3797290","GW","false","" +"NM-17679","","","348491","3792160","GW","false","" +"NM-21766","","","626480","3880270","GW","false","" +"NM-03146","","","649625","3815640","GW","false","" +"UC-0043","","","669121","4056512","GW","true","elv 4905 acc to USGS" +"NM-21431","","","345548","3873080","GW","false","" +"NM-02920","","","681297","3742640","GW","false","" +"SD-0153","10N.5E.14.324","","374600","3883970","GW","true","" +"SA-1015","","","259009","3715726","SP","true","Access through private property." +"QU-526","","","445075","4061397","SP","true","" +"QY-0965","9.31.15.444","","624713","3873900","GW","true","" +"ED-0172","22S25E19.214","","553574","3582960","GW","true","" +"NM-07335","","","197443","3603860","GW","false","" +"BW-0879","2.29.22.18","","516205","4035100","GW","true","" +"NM-11281","","","630630","3656510","GW","false","" +"QU-107","","","449055","4067153","GW","true","Following Llano Road, take Lower Pinabete Road left and north 0.8 miles to T. Go east 0.3 miles. Uphill on left find octagonal 2 story house. Walk around clockwise to corral for well." +"NM-08637","","","551178","3620790","GW","false","" +"TB-0164","","","434450","3711131","GW","true","#156 B Nogal Canyon Rd. North side of road. Cabin. Well is north of house. Take road to west along corrall thru gate to NW Corner at power pole." +"BW-0421","17S10E32.111","","411640","3628000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13318","","","555319","3689330","GW","false","" +"NM-15328","","","673903","3740470","GW","false","" +"NM-10008","","","408340","3636850","GW","false","" +"NM-23225","","","408992","3898150","GW","false","" +"QY-0053","10.30.31.312","","609031","3879010","GW","true","" +"NM-16104","","","650360","3760060","GW","false","" +"WL-0340","","","400460","3939322","GW","false","Nav system gets you to residence + +Well is along fence line at corner of Amanda Ln. and Nancy's Trail. + +Well is in pit under 30"" corrugated steel manhole. " +"NM-04836","","","383361","3556230","GW","false","" +"NM-16599","","","677886","3776290","GW","false","" +"NM-04029","","","281578","3530800","GW","false","" +"SO-0271","NRCS W1","","328651","3763918","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-15075","","","578588","3730000","GW","false","" +"NM-28407","S-2016-007","","630163","3573231","GW","true","" +"NM-25287","","","216893","3970370","GW","false","" +"NM-03525","","","677746","3950670","GW","false","" +"SM-0062","","","445953","3650499","GW","true","16 Springs Canyon turn northwest on Poison Springs Road by bunch of mailboxes. Home owner can open gate, or neighbor can allow access (Walters, just before gate, right side of Rd). Go over bridge over fence at north end of fence. Neighbor with bridge over fence is Gerald Walters, if he is home he can probably open shed for you. Well is inside shed, may be locked. Must have ATV moved out of way. Well went dry." +"NM-18207","","","646350","3803170","GW","false","" +"QU-085","MW-23","","443803","4062530","GW","true","See Chevron map of monitoring wells. East of evaporative tailings pond that is north of Dam 4." +"NM-10832","","","550932","3648200","GW","false","" +"NM-05184","","","338344","3561810","GW","false","" +"NM-27262","","","581927","3572530","GW","false","" +"NM-09680","","","559802","3632360","GW","false","" +"MG-013","WF-CA","","295273","3772038","GW","true","" +"NM-08466","","","657094","3619190","GW","false","" +"NM-09658","","","681707","3633600","GW","false","" +"NM-19123","","","651270","3819640","GW","false","" +"NM-12027","","","619233","3667790","GW","false","" +"TB-1006","","","435052","3709810","SP","true","Go to GPS location 435192 E, 3709656 N. Stump is on right side of road with rock cairn, go up trail to NW to spring above arroyo." +"NM-24846","","","438117","3945750","GW","false","" +"NM-16725","","","645806","3777340","GW","false","" +"UC-0108","","","601243","4018806","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-26935","","","356228","3964100","GW","true","" +"BC-0030","21","","381074","3889970","GW","true","" +"NM-06336","","","674035","3581300","GW","false","" +"NM-16726","","","645394","3777460","GW","false","" +"NM-01550","","","618416","3982490","GW","false","" +"NM-07076","M-158","","238242","3596793","GW","false","5.2 miles NE on NM26 from NM26 & US180 intersection north of Deming, turn left north onto CR A016 Green Leaf Mine Road. Well is 14.3 miles up road on right (east) side." +"QY-0015","10.28.24.242","","598890","3882630","GW","true","" +"PC-039","PW-062","","372083","3908416","GW","true","" +"NM-21229","","","382055","3868170","GW","false","" +"NM-26586","","","191726","4073810","GW","false","" +"NM-18121","","","613590","3801360","GW","false","" +"MI-0120","","","590591","3922842","GW","true","Topographic situation: Plains" +"NM-02989","","","664869","3772830","GW","false","" +"NM-17988","","","661841","3799340","GW","false","" +"NM-00120","","","358332","3558060","GW","false","" +"NM-05422","","","665106","3566060","GW","false","" +"NM-07658","","","227349","3609450","GW","false","" +"NM-20880","","","221511","3859170","GW","false","" +"NM-19731","","","658821","3833020","GW","false","" +"NM-18401","","","672220","3807000","GW","false","" +"ED-0302","23S28E13.131a","","589766","3574820","GW","true","" +"EB-463","","","418467","3960683","GW","true","" +"BW-0629","9S8E34.143","","397976","3705640","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25570","","","304417","3983290","GW","false","" +"NM-19625","","","597879","3830040","GW","false","" +"NM-06652","","","339895","3586920","GW","false","" +"NM-18352","","","606117","3804590","GW","false","" +"PC-135","PS-05","","369070","3906280","SP","true","" +"BC-0434","437","","346492","3876184","GW","false","" +"NM-00525","","","655842","3652040","GW","false","" +"NM-10519","","","548562","3644430","GW","false","" +"NM-23889","","","458938","3918210","GW","false","" +"NM-22097","","","269299","3885710","GW","false","" +"NM-22303","","","345797","3886130","GW","false","" +"NM-28197","","","157726","4048950","GW","false","" +"NM-10511","","","668802","3645910","GW","false","" +"NM-12138","","","673369","3671100","GW","false","" +"QY-0263","11.30.8.422","","611527","3895020","GW","true","" +"NM-13326","","","549348","3689360","GW","false","" +"NM-17250","","","643326","3785400","GW","false","" +"NM-03642","","","608274","4033650","GW","false","" +"NM-10359","","","558262","3642170","GW","false","" +"EB-556","","","407672","3944472","GW","true","" +"DE-0241","","","670561","3569891","GW","false","" +"NM-16860","","","232678","3782070","GW","false","" +"TV-230","","","439362","4016255","GW","true","At end of utility road past house; in saddle, in open about ~25' east of well house." +"AB-0082","S094","","325521","3905140","GW","true","" +"MI-0282","","","518518","3957748","GW","true","Topographic situation: Plateau" +"NM-19354","","","678411","3826470","GW","false","" +"TV-170","COR-61","","440310","4026257","GW","true","In-town well field near wastewater treatment plant." +"NM-24235","","","476401","3931330","GW","false","" +"NM-21867","","","348895","3881630","GW","false","" +"NM-12103","","","557873","3668500","GW","false","" +"NM-14458","","","665370","3707070","GW","false","" +"NM-19987","","","531613","3835220","GW","false","" +"NM-10897","","","671135","3650660","GW","false","" +"NM-26408","","","280554","4062220","GW","false","" +"NM-27765","","","571355","3794530","GW","false","" +"UC-0035","","","668819","4048768","GW","true","elv 4837 acc to USGS" +"MI-0093","","","475669","3917159","GW","true","Topographic situation: Valley" +"AR-0077","E016/C011","NMED 192","238501","4087240","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 then slight turn north on Rd 2650. Take first right onto 2645 then veer west. Address is on the right across from gas plant. Well is behind house 2' from patio." +"NM-23709","","","427308","3912030","GW","false","" +"NM-20297","","","536986","3841000","GW","false","" +"NM-06587","","","226696","3588340","GW","false","" +"NM-14414","","","545041","3703760","GW","false","" +"TV-241","SO-23","","440929","4019847","GW","true","" +"NM-19434","","","652414","3827610","GW","false","" +"NM-00182","","","583077","3573840","GW","false","" +"SD-0387","12N.4E.1.234","","366775","3907110","SP","true","" +"NM-10520","","","399661","3644820","GW","false","" +"NM-09028","","","196691","3629730","GW","false","" +"NM-23144","","","350423","3896790","GW","false","" +"NM-08929","","","229103","3627840","GW","false","" +"NM-20855","","","553416","3854690","GW","false","" +"NM-24029","","","402252","3924720","GW","false","" +"NM-27383","","","287311","3624630","GW","false","" +"ED-0173","22S25E27.114","","557707","3581190","GW","true","" +"TB-0220","","","420020","3719507","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road 1.9 miles. Take road to west 0.3 miles and turn south 0.5 miles then bear right (east) to the north east corner of building to old turbine case on cement block." +"NM-07823","","","202174","3612660","GW","false","" +"NM-09785","","","551735","3633640","GW","false","" +"NM-26304","","","635568","4043190","GW","false","" +"ED-0125","21S26E36.212","","571395","3589660","GW","true","" +"NM-05281","","","135184","3568570","GW","false","" +"NM-09747","","","557510","3633110","GW","false","" +"NM-01573","","","406143","3991880","GW","false","" +"ED-0072","20S27E29.44","","566166","3600560","GW","true","" +"NM-28324","SC-16","","444078","4050939","GW","false","" +"NM-16592","","","674538","3775730","GW","false","" +"NM-25425","","","412059","3973080","GW","false","" +"HS-114","","","290016","3667630","GW","true","Just west of HS-037" +"NM-19432","","","349330","3827090","GW","false","" +"NM-19725","","","183614","3836510","GW","false","" +"SO-0230","SBB-W07C","","322377","3733198","GW","true","" +"NM-25331","","","647424","3969930","GW","false","" +"NM-00553","","","660661","3657570","GW","false","" +"NM-04990","","","264880","3560350","GW","false","" +"NM-07315","","","274870","3601360","GW","false","" +"NM-07341","","","222087","3603270","GW","false","" +"NM-04884","","","342884","3557240","GW","false","" +"NM-15520","","","652335","3744200","GW","false","" +"NM-12653","","","569073","3678180","GW","false","" +"SA-0500","6S9W30.224","","240498","3739670","GW","true","" +"SB-0663","TWDB 4915411","","382867","3520012","GW","false","" +"NM-12906","","","546020","3682420","GW","false","" +"BW-0674","2.3.8.16.222","","398177","3815320","GW","true","" +"NM-06193","","","271972","3579510","GW","false","" +"QU-112","","","445646","4060585","GW","true","Heading north on Hwy 522 from Taos, turn south (right) on Llama Road just past Family Dollar before town of Questa. Turn west (right) on Old Red River Rd to address. Numbers are faded and not visible from street, but is directly opposite 2329 Red River Rd. Two houses share driveway; take right fork till you see numbers. Walk around clockwise past garage. Well under pile of corrugated metal sheets." +"NM-08873","","","681225","3625830","GW","false","" +"NM-28211","","","170921","4072640","GW","false","" +"NM-16672","","","677819","3777120","GW","false","" +"NM-19637","","","404239","3830240","GW","false","" +"EB-066","","","416340","3954065","GW","true","North side of Circle Dr at Compound Dr" +"NM-14337","","","624389","3702200","GW","false","" +"NM-02359","","","154394","3585510","GW","false","" +"NM-11643","","","550681","3661530","GW","false","" +"NM-18928","","","607869","3814320","GW","false","" +"NM-00791","","","440556","3707160","GW","false","" +"NM-00053","","","490361","3544350","GW","false","" +"NM-03400","","","347192","3890790","GW","false","" +"NM-03119","","","594523","3809730","GW","false","" +"DA-0135","26S1E18.222","","323116","3547760","GW","true","" +"NM-03569","","","477151","3976630","GW","false","" +"NM-24648","","","396858","3942190","GW","false","" +"NM-02579","","","554254","3624750","GW","false","" +"NM-14737","","","455824","3716810","GW","false","" +"NM-15631","","","418586","3745300","GW","false","" +"NM-20061","","","602308","3837210","GW","false","" +"NM-20290","","","601118","3841320","GW","false","" +"NM-20959","","","636797","3858050","GW","false","" +"NM-10583","","","471726","3645120","GW","false","" +"NM-15187","","","543073","3733900","GW","false","" +"NM-13029","","","292163","3686930","GW","false","" +"AR-0216","","","232186","4079990","GW","true","From Hwy 516 on west side of river, take Rd. 2900 at light (Ruins Road), to address on left. Home is next to Aztec Church of Christ and well belongs to church. Well is in well house behind house and south of the church." +"AR-0085","NMED 100","","240596","4088880","GW","true","From Aztec take Hwy 550 toward Cedar Hill, turn left on Rd 2745 to address on N side of street. If gate is locked and owner not present, there is a walk through gate on W side. Well is in tan well house." +"TC-264","CO-12","","412215","4101670","GW","true","" +"NM-10753","","","625752","3648440","GW","false","" +"NM-02296","","","333221","3575230","GW","false","" +"NM-11752","","","615206","3664270","GW","false","" +"NM-02063","","","494843","3555660","GW","false","" +"NM-27289","","","367371","3581900","GW","false","" +"NM-09367","","","234107","3632730","GW","false","" +"NM-09930","","","221638","3639390","GW","false","" +"NM-23001","","","349473","3894560","GW","false","" +"NM-21074","","","647369","3862500","GW","false","" +"NM-13912","","","544770","3695440","GW","false","" +"NM-12623","","","556162","3677570","GW","false","" +"NM-06138","","","326600","3577020","GW","false","" +"NM-17716","","","644976","3792890","GW","false","" +"DA-0035","21S1W13.23","","322081","3595600","GW","true","E-side I-25" +"NM-04142","","","125414","3541980","GW","false","" +"NM-13977","","","544355","3695710","GW","false","" +"NM-04341","","","343978","3544750","GW","false","" +"NM-22297","","","246710","3888320","GW","false","" +"JM-022","","","295159","3644428","GW","true","" +"NM-05225","","","239530","3564700","GW","false","" +"NM-19926","","","297767","3836610","GW","false","" +"NM-09419","","","282981","3632060","GW","false","" +"NM-11048","","","557742","3651070","GW","false","" +"NM-11611","","","560405","3661190","GW","false","" +"WL-0092","NM3524030","","401880","3847067","GW","true","From Rt 41 towards Estancia, go west on Joseph Avenue in the town of Estancia. Go ~0.9 miles (at Walker St, Joseph Ave changes name to Simmons). Road turns into a dirt road that leads directly to well house. Well is inside well house, which is inside fenced area." +"NM-17403","","","645443","3787560","GW","false","" +"NM-13768","","","619851","3695370","GW","false","" +"NM-09998","","","556243","3636400","GW","false","" +"NM-07609","","","678866","3606530","GW","false","" +"AR-0240","","","223552","4075180","GW","true","From Flora Vista, drive south on Rd 350. After crossing the river, drive 0.25 miles and turn right (west) on Rd 3000. Drive 1.2 miles, turn right (north) on Rd 3660. Bear left at oil well. Road leads directly to Breed home. Gate has metal letters ""The Breeds."" Well is on north side of house in well vault." +"NM-00713","","","472853","3694900","GW","false","" +"NM-07084","","","244759","3597210","GW","false","" +"NM-02825","","","556460","3697530","GW","false","" +"SD-0227","10N.7E.24.433","","395511","3881430","GW","true","" +"NM-26112","","","610842","4021690","GW","false","" +"NM-24088","","","388195","3927530","GW","false","" +"NM-20258","","","615293","3841060","GW","false","" +"TS-075","","","437356","4081880","SP","true","Spring pool upstream of Cow Patty on east side of river about 2 ft above low river stage." +"NM-14076","","","546338","3697050","GW","false","" +"WL-0133","","","324765","3771627","GW","true","Well located near Sedillo Park. From intersection of El Camino Real & Francisco de Avondo, head east ~150 ft. Well house on right about 75 ft next to playground. Well in locked well house." +"NM-28094","","","338741","3903590","GW","false","" +"NM-28190","","","159742","4034980","GW","false","" +"NM-02008","","","237766","3553220","GW","false","" +"DE-0313","","","650260","3590867","GW","false","" +"NM-22219","","","380447","3884860","GW","false","" +"NM-11851","","","285848","3666880","GW","false","" +"NM-28008","","","347016","3868930","GW","false","" +"NM-12446","","","565088","3674300","GW","false","" +"NM-16171","","","262021","3763310","GW","false","" +"NM-21526","","","360417","3876740","GW","false","" +"NM-22816","","","242374","3894520","GW","false","" +"NM-09159","","","636755","3628350","GW","false","" +"NM-12901","","","562006","3682480","GW","false","" +"NM-01984","","","130452","3554640","GW","false","" +"NM-25966","","","617054","4007180","GW","false","" +"NM-23077","","","627912","3895520","GW","false","" +"NM-11339","","","567719","3656980","GW","false","" +"NM-09131","","","681468","3628200","GW","false","" +"NM-22515","","","374591","3888020","GW","false","" +"NM-01114","","","558826","3856020","GW","false","" +"NM-11568","","","656262","3661690","GW","false","" +"NM-19715","","","575811","3831220","GW","false","" +"TB-0252","","","429071","3721794","GW","true","From Hwy. 380 on Basin Rd., go north, west, then north to headquarters. Go thru gate to pumphouse southwest of house. Well on east side of shed." +"NM-19756","","","597882","3832170","GW","false","" +"AR-0208","","","235162","4083104","GW","true","Well located behind house, close to horse barn." +"NM-11912","","","670154","3666730","GW","false","" +"NM-23185","","","665201","3898430","GW","false","" +"JM-040","","","310109","3650189","GW","true","" +"WL-0050","","","441766","4050137","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, go past Lawrence Ranch Rd which is the first turn off to San Cristobal. At second turn off (FR 493) make a right. Turn right on Old Hwy 3 to address ~0.2 miles on right. Well is in south of house in vault." +"WL-0120","","","281752","3641818","GW","false","Take exit 59 on HWY 25, and head S on 187 for 0.4 miles. Turn W on Chili Plant Rd. Drive for 1.2 miles, and takea right on Tanzy Rd. Continue 0.3 miles. Well is to the right near tank." +"NM-03249","","","569084","3838470","GW","false","" +"NM-07698","","","649588","3607340","GW","false","" +"NM-22445","","","354659","3887610","GW","false","" +"NM-01589","","","467414","4000120","GW","false","" +"NM-16755","","","665139","3778210","GW","false","" +"SB-0530","TWDB 4846702","","466316","3461057","GW","false","" +"SB-0835","Sigstedt ID New John A","","495493","3567589","GW","true","From junction of Hwys 1437 (Main St) & 2249 (Broadway), go E on 2249 for 3 mi, turn N (left) on Hwy 1576 (hwy alternates between north & east).Take Hwy 1576 north 3 mi, east 1 mi, north 1 mi, east 1.4 mi, then turn N on G-005 for 2.3 mi. Rd ends at NM-506, turn E (right) on NM-506 and go 5.6 mi (numerous curves); at intersection turn E (right) which is still NM-506 but not clearly marked. Continue on NM-506 for 0.5 mi, NM-506 turns N (left), stay on NM-506 for addl. 9 mi. At intersection, turn E (right) on G-022 and go 1.0 mi, turn N (left), this is still G-022, go 1.0 mi, turn E (right), which is still G-022. Take G-022 for 1.0 mi, turn S (right) on 2-track & go ~0.6 mi to Muise well, a bit west of the road under an old bathtub." +"QY-0332","11.33.28.341","","641180","3890310","GW","true","" +"NM-13721","","","541546","3694190","GW","false","" +"NM-14275","","","547899","3699950","GW","false","" +"NM-20308","","","600503","3841690","GW","false","" +"NM-09962","","","554218","3635960","GW","false","" +"NM-05073","","","342456","3560050","GW","false","" +"OG-0080","","","652829","3809237","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile west on US 60. Turn right north on CR R. Drive 0.4 miles to well. Well is on E side of road." +"NM-05583","","","233983","3570080","GW","false","" +"NM-00970","","","667306","3814580","GW","false","" +"NM-02717","","","558047","3652270","GW","false","" +"NM-07711","","","663195","3607770","GW","false","" +"NM-05995","","","257839","3575090","GW","false","" +"NM-12366","","","554688","3672850","GW","false","" +"NM-07397","","","656398","3602150","GW","false","" +"BC-0265","269","","352614","3894870","GW","true","" +"TV-245","LQ-27","","444194","4022503","GW","true","" +"TS-022b","","","437963","4077604","SP","true","East bank, just upstream from Sunshine Trail." +"NM-25191","","","205155","3965760","GW","false","" +"NM-08645","","","676314","3622380","GW","false","" +"NM-15976","","","200716","3759220","GW","false","" +"NM-13813","","","546554","3695050","GW","false","" +"NM-06737","","","675859","3589130","GW","false","" +"TO-0001","1N6E31.242","","376061","3792930","GW","true","" +"NM-27703","","","666165","3796900","GW","false","" +"NM-04720","","","233265","3556750","GW","false","" +"NM-27180","","","184255","4061780","ES","true","" +"NM-15871","","","628137","3751910","GW","false","" +"NM-05753","","","243821","3571620","GW","false","" +"QY-0903","8.32.25.112","","636078","3862300","GW","true","" +"NM-18293","","","637090","3803860","GW","false","" +"NM-21744","","","347402","3880360","GW","false","" +"NM-07376","","","222161","3604040","GW","false","" +"NM-23816","","","638443","3916440","GW","false","" +"NM-16501","","","603494","3771390","GW","false","" +"NM-17996","","","365015","3799020","GW","false","" +"NM-14615","","","548514","3711230","GW","false","" +"AR-0097","","","237753","4085610","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 to address on left (west side) of road. House has wood exterior. Well is to right of house in small wood shed. AUG 2016: Husband has passed away, wife is in care facility, daughter moved away." +"NM-04547","","","219243","3553530","GW","false","" +"NM-19170","","","571264","3819700","GW","false","" +"NM-01659","","","303583","4041680","GW","false","" +"DE-0196","","","611764","3599848","GW","false","" +"QU-019","CER-22","","445538","4067612","GW","true","From highway 522 turn west on route 378 towards Wild Rivers and Cerro, through dogleg in road, to pink house on N side of highway. Garage in front, blue street address on porch (97 Hwy 378). Well in vault in well house on southwest corner of the house." +"NM-10639","","","554190","3645810","GW","false","" +"NM-24502","","","405778","3938670","GW","false","" +"CX-0165","83","","516820","4021960","GW","true","1 mile west of Miami" +"NM-00778","","","439061","3703350","GW","false","" +"EB-156","","","400727","3949653","GW","true","West obs well; take dirt track around south/west side of LF on fence line; keys from Souder Miller" +"NM-05163","","","180512","3565120","GW","false","" +"NM-14574","","","486331","3709360","GW","false","" +"NM-23323","","","376858","3900220","GW","false","" +"AB-0176","S227","","360897","3868260","GW","true","" +"HS-039","TC-039","","286947","3666273","GW","true","From entrace @ WWTP, make hard right around trailer/office. Continue west and follow fence around to the southwest corner. Well under pine trees at corner of fence between two yellow poles. (5/2/2019 Large bee hive in dead tree to east. Avoid loud noises like closing trunk of car, etc.)" +"NM-23789","","","644310","3915700","GW","false","" +"BW-0362","17S9E25.111","","408422","3631000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03118","","","573820","3809330","GW","false","" +"NM-24613","","","461507","3940840","GW","false","" +"NM-19721","","","546117","3831150","GW","false","" +"TO-0093","4N8E13.412","","403431","3826150","GW","true","" +"NM-14250","","","672623","3701370","GW","false","" +"NM-00017","","","375032","3541580","GW","false","" +"DE-0246","","","670338","3570377","GW","false","" +"NM-02107","","","300490","3560880","GW","false","" +"NM-26631","","","193626","4076480","GW","false","" +"NM-03995","","","258563","3528230","GW","false","" +"NM-06213","","","680591","3578830","GW","false","" +"SD-0273","11N.6E.27.334","","382210","3889610","GW","true","" +"NM-04363","","","241304","3547890","GW","false","" +"NM-06394","","","572003","3581100","GW","false","" +"NM-12646","","","627716","3678930","GW","false","" +"NM-17614","","","631599","3790960","GW","false","" +"TO-0095","4N8E14.233","","401638","3826550","GW","true","" +"UC-0089","","","627202","4054739","GW","true","Start: From Clayton, NM intersection of 1st street and US-56 travel Southwest on 1st st/US-64 for 26.6 miles. (Turns into US-87) +26.6 mi. Make a slight right onto Co Rd AO59(Sand Mesa) for 1.2 miles. +27.8 mi. Turn left onto Co Rd AO58(Irwin) for 1 mile. +28.8 mi. Turn right onto Blind Gap Rd for 2.2 miles .(At 1 mi. Blind Gap Rd turns left). Well is on east side of road thru gate." +"NM-11740","","","556452","3663380","GW","false","" +"NM-16773","","","677165","3779170","GW","false","" +"NM-24395","","","478251","3935860","GW","false","" +"NM-13223","","","544702","3687740","GW","false","" +"AB-0187","S238","","326181","3822470","GW","true","" +"NM-11364","","","612013","3657880","GW","false","" +"NM-10780","","","303315","3649410","GW","false","" +"NM-18881","","","664824","3814910","GW","false","" +"SA-0427","4S13W30.442","","201470","3758590","GW","true","" +"WL-0139","","","415692","3957846","GW","false","Drive I-25 north from AlBQ and take Hwy 73 to Tesuque. As you come into Tesuque, look for the Glenn Green Galleries on the east (right) side of the road. Well is accessed by entry into the Glenn Green Galleries, which requires a code to open the gate. Enter through the gate, turn right (south) on the dirt road, drive ~250 ft to well, which is next to small building. + +Samples can be taken from frost-freeze hydrant (garden hose fitting) next to building." +"NM-08424","","","233004","3620790","GW","false","" +"NM-27647","","","674481","3795330","GW","false","" +"NM-04107","","","140204","3539810","GW","false","" +"NM-19906","","","604399","3834670","GW","false","" +"NM-26191","","","473698","4028940","GW","false","" +"NM-14430","","","675505","3706290","GW","false","" +"NM-22457","","","623191","3887410","GW","false","" +"NM-02116","M-088","","265550","3561932","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 miles to B047/Marana Rd. Well located in southeast corner of Coyote/Marana. WATCH OUT FOR COLLAPSED GROUND AROUND BASE OF WELL!" +"NM-01782","","","116665","3525450","GW","false","" +"NM-19557","","","591600","3828750","GW","false","" +"NM-14770","","","547242","3718120","GW","false","" +"NM-17533","","","575798","3788870","GW","false","" +"NM-17196","","","557795","3783630","GW","false","" +"NM-21001","","","642950","3859320","GW","false","" +"NM-21203","","","382171","3867340","GW","false","" +"NM-21428","","","377750","3872570","GW","false","" +"NM-20948","","","665668","3858810","GW","false","" +"SM-0125","","","478283","3639651","GW","true","" +"BC-0075","60","","375096","3888700","GW","true","" +"DA-0130","26S4W14.1","","289963","3548030","GW","true","" +"NM-02747","","","401131","3661830","GW","false","" +"NM-25365","","","255442","3973690","GW","false","" +"NM-09242","","","284538","3630060","GW","false","" +"NM-18895","","","643873","3814620","GW","false","" +"NM-06507","","","573555","3583330","GW","false","" +"JM-024","","","295184","3643233","GW","true","" +"NM-20843","","","608541","3854750","GW","false","" +"NM-16864","","","663932","3779790","GW","false","" +"SD-0166","10N.5E.23.222","","375455","3883190","GW","true","" +"MI-0243","","","495957","3950305","GW","true","Topographic situation: Valley" +"ED-0128","21S27E9.33","","575225","3594870","GW","true","" +"NM-09355","","","681553","3630700","GW","false","" +"SM-3011","","","469480","3626604","R","true","Site visited and sampled by Jeremiah Morse" +"BW-0146","11S10E7.411","","412466","3692300","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21889","","","348816","3881750","GW","false","" +"NM-25277","","","581315","3965660","GW","false","" +"NM-23263","","","392086","3898860","GW","false","" +"NM-04475","","","675389","3549930","GW","false","" +"NM-06742","","","545445","3587750","GW","false","" +"NM-14596","","","643308","3711590","GW","false","" +"NM-15073","","","145530","3736210","GW","false","" +"NM-21019","","","648323","3860020","GW","false","" +"NM-21637","","","355073","3878610","GW","false","" +"SR-0014","","","136998","3728610","SP","true","Apache N.F.; follow Pueblo Park Rd. 1.0 mi from rt 180, ascend streambed 300 m to seep" +"TO-0477","10N15E34.113","","469061","3879010","GW","true","" +"TO-0352","8N8E15.343","","400354","3864080","GW","true","" +"HS-014","TC-014","","289772","3667572","GW","true","5m south of TC-013, in dog house, next to building" +"BW-0829","3.5.14.33.110","","193456","3748740","GW","true","" +"NM-01116","","","650727","3857670","GW","false","" +"NM-03725","","","170279","3494630","GW","false","" +"NM-02947","","","665412","3751580","GW","false","" +"QY-0461","14.36.10.11","","671286","3925770","GW","true","" +"NM-06257","","","155654","3584050","GW","false","" +"NM-05636","","","245883","3570300","GW","false","" +"NM-01389","","","650784","3929630","GW","false","" +"NM-20559","","","587726","3847660","GW","false","" +"NM-01208","","","341192","3882930","GW","false","" +"NM-19854","","","670046","3834940","GW","false","" +"WL-0015","","","507211","3961445","GW","true","I-25 N past Las Vegas to exit 364 toward Watrous. Right on NM-161 for 1.5 miles, right (east) on NM-97 for 1.4 miles, right into Watrous Valley Ranch, Caballo Camp, Black Willow Ranch. Go 2.2 miles (across railroad and Mora River). After river go right on gravel road for 0.7 miles to fork. Take left fork @ sign for Willow Creek Ranch (Marshall Road) and go 1.5 miles to top of hill, take only road to left (Tatro-Reineke Ranch entrance) for 0.5 mile to home. Well in pit behind guest house/shop. NOTE: DBL GREEN GATE, PRESS RED BUTTON ON BLACK CONTROL BOX ON NORTH HINGE POST. +Use gpx file for WL-0015: +\\agustin\amp\data\OnXFiles\Scott" +"NM-19690","","","651522","3832310","GW","false","" +"NM-24095","","","393112","3927720","GW","false","" +"SO-0123","3N5E30.1","","365428","3814070","SP","true","" +"NM-05217","","","168089","3566320","GW","false","" +"MI-0262","","","565615","3951174","GW","true","Topographic situation: Plains" +"NM-07873","","","676420","3610580","GW","false","" +"NM-27365","","","635569","3621860","GW","false","" +"QY-0511","16.36.20.422","","669080","3941080","GW","true","" +"NM-26731","","","621374","4086160","GW","false","" +"NM-22975","","","348366","3894370","GW","false","" +"NM-15578","","","662754","3745480","GW","false","" +"NM-25441","","","391984","3973740","GW","false","" +"BW-0661","2.11.15.14.300","","472478","3892630","GW","true","" +"NM-10497","","","650937","3645370","GW","false","" +"NM-19014","","","504594","3815240","GW","false","" +"NM-14834","","","546249","3720850","GW","false","" +"NM-10569","","","544353","3645060","GW","false","" +"SB-0691","TWDB 4915603","","389755","3522307","GW","false","" +"NM-04629","","","264197","3554630","GW","false","" +"NM-09883","","","631557","3635700","GW","false","" +"NM-19320","","","621947","3824660","GW","false","" +"NM-11306","","","662759","3657760","GW","false","" +"NM-11626","","","561959","3661350","GW","false","" +"NM-06103","","","257611","3577600","GW","false","" +"CX-0080","24N25E16","","564093","4018340","GW","true","" +"NM-24766","","","417939","3944680","GW","false","" +"ED-0126","21S27E1.42","","581127","3597490","GW","true","" +"NM-04802","","","235691","3558230","GW","false","" +"NM-12794","","","621549","3681560","GW","false","" +"SD-0325","13N.5E.32.232","","369853","3908860","GW","true","" +"NM-07703","","","194604","3610980","GW","false","" +"QU-043","","","447361","4067031","GW","true","Driving north on Hwy 522, ~0.1 miles north of road to Cerro, find address (#2721) on the right. Driving to back of driveway, take two of three left forks. Hook under barn supports to access gate to field. Passing thru gate, well is visible as a solar array and tank in the middle of the field." +"NM-16875","","","636878","3779850","GW","false","" +"NM-26213","","","666256","4032350","GW","false","" +"NM-16015","","","658672","3757360","GW","false","" +"EB-307","","","398488","3936666","GW","true","0.4 mi North on Los Pinos Rd from intersection with Cam.Capilla Viejo; drive on right ""#404A/B""; down drive behind easternmost trailer in small well house. USGS Site ID from Anderholm, 1994 USGS WRI Report 94-4078" +"NM-03517","","","377450","3941630","GW","false","" +"NM-12495","","","664834","3676280","GW","false","" +"MI-0074","","","450162","3920246","GW","true","Topographic situation: Hill" +"NM-02467","","","566318","3602740","GW","false","" +"NM-28361","","","209719","3635230","GW","false","Need to coordinate visits with Gilbert Cruise or Bobby Terassa. Meet in Hanover and you will be escorted to wells. Heading west on 152, pass Santa Rita mine on left to Hanover. Meet Bobby Terassa at old bar (Hanover Outpost), follow to access road on right (Hamholt Road). This well is not in well house." +"NM-10767","","","621807","3648300","GW","false","" +"CX-0068","25N26E9.43","","573840","4029650","GW","true","" +"NM-06797","","","675921","3590050","GW","false","" +"SB-0065","TWDB 4717214","","505973","3511219","GW","false","" +"NM-11570","","","558750","3660560","GW","false","" +"NM-07917","","","669112","3611040","GW","false","" +"NM-01189","","","192140","3882910","GW","false","" +"NM-11223","","","284642","3656830","GW","false","" +"SA-0408","4S12W12.410","","219006","3763460","GW","true","" +"MI-0153","","","531698","3929609","GW","true","Topographic situation: Plains" +"NM-09623","","","211588","3635730","GW","false","" +"NM-12357","","","653503","3673820","GW","false","" +"NM-20276","","","606412","3841110","GW","false","" +"BW-0546","18S9E1.2","","409435","3627430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19045","","","553639","3816280","GW","false","" +"NM-21892","","","369079","3881480","GW","false","" +"NM-23030","","","408521","3894090","GW","false","" +"NM-01500","","","497493","3954950","GW","false","" +"NM-04377","","","584769","3545420","GW","false","" +"SB-0671","TWDB 4915508","","386822","3520984","GW","false","" +"NM-24736","","","409283","3944300","GW","false","" +"QY-1030","12.32.6.213","","628614","3907230","SP","true","" +"SB-0614","TWDB 4864604","","497774","3438099","GW","false","" +"NM-22077","","","350707","3883770","GW","false","" +"NM-25613","","","402698","3983600","GW","false","" +"NM-15244","","","670727","3738220","GW","false","" +"NM-23663","","","202806","3914700","GW","false","" +"NM-20497","","","422023","3845900","GW","false","" +"NM-25825","","","250293","4001810","GW","false","" +"NM-00786","","","437430","3706560","GW","false","" +"EB-078","","","413940","3957720","GW","true","San Juan Residences; see also EB-089, EB-128" +"AS-056","DM-16","","444241","4041750","GW","true","" +"NM-17896","","","600861","3796960","GW","false","" +"AR-0095","","","238427","4086390","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2680 to address on right just before Rd 2755. Well is in grey pumphouse in NW corner of yard, behind house and garden." +"NM-12722","","","643064","3680900","GW","false","" +"ED-0317","23S28E29.411","","584072","3571190","GW","true","" +"NM-05562","","","338751","3567630","GW","false","" +"NM-18605","","","502758","3808180","GW","false","" +"NM-08612","","","557088","3620490","GW","false","" +"NM-20331","","","399937","3842240","GW","false","" +"NM-10502","","","135132","3650790","GW","false","" +"NM-25579","","","408492","3982060","GW","false","" +"NM-10708","","","400225","3646660","GW","false","" +"NM-03563","","","407410","3974360","GW","false","" +"NM-14504","","","603758","3706920","GW","false","" +"NM-02342","","","154285","3583850","GW","false","" +"NM-26268","","","270837","4040630","GW","false","" +"NM-22143","","","580849","3883510","GW","false","" +"TO-0546","8N9E32.31","","406461","3859630","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-17243","","","667797","3785750","GW","false","" +"AR-0136","B016","","238488","4087270","GW","true","" +"NM-05882","","","671884","3572490","GW","false","" +"NM-05845","","","123954","3577100","GW","false","" +"NM-21761","","","237207","3883130","GW","false","" +"NM-03759","","","166707","3512480","GW","false","" +"NM-05667","","","555560","3567480","GW","false","" +"NM-09257","","","647407","3629490","GW","false","" +"NM-15402","","","667542","3742260","GW","false","" +"AR-0082","NMED 210","","237843","4086310","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 then left on Rd 2684 to address on left. Well is in pump house." +"NM-01321","","","361893","3909440","GW","false","" +"NM-04360","","","244976","3547700","GW","false","" +"NM-25700","","","427336","3989240","GW","false","" +"NM-09284","","","191740","3633090","GW","false","" +"NM-19109","","","665593","3819020","GW","false","" +"NM-19457","","","668613","3828320","GW","false","" +"NM-22926","","","184030","3897780","GW","false","" +"BW-0707","2.6.17.15.122","","488545","3845330","GW","true","" +"NM-25371","","","397648","3971390","GW","false","" +"NM-00515","","","646939","3650530","GW","false","" +"NM-05492","","","261399","3568380","GW","false","" +"TC-403","","","453570","4091138","GW","true","" +"QY-0418","12.36.14.311","","672829","3904090","GW","true","" +"EB-317","","","404232","3938253","GW","true","South side of arroyo, southeast of watertank; easternmost well off corner of San Pedro Way" +"NM-28299","BH-56","","447236","4031891","GW","false","" +"NM-11215","","","613342","3655060","GW","false","" +"SD-0078","9N.6E.7.411","","377832","3875950","GW","true","" +"RA-022","","","358457","4085694","GW","true","In the house in utility room." +"NM-19743","","","647484","3833110","GW","false","" +"SB-0222","TWDB 4807106","","477692","3537658","GW","false","" +"QY-0273","11.31.19.212","","619251","3892710","GW","true","" +"NM-25742","","","401911","3993770","GW","false","" +"NM-25081","","","414835","3954080","GW","false","" +"NM-15932","","","634635","3753880","GW","false","" +"SM-4007","","","431455","3629462","PS","true","Stream flow measurement by Patrick Walsh" +"BW-0255","15S9E1.122","","403202","3656230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05653","","","163503","3572800","GW","false","" +"NM-15255","","","675971","3738530","GW","false","" +"NM-28068","","","240571","3901260","GW","false","" +"CX-0094","23N22E6.2","","532440","4012570","GW","true","" +"NM-08389","","","660836","3618140","GW","false","" +"NM-24090","","","438114","3927110","GW","false","" +"SB-0878","Mayer 39","","489831","3575671","GW","false","" +"NM-04737","","","680099","3555070","GW","false","" +"NM-00299","","","374740","3611180","GW","false","" +"NM-20105","","","576264","3837940","GW","false","" +"NM-10555","","","639471","3646040","GW","false","" +"NM-25746","","","404716","3994110","GW","false","" +"NM-12071","","","676271","3669730","GW","false","" +"NM-20023","","","324851","3837200","GW","false","" +"NM-19511","","","550848","3827570","GW","false","" +"NM-19232","","","226917","3825260","GW","false","" +"NM-15151","","","662339","3733580","GW","false","" +"UC-0126","","","676050","3992801","GW","false","USGS, not in NESWCD network, not visited by NMBGMR" +"SA-0313","","","242788","3725333","GW","true","" +"QY-0074","10.31.25.331a","","626654","3880380","GW","true","" +"NM-15350","","","674070","3741180","GW","false","" +"AB-0196","S249","","364803","3897130","GW","true","" +"ED-0265","22S30E8.241","","603628","3586640","GW","true","" +"NM-07926","","","278190","3612130","GW","false","" +"SD-0247","11N.5E.25.121a","","376043","3891060","GW","true","" +"EM-0006","","","194430","3882740","GW","true","At North Point, approx. 3' from cliff." +"NM-15694","","","676579","3748780","GW","false","" +"NM-11532","","","560567","3660170","GW","false","" +"SB-0207","TWDB 4806601","","473641","3534004","GW","false","" +"EB-134","","","401980","3938280","GW","true","" +"NM-27007","","","327579","3752990","GW","true","" +"NM-26358","","","588243","4051730","GW","false","" +"NM-10397","","","646125","3644040","GW","false","" +"NM-25525","","","304575","3981380","GW","false","" +"NM-13473","","","547840","3691050","GW","false","" +"BW-0063","25S5E36.111","","368641","3551770","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TC-435","","","451268","4089329","GW","true","The well is located at the ower's physical address. There are several houses on one driveway. The number on the driveway is 4199, between MM 37 and MM 38, on the east side of Hwy 522. The well is located in a shed/well house connected to the main blue/white house." +"QY-0727","6.31.22.311","","623417","3843740","GW","true","" +"NM-01552","","","575873","3982860","GW","false","" +"NM-19757","","","675449","3833470","GW","false","" +"NM-04425","","","132756","3552950","GW","false","" +"NM-03970","","","206167","3528760","GW","false","" +"NM-10105","","","629976","3639250","GW","false","" +"NM-01771","","","164639","3519460","GW","false","" +"SM-0047","","","445638","3650483","GW","true","16 Springs Canyon Rd off of James Canyon. Once in 16 Canyon, house can be seen up on hill just north of Patterson, off of Poison Springs Ln. Thru green gate (if no one is home, park there and walk up). Take left fork just past gate, then R at fork going uphill at for sale sign. Thru the orange gate with #21 on it. Well is in front of garage." +"NM-10653","","","283358","3648040","GW","false","" +"NM-07069","","","629960","3595060","GW","false","" +"NM-03838","","","324083","3520150","GW","false","" +"NM-07710","","","311051","3608190","GW","false","" +"NM-18906","","","573710","3813580","GW","false","" +"NM-26203","","","473876","4030120","GW","false","" +"NM-27541","","","658815","3780880","GW","false","" +"QY-0078","10.31.35.442","","626311","3878840","GW","true","" +"NM-16788","","","659851","3778740","GW","false","" +"NM-06552","","","205055","3588190","GW","false","" +"NM-15480","","","136491","3748840","GW","false","" +"SA-0491","4S13W29.331","","201763","3758580","GW","true","" +"BW-0564","17S9E8.4","","402935","3634910","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03075","","","323213","3801810","GW","false","" +"TV-227","","","439398","4025086","GW","true","From SR 68, turn left (west) onto SR 96. Go 2 miles to Los Cordovas, turn right (north) 1 mile, turn left (west) on Anadarko and go 1 mile. Road will turn to north. Well is in field on Ted Terry properties. Well in field between road and Hess house. White PVC stick-up visible in distance from road." +"NM-05585","","","582574","3566960","GW","false","" +"NM-07387","","","197692","3605180","GW","false","" +"AR-0017","C009","NMED 137","230984","4078740","GW","true","From Hwy 544 in Aztec, take Rd. 3000 west, turn right on Rd. 3009 towards the river. After Rd 3010 stay left at first fork, and stay left at next fork to residence. Rental property is on the right, owner's residence is on right. Well in small shed to NE of property in goat pasture." +"NM-18209","","","561386","3801940","GW","false","" +"NM-17578","","","620910","3790020","GW","false","" +"NM-11793","","","555541","3664020","GW","false","" +"SR-0028","","","427225","3960480","SP","true","Aspen Basin; just before Vista Grande, pull-off at right in the draw, stream on left (North), walk into woods 20 m, this seep is the one on the LEFT looking uphill" +"BW-0687","4.2.18.30.330","","491062","3774140","GW","true","" +"NM-07461","","","671142","3603650","GW","false","" +"BW-0544","16S9E25.1","","408722","3640540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14972","","","448603","3725870","GW","false","" +"NM-06498","","","536061","3582850","GW","false","" +"NM-18598","","","629631","3809240","GW","false","" +"NM-13024","","","566311","3684750","GW","false","" +"NM-05860","","","253814","3573250","GW","false","" +"BW-0459","24S7E34.144","","385187","3560660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01831","","","340799","3525980","GW","false","" +"NM-16572","","","208804","3778000","GW","false","" +"NM-25935","","","423647","4005210","GW","false","" +"NM-24008","","","474792","3923450","GW","false","" +"NM-11001","","","617119","3651660","GW","false","" +"SB-0560","TWDB 4854410","","465089","3449793","GW","false","" +"QY-0940","9.28.23.212","","596911","3873120","GW","true","" +"NM-07479","","","629666","3603330","GW","false","" +"NM-03347","","","616442","3878690","GW","false","" +"EB-150","","","412592","3950813","GW","true","West of north end of Frank Ortiz City Park" +"QY-0532","17.35.24.322","","665414","3950960","GW","true","" +"QU-084","MW-11","","443260","4061278","GW","true","See Chevron map of monitoring wells. Down from Dam 4 (south side)." +"NM-08869","","","204662","3627890","GW","false","" +"TO-0020","2N8E15.442","","400137","3806430","GW","true","" +"NM-07427","","","274015","3604000","GW","false","" +"EB-395","","","404140","3929549","GW","true","" +"NM-20934","","","601277","3856910","GW","false","" +"NM-24738","","","408177","3944310","GW","false","" +"NM-19716","","","557170","3831090","GW","false","" +"SB-0513","TWDB 4842101","","419379","3470919","GW","false","" +"DE-0347","","","569353","3626599","GW","false","" +"NM-27079","","","324412","3763980","GW","true","" +"NM-05656","","","337849","3568530","GW","false","" +"NM-25862","","","240283","4004360","GW","false","" +"BW-0165","13S9E36.424","","403896","3667340","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03828","","","239639","3521600","GW","false","" +"WL-0130","","","324918","3770599","GW","true","Located near Zimmerly Elementary School, near intersection of Zimmerly School Rd and School of Mines Rd. Well in locked well compound. Monitor well is short light colored well in front of pump house along walkway. Well compound is locked." +"NM-04900","","","266404","3559360","GW","false","" +"NM-13149","","","665126","3688030","GW","false","" +"QU-172","","","445874","4062299","GW","true","" +"NM-27493","","","564203","3733180","GW","false","" +"NM-04925","","","138424","3563020","GW","false","" +"NM-22119","","","374753","3883830","GW","false","" +"NM-12080","","","663343","3669450","GW","false","" +"NM-05961","","","328707","3572900","GW","false","" +"NM-27232","","","604523","3552930","GW","false","" +"NM-00801","","","456203","3709140","GW","false","" +"NM-07632","","","659693","3606570","GW","false","" +"NM-21922","","","368297","3881730","GW","false","" +"NM-15071","","","420025","3729940","GW","false","" +"NM-06882","","","661453","3591290","GW","false","" +"QY-0341","11.34.22.333","","652175","3892010","GW","true","" +"NM-21242","","","345989","3868890","GW","false","" +"WL-0099","CN-2016-003","","617490","3609360","GW","true","" +"NM-27408","","","541294","3643750","GW","false","" +"NM-19685","","","613277","3831210","GW","false","" +"NM-05404","","","223739","3568230","GW","false","" +"BW-0386","17S10E6.311","","410096","3635260","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0322","16S10E5.244","","411783","3645800","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BC-0113","98","","373773","3882660","GW","true","" +"NM-17409","","","666857","3788200","GW","true","" +"SB-0817","TWDB 5102101","","512862","3428994","GW","false","" +"NM-28152","","","170828","3972550","GW","false","" +"ED-0091","21S25E9.342","","556610","3595030","GW","true","" +"SA-0206","","","241056","3742445","GW","true","Hwy 60 to Rt 52 south from VLA. Go about 22 mi south. South of MM 67 to Jct with 163, take 163 west 3.7 miles to fork at Luera Ranch entrance. 2.6 mi to house. Follow powerline down hill to west." +"TO-0291","7N8E19.422","","396476","3853340","GW","true","" +"NM-26179","","","406904","4027890","GW","false","" +"BC-0100","86","","373911","3885290","GW","true","" +"MI-0057","","","474860","3915699","GW","true","Topographic situation: Valley" +"NM-04710","","","671290","3554980","GW","false","" +"NM-05659","","","260103","3570080","GW","false","" +"TO-0091","4N8E13.233","","403195","3826400","GW","true","" +"NM-14888","","","657300","3723760","GW","false","" +"NM-25850","","","584018","4000440","GW","false","" +"NM-08498","","","669298","3619950","GW","false","" +"NM-05999","","","579911","3572660","GW","false","" +"NM-03792","","","352153","3518420","GW","false","" +"WL-0088","NM3522109","","204694","3627710","GW","true","Need to meet w/staff for escort to wells. Coordinate visits with Eddie." +"BW-0007","21S4E11.333","","357931","3595700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02161","M-096","","249934","3566856","GW","false","From east side of Deming, go east on NM549 for 4.2 miles. Go south on NM-143/Stirrup Rd SE for 2.8 miles. Go west at gate with cattle guard labeled 'McDougal.' Go around the right side of the house/trucks to the far side of the field, north of the house. Well is inside gate with small well-house, under insulation and blanket (for the winter)." +"PP-084","PSW-3","","433862","4006123","PS","true","" +"QY-0708","6.29.35.314","","605768","3840110","GW","true","" +"NM-12622","","","556991","3677580","GW","false","" +"NM-22258","","","599117","3884930","GW","false","" +"NM-05274","","","216497","3566090","GW","false","" +"NM-24744","","","414063","3944350","GW","false","" +"NM-01889","","","348236","3536430","GW","false","" +"NM-05677","","","239475","3570710","GW","false","" +"SA-0482","5S15W22.330","","185844","3751150","SP","true","" +"TO-0377","8N10E32.341","","417528","3859160","GW","true","" +"NM-13383","","","548646","3690160","GW","false","" +"EB-109","","","407319","3948593","GW","true","" +"NM-21485","","","344474","3875420","GW","false","" +"NM-06489","","","157595","3588440","GW","false","" +"NM-14440","","","485550","3704710","GW","false","" +"NM-09200","","","558245","3627480","GW","false","" +"NM-12888","","","481351","3682080","GW","false","" +"SM-4036","","","462298","3635510","PS","true","Stream flow measurement by Patrick Walsh" +"NM-23392","","","372564","3902320","GW","false","" +"NM-12591","","","615872","3678010","GW","false","" +"NM-11993","","","658102","3668160","GW","false","" +"NM-04870","","","678404","3557500","GW","false","" +"NM-25633","","","465049","3983990","GW","false","" +"NM-21185","","","382060","3866600","GW","false","" +"NM-17071","","","653861","3783070","GW","false","" +"NM-19225","","","638190","3822640","GW","false","" +"NM-19250","","","670835","3823920","GW","false","" +"NM-10628","","","664160","3646970","GW","false","" +"NM-13540","","","546078","3691900","GW","false","" +"NM-23011","","","677078","3895140","GW","false","" +"NM-02877","","","671319","3722360","GW","false","" +"NM-11211","","","671740","3656130","GW","false","" +"NM-16536","","","212786","3777320","GW","false","" +"NM-12392","","","508805","3673140","GW","false","" +"NM-00189","","","589308","3575020","GW","false","" +"NM-15951","","","549325","3753700","GW","false","" +"NM-14215","","","548601","3699030","GW","false","" +"NM-14985","","","473506","3726660","GW","false","" +"NM-05737","","","259364","3570960","GW","false","" +"HS-086","TC-086","","289447","3667663","GW","true","In block 11 in Hot Springs, NM" +"NM-04424","","","133204","3552960","GW","false","" +"WL-0180","","","434069","3938579","GW","true","From north on I-25 past Santa Fe, take Exit 299 onto NM-50 towards Pecos. Drive 2 miles, turn left (north) onto La Cueva Road. Drive 1.9 miles, turn right (east) onto Sacred Way. Drive to address at 35 Sacred Way. Well is in pit behind house." +"QY-0572","5.29.13.131","","607316","3835790","GW","true","" +"NM-13557","","","483309","3692120","GW","false","" +"NM-08060","","","681120","3613070","GW","false","" +"NM-22604","","","661816","3889680","GW","false","" +"AR-0518","","","217573","4071260","PS","true","Access behind Farmington museum" +"NM-24524","","","650844","3939880","GW","false","" +"NM-04843","","","664145","3557480","GW","false","" +"NM-24462","","","402447","3937900","GW","false","" +"NM-00821","","","319081","3715650","GW","false","" +"NM-08492","","","151470","3624410","GW","false","" +"NM-25196","","","414330","3961570","GW","false","" +"NM-14360","","","543735","3701560","GW","false","" +"NM-10998","","","557772","3650390","GW","false","" +"NM-14328","","","142632","3707520","GW","false","" +"NM-18133","","","655265","3801890","GW","false","" +"NM-10769","","","647020","3648460","GW","false","" +"NM-17552","","","641332","3790270","GW","false","" +"NM-28030","","","258629","3884850","GW","false","" +"NM-27602","","","669260","3794060","GW","false","" +"NM-02054","","","339033","3555670","GW","false","" +"NM-01365","","","187127","3925640","GW","false","" +"NM-06707","","","671406","3588250","GW","false","" +"NM-10038","","","283245","3639320","GW","false","" +"QY-0710","6.30.11.234","","616322","3847040","GW","true","" +"NM-19053","","","557720","3816400","GW","false","" +"TO-0410","9N8E26.433","","403564","3870120","GW","true","" +"NM-25934","","","166544","4011210","GW","false","" +"CX-0181","24N20E25.2","","521362","4015620","SP","true","NE1/4" +"NM-09781","","","227563","3637190","GW","false","" +"SM-0162","","","493144","3619931","GW","true","Site visit by Jeremiah Morse in June 2007" +"SB-0785","TWDB 4932505","","398505","3492347","GW","false","" +"NM-03406","","","394567","3890480","GW","false","" +"QU-157","","","442873","4050352","GW","true","Take second exit to San Cristobal from 522 north. Turn left onto Camino del Medio and proceed to a blue roof house at curve in the road. Well vault is at head of driveway. **NOT USING SITE IN INVENTORY. OUT OF STUDY AREA.**" +"NM-08745","","","202797","3626520","GW","false","" +"NM-18107","","","537252","3800310","GW","false","" +"NM-16657","","","271359","3777690","GW","false","" +"NM-12281","","","557932","3671670","GW","false","" +"NM-12155","","","664769","3670950","GW","false","" +"NM-10144","","","559321","3638850","GW","false","" +"NM-25775","","","616146","3996060","GW","false","" +"NM-02199","","","331382","3566940","GW","false","" +"SM-0137","","","484187","3620310","GW","true","Half way between Pinon and Dunken. TO the house: Head east on Hwy 24 from Pinon, at Mile 35, turn R onto Russell Gap Rd. Follow 1.63 Miles (street sign says 163?), crossing 2nd cattle guard and turn L. Stucco house at end of Rd on right, with fence. TO the well: Hwy 24 turn in through gate at post 1140, between miles 38-39. By white No Trespassing sign. Follow 2 track back to well (about 4 miles total). At about 0.25 mi near rusty tank on stilts, turn left after levy. Go another 0.3 mi to another gate, no lock. Avoid mud, very sticky. Go 1.8 mi past big storage tank, and then 0.5 to 2 steel tanks. Stay on main 2 track back to paddocks and old windmill." +"NM-22914","","","351795","3893190","GW","false","" +"NM-10080","","","410950","3638120","GW","false","" +"QY-0283","11.31.28.333","","621661","3889930","GW","true","" +"QY-0140","11.27.35.122","","586766","3889130","GW","true","" +"UC-0194","","","635686","4004341","GW","false","" +"NM-25402","","","406512","3972490","GW","false","" +"NM-26762","","","547255","4091090","GW","false","" +"TV-297","K2-6","","446675","4030626","GW","true","" +"NM-17364","","","640614","3786970","GW","false","" +"NM-08799","","","656774","3624610","GW","false","" +"NM-21945","","","236393","3884790","GW","false","" +"NM-12635","","","555773","3677790","GW","false","" +"NM-08184","","","327547","3614940","GW","false","" +"NM-08995","","","190431","3629550","GW","false","" +"NM-23469","PW-068","","371731","3905900","GW","false","" +"NM-10423","","","637471","3644160","GW","false","" +"QY-0807","7.32.11.133","","634443","3856960","GW","true","" +"NM-28083","","","238544","3903790","GW","false","" +"NM-23086","","","642072","3895940","GW","false","" +"NM-09212","","","219563","3631370","GW","false","" +"NM-09975","","","660729","3637550","GW","false","" +"NM-07500","","","557240","3603150","GW","false","" +"NM-16867","","","677141","3780460","GW","false","" +"NM-24967","","","413450","3948570","GW","false","" +"BW-0475","10S4E31.244","","354610","3696450","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17426","","","539506","3786830","GW","false","" +"QY-0210","11.30.19.133","","608723","3892090","GW","true","" +"NM-15042","","","150744","3734880","GW","false","" +"NM-20436","","","620867","3844830","GW","false","" +"NM-11897","","","555482","3665250","GW","false","" +"NM-07950","","","680523","3611520","GW","false","" +"QY-0515","16.36.23.123","","672909","3941750","GW","true","" +"QY-0495","16.34.28.211","","650798","3940400","GW","true","" +"NM-00933","","","675583","3803160","GW","false","" +"NM-26655","","","447715","4073250","GW","false","" +"NM-00278","","","680345","3603930","GW","false","" +"TB-0030","","","400931","3685409","GW","true","Turn off Hwy 54 to east across from old house and WM. Go under trestle, through gate. Cross arroyo and head east along side of washed road to green casing on left." +"NM-16178","","","630727","3761620","GW","false","" +"NM-24371","","","625976","3936100","GW","false","" +"NM-17119","","","659584","3783910","GW","false","" +"QY-0900","8.32.15.224","","634001","3865360","GW","true","" +"NM-21247","","","253209","3870960","GW","false","" +"NM-27749","","","664374","3794040","GW","false","" +"NM-12581","","","477433","3676760","GW","false","" +"NM-10381","","","553456","3642390","GW","false","" +"TB-1040","","","410689","3692435","SP","true","From Hwy 54, take turn off to Three Rivers heading east about 7.7 mi. Go to chapel (B037 county road) to southeast, just before big drainage. To chapel, park on east side of road and walk SE into arroyo where spring surfaces." +"NM-20141","","","546487","3838540","GW","false","" +"NM-09035","","","555890","3625310","GW","false","" +"NM-19078","","","540501","3816740","GW","false","" +"TV-123","","","439328","4024683","GW","true","From SR 68, turn left (west) onto SR 96. Go 2 miles to Los Cordovas, turn right (north). Go 1 mile then turn left (west) on ?. Approx. 1 mile up road, casing to right, just past fence line after turn in road." +"NM-13123","","","556060","3686380","GW","false","" +"HS-108","TC-108","","289594","3668555","GW","true","" +"NM-03353","S001","","363691","3880870","GW","false","" +"ED-0335","24S28E17.231","","584093","3565140","GW","true","" +"NM-13620","","","549846","3693030","GW","false","" +"QY-1010","9.36.31.311","","666985","3870410","GW","true","" +"QU-161","","","446198","4063214","GW","true","From 522 north, turn uphill onto Abra Road at North Star Garage. The fifth driveway on the left after it flattens out; green gate. Drive to house. Northeast through yard to the well vault." +"NM-23960","","","174905","3926500","GW","false","" +"NM-04267","M-041","","273893","3543266","GW","false","Drive to ""Board"" gate located SE of Deming at 13S, 270158 m E, 3546552 m N [IMG_0785]. Restart odometer. Go right at fork (mile 0.2), left at the second fork (mile 1.0), to the second gate at mile 1.1. Go right to stay next to the fencing. Go right at the fork (mile 2.6) to a third gate at mile 4.2. Well inside barbed fence w/solar panels. Old pump jack on site." +"NM-04969","","","223228","3561060","GW","false","" +"ED-0259","22S30E5.443","","603705","3587060","GW","true","" +"NM-07779","","","659893","3608760","GW","false","" +"NM-01021","","","627591","3829340","GW","false","" +"NM-02237","","","244087","3571800","GW","false","" +"SB-0092","TWDB 4717321","","511000","3510114","GW","false","" +"NM-18982","","","616450","3815840","GW","false","" +"NM-27491","","","563988","3730660","GW","false","" +"HS-511","TC-511","","289739","3667558","SP","true","In block 40 in Hot Springs, NM" +"NM-17909","","","362002","3797550","GW","false","" +"NM-09027","","","280903","3627510","GW","false","" +"HS-507","TC-507","","289756","3667671","SP","true","In block 41 in Hot Springs, NM" +"QY-0679","6.28.23.233","","596703","3843690","GW","true","" +"QY-0545","17.36.34.113","","671231","3948340","GW","true","" +"NM-15118","","","576646","3731460","GW","false","" +"NM-06474","","","267519","3584980","GW","false","" +"BW-0704","1.12.11.10.431","","228668","3907970","GW","true","" +"SM-0194","","","510142","3644641","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-12995","","","539417","3684140","GW","false","" +"NM-12377","","","558027","3673000","GW","false","" +"NM-01074","","","599226","3846590","GW","false","" +"NM-13776","","","544179","3694820","GW","false","" +"SR-0027","","","381310","4032240","SP","true","Mogote Ridge; " +"NM-07839","","","229179","3612420","GW","false","" +"NM-00524","","","409070","3651220","GW","false","" +"QY-0776","7.30.24.333","","616883","3852690","GW","true","" +"TB-1029","","","405686","3682995","SP","true","" +"BW-0291","15S10E31.434","","404995","3647500","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0047","","","675994","3986633","GW","true","elv 4445 acc to USGS" +"NM-24678","","","411659","3942950","GW","false","" +"NM-15411","","","677514","3742750","GW","false","" +"NM-06694","","","659913","3587940","GW","false","" +"TC-348","","","445208","4070989","GW","true","" +"NM-20029","","","398730","3836580","GW","false","" +"NM-02741","","","402437","3660190","GW","false","" +"NM-12484","","","631535","3676020","GW","false","" +"NM-06323","","","572770","3579820","GW","false","" +"NM-10562","","","552429","3644970","GW","false","" +"SD-0221","10N.7E.16.412","","391031","3883780","GW","true","" +"NM-05414","","","239272","3567910","GW","false","" +"NM-11944","","","289541","3667920","GW","false","" +"NM-09088","","","409621","3626300","GW","false","" +"NM-12828","","","612336","3681600","GW","false","" +"BW-0538","17S9E15.24","","406400","3633870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0913","8.33.20.243","","640340","3863400","GW","true","" +"NM-09390","","","559429","3629610","GW","false","" +"SO-0040","2N4E36.142","","363926","3802570","GW","true","" +"DA-0111","24S1E7.44","","323516","3567420","GW","true","" +"CX-0069","25N26E28.4","","574083","4025020","GW","true","" +"NM-09721","","","558993","3632850","GW","false","" +"DA-0172","28S3W33.4","","296714","3523060","GW","true","" +"NM-15238","","","668262","3737900","GW","false","" +"RA-070","","","424313","4005062","GW","true","E of house" +"NM-18463","","","403430","3806220","GW","false","" +"QY-0075","10.31.26.311","","625031","3880750","GW","true","" +"SD-0074","9N.4E.35.1","","363573","3870460","GW","true","" +"TO-0306","7N8E33.123","","398735","3850790","GW","true","" +"QU-104","","","449272","4067561","GW","true","Take Hwy 522 north out of Questa. Make right on Cabresto Road, then left on Llano Road. Go all the way to T and take right on Echo Forest Lane. Only house on right (22 Echo Forest Lane). Well in concrete vault on left of driveway." +"NM-02451","","","279259","3600300","GW","false","" +"NM-07386","","","663657","3601860","GW","false","" +"UC-0003","","","665379","4039835","GW","true","Go 0.7 miles on Clayton Lake Highway to gate on right. Go through gate, combo is 3006, very difficult to open! Go 0.5 miles to gate by small house red roof. Go through, go 1.1 miles easet to gate, go through 1.1 miles to double gate. Go through, go 1.1 miles to next gate near corral, go thgough go west along fence to well on small concrete pad." +"BC-0130","186","","384155","3873160","GW","true","" +"NM-10228","","","625639","3641050","GW","false","" +"NM-00598","","","676706","3664990","GW","false","" +"NM-24185","","","405134","3930200","GW","false","" +"BC-0329","317","","378704","3885770","GW","true","" +"NM-01598","","","479451","4007950","GW","false","" +"NM-16224","","","559691","3763120","GW","false","" +"NM-11323","","","567929","3656710","GW","false","" +"NM-21983","","","396142","3882140","GW","false","" +"NM-17583","","","625481","3789280","GW","false","" +"NM-01764","","","168316","3510020","GW","false","" +"NM-23859","","","647328","3917940","GW","false","" +"WL-0097","CN-2016-001","","617507","3609300","GW","true","" +"NM-12498","","","635492","3676350","GW","false","" +"SA-0341","","","255051","3684468","GW","true","" +"NM-01067","","","602710","3844260","GW","false","" +"NM-24010","","","415681","3923900","GW","false","" +"NM-21511","","","401012","3875840","GW","false","" +"NM-17791","","","676500","3795460","GW","false","" +"NM-11948","","","420817","3666090","GW","false","" +"NM-11434","","","285170","3660790","GW","false","" +"NM-18288","","","656080","3804120","GW","false","" +"NM-25066","","","407107","3952670","GW","false","" +"MI-0152","","","535690","3934362","GW","true","Topographic situation: Plateau" +"NM-08755","","","675450","3624120","GW","false","" +"SO-0068","2N3W23","","304659","3806600","GW","true","" +"OG-0073","","","651243","3805873","GW","true","" +"NM-18037","","","360682","3799950","GW","false","" +"NM-06994","","","675492","3593680","GW","false","" +"NM-08090","","","227706","3615820","GW","false","" +"NM-15461","","","660040","3743240","GW","false","" +"NM-03978","","","256863","3527530","GW","false","" +"TC-442","","","460360","4089693","GW","true","Go to Amalia from Costilla, and turn left on Ventero Rd (at the cemetary). Go 0.8 miles and turn right at Y on Ute Creek Rd. Enter the first driveway on the right. It is the 3rd house on the road after the Y. The house is white concrete w/red roof." +"NM-11331","","","567461","3656860","GW","false","" +"NM-13474","","","624496","3691890","GW","false","" +"NM-17610","","","624081","3790680","GW","false","" +"NM-05166","","","674322","3561620","GW","false","" +"NM-17651","","","654148","3792110","GW","false","" +"NM-17762","","","148669","3799650","GW","false","" +"SV-0022","21 Canada Vista","","380813","3899488","GW","false","Unit 1 Lot 85B" +"MB-1004","","","213334","3625083","SP","false","Mimbres River at junction of NM 61 and Royal John Mine Rd, in Mimbres valley N of Faywood." +"NM-09911","","","625389","3636210","GW","false","" +"NM-01734","","","217943","4096240","GW","false","" +"NM-01673","","","472601","4044820","GW","false","" +"NM-07534","","","658128","3604980","GW","false","" +"EB-212","","","405848","3926044","GW","true","Windmill at end of South Fork Rd" +"NM-02841","","","547497","3702870","GW","false","" +"NM-25080","","","631549","3954330","GW","false","" +"NM-07240","","","340841","3598250","GW","false","" +"QY-0599","5.29.20.314","","600995","3833620","GW","true","" +"DE-0279","","","663161","3634591","GW","false","" +"NM-13716","","","548935","3694170","GW","false","" +"AH-018","DM-30","","444341","4042415","GW","true","" +"NM-26053","","","315349","4017890","GW","false","" +"NM-20872","","","338710","3856260","GW","false","" +"NM-24894","","","409613","3947070","GW","false","" +"NM-17642","","","662902","3791920","GW","false","" +"NM-11167","","","478131","3653320","GW","false","" +"NM-02078","","","675836","3558970","GW","false","" +"NM-08169","","","433812","3613520","GW","false","" +"NM-01449","","","599732","3941890","GW","false","" +"NM-00353","","","642431","3624330","GW","false","" +"NM-17443","","","680875","3788760","GW","false","" +"WL-0335","","","367979","3911446","GW","true","A Commercial nav system will get you to the residence and well. Well is located to the east of the house in a fenced in area" +"NM-22853","","","676513","3892980","GW","false","" +"NM-03631","","","661743","4020490","GW","false","" +"NM-00056","","","369591","3545100","GW","false","" +"NM-04577","","","237213","3554190","GW","false","" +"NM-17523","","","679007","3790080","GW","false","" +"NM-28431","S-2017-012","","612264","3578687","GW","true","" +"NM-15891","","","327979","3753280","GW","false","" +"NM-23952","","","404857","3920680","GW","false","" +"BW-0337","17S7E23.421","","388613","3631940","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03774","","","140837","3521410","GW","false","" +"NM-05576","","","236834","3569890","GW","false","" +"NM-22947","","","290043","3895010","GW","false","" +"NM-12940","","","672320","3685010","GW","false","" +"NM-03669","","","628047","4078640","GW","false","" +"NM-15843","","","657076","3751720","GW","false","" +"NM-27242","","","582776","3561420","GW","false","" +"NM-20956","","","616633","3857740","GW","false","" +"NM-05407","","","220805","3568310","GW","false","" +"NM-28449","","","476224","4071900","GW","true","" +"BC-0071","55","","377834","3890630","GW","true","" +"NM-13883","","","271871","3697930","GW","false","" +"SD-0127","10N.5E.1.122","","376320","3887890","GW","true","" +"NM-03934","","","256798","3525870","GW","false","" +"NM-08393","","","293473","3619080","GW","false","" +"NM-27815","","","548530","3803100","GW","false","" +"NM-09519","","","561424","3630770","GW","false","" +"WL-0175","","","570820","3666043","GW","false","Well on BLM land. Contact Mike McGee for escort to well. Well under metal windmill next to large reddish water tank." +"NM-24900","","","407704","3947210","GW","false","" +"NM-00805","","","450819","3710980","GW","false","" +"NM-06888","","","674274","3591600","GW","false","" +"NM-12454","","","559054","3674420","GW","false","" +"RA-014","","","394926","4001842","GW","true","Well is about 75 ft east of house." +"NM-03923","","","347861","3523500","GW","false","" +"NM-07550","","","612332","3604570","GW","false","" +"SD-0293","11N.6E.35.141","","383925","3888990","GW","true","" +"TO-0404","9N8E20.133","","398060","3872510","GW","true","" +"NM-08791","","","652038","3624440","GW","false","" +"NM-10517","","","552821","3644450","GW","false","" +"NM-07836","","","405346","3609010","GW","false","" +"NM-03140","","","570812","3813160","GW","false","" +"NM-00020","","","672088","3543700","GW","false","" +"NM-14589","","","483726","3709880","GW","false","" +"SB-0059","TWDB 4717208","","505999","3511188","GW","false","" +"NM-00356","","","662714","3625260","GW","false","" +"BW-0328","16S10E8.344","","411562","3642920","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-668","","","414482","3943745","GW","true","" +"NM-09893","","","659963","3636640","GW","false","" +"NM-15835","","","671919","3751990","GW","false","" +"NM-01380","","","486727","3923810","GW","false","" +"NM-08013","","","210172","3614860","GW","false","" +"NM-02471","","","549649","3603660","GW","false","" +"NM-05236","","","251893","3564300","GW","false","" +"BW-0924","1.7.4.11.430","","294249","3860080","SP","true","" +"SD-0237","11N.5E.24.134","","375778","3892230","GW","true","" +"SA-0191","","","241126","3760960","GW","true","From Hwy 60, take CR 152? South 13.3 miles to well. Well located in heavy clay, don't go on road if raining." +"NM-17790","","","628427","3794650","GW","false","" +"NM-13798","","","585280","3695280","GW","false","" +"NM-16900","","","636956","3779790","GW","false","" +"NM-04611","","","242032","3554830","GW","false","" +"SD-0292","11N.6E.35.132a","","383988","3889220","GW","true","" +"NM-18790","","","673759","3813470","GW","false","" +"NM-21300","","","555540","3868910","GW","false","" +"NM-24159","","","637676","3930240","GW","false","" +"NM-18793","","","664139","3813230","GW","false","" +"TB-0249","","","428989","3722660","GW","true","From Hwy 380 take road to north past houses and corals. Bear west past dirt tank, look for solar panels." +"NM-13953","","","544537","3695620","GW","false","" +"NM-19126","","","480824","3817930","GW","false","" +"NM-14626","","","545622","3711890","GW","false","" +"NM-19551","","","678495","3830080","GW","false","" +"NM-20304","","","617701","3841800","GW","false","" +"NM-15779","","","198675","3753230","GW","false","" +"NM-27596","","","671898","3793930","GW","false","" +"NM-19494","","","585575","3827430","GW","false","" +"TO-0431","9N12E32.43","","437537","3868340","GW","true","" +"NM-19031","","","671260","3817460","GW","false","" +"AB-0227","S283","","342989","3929870","GW","true","" +"EB-611","","","405227","3949987","GW","true","Also see EB-164" +"NM-17704","","","638131","3792170","GW","false","" +"NM-10896","","","675295","3650370","GW","false","" +"EB-661","","","407765","3939546","GW","true","" +"SM-3028","","","451619","3629793","PS","true","At bridge that goes to downtown Weed." +"NM-09339","","","622920","3629860","GW","false","" +"NM-05208","","","240306","3564280","GW","false","" +"SD-0085","9N.6E.21.311","","380290","3872490","GW","true","" +"NM-11404","","","615191","3658970","GW","false","" +"ED-0192","22S26E11.34","","569047","3585210","GW","true","" +"NM-09860","","","670384","3635550","GW","false","" +"NM-25255","","","222995","3968670","GW","false","" +"NM-00333","","","275354","3621440","GW","false","" +"NM-04416","","","669186","3547520","GW","false","" +"ED-0129","21S27E19.334","","572155","3591570","GW","true","" +"NM-22781","","","376734","3891140","GW","false","" +"SO-0240","SFC-W04C","","312780","3721027","GW","true","" +"NM-06066","","","568234","3574240","GW","false","" +"NM-05259","","","248846","3565110","GW","false","" +"SD-0110","9N.7E.24.113","","394621","3872940","GW","true","" +"NM-27084","","","285830","3738690","GW","true","" +"NM-27145","QU-19","","447800","4065750","GW","false","" +"NM-20569","","","561617","3847660","GW","false","" +"NM-10432","","","323229","3644630","GW","false","" +"NM-11745","","","635812","3664500","GW","false","" +"NM-04833","","","136753","3561810","GW","false","" +"BC-0274","270","","368413","3880650","GW","true","" +"NM-11052","","","276907","3653460","GW","false","" +"NM-11747","","","557177","3663410","GW","false","" +"BW-0646","14S8E35.233","","392013","3658180","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14818","","","673138","3723010","GW","false","" +"NM-15941","","","655246","3754900","GW","false","" +"BW-0743","4.22.30.6.344","","601259","3587040","GW","true","" +"NM-16719","","","593908","3776430","GW","false","" +"NM-15590","","","638671","3744850","GW","false","" +"NM-02707","","","558191","3649780","GW","false","" +"NM-00826","","","448859","3715830","GW","false","" +"NM-11940","","","555816","3665840","GW","false","" +"NM-07624","","","653542","3606320","GW","false","" +"NM-21946","","","345909","3882300","GW","false","" +"NM-07769","","","664093","3608680","GW","false","" +"NM-01911","","","119763","3544520","GW","false","" +"NM-10456","","","638686","3644640","GW","false","" +"SD-0151","10N.5E.12.412","","376611","3885560","GW","true","" +"NM-05798","","","671103","3570690","GW","false","" +"BC-0153","134","","378936","3890940","GW","true","" +"EB-545","","","406085","3944273","GW","true","" +"WL-0221","","","252103","3573253","GW","true","From I-10 and Rt 11 intersection, go 4.4 miles east on Rt 549 to Hwy 377, turn left and go 2.9 miles, past McSherry Farm driveway. Well on right near shed. Well head in open along Hwy 377 near irrigation shed." +"BW-0199","14S9E26.241","","402207","3659680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0120","1S2E20.24a","","338538","3786890","SP","true","" +"NM-18299","","","664242","3804450","GW","false","" +"NM-21250","","","346624","3869040","GW","false","" +"NM-20363","","","638898","3843390","GW","false","" +"NM-18247","","","673951","3804600","GW","false","" +"EB-291","","","409347","3956949","GW","true","La Tierra Lot 106, #150 Estrada Maya (at end); left drive by guest house" +"NM-13025","","","674903","3686720","GW","false","" +"NM-02768","","","552620","3667390","GW","false","" +"EB-417","","","415225","3934102","GW","true","3 Enebro Place" +"NM-11983","","","673029","3668350","GW","false","" +"NM-00518","","","413436","3649690","GW","false","" +"BC-0443","446","","","","GW","false","" +"NM-17030","","","655793","3782370","GW","false","" +"NM-17291","","","653224","3786020","GW","false","" +"QY-0638","5.30.10.311","","613830","3837130","GW","true","" +"NM-23925","","","403914","3919770","GW","false","" +"NM-19608","","","596558","3829690","GW","false","" +"SB-0812","TWDB 5101501","","507138","3422339","GW","false","" +"NM-24913","","","152725","3953890","GW","false","" +"SB-0324","TWDB 4807615","","486055","3531332","GW","false","" +"NM-10903","","","553446","3648980","GW","false","" +"NM-22113","","","404741","3883410","GW","false","" +"SB-0432","TWDB 4815302","","487676","3524833","GW","false","" +"TV-144","","","443847","4028625","GW","true","65 Blueberry Hill Road Dome, stucco house. Cement vault & wellhead are north of dome house, between there and neighbors; closer to neighbors house than dome house." +"QY-0335","11.34.11.224","","654898","3896370","GW","true","" +"NM-09368","","","655557","3630810","GW","false","" +"NM-15620","","","206170","3749330","GW","false","" +"NM-16892","","","638821","3780130","GW","false","" +"NM-23224","","","379891","3898440","GW","false","" +"AR-0214","","","214258","4072999","GW","true","Well located in front yard." +"NM-18208","","","611455","3802560","GW","false","" +"NM-17457","","","640462","3788570","GW","false","" +"SM-3017","","","468391","3633591","S","true","Site visited and sampled by Jeremiah Morse" +"NM-25466","","","673702","3975990","GW","false","" +"NM-24440","","","673628","3938720","GW","false","" +"UC-0123","","","676467","4087754","GW","true","From NESWCD database, not visited by NMBGMR" +"NM-27836","","","560047","3807480","GW","false","" +"NM-03207","","","564464","3829560","GW","false","" +"NM-10589","","","546195","3645250","GW","false","" +"NM-12477","","","562055","3674810","GW","false","" +"NM-28121","","","622049","3664320","GW","false","" +"NM-11336","","","637512","3657960","GW","false","" +"QY-0119","10.35.21.211","","661010","3883700","GW","true","" +"ED-0016","17S24E11.43","","541516","3634040","GW","true","" +"TB-0160","","","406626","3716393","GW","true","Between Mile 116-115 on hwy 54. On west side of road, thru gate at McDonald Ranch. Combo is 2912 (sesame lock). South of road at WM, approx 2 miles from entrance to east of corrals." +"SD-0200","10N.6E.14.422","","384994","3883800","GW","true","" +"NM-00935","","","661812","3803530","GW","false","" +"NM-11287","","","619241","3656490","GW","false","" +"NM-14255","","","635590","3700780","GW","false","" +"NM-06454","","","569303","3582190","GW","false","" +"NM-06189","","","575195","3577190","GW","false","" +"QU-509","","","439902","4057754","SP","true","Small seep from under rock." +"NM-27147","","","365150","3872775","GW","true","" +"NM-17641","","","668018","3791980","GW","false","" +"CP-0006","","","652836","3809152","GW","true","From Clovis go west on Hwy 60, west of NM 311 look for CRR and turn right (north). Well should be just off this road." +"NM-06669","","","670373","3587530","GW","false","" +"NM-18127","","","615817","3801230","GW","false","" +"NM-05419","","","207660","3568810","GW","false","" +"NM-09591","","","194380","3635910","GW","false","" +"NM-10333","","","634580","3642830","GW","false","" +"NM-27697","","","624368","3796010","GW","false","" +"NM-02320","","","366231","3576740","GW","false","" +"BC-0331","324","","378041","3893250","GW","true","" +"NM-15935","","","677870","3755330","GW","false","" +"NM-05297","","","199952","3567030","GW","false","" +"NM-07339","","","590444","3599790","GW","false","" +"NM-13944","","","544253","3695560","GW","false","" +"BW-0434","18S9E23.442","","407985","3621490","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20359","","","381018","3842920","GW","false","" +"NM-15686","","","631311","3747180","GW","false","" +"SA-0459","5S14W33.110","","194017","3748720","GW","true","" +"NM-25899","","","411908","4002910","GW","false","" +"SM-1073","","","449325","3630361","SP","true","" +"UC-0138","","","675340","3952168","GW","true","Head south from Clayton on NM 402 to Union-Quay county line. 3.7 miles south of the county line, turn east at cattle guard and gravel road onto R. L. Burns property. Bear left on track uphill behind house to barn area. Go east thru barn area to gate east of barn and thru it. Go thru gate 0.1 miles past barn area gate. Stay on main track. Pass windmill on right at 1.1 miles. Go thru gate at 1.8 miles. Go thru gate at 3.4 miles. At 3.6 miles take right fork. Go thru gate at 3.8 miles. Well is at 4.8 miles from gate at barn area." +"NM-26982","","","328764","3761440","GW","true","" +"NM-18847","","","597423","3812790","GW","false","" +"BW-0267","15S10E6.312","","404830","3656210","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SM-1003","","","447465","3650480","SP","true","On south side of 16 Springs Canyon, in Walker private property accessed on 2 track across from house. Do not access without prior arrangement with Walker." +"NM-04446","","","672871","3548380","GW","false","" +"CX-0067","25N26E8.41","","572297","4029900","GW","true","" +"NM-25642","","","570949","3984700","GW","false","" +"NM-06284","","","573507","3579110","GW","false","" +"NM-21647","","","656329","3878980","GW","false","" +"NM-26289","","","667018","4041890","GW","false","" +"NM-24786","","","411353","3945020","GW","false","" +"NM-04093","","","253113","3535630","GW","false","" +"NM-22832","","","229041","3895060","GW","false","" +"NM-19953","","","422898","3834960","GW","false","" +"NM-17211","","","233242","3787480","GW","false","" +"NM-12243","","","554751","3670790","GW","false","" +"NM-05338","","","677778","3564790","GW","false","" +"NM-17712","","","650681","3792910","GW","false","" +"NM-20768","","","628330","3853220","GW","false","" +"TC-295","","","452076","4041619","PS","true","Near headgate of Temporalis ditch, in Arroyo Seco Canyon past the mountain front." +"QY-0491","15.37.6.311","","675950","3936340","GW","true","" +"NM-22417","","","595833","3886620","GW","false","" +"TB-0238","","","430611","3717052","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and take the road going north across the cattle guard in front of the HQ. Follow road to west 2 miles and at crossroads turn north and go 0.2 miles and turn to east before cattle guard. Follow road to east and look for old rock tank to the south back off of the road, casing is to the east of tank." +"BW-0474","26S8E33.12","","393021","3541600","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08753","","","551872","3622340","GW","false","" +"NM-22879","","","363268","3892660","GW","false","" +"NM-26429","","","223444","4065230","GW","false","" +"NM-25436","","","410156","3973320","GW","false","" +"NM-15637","","","665504","3747010","GW","false","" +"NM-21848","","","348560","3881570","GW","false","" +"QY-0966","9.31.24.433","","627358","3872280","GW","true","" +"NM-01129","","","672841","3861320","GW","false","" +"NM-14059","","","547914","3696870","GW","false","" +"SB-0678","TWDB 4915515","","389447","3520586","GW","false","" +"SR-0009","","","269855","3750020","SP","true","San Mateo Mtns; no trail, descend from FR 138" +"NM-21271","","","346322","3869020","GW","false","" +"PB-0017","","","378905","3936877","GW","true","Heading south on Hwy 22 from post office in Pena Blanca (to south end of town), make left (east) on Camino de Communidad to address on left. Well is between large white steel garage and small brown stucco well house/shed (white pvc stick-up on small concrete pad)." +"NM-03656","","","585308","4067040","GW","false","" +"UC-0057","","","658658","3989762","GW","true","elv 4740 acc to USGS" +"SB-0201","TWDB 4806201","","471768","3540444","GW","false","" +"NM-25378","","","170787","3977530","GW","false","" +"NM-24146","","","659624","3930380","GW","false","" +"NM-16042","","","326934","3757980","GW","false","" +"NM-10472","","","548748","3643660","GW","false","" +"RA-081","","","395348","4009910","GW","true","Bean creek. Left on Buffalo trail, left on Ft Defing, right on alloyo 1.6 miles on left. Somewhere in the middle of nowhere." +"NM-25507","","","569826","3978010","GW","false","" +"NM-21948","","","240042","3884710","GW","false","" +"NM-15468","","","528770","3741450","GW","false","" +"WL-0081","","","164214","3536210","GW","true","Go to Playas training center. Going S on Smelter Rd go left (east) on Playas Blvd. Roughly 0.7 miles down the road make a right on dirt road. This road leads to well site. Well #1 is in fenced enclosure south of well #2." +"QY-0470","15.34.13.122","","655540","3933450","GW","true","" +"NM-17414","","","234221","3790380","GW","false","" +"EB-189","","","417201","3959125","GW","true","#40 Cam. De Milagro (access road has yellow NM box w/name & white post/chain gate; well located just past driveway entrance on R before wood/iron gate" +"NM-27041","","","322479","3781770","GW","true","" +"SV-0063","02 Luna Azul","","377935","3901220","GW","false","Unit 3 Lot 118" +"NM-04258","","","343979","3541440","GW","false","" +"NM-13833","","","545830","3695140","GW","false","" +"WL-0173","","","519881","3650238","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well is under windmill next to power pole and small roofed cattle fenced area w/motor under roof." +"BW-0333","16S10E30.422","","410721","3638490","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12964","","","549971","3683670","GW","false","" +"BW-0169","14S9E4.222","","398381","3666010","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"ED-0261","22S30E6.424","","602156","3587470","GW","true","" +"NM-20886","","","637104","3856180","GW","false","" +"WL-0148","","","414236","3917349","GW","true","In Galisteo, drive to large church (Iglesia Nuestra Senora de los Remidios) on Hwy 41. Drive east on Via la Puente about 0.1 miles, turn left (north) on La Vega to address on right (east) side of road." +"SM-1034","","","433621","3634744","SP","true","" +"NM-01503","","","514999","3957360","GW","false","" +"EB-105","","","403911","3950729","GW","true","Well site on Calle Hacienda, inside locked gate for La Villa Escondida; see EB-176, adjacent well w/water level" +"NM-04518","","","379591","3549840","GW","false","" +"NM-09459","","","282574","3632500","GW","false","" +"NM-19923","","","618549","3835180","GW","false","" +"TO-0269","7N7E29.343","","387500","3851360","GW","true","" +"TS-001b","","","439350","4066997","PS","true","Rio Grande river water parameters at TS-1." +"NM-20185","","","168736","3844930","GW","false","" +"SB-0164","TWDB 4743101","","525259","3468361","GW","false","" +"QY-0172","11.30.1.313","","616724","3896670","GW","true","" +"QY-0702","6.29.31.114","","599371","3840800","GW","true","" +"TO-0536","8N8E11.4","","402748","3866020","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-24314","","","425221","3934260","GW","false","" +"NM-10783","","","543251","3647610","GW","false","" +"NM-27903","","","225119","3827440","GW","false","" +"SO-0018","2N1E3.33","","331492","3810380","GW","true","" +"NM-18192","","","662064","3802850","GW","false","" +"NM-26348","","","226728","4052840","GW","false","" +"NM-06748","","","324648","3589300","GW","false","" +"SM-1068","","","440182","3623040","SP","true","" +"NM-22607","","","359244","3889330","GW","false","" +"NM-27870","","","658419","3813220","GW","false","" +"NM-28278","SS-1","","445130","4071440","GW","false","" +"NM-08386","","","214781","3620900","GW","false","" +"NM-23905","","","460051","3918740","GW","false","" +"NM-22102","","","372409","3883710","GW","false","" +"SB-0922","","","511837","3544541","GW","true"," From Queen, NM, go S/SW on 137 for 13.3 mi (follow signs to Dog Canyon Campground but don't go there). Turn right on G015/Raven Rd and go 3.9 mi, road turns S last 0.1 mi & ends @ Hughes Tank. Go S past Hughes Tank on dirt road ~2000 ft. Well is on west side of road. From Hughes home (best on ATV), go N on Trail Canyon Rd/417 for 1.7 mi, turn left on NM-137 N and go 2.5 mi, turn left on G015/Raven Rd and go 3.9 mi. Road turns S last 0.1 mi and ends at Hughes Tank. Go S past Hughes Tank on dirt road ~2,000 ft. Well is on west side of road." +"NM-12288","","","553943","3671680","GW","false","" +"NM-14728","","","542792","3716190","GW","false","" +"NM-24111","","","412219","3928220","GW","false","" +"NM-14130","","","582776","3698090","GW","false","" +"NM-28113","","","187202","3915450","GW","false","" +"NM-03648","","","596671","4057980","GW","false","" +"BW-0140","11S10E5.121","","413888","3694090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07611","","","651537","3606080","GW","false","" +"NM-12198","","","560324","3670120","GW","false","" +"NM-11520","","","283669","3662150","GW","false","" +"NM-11022","","","629915","3651790","GW","false","" +"NM-05904","","","578747","3571050","GW","false","" +"SA-2005","","","270062","3751635","M","true","At top of Mt Withington on forest service road. Collector is by old corral post, in above ground collector." +"CX-0008","29N24E24.2","","559464","4065510","GW","true","" +"SA-0467","6S14W8.333","","193239","3744620","GW","true","" +"NM-20947","","","563384","3856910","GW","false","" +"NM-27436","","","213532","3687820","GW","false","" +"NM-19719","","","558417","3831160","GW","false","" +"NM-23358","","","666908","3901850","GW","false","" +"NM-04379","","","135546","3551580","GW","false","" +"PC-133","PW-304","","361618","3912094","GW","true","" +"AR-0174","E007","NMED 16","240792","4091080","GW","true","From Hwy 550 in Cedar Hill, take Rd 2900 west to address on right." +"SB-0497","TWDB 4835801","","435295","3472994","GW","false","" +"NM-02340","","","331350","3579110","GW","false","" +"NM-15535","","","133382","3749760","GW","false","" +"NM-10974","","","672337","3651730","GW","false","" +"NM-01658","","","303783","4040620","GW","false","" +"BW-0293","15S10E33.214","","408274","3648690","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19016","","","675392","3817600","GW","false","" +"NM-21739","","","349373","3880300","GW","false","" +"EB-540","","","418527","3964948","GW","true","" +"NM-05862","","","241146","3573570","GW","false","" +"DE-0191","","","611724","3599895","GW","false","" +"TB-0213","","","427765","3731785","GW","true","From Carrizozo go 3 miles north to White Oaks turn off. Head east 5 miles to gate on north side of road (wire with yellow paint). Head north past TB-202 and back west to old homestead. Look for blue casing by tree." +"QY-0842","7.33.4.244","","642121","3858610","GW","true","" +"NM-18465","","","570654","3806010","GW","false","" +"NM-08067","","","552345","3611740","GW","false","" +"NM-26158","","","445951","4025040","GW","false","" +"DA-0086","23S2E8.433","","334556","3576880","GW","true","" +"NM-27711","","","652330","3796920","GW","false","" +"NM-19940","","","608645","3835150","GW","false","" +"NM-15964","","","201322","3758860","GW","false","" +"CX-0022","28N26E14.2","","577064","4058360","GW","true","" +"NM-26234","","","639079","4035260","GW","false","" +"NM-13876","","","555930","3695400","GW","false","" +"RA-074","","","390905","4024436","GW","true","Turn left at gate. In old pump house." +"AR-0209","","","233169","4081110","GW","true","From Aztec, heading north on Hwy 544, veer left onto McCoy Avenue; Kiddie Kamp Day Care at intersection. Continue to Rd 2980 and make a left toward river. There is a gate at end of road, walk through gap in fence next to gate. Thru gate the road veers off to right to green well in cleared area. " +"NM-21993","","","395434","3882310","GW","false","" +"NM-09898","","","553339","3635120","GW","false","" +"NM-12959","","","656455","3685200","GW","false","" +"NM-17767","","","228628","3797200","GW","false","" +"NM-13177","","","139143","3693760","GW","false","" +"NM-09627","","","573769","3631870","GW","false","" +"BC-0401","404","","344739","3868540","GW","false","" +"TC-297","TV-513","","452454","4040459","PS","true","Location at USGS gage 08271000" +"NM-25482","","","412308","3975420","GW","false","" +"NM-23560","","","461592","3907820","GW","false","" +"NM-27776","","","593555","3796450","GW","false","" +"NM-04095","","","250773","3535630","GW","false","" +"NM-14399","","","536939","3702980","GW","false","" +"EB-557","","","415704","3957857","GW","true","" +"NM-08394","","","269884","3619530","GW","false","" +"NM-10910","","","550876","3649030","GW","false","" +"NM-19636","","","662080","3831650","GW","false","" +"NM-26890","PW-126","","368230","3907404","GW","true","" +"NM-13035","","","619605","3686000","GW","false","" +"NM-08856","","","230957","3627010","GW","false","" +"NM-05708","M-111","","273786","3570252","GW","false","Take I-10 east from Deming. Exit Akela. Go east on the frontage road on the north side of I-10 past the Trading Post. The road turns north and crosses the railroad tracks. Turn west on Tewas and go 0.5 miles (pavement ends, stay straight on dirt road. Well located south of fences, near power poles." +"SO-0137","BRN-W01A","","326642","3763759","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-19782","","","604574","3832670","GW","false","" +"NM-21930","","","368577","3881790","GW","false","" +"EB-602","","","409847","3948341","GW","true","Coyote Ridge off of Alameda. Left on Coyotillo. House on left, well in front yard." +"SM-4046","","","431043","3629424","PS","true","Stream flow measurement by Patrick Walsh" +"NM-14679","","","543625","3714370","GW","false","" +"BW-0298","15S10E36.111a","","412337","3648660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"CX-0123","30","","537520","4047070","GW","true","3 miles northwest of Maxwell" +"NM-23839","","","205312","3920980","GW","false","" +"NM-02048","","","494082","3554060","GW","false","" +"NM-19398","","","633316","3826450","GW","false","" +"NM-14078","","","545925","3697050","GW","false","" +"NM-20917","","","551274","3856160","GW","false","" +"BW-0517","8S10E2.1","","418589","3723180","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10085","","","556182","3637970","GW","false","" +"NM-09555","","","674700","3632670","GW","false","" +"NM-06241","","","155725","3583830","GW","false","" +"NM-00754","","","437147","3698850","GW","false","" +"NM-05984","","","587422","3572300","GW","false","" +"ED-0344","25S25E6.343","","553073","3557610","GW","true","" +"BC-0386","389","","380783","3884540","GW","false","" +"NM-20387","","","598705","3843330","GW","false","" +"NM-06082","","","339217","3575530","GW","false","" +"NM-21245","","","346134","3868860","GW","false","" +"NM-00332","","","275363","3621370","GW","false","" +"NM-15413","","","678517","3742770","GW","false","" +"NM-17208","","","562222","3783840","GW","false","" +"TO-0348","8N8E10.244","","401419","3866480","GW","true","" +"NM-25883","","","635178","4002680","GW","false","" +"NM-23575","","","362960","3909050","GW","false","" +"NM-18826","","","596509","3812310","GW","false","" +"TO-0188","5N9E29.111","","406222","3833220","GW","true","" +"UC-0081","","","619546","4092734","GW","true","From Clayton central intersection, go 3.4 miles E on US 56/412. Turn north on NM 406, stay on NM 406 at junction with NM 410. At 35.7 miles turn left onto NM 456 (Dry Cimmaron Canyon Road). Go west on NM 456 for 34.9 miles to intersection with Long canyon Road. Long Canyon Road is 6.7 miles west of the intersection of NM 370 (Lake Highway) and NM 456. Take Long Canyon Road north from turnoff at NM 456. At 5.3 miles, turn left (NW) just before wooden bridge and Henry Browns house. Go 0.4 miles up two track in valley bottom to cattle tank and outbuildings, well is on raised area with solar panel. Hand dug well, top covered by steel plate." +"SB-0376","TWDB 4807902","","485946","3528499","GW","false","" +"NM-22873","","","626640","3892420","GW","false","" +"NM-12415","","","639112","3674900","GW","false","" +"BW-0343","17S9E1.413","","409297","3636700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0161","ESC-W03A","","325768","3777090","GW","true","" +"NM-20375","","","599038","3843090","GW","false","" +"NM-22562","","","237956","3891500","GW","false","" +"QY-0311","11.32.24.211","","636760","3893000","GW","true","" +"NM-13986","","","620479","3696830","GW","false","" +"NM-00292","","","676447","3610110","GW","false","" +"NM-01302","","","649808","3906950","GW","false","" +"NM-16228","","","319256","3764780","GW","false","" +"TC-387","","","452252","4091443","GW","true","" +"NM-15395","","","681286","3741870","GW","false","" +"NM-06601","","","364182","3585760","GW","false","" +"NM-01896","","","347579","3536410","GW","false","" +"NM-23896","","","411318","3918680","GW","false","" +"NM-07247","","","136250","3603800","GW","false","" +"NM-19108","","","669623","3819090","GW","false","" +"NM-14617","","","543381","3711320","GW","false","" +"NM-01803","","","227332","3524110","GW","false","" +"NM-23659","","","360790","3910810","GW","false","" +"NM-07299","","","211305","3602590","GW","false","" +"NM-10993","","","283118","3652490","GW","false","" +"DE-0104","","","659224","3557766","GW","false","" +"NM-00545","","","661929","3656180","GW","false","" +"SB-0103","TWDB 4717902","","508770","3502107","GW","false","" +"NM-21360","","","340994","3872030","GW","false","" +"NM-06032","","","154592","3579060","GW","false","" +"SB-0389","TWDB 4808102","","488165","3538688","GW","false","" +"NM-26337","","","140182","4053870","GW","false","" +"NM-19437","","","569456","3826210","GW","false","" +"NM-14180","","","545350","3698520","GW","false","" +"NM-19734","","","408762","3831700","GW","false","" +"SA-0411","4S12W22.300","","214960","3760220","GW","true","" +"EB-489","","","401300","3956280","GW","true","" +"TV-226","SWS-115","","443896","4025205","GW","true","From SR 240, just after mile marker 1, make left on Tom Holder Rd. Follow to base of mesa & look for 4 & 4A on fence post @ end of drive. Or take Llano Quemado north to right on Tom Holder Rd. At base of hill take HARD left into driveway. Gil's house is one to north. Well is between homes." +"NM-01432","","","184462","3943880","GW","false","" +"NM-07653","","","554123","3605750","GW","false","" +"NM-13613","","","553050","3692990","GW","false","" +"UC-0074","","","606961","4067129","GW","true","Start: From Clayton, NM intersection of 1st street and US-56 travel Southwest on 1st st/US-64 for 42.8 miles.(Turns into US-87) +42.8 mi. Turn right onto Co Rd B012(Weatherly Road) for 0.7 miles. +43.5 mi. Well is at homestead to the North.Well is behind house and barbed wire fence, go thru gate at southwest corner." +"NM-00062","","","677397","3547790","GW","false","" +"NM-28258","Zumwalt","","553351","3638188","GW","true","" +"NM-06054","","","326910","3574970","GW","false","" +"NM-07029","","","665063","3594180","GW","false","" +"NM-21287","","","343563","3869580","GW","false","" +"NM-21465","","","404946","3873910","GW","false","" +"NM-04263","","","160281","3546190","GW","false","" +"NM-09502","","","410807","3630880","GW","false","" +"NM-05080","","","238209","3562270","GW","false","" +"NM-11742","","","664065","3664990","GW","false","" +"NM-09085","","","558305","3626070","GW","false","" +"QY-0261","11.30.8.144","","610716","3895420","GW","true","" +"NM-09901","","","283748","3637370","GW","false","" +"NM-22538","","","359408","3888520","GW","false","" +"DE-0095","","","639314","3568989","GW","false","" +"NM-05399","","","261056","3567190","GW","false","" +"NM-02081","","","494844","3556920","GW","false","" +"NM-07831","","","255269","3611340","GW","false","" +"NM-22571","","","677566","3889610","GW","false","" +"AR-0172","E004","NMED 209","243815","4092110","GW","true","From Aztec, take Hwy 550 to Cedar Hill. Turn right onto Rd 2345, then take right turn onto Rd 2345. Turn left onto Rd 2335 and take left turn on Rd 2335. Follow Rd around 2 right bends to address on left." +"NM-11156","","","617015","3653840","GW","false","" +"NM-03073","","","655148","3827300","GW","false","" +"QY-0692","6.29.23.334","","605780","3843000","GW","true","" +"NM-14759","","","670914","3719060","GW","false","" +"DE-0282","","","663187","3634615","GW","false","" +"NM-04627","","","548359","3551990","GW","false","" +"NM-19084","","","398519","3817300","GW","false","" +"TC-260","CO-08","","417505","4100040","GW","true","" +"NM-22794","","","350802","3891710","GW","false","" +"NM-22197","","","627431","3884760","GW","false","" +"NM-22806","","","184479","3896130","GW","false","" +"NM-06542","","","676556","3585170","GW","false","" +"AB-0237","","","362928","3880150","GW","true","" +"NM-21966","","","359250","3882390","GW","false","" +"TO-0478","11N9E19.122","","406713","3892370","GW","true","" +"NM-20675","","","402114","3850840","GW","false","" +"MI-0083","","","459054","3917896","GW","true","Topographic situation: Flat area" +"NM-20068","","","599940","3837270","GW","false","" +"NM-15618","","","674994","3746870","GW","false","" +"NM-16721","","","676782","3777720","GW","false","" +"SM-0008","","","438012","3638892","GW","true","Head east on NM130 down Cox Canyon. Take 1st turn into golf course, thru brick entrance gates on south side of road. Take 1st right turn onto Rustlers Roost road. Well is approximately 100 yds ahead on the right, just beyond small doghouse-like structure next to road." +"UC-0198","","","629980","4084628","GW","false","" +"NM-10112","","","220755","3642220","GW","false","" +"SA-0231","","","276299","3778098","GW","true","At locked gate for Tres Montosa campground, 0.1 mi, take right, go to pipeline (0.3 mi), right at pipeline 1.0 mi, right 1.5 mi to two white tanks. Right thru gate, bear right @ 3.4 mi, take left after 0.6 mi, stay on main road over hill. At 0.5 mi take left to corral for 0.4 mi, then thru gate (combo 2980), left at 0.2 mi, right well by tank @ 1.1 mi. Casing next to large steel tank. Old windmill derek still visible." +"NM-25585","","","403988","3982470","GW","false","" +"NM-20370","","","599014","3842930","GW","false","" +"NM-10635","","","543726","3645730","GW","false","" +"QY-0249","11.30.31.244","","609984","3888980","GW","true","" +"NM-15708","","","656018","3748540","GW","false","" +"NM-08830","","","559518","3623360","GW","false","" +"NM-23531","","","372094","3908400","GW","false","" +"NM-28006","","","347016","3868930","GW","false","" +"QY-0748","7.27.27.444","","585985","3850820","GW","true","" +"NM-09971","","","668035","3637580","GW","false","" +"SB-0838","","","479179","3557145","GW","false","" +"NM-04175","","","328285","3538520","GW","false","" +"NM-00238","","","575044","3585100","GW","false","" +"SB-0297","TWDB 4807514","","481040","3531801","GW","false","" +"NM-26187","","","443956","4028720","GW","false","" +"EB-600","","","409825","3956335","GW","true","84 Estrellas de Tano. Tano Rd to Tano West to Estrellas de Tano, over bridge, end of rd." +"NM-12998","","","400897","3684690","GW","false","" +"NM-22064","","","391416","3883060","GW","false","" +"NM-17009","","","676356","3782700","GW","false","" +"NM-12308","","","679420","3673460","GW","false","" +"NM-14390","","","566758","3702430","GW","false","" +"NM-13091","","","560200","3685980","GW","false","" +"NM-27684","","","616396","3795630","GW","false","" +"NM-17440","","","592417","3787380","GW","false","" +"NM-02963","","","321813","3758820","GW","false","" +"PC-105","PW-183","","368824","3908214","GW","true","" +"BW-0243","14S10E29.312","","405872","3659240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17799","","","605079","3794690","GW","false","" +"NM-09004","","","205171","3629230","GW","false","" +"BW-0759","2.12.32.1.422b","","637144","3906670","GW","true","" +"NM-25065","","","409267","3952590","GW","false","" +"NM-14934","","","622679","3724850","GW","false","" +"ED-0093","21S25E18.413","","553315","3593520","GW","true","" +"NM-24246","","","173712","3937490","GW","false","" +"NM-05977","","","233570","3575300","GW","false","" +"BW-0907","4.25.18.26.111","","492482","3552250","GW","true","" +"QY-0154","11.29.13.314a","","607274","3893120","GW","true","" +"NM-27861","","","566994","3810730","GW","false","" +"TB-0321","","","134891","3880360","GW","true","" +"NM-10638","","","557877","3645830","GW","false","" +"NM-06053","","","336380","3574810","GW","false","" +"SB-0622","TWDB 4906602","","380770","3536481","GW","false","" +"NM-13311","","","567417","3689350","GW","false","" +"TO-0370","8N9E29.111a","","406427","3862170","GW","true","" +"NM-07320","","","660657","3600180","GW","false","" +"NM-21196","","","391934","3866910","GW","false","" +"NM-00929","","","659426","3801960","GW","false","" +"NM-15312","","","676507","3740180","GW","false","" +"NM-07892","","","662575","3610590","GW","false","" +"NM-08470","","","608049","3618840","GW","false","" +"NM-20405","","","590562","3843650","GW","false","" +"EB-320","","","404048","3938249","GW","true","South side of arroyo west of watertank; 4th eastern well off corner of San Pedro Way" +"DE-0294","","","673564","3584412","GW","false","" +"NM-21583","","","347573","3877550","GW","false","" +"SA-0433","4A14W14.300","","197539","3761820","GW","true","" +"NM-15286","","","636476","3738780","GW","false","" +"NM-27167","","","315385","3790762","SP","true","" +"SM-2003","","","455095","3622721","M","true","" +"BW-0761","2.15.30.11.300","","615162","3933520","GW","true","" +"NM-19821","","","601486","3833260","GW","false","" +"NM-03904","M-007","","233195","3524850","GW","false","" +"BW-0216","14S9E27.422","","400568","3659300","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0143","","","665240","3977470","GW","false","" +"SB-0142","TWDB 4734401","","513702","3476559","GW","false","" +"NM-22938","","","637657","3893500","GW","false","" +"NM-17788","","","676936","3795410","GW","false","" +"NM-20539","","","597340","3847260","GW","false","" +"NM-26978","","","325504","3771790","GW","true","" +"NM-07602","","","319391","3606430","GW","false","" +"NM-16610","","","596462","3774730","GW","false","" +"SM-0170","","","471687","3645792","GW","true","Along Hwy 82, east of Mayhill, before Dunken turnoff. 1st site visit by Jeremiah Morse in June 2007" +"NM-10912","","","554484","3649080","GW","false","" +"NM-25263","","","411729","3965110","GW","false","" +"NM-24132","","","406079","3929020","GW","false","" +"QY-1031","12.33.17.234","","640029","3903560","SP","true","" +"NM-11951","","","630520","3666740","GW","false","" +"SD-0088","9N.6E.25.113","","385031","3871520","GW","true","" +"EB-511","","","418787","3938048","GW","true","" +"NM-08453","","","653062","3618820","GW","false","" +"WL-0348","","","663496","3753427","GW","true","Address is at X of S. Roosevelt RD L and S Roosevelt Rd 24. Heading SW on US-70 into Portales, turn left on NM-206S/S Avenue C and drive for 17 miles to Dora. Turn left on NM-114E drive for 6 miles and turn right on S Roosevelt Rd L. After 2 miles, house is on the right. Well is ~100 ft to SW from house under concrete blocks and metal plate.. " +"SA-0302","","","241516","3763043","GW","true","" +"NM-08520","","","617606","3619480","GW","false","" +"NM-20655","","","630802","3850910","GW","false","" +"NM-11519","","","640655","3661270","GW","false","" +"EB-327","","","398568","3942028","GW","true","East of CR56C; 570 ft East (97 deg) from CR56C and BLM boundary fence" +"TS-067","","","432640","4020569","SP","true","One of a series of small seeps with vegetative signatures that are located on west gorge wall between TJ Campground and the gaging station, a distance of one mile. " +"NM-22544","","","391401","3888150","GW","false","" +"NM-27260","","","334805","3572900","GW","false","" +"NM-14009","","","546238","3696280","GW","false","" +"HS-022","TC-022","","289799","3667695","GW","true","In the middle of the street in between Hay-Yo-Kay and The Palms Apartments" +"NM-15702","","","662622","3748650","GW","false","" +"NM-12882","","","548039","3682090","GW","false","" +"QY-0932","9.27.3.111","","584862","3877800","GW","true","" +"NM-14016","","","581729","3696670","GW","false","" +"NM-17728","","","637222","3793110","GW","false","" +"DE-0267","","","663094","3634523","GW","false","" +"NM-23215","","","375188","3898280","GW","false","" +"NM-08610","","","670413","3621750","GW","false","" +"SV-0098","41 Punta Linda","","380030","3901606","GW","false","Unit 3 Lot 144" +"NM-25251","","","417395","3964530","GW","false","" +"NM-16186","","","656886","3762850","GW","false","" +"TO-0004","1N11E14.14","","429727","3797110","GW","true","" +"NM-11049","","","281137","3653330","GW","false","" +"NM-21821","","","254208","3883490","GW","false","" +"NM-07526","","","671430","3605100","GW","false","" +"OG-0065","","","647047","3805839","GW","true","" +"NM-10474","","","674812","3645400","GW","false","" +"NM-28336","VAD-23","","442565","4004459","GW","false","" +"NM-12746","","","678875","3681770","GW","false","" +"NM-25056","","","661228","3953190","GW","false","" +"NM-12741","","","529551","3679520","GW","false","" +"NM-06322","","","195748","3584110","GW","false","" +"TS-079","","","437068","4080973","SP","true","Spring Set 1 below Cow Patty E side" +"NM-11949","","","397962","3666300","GW","false","" +"NM-06834","","","534940","3589500","GW","false","" +"NM-06368","","","566073","3580600","GW","false","" +"OG-0025","","","641009","3819455","GW","true","" +"AR-0203","PWSA003","","225462","4076140","GW","true","" +"NM-14645","","","664750","3714580","GW","false","" +"NM-27597","","","632026","3793370","GW","false","" +"NM-01152","","","365067","3866140","GW","false","" +"QY-0489","15.37.30.112","","676084","3930570","GW","true","" +"NM-14313","","","542163","3700720","GW","false","" +"BW-0915","1.7.2.31.140","","307078","3851000","SP","true","" +"NM-26219","","","654671","4032320","GW","false","" +"NM-17588","","","356295","3790520","GW","false","" +"NM-22099","","","629928","3883740","GW","false","" +"NM-03726","","","170280","3495490","GW","false","" +"NM-25705","","","142712","3996500","GW","false","" +"NM-25567","","","401975","3981570","GW","false","" +"NM-08077","","","662142","3613170","GW","false","" +"SD-0301","11N.7E.21.322","","390665","3891830","GW","true","" +"NM-17612","","","517496","3789720","GW","false","" +"NM-04154","","","342339","3537200","GW","false","" +"NM-21762","","","182286","3884880","GW","false","" +"NM-05702","","","223748","3571470","GW","false","" +"NM-15072","","","576864","3729950","GW","false","" +"NM-13286","","","546352","3688730","GW","false","" +"NM-22098","","","246198","3886330","GW","false","" +"NM-13855","","","544254","3695220","GW","false","" +"SM-0152","","","462342","3632204","GW","true","Miller Flats area. Site visit by Jeremiah Morse in May 2007" +"NM-10163","","","673649","3640630","GW","false","" +"NM-13741","","","528137","3694360","GW","false","" +"WS-021","","","384207","3634146","GW","true","" +"TO-0256","7N6E26.411","","382815","3852190","GW","true","" +"NM-21491","","","386633","3875260","GW","false","" +"NM-17839","","","614542","3796240","GW","false","" +"UC-0109","","","644597","4021722","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-23157","","","352449","3896980","GW","false","" +"TO-0106","4N9E11.112","","410572","3828520","GW","true","" +"NM-26248","","","253272","4038740","GW","false","" +"NM-08104","","","362886","3613260","GW","false","" +"NM-19915","","","600731","3834850","GW","false","" +"BW-0270","15S10E7.4","","405222","3654180","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06225","","","329646","3578930","GW","false","" +"NM-19941","","","567126","3834760","GW","false","" +"TO-0488","6N5E2.124","","373014","3849500","SP","true","" +"UC-0215","","","577264","4056977","GW","false","" +"SA-0440","5S12W5.440","","212517","3755020","GW","true","" +"NM-15173","","","562502","3733510","GW","false","" +"NM-16987","","","623873","3781210","GW","false","" +"NM-07687","","","285619","3608330","GW","false","" +"NM-22688","","","347527","3890520","GW","false","" +"NM-26402","","","586932","4058560","GW","false","" +"NM-01431","","","434646","3938120","GW","false","" +"SM-0245","","","483808","3640802","GW","true","Near Dunken Turnoff from Hwy 82" +"WL-0197","","","489061","3541118","GW","true","From junction of TX FR 1576 & NM CR G005, go west along FR 1576 0.5 miles and turn right, go 0.4 miles. Casing in open area 200 ft to east. Look for metal casing with weighted lid." +"SA-0122","","","227997","3754977","GW","true","From Datil, go 7 miles S on Hwy 12, turn E on county road. Go 11 miles, past 3 wells to Sheep well. From Sheep well, go SW 2.2 miles to Middle well. Gate combo is 2020." +"NM-12085","","","662222","3669830","GW","false","" +"NM-08952","","","655292","3626160","GW","false","" +"NM-05350","","","338789","3564880","GW","false","" +"NM-03448","","","655299","3900600","GW","false","" +"NM-09197","","","555045","3627430","GW","false","" +"NM-01976","","","636463","3548200","GW","false","" +"SM-0044","","","455211","3622931","GW","true","Take hwy 24 south of Weed (towards Pinon), about 12 miles, to ranch on right at 1234 (Ravens Wind B&B). Gate combo is 2001 if locked, close gate behind you. Well is by horst paddock near electric box on post." +"UC-0220","","","609322","4083643","GW","false","" +"NM-13913","","","544667","3695440","GW","false","" +"NM-07871","","","677098","3610590","GW","false","" +"NM-09779","","","665787","3635140","GW","false","" +"NM-25718","","","666422","3992310","GW","false","" +"NM-27273","","","638118","3586290","GW","false","" +"BW-0381","17S9E35.444","","407979","3628160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24130","","","343115","3929870","GW","false","" +"SB-0049","TWDB 4710501","","516903","3520621","GW","false","" +"NM-25420","","","401930","3973100","GW","false","" +"NM-10306","","","671998","3642880","GW","false","" +"QY-0239","11.30.3.431","","614226","3896300","GW","true","" +"NM-10719","","","549150","3646430","GW","false","" +"NM-18153","","","486639","3800770","GW","false","" +"NM-27421","","","641759","3658970","GW","false","" +"NM-07785","","","653165","3608810","GW","false","" +"NM-14309","","","575625","3700900","GW","false","" +"NM-10814","","","614170","3648610","GW","false","" +"NM-27958","","","573404","3848760","GW","false","" +"EB-282","","","413084","3949010","GW","true","Alto and La Madera Streets" +"NM-19228","","","183557","3826610","GW","false","" +"NM-04633","","","242043","3555260","GW","false","" +"NM-12829","","","654791","3682400","GW","false","" +"NM-10663","","","556578","3645920","GW","false","" +"NM-26897","PW-119","","374702","3908958","GW","true","" +"QY-0577","5.29.15.311","","604148","3835500","GW","true","" +"SB-0658","TWDB 4915406","","382185","3520174","GW","false","" +"TV-143","SWS-10","","439606","4025327","GW","true","From SR 68, take SR 96 west to Los Cordovas Road and turn right (north). Go 0.8 miles to Anadarko Rd. and turn left (west). Go 0.6 miles to Sage Meadow Road then to address (~0.4 miles at end of road). Watch for dog. Well around back of house; follow stone pathway." +"NM-09382","","","305711","3631250","GW","false","" +"NM-06653","","","568886","3585920","GW","false","" +"NM-12010","","","558297","3666930","GW","false","" +"BC-0068","52","","378720","3892390","GW","true","" +"NM-26881","PW-082","","373360","3912002","GW","true","" +"NM-21541","","","357558","3877060","GW","false","" +"NM-00123","","","464537","3557570","GW","false","" +"NM-08048","","","529731","3611250","GW","false","" +"NM-23054","","","379719","3894920","GW","false","" +"TO-0157","5N8E15.113","","399744","3836330","GW","true","" +"NM-25156","","","629769","3959150","GW","false","" +"BW-0740","4.21.29.18.130","","591765","3594000","GW","true","" +"TV-218","","","442074","4022809","GW","true","" +"NM-15545","","","133901","3749830","GW","false","" +"QU-504","","","439321","4057044","SP","true","Along Red River, just upstream from confluence of Rio Grande and Red River." +"QY-0687","6.28.36.232","","598569","3840660","GW","true","" +"QY-0787","7.31.18.244","","619631","3855110","GW","true","" +"NM-06031","","","601274","3573660","GW","false","" +"EB-402","","","403682","3928549","GW","true","" +"NM-06679","","","543257","3586330","GW","false","" +"NM-14945","","","148749","3731150","GW","false","" +"NM-14139","","","663298","3699790","GW","false","" +"NM-02306","","","331114","3575980","GW","false","" +"NM-03882","","","226937","3524090","GW","false","" +"NM-15374","","","664157","3741620","GW","false","" +"SB-0286","TWDB 4807502","","482697","3533246","GW","false","" +"NM-27153","PS-019","","369177","3909132","SP","true","" +"NM-27893","","","571264","3819700","GW","false","" +"BW-0149","11S10E17.422","","414475","3690680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09797","","","617870","3634510","GW","false","" +"TS-134","","","419882","4008797","SP","true","Series of spring-fed cienegas on west gorge wall near Rinconada." +"NM-23985","","","660050","3923460","GW","false","" +"NM-08889","","","411189","3624100","GW","false","" +"NM-10147","","","553890","3638880","GW","false","" +"CX-0170","S15","","558698","4096610","SP","true","West slope Barilla Mesa" +"NM-08866","","","561208","3623650","GW","false","" +"NM-23900","","","248182","3921960","GW","false","" +"NM-18240","","","675136","3804090","GW","false","" +"BC-0403","406","","","","GW","false","" +"NM-21514","","","671680","3876820","GW","false","" +"NM-10426","","","551867","3643120","GW","false","" +"SV-0139","32 Punta Linda","","379505","3901088","GW","false","Unit 3 Lot 154" +"NM-25495","","","472888","3976780","GW","false","" +"SB-0121","TWDB 4725901","","508810","3485298","GW","false","" +"NM-06420","","","365889","3582280","GW","false","" +"NM-08359","","","652249","3617520","GW","false","" +"NM-12532","","","557026","3676010","GW","false","" +"NM-02523","","","560690","3614720","GW","false","" +"NM-09858","","","561452","3634650","GW","false","" +"NM-03218","","","399219","3833810","GW","false","" +"NM-21413","","","382841","3872140","GW","false","" +"NM-21906","","","368701","3881640","GW","false","" +"SA-0135","","","271980","3697961","GW","true","On I25 north of T or C take Exit 89, turn left (south) on SR 181, right on SR 52 heading NW, veer right on SR 142 all the way to Monticello. This well is not at their home. From the Plaza in Monticello head north and look for house on west side w/a porch and a handicap ramp and white posts. There is a brown metal gate to the north which is entrance to herb farm (opposite Calle de Madera & between two rental casitas). Go west thru gate downhill past open barn and look for small adobe well house. Well is just south of well house @ ground level." +"DA-0027","20S2E35.244","","340199","3600100","GW","true","" +"TO-0139","5N8E4.343","","398552","3838430","GW","true","" +"NM-11157","","","649835","3654540","GW","false","" +"NM-17377","","","444014","3786080","GW","false","" +"NM-05947","","","673057","3572750","GW","false","" +"NM-02709","","","557280","3650200","GW","false","" +"NM-25095","","","143023","3961410","GW","false","" +"NM-23247","","","238234","3901820","GW","false","" +"UC-0222","","","624178","4005595","GW","false","" +"NM-17522","","","330232","3789880","GW","false","" +"NM-05541","","","159507","3571700","GW","false","" +"TO-0373","8N9E30.122","","405431","3862110","GW","true","" +"NM-17425","","","647817","3787970","GW","false","" +"NM-08192","","","305148","3615470","GW","false","" +"NM-03342","S172","","347556","3877400","GW","false","" +"NM-23196","","","364783","3899170","GW","false","" +"EB-151","","","411757","3950685","GW","true","North of transfer station, through corner gate ~100 ft, on east side of dirt track" +"QY-0253","11.30.35.241","","616322","3889110","GW","true","" +"NM-16079","","","381349","3758380","GW","false","" +"NM-21641","","","617435","3878270","GW","false","" +"SR-0031","","","442273","3954490","SP","true","Pecos Canyon region. from SR 63, climb Santa Fe NF road 646 about 3 miles to southernmost switchback overlooking Davis Cr, take logging road a mile or more to swampy valley bottom (Davis Cr.), take second logging road on right, climb to pink tape, walk south throuhg large aspen grove to next real stream, follow uphill to spring." +"NM-11118","","","564636","3652500","GW","false","" +"NM-08713","","","202615","3626530","GW","false","" +"NM-12290","","","672936","3673650","GW","false","" +"NM-24333","","","435648","3934610","GW","false","" +"NM-25609","","","408507","3983500","GW","false","" +"BC-0221","221","","377830","3892050","GW","true","" +"NM-13806","","","544074","3695000","GW","false","" +"PP-017","PW-15","","436419","4006181","GW","true","" +"NM-17916","","","550147","3796860","GW","false","" +"NM-07986","M-183","","231727","3614010","GW","false","" +"NM-09020","","","205229","3629410","GW","false","" +"NM-00748","","","473116","3697470","GW","false","" +"NM-27830","","","561565","3805830","GW","false","" +"NM-18053","","","628477","3800350","GW","false","" +"NM-17748","","","630484","3793870","GW","false","" +"TC-281","CO-28","","415239","4101426","GW","true","" +"TO-0551","9N8E12.3","","404710","3875090","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"SB-0366","TWDB 4807810","","482692","3530413","GW","false","" +"NM-03274","","","414371","3847740","GW","false","" +"NM-24777","","","458908","3944580","GW","false","" +"NM-23545","","","369521","3908590","GW","false","" +"NM-23963","","","401306","3921220","GW","false","" +"SB-0460","TWDB 4823202","","481031","3512528","GW","false","" +"NM-22611","","","383995","3889040","GW","false","" +"TO-0402","9N8E11.233","","403630","3875570","GW","true","" +"NM-02195","M-103","","240419","3568680","GW","false","" +"EB-460","","","398822","3939454","GW","true","" +"SB-0677","TWDB 4915514","","389107","3520774","GW","false","" +"NM-12311","","","635820","3673280","GW","false","" +"NM-26930","","","353154","3972277","GW","true","" +"NM-10433","","","218422","3647070","GW","false","" +"NM-14662","","","434560","3713360","GW","false","" +"MI-0308","","","485510","3912364","SP","true","Topographic situation: Edge of Plateau" +"SB-0337","TWDB 4807629","","484325","3533335","GW","false","" +"NM-21737","","","431376","3879310","GW","false","" +"QY-0597","5.29.20.133","","600895","3833910","GW","true","" +"NM-27401","","","128052","3641820","GW","false","" +"NM-10442","","","651805","3644650","GW","false","" +"WL-0264","","","349067","3574476","GW","true","From I-25 in Las Cruces, take Exit 1 for E. University Ave. Turn left on E. University towards Organ Mtns, which turns into Dripping Springs Rd. Follow for ~3.7 miles, go right on Soledad Canyon Rd, drive 0.5 miles, turn left to stay on Soledad Canyon Rd. Drive 3.5 miles and turn right onto Ladera Canyon Rd., drive 0.1 mi and turn left on Canyon de Oro, go 0.2 mi to second house on left @ address. Well in NE corner of backyard next to fence post." +"NM-25729","","","672201","3993720","GW","false","" +"NM-26439","","","223462","4065780","GW","false","" +"TC-408","","","436282","4092876","GW","true","On east rim of canyon" +"NM-26425","","","223409","4064920","GW","false","" +"NM-09447","","","639133","3631370","GW","false","" +"NM-14826","","","542283","3720560","GW","false","" +"NM-08264","","","296619","3616790","GW","false","" +"NM-19861","","","609600","3834090","GW","false","" +"NM-24067","","","404008","3926240","GW","false","" +"NM-21045","","","648583","3861200","GW","false","" +"TB-0108","","","434495","3713137","GW","true","Hwy 37 to Nogal. East on ?? Across arroyo to Right. Through gate. Well house is south side of house." +"NM-08938","","","555375","3624390","GW","false","" +"SV-0072","11 Osito","","377909","3899152","GW","false","Unit 3 Lot 51" +"TO-0555","9N8E14.1","","403056","3874300","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-04920","","","341505","3557880","GW","false","" +"NM-14904","","","528182","3722880","GW","false","" +"SB-0695","TWDB 4915607","","389677","3519968","GW","false","" +"AR-0178","E013","NMED 487","226583","4076690","GW","true","From Hwy 516, turn south onto Rd 350 and follow across river. Turn left onto Rd 3000, then turn left onto Rd 3302. Take first right in Rd and follow to address at end of Rd." +"TS-073","","","437865","4077691","SP","true","Sunshine Trail Spring 1" +"NM-18220","","","444161","3802190","GW","false","" +"NM-17505","","","635231","3789260","GW","false","" +"NM-07997","","","209438","3614730","GW","false","" +"NM-11971","","","147418","3672530","GW","false","" +"NM-06739","","","676355","3589170","GW","false","" +"NM-12081","","","558264","3668100","GW","false","" +"NM-02152","","","338825","3564050","GW","false","" +"BW-0277","15S10E14.422","","411972","3652670","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BC-0240","240","","377232","3884960","GW","true","" +"NM-28002","","","337295","3880770","GW","false","" +"NM-25472","","","599002","3974960","GW","false","" +"NM-00025","","","479620","3541950","GW","false","" +"PB-0010","","","378639","3937210","GW","true","Going N on Hwy 22 in Pena Blanca, turn W on Abrevadero Rd and proceed to address. Well is on S side of shed." +"NM-18658","","","596840","3809980","GW","false","" +"NM-10401","","","647761","3644090","GW","false","" +"NM-05850","","","253944","3573180","GW","false","" +"NM-13063","","","662451","3687150","GW","false","" +"NM-26945","PW-184","","367904","3909305","GW","true","" +"NM-24452","","","400205","3937740","GW","false","" +"NM-15966","","","205048","3758770","GW","false","" +"NM-13718","","","141241","3700720","GW","false","" +"NM-13322","","","484286","3689220","GW","false","" +"NM-24134","","","621030","3929410","GW","false","" +"NM-27008","","","291905","3776990","GW","true","" +"BW-0486","1S8E9.31","","397382","3788860","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11981","","","631700","3667620","GW","false","" +"NM-17731","","","641697","3793240","GW","false","" +"NM-04238","","","246005","3542620","GW","false","" +"TS-133","","","419882","4008797","SP","true","Series of spring-fed cienegas on west gorge wall near Rinconada." +"NM-28215","","","171196","4073630","GW","false","" +"NM-06061","M-126","","213888","3577760","GW","false","Take exit 68 on I-10 W of Deming, go north towards compressor station 2 miles, go right onto dirt at landfill entrance, go 2.3 miles, at Y go straight, NW, loop to N around white house, go north 1.3 miles to jxn with locked green gate on right. Well 0.2 miles NE beyond gate. Hatcher ranch house is west from green gate. Well is under green steel drum, unscrew bolts at base and tip over to access." +"SD-0155","10N.5E.15.432","","373430","3883700","GW","true","" +"NM-27175","","","483780","4064350","ES","true","" +"SB-0317","TWDB 4807607","","485951","3531917","GW","false","" +"CX-0033","28N27E29.2","","581940","4055230","GW","true","" +"NM-04351","","","136264","3550350","GW","false","" +"NM-14146","","","668877","3699920","GW","false","" +"NM-28100","","","229752","3907810","GW","false","" +"NM-27117","LLC-34","","446352","4032030","GW","false","" +"NM-25762","","","200681","3999730","GW","false","" +"NM-20928","","","401238","3856790","GW","false","" +"TB-0036","","","430716","3719961","GW","true","Off hwy 380, turn north on Snell Road, east of Carrizozo. Go about 1/2 mi north, straight through gate at bend in road. Follow road to old house, enter gate on east side of house. Well is in little well house." +"NM-21562","","","347731","3877400","GW","false","" +"SB-0676","TWDB 4915513","","389102","3520282","GW","false","" +"NM-19115","","","677822","3819990","GW","false","" +"NM-00763","","","445572","3699800","GW","false","" +"NM-02696","","","278232","3650990","GW","false","" +"NM-01913","","","119621","3544690","GW","false","" +"NM-03501","","","673489","3932890","GW","false","" +"HS-004","TC-004","","286627","3667063","GW","true","Continue east on broadway, just east of mesquite. Large fenced enclosure, building and pump in fence. Pump outside under awning w/control panel. 3005 Cook Street" +"NM-13510","","","410068","3691870","GW","false","" +"NM-24797","","","416786","3945090","GW","false","" +"NM-16132","","","574367","3759500","GW","false","" +"NM-19578","","","549669","3828860","GW","false","" +"SA-0495","4S16W35.132","","177687","3758520","GW","true","" +"NM-25998","","","405891","4010250","GW","false","" +"BC-0246","246","","377221","3892190","GW","true","" +"AS-034","ES-126","","451311","4042190","GW","true","" +"EB-636","","","402980","3955400","GW","true","" +"SM-0249","","","451012","3640757","GW","true","" +"NM-18876","","","664085","3814830","GW","false","" +"NM-24056","","","336502","3926600","GW","false","" +"NM-28060","","","355570","3893580","GW","false","" +"SM-0080","","","452568","3649763","GW","true","1023 Sixteen Springs Rd, on north side of road, 1.1 mi past Walker Canyon cattleguard." +"AB-0189","S240","","362695","3894880","GW","true","" +"NM-07533","","","677844","3605310","GW","false","" +"NM-18596","","","134438","3815170","GW","false","" +"SD-0254","11N.5E.25.411","","376360","3890470","GW","true","" +"NM-12813","","","594538","3681200","GW","false","" +"QY-0432","13.32.4.311","","631171","3916350","GW","true","" +"SB-0745","TWDB 4924403","","395397","3505712","GW","false","" +"RA-079","","","393308","4010056","GW","true","In front of house." +"NM-17210","","","322620","3785340","GW","false","" +"NM-07867","","","651738","3610050","GW","false","" +"NM-09389","","","562212","3629630","GW","false","" +"TS-115","","","436022","4042296","SP","true","Located on west side, near river." +"NM-20962","","","395304","3857660","GW","false","" +"NM-25591","","","409852","3982780","GW","false","" +"NM-28202","","","627359","4054870","GW","false","" +"NM-14706","","","649117","3716330","GW","false","" +"NM-03398","","","391446","3889810","GW","false","" +"SV-0110","21 Via Entrada","","379957","3898396","GW","false","Unit 2 Lot 90" +"NM-10275","","","279142","3643110","GW","false","" +"NM-15742","","","548533","3747910","GW","false","" +"NM-17225","","","647754","3785470","GW","false","" +"NM-13475","","","621264","3691940","GW","false","" +"NM-21231","","","536651","3867580","GW","false","" +"NM-25453","","","391438","3974210","GW","false","" +"NM-00396","","","644396","3631310","GW","false","" +"SB-0657","TWDB 4915405","","383901","3520801","GW","false","" +"NM-27013","","","325079","3782000","GW","true","" +"SA-0310","","","232674","3727054","GW","true","" +"GT-012","SWNM14-2","","218772","3605877","SP","true","located on north side of Highway 61" +"WL-0146","","","368090","3911554","GW","true","From I-25, take NM-165 east thru Placitas ~6.8 miles. Turn left (north) onto Camino de Las Huertas. Road has lots of curves and roads that connect, but stay on Camino de Las Huertas for 2.7 miles. Camino de Las Huertas then turns right (east), but you go straight (north) onto Palomino Road. Just after the start of Palomino Road, turn left (west) onto Camino de la Questa del Aire, drive 0.4 mile, then turn right (north) onto Ocotillo (large stone sign). Drive to the end of the road, Hitchens house to north east, well at the end of the road in front yard." +"TB-0237","","","431371","3716954","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and take the road going north across the cattle guard in front of the HQ. Follow road to west 2 miles and at crossroads turn north and go 0.2 miles and turn to east before cattle guard. Follow road to east and look for pens to north. Casing is under windmill." +"NM-17649","","","671213","3792220","GW","false","" +"SD-0142","10N.5E.11.234","","374997","3885880","GW","true","" +"NM-07184","","","226060","3599550","GW","false","" +"MI-0145","","","503565","3935418","GW","true","Topographic situation: Plains" +"NM-12862","","","139490","3688440","GW","false","" +"NM-14692","","","548445","3714700","GW","false","" +"NM-23540","","","370468","3908540","GW","false","" +"NM-09218","","","559831","3627650","GW","false","" +"NM-18632","","","622273","3809540","GW","false","" +"NM-15841","","","655556","3751640","GW","false","" +"BW-0451","19S10E3.314","","414794","3616540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12319","","","653504","3673790","GW","false","" +"NM-22901","","","376983","3892710","GW","false","" +"SB-0717","TWDB 4916201","","398291","3524128","GW","false","" +"NM-08490","","","193017","3623030","GW","false","" +"AR-0110","A011","","244588","4097170","GW","true","From Cedar Hill take Hwy 550 toward CO border. Take right onto Rd 2105 then right onto frontage and then left onto 2093 and follow to address. Well is outside of two sheds under black and grey plastic cover. Needed shovel to dig out." +"NM-19160","","","570171","3819260","GW","false","" +"SB-0667","TWDB 4915504","","387821","3520973","GW","false","" +"NM-18052","","","653715","3800480","GW","false","" +"NM-25276","","","587362","3965680","GW","false","" +"TB-1020","","","433002","3715363","SP","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and turn south at the equipment shed. Follow road on east side of shed to west gate( No Trespassing) to south. Follow road to south east to arroyo crossing and look in trees on west side of arroyo. Currently dry but soils were moist. Watch for BULLS." +"NM-21120","","","654499","3864310","GW","false","" +"NM-07314","","","570361","3599080","GW","false","" +"UC-0064","","","673617","4038014","GW","true","elv 4709 acc to USGS" +"AB-0162","S211","","359661","3899920","GW","true","" +"NM-23685","","","229731","3914690","GW","false","" +"NM-12525","","","673007","3676920","GW","false","" +"NM-12182","","","652167","3671460","GW","false","" +"NM-14256","","","581806","3699780","GW","false","" +"NM-13275","","","536710","3688540","GW","false","" +"NM-22369","","","647306","3886750","GW","false","" +"NM-17226","","","559558","3784100","GW","false","" +"NM-01107","S083","","351507","3855530","GW","false","" +"NM-20091","","","245443","3840830","GW","false","" +"NM-23023","","","287788","3896020","GW","false","" +"NM-07248","","","575226","3597450","GW","false","" +"NM-18857","","","613320","3813060","GW","false","" +"NM-18054","","","659401","3800630","GW","false","" +"NM-17249","","","645906","3785720","GW","false","" +"PC-015","PW-028","","368963","3907874","GW","true","" +"OG-0048","","","646611","3814682","GW","true","" +"AS-067","VAL-2","","447904","4044010","GW","true","" +"NM-15855","","","645967","3751920","GW","false","" +"AS-027","ES-9","","451871","4042130","GW","true","" +"NM-22892","","","375464","3892630","GW","false","" +"BW-0022","22S4E13.333","","359395","3584420","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22948","","","607476","3893250","GW","false","" +"NM-27186","","","328404","3759390","D","true","" +"SM-0234","","","451517","3634745","GW","true","1806 Rio Penasco Rd (Hwy 130). South of Mayhill. By mile marker 18, south side of road, white steel house. Well is buried in driveway, spigot right by well." +"NM-08939","","","640019","3625710","GW","false","" +"NM-28220","","","171519","4074290","GW","false","" +"UC-0014","","","660580","4030483","GW","false","" +"NM-25245","","","661434","3965310","GW","false","" +"NM-01502","","","469514","3957140","GW","false","" +"NM-19006","","","617443","3815940","GW","false","" +"NM-13923","","","542910","3695430","GW","false","" +"NM-00672","","","488856","3688700","GW","false","" +"ED-0194","22S26E11.443","","569847","3585210","GW","true","" +"NM-09735","","","193336","3637510","GW","false","" +"NM-21400","","","345857","3872590","GW","false","" +"BW-0677","2.7.11.34.311","","429856","3848830","GW","true","" +"TB-0186","","","418105","3718105","GW","true","Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to windmill." +"NM-04723","M-065","","237206","3556663","GW","false","" +"NM-26092","","","475266","4020000","GW","false","" +"NM-23322","","","387980","3900080","GW","false","" +"TB-0189","","","413006","3714002","GW","true","Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill south to right fork before windmill, through gate to windmill." +"NM-04242","","","160190","3545820","GW","false","" +"NM-20517","","","577336","3846700","GW","false","" +"DE-0106","","","672820","3616219","GW","false","" +"SA-0194","","","247529","3762792","GW","true","Take Hwy 60, south on Hwy 52. To mile marker 79.7 (Bruton WM 1/Fox Water well) west to Bruton White WM. North thru gate and take 2nd gate (north one of two), to west thru pen and follow to WM." +"DA-0127","25S4E18.244","","352241","3556500","GW","true","" +"NM-27655","","","621546","3794770","GW","false","" +"NM-06539","","","297578","3585590","GW","false","" +"NM-22484","","","356994","3887950","GW","false","" +"NM-14836","","","541895","3720860","GW","false","" +"NM-18226","","","670465","3803730","GW","false","" +"BC-0420","423","","376796","3890361","GW","false","" +"MI-0280","","","496513","3955862","GW","true","Topographic situation: Valley" +"EB-144","","","413750","3948232","GW","true","In driveway of ""Papa John's"", NE corner of Cordova and St. Francis" +"RA-069","","","420994","4006581","GW","true","In yard next to shed and RV." +"NM-16914","","","590139","3779510","GW","false","" +"NM-14197","","","543748","3698670","GW","false","" +"NM-18795","","","572296","3811630","GW","false","" +"NM-26519","","","214451","4068330","GW","false","" +"NM-00379","","","442378","3627970","GW","false","" +"NM-06000","","","335737","3573870","GW","false","" +"NM-27148","","","332938","3833282","GW","true","" +"NM-01379","","","475575","3923740","GW","false","" +"NM-06236","","","531870","3577850","GW","false","" +"NM-19720","","","256605","3834210","GW","false","" +"NM-02337","","","154291","3583260","GW","false","" +"NM-11952","","","289583","3668090","GW","false","" +"NM-12251","","","520150","3670870","GW","false","" +"NM-02058","","","233885","3558370","GW","false","" +"SB-0495","TWDB 4835701","","430974","3474592","GW","false","" +"DE-0127","","","672817","3616202","GW","false","" +"NM-10975","","","560084","3650070","GW","false","" +"NM-19425","","","673641","3827980","GW","false","" +"NM-26466","","","583318","4062530","GW","false","" +"NM-24649","","","412406","3942110","GW","false","" +"BW-0502","7S8E29.144","","394961","3726570","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18698","","","620697","3811030","GW","false","" +"NM-19216","","","626881","3821740","GW","false","" +"NM-17633","","","526627","3790140","GW","false","" +"NM-02484","","","555523","3606540","GW","false","" +"NM-20347","","","587623","3842420","GW","false","" +"NM-20966","","","455514","3857450","GW","false","" +"NM-07681","","","556128","3606130","GW","false","" +"QU-169","","","444967","4070036","GW","true","" +"NM-11972","","","554802","3666360","GW","false","" +"NM-09518","","","640092","3631570","GW","false","" +"NM-02304","","","156650","3580220","GW","false","" +"SV-0137","06 La Cantera","","379805","3898959","GW","false","Unit 2 Lot 87" +"PP-081","PS-93","","435391","4004674","SP","true","" +"SB-0174","TWDB 4743701","","526394","3458112","GW","false","" +"BW-0324","16S10E5.342","","411571","3644530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TS-052a","","","435150","4040574","SP","true","South pool on east side of river." +"NM-14569","","","623019","3710350","GW","false","" +"NM-07765","","","285150","3609570","GW","false","" +"NM-01534","","","581457","3973170","GW","false","" +"NM-15744","","","164076","3753750","GW","false","" +"NM-11937","","","664206","3667430","GW","false","" +"NM-20445","","","582517","3844560","GW","false","" +"BW-0097","8S11E3.324","","426535","3722620","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08165","","","663656","3614620","GW","false","" +"QY-0560","5.28.1.111","","597603","3839390","GW","true","" +"NM-22863","","","376378","3892210","GW","false","" +"NM-09725","","","678513","3634710","GW","false","" +"NM-12731","","","552218","3679520","GW","false","" +"PB-0005","","","377559","3937101","GW","true","Going south on Hwy 22 from post office in Pena Blanca, turn W on Abrevadero, then S on Acequia and continue to address (first home/drive on right). Home on corner. Well is thru gate at end of drive (past two other homes). Well is in pasture next to donkey corral. Raymond owns part of East Cochiti drain land. Water table 3' down near drain area." +"NM-09530","","","551724","3630740","GW","false","" +"NM-07437","M-171","","185295","3606720","GW","false","From junction of Hwy 90 and White Water Road, go east on White Water Road for 0.8 miles. Continue straight/right at the fork and go 0.2 miles to a second fork. Go right and follow the road another 0.5 miles to the residence. Park near house. Well located on far side of the yard near abandoned windmill. Access on foot via the corner gate." +"NM-16414","","","639487","3771450","GW","false","" +"EB-584","","","407524","3949892","GW","true","Take 599 to Sierra Azul, left onto Sierra Rosa, right onto Cielo Rosado. #6 at end on left. Well at end of driveway." +"DA-0197","20S2E35.14","","339467","3600110","GW","true","" +"NM-19571","","","420045","3828920","GW","false","" +"NM-16802","","","668685","3779110","GW","false","" +"QY-0130","10.36.21.223","","671071","3883700","GW","true","" +"NM-13192","","","552874","3687380","GW","false","" +"NM-09932","","","221249","3639430","GW","false","" +"NM-15772","","","678165","3750530","GW","false","" +"BW-0332","16S10E29.3","","411327","3638280","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SD-0043","7N.8E.6.212","","395921","3858400","GW","true","" +"BW-0702","4.3.17.7.110","","481232","3769310","GW","true","" +"NM-03408","","","608808","3891880","GW","false","" +"NM-25972","","","414275","4007260","GW","false","" +"SO-0082","4N1W28.44","","321580","3823570","GW","true","" +"SB-0448","TWDB 4816702","","491321","3515654","GW","false","" +"NM-08643","","","661527","3622100","GW","false","" +"NM-08536","","","409743","3619650","GW","false","" +"NM-15045","","","562301","3728770","GW","false","" +"NM-04513","","","395922","3549450","GW","false","" +"NM-21754","","","237205","3883070","GW","false","" +"AH-096","HM-20","","439231","4041765","GW","true","" +"NM-13205","","","139391","3694150","GW","false","" +"NM-20501","","","202734","3850410","GW","false","" +"NM-17662","","","257564","3793640","GW","false","" +"NM-17336","","","650194","3786590","GW","false","" +"NM-25714","","","620066","3991060","GW","false","" +"NM-23058","","","665984","3895700","GW","false","" +"NM-05994","","","264563","3574870","GW","false","" +"QY-0939","9.28.22.244","","595702","3872710","GW","true","" +"NM-12282","","","557854","3671670","GW","false","" +"NM-21706","","","668044","3880120","GW","false","" +"SA-0488","3S7W8.213","","261492","3772510","GW","true","" +"NM-06604","","","547025","3584990","GW","false","" +"SM-0237","","","452646","3635627","GW","true","1914 Rio Penasco Rd. - South of Mayhill near Curtis Canyon. Go to 2nd driveway, well casing visible in front of house (by little black statue). Well casing stickup next to garage." +"EB-149","","","404388","3947589","GW","true","NE corner of landfill near gate; keys available from Souder-Miller, or Dan Fuqua / Don Beardsley at Solid Waste Bureau" +"NM-20398","","","233310","3846850","GW","false","" +"NM-16431","","","656888","3772000","GW","false","" +"NM-16872","","","679834","3780300","GW","false","" +"TO-0058","3N15E28.441b","","466211","3812170","GW","true","" +"NM-13233","","","559567","3688000","GW","false","" +"SA-0481","5S13W8.310","","202093","3754120","SP","true","" +"SV-0138","19 La Cantera","","380090","3899253","GW","false","" +"NM-08742","","","230867","3625630","GW","false","" +"NM-27160","PS-008","","371045","3910035","SP","true","From post office in Placitas, go east on 165, then left on Camino del Tecolote, then left on Camino de la Rosa Casilla. Spring to left of main road." +"NM-13927","","","554044","3695520","GW","false","" +"SB-0406","TWDB 4812501","","447968","3519354","GW","false","" +"NM-15563","","","163474","3749110","GW","false","" +"NM-03040","","","638801","3790280","GW","false","" +"NM-06750","","","364117","3588720","GW","false","" +"NM-19157","","","614920","3819860","GW","false","" +"NM-24891","","","410744","3947030","GW","false","" +"NM-19770","","","652112","3833610","GW","false","" +"NM-07788","","","598110","3608150","GW","false","" +"NM-15134","","","655338","3733490","GW","false","" +"ED-0382","25S25E35.442","","560483","3549750","SP","true","" +"NM-16484","","","653663","3773240","GW","false","" +"BW-0206","14S9E26.412","","401794","3659280","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04449","","","242413","3550200","GW","false","" +"QY-0005","10.27.11.314","","586354","3885080","GW","true","" +"NM-08186","","","550355","3613610","GW","false","" +"NM-14449","","","672086","3706880","GW","false","" +"NM-00099","","","490079","3553050","GW","false","" +"NM-19754","","","186231","3836950","GW","false","" +"TC-370","","","443042","4078066","GW","true","" +"NM-19008","","","631856","3816200","GW","false","" +"NM-26980","","","323704","3791900","GW","true","" +"NM-18567","","","654916","3808780","GW","false","" +"NM-26055","","","312533","4018140","GW","false","" +"NM-16286","","","218334","3769750","GW","false","" +"NM-07049","","","362859","3594160","GW","false","" +"NM-08923","","","627011","3625290","GW","false","" +"BW-0141","11S10E5.330","","413888","3694090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04933","","","267952","3559390","GW","false","" +"NM-23813","","","405561","3915690","GW","false","" +"RA-002","","","420826","4006235","GW","true","In pit east of house. Call or text for appointment." +"NM-06110","","","326282","3576490","GW","false","" +"SM-4018","","","435908","3631971","PS","true","Stream flow measurement by Patrick Walsh" +"EB-662","","","407765","3939546","GW","true","" +"NM-21150","","","417029","3864520","GW","false","" +"NM-07676","","","651601","3607030","GW","false","" +"WL-0152","","","356540","3963133","GW","true","From intersection of HWY 550 and HWY 4 in San Ysidro drive north on Hwy 4 for 33.3 miles. Turn right on Forest Road 10 and follow for 1.1 miles, then turn left on Aspen Grove. Follow for 0.25 mile and well will be visible on left." +"ED-0083","20S31E13.44","","611113","3604010","GW","true","" +"NM-14665","","","549096","3713380","GW","false","" +"SD-0086","9N.6E.22.434","","382935","3872140","GW","true","" +"SA-0062","SA-62_R00","","208650","3745050","GW","true","From Datil, take Hwy 12 south past mile marker 66, then take road to left 8.6 miles to ranch HQ. 4.4 miles WSW of Farr Ranch Headquarters. Two WMs at this site, measure westernmost WM. Large trees E of this WM, dirt tank W of WM, both wells in fenced area." +"NM-27193","","","398229","3855664","GW","false","" +"UC-0066","","","659900","4007814","GW","true","elv 4790 acc to USGS" +"NM-02885","","","654284","3723800","GW","false","" +"NM-23617","","","397742","3909420","GW","false","" +"NM-16984","","","667993","3781930","GW","false","" +"NM-13975","","","544639","3695720","GW","false","" +"NM-17927","","","610356","3797410","GW","false","" +"NM-04514","","","546040","3549050","GW","false","" +"NM-13428","","","676843","3692390","GW","false","" +"EB-077","","","415810","3955990","GW","true","" +"DE-0295","","","674853","3570889","GW","false","" +"NM-03168","","","637961","3820940","GW","false","" +"NM-22050","","","381893","3883090","GW","false","" +"NM-12066","","","657390","3668950","GW","false","" +"BW-0427","18S9E10.443","","406403","3624730","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03295","","","407414","3855900","GW","false","" +"NM-27827","","","571044","3805120","GW","false","" +"TS-132","","","423544","4010492","SP","true","Series of spring-fed cienegas on west gorge wall near Souse Hole." +"NM-19631","","","542176","3829780","GW","false","" +"NM-25772","","","403658","3995730","GW","false","" +"QY-0416","12.35.7.234a","","657707","3905560","GW","true","" +"NM-20551","","","426192","3847680","GW","false","" +"NM-05354","","","237494","3567060","GW","false","" +"MI-0013","","","467267","3892046","GW","true","Topographic situation: Swale on mesa" +"NM-22430","","","386348","3886940","GW","false","" +"NM-22402","","","413962","3886330","GW","false","" +"NM-04488","","","605879","3548540","GW","false","" +"DE-0175","","","672940","3618715","GW","false","" +"NM-08124","","","559946","3612800","GW","false","" +"NM-04632","","","340253","3553250","GW","false","" +"NM-20694","","","141418","3857780","GW","false","" +"NM-27698","","","646761","3796520","GW","false","" +"NM-03953","M-012","","220314","3527380","GW","false","" +"TV-193","SW-15","","441972","4023344","GW","true","From SR 96, make right onto Vista del Ocaso just past National Guard on left. 5th house on right. Latilla fence near propane tank, well behind that." +"NM-18063","","","656963","3801210","GW","false","" +"NM-14814","","","428010","3720210","GW","false","" +"NM-12172","","","555456","3669870","GW","false","" +"NM-00804","","","450607","3710600","GW","false","" +"NM-08311","","","671307","3616780","GW","false","" +"NM-03365","","","245976","3884810","GW","false","" +"NM-08948","","","189922","3629140","GW","false","" +"DA-0046","22S3W16.343","","297274","3585680","GW","true","" +"SA-0025","SA-25_R00","","218121","3775700","GW","true","From NM 12, take Greens Gap Rd. W about 5.8 mi, turn N then go about 3 miles. Turn E at metal gate and go 1 mile. Well in pit 20 yards WSW of metal storage tank, and about 3 ft N of pipe fence. 10 Ft SSW of power pole with control box. Hard black plastic cover over well. Call owner for gate combo (1776 in 2016)." +"NM-18662","","","672222","3811040","GW","false","" +"TO-0112","4N11E22.132","","428324","3824670","GW","true","" +"TC-296","TV-514","","454864","4032809","PS","true","Location at USGS gage 08269000" +"TB-1058","","","425922","3703456","SP","true","Site visit by Fraser and Cathy Goff. NPW10-1" +"NM-01866","","","347261","3532690","GW","false","" +"NM-05836","","","256323","3573000","GW","false","" +"NM-13186","","","139691","3693860","GW","false","" +"NM-00903","","","152598","3797100","GW","false","" +"NM-24586","","","651775","3941400","GW","false","" +"TO-0141","5N8E5.311","","396541","3838920","GW","true","" +"TB-0138","","","409882","3635273","GW","true","Hwy 54 south of Alamogordo - Check map. Well is at corner of Dr. Martin Luther King Jr and Hamilton Road. Vacant house there." +"NM-06158","","","649069","3577390","GW","false","" +"NM-16183","","","619461","3761560","GW","false","" +"NM-00613","","","655315","3668070","GW","false","" +"NM-03678","","","670085","4087830","GW","false","" +"NM-04879","","","675940","3557490","GW","false","" +"MI-0233","","","467930","3954178","GW","true","Topographic situation: Broad, shallow valley" +"NM-05420","","","136117","3571160","GW","false","" +"NM-19747","","","589378","3831990","GW","false","" +"NM-27915","","","562162","3827210","GW","false","" +"ED-0325","24S25E5.443","","555464","3567260","GW","true","" +"NM-21049","","","671111","3862510","GW","false","" +"OG-0077","","","651722","3807497","GW","true","" +"NM-01235","","","624292","3891070","GW","false","" +"NM-13719","","","548548","3694230","GW","false","" +"NM-20342","","","600265","3842520","GW","false","" +"NM-00711","","","438260","3695130","GW","false","" +"SB-0261","TWDB 4807401","","478760","3533592","GW","false","" +"NM-13952","","","544537","3695620","GW","false","" +"NM-27546","","","651178","3792240","GW","false","" +"SA-0163","","","253951","3722681","GW","true","From the town of Dusty, take 52 south 0.8 miles. Look to east (L) for remains of school house foundation. Well located north of ruins of school house, about 200 ft. Look for steel casing with coffee can cover sticking up through scrub, and pieces of old windmill. Casing is low to ground and hard to see." +"NM-25753","","","529910","3993860","GW","false","" +"NM-15509","","","162287","3748320","GW","false","" +"NM-02348","","","329169","3580110","GW","false","" +"NM-12652","","","278220","3680430","GW","false","" +"TO-0224","6N8E9.112","","398509","3847800","GW","true","" +"NM-05505","","","263260","3568430","GW","false","" +"NM-03545","","","571035","3964800","GW","false","" +"NM-12316","","","662723","3673970","GW","false","" +"NM-18521","","","654272","3808040","GW","false","" +"TO-0365","8N9E7.211","","405710","3867080","GW","true","" +"NM-04297","","","145261","3548060","GW","false","" +"SB-0345","TWDB 4807704","","478621","3530236","GW","false","" +"NM-25915","","","612042","4004020","GW","false","" +"NM-06034","","","227483","3576850","GW","false","" +"NM-20482","","","627110","3845900","GW","false","" +"NM-14424","","","550847","3704030","GW","false","" +"NM-13273","","","552454","3688610","GW","false","" +"NM-19143","","","568799","3818570","GW","false","" +"NM-13897","","","555800","3695500","GW","false","" +"NM-16769","","","593310","3777350","GW","false","" +"NM-22548","","","648994","3888810","GW","false","" +"NM-21937","","","340689","3882270","GW","false","" +"NM-21972","","","373777","3882300","GW","false","" +"CX-0136","47","","517847","4033410","GW","true","7 3/4 miles southeast of Cimarron" +"WL-0216","","","307393","3780577","GW","true","From US 60, just east of Magdalena, take La Hinca Rd on north side of road and follow for 5.5 miles to ranch HQ at end of road. From ranch headquarters, take right around ranch HQ @ fence frame next to driveway on right. Follow faint 2-track to northeast 1/2 mile to windmill along section fence. New solar well is 25 ft to northeast of East Windmill (aka WL-0126)." +"NM-17050","","","656624","3783270","GW","false","" +"NM-11792","","","562849","3664070","GW","false","" +"NM-22302","","","345797","3886130","GW","false","" +"NM-22912","","","377895","3892790","GW","false","" +"NM-26176","","","444890","4026770","GW","false","" +"NM-15500","","","133441","3749260","GW","false","" +"EB-193","","","416322","3958235","GW","true","25 Arroyo Pequeno: E thru stop sign @Bishop's Lodge Rd & Tesuque Market Rd onto Arroyo Griego, take 2nd L at Arroyo Pequeno; stay R at forks to #25 on L; up drive as far as you can go, up path to sitting area; well is uphill in wellhouse, back from front door" +"NM-08066","","","554663","3611760","GW","false","" +"NM-10181","","","281735","3641610","GW","false","" +"ED-0052","19S27E14.242a","","570981","3614310","GW","true","" +"NM-07575","","","640020","3605350","GW","false","" +"NM-13894","","","545364","3695410","GW","false","" +"NM-09050","","","561769","3625500","GW","false","" +"NM-04187","","","245956","3540650","GW","false","" +"AS-021","ES-1","","450368","4042260","GW","true","" +"SD-0019","7N.6E.36.211","","384454","3851450","GW","true","" +"NM-05355","","","235530","3567110","GW","false","" +"BW-0824","2.6.11.19.234","","424733","3843900","GW","true","" +"NM-03042","","","669107","3790970","GW","false","" +"QY-0178","11.30.12.33","","616753","3894660","GW","true","" +"NM-14168","","","547701","3698320","GW","false","" +"BW-0943","","","670677","3554329","GW","true","" +"NM-08132","","","256186","3615760","GW","false","" +"NM-25880","","","642425","4002740","GW","false","" +"NM-05095","","","262977","3561940","GW","false","" +"NM-02853","","","552897","3711400","GW","false","" +"NM-00273","","","667529","3600200","GW","false","" +"SB-0341","TWDB 4807633","","487557","3535332","GW","false","" +"NM-19367","","","615740","3825660","GW","false","" +"NM-09026","","","560730","3625280","GW","false","" +"BW-0241","14S10E20.221","","407107","3661640","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-1016","","","235800","3749337","SP","true","Hwy 60 to Rt 52 south from VLA. Go about 22 mi south. South of MM 67 to Jct with 163, take 163 west 3.7 miles to fork at Luera Ranch entrance. From HQ, east, turn south and go thru pipe gate. At 1.2 mi stay to right on main track. Thru green gate @ 1.6 mi. at 8.5 mi take left fork just before dirt tank.. At 9.7 mi, just up hill from old homstead stay left and cress hill. Park by corrugated metal tank. Spring is 3/4 mi north of outlet at tank." +"NM-19262","","","546900","3822310","GW","false","" +"NM-08589","","","406703","3620360","GW","false","" +"NM-13064","","","552962","3685440","GW","false","" +"NM-03881","","","166796","3525830","GW","false","" +"NM-07187","","","663237","3597260","GW","false","" +"NM-08123","","","668774","3614020","GW","false","" +"NM-03810","","","234109","3521530","GW","false","" +"NM-06563","","","577545","3584380","GW","false","" +"TO-0286","7N8E11.132","","401792","3857060","GW","true","" +"NM-18104","","","519137","3800220","GW","false","" +"NM-03223","","","332412","3835540","GW","false","" +"NM-07377","","","664367","3601570","GW","false","" +"NM-16652","","","548395","3774950","GW","false","" +"NM-26298","","","409516","4041730","GW","false","" +"NM-08790","","","653730","3624470","GW","false","" +"NM-23607","","","359737","3909690","GW","false","" +"SB-0558","TWDB 4854408","","464399","3449241","GW","false","" +"QU-056","","","446068","4066463","GW","true","From Hwy 522, take Rt 378 left toward Cerro. Follow a gravel road forking left instead of curving right with the road. Coming to an intersection, take a right and then immediate left between a grey house and a peach/red trailer. Two well casings are visible on left; this is the northern of two wells." +"NM-04439","","","548384","3546780","GW","false","" +"NM-11569","","","643421","3661900","GW","false","" +"AR-0507","","","235724","4084610","PS","true","Access via irrigation ditch path County Road 2800" +"NM-25499","","","211420","3982030","GW","false","" +"NM-19193","","","647743","3821650","GW","false","" +"NM-14439","","","546223","3704810","GW","false","" +"QY-0244","11.30.30.333","","608767","3889620","GW","true","" +"NM-00987","","","671270","3818190","GW","false","" +"NM-21877","","","348434","3881670","GW","false","" +"NM-05584","","","233119","3570110","GW","false","" +"NM-17348","","","650798","3787220","GW","false","" +"SB-0305","TWDB 4807523","","481017","3533464","GW","false","" +"NM-25038","","","604092","3951410","GW","false","" +"BW-0356","17S9E23.431","","407603","3631420","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26204","","","448997","4030230","GW","false","" +"NM-04451","","","236748","3550410","GW","false","" +"NM-19512","","","532990","3827490","GW","false","" +"NM-03836","","","224257","3522310","GW","false","" +"NM-19814","","","558534","3832760","GW","false","" +"NM-19717","","","575963","3831280","GW","false","" +"NM-28284","148521","","204134","3647373","SP","false","Gila National Forest" +"NM-01744","","","166877","3487370","GW","false","" +"NM-08347","","","190841","3620970","GW","false","" +"BW-0066","26S5E33.4","","364699","3541510","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19403","","","636499","3826680","GW","false","" +"NM-22371","","","628952","3886470","GW","false","" +"NM-07819","","","617440","3609280","GW","false","" +"NM-06278","","","229362","3582450","GW","false","" +"NM-01839","","","344972","3527210","GW","false","" +"NM-06348","","","578282","3580320","GW","false","" +"RA-013","","","394465","4003212","GW","true","In pit where driveway meets road." +"EB-123","SF-49","","414198","3949035","GW","true","SE corner of Paseo de Peralta and Guadalupe Street" +"NM-00266","","","553961","3594540","GW","false","" +"NM-05883","","","308255","3572350","GW","false","" +"NM-21781","","","346544","3880870","GW","false","" +"NM-00972","","","542568","3811860","GW","false","" +"NM-13662","","","440524","3693510","GW","false","" +"NM-06375","","","566177","3580690","GW","false","" +"NM-09112","","","203886","3630680","GW","false","" +"QY-0847","8.27.36.444","","589041","3858920","GW","true","" +"NM-25680","","","238317","3991300","GW","false","" +"NM-10269","","","648910","3641990","GW","false","" +"NM-05056","","","681499","3560300","GW","false","" +"NM-11896","","","556000","3665260","GW","false","" +"NM-20064","","","578512","3837040","GW","false","" +"NM-17185","","","625878","3784540","GW","false","" +"NM-20012","","","396308","3836240","GW","false","" +"NM-23134","","","350627","3896700","GW","false","" +"NM-22186","","","375150","3884530","GW","false","" +"NM-10909","","","278573","3651360","GW","false","" +"NM-20597","","","639596","3849340","GW","false","" +"DE-0290","","","673539","3584357","GW","false","" +"BW-0420","17S10E31.444","","411231","3626800","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06560","","","360721","3584920","GW","false","" +"DA-0071","23S4W18.111","","283762","3577550","GW","true","" +"EB-290","","","409264","3956135","GW","true","La Tierra Lot 115, #22 Vuelta Herradura, last lot on right before end of Vuelta Herradura" +"NM-15804","","","671886","3750970","GW","false","" +"NM-15129","","","666494","3733000","GW","false","" +"NM-26810","","","161710","3654100","GW","true","" +"NM-16771","","","677328","3778710","GW","false","" +"SA-0513","5S15W22.314","","185509","3751450","SP","true","" +"SD-0141","10N.5E.11.233","","374854","3885880","GW","true","" +"ED-0349","25S27E12.1","","580418","3557060","GW","true","" +"NM-00583","","","647359","3661490","GW","false","" +"NM-13315","","","548288","3689270","GW","false","" +"NM-27396","","","636007","3631660","GW","false","" +"NM-10857","","","310058","3650200","GW","false","" +"NM-02387","","","151341","3589600","GW","false","" +"NM-22603","","","223488","3892420","GW","false","" +"NM-07565","","","581040","3604480","GW","false","" +"NM-27355","","","558737","3597000","GW","false","" +"NM-15757","","","198560","3752870","GW","false","" +"NM-02029","","","340253","3553250","GW","false","" +"NM-04599","","","345134","3552360","GW","false","" +"NM-15434","","","679333","3743130","GW","false","" +"NM-06292","","","362533","3579840","GW","false","" +"NM-04430","","","680029","3548630","GW","false","" +"SO-0010","1N4E3.444","","361559","3800160","GW","true","" +"NM-26657","","","194124","4078670","GW","false","" +"NM-07382","","","565837","3600680","GW","false","" +"QU-015","GM-5","","440569","4062579","GW","true","US 64 north out of Taos, thru Arroyo Seco & Lama, Questa. Left on 378 north of Questa @ Cerro. Stay on pavement, left on Vista de Questa & Guadalupe Trails (dirt road). Rt. @ fork onto less used 2-track to green gate. Thru gate heading SE. Left at fork at Red River ? Loop trail. Back ~2 mi to fenced well corral. Rough 2-track need 4WD." +"NM-14262","","","141158","3706150","GW","false","" +"NM-27245","","","244027","3567360","GW","false","" +"NM-07241","","","210166","3601140","GW","false","" +"SA-0156","","","253853","3720940","GW","true","From Hwy 60 take 52 south at VLA. Got ~32 mi to Dusty, ranch HQ, continue south 2.9 mi to Wahoo Ranch entrance with combo lock on gate (1920?). Take drive to west after cattleguard, go through gate into pen south of cattleguard to metal box at powerpole." +"NM-16646","","","208840","3779170","GW","false","" +"NM-00673","","","437630","3689560","GW","false","" +"HS-509","TC-509","","289851","3667677","SP","true","In block 42 in Hot Springs, NM" +"QY-0927","9.27.13.243","","589275","3874140","GW","true","" +"EB-089","","","413650","3957860","GW","true","" +"NM-23910","","","651532","3920070","GW","false","" +"NM-01188","","","615942","3878110","GW","false","" +"SM-1026","","","442522","3621836","SP","true","In Perk Canyon" +"NM-23596","","","186690","3913800","GW","false","" +"NM-21710","","","350864","3879800","GW","false","" +"NM-25748","","","403216","3994160","GW","false","" +"NM-19368","","","603740","3825300","GW","false","" +"WL-0283","","","418795","4008215","GW","true","Somewhere near Embudo, there's an old hospital. The well is near there, in a pumphouse." +"TO-0553","9N8E13.2","","405484","3874220","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-06384","","","363831","3581590","GW","false","" +"NM-05178","","","236939","3563840","GW","false","" +"NM-11879","","","286503","3667180","GW","false","" +"NM-00359","","","657826","3626170","GW","false","" +"NM-19792","","","601390","3832790","GW","false","" +"SB-0176","TWDB 4749701","","503072","3444441","GW","false","" +"NM-16735","","","658254","3777690","GW","false","" +"NM-24080","","","403183","3926830","GW","false","" +"NM-10003","","","216539","3640400","GW","false","" +"NM-12449","","","555508","3674340","GW","false","" +"NM-19184","","","666713","3822000","GW","false","" +"TO-0044","3N9E3.122","","409364","3820500","GW","true","" +"NM-27040","","","322154","3786800","GW","true","" +"NM-05512","","","259229","3568590","GW","false","" +"NM-20827","","","318513","3855310","GW","false","" +"NM-07249","","","572173","3597430","GW","false","" +"NM-19549","","","259812","3831100","GW","false","" +"CX-0152","70","","525948","4031360","GW","true","7 1/4 miles northeast of Miami" +"NM-23908","","","399166","3919300","GW","false","" +"SB-0349","TWDB 4807709","","476652","3530579","GW","false","" +"NM-25854","","","409911","4000620","GW","false","" +"BC-0188","168","","374003","3882160","GW","true","" +"NM-03521","","","573733","3945960","GW","false","" +"NM-19056","","","653491","3818010","GW","false","" +"NM-00792","","","441651","3707180","GW","false","" +"SB-0258","TWDB 4807317","","486037","3537058","GW","false","" +"NM-06003","","","607269","3573230","GW","false","" +"ED-0040","18S26E24.131","","561686","3622240","GW","true","" +"TC-237","","","416015","4096990","GW","true","" +"WL-0236","","","328691","3686353","GW","true","From I25, take exit 83, make left on NM-181, go under the interstate and make left on NM-195, toward Elephant Butte State Park. Just south of park entrance make a right on NM-179 to left on Hwy 51 (aka E 3rd Ave) for 16 miles to Engle. Turn left on A26 (bearing right @ Y immediately after turn to stay heading east) for 9.5 miles, bear left on Buckhorn Rd for 5 miles, turn left on Cty Rd A030 for 1.6 miles to ranch. Well is 50 ft south of windmill under large box." +"NM-24686","","","458472","3942770","GW","false","" +"NM-00680","","","485105","3690090","GW","false","" +"BW-0916","4.11.14.28.321","","446604","3687510","SP","true","" +"SB-0664","TWDB 4915501","","387318","3520701","GW","false","" +"TB-0110","","","431136","3720433","GW","true","Hwy 380 Nogal to Snell (west of 37/380 intersection). One mile to gate #211 and back west to house. Well is southwest of other well in pump house." +"NM-10342","","","674479","3643700","GW","false","" +"NM-04778","","","677335","3555670","GW","false","" +"TO-0472","10N9E32.313","","407605","3878310","GW","true","" +"NM-11010","","","658804","3652060","GW","false","" +"NM-26836","","","548510","3686292","GW","true","" +"NM-04496","","","548429","3548320","GW","false","" +"NM-22554","","","374951","3888480","GW","false","" +"NM-23872","","","414765","3917660","GW","false","" +"NM-03658","","","506796","4067490","GW","false","" +"NM-18929","","","600929","3814240","GW","false","" +"NM-12665","","","644351","3679620","GW","false","" +"NM-16816","","","656916","3779580","GW","false","" +"SB-0188","TWDB 4757802","","505090","3433082","GW","false","" +"NM-15703","","","657998","3748480","GW","false","" +"NM-13589","","","550261","3692630","GW","false","" +"NM-00584","","","659412","3662570","GW","false","" +"NM-26513","","","223593","4067540","GW","false","" +"NM-05965","","","248658","3574420","GW","false","" +"NM-05897","","","249480","3573760","GW","false","" +"NM-04458","","","341726","3548480","GW","false","" +"DA-0173","28S1W7.11","","311965","3530170","GW","true","" +"MI-0140","","","483770","3935403","GW","true","Topographic situation: Plateau" +"NM-09476","","","409974","3630770","GW","false","" +"NM-12766","","","662628","3681210","GW","false","" +"NM-12902","","","556341","3682440","GW","false","" +"NM-13405","","","549084","3690290","GW","false","" +"BC-0059","50","","381263","3890240","GW","true","" +"NM-06663","","","672805","3587440","GW","false","" +"NM-19343","","","628030","3825360","GW","false","" +"NM-07939","","","564602","3610000","GW","false","" +"BW-0378","17S9E26.431","","407579","3629790","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05284","","","129376","3569060","GW","false","" +"BW-0609","6S8E21","","396891","3737620","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06817","","","671419","3590530","GW","false","" +"DA-0012","19S2E2.21","","340140","3618290","GW","true","" +"NM-09757","","","208250","3637310","GW","false","" +"NM-02258","","","335237","3572120","GW","false","" +"NM-00788","","","450899","3706690","GW","false","" +"NM-22384","","","351305","3886900","GW","false","" +"NM-04687","","","325167","3554270","GW","false","" +"NM-19859","","","603846","3833990","GW","false","" +"NM-13476","","","566577","3691190","GW","false","" +"NM-11246","","","656894","3656220","GW","false","" +"NM-14493","","","405171","3706520","GW","false","" +"NM-08736","","","409770","3622580","GW","false","" +"NM-19729","","","330476","3832710","GW","false","" +"NM-08841","","","206582","3627580","GW","false","" +"NM-25216","","","671053","3963890","GW","false","" +"NM-26177","","","316725","4028690","GW","false","" +"NM-27217","","","547382","3542380","GW","false","" +"SA-0082","","","218975","3768870","GW","true","Electric submersible pump ~40 yards SSE of 2 WMs and ~150 yards south of pond stocked with trout. Metal stock tank ~35 yards N of well. About 180 yards WNW of another WM. All 3 WMs and this well are within fenced in fishing pond area. This well is closest to lat/lon location in documents from OSE?" +"TC-428","","","445067","4077538","GW","true","Rainbow lane runs south from Sunshine Valley, Road B046. The house is on south side of Rainbow Lane, has a white/green roof (65 Rainbow Lane). The well is north of the driveway in green well vault." +"NM-07701","","","582691","3606600","GW","false","" +"NM-26030","","","448203","4014110","GW","false","" +"WL-0275","","","424776","3645240","GW","true","Heading east out of High Rolls on US Hwy 82 towards Mountain Park, turn right onto 339 Rd/A-067/Haynes Canyon Rd. After 1 mile turn left to stay on Haynes Canyon Rd. After 1 mile sharp left. Well is in small clearing next to gate at bottom of hill." +"NM-27512","","","533539","3759480","GW","false","" +"NM-01382","","","671078","3926660","GW","false","" +"SM-0130","","","449682","3635259","GW","true","" +"NM-27636","","","634619","3794460","GW","false","" +"NM-07079","","","148433","3600000","GW","false","" +"NM-21310","","","556830","3869410","GW","false","" +"NM-24325","","","475578","3934230","GW","false","" +"NM-11096","","","635630","3653310","GW","false","" +"NM-21109","","","326392","3864250","GW","false","" +"JM-026","","","303207","3666069","GW","true","" +"RA-001","","","421963","4005393","GW","true","In pit in front of house. Call make appointment." +"NM-05969","","","247511","3574640","GW","false","" +"NM-20021","","","571290","3836150","GW","false","" +"QY-0146","11.28.30.331","","589619","3889740","GW","true","" +"NM-28059","WKR-W2","","359964","3893320","GW","false","" +"NM-09224","","","645592","3629060","GW","false","" +"TO-0242","6N10E7.112","","414520","3847630","GW","true","" +"SD-0091","9N.6E.25.414","","385863","3870740","GW","true","" +"TO-0382","8N12E15.411","","440492","3864400","GW","true","" +"NM-14850","","","540553","3721440","GW","false","" +"NM-23163","","","666352","3897710","GW","false","" +"NM-15085","","","151773","3736230","GW","false","" +"NM-20892","","","568447","3855690","GW","false","" +"NM-00411","","","408586","3632570","GW","false","" +"NM-06167","","","573656","3576680","GW","false","" +"SB-0627","TWDB 4907801","","386493","3529272","GW","false","" +"NM-19896","","","659011","3835330","GW","false","" +"NM-18004","","","513545","3798240","GW","false","" +"NM-12100","","","639186","3669720","GW","false","" +"BC-0390","393","","362585","3893364","GW","false","" +"NM-04332","","","365162","3543980","GW","false","" +"NM-19435","","","655191","3827680","GW","false","" +"WL-0280","","","184254","3536705","GW","false","From I-10, take exit 49 and go south on NM-146 for 19.5 miles, turn right (west) on NM-9 for 0.75 miles and turn into Bike Ranch. Drive ~100 ft and turn left and drive 300 ft. Well is north of gravel road on large concrete pad with rusted metal and concrete cover." +"NM-21232","","","346673","3868810","GW","false","" +"EB-128","","","414020","3957360","GW","true","San Juan Residences" +"NM-20814","","","621915","3854020","GW","false","" +"MI-0206","","","510676","3936152","GW","true","Topographic situation: Plateau" +"NM-15687","","","327598","3747860","GW","true","" +"NM-08501","","","542284","3618660","GW","false","" +"NM-01251","","","236346","3901030","GW","false","" +"NM-02139","","","673380","3563120","GW","false","" +"ED-0095","21S25E26.114","","559498","3590670","GW","true","" +"NM-05460","","","262491","3568020","GW","false","" +"NM-01304","","","372189","3908820","GW","false","" +"NM-06428","","","676122","3583100","GW","false","" +"NM-12806","","","547192","3680700","GW","false","" +"NM-15943","","","653907","3755070","GW","false","" +"NM-10017","","","646134","3638150","GW","false","" +"AR-0099","NMED 98","D009","241689","4091530","GW","true","From Hwy 550 in Cedar Hill, take Rd 2900 west to address on left. Dirt driveway towards green BP natural gas pump site. Well is behind house, behind small shed." +"EB-241","","","408198","3946616","GW","true","3673 Agua Fria (2 houses -- Sam front; Art rear) wells in back by garage" +"BC-0372","375","","","","GW","false","" +"WL-0010","NM3515310","","448932","3839476","GW","false","" +"NM-12951","","","556259","3683300","GW","false","" +"NM-12837","","","139261","3687860","GW","false","" +"NM-09204","","","662401","3629140","GW","false","" +"NM-02839","","","535394","3702140","GW","false","" +"TS-076","","","437056","4081565","SP","true","Spring 2 at Cow Patty west, west side of the river ~ 15 ft above river level, discrete discharge point w/ additional seeps up/down stream." +"NM-03460","","","226350","3909080","GW","false","" +"NM-22140","","","346800","3884410","GW","false","" +"NM-12588","","","555389","3677050","GW","false","" +"NM-04407","","","134842","3552470","GW","false","" +"NM-13626","","","665710","3694720","GW","false","" +"NM-01732","","","552605","4089490","GW","false","" +"NM-01173","","","470543","3873840","GW","false","" +"NM-18637","","","273439","3811670","GW","false","" +"NM-21029","","","678774","3861580","GW","false","" +"NM-25747","","","403641","3994160","GW","false","" +"NM-05856","","","254992","3573190","GW","false","" +"BW-0552","1N8E31","","394500","3792380","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SD-0163","10N.5E.22.424","","373801","3882230","GW","true","" +"TV-199","","","437863","4024095","GW","true","Barranca del Pueblo area along Rio Pueblo. Llano Sereno subdivision Lot 1. Access to vault requires key from Larry Brooks." +"NM-17477","","","559202","3787700","GW","false","" +"NM-03584","","","411192","3984030","GW","false","" +"WL-0162","","","417413","3942423","GW","false","Heading north on I-25 from Santa Fe, take Exit 284 for Old Pecos Trail, turn left, cross interstate, turn right (south) on Old Pecos Trail. Drive 1.1 miles then turn left (east) onto El Gancho Way. Drive 0.25 miles, turn right (south) onto Old Santa Fe Trail. Drive 0.5 mile to address (7367 Old Santa Fe Trail on east side of highway. Large, black metal gate. Well is just north of gate down small dirt road about 0.1 mile." +"NM-22279","","","374555","3885470","GW","false","" +"MI-0142","","","495322","3934610","GW","true","Topographic situation: Plateau" +"SV-0039","14 La Aguapa","","378306","3901525","GW","false","Unit 3 Lot 111" +"NM-06534","","","586826","3583810","GW","false","" +"NM-10109","","","659424","3639440","GW","false","" +"NM-06165","","","535247","3576440","GW","false","" +"NM-24741","","","667331","3945470","GW","false","" +"NM-10720","","","278568","3648800","GW","false","" +"NM-15297","","","451239","3737710","GW","false","" +"NM-00809","","","447521","3711580","GW","false","" +"WL-0345","","","296300","3778835","GW","true","about 50 yards south of Pump building" +"NM-02108","","","335202","3560320","GW","false","" +"NM-09144","","","200383","3631190","GW","false","" +"NM-09059","","","227838","3629200","GW","false","" +"NM-27789","","","615586","3788690","GW","false","" +"NM-08699","","","218828","3625650","GW","false","" +"NM-23296","","","234710","3902660","GW","false","" +"NM-07897","","","258839","3612240","GW","false","" +"NM-11607","","","621586","3661970","GW","false","" +"AR-0128","B006","","242498","4091170","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn right onto Rd 2390 then left onto Rd 2380. Take left turn in Rd 2380 and follow to address on left." +"NM-13823","","","542886","3695030","GW","false","" +"NM-05703","","","222544","3571500","GW","false","" +"NM-18695","","","369449","3810880","GW","false","" +"NM-03142","","","568735","3813420","GW","false","" +"PB-0008","","","377541","3936509","GW","true","Well is SW of tank shed." +"NM-06441","","","361526","3582660","GW","false","" +"SB-0279","TWDB 4807422","","478576","3533715","GW","false","" +"NM-17432","","","531165","3786860","GW","false","" +"NM-23511","","","372061","3907840","GW","false","" +"RA-011","","","381542","4009060","GW","true","Turn onto CR155 from HWY 554 -> 4 min drive to Pvt Dr 1621. Well on drive past house #2; in a stand of willows across from the B+B units." +"SO-0200","SAC-W03A","","324783","3791030","GW","true","" +"SB-0652","TWDB 4915304","","389699","3526896","GW","false","" +"NM-07546","","","205358","3608250","GW","false","" +"ED-0340","25S24E31.331","","543203","3549720","GW","true","" +"NM-14308","","","137967","3707320","GW","false","" +"NM-14952","","","637065","3725970","GW","false","" +"NM-19130","","","614116","3818920","GW","false","" +"NM-07669","","","181257","3610870","GW","false","" +"NM-28231","","","169535","4076370","GW","false","" +"NM-24402","","","400922","3936560","GW","false","" +"NM-25309","","","614059","3967960","GW","false","" +"NM-26453","","","457763","4061810","GW","false","" +"NM-01062","","","602186","3843390","GW","false","" +"TC-440","","","447710","4074181","GW","true","The well is located roughly a 0.25 mile south of Cathy Hope Herbal Shop, on Hwy 522 north of Questa. The well is about 100 yards west of the highway. Access by stile over fence." +"NM-03419","","","348366","3894370","GW","false","" +"NM-21523","","","308609","3877590","GW","false","" +"DE-0166","","","672995","3618908","GW","false","" +"EB-233","SF-16","","412297","3941297","GW","true","#31 Cam. Estrellas (between #31 and #35, beside road)" +"SB-0029","TWDB 4709803","","507839","3513344","GW","false","" +"NM-24177","","","676366","3931380","GW","false","" +"NM-18862","","","681481","3814230","GW","false","" +"NM-12337","","","555518","3672520","GW","false","" +"EB-117","","","415550","3943525","GW","true","" +"NM-12818","","","675592","3682940","GW","false","" +"NM-05682","","","263982","3570170","GW","false","" +"NM-09483","","","633094","3631630","GW","false","" +"NM-11760","","","554740","3663650","GW","false","" +"NM-00599","","","671477","3664330","GW","false","" +"WL-0004","","","393180","4023664","GW","true","" +"NM-21604","","","382253","3877410","GW","false","" +"NM-23965","","","637628","3921850","GW","false","" +"AS-061","DM-39","","445996","4043010","GW","true","" +"NM-22605","","","651236","3889500","GW","false","" +"SA-0108","","","253769","3716768","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south past MM 45 to the Cupit Ranch HQ on the west side of the road. Turn to the west just south of the buildings and bear to the southwest through the two gates, through the equipment yard. Head west and take the right fork over the ridge and thru the metal gate to the west down into Knisley canyon. Stay west to the windmill on the west (right) side of road. (Windmill is located on the toe of a slope on the northern side of Knisley Creek)." +"NM-03716","","","169448","3492590","GW","false","" +"NM-00697","","","477160","3692770","GW","false","" +"SM-1030","","","430660","3632480","SP","true","" +"NM-10542","","","555469","3644710","GW","false","" +"NM-13545","","","639030","3693320","GW","false","" +"NM-21252","","","346538","3869030","GW","false","" +"NM-23633","","","368938","3910200","GW","false","" +"NM-21665","","","359392","3879250","GW","false","" +"NM-15988","","","656092","3756520","GW","false","" +"NM-06102","","","590432","3575090","GW","false","" +"NM-27572","","","677666","3793330","GW","false","" +"ED-0257","22S29E33.24","","595689","3579770","GW","true","" +"NM-04304","","","226677","3545890","GW","false","" +"NM-00344","","","275973","3624640","GW","false","" +"QY-1041","15.37.19.134","","676170","3931250","SP","true","" +"UC-0034","","","664253","4032824","GW","true","elv 4984 acc to USGS" +"NM-22978","","","615083","3893900","GW","false","" +"NM-18580","","","596601","3808370","GW","false","" +"NM-14329","","","547248","3701090","GW","false","" +"MI-0298","","","463893","3966493","GW","true","Topographic situation: Valley" +"BW-0947","","","499999","3983948","GW","true","" +"NM-27282","","","371844","3580090","GW","false","" +"NM-21585","","","347573","3877550","GW","false","" +"NM-23482","","","362518","3909190","GW","false","" +"MI-0068","","","604438","3915358","GW","true","Topographic situation: Plains" +"NM-27563","","","668898","3792890","GW","false","" +"NM-08213","","","622829","3615150","GW","false","" +"NM-06007","","","562305","3572940","GW","false","" +"NM-11729","","","675809","3665170","GW","false","" +"NM-23991","","","646406","3923410","GW","false","" +"NM-11984","","","561149","3666520","GW","false","" +"NM-12799","","","552963","3680570","GW","false","" +"QY-0006","10.27.18.412","","580896","3883440","GW","true","" +"TS-104","","","436972","4044239","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"NM-06924","","","227486","3594340","GW","false","" +"NM-27371","","","551983","3611130","GW","false","" +"NM-27759","","","606602","3784420","GW","false","" +"NM-12796","","","669598","3682310","GW","false","" +"NM-04457","","","132421","3553850","GW","false","" +"TB-1019","","","411618","3706675","SP","true","Water Canyon Road south through locked gate (Cathie has key)south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill, stay south, left at fork past Nagel Windmill to northeast (watch the mudhole!) along fence down canyon into arroyo. Stay east through two gates past windmill on left. From McClain Windmill east, stay left (North) at fork, through arroyo to silver tank. Go through gate to north and bear southeast and continue south, right fork to west at house and south through gate, past Hogback Windmill. Bear right (West) at fork to gate going south at water tank. Go SW around field towards HQ to left at gate (S) toward white tank (east through gate) to cement spring box on right (S). This is the original water source and feeds ponds at HQ." +"BC-0016","8","","366513","3880580","GW","true","" +"SB-0300","TWDB 4807517","","481834","3535310","GW","false","" +"TO-0124","5N6E7.122","","376389","3838280","GW","true","" +"TO-0387","9N6E9.224","","381323","3876400","GW","true","" +"NM-13679","","","571520","3693840","GW","false","" +"NM-10440","","","147134","3649460","GW","false","" +"NM-23720","","","641674","3913230","GW","false","" +"SO-0133","BRN-E05A","","327795","3763488","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-04229","","","240376","3542360","GW","false","" +"BW-0010","21S5E12.334","","369221","3595660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14426","","","404765","3704520","GW","false","" +"NM-06868","M-149","","215393","3593840","GW","false","" +"SB-0026","TWDB 4709703","","503236","3512849","GW","false","" +"TS-025","","","437933","4077640","SP","true","East bank, just upstream from Sunshine Trail." +"NM-14072","","","469241","3696950","GW","false","" +"NM-17320","","","653294","3786460","GW","false","" +"NM-20611","","","548876","3848660","GW","false","" +"NM-09919","","","625153","3636360","GW","false","" +"QY-0936","9.28.14.412","","596958","3873990","GW","true","" +"NM-07935","","","591731","3610180","GW","false","" +"NM-13107","","","547115","3686090","GW","false","" +"AB-0163","S212","","363180","3893520","GW","true","" +"NM-02945","","","164062","3753380","GW","false","" +"NM-05606","","","258916","3569740","GW","false","" +"NM-16057","","","204847","3761400","GW","false","" +"NM-09661","","","225355","3635460","GW","false","" +"NM-11247","","","655522","3656040","GW","false","" +"NM-10577","","","553856","3645200","GW","false","" +"NM-02068","","","138000","3562170","GW","false","" +"NM-24589","","","669464","3941820","GW","false","" +"NM-20822","","","634767","3854450","GW","false","" +"NM-12229","","","657727","3672160","GW","false","" +"NM-13298","","","493152","3688870","GW","false","" +"MI-0268","","","571122","3950846","GW","true","Topographic situation: " +"NM-01157","","","641436","3867280","GW","false","" +"TV-104","SO-08","","440789","4019142","GW","true","At south end of Stakeout Rd. Well is on hill just east of Foster home and south of Sparks home." +"CX-0058","25N25E28.3","","563493","4025290","GW","true","" +"NM-12240","","","564774","3670820","GW","false","" +"SO-0272","NRCS 1 P1A","","328651","3763918","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-15775","","","668581","3750390","GW","false","" +"SM-0177","","","470461","3646425","GW","true","Site visit by Jeremiah Morse in June 2007. North off of Hwy 82, take county road to right of workshop, well by galvanized tank on railroad ties. Follow electrical lines to well. Workshop is across from shooting preserve." +"NM-24350","","","435524","3934890","GW","false","" +"ED-0143","21S27E31.211","","572618","3589730","GW","true","" +"NM-22000","","","191772","3886990","GW","false","" +"NM-01698","","","223739","4067760","GW","false","" +"NM-18351","","","651149","3805060","GW","false","" +"SB-0719","TWDB 4916601","","401976","3519196","GW","false","" +"NM-14203","","","549299","3698790","GW","false","" +"NM-22927","","","391527","3892990","GW","false","" +"NM-14555","","","556110","3708900","GW","false","" +"NM-05693","","","664352","3568940","GW","false","" +"NM-22382","","","392948","3886280","GW","false","" +"NM-08678","","","408069","3621640","GW","false","" +"MI-0273","","","472587","3958835","GW","true","Topographic situation: Valley" +"NM-06700","","","220564","3590790","GW","false","" +"NM-27926","","","571098","3831400","GW","false","" +"NM-17361","","","651003","3787190","GW","false","" +"NM-27202","","","393750","3824045","GW","false","" +"QU-013","","","447931","4064282","GW","true","From north on 522, make right on Route 38 at light towards Red River; go 0.5 miles, make left on North Kiowa Road to address (uphill gravel driveway). Drive all the way to top. Well is around house to north." +"SB-0519","TWDB 4844904","","448804","3459281","GW","false","" +"NM-20244","","","659889","3841940","GW","false","" +"QU-064","","","459975","4062472","GW","true","From Hwy 522, go east on Rt. 38 towards Red River. Fawn Lakes is the second campground on the right. Well is in a shed near blue hydrant @ campground host site." +"SO-0150","ESC-E03A","","326433","3777092","GW","true","" +"NM-01689","","","160540","4066380","GW","false","" +"NM-13040","","","630930","3686300","GW","false","" +"NM-13270","","","541648","3688530","GW","false","" +"NM-18763","","","183816","3816230","GW","false","" +"NM-03275","","","411832","3847770","GW","false","" +"NM-09582","","","410943","3631530","GW","false","" +"NM-02061","","","172580","3560780","GW","false","" +"NM-15924","","","621977","3753490","GW","false","" +"NM-06200","","","335025","3578340","GW","false","" +"SV-0030","10 Canon Escondi","","377508","3899590","GW","false","Unit 3 Lot 44" +"TB-0091","","","406684","3643831","GW","true","Paved road due east of office, heads S - SE to new road construction. Turn south around pipe gate, on dirt road to hobby park on R. Look for big blue pressure tank above ground at power pole." +"NM-28239","","","193480","4078030","GW","false","" +"NM-00445","","","640319","3638640","GW","false","" +"NM-00891","","","133171","3790300","GW","false","" +"NM-24754","","","409260","3944520","GW","false","" +"BW-0682","2.11.28.30.232","","589495","3888660","GW","true","" +"NM-00505","","","280866","3650280","GW","false","" +"NM-05469","","","645854","3566380","GW","false","" +"NM-09929","","","558171","3635640","GW","false","" +"NM-02857","","","666738","3716000","GW","false","" +"SB-0347","TWDB 4807706","","480194","3528878","GW","false","" +"QY-0772","7.30.17.244","","611602","3855020","GW","true","" +"NM-00519","","","274417","3652510","GW","false","" +"NM-26595","","","198960","4074080","GW","false","" +"NM-21530","","","345315","3877130","GW","false","" +"NM-07470","","","206615","3606580","GW","false","" +"BW-0807","1.21.1.15.130","","326151","3991200","GW","true","" +"NM-12143","","","640104","3670750","GW","false","" +"NM-24881","","","406994","3946730","GW","false","" +"BW-0654","17S8E28.3","","393987","3630120","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15291","","","664892","3739290","GW","false","" +"LC-041","","","317483","3874871","GW","true","" +"NM-09281","","","199833","3632810","GW","false","" +"NM-10691","","","623463","3646750","GW","false","" +"SB-0354","TWDB 4807715","","476857","3528362","GW","false","" +"QY-0744","6.32.6.334","","628390","3848060","GW","true","" +"NM-02218","","","251142","3570020","GW","false","" +"NM-23200","","","354528","3898370","GW","false","" +"GT-019","LV-14-2","","257779","3636128","SP","true","" +"QY-0607","5.29.29.111","","600849","3833000","GW","true","" +"NM-10226","","","553104","3640110","GW","false","" +"EB-196","","","417593","3961707","GW","true","#47 Calle Encantado in Los Camitos; thru entrance, L at ""T"", 1/2 mi to cattleguard, just past on L" +"NM-07399","","","662996","3602370","GW","false","" +"BW-0435","18S9E26.311","","406772","3620300","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24840","","","621205","3946240","GW","false","" +"NM-15039","","","423233","3728690","GW","false","" +"NM-27042","","","323604","3778190","GW","true","" +"NM-14815","","","419842","3720270","GW","false","" +"AB-0043","S049","","345977","3886310","GW","true","" +"NM-10233","","","280378","3642560","GW","false","" +"QY-0295","11.32.11.113","","634396","3895970","GW","true","" +"TS-043","","","435660","4041171","SP","true","Spring with deep channel on east side." +"NM-18143","","","662081","3802050","GW","false","" +"NM-10074","","","657269","3639280","GW","false","" +"NM-19638","","","512251","3829780","GW","false","" +"NM-00180","","","364598","3573930","GW","false","" +"QY-0633","5.29.8.412","","601795","3837030","GW","true","" +"NM-04426","","","323272","3547830","GW","false","" +"EB-138","","","404216","3946481","GW","true","NE off Caja del Rio, just S of MRC fields; on E/NE of site" +"SB-0690","TWDB 4915602","","392825","3521782","GW","false","" +"NM-02168","","","333030","3565250","GW","false","" +"SO-0047","3N1E15.44","","332905","3816880","GW","true","" +"NM-06545","","","660849","3584970","GW","false","" +"NM-08934","","","206740","3628530","GW","false","" +"NM-16772","","","676583","3778760","GW","false","" +"NM-25377","","","398430","3971810","GW","false","" +"SM-0169","","","511247","3620962","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-02812","","","571314","3693750","GW","false","" +"SB-0774","TWDB 4924603","","402293","3508200","GW","false","" +"NM-11599","","","673155","3662750","GW","false","" +"QY-0921","8.34.13.424","","656521","3864850","GW","true","" +"NM-24733","","","404454","3944320","GW","false","" +"NM-12614","","","557716","3677460","GW","false","" +"QY-0145","11.28.30.232","","590342","3890350","GW","true","" +"NM-09342","","","557169","3629110","GW","false","" +"RA-068","","","418961","4008225","GW","true","Well is set back near school buses near shower house, under barrel." +"SB-0848","Mayer 4","","452570","3541812","GW","false","" +"NM-12261","","","558840","3671370","GW","false","" +"BW-0232","14S9E36.442","","403823","3657230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24642","","","410693","3941950","GW","false","" +"NM-00170","23.18.29.110","","487605","3571460","GW","false","" +"NM-26603","","","654052","4070970","GW","false","" +"SM-0255","","","425863","3616144","GW","true","Take Bug Scuffle Rd west off of Sunspot Rd. Call at hill top. Get someone to unlock Bug Scuffle Gate, drive down main road 0.9 mi. Well is on left before crossing arroyo. Can see it from the main road." +"EB-118","","","416110","3943840","GW","true","" +"NM-04857","","","133387","3562400","GW","false","" +"NM-00100","","","682534","3555690","GW","false","" +"NM-07956","","","557930","3610110","GW","false","" +"NM-21774","","","222790","3883650","GW","false","" +"NM-08813","","","558322","3623140","GW","false","" +"NM-23618","","","371610","3909850","GW","false","" +"NM-28354","237723","","173762","3688624","SP","false","Gila National Forest" +"NM-27463","","","549855","3716220","GW","false","" +"SO-0079","3N2W22.411","","313109","3815950","GW","true","" +"NM-07435","","","561838","3601880","GW","false","" +"NM-19259","","","541650","3822230","GW","false","" +"NM-24023","","","457427","3924130","GW","false","" +"TO-0363","8N8E35.322","","402140","3859750","GW","true","" +"TO-0378","8N10E32.341a","","417528","3859160","GW","true","" +"NM-15103","","","537965","3730860","GW","false","" +"NM-12695","","","631017","3679870","GW","false","" +"NM-19219","","","668861","3823090","GW","false","" +"AB-0083","S095","","357830","3879760","GW","true","" +"NM-25962","","","421185","4006460","GW","false","" +"NM-21555","","","358118","3877230","GW","false","" +"NM-01156","","","676012","3867830","GW","false","" +"SA-0319","","","258950","3716705","GW","true","" +"QY-0476","15.35.10.334","","661531","3933960","GW","true","" +"NM-21969","","","368204","3882290","GW","false","" +"NM-00624","","","656816","3672390","GW","false","" +"NM-19668","","","566699","3830440","GW","false","" +"NM-02510","","","558926","3613540","GW","false","" +"WL-0025","","","282394","3898404","GW","true","Going west on I40, take exit 108 to Laguna. Go west to SR 279 north past Bibo to Seboyeta. Go into Seboyeta, make a right on paved road before community center (El Torrean Loop), take to Portales Rd., follow to well." +"NM-23914","","","414275","3919200","GW","false","" +"NM-19035","","","625339","3817000","GW","false","" +"WS-009","","","389216","3628270","GW","true","0.8 mile NW of admin. bldg." +"NM-25362","","","409001","3970710","GW","false","" +"SA-0088","","","160750","3746060","GW","true","Well no longer exists - replaced by SA-0071. Could not locate old Irr well - Irrigated fields are not subdivision with mobile homes. Go S from NM 12 about 0.2 mi SW from RV park to old homestead and subdivision to S ~ 0.2 mi." +"BW-0044","22S5E32.313","","362604","3580160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01520","","","512563","3964810","GW","false","" +"NM-10158","","","665492","3640340","GW","false","" +"NM-13934","","","545157","3695530","GW","false","" +"NM-03528","","","671284","3951870","GW","false","" +"NM-00166","23.18.30.340","","486682","3570380","GW","false","" +"WL-0314","","","419682","3943039","GW","true","From the junction of I-25 and HWY 285, proceed north on HWY 285 for 0.25 miles, turn left (northwest) onto Old Las Vegas Highway (HWY 300). Drive northwest on Old Las Vegas Highway for 3.3 miles, then turn right (northeast) onto Two Trails Road. Drive northeast on Two Trails Road for 0.9 miles, then turn left (northwest) onto Old Santa Fe Trail. Drive northwest on Old Santa Fe Trail for 0.4 miles, then turn right (northeast) onto La Barbaria Road. Drive on La Barbaria Road for 1.4 miles, well is on the north (left) side of the road about 75 feet from the road through trees. The well is next to the vault and essentially flush with the land surface." +"TO-0292","7N8E20.24","","398027","3853740","GW","true","" +"EB-084","","","410076","3942848","GW","true","3242 Ojos de Jo; south of Governor Miles Rd on Menford Ln" +"NM-24601","","","405902","3940950","GW","false","" +"NM-01433","","","639117","3939410","GW","false","" +"NM-02393","","","224292","3588440","GW","false","" +"NM-26566","","","447206","4066910","GW","false","" +"NM-27471","","","556598","3722420","GW","false","" +"AB-0047","S053","","376964","3930110","GW","true","" +"SD-0075","9N.5E.12.422","","376894","3876120","GW","true","" +"NM-01319","","","153735","3913780","GW","false","" +"NM-06203","","","673899","3578560","GW","false","" +"NM-24282","","","461070","3932830","GW","false","" +"NM-20153","","","245173","3842130","GW","false","" +"QY-0722","6.31.15.343","","623680","3844900","GW","true","" +"QY-0234","11.30.27.111a","","613487","3890920","GW","true","75 ft northeast of well .111" +"NM-18326","","","667446","3805370","GW","false","" +"NM-03315","","","399139","3865960","GW","false","" +"NM-02714","","","532956","3651880","GW","false","" +"NM-13805","","","544359","3695010","GW","false","" +"HS-109","TC-109","","289366","3668451","GW","true","" +"SA-0043","SA-43_R00","","240777","3755558","GW","true","Drive west on Hwy 60, ~0.3 miles past MM 81, turn left (south) on CR152 at cattle guard (unmarked road aka Hand Ranch Road). Drive south on CR 152 10.9 miles to Kiehne Ranch gate. Will need permission from owner and gate combo (13131 in Mar 2021). Continue on CR152 to C-N Lake well complex. Head S thru gate, go 3.5 miles to fence line, cross at fence, head W 1.2 mi to well. DO NOT GO IF MUDDY. [From OSE notes: Go 6 miles south of ranch house through 3 gates. Then west 1.3 miles to woods well. Turn west at 3rd gate. WM steel tower about 5 ft north of metal corrals and about 30 ft north of metal stock tank. Earth tank about 35 ft NNE of WM.]" +"NM-02486","","","675294","3609390","GW","false","" +"HS-064","TC-064","","290436","3671828","GW","true","Exit 79, highway 181, left near bridge at office. On west side of road, north of bridge. Well is in the mine." +"NM-26811","","","169106","3653720","GW","true","" +"NM-24781","","","408284","3944960","GW","false","" +"NM-12026","","","631406","3668320","GW","false","" +"NM-20733","","","635428","3852700","GW","false","" +"NM-02000","","","134360","3555880","GW","false","" +"NM-27894","","","568683","3820450","GW","false","" +"NM-04974","","","343901","3558550","GW","false","" +"NM-10061","","","283019","3639700","GW","false","" +"NM-25106","","","340675","3956850","GW","false","" +"NM-23287","","","290586","3900980","GW","false","" +"QY-0982","9.34.1.411","","656267","3878060","GW","true","" +"WL-0118","","","578399","3572831","GW","true","Need to meet with Ryan prior to visiting well." +"NM-15653","","","326657","3747050","GW","false","" +"NM-19360","","","669006","3826350","GW","false","" +"ED-0213","22S27E15.113","","576729","3584850","GW","true","" +"NM-20484","","","142058","3851980","GW","false","" +"NM-12825","","","660764","3682750","GW","false","" +"SB-0183","TWDB 4757701","","500663","3433850","GW","false","" +"NM-20485","","","601401","3845610","GW","false","" +"NM-21510","","","403395","3875810","GW","false","" +"NM-23805","","","638375","3915950","GW","false","" +"NM-00361","","","280941","3627520","GW","false","" +"NM-25895","","","664825","4003990","GW","false","" +"NM-19903","","","604399","3834640","GW","false","" +"NM-18050","","","661957","3800650","GW","false","" +"BC-0293","304","","375243","3885510","GW","true","" +"NM-06130","","","311929","3577080","GW","false","" +"SM-1029","","","430603","3632921","SP","true","" +"HS-012","TC-012","Theis 1","289524","3667924","GW","true","SSE corner of the Sierra Grande, Inside a series of tall bushes, to the west of the walkway to restaurant/lobby. The only time to measure the static water level is at night." +"PC-038","PW-061","","370917","3907656","GW","true","" +"NM-03457","","","669516","3905720","GW","false","" +"NM-00026","","","489039","3542390","GW","false","" +"TV-194","","","442432","4026017","GW","true","From SR 68, north on Cuchilla/Llano Quemado; left (west) on West Romero Road; right (north) on Cactus Flower Rd; road turns into Las Tusas Road; left on Calle Rinconada. Left (west) @ electric round pen. Well in vault inside fence." +"NM-16958","","","545041","3779830","GW","false","" +"NM-20918","","","384321","3856740","GW","false","" +"NM-22084","","","373161","3883540","GW","false","" +"NM-05199","","","168320","3566160","GW","false","" +"DA-0140","26S2E2.341","","338411","3549660","GW","true","Berino Port of Entry" +"QY-0378","12.32.23.111","","634312","3902600","GW","true","" +"NM-20582","","","416069","3848300","GW","false","" +"AH-055","WINT","","437700","4041845","GW","true","" +"NM-07417","","","618617","3602430","GW","false","" +"NM-23501","","","368696","3907460","GW","false","" +"EB-143","","","413896","3948821","GW","true","West of MW-1, near drainage, in open lot, west side of Cerrillos, across from Whole Foods" +"NM-26083","","","240615","4023040","GW","false","" +"NM-05170","","","674215","3561770","GW","false","" +"SB-0156","TWDB 4742101","","515347","3470650","GW","false","" +"SB-0470","TWDB 4824502","","495788","3507031","GW","false","" +"NM-16604","","","206388","3778720","GW","false","" +"NM-13442","","","623051","3691650","GW","false","" +"BC-0235","235","","374859","3886090","GW","true","" +"NM-17261","","","645650","3785750","GW","false","" +"TO-0308","7N8E34.222","","401354","3851020","GW","true","" +"NM-18194","","","639405","3802850","GW","false","" +"MI-0318","","","456789","3963477","SP","true","Topographic situation: Valley" +"NM-10352","","","632641","3642120","GW","false","" +"NM-21460","","","188582","3878280","GW","false","" +"SM-1072","","","448637","3629250","SP","true","268 Agua Chiquita Rd, house is on south side. Well is east of house, and 3 springs are between house and road in small fenced in area." +"SB-0849","Mayer 5","","459867","3542590","GW","false","" +"NM-25619","","","402451","3983850","GW","false","" +"NM-09235","","","555356","3627770","GW","false","" +"NM-13493","","","629972","3692200","GW","false","" +"NM-23630","PW-312","","362246","3910270","GW","false","" +"NM-01611","","","297398","4017770","GW","false","" +"BW-0933","2.24.22.3.200","","538231","4022400","SP","true","" +"NM-23643","","","357579","3910620","GW","false","" +"SM-4044","","","429858","3628687","PS","true","Stream flow measurement by Patrick Walsh" +"NM-17977","","","650068","3799220","GW","false","" +"NM-17620","","","639861","3791140","GW","false","" +"NM-13439","","","623051","3691620","GW","false","" +"NM-06122","","","334499","3576570","GW","false","" +"NM-15307","","","647215","3739430","GW","false","" +"SM-1069","","","440129","3622956","SP","true","Follow Agua Chiquita Canyon about 3 miles south of intersection with Telephone Canyon. Look for little dirt two track on west side of road. Park near it and walk up. Spring sampled is first one come to. There are two there, check GPS carefully." +"NM-17769","","","632013","3794270","GW","false","" +"NM-25987","","","418529","4008210","GW","false","" +"BW-0467","26S6E34.13","","375554","3541750","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04705","M-063","","233992","3556460","GW","false","" +"NM-23779","","","637678","3915320","GW","false","" +"NM-11629","","","618938","3662180","GW","false","" +"NM-07921","","","675575","3611180","GW","false","" +"NM-05183","M-091","","226014","3564160","GW","false","" +"NM-00579","","","653550","3661280","GW","false","" +"NM-13754","","","548261","3694660","GW","false","" +"SM-0065","","","449344","3630348","GW","true","183 Agua Chiquita Rd in Weed area." +"NM-14887","","","415586","3722740","GW","false","" +"SB-0789","TWDB 5006203","","471297","3425793","GW","false","" +"BC-0247","247","","377844","3892010","GW","true","" +"TV-228","","","441481","4025615","GW","true","Concrete vault @ north end of property near dirt piles; ~250 m from house. Vault located ~50 ' south of Cuchilla & ~100' west of Los Vecinios near dirt mounds and blue spigot. Access thru Trujillo's lot." +"NM-03553","","","674969","3972810","GW","false","" +"NM-27176","","","491228","4070140","ES","true","" +"NM-04061","","","254701","3533930","GW","false","" +"NM-19827","","","404245","3833320","GW","false","" +"NM-01619","","","284774","4021160","GW","false","" +"ED-0369","26S28E13.11","","590089","3546160","GW","true","" +"NM-21963","","","390668","3881900","GW","false","" +"NM-05875","","","637719","3571800","GW","false","" +"WL-0302","","","357164","3801396","GW","false","Will be escorted to well." +"NM-05935","","","584107","3571440","GW","false","" +"NM-02192","M-101","","270740","3567463","GW","false","Take I-10 east from Deming and take the Akela exit. Go south from NM549/Frontage road down CR-B049/Camilon/Geronimo Rd for 0.6 miles. Go west on Solana Rd for 1 mile until it turns south and becomes Vibora Rd. Go south for 0.5 miles. Well is located east of windmill and large tank, about 0.1 miles east of Vibora Rd." +"NM-17332","","","673949","3786820","GW","false","" +"NM-00847","","","311549","3732100","GW","false","" +"NM-21550","","","347569","3877420","GW","false","" +"NM-01705","","","576056","4069730","GW","false","" +"NM-13536","","","274735","3694350","GW","false","" +"NM-18309","","","632283","3804130","GW","false","" +"NM-07304","","","338718","3599820","GW","false","" +"NM-23576","","","356243","3909160","GW","false","" +"NM-15842","","","326638","3751610","GW","false","" +"NM-27906","","","339575","3828540","GW","false","" +"SR-0004","","","519990","3545090","SP","true","Gualadule Mtns; no trail, descend from FR 201" +"NM-19033","","","670444","3817480","GW","false","" +"NM-25882","","","469517","4001660","GW","false","" +"NM-25004","","","156455","3955870","GW","false","" +"QU-106","","","446869","4062297","GW","true","Take Rt 38 off Hwy 522. Take first left at old park before going downhill. First left again, and first gated driveway on left (address 2A). Mark Sideris has local keys. Well in vault at end of driveway on right side." +"NM-11754","","","559664","3663640","GW","false","" +"TO-0195","5N12E23.333","","441296","3833480","GW","true","" +"TB-0114","","","401487","3705482","GW","true","Oscuro Range Rd approx 1/2 mi west to white tank. Well is behind (north) tank." +"NM-08154","","","561533","3613310","GW","false","" +"NM-15605","","","543154","3744460","GW","false","" +"QY-0769","7.30.13.433","","617493","3854460","GW","true","" +"NM-24216","","","174828","3936630","GW","false","" +"SA-0200","","","267360","3704376","GW","true","Canyon subject to flooding in summer, be sure to call ahead and watch for storms even if they are not in canyon!! Approximately 3.5 miles from cattle guard north of Monticello to Coil Ranch HQ (Look for big cottonwood on side of the road and driveway to west) From HQ north 0.8 miles just past trailer on west side of road. Look east for two track on ridge just above the arroyo that runs along the fenceline parallel to road. (Turn off is 0.1 miles south of the cattle guard on the main road). This is Garcia Canyon. At split in road just past gate bear left." +"NM-14216","","","548110","3699030","GW","false","" +"NM-17402","","","548770","3786500","GW","false","" +"NM-00649","","","631301","3685370","GW","false","" +"NM-07995","","","311415","3612280","GW","false","" +"NM-17492","","","674996","3789670","GW","false","" +"NM-26723","","","591777","4083540","GW","false","" +"TO-0110","4N9E22.122","","409421","3825290","GW","true","" +"BC-0433","436","","347304","3879222","GW","false","" +"QU-548","","","442422","4060374","SP","true","Located on public land along the hatchery pipeline. Follow pipeline road NE from hatchery. At coordinates, look for juniper growing on a concrete box. Spring is opposite this structure ~2-3 ft. above channel." +"SM-0246","","","483389","3637731","GW","true","Take hwy 82 to Dunken Turnoff (at Penasco School house). Head south on Hwy 24, over river and in bend to left look for gate in fence. Go through gate (west side of 24), follow to houses. Well is behind house between steel tank and pump house." +"NM-24535","","","174006","3944780","GW","false","" +"EB-564","","","417454","3963201","GW","true","" +"NM-03472","","","650787","3913310","GW","false","" +"NM-13849","","","549343","3695250","GW","false","" +"SA-0492","4S15W26.331","","187366","3758980","GW","true","" +"NM-18623","","","679653","3809700","GW","false","" +"NM-09991","","","131249","3643030","GW","false","" +"NM-22783","","","389158","3891010","GW","false","" +"NM-01816","","","117516","3529190","GW","false","" +"NM-21164","","","560410","3864960","GW","false","" +"BW-0496","7S7E9.222","","387169","3732610","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-23788","","","638229","3915580","GW","false","" +"NM-25504","","","403265","3978170","GW","false","" +"NM-02409","","","566569","3588640","GW","false","" +"NM-22882","","","387605","3892350","GW","false","" +"NM-27855","","","560389","3809980","GW","false","" +"NM-11432","","","648506","3660030","GW","false","" +"NM-08412","","","556847","3617280","GW","false","" +"SB-0369","TWDB 4807813","","483795","3529949","GW","false","" +"TO-0347","8N8E10.111","","400053","3867120","GW","true","" +"ED-0250","22S27E35.321","","578779","3579200","GW","true","" +"CP-0010","NM3527605","","679621","3807204","GW","true","From Clovis go east on Hwy 60 to Texico, then left (north) on Garwood to intersection with Hamlin. At corner is water tower, and well house. Need water operator to access well." +"SB-0184","TWDB 4757702","","500689","3433881","GW","false","" +"NM-26270","","","666894","4039300","GW","false","" +"NM-01426","","","477470","3936480","GW","false","" +"MI-0110","","","548836","3916663","GW","true","Topographic situation: Valley" +"NM-03270","","","341458","3846170","GW","false","" +"JM-055","JSAI Exp Well 1","","318701","3645600","GW","true","" +"NM-16532","","","571159","3773120","GW","false","" +"QY-0267","11.31.12.324","","626860","3895120","GW","true","" +"NM-06711","","","676105","3588490","GW","false","" +"NM-04662","","","237702","3555840","GW","false","" +"NM-11182","","","559283","3653880","GW","false","" +"NM-05549","","","592079","3566580","GW","false","" +"QU-520","","","441561","4060015","SP","true","Along Red River at downstream end of hatchery visitor center." +"NM-16644","","","638910","3775820","GW","false","" +"NM-02328","","","329841","3578060","GW","false","" +"NM-01557","","","534927","3984140","GW","false","" +"NM-20616","","","596049","3849160","GW","false","" +"UC-0041","","","669138","4022529","GW","false","elv 4745 acc to USGS" +"NM-25497","","","589451","3977440","GW","false","" +"AR-0520","","","213703","4068620","PS","true","Last clean access to Animas River before river junction @ ~1700 ft south." +"NM-20649","","","566227","3849940","GW","false","" +"NM-24831","","","225343","3949560","GW","false","" +"NM-10614","","","441166","3645650","GW","false","" +"NM-25325","","","599472","3968860","GW","false","" +"NM-02410","NH-013","","279975","3591115","GW","false","Take the Hatch exit from I25. Go west on NM26 for 15.9 miles. South on A030/Uvas Valley Rd NE for 10.8 miles (6.6 miles south on A030/Christian Rd from NM-07256). Well is located near power pole, east of large, white structure; about 200 yds from the main road." +"NM-15903","","","658630","3753730","GW","false","" +"NM-16537","","","672277","3774610","GW","false","" +"NM-10141","","","555008","3638800","GW","false","" +"NM-16060","","","670226","3758950","GW","false","" +"NM-27570","","","644976","3792890","GW","false","" +"SB-0427","TWDB 4815204","","482685","3525702","GW","false","" +"NM-04779","","","677230","3555670","GW","false","" +"NM-12238","","","291006","3672780","GW","false","" +"NM-10604","","","559099","3645530","GW","false","" +"AR-0193","H004","","239470","4087680","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left onto Rd 2619 and folllow to address." +"NM-05261","","","220371","3565890","GW","false","" +"NM-16627","","","659408","3776110","GW","false","" +"EB-492","","","420204","3949898","ES","true","Santa Fe River downstream of Nichols Reservoir" +"NM-10707","","","639949","3647150","GW","false","" +"BW-0672","2.2.6.9.233","","377738","3808250","GW","true","" +"NM-23657","","","369626","3910620","GW","false","" +"SM-3022","","","430273","3619346","PS","true","Site visited and sampled by Trevor Kludt" +"NM-21903","","","368599","3881580","GW","false","" +"EB-107","","","412977","3954837","GW","true","#45 Cam. De Patron, south of camp in center of property; Tano Rd Assoc" +"NM-04927","","","137798","3563130","GW","false","" +"SA-0112","","","234542","3768235","GW","true","From Datil go south on NM 12 for 7.7 miles, half way between MM 67 & 66 (Gutierrezville) Look for the Harriet Ranch sign on the east side of the highway. Go east on the county road bearing to the southeast (right) at the fork. From the cattle guard it is 3.4 miles to a phone box and wood post with a No Trespassing sign on the ast (left) side. Take the two track there to the north for 2.4 miles to the Sanchez Homestead. Well is behind the red barn near the cattle pens. Watch out for the bulls!" +"NM-23376","","","651683","3902110","GW","false","" +"NM-10120","","","554230","3638480","GW","false","" +"TB-0317","","","406932","3649768","GW","true","Going S on Hwy 54 from Tularosa, turn W onto La Luz Gate Rd, turn N onto Riata Rd for 0.7 miles, then W onto Canary Ln. Proceed to address on W side of road. Well is located in the front yard in pump house." +"NM-21355","","","595768","3871150","GW","false","" +"SD-0232","10N.7E.35.231","","393943","3879290","GW","true","" +"NM-11348","","","673224","3658830","GW","false","" +"NM-16694","","","304638","3777770","GW","false","" +"NM-08439","","","408321","3617910","GW","false","" +"NM-18894","","","570952","3811520","GW","false","" +"NM-07771","","","228707","3611380","GW","false","" +"NM-08035","","","607458","3611540","GW","false","" +"HS-049","TC-049","","289965","3667714","GW","true","400 Mims St.: NE Corner of Mim & Austin" +"NM-24628","","","411320","3941690","GW","false","" +"NM-05513","","","223668","3569500","GW","false","" +"NM-21032","","","637244","3860400","GW","false","" +"NM-21022","","","377985","3859750","GW","false","" +"NM-01316","","","642722","3908970","GW","false","" +"NM-24278","","","476379","3932630","GW","false","" +"NM-05383","","","186007","3568900","GW","false","" +"NM-09760","","","223443","3636930","GW","false","" +"NM-28406","S-2016-002","","633561","3571193","GW","true","" +"NM-17473","","","589598","3787880","GW","false","" +"QU-007","","","449270","4065524","GW","true","From 522 heading north, go right (east) on Rt. 38, then left (north) on Cabresto Road. Sin Salida is the last left off of Cabresto Road before National Forest. #26 is at end of Sin Salida. Casing located behind house, use path between house and garage." +"NM-27826","","","557435","3804690","GW","false","" +"NM-24042","","","656069","3926130","GW","false","" +"NM-11031","","","680448","3652590","GW","false","" +"QU-045","","","448183","4062171","GW","true","From Hwy 522, at light in town, take right and proceed one mile to Gonzales RV Park on the right side of road. Drive to the back of blue house. Well in vault under tree near chainlink fence and propane tank." +"NM-19186","","","637246","3820990","GW","false","" +"NM-23558","","","676925","3909410","GW","false","" +"NM-10940","","","555285","3649580","GW","false","" +"NM-16570","","","588424","3773880","GW","false","" +"SO-0104","3N5E28.444","","369662","3812950","GW","true","" +"WL-0271","","","330176","3570930","GW","true","Heading south on I-25, take Exit 1, turn right on E. University, turn left on E. Union Ave., follow onto W. Union Ave. until Snow Rd. Turn right on Snow Rd/NM-372, drive 0.5 mi to address on right. Well is in pump house behind residence." +"DE-0070","","","540561","3592736","GW","false","" +"NM-17887","","","611813","3796870","GW","false","" +"NM-11401","","","286067","3660280","GW","false","" +"QY-0933","9.27.4.423","","584352","3876960","GW","true","" +"NM-28088","","","234009","3904440","GW","false","" +"NM-07043","","","667642","3594530","GW","false","" +"TO-0398","9N8E2.242","","404218","3877290","GW","true","" +"NM-19615","","","177872","3834980","GW","false","" +"NM-13172","","","139269","3693660","GW","false","" +"NM-11395","","","284998","3660060","GW","false","" +"NM-12448","","","614999","3675200","GW","false","" +"NM-22819","","","236124","3894730","GW","false","" +"NM-19594","","","660623","3830460","GW","false","" +"NM-11003","","","651746","3651830","GW","false","" +"SD-0246","11N.5E.25.121","","376029","3891130","GW","true","" +"SB-0602","TWDB 4863802","","481331","3429865","GW","false","" +"NM-10108","","","283816","3640480","GW","false","" +"DE-0117","","","672785","3616083","GW","false","" +"NM-24865","","","407720","3946350","GW","false","" +"NM-27209","","","167377","3490620","GW","false","" +"PP-070","PW-75","","436940","4003569","GW","true","" +"NM-26815","","","212709","3773310","GW","true","" +"DE-0100","","","639339","3568956","GW","false","" +"ED-0120","21S26E33.441","","566590","3588410","GW","true","" +"NM-12988","","","137319","3690710","GW","false","" +"TV-301","LQ-4","","443954","4020825","GW","true","Take County Road 382 towards Ponce de Leon. Turn right on gravel graded road at south end of Community Center (Llano Quemado). Go through locked gate ~1 mile up road on left." +"UC-0079","","","669227","3972488","GW","true","From major intersection in Clayton (First St. and Main St.), go south on Rt. 412. At Y in road, go left on Rt. 402 south and continue on Rt. 402 south by turning left at stop sign on S. First Ave. and Court St. + +Start/0.0 mi. From the intersection of Court St. and NM 402, proceed South on NM 402 (turning into NM 18) 38 miles to Amistad Road. + +38.0 mi From the intersection of NM 402 and Amistad Road, proceed East on Amistad Road 1 mile to Ricketson Road. + +39.0 mi From Ricketson Road proceed 0.25 miles to Hall Road. + +39.25 mi From Hall Road proceed 2.0 miles East to Soggy Road. Go past Amistad Land and Cattle Headquarters. Go into pasture across cattle guard at curve where Soggy Road turns East. Go 1.5 miles southwest to windmill without head. Go past first windmill." +"PC-106","PW-187","","370120","3910216","GW","true","" +"NM-25560","","","403450","3981340","GW","false","" +"NM-13080","","","138314","3692370","GW","false","" +"NM-10524","","","550951","3644470","GW","false","" +"NM-00789","","","441355","3707030","GW","false","" +"NM-24214","","","235273","3934600","GW","false","" +"NM-16021","","","620346","3756550","GW","false","" +"WS-016","","","392162","3637804","GW","true","In NE most corner of boundary fence" +"DE-0186","","","611751","3599954","GW","false","" +"AH-030","HM-10","","438973","4041635","GW","true","" +"NM-06019","","","567954","3573130","GW","false","" +"AR-0058","E001","NMED 5","235190","4084200","GW","true","From Aztec take Hwy 516 west toward Farmington. Just across river, turn right on Ruins Rd (Rd 2900). Rd 2900 turns right and travels thru Natl. Monument along river. Turn right onto Rd 2845 and proceed to address on left. Well is in 3'x4' cinder block enclosure on N side of work shed between shed and pool to north." +"NM-06276","","","362688","3579690","GW","false","" +"NM-12445","","","673703","3675630","GW","false","" +"NM-11769","","","559689","3663770","GW","false","" +"NM-15748","","","243590","3751360","GW","false","" +"NM-22178","","","382643","3884250","GW","false","" +"NM-06823","","","670112","3590600","GW","false","" +"NM-08763","","","205487","3626690","GW","false","" +"NM-13583","","","549331","3692600","GW","false","" +"TV-181","","","443750","4025324","GW","true","From Hwy 240 and Tom Holder Rd. to south to Cuchilla Road. Follow road to west, up on mesa top. Second house north of Tom Holder & Romero intersection. Well is in vault in well house capped w/brown Propanel." +"NM-06731","","","339352","3588700","GW","false","" +"NM-06940","","","545690","3591200","GW","false","" +"NM-13886","","","622732","3696450","GW","false","" +"NM-23626","","","187852","3914500","GW","false","" +"NM-05037","","","680063","3560030","GW","false","" +"NM-02693","","","534293","3648130","GW","false","" +"NM-06562","22.18.17.140","","488116","3584020","GW","false","" +"NM-20686","","","420616","3850880","GW","false","" +"NM-00512","","","669310","3650290","GW","false","" +"NM-00389","","","305601","3630940","GW","false","" +"MI-0002","","","457126","3881155","GW","true","Topographic situation: Glorieta Mesa" +"NM-04752","","","680879","3555390","GW","false","" +"NM-06636","","","642186","3586900","GW","false","" +"NM-19352","","","518195","3824430","GW","false","" +"AR-0084","NMED 489","","237693","4086178","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755, then turn on Rd 2685 on north side of road to address on right. Well is in blue pump house on side of house." +"NM-27223","","","568794","3545730","GW","false","" +"DE-0052","","","590085","3558985","GW","false","" +"NM-11084","","","628940","3652850","GW","false","" +"SB-0215","TWDB 4806610","","475185","3532060","GW","false","" +"NM-26376","","","581729","4054840","GW","false","" +"MI-0270","","","585097","3953297","GW","true","Topographic situation: Plains" +"NM-14738","","","571683","3717010","GW","false","" +"CX-0070","25N26E34.1","","574897","4024220","GW","true","" +"NM-04366","M-048","","266458","3547301","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 mile. Go south on B047/Marana Rd for 9.2 miles (road jogs to the left and continues south at mile 6.0). Go east onto Leon Rd. House located 0.7 miles down the road. Well located north east of house on large concrete pad." +"NM-15789","","","625934","3749540","GW","false","" +"NM-18777","","","666755","3812540","GW","false","" +"NM-16052","","","327068","3758290","GW","false","" +"NM-19706","","","593562","3831260","GW","false","" +"NM-04893","","","267098","3558730","GW","false","" +"NM-06807","","","359221","3589840","GW","false","" +"NM-18756","","","532310","3810790","GW","false","" +"NM-03059","","","675695","3798680","GW","false","" +"MI-0200","","","494475","3940436","GW","true","Topographic situation: Plateau" +"ED-0367","26S27E13.442","","581474","3545000","GW","true","" +"NM-22855","","","655537","3892620","GW","false","" +"TO-0324","7N10E35.111","","420863","3850740","GW","true","" +"NM-24363","","","397260","3935590","GW","false","" +"NM-25801","","","604376","3997390","GW","false","" +"NM-21275","","","571295","3868280","GW","false","" +"SB-0552","TWDB 4854402","","465616","3449114","GW","false","" +"NM-09828","","","560676","3634090","GW","false","" +"NM-03078","S226","","326632","3802800","GW","false","" +"NM-27933","","","562910","3837040","GW","false","" +"NM-15116","","","673004","3733240","GW","false","" +"NM-23640","","","407470","3909900","GW","false","" +"NM-13202","","","653237","3689060","GW","false","" +"NM-07045","","","220190","3597060","GW","false","" +"NM-09010","","","202779","3629390","GW","false","" +"SB-0091","TWDB 4717320","","511263","3510115","GW","false","" +"NM-16766","","","678452","3778890","GW","false","" +"NM-06191","","","267423","3579710","GW","false","" +"NM-10978","","","548924","3650040","GW","false","" +"NM-12697","","","655345","3680130","GW","false","" +"NM-23476","","","638973","3906590","GW","false","" +"NM-00759","","","452852","3699450","GW","false","" +"NM-14333","","","546912","3701150","GW","false","" +"NM-18108","","","270135","3803060","GW","false","" +"TO-0108","4N9E16.131","","407227","3826530","GW","true","" +"NM-24064","","","402042","3926200","GW","false","" +"NM-24908","","","415526","3947440","GW","false","" +"NM-08582","","","670448","3621260","GW","false","" +"NM-21222","","","356330","3868330","GW","false","" +"NM-01241","","","362982","3892010","GW","false","" +"NM-04853","","","244051","3558940","GW","false","" +"NM-25442","","","401611","3973660","GW","false","" +"NM-26812","","","146814","3701970","GW","true","" +"NM-17739","","","570168","3792550","GW","false","" +"NM-01661","","","313629","4042320","GW","false","" +"NM-17900","","","542251","3796540","GW","false","" +"NM-25519","","","403704","3979390","GW","false","" +"NM-11028","","","653897","3652100","GW","false","" +"NM-21638","LEA-W3","","341998","3878830","GW","false","" +"NM-26934","PW-012","","370684","3908311","GW","true","" +"NM-22759","","","238961","3893840","GW","false","" +"NM-05888","","","247985","3573700","GW","false","" +"SD-0274","11N.6E.27.421","","383301","3890230","GW","true","" +"NM-10923","","","275957","3651660","GW","false","" +"SM-0076","","","455411","3639460","GW","true","Just east of Mayhill, past hair salon but before big white baptist church on right #3506 (red and white letters) on gate post. Brown adobe. Well is on south side of house. Has chocolate lab named Ben." +"NM-05048","","","263459","3561250","GW","false","" +"NM-15070","","","678543","3731740","GW","false","" +"NM-07832","","","680393","3610040","GW","false","" +"NM-00516","","","276761","3651610","GW","false","" +"NM-23619","PW-303","","360677","3910010","GW","false","" +"NM-14730","","","627341","3717150","GW","false","" +"NM-07713","","","659153","3607730","GW","false","" +"NM-18901","","","641295","3814680","GW","false","" +"NM-16218","","","669132","3764140","GW","false","" +"NM-12227","","","557058","3670560","GW","false","" +"NM-22613","","","357068","3889420","GW","false","" +"NM-03155","","","659132","3817890","GW","false","" +"NM-14252","","","633990","3700700","GW","false","" +"TO-0271","7N8E1.231","","404026","3858540","GW","true","" +"NM-10732","","","554990","3646740","GW","false","" +"NM-19194","","","635634","3821370","GW","false","" +"NM-12613","","","552152","3677370","GW","false","" +"NM-13907","","","546139","3695450","GW","false","" +"NM-28300","CN-34","","449608","4027960","GW","false","" +"NM-11847","","","286422","3667020","GW","false","" +"TS-088c","","","437960","4056034","PS","true","Rio Grande above confluence with Red River." +"NM-18310","","","551901","3803300","GW","false","" +"QU-147","TPZ-4U","","444488","4061288","GW","true","" +"NM-11499","","","402744","3659790","GW","false","" +"NM-11723","","","553939","3663150","GW","false","" +"NM-18748","","","577024","3810870","GW","false","" +"NM-27415","","","668105","3653200","GW","false","" +"TB-0098","","","418884","3722069","GW","true","500 17th Street Carrizozo. Take Hwy 54 from light at 380 heading south. South end of town bear left across tracks to 2nd road (17th St). East to Carrizozo Orchard. West of house on drive, around corner north to well on E side of driveway by powerpole." +"NM-06395","","","365583","3581720","GW","false","" +"NM-10348","","","449534","3641940","GW","false","" +"SD-0390","12N.5E.33.141","","370825","3899100","SP","true","" +"NM-09214","","","676708","3629470","GW","false","" +"NM-12845","","","629919","3682620","GW","false","" +"NM-11721","","","553602","3663120","GW","false","" +"NM-24201","","","405518","3930750","GW","false","" +"NM-03242","","","392350","3837400","GW","false","" +"NM-17636","","","654847","3791600","GW","false","" +"NM-10843","","","655990","3649460","GW","false","" +"NM-16033","","","559682","3756410","GW","false","" +"NM-04383","","","345551","3546420","GW","false","" +"NM-27688","","","640529","3796050","GW","false","" +"NM-20261","","","601148","3840920","GW","false","" +"NM-00833","","","447602","3717060","GW","false","" +"SM-5003","","","442039","3640747","M","true","Turn south off of Hwy 82, onto Coleman Ranch, well is fist one come to along main road (past ranch mgr house), on south side. Precip and weather station is by well and in fenced area along powerline. Precip collection at this site ceased 12/07. See SM-2011" +"QY-0994","9.35.11.224","","664925","3877210","GW","true","" +"NM-02036","","","339086","3554070","GW","false","" +"NM-04431","","","677092","3548580","GW","false","" +"NM-19267","","","591583","3822710","GW","false","" +"QY-0387","12.33.34.221","","643463","3899500","GW","true","" +"NM-18336","","","653675","3804760","GW","false","" +"NM-23638","","","372575","3910240","GW","false","" +"NM-09532","","","409274","3631050","GW","false","" +"NM-13636","","","142420","3700400","GW","false","" +"BC-0255","255","","375761","3890480","GW","true","" +"NM-12587","","","658717","3678180","GW","false","" +"NM-23967","","","402471","3921630","GW","false","" +"SM-1087","","","450656","3616748","SP","true","" +"NM-01566","","","631388","3988730","GW","false","" +"NM-10197","","","677670","3641070","GW","false","" +"NM-23273","","","238113","3902200","GW","false","" +"TS-102","","","436984","4044265","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"NM-23729","","","380798","3913330","GW","false","" +"NM-19561","","","612334","3829130","GW","false","" +"GT-024","CFW14-02","","352907","3968475","SP","true","" +"NM-19187","","","408880","3820360","GW","false","" +"NM-03303","","","394225","3858580","GW","false","" +"NM-01010","","","650980","3825280","GW","false","" +"NM-08040","M-184","","202509","3615350","GW","false","From the junction of US 180 & Airport Road, go SW on Airport Road for 0.5 miles. Bear right (west) to stay on Airport Road for another 2.5 miles. Go through the gate on the north side of the road. Follow 2-track for about 0.4 miles. Well located under windmill behind stock tank." +"MI-0026","","","456034","3897818","GW","true","Topographic situation: Valley" +"NM-26999","","","324304","3770520","GW","true","" +"NM-18807","","","620958","3812540","GW","false","" +"TO-0315","7N9E27.111","","409543","3852470","GW","true","" +"NM-14609","","","337299","3712010","GW","false","" +"NM-14556","","","409893","3709150","GW","false","" +"BC-0022","13","","366372","3880590","GW","true","" +"EB-215","","","402167","3927243","GW","true","#47 Rancho Alegre; west off Hwy 14 @ CR-45 (Bonanza Creek Rd), then south at Picture Rock" +"NM-11162","","","562218","3653340","GW","false","" +"NM-08812","","","176520","3628210","GW","false","" +"NM-08696","","","675883","3623170","GW","false","" +"RA-085","","","396216","4021677","GW","true","Approach from east side of creek, go through El Rito and then South." +"NM-14733","","","673824","3717850","GW","false","" +"BW-0510","1N8E33.421","","398313","3792140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0009","10.27.31.131","","579954","3878980","GW","true","" +"NM-09158","","","286928","3629200","GW","false","" +"MI-0053","","","461234","3908478","GW","true","Topographic situation: Valley" +"AS-057","DM-23","","444774","4042890","GW","true","" +"NM-03618","","","669110","4008610","GW","false","" +"AH-044","ORT","","439592","4043230","GW","true","" +"NM-20122","","","601938","3838500","GW","false","" +"AR-0005","NMED 153","","233838","4080950","GW","true","From Hwy 550 in Aztec, take McCoy Avenue north. Make right on Road 2980 to address. Well is in shallow vault (culvert pipe) behind white shed. Must walk around right side of shed next to fence to access." +"NM-20197","","","169792","3845230","GW","false","" +"NM-18464","","","571446","3806020","GW","false","" +"NM-26255","","","326100","4037430","GW","false","" +"NM-21368","","","378701","3871610","GW","false","" +"SB-0606","TWDB 4864201","","494728","3440594","GW","false","" +"NM-23455","","","371774","3905380","GW","false","" +"NM-18134","","","648003","3802080","GW","false","" +"NM-05235","","","665159","3562830","GW","false","" +"NM-19205","","","570109","3820730","GW","false","" +"NM-09724","","","218619","3636670","GW","false","" +"NM-24414","","","378497","3937210","GW","false","" +"NM-26237","","","669401","4035900","GW","false","" +"AH-008","AH-19a","","438276","4042843","GW","true","" +"SB-0239","TWDB 4807214","","482703","3536386","GW","false","" +"NM-11490","","","661772","3660980","GW","false","" +"NM-07120","","","642164","3595830","GW","false","" +"QY-0961","9.30.5.242","","611744","3877830","GW","true","" +"NM-14808","","","448596","3719650","GW","false","" +"NM-06458","","","646713","3583610","GW","false","" +"NM-17388","","","624914","3787410","GW","false","" +"NM-07899","","","202625","3613790","GW","false","" +"NM-19939","","","341255","3835850","GW","false","" +"NM-07520","","","656228","3604700","GW","false","" +"NM-23265","","","382502","3898970","GW","false","" +"NM-28035","","","245991","3886180","GW","false","" +"SM-1032","","","432350","3634430","SP","true","" +"NM-23714","","","224235","3916000","GW","false","" +"NM-19866","","","648877","3835190","GW","false","" +"NM-02864","","","432603","3717370","GW","false","" +"SB-0876","Mayer 37","","457305","3575866","GW","false","" +"NM-24312","","","470541","3933780","GW","false","" +"NM-00517","","","413443","3649770","GW","false","" +"NM-20129","","","192380","3843100","GW","false","" +"CX-0106","3","","543010","4079060","GW","true","4 miles southwest of Raton" +"NM-24583","","","404564","3940530","GW","false","" +"NM-04290","","","160539","3547080","GW","false","" +"TS-028","","","436247","4043051","SP","true","Small hot spring south of Dunn Bridge on west side." +"NM-28049","","","653763","3889790","GW","false","" +"NM-11376","","","560453","3657580","GW","false","" +"NM-11998","","","561951","3666830","GW","false","" +"NM-20926","","","558486","3856390","GW","false","" +"NM-24884","","","415570","3946800","GW","false","" +"NM-23405","","","275506","3905010","GW","false","" +"NM-10915","","","668575","3650000","GW","false","" +"NM-07305","","","208674","3602850","GW","false","" +"SB-0267","TWDB 4807408","","477736","3533779","GW","false","" +"NM-09702","","","559879","3632570","GW","false","" +"TB-1049","","","409110","3662177","ES","true","Take 70 N out of Tularosa to River Front Road. Turn L North toward River. Follow for 0.6 mi till road crosses river. Park and walk upstream ~150 m past irrigation diversion dam. Sample above dam." +"NM-08708","","","591151","3622250","GW","false","" +"NM-21104","","","187431","3867670","GW","false","" +"NM-27459","","","231802","3717150","GW","false","" +"SM-3023","","","428639","3620113","PS","true","Site visited and sampled by Trevor Kludt" +"NM-04764","","","337873","3555290","GW","false","" +"NM-10451","","","661025","3644860","GW","false","" +"NM-14227","","","545347","3699110","GW","false","" +"NM-17906","","","636723","3797510","GW","false","" +"NM-06308","","","654724","3580460","GW","false","" +"NM-08774","","","238874","3625910","GW","false","" +"NM-19667","","","655629","3831980","GW","false","" +"NM-01777","","","116545","3524760","GW","false","" +"AH-107","HM-43","","438401","4041672","GW","true","" +"MI-0059","","","486106","3908144","GW","true","Topographic situation: " +"NM-27183","","","328339","3754690","D","true","" +"NM-12916","","","552021","3682510","GW","false","" +"NM-11206","","","403990","3654570","GW","false","" +"QY-0895","8.31.33.411","","622268","3859760","GW","true","" +"NM-13477","","","449374","3691120","GW","false","" +"NM-07758","","","671863","3608710","GW","false","" +"NM-10812","","","525883","3647950","GW","false","" +"EB-235","SF-7","","418894","3941672","GW","true","#9 Stone Ridge Lane, right of #9 drive way space, under rock; summer home" +"NM-25206","","","470507","3961600","GW","false","" +"NM-20483","","","557209","3845200","GW","false","" +"NM-20906","","","391988","3856440","GW","false","" +"NM-07005","","","674131","3593810","GW","false","" +"NM-06633","","","569698","3585610","GW","false","" +"NM-12481","","","651786","3676010","GW","false","" +"NM-04952","","","136131","3563500","GW","false","" +"NM-01423","","","634583","3936480","GW","false","" +"NM-26400","","","576903","4058400","GW","false","" +"DE-0224","","","639276","3628629","GW","false","" +"NM-01158","","","339727","3867480","GW","false","" +"TB-0010","","","406490","3661090","GW","true","From Hwy north of Tularosa, head east on Bookout Road to eastern end at #162 Bookout NE. Cross-cattle guard. Go to double wide gate, head south and turn left (east) toward corrugated steel shed. Pass shed (left turn) and head south toward pasture. Well is approx 3/4 mi southwest of steel shed. On west side of 40 acre field." +"SB-0528","TWDB 4846401","","467122","3465242","GW","false","" +"NM-01486","","","209226","3955530","GW","false","" +"SB-0556","TWDB 4854406","","466780","3448864","GW","false","" +"NM-17171","","","656399","3784470","GW","false","" +"NM-27716","","","663321","3797190","GW","false","" +"NM-00503","","","321934","3649150","GW","false","" +"NM-13481","","","550630","3691190","GW","false","" +"NM-27076","","","324383","3764250","GW","true","" +"NM-13184","","","548738","3687300","GW","false","" +"NM-04829","","","269462","3557750","GW","false","" +"PC-123","PW-210","","360931","3909330","GW","true","" +"TB-0228","","","430864","3710268","GW","true","From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road thru other gate (several miles), go past the cabin and then take the right fork to the north west. Stay on main road 0.1 miles to west, past the Evilina Attic shaft another 0.2 miles to the mine on the left at the end of road." +"NM-02627","M-202","","193545","3638100","GW","false","4.8 miles N on Little Walnut Road from intersection with US 180 in west Silver City. Well is at construction yard next to steel building, house just S has address 5204 (owners?). Well is in green well house." +"NM-23080","","","288929","3897200","GW","false","" +"WL-0156","","","363386","3908867","GW","true","From I-25 north, take exit 242 for NM-165 east Placitas. Drive on 165 for 1.6 miles, then take a left at Trail Road East. Drive 400 feet to well building on east side of road just before Trail Road East on the right. Well is east of well house. Cap is locked. Far well opposite holding pools." +"NM-20502","","","198795","3850660","GW","false","" +"NM-22521","","","385197","3887940","GW","false","" +"MI-0028","","","487716","3906527","GW","true","Topographic situation: " +"NM-06535","","","341350","3584680","GW","false","" +"AR-0038","NMED 464","","221948","4074690","GW","true","Heading east out of Farmington on Hwy. 516, past Animas Valley Mall, make a right on Old Aztec Hwy just past Memory Gardens Cemetery. Turn right on Roberts Road to address. Well in shed between house and large tool shed." +"NM-12945","","","664748","3684410","GW","false","" +"NM-07963","","","670355","3611520","GW","false","" +"NM-11925","","","659476","3666550","GW","false","" +"NM-20594","","","676230","3849850","GW","false","" +"NM-17678","","","608643","3791650","GW","false","" +"EB-439","","","420929","3929690","GW","true","153 Ranch Road" +"NM-10455","","","662529","3645030","GW","false","" +"NM-06875","","","663152","3591230","GW","false","" +"NM-09302","","","227374","3632200","GW","false","" +"BW-0693","4.11.17.20.212a","","472313","3689840","GW","true","" +"SM-4083","","","426928","3624262","PS","true","Stream flow measurement by Patrick Walsh" +"UC-0136","","","641575","3994104","GW","true","Head south from Clayton on NM 402 12 miles to NM 562, turn west on 562. At 19.2 miles turn south on Thamas Road. At 27.5 miles turn west on Bluefront Road. At 32 miles turn south on O'Neal Road. At 33.5 miles Oneal Road splits, go on the to the right (SW). At 36.1 miles, Lovato Road on right, stay straight on Oneal. At 37.6 miles, turn right on gravel road. Y at 38 miles, go left (south). At 39.5 miles look for 2 track leading uphill to right, well is 0.1 miles up hill." +"NM-10344","","","538808","3641860","GW","false","" +"WS-007","","","381332","3632407","GW","true","NE corner of picnic loop" +"AR-0071","","","234364","4082272","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on 2930, stay right at the fork, then left on Rd 2929 loop and house should be on left. Well is in 8'x6' wooden shed about 20' off Rd 2929." +"NM-21000","","","557178","3858350","GW","false","" +"PC-026","PW-042","","367435","3907309","GW","true","" +"NM-25102","","","410852","3955220","GW","false","" +"NM-00066","","","588147","3546330","GW","false","" +"NM-08052","","","278357","3613790","GW","false","" +"TV-122","SWS-58","","441974","4023904","GW","true","From SR 68, take SR 96 west past National Guard on left. Make right onto Vista de Ocaso and go ~0.6 miles. Home is on corner of Vista de Ocaso & unnamed street. Driveway is off of unnamed street, not Vista del Ocaso. Well ~10' east (right side) of driveway, half way between road and house. Shawnie works at home so call 30 min prior to arrival and she can turn off water." +"NM-21334","","","357615","3870960","GW","false","" +"NM-19900","","","212878","3838450","GW","false","" +"NM-15222","","","625156","3736350","GW","false","" +"NM-19982","","","591940","3835590","GW","false","" +"NM-09567","","","211337","3635150","GW","false","" +"NM-14014","","","571707","3696560","GW","false","" +"NM-18873","","","660254","3814210","GW","false","" +"NM-09105","","","672257","3628040","GW","false","" +"NM-00092","","","578104","3552660","GW","false","" +"NM-10476","","","559915","3643750","GW","false","" +"NM-14020","","","456944","3696450","GW","false","" +"NM-20708","","","623926","3851890","GW","false","" +"CX-0086","24N26E16.42","","574307","4018720","GW","true","" +"QU-028","CER-12","","446563","4071082","GW","true","" +"NM-19344","","","448850","3824680","GW","false","" +"NM-20895","","","403668","3855970","GW","false","" +"NM-16859","","","595243","3778760","GW","false","" +"NM-07677","","","214077","3609970","GW","false","" +"NM-11737","","","561972","3663380","GW","false","" +"NM-17417","","","642905","3787800","GW","false","" +"NM-13334","","","555344","3689490","GW","false","" +"NM-23173","","","612865","3897260","GW","false","" +"NM-08245","","","299945","3616320","GW","false","" +"QY-0885","8.31.12.313","","626350","3866080","GW","true","" +"SM-0142","","","469136","3632507","GW","true","Hwy 24 to Miller Flats Rd., turn Right on McDonald Flats Rd. Go about 4.3 mi. Turn right at Mule Canyon Rd, go about 0.5 mi. Then left before cattle guard before going thru fence into Yates (PayJay) property. Go about 2.6 mi (initially along red pipe fence). Pass dammed retention pond. Then left at fork (~0.4mi) back to rusty gate at hunting shacks. Sonic only." +"NM-06352","","","576557","3580340","GW","false","" +"NM-10157","","","667208","3640340","GW","false","" +"NM-23932","","","401141","3919950","GW","false","" +"NM-27637","","","621580","3794150","GW","false","" +"NM-14219","","","140335","3705600","GW","false","" +"BC-0267","326","","375281","3888230","GW","true","" +"NM-04069","","","314084","3533140","GW","false","" +"TS-059","","","437250","4062227","SP","true","West side of river on canyon wall w/vegetation signature ~ 100 ft. above river." +"NM-23870","","","391379","3917820","GW","false","" +"BC-0078","63","","375168","3889960","GW","true","" +"QY-0103","10.34.17.222","","650280","3885140","GW","true","" +"NM-18885","","","162746","3819040","GW","false","" +"NM-09325","","","199819","3633210","GW","false","" +"NM-07567","M-177","","226096","3607937","GW","false","From junction of US 180 and Perrin Rd, drive north on Perrin Rd 9.6 miles. Park at gate. Park on Perrin and walk through gate. Walk S-SW for 600 ft to well on berm." +"BW-0867","2.3.6.34.431","","380415","3811290","GW","true","" +"SM-3045","","","562317","3604860","R","true","Yates Formation Gypsum sampled near Brantly Reservoir, at railroad cut. Sampled by Lewis Land." +"NM-04755","","","136096","3560330","GW","false","" +"TO-0200","6N5E25.344","","374619","3842060","GW","true","" +"NM-18173","","","656967","3802410","GW","false","" +"AB-0039","S045","","354427","3884530","GW","true","" +"NM-09488","","","562622","3630560","GW","false","" +"QU-089","MW-24","","445860","4062332","GW","true","See Chevron map of monitoring wells." +"SB-0581","TWDB 4861201","","459439","3439900","GW","false","" +"AR-0016","C009","NMED 136","230933","4078710","GW","true","From Hwy 544 in Aztec, take Rd. 3000 west, turn right on Rd. 3009 towards the river. After Rd 3010 stay left at first fork, and stay left at next fork to residence. Rental property is on the right, owner's residence is on left. Well in wood box outside shed." +"TB-0183","","","411557","3711618","GW","true","[Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill south to right fork before windmill, through gate to windmill.] From Nagel well, take road south to Windmill on Ridge, approximately 2.5 miles. Can follow road out to HQ or double back to other wells. Can also access from HQ side from Horse Pasture Well (TB-182) by staying on road north thru locked gate, through draw and up to left (SW) to Mill on Ridge." +"NM-12350","","","555440","3672610","GW","false","" +"NM-25299","","","314101","3968190","GW","false","" +"NM-02211","","","169055","3571780","GW","false","" +"NM-10161","","","438239","3638370","GW","false","" +"NM-04443","","","135737","3553240","GW","false","" +"NM-11497","","","406115","3659750","GW","false","" +"SM-4012","","","432925","3631286","PS","true","Stream flow measurement by Patrick Walsh" +"TV-169","","","443870","4027780","GW","true","House is west of highway on hill." +"NM-22052","","","610839","3883030","GW","false","" +"NM-01106","","","531320","3854130","GW","false","" +"NM-11579","","","673090","3662010","GW","false","" +"QY-0740","6.32.27.444","","634328","3841630","GW","true","" +"SD-0100","9N.6E.30.321","","377413","3871030","GW","true","" +"TB-0069","","","411769","3689666","GW","true","Three Rivers Road NE to turn off on SE side - Golondrina Rd. East around to right to tank west of road. Well is just north of road on south side of old tank foundation." +"NM-12789","","","673325","3682310","GW","false","" +"NM-25510","","","638676","3978980","GW","false","" +"WL-0165","","","614070","3703827","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well near solar panels." +"NM-07499","","","588873","3603320","GW","false","" +"NM-02309","","","334726","3576070","GW","false","" +"NM-27859","","","656783","3811670","GW","false","" +"NM-24444","","","379161","3937880","GW","false","" +"NM-02307","","","311341","3576420","GW","false","" +"NM-20473","","","675532","3846450","GW","false","" +"BC-0271","295","","374882","3888570","GW","true","" +"PC-089","PW-158","","369974","3909011","GW","true","" +"MI-0149","","","527060","3932179","GW","true","Topographic situation: Plateau" +"NM-26672","","","447649","4074610","GW","false","" +"ED-0266","22S30E10.31","","605758","3585790","GW","true","" +"NM-04139","","","140547","3541310","GW","false","" +"NM-19353","","","568193","3824720","GW","false","" +"NM-13488","","","550320","3691220","GW","false","" +"NM-06004","","","575070","3572930","GW","false","" +"BW-0728","4.21.33.1.114","","638446","3598080","GW","true","" +"NM-20132","","","396360","3838640","GW","false","" +"NM-10764","","","547769","3647410","GW","false","" +"NM-25786","","","405765","3996260","GW","false","" +"NM-12433","","","616479","3674880","GW","false","" +"UC-0170","","","673551","4084250","GW","false","" +"NM-20354","","","673882","3843580","GW","false","" +"NM-22474","","","374812","3887560","GW","false","" +"QY-0768","7.29.8.121","","600850","3856940","GW","true","" +"NM-07253","","","618044","3597950","GW","false","" +"NM-01217","","","675489","3885740","GW","false","" +"TO-0051","3N12E9.231","","437017","3818280","GW","true","" +"SB-0594","TWDB 4862805","","471311","3430995","GW","false","" +"NM-21868","","","348895","3881630","GW","false","" +"NM-06514","","","679098","3584810","GW","false","" +"NM-27682","","","675560","3796460","GW","false","" +"BC-0357","349","","376674","3889478","GW","true","" +"NM-07557","","","205389","3608410","GW","false","" +"NM-27713","","","653837","3797000","GW","false","" +"NM-17380","","","224192","3790020","GW","false","" +"MI-0101","","","533348","3925632","GW","true","Topographic situation: Valley" +"NM-20724","","","617898","3852210","GW","false","" +"NM-12358","","","271709","3675360","GW","false","" +"NM-10238","","","646997","3641280","GW","false","" +"TO-0479","1S8E1.433","","402592","3790080","GW","true","" +"NM-00544","","","652400","3655870","GW","false","" +"NM-19058","","","569477","3816540","GW","false","" +"NM-25667","","","324234","3988050","GW","false","" +"BW-0945","","","593417","3651730","GW","true","" +"NM-20783","","","233693","3856520","GW","false","" +"NM-16731","","","652900","3777610","GW","false","" +"NM-22642","","","355176","3889850","GW","false","" +"NM-13514","","","543728","3691580","GW","false","" +"NM-01752","","","169474","3493390","GW","false","" +"EB-061","","","420208","3936150","GW","true","" +"NM-24337","","","414374","3934850","GW","false","" +"NM-12258","","","632444","3672000","GW","false","" +"NM-23684","","","372619","3911530","GW","false","" +"NM-25358","","","472366","3970160","GW","false","" +"BW-0524","14S8E13.1","","393072","3663250","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20321","","","635756","3842510","GW","false","" +"NM-16330","","","632557","3768330","GW","false","" +"NM-10521","","","669084","3646100","GW","false","" +"NM-22536","","","375100","3888260","GW","false","" +"NM-13391","","","546836","3690180","GW","false","" +"NM-16176","","","333476","3762000","GW","false","" +"NM-21240","","","346780","3868900","GW","false","" +"ED-0366","26S27E5.44","","574935","3548050","GW","true","" +"SB-0214","TWDB 4806609","","475216","3534185","GW","false","" +"NM-13769","","","551671","3694770","GW","false","" +"NM-21493","","","343621","3875960","GW","false","" +"QU-053","","","444153","4060007","GW","true","2292 State Hwy. 522 Yellow stucco house w/green metal roof. Well in vault." +"NM-10929","","","609613","3649820","GW","false","" +"NM-27640","","","640421","3794730","GW","false","" +"NM-16516","","","213176","3776660","GW","false","" +"NM-22213","","","391233","3884670","GW","false","" +"NM-02515","","","664421","3615610","GW","false","" +"NM-08510","","","669842","3620140","GW","false","" +"NM-27201","","","381243","3834486","GW","false","" +"EB-585","","","403853","3955866","GW","true","La Tierra subdivision off of Camino La Tierra. 158 Headquarter 1.5 mi from gate on Right." +"NM-09564","","","410655","3631350","GW","false","" +"NM-26730","","","188191","4090240","GW","false","" +"NM-17128","","","657558","3784060","GW","false","" +"NM-12443","","","557140","3674190","GW","false","" +"BW-0358","17S9E24.142","","408846","3632220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09634","","","663741","3633070","GW","false","" +"NM-03185","","","467231","3824850","GW","false","" +"NM-04111","","","255603","3536470","GW","false","" +"NM-22088","","","382101","3883490","GW","false","" +"SV-0002","08 Arroyo Bonito","","378735","3900491","GW","false","Unit 3 Lot 165" +"NM-16598","","","677886","3776290","GW","false","" +"NM-04999","","","583328","3558030","GW","false","" +"NM-23433","","","664171","3904980","GW","false","" +"SA-0434","4S14W23.230","","198177","3760950","GW","true","" +"NM-04606","","","130605","3558120","GW","false","" +"BC-0395","398","","","","GW","false","" +"NM-00926","","","535277","3799770","GW","false","" +"NM-16296","","","205445","3770700","GW","false","" +"AB-0006","S007","","366756","3890660","GW","true","" +"SA-0029","SA-29_R00","","249289","3768062","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) Go south approx 4.8 miles and 0.7 miles south of MM 84 and bear right (west) at fork on CO E-30 (at sign that says Dusty/Beaverhead). Go 3.8 miles to Bruton Ranch HQ and take road to the north between the houses and then west to windmill and pens. Go through gate to the north and take 2 track heading south west (left) (1/4 mile) Take two track to west parallel to railroad tracks through the two white gates and then 1.7 miles southwest to green storage tank and solar panels on the south side of the road. [Cathie adds: Can go north thru gate at WM and pens, across RR track, 2 miles then west 4 miles to ranch house. 2.4 miles south to SA-0114 and Kiehne ranch]" +"NM-18715","","","667408","3811750","GW","false","" +"NM-18389","","","651237","3805870","GW","false","" +"ED-0251","22S27E35.433","","579248","3578710","GW","true","" +"NM-23775","","","385842","3914900","GW","false","" +"TO-0471","10N9E31.121","","406325","3879480","GW","true","" +"NM-16126","","","219168","3763250","GW","false","" +"NM-27286","","","330679","3581250","GW","false","" +"BW-0852","4.25.4.35.122","","357793","3551980","GW","true","" +"NM-26599","","","677341","4071080","GW","false","" +"NM-27159","PS-003","","370924","3907949","SP","true","" +"TO-0289","7N8E16.142","","399028","3855470","GW","true","" +"NM-23621","","","185853","3914480","GW","false","" +"NM-06268","","","329169","3580070","GW","false","" +"NM-10434","","","669106","3644810","GW","false","" +"NM-11295","","","670727","3657680","GW","false","" +"NM-04804","","","233465","3558350","GW","false","" +"NM-05894","","","235318","3574060","GW","false","" +"NM-21067","","","398216","3861420","GW","false","" +"PC-009","PW-021","","367974","3907951","GW","true","" +"DE-0152","","","614870","3631772","GW","false","" +"NM-19911","","","601139","3834790","GW","false","" +"NM-02668","","","545443","3645060","GW","false","" +"NM-23753","","","645086","3914540","GW","false","" +"NM-06648","","","676129","3587130","GW","false","" +"NM-28457","","","476890","4072040","GW","true","" +"NM-10071","","","554287","3637680","GW","false","" +"NM-19191","","","585436","3820340","GW","false","" +"BW-0212","14S9E26.442b","","402200","3658870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04780","","","564175","3554350","GW","false","" +"NM-03068","","","570500","3799330","GW","false","" +"NM-21249","","","346624","3869040","GW","false","" +"NM-07210","","","211740","3600450","GW","false","" +"QY-0974","9.32.13.233","","637415","3875220","GW","true","" +"NM-12289","","","552234","3671670","GW","false","" +"TB-0065","","","411189","3691866","GW","true","Bad directions - Three rivers Campground road 3-4 miles in? At shed right along road (on right side), well is south from this shed. No road to get there across a field. Well is south of GPS location!" +"SB-0533","TWDB 4853103","","452584","3453044","GW","false","" +"QU-515","","","440747","4059193","SP","true","Along Red River downstream of fish hatchery. ~80' vertical above river." +"NM-04018","M-015","","268363","3530384","GW","false","Go east on NM 9 from Columbus 2.5 miles, turn north at cattle guard and go 0.6 miles, turn east on paved road CR B003 Pol Ranch Road. Go 10.6 miles, turn left north at Ramon Corrals sign and follow faint 2-track 1.4 miles across flats. Look for solar well. Look for pipe a couple of hundred yards W of solar well. Not accessible if wet!" +"NM-28149","","","655794","3610730","GW","false","" +"NM-15895","","","202483","3756510","GW","false","" +"NM-16617","","","679882","3776480","GW","false","" +"EB-506","","","410173","3967833","GW","true","" +"NM-16634","","","669634","3776200","GW","false","" +"NM-26828","","","168782","3782980","GW","true","" +"NM-18286","","","278220","3805390","GW","false","" +"SD-0052","8N.6E.11.223","","383603","3867090","GW","true","" +"NM-20523","","","549599","3846570","GW","false","" +"NM-16469","","","207862","3775770","GW","false","" +"NM-02898","","","679669","3732130","GW","false","" +"TC-277","CO-25","","425334","4105812","GW","true","" +"NM-22539","","","353815","3888610","GW","false","" +"NM-06508","","","224274","3586840","GW","false","" +"NM-07651","","","203190","3609980","GW","false","" +"NM-28340","148841","","201200","3677891","SP","false","Gila National Forest" +"SV-0006","07 Calle Lomita","","377472","3900270","GW","false","Unit 3 Lot 82" +"NM-20803","","","594048","3853450","GW","false","" +"NM-07054","","","359441","3594300","GW","false","" +"NM-11921","","","285685","3667720","GW","false","" +"NM-23791","","","643503","3915690","GW","false","" +"SB-0339","TWDB 4807631","","486008","3535334","GW","false","" +"QY-1020","9.27.36.244","","589430","3869650","SP","true","" +"NM-21964","","","625568","3882140","GW","false","" +"QY-0569","5.28.36.331","","597714","3830150","GW","true","" +"NM-04429","","","246230","3549550","GW","false","" +"NM-23112","","","350562","3896560","GW","false","" +"WL-0218","","","246691","3645338","GW","true","Take Rt 152 east from Hillsboro, veer right into Kingston off of Rt 152, continue on Main Street for 0.2 miles. Home is on the right at 35 Kingston Main. Well is just off of the driveway, behind fence, in wooden shed. Gate Code: 1984" +"NM-01059","","","661302","3843990","GW","false","" +"SD-0201","10N.6E.14.424","","384374","3883940","GW","true","" +"NM-22744","","","237965","3893560","GW","false","" +"NM-15353","","","671881","3741290","GW","false","" +"NM-15357","","","658710","3741250","GW","false","" +"NM-13087","","","399800","3686210","GW","false","" +"NM-04971","","","242886","3560580","GW","false","" +"NM-21949","","","346619","3882320","GW","false","" +"SB-0647","TWDB 4915206","","388060","3523557","GW","false","" +"WL-0115","","","636376","4033001","GW","true","Heading E on 56 from Springer east toward Clayton; after about 67 miles make a left on Cty Rd A016 (right before mm 67). At first ""V"" make a left. At 2nd 'V"" make a right (A036). At the ""T"" make a left (A034). Follow until you get to Jenny Lane, and make a left. Well is southeast of the house and driveway. If visiting for the first time, recommend using a navigation app and have the coordinates programmed into your GPS unit." +"NM-23333","","","353530","3900760","GW","false","" +"SA-0050","SA-50_R0?","","187047","3757787","GW","true","Near steel tank to south." +"NM-05088","","","266356","3561830","GW","false","" +"NM-03637","","","650360","4028980","GW","false","" +"TO-0351","8N8E13.324","","403820","3864440","GW","true","" +"NM-07782","","","226772","3611250","GW","false","" +"NM-17138","","","652409","3784160","GW","false","" +"TV-286","","","440850","4019903","GW","true","25 Camino Perdido. In vicinity of Stake Out Drive and Tierra Blanca from Google Earth." +"NM-16492","","","551435","3771850","GW","false","" +"BW-0347","17S9E8.244","","403147","3635520","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DA-0123","25S3E12.41","","350292","3557790","GW","true","6"" well near irrigation well measured" +"TS-119","","","427099","4013037","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"MI-0178","","","466076","3944229","GW","true","Topographic situation: Mountains" +"NM-01075","","","594319","3846540","GW","false","" +"NM-17034","","","655408","3782420","GW","false","" +"EB-518","","","414156","3934932","GW","true","NMED DWB well file number does not match location" +"NM-01274","","","643052","3899560","GW","false","" +"NM-11647","","","399654","3661940","GW","false","" +"NM-08036","","","600475","3611470","GW","false","" +"NM-07641","","","554984","3605630","GW","false","" +"PC-095","PW-171","","368055","3906585","GW","true","" +"NM-17012","","","658464","3781950","GW","false","" +"NM-19375","","","596422","3825620","GW","false","" +"BC-0146","129","","357899","3895990","GW","true","" +"NM-14510","","","553232","3706750","GW","false","" +"NM-17319","","","653601","3786460","GW","false","" +"NM-03847","","","353231","3519850","GW","false","" +"NM-02884","","","679455","3724290","GW","false","" +"NM-28400","S-2014-012","","636887","3598448","GW","true","" +"SM-0046","","","442173","3607555","GW","true","Well is along Sacramento River roadside, south of Timberon. If heading SE, well is on R side by fence and first house along right side." +"AB-0026","S029","","329444","3877140","GW","true","" +"NM-06734","","","569970","3587800","GW","false","" +"NM-07578","","","660725","3605700","GW","false","" +"NM-12460","","","657247","3676190","GW","false","" +"SB-0505","TWDB 4837302","","463558","3481540","GW","false","" +"NM-15529","","","658940","3744400","GW","false","" +"NM-04650","","","604522","3552960","GW","false","" +"NM-03048","","","676447","3794170","GW","false","" +"NM-04860","","","133807","3562410","GW","false","" +"NM-23785","","","644059","3915640","GW","false","" +"AH-100","HM-26","","437891","4041564","GW","true","" +"NM-02131","","","129176","3567180","GW","false","" +"NM-13838","","","543867","3695130","GW","false","" +"NM-11658","","","669147","3663510","GW","false","" +"BW-0507","1N7E26.332","","390681","3793440","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09791","","","617973","3634540","GW","false","" +"NM-19726","","","647496","3832340","GW","false","" +"NM-23380","","","228757","3905000","GW","false","" +"NM-10250","","","281735","3642780","GW","false","" +"NM-06262","","","560267","3576960","GW","false","" +"NM-18102","","","657791","3801940","GW","false","" +"NM-02035","","","336280","3554020","GW","false","" +"NM-17276","","","643296","3785650","GW","false","" +"NM-10016","","","671973","3638390","GW","false","" +"NM-21041","","","562702","3860020","GW","false","" +"NM-03251","","","576148","3839670","GW","false","" +"NM-02652","","","551050","3640530","GW","false","" +"NM-26683","","","431781","4076290","GW","false","" +"NM-07259","","","407327","3597840","GW","false","" +"DA-0119","25S2W5.31","","304469","3560150","GW","true","" +"NM-14284","","","628819","3701120","GW","false","" +"NM-12650","","","555590","3678030","GW","false","" +"NM-25868","","","564718","4001260","GW","false","" +"SA-0068","SA-68_R00","","252029","3730435","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south for approximately 32 miles toward Dusty. Just south of MM 56 and north of the cattle guard turn west towards the trees in the draw. Well is to the south of a large metal storage tank about ten feet north of the power pole with the electric meter and is visible from the road." +"NM-02948","","","677992","3751540","GW","false","" +"NM-27679","","","645032","3795880","GW","false","" +"NM-02166","","","335517","3565180","GW","false","" +"AR-0512","","","240727","4090032","PS","true","" +"NM-19027","","","600319","3816390","GW","false","" +"NM-20488","","","679087","3846820","GW","false","" +"TB-2002","","","404897","3661652","M","true","Off of Hwy 54, take east turn onto Bookout Road, just north of Pecan Orchard and vet clinic. Sign to Horseman's Park. Go about 1/2 mi, look for mailbox #56 on left, driveway is on right." +"NM-14613","","","631688","3712310","GW","false","" +"NM-05782","","","658834","3570180","GW","false","" +"NM-24973","","","405231","3948780","GW","false","" +"QU-545","","","439887","4057768","SP","true","From Wild Rivers Rec. Area, take trail marked El Aguaje down into the valley." +"NM-08004","","","232018","3614160","GW","false","" +"NM-10647","","","547933","3645780","GW","false","" +"NM-18426","","","363124","3806100","GW","false","" +"NM-22379","","","661812","3887060","GW","false","" +"NM-09648","","","560220","3632080","GW","false","" +"NM-17605","","","637511","3790860","GW","false","" +"NM-21678","","","340339","3879500","GW","false","" +"BC-0001","1","","380426","3869770","GW","true","" +"DA-0018","20S4W22.44","","290302","3603630","GW","true","" +"AR-0048","","","222819","4074140","GW","true","From Farmington, take Hwy 516 toward Aztec. Turn right on Rd 350 across the river. Turn right on Rd 3000, turn left on Rd 3665. Through three sharp turns to address. Well is outside front gate to left." +"JM-503","","","312413","3652920","SP","true","Take CRA18 south of Engle to Aleman Road and turn to left. Drive past turnoff to bridge over Aleman Draw. Park at bridge and descend to arroyo channel." +"NM-17008","","","636977","3781860","GW","false","" +"NM-07515","","","217292","3607350","GW","false","" +"UC-0180","","","638092","4081855","GW","false","" +"NM-18327","","","622137","3804360","GW","false","" +"QY-0817","7.32.21.421","","632377","3853460","GW","true","" +"NM-08317","","","292153","3617650","GW","false","" +"ED-0167","22S24E36.131","","550995","3579460","GW","true","" +"NM-10484","","","553863","3643810","GW","false","" +"NM-06796","","","668216","3589890","GW","false","" +"NM-00479","","","632582","3644550","GW","false","" +"NM-19818","","","160914","3838830","GW","false","" +"NM-27146","","","444435","4061090","GW","true","" +"SB-0665","TWDB 4915502","","387027","3520520","GW","false","" +"DA-0073","23S4W26.441","","291336","3572880","GW","true","" +"NM-16362","","","215871","3772410","GW","false","" +"NM-13294","","","128933","3695810","GW","false","" +"BW-0938","USBR WW01","","408435","3638741","GW","true","Site visited by Shari Kelley (WW01 and WW02), but wells not inventoried." +"NM-21607","","","322597","3878410","GW","false","" +"PC-045","PW-072","","369446","3910370","GW","true","" +"TB-0300","","","401670","3667675","GW","true","Going N on Hwy 54 from Tularosa, turn W 0.7 mi N of mile post 84 at fenced structure (fiberoptics station). Follow Rd 0.8 mi to large black tank. Well is on W side of tank." +"EB-621","","","396940","3970664","PS","true","Rio Grande at Otowi - Rt 502 Bridge crossing" +"NM-07467","","","206483","3606520","GW","false","" +"NM-04653","","","235158","3555870","GW","false","" +"NM-11837","","","555564","3664480","GW","false","" +"PP-018","PW-16","","434756","4003955","GW","true","" +"SD-0263","11N.6E.19.313","","377203","3891730","GW","true","" +"NM-00878","","","305925","3773640","GW","false","" +"NM-22553","","","391326","3888270","GW","false","" +"NM-07269","","","669887","3599220","GW","false","" +"NM-16063","","","202464","3761660","GW","false","" +"NM-02403","","","226761","3590750","GW","false","" +"NM-11378","","","668363","3659370","GW","false","" +"NM-26124","","","314450","4023710","GW","false","" +"NM-11294","","","404058","3656230","GW","false","" +"NM-03963","","","346546","3525280","GW","false","" +"DA-0161","27S2E25.111","","339457","3534600","GW","true","" +"NM-27910","","","596110","3826240","GW","false","" +"NM-10792","","","552492","3647810","GW","false","" +"NM-26920","PW-131","","369099","3910203","GW","true","" +"NM-07516","","","215988","3607420","GW","false","" +"NM-26113","","","407035","4021540","GW","false","" +"NM-04722","","","680810","3554900","GW","false","" +"NM-06746","","","676222","3589260","GW","false","" +"BW-0389","17S10E18.432","","410861","3631640","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"WL-0017","NM3500202","","176595","3805560","GW","true","Meet at QMWSWA building 16 3rd St, Quemado. Well location: from intersection of Hwy 60 and Hwy 36, drive west on Hwy 60 through Quemado about 1.4 miles, turn S on dirt road, through gate (NEED KEY), drive about 400 ft. Well 1 in outside fenced enclosure, 200 ft SW of Well 2." +"NM-23875","","","412873","3917740","GW","false","" +"NM-24229","","","208759","3935860","GW","false","" +"ED-0354","25S28E29.41","","584293","3551840","GW","true","" +"NM-03150","","","664002","3816620","GW","false","" +"NM-13524","","","645914","3692740","GW","false","" +"AB-0174","S224","","364681","3909270","GW","true","" +"NM-15267","","","550648","3736860","GW","false","" +"NM-24172","","","404528","3930020","GW","false","" +"NM-24131","","","343115","3929870","GW","false","" +"NM-10662","","","643850","3646810","GW","false","" +"PC-022","PW-036","","371306","3908387","GW","true","" +"NM-16424","","","268091","3773050","GW","false","" +"NM-01412","","","664044","3935390","GW","false","" +"NM-28435","S-2017-016","","614515","3580716","GW","true","" +"AB-0005","S006","","340803","3884420","GW","true","" +"NM-02397","","","361628","3586260","GW","false","" +"NM-15422","","","135004","3747690","GW","false","" +"NM-14719","","","563801","3716120","GW","false","" +"NM-05416","","","234348","3568040","GW","false","" +"NM-19215","","","633481","3822080","GW","false","" +"NM-10559","","","471751","3644840","GW","false","" +"NM-03304","","","412521","3859020","GW","false","" +"NM-00128","","","674581","3561060","GW","false","" +"NM-19607","","","600099","3829700","GW","false","" +"NM-26403","","","585318","4058540","GW","false","" +"NM-17223","","","644559","3785080","GW","false","" +"WL-0183","","","439515","3929338","GW","true","From Pecos, NM drive south on Hwy 63. Turn left (east) into Forked Lightning Ranch, drive 0.5 miles to red building. The Hacienda well is along the west side of the red wall. Physical address of well is 92 Hwy 63 in Rowe, NM." +"NM-02269","","","334047","3572940","GW","false","" +"BW-0845","4.17.8.13.231","","399483","3633920","GW","true","" +"SD-0394","12N.5E.36.334","","375919","3898550","SP","true","" +"QY-0612","5.29.4.333","","602493","3838100","GW","true","" +"AS-030","ES-18","","451876","4041590","GW","true","" +"NM-00236","","","576653","3584890","GW","false","" +"SB-0368","TWDB 4807812","","481898","3526812","GW","false","" +"BW-0457","22S6E8.414a","","373147","3586390","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15489","","","679955","3744250","GW","false","" +"NM-10907","","","543686","3648960","GW","false","" +"NM-12458","","","668953","3676200","GW","false","" +"NM-26926","PW-024","","369463","3910581","GW","true","" +"NM-04152","","","342914","3537030","GW","false","" +"NM-07811","","","661134","3609400","GW","false","" +"BC-0176","156","","378818","3885670","GW","true","" +"NM-16386","","","217518","3773380","GW","false","" +"NM-13789","","","546271","3694950","GW","false","" +"SO-0073","3N1W35.43","","324399","3812180","GW","true","" +"TO-0302","7N8E26.141","","402051","3852200","GW","true","" +"NM-13188","","","650912","3688870","GW","false","" +"NM-08108","","","343240","3613580","GW","false","" +"NM-12552","","","675056","3678220","GW","false","" +"NM-07517","","","250974","3606520","GW","false","" +"QU-017","CER-25","","448249","4077814","GW","true","" +"NM-20968","","","575135","3857740","GW","false","" +"NM-14420","","","404168","3704190","GW","false","" +"NM-26254","","","446491","4035850","GW","false","" +"NM-08012","","","216143","3614690","GW","false","" +"NM-15874","","","609537","3752050","GW","false","" +"QY-0647","5.30.19.423","","610116","3833700","GW","true","" +"CX-0147","63","","517319","4030950","GW","true","5 1/3 miles north of Miami" +"NM-05358","M-097","","209741","3567980","GW","false","Take NM418 20.5 miles W from intersection of Pine St & NM11 in Deming. South on CR020 1.1 miles, east on CR021 ~ 0.25 miles, well north of road in mesquite scrubland. Look for low pile of gray gravel. Well head flat on ground." +"NM-06776","","","676240","3589750","GW","false","" +"NM-18851","","","623781","3813290","GW","false","" +"NM-08071","","","308102","3613540","GW","false","" +"NM-04718","","","237250","3556620","GW","false","" +"AR-0504","","","230594","4078740","PS","true","" +"NM-00852","","","324774","3742110","GW","false","" +"NM-11895","","","556156","3665260","GW","false","" +"NM-17423","","","664037","3788490","GW","false","" +"TO-0374","8N9E35.333","","411284","3859160","GW","true","" +"DA-0112","24S2E9.132","","335273","3568090","GW","true","" +"BC-0250","250","","373605","3885570","GW","true","" +"WL-0170","","","550507","3737120","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well under metal windmill next to tall stock tank. Small metal fence around base of windmill." +"NM-06014","","","345107","3574030","GW","false","" +"AB-0215","S271","","345603","3886620","GW","true","" +"NM-01303","","","626837","3906990","GW","false","" +"NM-13181","","","556934","3687310","GW","false","" +"NM-13009","","","638187","3685360","GW","false","" +"NM-01492","","","662272","3953540","GW","false","" +"NM-23053","","","677646","3895860","GW","false","" +"NM-15628","","","140926","3751660","GW","false","" +"NM-11780","","","558367","3663820","GW","false","" +"EB-051","","","418290","3941600","GW","true","" +"DE-0149","","","615442","3631189","GW","false","" +"NM-07138","","","223926","3598900","GW","false","" +"QU-162","","","444540","4068426","GW","true","Follow Cerro Road to #163. Well is on south side of house." +"NM-16446","","","285742","3773130","GW","false","" +"NM-04744","","","653485","3555200","GW","false","" +"SM-3006","","","435924","3647655","R","true","Site visited and sampled by Jeremiah Morse" +"RA-032","","","359191","4086787","GW","true","Well in front yard." +"NM-20807","","","587493","3853410","GW","false","" +"NM-20882","","","587524","3855450","GW","false","" +"QY-0409","12.35.2.111","","663116","3907860","GW","true","" +"NM-06758","","","348474","3589100","GW","false","" +"NM-25177","","","602284","3959960","GW","false","" +"MI-0203","","","511304","3941047","GW","true","Topographic situation: Valley" +"NM-21955","","","584995","3881520","GW","false","" +"NM-24102","","","640196","3928610","GW","false","" +"NM-25578","","","409093","3982050","GW","false","" +"NM-15324","","","661741","3740010","GW","false","" +"NM-24410","","","398559","3936870","GW","false","" +"WL-0322","","","191882","3621828","GW","true","" +"NM-22737","","","363391","3890710","GW","false","" +"NM-23661","PW-307","","361321","3910870","GW","false","" +"NM-24768","","","408961","3944770","GW","false","" +"NM-24004","","","407507","3923310","GW","false","" +"NM-27420","","","661973","3657700","GW","false","" +"PC-145","PS-23","","366134","3908380","SP","true","" +"BW-0388","17S10E18.424a","","411261","3632040","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TO-0199","5N14E23.422","","461888","3833890","GW","true","" +"NM-10987","","","548119","3650150","GW","false","" +"NM-12049","","","275926","3670090","GW","false","" +"NM-06180","","","608796","3577360","GW","false","" +"NM-01505","","","197283","3964230","GW","false","" +"NM-22974","","","354285","3894270","GW","false","" +"QY-0070","10.31.23.444","","626241","3881880","GW","true","" +"NM-25583","","","635135","3982740","GW","false","" +"NM-16522","","","651828","3774170","GW","false","" +"EB-522","","","415707","3958165","GW","true","" +"PC-104","PW-182","","368425","3908348","GW","true","" +"QY-0481","15.35.22.133","","661575","3931540","GW","true","" +"DE-0033","","","585624","3603773","GW","true","From Carlsbad (junction of Greene & Canal Streets), go east on Hobbs Hwy (HWY 62) ~13.8 mi to CR-238, turn north (right). Drive north on CR-238 ~2.0 mi, then turn west (left) which is still CR-238. Follow CR-238 ~3.0 mi, turn north (right) on dirt road. Well is ~0.2 mi north on east (right) side of road under windmill tower." +"BW-0554","16S9E26.300a","","407099","3639740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-0173","","","417415","3721889","GW","true","12229 Hwy 545 south. Mile 122-123. Look for old service station. Well is on road to west of station to back of house. Turn right (south) at yucca on road along fence to well." +"NM-20323","","","630567","3842430","GW","false","" +"NM-11677","","","564780","3662200","GW","false","" +"NM-25872","","","629961","4002200","GW","false","" +"NM-01397","","","174614","3936140","GW","false","" +"NM-11695","","","558142","3662470","GW","false","" +"NM-13910","","","545338","3695440","GW","false","" +"NM-11106","","","556126","3652320","GW","false","" +"NM-07947","","","558869","3610030","GW","false","" +"CP-0009","","","646827","3813045","GW","true","From Clovis go west on Hwy 60 past Cannon AFB, turn right (north) on CR U (sign is very faint), then left (west) on CR 13. Well is 0.75 miles on south side of road. Look for 3 power poles and grey pipes near road." +"NM-10669","","","676959","3647410","GW","false","" +"NM-05401","","","230442","3567990","GW","false","" +"WL-0167","","","563763","3716150","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well covered with rock near ground surface; under metal windmill and next to rusted tank." +"NM-25607","","","261905","3986190","GW","false","" +"NM-07981","","","212823","3614480","GW","false","" +"TO-0395","9N7E35.113","","393202","3870000","GW","true","" +"NM-22805","","","352828","3891800","GW","false","" +"NM-06064","","","555943","3574010","GW","false","" +"TO-0152","5N8E11.122","","402041","3838090","GW","true","" +"NM-03990","","","338943","3526650","GW","false","" +"NM-15731","","","671372","3749540","GW","false","" +"NM-18258","","","541202","3802540","GW","false","" +"NM-10123","","","407085","3638860","GW","false","" +"NM-13801","","","544875","3695010","GW","false","" +"NM-19830","","","398669","3833380","GW","false","" +"NM-07000","","","277385","3594710","GW","false","" +"BW-0715","4.10.24.24.300","","549671","3698800","GW","true","" +"NM-24607","","","379738","3941480","GW","false","" +"NM-00069","","","570888","3546520","GW","false","" +"TB-0216","","","423057","3721444","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road to first gate on east side #109 to wellhead in island north of house with white bucket over casing." +"NM-16373","","","678195","3770810","GW","false","" +"NM-24191","","","344475","3931240","GW","false","" +"NM-08802","","","561134","3623000","GW","false","" +"NM-11352","","","651515","3658350","GW","false","" +"SB-0773","TWDB 4924602","","402162","3508201","GW","false","" +"QY-0838","7.33.23.222","","645374","3854350","GW","true","" +"NM-19806","","","602126","3832990","GW","false","" +"WL-0362","","","461434","3775588","GW","true","" +"NM-14380","","","677231","3703680","GW","false","" +"NM-03349","","","349236","3879720","GW","false","" +"SD-0050","8N.6E.10.241","","381905","3866970","GW","true","" +"NM-00023","26.18.30.321","","486017","3541970","GW","false","" +"NM-08818","","","671503","3625010","GW","false","" +"NM-24289","","","167487","3939000","GW","false","" +"SA-0066","SA-66_R01","","257849","3740219","GW","true","County Rd 52 btwn mile marker 59 & 58, east on forest Rd 549 1.1 mi to Forest Rd 73. East down into Pigeon Canyon 2.3 miles to Y. east (left) on 2-track 2 miles to 2-story cabin on right. Turn into drive to corral and tank." +"QY-0118","10.35.14.334","","663574","3884140","GW","true","" +"DA-0060","22S2E23.114","","338669","3584550","GW","true","" +"NM-11881","","","679103","3666520","GW","false","" +"NM-20599","","","377996","3849120","GW","false","" +"SA-0229","","","198777","3740290","GW","true","From SR12, take Bursum Rd south 15.6 miles, take left at ""Y"", go 0.1 miles, turn left thru gate, go 3.2 miles to cross, turn left, go 3.3 miles to windmill. NOTE: Jim Hauth calls this well ""Sob well""." +"NM-13567","","","659028","3693930","GW","false","" +"TS-111","","","436783","4043865","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"QY-0875","8.30.3.131","","614033","3867800","GW","true","" +"SB-0358","TWDB 4807801","","482667","3530906","GW","false","" +"NM-02800","","","548739","3686990","GW","false","" +"NM-15219","","","621970","3736000","GW","false","" +"NM-21790","","","364381","3880740","GW","false","" +"NM-02089","","","129270","3564000","GW","false","" +"SB-0739","TWDB 4923903","","391657","3500577","GW","false","" +"NM-05793","","","246274","3572300","GW","false","" +"NM-03129","","","593476","3811980","GW","false","" +"QY-0524","17.34.10.433","","652836","3953370","GW","true","" +"NM-18603","","","661667","3810010","GW","false","" +"BW-0506","9S5E34.313","","367841","3706010","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21681","","","403501","3878640","GW","false","" +"NM-06606","","","358434","3585870","GW","false","" +"NM-15598","","","653938","3745210","GW","false","" +"NM-01681","","","307332","4052320","GW","false","" +"AB-0140","S187","","355346","3909780","GW","true","" +"MI-0174","","","437818","3941252","GW","true","Topographic situation: Valley" +"NM-28326","SC-18","","441338","4049196","GW","false","" +"BW-0236","14S10E19.13","","404876","3661070","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08363","","","195068","3621020","GW","false","" +"PC-112","PW-194","","365310","3909481","GW","true","" +"NM-14509","","","391009","3707160","GW","false","" +"NM-10041","","","596702","3637480","GW","false","" +"NM-05874","","","253942","3573090","GW","false","" +"QU-023","CER-29","","445867","4067593","GW","true","Take Cerro Road west to Wild Rivers, slowing as you round the corner at the reservoir berm. Pull into #79 on the left." +"NM-09521","","","555001","3630730","GW","false","" +"SM-2012","","","442880","3640031","M","true","" +"BC-0252","252","","374184","3886850","GW","true","" +"AB-0145","S192","","342427","3904760","GW","true","" +"QY-0725","6.31.20.112","","620294","3844470","GW","true","" +"NM-01117","","","192092","3861120","GW","false","" +"BW-0375","17S9E26.311","","406759","3630210","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15680","","","666850","3747980","GW","false","" +"QU-142","MW-16","","443136","4061574","GW","true","" +"NM-07404","","","273279","3603740","GW","false","" +"BW-0311","16S9E13.331","","408512","3642770","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-0236","","","430849","3714183","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west past the HQ and take the paved road. Bear to the right at the fence corner and stay to the west. Take the left fork to the south west and continue up the hill to the windmill (2 miles from HQ)" +"NM-01643","","","165442","4040540","GW","false","" +"NM-03602","","","466013","3993720","GW","false","" +"DE-0105","","","659212","3558312","GW","false","" +"NM-12195","","","552295","3670040","GW","false","" +"BW-0801","2.25.25.31.240","","561404","4023910","GW","true","" +"NM-17543","","","654278","3790420","GW","false","" +"NM-21705","","","277072","3881230","GW","false","" +"NM-09120","","","643347","3627760","GW","false","" +"TO-0529","7N8E29.414","","397682","3851650","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"BC-0320","313","","380220","3892160","GW","true","" +"SB-0935","","","411396","3623820","GW","false","" +"NM-03718","","","131997","3494180","GW","false","" +"NM-07319","","","248668","3602010","GW","false","" +"NM-25051","","","678649","3953280","GW","false","" +"NM-18822","","","342167","3813090","GW","false","" +"NM-03177","","","678458","3825390","GW","false","" +"NM-15833","","","281801","3752380","GW","false","" +"NM-07140","","","672620","3596620","GW","false","" +"DE-0165","","","672587","3618757","GW","false","" +"BW-0238","14S10E19.23","","405080","3661260","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10347","","","468366","3641860","GW","false","" +"NM-25735","","","409658","3993140","GW","false","" +"NM-24183","","","404504","3930180","GW","false","" +"EB-547","","","406377","3942729","GW","true","" +"NM-15014","","","150203","3734220","GW","false","" +"NM-03617","","","540172","4006950","GW","false","" +"UC-0232","","","601089","4088153","GW","false","" +"NM-22972","","","645716","3894280","GW","false","" +"NM-14743","","","647569","3718030","GW","false","" +"MI-0047","","","590751","3903155","GW","true","Topographic situation: Mesa Rica" +"NM-19239","","","655858","3822920","GW","false","" +"QY-0472","15.34.15.413","","652615","3932570","GW","true","" +"NM-15707","","","667298","3748790","GW","false","" +"NM-15832","","","204450","3754440","GW","false","" +"NM-09090","","","205177","3630310","GW","false","" +"TV-101","","","433880","4017420","GW","true","On Pilar Hill near mica mine. Hwy 68 south of mile marker 33 on east side. Look for 2-track. Go east thru gate. Somewhere near first house, southeast of gate w/""No Trespass"" sign on first dirt track towards house." +"NM-06173","","","673803","3578060","GW","false","" +"NM-09822","","","558986","3634020","GW","false","" +"NM-08712","","","202660","3626310","GW","false","" +"NM-08904","","","286923","3626170","GW","false","" +"NM-19076","","","665583","3818160","GW","false","" +"NM-09896","","","554561","3635130","GW","false","" +"NM-06999","","","658519","3593460","GW","false","" +"BW-0846","4.17.9.23.333","","406779","3631430","GW","true","" +"NM-09593","","","679120","3632840","GW","false","" +"SD-0348","8N.5E.28.124","","370196","3862590","SP","true","" +"NM-13615","","","625246","3693810","GW","false","" +"TB-0251","","","429068","3721798","GW","true","From Hwy. 380 on Basin Rd. go north, west, then north to headquarters. Go thru gate and to pumphouse southwest of house. Well on west side of shed under 55 gal. barrel." +"NM-26295","","","678198","4042890","GW","false","" +"NM-10826","","","544521","3648100","GW","false","" +"NM-11864","","","560771","3664790","GW","false","" +"NM-02640","","","652585","3639610","GW","false","" +"NM-25351","","","214232","3974310","GW","false","" +"TC-307","","","446521","4083746","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Then right (north) on State Line towards red barn. At T go right through gate, follow road to north to first solar powered well. This is the well where the bulls hang-out." +"NM-24133","","","475991","3928590","GW","false","" +"TO-0180","5N8E25.222a","","404307","3833250","GW","true","" +"NM-25606","","","594224","3983410","GW","false","" +"NM-02727","","","154331","3661670","GW","false","" +"NM-13947","","","543839","3695560","GW","false","" +"NM-07451","","","283730","3604210","GW","false","" +"NM-09244","","","645023","3628800","GW","false","" +"SM-4033","","","445964","3628458","PS","true","Stream flow measurement by Patrick Walsh" +"NM-20476","","","570991","3845230","GW","false","" +"NM-18889","","","609532","3814000","GW","false","" +"NM-08175","","","551189","3613490","GW","false","" +"NM-07178","","","673734","3597160","GW","false","" +"NM-02369","M-136","","227110","3585310","GW","false","" +"NM-19735","","","408762","3831700","GW","false","" +"NM-03804","","","230891","3521300","GW","false","" +"NM-11786","","","660490","3664810","GW","false","" +"NM-07395","","","616776","3601420","GW","false","" +"NM-22878","","","618341","3892400","GW","false","" +"NM-21933","","","366905","3881820","GW","false","" +"NM-22151","","","269184","3886150","GW","false","" +"ED-0307","23S28E18.222","","582828","3575230","GW","true","" +"NM-04447","","","615724","3547570","GW","false","" +"DA-0192","24S2E9.433","","335786","3567090","GW","true","" +"QU-516","","","440734","4059180","SP","true","Along Red River downstream from fish hatchery." +"NM-21823","","","367605","3881160","GW","false","" +"NM-22683","","","347469","3890530","GW","false","" +"NM-03984","","","201185","3529400","GW","false","" +"HS-032","TC-032","","289264","3667825","GW","true","Between Broadway and Main on the peninsula south of Michaels" +"NM-15064","","","645397","3730350","GW","false","" +"NM-26970","","","369629","3907510","GW","true","" +"NM-27872","","","586604","3812650","GW","false","" +"TO-0443","10N7E24.433","","395640","3881630","GW","true","" +"NM-06177","","","241833","3579930","GW","false","" +"QY-0582","5.29.17.331","","600910","3835110","GW","true","" +"TV-112","","","443087","4022445","GW","true","From Hwy 68, north of TC 110/96, go east on Camino de Golondrina. House is 3/10 of mile from Hwy. 68. 26 Golondrina." +"NM-19057","","","651042","3817970","GW","false","" +"NM-26141","","","312188","4025240","GW","false","" +"NM-24585","","","404540","3940590","GW","false","" +"NM-12457","","","680275","3676060","GW","false","" +"SB-0914","","","495135","3567355","GW","true","From junction of Hwys 1437 (Main St) & 2249 (Broadway), go E on 2249 for 3 mi, turn N (left) on Hwy 1576 (hwy alternates between north & east).Take Hwy 1576 north 3 mi, east 1 mi, north 1 mi, east 1.4 mi, then turn N on G-005 for 2.3 mi. Rd ends at NM-506, turn E (right) on NM-506 and go 5.6 mi (numerous curves); at intersection turn E (right) which is still NM-506 but not clearly marked. Continue on NM-506 for 0.5 mi, NM-506 turns N (left), stay on NM-506 for addl. 9 mi. At intersection, turn E (right) on G-022 and go 1.0 mi, turn N (left), this is still G-022, go 1.0 mi, turn E (right), which is still G-022. Take G-022 for 1.0 mi, turn S (right) on 2-track & go ~0.6 mi to Muise well Old John A well is 0.25 southwest of Bathtub well near corral." +"EM-9005","","","194442","3882770","M","true","Drainage north of North Point" +"SB-0694","TWDB 4915606","","389695","3519167","GW","false","" +"NM-27099","AS-03","","448438","4041330","GW","false","" +"NM-08403","","","124644","3624080","GW","false","" +"QY-0896","8.31.33.413","","622215","3859510","GW","true","" +"NM-25677","","","404747","3987730","GW","false","" +"BC-0412","415","","341045","3872056","GW","false","" +"NM-22622","","","359829","3889530","GW","false","" +"NM-10360","","","548626","3642120","GW","false","" +"NM-27811","","","592114","3802600","GW","false","" +"NM-24943","","","411283","3948130","GW","false","" +"NM-08146","","","213604","3617140","GW","false","" +"NM-08828","","","636392","3624520","GW","false","" +"TC-335","","","414855","4059730","GW","true","" +"NM-24851","","","407038","3946080","GW","false","" +"NM-13207","","","611071","3688120","GW","false","" +"NM-26505","","","223489","4067390","GW","false","" +"NM-04834","","","136517","3561820","GW","false","" +"NM-04053","","","166388","3535960","GW","false","" +"BW-0126","10S10E5.222","","414053","3703650","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12885","","","578616","3682320","GW","false","" +"NM-03786","M-001","","246314","3519935","GW","false","Go 2.5 miles south on NM11 from intersection of NM11 and NM9 in Columbus. Go west on unmarked dirt road, following tracks to high ground at mile 2, for a total of 3 miles. Go south at the end of the fence for 0.1 miles. Well located near the cattle tank and corrals." +"NM-12913","","","634665","3683740","GW","false","" +"NM-27982","","","386440","3884140","GW","false","" +"NM-15831","","","373108","3750690","GW","false","" +"DE-0184","","","611687","3599913","GW","false","" +"NM-03801","","","226857","3521070","GW","false","" +"SM-1006","","","445675","3648978","SP","true","Along 16 Springs Road as first coming into Canyon, just past end of forest service land. On west side of road in large, inaccessible spring box. Do not access without prior arrangement with Walker." +"NM-17677","","","236901","3794590","GW","false","" +"NM-19120","","","567910","3818130","GW","false","" +"NM-02961","","","675913","3756930","GW","false","" +"AR-0083","NMED 517","","237541","4086200","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755, then left on Rd 2685. House is at very end of road on N side. Well is behind house in blue garden shed. Watch out for wasps and brother of landowner." +"TO-0282","7N8E9.431","","399184","3856280","GW","true","" +"NM-01898","","","347579","3536410","GW","false","" +"NM-10220","","","620705","3640770","GW","false","" +"NM-19495","","","631504","3828400","GW","false","" +"SD-0321","13N.4E.36.323","","366085","3908410","GW","true","" +"SV-0068","05 Osito","","378118","3899459","GW","false","Unit 2 Lot 46" +"AH-087","HM-06","","441484","4039197","GW","true","" +"SA-0158","","","253621","3722076","GW","true","From the town of Dusty, take 52 south for 2.9 miles. Look for gate to west (R). Gate Combo is 1920. Go through gate, cross the creek. At house and corral complex, turn north (R)and follow 2-tack along the base of hill for 0.75 miles. Look for gate in fence line to east (R). Go through gate, follow 2-track across Alamosa Creek. Once on the other side of the creek, bear north (l), and drive for about 400 ft. Look for casing sticking up through the scrub." +"NM-14137","","","620608","3698890","GW","false","" +"NM-28206","","","168848","4063340","GW","false","" +"NM-16244","","","562917","3764040","GW","false","" +"NM-18899","","","272343","3815960","GW","false","" +"NM-09303","","","226697","3632220","GW","false","" +"NM-00657","","","282691","3689270","GW","false","" +"NM-23060","","","288691","3896740","GW","false","" +"NM-02303","","","241069","3577700","GW","false","" +"NM-00488","","","664758","3646410","GW","false","" +"QY-0805","7.32.10.222","","634056","3857400","GW","true","" +"NM-11549","","","561188","3660390","GW","false","" +"NM-14101","","","140248","3703970","GW","false","" +"NM-01439","","","616128","3939910","GW","false","" +"QY-0040","10.30.1.111","","616800","3887820","GW","true","" +"NM-12733","","","641975","3681010","GW","false","" +"NM-04906","","","677345","3558070","GW","false","" +"WL-0234","","","326728","4037030","GW","true","From Cuba, go North on Hwy 550 for 3.6 miles, then turn right (NE) toward Regina on Hwy 96. Drive ~13 miles then turn left onto Hwy 112. Drive 11 miles, turn left (West) onto FR 313 for 3.8 miles, then turn right (North) onto FR 312. Drive 4 miles to Strip home on right. Well is next to large metal building." +"NM-06800","","","304289","3590510","GW","false","" +"NM-02160","","","680326","3565820","GW","false","" +"NM-04016","","","255826","3530360","GW","false","" +"QY-0732","6.32.17.131","","629755","3845860","GW","true","" +"QU-518","","","440834","4059260","SP","true","Along Red River downstream from fish hatchery." +"NM-23442","","","242524","3907520","GW","false","" +"SD-0011","6N.7E.11.222","","393075","3847800","GW","true","" +"NM-01360","","","637339","3919100","GW","false","" +"SD-0241","11N.5E.24.221a","","376327","3892010","GW","true","28+/- feet from well 11.5.24.221." +"NM-18012","","","672389","3800590","GW","false","" +"NM-17179","","","324379","3784870","GW","false","" +"NM-15996","","","632473","3756040","GW","false","" +"SB-0093","TWDB 4717322","","511264","3509314","GW","false","" +"TO-0480","1S12E12.314","","441006","3788620","GW","true","" +"NM-04286","","","345965","3542530","GW","false","" +"BW-0497","7S7E18.444","","384064","3730180","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0149","11.28.9.134","","592775","3895220","GW","true","" +"SB-0181","TWDB 4757501","","506043","3434837","GW","false","" +"NM-02908","","","670436","3738650","GW","false","" +"NM-05425","","","168300","3570360","GW","false","" +"NM-21490","","","607995","3875170","GW","false","" +"NM-18924","","","651121","3814810","GW","false","" +"SD-0218","10N.7E.9.444","","391288","3884720","GW","true","" +"BC-0435","438","","346492","3876184","GW","false","" +"NM-13599","","","614784","3693370","GW","false","" +"NM-11854","","","285615","3666890","GW","false","" +"NM-15149","","","216673","3736400","GW","false","" +"NM-22148","","","380411","3884000","GW","false","" +"TB-0066","","","412514","3692703","GW","true","Take Three Rivers Road at store, head east. Several miles back cross Three Rivers drainage, turn right at cattle guard (not heading towards Three Rivers campground anymore). Check GPS! May cross another cattle guard, there is a #25 nearby. Turn right just past cattle guard on vague 2 track. Well is just north of big concrete open tanks (looks like swimming pool)." +"NM-04759","","","136220","3560140","GW","false","" +"NM-26056","","","306952","4018600","GW","false","" +"NM-07480","","","636994","3603460","GW","false","" +"NM-23980","","","370732","3922530","GW","false","" +"NM-04769","","","243590","3557320","GW","false","" +"SM-0027","","","434224","3611026","GW","true","Unused Timberon water system well, has air pipe for pressure measurement, no access for other measurement. Call Gary Goss and ask him to take a pressure reading once a month. Air pipe ends at pump at 670 feet." +"SO-0129","BRN-E03A","","327656","3764171","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-23992","","","414661","3922650","GW","false","" +"NM-24603","","","239340","3944290","GW","false","" +"NM-26125","","","406744","4022260","GW","false","" +"BC-0082","67","","375467","3892640","GW","true","" +"NM-22206","","","390877","3884610","GW","false","" +"SM-0134","","","473847","3634846","GW","true","Turn south off Hwy 82, past mile 54, road just past Runyan sign and west well (SM-0078). Take road through gates (must get key!) well is several miles back along rough 4wd road." +"EB-690","","","402990","3924515","SP","true","North bank of San Marcos Arroyo, east of Hwy 14" +"BW-0154","13S9E20.222","","397437","3671460","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"MI-0246","","","518200","3948487","GW","true","Topographic situation: Plateau" +"NM-07665","","","215221","3609820","GW","false","" +"NM-07175","","","663212","3597140","GW","false","" +"NM-28383","N-2016-075","","559101","3619118","GW","true","" +"NM-25422","","","282237","3975270","GW","false","" +"NM-18154","","","677558","3803060","GW","false","" +"NM-00721","","","455837","3695400","GW","false","" +"NM-27907","","","645430","3827680","GW","false","" +"OG-0013","","","640383","3821018","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 4 miles on CR 17. Turn right north on CR Z drive 1 mile. Turn right east on CR18 drive 0.4 miles to well. Well is on S side of road." +"NM-22058","","","391213","3883030","GW","false","" +"NM-06049","","","533506","3573480","GW","false","" +"BC-0105","188","","374805","3882770","GW","true","" +"NM-17061","","","655632","3782860","GW","false","" +"SD-0072","8N.8E.19.121","","395839","3863790","GW","true","" +"NM-17106","","","649833","3783530","GW","false","" +"NM-19270","","","613221","3823220","GW","false","" +"NM-09171","","","555853","3627220","GW","false","" +"SO-0138","BRN-W01B","","326642","3763760","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-21377","","","378805","3871820","GW","false","" +"NM-02728","","","557245","3656270","GW","false","" +"NM-10613","","","671952","3646980","GW","false","" +"NM-08434","","","413033","3617710","GW","false","" +"NM-11011","","","612843","3651090","GW","false","" +"NM-13948","","","146825","3701900","GW","false","" +"SA-0455","5S14W9.243b","","194869","3754740","GW","true","" +"NM-19620","","","528220","3829510","GW","false","" +"NM-05818","","","251441","3572570","GW","false","" +"NM-12589","","","656740","3678710","GW","false","" +"NM-11149","","","646752","3654210","GW","false","" +"NM-27762","","","610255","3785050","GW","false","" +"NM-25631","","","191496","3989280","GW","false","" +"BW-0191","14S9E24.343","","403033","3660480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11455","","","402014","3659390","GW","false","" +"NM-26265","","","370905","4038430","GW","false","" +"NM-19942","","","673688","3836330","GW","false","" +"NM-20985","","","406892","3858340","GW","false","" +"NM-21853","","","369229","3881320","GW","false","" +"NM-12395","","","676299","3675310","GW","false","" +"NM-01736","","","164406","3484520","GW","false","" +"NM-18480","","","387244","3806710","GW","false","" +"NM-10761","","","555687","3647450","GW","false","" +"NM-12597","","","554560","3677230","GW","false","" +"NM-13681","","","677618","3695270","GW","false","" +"DE-0247","","","670384","3570117","GW","false","" +"NM-21362","","","379460","3871470","GW","false","" +"NM-26222","","","322554","4033340","GW","false","" +"NM-07764","","","539882","3607340","GW","false","" +"SM-4021","","","437237","3631760","PS","true","Stream flow measurement by Patrick Walsh" +"NM-01096","","","549290","3849880","GW","false","" +"NM-28439","","","268701","3530401","GW","false","E on NM 9 from Columbus 2.5 miles, turn north at cattle guard go 0.6 miles, turn east on paved road CR B003 Pol Ranch Road. Go 10.6 miles, turn left north at Ramon Corrals sign follow faint 2 track 1.4 miles across flats look for solar well. Not accessible if wet!" +"SB-0706","TWDB 4915704","","383350","3513971","GW","false","" +"NM-27623","","","651784","3794320","GW","false","" +"NM-13735","","","552448","3694370","GW","false","" +"NM-11110","","","554725","3652310","GW","false","" +"NM-07166","","","357226","3596480","GW","false","" +"NM-24893","","","413158","3947040","GW","false","" +"NM-18783","","","466774","3811200","GW","false","" +"NM-18307","","","177495","3808670","GW","false","" +"SB-0075","TWDB 4717303","","509316","3509959","GW","false","" +"WL-0343","","","377166","3871616","GW","true","Nav system gets you to address. + +Well is outside of property fence and easy to find and access +Well is located 30' south of south driveway and 18' east of edge of road. " +"NM-14754","","","562450","3717770","GW","false","" +"NM-06407","","","673331","3582680","GW","false","" +"NM-09420","","","263990","3632490","GW","false","" +"NM-21702","","","346550","3879700","GW","false","" +"QY-0298","11.32.13.13","","636125","3894220","GW","true","" +"TO-0115","4N13E29.244","","445463","3822810","GW","true","" +"SB-0585","TWDB 4861901","","463446","3433913","GW","false","" +"BC-0397","400","","347117","3984068","GW","false","" +"NM-12795","","","673721","3681890","GW","false","" +"NM-11184","","","558063","3653870","GW","false","" +"NM-03643","","","443734","4034980","GW","false","" +"NM-17914","","","674568","3798910","GW","false","" +"NM-12690","","","555069","3678800","GW","false","" +"NM-22668","","","391293","3889720","GW","false","" +"NM-10953","","","407087","3650070","GW","false","" +"NM-02414","","","573481","3589890","GW","false","" +"NM-22421","","","237580","3889900","GW","false","" +"NM-09216","","","199626","3631980","GW","false","" +"NM-03845","","","353282","3519830","GW","false","" +"NM-27256","","","532000","3570000","GW","false","" +"AR-0116","","","243507","4095780","GW","true","From Cedar Hill take Hwy 550 toward CO border. Turn right onto Rd 2105 and follow to 68 Rd 2105 on right. Look for green house, large hay bales with blue tarp (this is not owner's residence but he has easement here to access field). Well is thru green gate in field in metal well house near tree. Rottweiller-type dog is friendly, other is wary and barks a lot, but shouldn't bite." +"NM-06448","","","676378","3583380","GW","false","" +"NM-19428","","","659218","3827750","GW","false","" +"NM-06001","","","295865","3574590","GW","false","" +"NM-06258","","","665346","3580170","GW","false","" +"PC-152","","","365822","3905098","M","true","" +"NM-27233","","","570372","3552670","GW","false","" +"NM-27001","","","328624","3758890","GW","true","" +"NM-17902","","","648221","3797990","GW","false","" +"NM-17673","","","658956","3792250","GW","false","" +"NM-11556","","","556961","3660430","GW","false","" +"NM-05815","","","606910","3570080","GW","false","" +"NM-24161","","","404600","3929710","GW","false","" +"NM-19384","","","593213","3825440","GW","false","" +"NM-00229","","","356064","3584660","GW","false","" +"NM-17540","","","672962","3790340","GW","false","" +"NM-20676","","","620377","3851140","GW","false","" +"NM-00177","","","573239","3572950","GW","false","" +"NM-15371","","","636538","3741180","GW","false","" +"NM-20303","","","679129","3843340","GW","false","" +"NM-08672","","","653677","3622870","GW","false","" +"NM-11099","","","554881","3652220","GW","false","" +"NM-14200","","","547440","3698720","GW","false","" +"TO-0333","7N14E28.144","","457936","3851690","GW","true","" +"AH-090","HM-12","","440671","4040017","GW","true","" +"NM-25310","","","385692","3968050","GW","false","" +"BW-0712","4.8.23.33","","535211","3715300","GW","true","" +"NM-14901","","","561103","3722970","GW","false","" +"NM-09545","","","645077","3632260","GW","false","" +"NM-14251","","","637218","3700780","GW","false","" +"SA-0171","","","257786","3718537","GW","true","From the town of Dusty, take 52 south for 4.4 miles. Do not cross Alamosa creek, but take the road to the south (L) just before 52 crosses the creek. Take this branch for 0.3 miles, then take the first road branching to the north (L), which leads to the Aber ranch HQ. Drive up this road for about 1/4 mile, and shortly past gate, look to east (R) for white PVC casing sticking up through the scrub in flats." +"NM-13012","","","551881","3684570","GW","false","" +"NM-25031","","","208938","3955390","GW","false","" +"NM-15333","","","663663","3740410","GW","false","" +"NM-15417","","","328321","3742370","GW","false","" +"NM-01938","","","348938","3543070","GW","false","" +"NM-04685","","","341917","3553990","GW","false","" +"NM-27334","","","583180","3591660","GW","false","" +"BW-0685","4.1.8.1.433","","403038","3790030","GW","true","" +"NM-09179","","","643727","3628480","GW","false","" +"NM-23825","","","412833","3916170","GW","false","" +"NM-14811","","","254688","3722800","GW","false","" +"NM-11757","","","629380","3664720","GW","false","" +"EB-035","","","419851","3936346","GW","true","" +"AR-0527","","","252344","4149403","PS","true","Site located in narrow river w/ granite outcrops and cliffs." +"SM-3003","","","435434","3619778","S","true","Site visited and sampled by Jeremiah Morse" +"NM-02423","M-152","","205925","3595530","GW","false","" +"NM-18968","","","509261","3814440","GW","false","" +"NM-08477","","","207732","3622400","GW","false","" +"NM-22271","","","373871","3885380","GW","false","" +"NM-11728","","","557178","3663200","GW","false","" +"NM-16837","","","585001","3778350","GW","false","" +"NM-14160","","","552504","3698310","GW","false","" +"NM-19396","","","668636","3827060","GW","false","" +"NM-00947","","","669113","3808570","GW","false","" +"NM-08547","","","558500","3619570","GW","false","" +"NM-07180","","","275869","3598160","GW","false","" +"NM-12761","","","551983","3679890","GW","false","" +"NM-01112","","","592562","3855900","GW","false","" +"NM-05369","","","134302","3570300","GW","false","" +"NM-13348","","","557591","3689750","GW","false","" +"NM-02417","","","215366","3594700","GW","false","" +"NM-03141","","","661631","3814910","GW","false","" +"NM-22757","","","239161","3893740","GW","false","" +"SA-0065","SA-65_R00","","160751","3746060","GW","true","Replacement well for SA-0065. Turn E 0.3 mile south of mile marker 16, go through blue gate to mobile homes. Well is NE of eastern most mobile home. Well is about 100 yards NNE of mobile home. About 75 yards S of large cottonwood trees. About 20 ft east of fence line. Well in sink hole, large pile of dead cottonwood trees about 40 ft east of well. Sign at gate W of mobile home says ""Trespassers are shot"", sign along road after previous sign says ""slow down cowboy""." +"QY-0520","16.36.6.211","","666726","3946800","GW","true","" +"NM-03513","","","157991","3947150","GW","false","" +"NM-25257","","","158498","3970950","GW","false","" +"AB-0152","S200","","334037","3821030","GW","true","" +"NM-07806","","","676334","3609560","GW","false","" +"NM-16397","","","643008","3770890","GW","false","" +"WL-0051","","","441562","4050011","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, go past Lawrence Ranch Rd which is the first turn off to San Cristobal. At second turn off (FR 493) make a right. Turn right on Schreiber Road to address. Well is north of house (PVC casing)." +"TO-0171","5N8E17.334","","396725","3835250","GW","true","" +"NM-25956","","","674354","4007510","GW","false","" +"BC-0065","184","","379478","3888010","GW","true","" +"SM-3005","","","468007","3631900","S","true","Site visited and sampled by Jeremiah Morse" +"NM-02419","","","277484","3593260","GW","false","" +"NM-14326","","","544718","3701010","GW","false","" +"MI-0201","","","502904","3945015","GW","true","Topographic situation: Plateau" +"NM-09357","","","652750","3630620","GW","false","" +"ED-0024","17S26E4.331","","556871","3635930","GW","true","" +"BW-0317","16S9E26.341","","407301","3639540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01822","","","348558","3524380","GW","false","" +"TB-0086","","","404041","3641131","GW","true","From New well 1, back east on new road south to white tank on left. East side of road." +"NM-08685","","","665916","3622820","GW","false","" +"NM-14837","","","417555","3721130","GW","false","" +"NM-16668","","","648640","3776400","GW","false","" +"CX-0020","28N26E13.3","","577768","4057110","GW","true","" +"NM-13760","","","544980","3694640","GW","false","" +"QY-0917","8.33.31.132","","637794","3860430","GW","true","" +"NM-20246","","","586776","3840530","GW","false","" +"QY-0207","11.30.18.332a","","608863","3892970","GW","true","" +"NM-19401","","","679131","3827500","GW","false","" +"SA-0176","","","256000","3760646","GW","true","From Hwy 60 south at VLA on 52 to forest road towards bear trap canyon. Take fork on left to NE to windmill by large tank and corrals. Open casing to southwest of WM by big stock tank." +"NM-06759","","","280661","3590380","GW","false","" +"NM-07502","","","217099","3606990","GW","false","" +"NM-27399","","","550833","3632030","GW","false","" +"ED-0056","19S28E33.21","","576601","3609830","GW","true","" +"NM-05029","","","236569","3561720","GW","false","" +"NM-02909","","","678044","3739160","GW","false","" +"NM-01697","","","318047","4065190","GW","false","" +"BW-0119","10S9E5.123","","404480","3703770","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-022","","","414889","3943164","GW","true","#43 Old Agua Fria Rd West: S on OldPecosTrail, 0.8 mi past Rodeo Rd to end, R on Old Agua Fria Rd, 0.4 mi to Hagerman house on R; well beneath WM next to drive, 12' N of shed" +"NM-05257","","","163539","3567550","GW","false","" +"NM-09042","","","554536","3625370","GW","false","" +"NM-17287","","","668654","3786530","GW","false","" +"NM-28305","LLC-76","","444371","4033080","GW","false","" +"EB-552","","","409231","3946366","GW","true","" +"NM-14634","","","665558","3714130","GW","false","" +"NM-25993","","","421931","4008830","GW","false","" +"NM-27419","","","276801","3654510","GW","false","" +"BW-0339","17S8E13.231","","399483","3633920","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0945","9.29.12.433","","608009","3875240","GW","true","" +"NM-27580","","","658685","3793110","GW","false","" +"QY-0674","6.28.13.33","","597640","3844540","GW","true","" +"NM-01465","","","438390","3945220","GW","false","" +"NM-21096","","","512715","3862090","GW","false","" +"NM-20679","","","626908","3851260","GW","false","" +"NM-18500","","","673858","3808200","GW","false","" +"NM-11834","","","554735","3664450","GW","false","" +"NM-14882","","","642772","3723350","GW","false","" +"NM-09209","","","198479","3631960","GW","false","" +"NM-20377","","","625286","3843470","GW","false","" +"TV-207","TAL-25","","446075","4020810","GW","true","Near Ponce de Leon spring. Well is on right at second older trailer home. 6-5/8"" black steel with green cap." +"DE-0129","","","672826","3616163","GW","false","" +"NM-14416","","","340460","3705000","GW","false","" +"NM-13972","","","453815","3695690","GW","false","" +"ED-0289","23S27E12.233","","581048","3576260","GW","true","" +"EB-053","","","415877","3939624","GW","true","" +"QY-1019","8.32.35.114","","634551","3860430","SP","true","" +"SA-0438","5S12W1.434","","218591","3754830","GW","true","" +"TO-0460","10N8E35.312","","402988","3878690","GW","true","" +"NM-18659","","","620731","3810320","GW","false","" +"NM-07440","","","185616","3606660","GW","false","" +"ED-0200","22S26E20.312","","564224","3582220","GW","true","" +"AR-0012","NMED 358","","228771","4078750","GW","true","From Hwy 516, take Road 3133 south towards river. Cross Road 3050 and continue to corner of Rd 3133 & Rd 3136. On SE corner in grey home. Well is in small shed in front yard." +"NM-07748","","","309941","3608830","GW","false","" +"NM-01748","","","167800","3490610","GW","false","" +"HS-019","TC-019","","289627","3667745","GW","true","Across the street from the Blackstone spa in their office, inside the fenced in area, next to the post, good for data logger" +"MI-0113","","","562562","3923281","GW","true","Topographic situation: Plains" +"EB-224","","","415467","3945318","GW","true","2239 Old Pecos Trail; behind NW corner of office, in well pit adjacent to bldg" +"NM-05082","","","231758","3563270","GW","false","" +"NM-15049","","","144930","3735340","GW","false","" +"NM-13624","","","547830","3693020","GW","false","" +"QY-0858","8.29.24.321","","607456","3862630","GW","true","" +"NM-27744","","","603322","3782410","GW","false","" +"ED-0156","22S23E14.444","","541079","3583310","GW","true","" +"NM-26072","","","474638","4018500","GW","false","" +"NM-16576","","","295267","3775910","GW","false","" +"NM-19284","","","658643","3824110","GW","false","" +"NM-27808","","","657082","3802720","GW","false","" +"NM-22779","","","392194","3890940","GW","false","" +"NM-28347","149202","","137584","3693505","SP","false","Gila National Forest" +"NM-06112","","","583080","3575370","GW","false","" +"NM-15111","","","152482","3737280","GW","false","" +"NM-06269","","","325168","3580140","GW","false","" +"NM-13762","","","619852","3695340","GW","false","" +"TB-0304","","","402465","3663913","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Schoeller Pl (Rd B10). Turn N onto Wood Ln, then take first turn W. Continue to address on right. Well is located E of horse track. Must be escorted." +"SM-4004","","","439433","3632486","PS","true","Stream flow measurement by Patrick Walsh" +"NM-12411","","","644786","3674760","GW","false","" +"NM-09507","","","561034","3630730","GW","false","" +"NM-03101","","","619418","3807190","GW","false","" +"NM-00963","","","672208","3813430","GW","false","" +"CX-0038","28N27E35.11","","585960","4053630","GW","true","" +"NM-16606","","","305041","3776190","GW","false","" +"NM-17771","","","538916","3793420","GW","false","" +"NM-04487","","","344301","3549140","GW","false","" +"WL-0326","","","419524","3719975","GW","true","Inside pump building + +Pump may be pulled, could be used as monitoring well in future" +"NM-04096","","","164855","3538170","GW","false","" +"NM-27677","","","667970","3796070","GW","false","" +"NM-18785","","","619099","3812180","GW","false","" +"NM-21030","","","152625","3865870","GW","false","" +"NM-24226","","","174672","3936910","GW","false","" +"NM-21339","","","345676","3871490","GW","false","" +"NM-18934","","","674530","3815920","GW","false","" +"NM-06883","","","573060","3590260","GW","false","" +"NM-16378","","","325907","3770540","GW","false","" +"NM-16957","","","675706","3781860","GW","false","" +"TO-0241","6N10E5.312","","416161","3848420","GW","true","" +"NM-04818","","","668486","3556500","GW","false","" +"NM-24398","","","397874","3936410","GW","false","" +"NM-12257","","","676291","3672940","GW","false","" +"SR-0012","","","372305","3969060","SP","true","Valles Caldera; ascend Cerro Grande trail 1 mi, descend right to draw" +"QY-0326","11.33.13.424","","647019","3893750","GW","true","" +"NM-05180","","","674159","3561960","GW","false","" +"NM-10307","","","526991","3641200","GW","false","" +"NM-09386","","","226879","3633140","GW","false","" +"BW-0660","23S4E24","","359924","3573930","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20833","","","534649","3853800","GW","false","" +"NM-04516","","","232505","3552770","GW","false","" +"AR-0145","B027","NMED 434","235220","4084300","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Turn right on Rd 2845 and proceed to address at fork in Rd." +"BW-0797","2.17.17.31.100","","483336","3945290","GW","true","" +"NM-18201","","","668688","3803080","GW","false","" +"NM-21445","","","652543","3873460","GW","false","" +"NM-18349","","","255097","3806960","GW","false","" +"NM-18274","","","278269","3805270","GW","false","" +"NM-18728","","","632003","3811240","GW","false","" +"BW-0284","15S10E29.12","","406234","3650330","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17334","","","659966","3787000","GW","false","" +"MI-0244","","","500111","3949565","GW","true","Topographic situation: Plateau" +"AS-002","AS-2","","447671","4042830","GW","true","" +"NM-13185","","","547109","3687290","GW","false","" +"ED-0363","26S24E19.431","","543879","3543190","GW","true","" +"NM-05946","M-122","","210429","3575390","GW","false","I-10 west exit Hwy 418 to the Petro station. Go north over railroad tracks from gas station (C0007) for 0.9 miles, road turns west for another 0.9 miles. Keep right at the fork (at the landfill) to go NW for 2.4 miles. Bare left/west at the next fork, then road goes SW for 1.3 miles, then goes west for 0.9 miles. The road then curves right towards the residence after 0.25 miles. Well located on far side of yard inside tan plastic structure (used to house electrical equipment)." +"TB-0158","","","402692","3697199","GW","true","from Middle well north on road. Bear right at fork through arroyo (main road washed out) to right (east) at T" +"SB-0722","TWDB 4916901","","402780","3515155","GW","false","" +"NM-17004","","","655319","3781620","GW","false","" +"NM-04776","","","232160","3557620","GW","false","" +"TB-0068","","","412290","3692671","GW","true","Take Three Rivers Road at store, head east. Several miles back cross Three Rivers drainage, turn right at cattle guard (not heading towards Three Rivers campground anymore). Check GPS! Turn right just past cattleguard, well on right side before corrals area, in wire/fence enclosure." +"NM-06713","","","362538","3587880","GW","false","" +"EB-004","","","411065","3936094","GW","true","East of RR grade, between RR and 2-track" +"NM-08888","","","183758","3628720","GW","false","" +"NM-21539","","","606356","3876570","GW","false","" +"NM-10234","","","645591","3641470","GW","false","" +"BW-0825","2.7.9.3.300","","409789","3857890","GW","true","" +"NM-19173","","","222913","3822820","GW","false","" +"NM-27386","","","558314","3624590","GW","false","" +"NM-07712","","","186599","3611350","GW","false","" +"NM-05036","","","342476","3559620","GW","false","" +"NM-24432","","","464108","3936980","GW","false","" +"NM-13496","","","571512","3691440","GW","false","" +"QU-167","","","444493","4061651","GW","true","" +"GT-031","","","358202","3972780","GW","true","" +"QY-0623","5.29.6.222","","600531","3839330","GW","true","" +"NM-00239","","","573777","3585150","GW","false","" +"NM-13058","","","663074","3687010","GW","false","" +"MI-0046","","","583184","3897652","GW","true","Topographic situation: Mesa Rica" +"AB-0066","S076","","348099","3896530","GW","true","" +"NM-21274","","","346102","3868980","GW","false","" +"NM-16076","","","677145","3759730","GW","false","" +"NM-25258","","","222647","3968800","GW","false","" +"NM-15197","","","673834","3735750","GW","false","" +"NM-26524","","","579680","4064150","GW","false","" +"NM-18074","","","546579","3799890","GW","false","" +"NM-02497","","","553682","3610120","GW","false","" +"NM-12681","","","653455","3680160","GW","false","" +"NM-14559","","","257379","3711880","GW","false","" +"NM-15971","","","210934","3758710","GW","false","" +"LC-028","","","399769","3936918","GW","true","From I-25 take La Cienega exit west. Right at first stop sign and keep taking right hand turns until on County Road 54. Make right onto Los Pinos Road and El Rancho de Los Golondrinas is on right. Approx. 20 ft. west of New Torreon Well." +"NM-16611","","","596462","3774730","GW","false","" +"WL-0151","","","341692","3950613","GW","true","From I-25 north of Albuquerque, take US-550 north to NM-4 east toward San Ysidro. Met Kurt Moore on corner of NM-4 and NM-485, just north of Canon, NM. Take NM-485 north ~1.5 miles. Park on wide dirt shoulder on right. Go thru gate. Well located ~20 ft. downslope of the well house." +"TO-0557","9N8E21.221","","400742","3873040","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-12173","","","561516","3669940","GW","false","" +"NM-23589","","","369656","3909230","GW","false","" +"NM-06168","","","207531","3580650","GW","false","" +"NM-07025","","","669582","3594100","GW","false","" +"NM-04503","","","283790","3550840","GW","false","" +"PC-059","PW-102","","373686","3912309","GW","true","" +"NM-13052","","","670081","3687220","GW","false","" +"NM-18468","","","614981","3806700","GW","false","" +"NM-19905","","","672060","3836210","GW","false","" +"AH-050","TL-01","","439620","4044808","GW","true","" +"NM-20812","","","632333","3854070","GW","false","" +"NM-21007","","","674764","3860090","GW","false","" +"NM-20874","","","626389","3855750","GW","false","" +"TO-0126","5N6E20.313","","377326","3834440","GW","true","" +"NM-02083","","","240682","3560540","GW","false","" +"NM-01177","","","348091","3875660","GW","false","" +"NM-13470","","","551923","3691040","GW","false","" +"NM-11768","","","561374","3663780","GW","false","" +"NM-26965","PW-152","","369366","3911111","GW","true","" +"NM-16268","","","236173","3768620","GW","false","" +"NM-18455","","","651024","3806750","GW","false","" +"NM-27295","","","526971","3581650","GW","false","" +"NM-10984","","","274886","3652550","GW","false","" +"NM-25428","","","410280","3973130","GW","false","" +"SD-0389","12N.5E.5.334","","369166","3906280","SP","true","" +"QY-1023","9.33.24.312","","646183","3873140","SP","true","" +"NM-00263","","","673929","3594190","GW","false","" +"SM-1090","","","425046","3628784","SP","true","Along Sunspot Road, 13.5 mi from turn off of Cox Canyon Hwy, on east side of road down in valley." +"NM-26832","","","547715","3686480","GW","true","" +"QY-0815","7.32.2.111","","634434","3859040","GW","true","" +"BC-0295","328","","380029","3890360","GW","true","" +"SM-1031","","","430652","3632081","SP","true","" +"BC-0123","107","","366940","3881580","GW","true","" +"SB-0868","Mayer 29","","458784","3559865","GW","false","" +"NM-04062","","","254729","3533990","GW","false","" +"BW-0579","10S9E5.4","","404816","3703380","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20345","","","285772","3844460","GW","false","" +"NM-10951","","","642698","3650980","GW","false","" +"NM-02332","M-130","","267386","3579729","GW","false","From NM-02355, go south, east, south 1 mile to gate. Well 1 mile south of gate. Probably easier to get to going south-southeast from Nunn ranch to the north. All roads in this area S of NM 26 impassable when wet!!" +"NM-11931","","","666618","3667350","GW","false","" +"QY-0796","7.31.25.341","","626845","3851290","GW","true","" +"SD-0070","8N.7E.35.433","","392551","3859980","GW","true","" +"NM-17829","","","668608","3796510","GW","false","" +"NM-21615","","","377617","3877750","GW","false","" +"BC-0055","46","","376424","3885340","GW","true","" +"NM-05077","","","579441","3559230","GW","false","" +"ED-0326","24S25E25.13","","560990","3561640","GW","true","" +"NM-10392","","","619011","3643370","GW","false","" +"TO-0433","9N14E27.331","","459255","3869990","GW","true","" +"NM-26339","","","629053","4047960","GW","false","" +"NM-13671","","","623636","3694400","GW","false","" +"TB-0155","","","400753","3690208","GW","true","Three Rivers road, turn north (left) at first road across from west entrance to Headquarters (not at the road to HQ that leads to wire gate at steep arroyo!). Road cuts back to West, watch for hole on N side of gate. Drive in on dirt track at loading ramp prior to pens and look NW for pipe sticking up." +"NM-17181","","","526134","3783300","GW","false","" +"NM-14406","","","578728","3703540","GW","false","" +"NM-27576","","","647712","3793020","GW","false","" +"NM-24215","","","174624","3936590","GW","false","" +"NM-23748","","","638956","3914290","GW","false","" +"NM-19824","","","573937","3833060","GW","false","" +"NM-06904","","","570238","3590480","GW","false","" +"NM-01003","","","344028","3822660","GW","false","" +"NM-03940","","","249830","3526070","GW","false","" +"SD-0249","11N.5E.25.144","","376016","3890740","GW","true","" +"NM-04113","","","238451","3536950","GW","false","" +"NM-25142","","","306898","3959220","GW","false","" +"NM-10332","","","676744","3643460","GW","false","" +"NM-11168","","","627519","3654380","GW","false","" +"EB-418","","","412901","3933908","GW","true","3 Birla Court" +"DE-0185","","","611803","3599928","GW","false","" +"NM-12148","","","664769","3670950","GW","false","" +"NM-11572","","","677984","3662490","GW","false","" +"NM-05007","","","234906","3561300","GW","false","" +"NM-19515","","","572935","3827750","GW","false","" +"SB-0490","TWDB 4834801","","422702","3473757","GW","false","" +"NM-00286","","","671942","3607370","GW","false","" +"NM-15997","","","676677","3757280","GW","false","" +"NM-20277","","","608117","3841160","GW","false","" +"NM-04393","","","676200","3547020","GW","false","" +"NM-15419","","","326288","3742310","GW","false","" +"SD-0048","7N.8E.19.422","","396495","3853630","GW","true","" +"AR-0109","D003","","243778","4092150","GW","true","From Hwy 550 in Cedar Hill, take Rd 2350 east towards the river, then Rd 2335 to address. Address at end of road on right. Well is in small shed to left of road, closest structure to huge wooden ""door"" leaned over steps leading down to well." +"NM-21801","","","609427","3880450","GW","false","" +"NM-27244","","","572124","3564170","GW","false","" +"NM-10323","","","617829","3642270","GW","false","" +"NM-25374","","","607866","3971730","GW","false","" +"NM-15728","","","654209","3749130","GW","false","" +"NM-06147","","","584511","3576270","GW","false","" +"QY-0268","11.31.13.312","","626456","3893650","GW","true","" +"NM-07441","","","185277","3606670","GW","false","" +"NM-21501","","","396419","3875390","GW","false","" +"UC-0115","","","636872","4039616","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-23031","","","636121","3894680","GW","false","" +"NM-19977","","","605915","3835680","GW","false","" +"MI-0151","","","522850","3929603","GW","true","Topographic situation: Plateau" +"TC-317","","","447579","4072928","GW","true","100 ft. east of Cerro community ditch" +"SM-4066","","","435264","3632035","PS","true","Stream flow measurement by Patrick Walsh" +"NM-27448","","","411503","3693370","GW","false","" +"NM-11667","","","673631","3663680","GW","false","" +"SM-0025","","","434844","3612086","GW","true","In fenced enclosure with electrical box on east side of main road into Timberon betweens Roberts Realty and sheet steel prefab building. Enclosure is behind red telephone booth. Unused Timberon water system well, has air pipe for pressure measurement." +"NM-16056","","","204847","3761400","GW","false","" +"NM-09516","","","209114","3634820","GW","false","" +"SM-4052","","","449492","3635146","PS","true","Stream flow measurement by Patrick Walsh" +"SB-0608","TWDB 4864302","","496450","3441209","GW","false","" +"NM-13714","","","547024","3694130","GW","false","" +"NM-06197","","","602517","3577490","GW","false","" +"AB-0246","","","313152","3653063","GW","true","" +"NM-00708","","","474710","3694510","GW","false","" +"QU-129","GWW-2","","454693","4060167","GW","true","Well in vault" +"NM-18010","","","673999","3800620","GW","false","" +"NM-18848","","","351080","3813340","GW","false","" +"NM-01224","","","665003","3887250","GW","false","" +"NM-16732","","","324427","3777880","GW","false","" +"PC-044","PW-070","","371827","3905475","GW","true","" +"NM-16102","","","277451","3760930","GW","false","" +"NM-19697","","","605533","3831240","GW","false","" +"NM-20334","","","589406","3842220","GW","false","" +"NM-16645","","","293494","3776930","GW","false","" +"NM-22952","","","353925","3893880","GW","false","" +"NM-06198","","","326656","3578450","GW","false","" +"NM-24139","","","676484","3930520","GW","false","" +"NM-15875","","","668914","3753350","GW","false","" +"AR-0233","","","239863","4088147","GW","true","From Aztec Blvd in Aztec, drive north on Ruins Road for about 0.6 miles as it winds through Aztec; there is a stop sign at the Aztec Ruins. Turn right (east) at the stop sign onto Rd 2900. Drive on Rd 2900 along the Animas valley ~7 miles and turn right (southeast) on Rd 2626. Rd 2626 winds a bit but stay on main road ~0.6 miles. Address is on right (west) side of road. Driveway looks overgrown but there is a house back there. Follow the driveway to house and utility building. Well is east of utility bldg w/solar panels." +"WL-0138","","","415834","3958321","GW","false","Drive I-25 north from ABQ and take Hwy 73 to Tesuque. At the Tesuque Market (east side of the road), drive ~0.2 miles to a small dirt road with no sign, turn east (right). Follow the dirt road ~0.2 miles to the well in small building on the south (right) side of the road. Well is in building." +"QY-0954","9.30.2.211","","615942","3878220","GW","true","" +"NM-14209","","","496929","3698720","GW","false","" +"ED-0372","26S31E1","","619647","3549010","GW","true","" +"AH-079","AH-43","","441425","4042111","GW","true","" +"GT-007","Tusas WS","","391741","4077225","SP","true","north of the Rio Nutritas and FR 93" +"NM-20348","","","661848","3843420","GW","false","" +"NM-00890","","","532939","3782920","GW","false","" +"NM-17680","","","191790","3796030","GW","false","" +"NM-13254","","","559539","3688310","GW","false","" +"NM-25647","","","412153","3984950","GW","false","" +"NM-26780","","","623566","3874690","GW","false","" +"NM-26340","","","225171","4051630","GW","false","" +"SA-0477","3S14W19.100","","191137","3771020","SP","true","" +"NM-02201","","","262603","3568350","GW","false","" +"NM-12773","","","140614","3686570","GW","false","" +"NM-17218","","","536012","3783890","GW","false","" +"NM-12763","","","665265","3681400","GW","false","" +"NM-24309","","","672636","3935280","GW","false","" +"NM-15033","","","586375","3728650","GW","false","" +"NM-16312","","","326375","3768100","GW","false","" +"NM-06299","","","362719","3580090","GW","false","" +"TB-1031","","","414959","3697448","SP","true","" +"NM-15107","","","151578","3737250","GW","false","" +"NM-24555","","","401838","3939730","GW","false","" +"SO-0171","HWY-E03B","","329312","3755371","GW","true","" +"BW-0424","18S7E11.443","","388480","3625010","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27206","","","401107","3875635","GW","false","" +"NM-28306","LLC-77","","443187","4031589","GW","false","" +"NM-22028","","","237843","3885830","GW","false","" +"NM-01458","","","509611","3942910","GW","false","" +"NM-08468","","","312363","3619720","GW","false","" +"NM-22469","","","182948","3892200","GW","false","" +"NM-00308","","","675881","3612930","GW","false","" +"NM-07599","","","670080","3606220","GW","false","" +"NM-12546","","","676143","3678240","GW","false","" +"NM-18492","","","330989","3807710","GW","false","" +"NM-13261","","","558814","3688490","GW","false","" +"EB-012","","","412377","3949416","GW","true","SE corner of West Alameda and Cam.Alire; monthly water levels; see EB-604" +"NM-10283","","","673616","3642510","GW","false","" +"NM-16444","","","329246","3772240","GW","false","" +"NM-01285","","","173257","3907270","GW","false","" +"NM-27556","","","679893","3792990","GW","false","" +"AB-0001","S002","","362928","3880150","GW","true","" +"NM-04825","","","345623","3556340","GW","false","" +"NM-26944","","","356292","3964140","GW","true","" +"NM-03357","","","655730","3881380","GW","false","" +"SD-0115","9N.8E.7.314a","","396934","3875690","GW","true","" +"AS-018","DM-104","","444931","4043730","GW","true","" +"NM-26630","","","193690","4076490","GW","false","" +"NM-00264","","","659969","3595080","GW","false","" +"SB-0180","TWDB 4757403","","500689","3437267","GW","false","" +"NM-08878","","","656267","3625400","GW","false","" +"NM-03253","","","567022","3839990","GW","false","" +"AS-069","VAL-8","","448001","4043480","GW","true","" +"NM-06641","","","676601","3587080","GW","false","" +"NM-06334","","","249625","3582780","GW","false","" +"PP-041","PW-46","","439832","4004613","GW","true","" +"NM-11242","","","405475","3655230","GW","false","" +"NM-07966","","","231144","3613690","GW","false","" +"QY-0407","12.34.6.113","","647110","3907430","GW","true","" +"NM-20104","","","360014","3838660","GW","false","" +"WL-0277","","","282595","3897003","GW","true","From the Cebolleta Administration Office, drive north on HWY 279 for 0.7 miles to the small municipal park on the west side of the road. Turn west (left) into the park and drive about 500 feet to the well. The well is inside the small building (the only building) on the northwest corner of the park." +"NM-02895","","","539133","3728310","GW","false","" +"NM-07879","","","241547","3612430","GW","false","" +"NM-02384","","","326560","3584990","GW","false","" +"NM-23032","","","632984","3894630","GW","false","" +"QY-0833","7.33.12.212","","646567","3857620","GW","true","" +"NM-17360","","","321714","3787480","GW","false","" +"NM-14987","","","463903","3726720","GW","false","" +"MI-0069","","","615075","3916509","GW","true","Topographic situation: Plains" +"NM-28139","","","471162","3962280","GW","false","" +"NM-26713","","","228778","4085240","GW","false","" +"QY-0236","11.30.29.214","","611226","3890860","GW","true","" +"NM-21295","","","364391","3869500","GW","false","" +"UC-0230","","","639246","4090074","GW","false","" +"LC-021","","","400462","3937369","SP","true","North horse pasture, above weir, and above La Cienega drainage just to east." +"NM-21973","","","373777","3882300","GW","false","" +"SA-0008","SA-8_R01","","249866","3798496","GW","true","2.9 miles west of where VLA tracks cross Hwy 60, turn right (north); drive 10.2 miles to cross roads by farm HQ, turn left (west); go 5.6 miles to Rincon WM. Follow signs. Combo 9901 (2/2017)." +"SM-1009","","","440226","3630745","SP","true","Access Hay Canyon by Prestridge Hill Road or Agua Chiquita. Near intersection of Prestridge Hill Rd and Hay Canyon." +"NM-12061","","","559302","3667710","GW","false","" +"NM-03391","","","349304","3889920","GW","false","" +"NM-14578","","","638854","3710930","GW","false","" +"NM-23365","","","354327","3901580","GW","false","" +"NM-11591","","","405194","3661090","GW","false","" +"NM-23197","","","236965","3900990","GW","false","" +"NM-05035","","","174560","3563590","GW","false","" +"NM-06603","","","673659","3586380","GW","false","" +"NM-09746","","","557588","3633110","GW","false","" +"NM-20486","","","435647","3845270","GW","false","" +"NM-08913","","","192596","3628780","GW","false","" +"NM-26656","","","194247","4078600","GW","false","" +"GT-010","JPGT-1","","342916","3939245","GW","true","Highway 4, east on Indian Service Route 801, south on new road just past the cemetary" +"SM-0261","","","444758","3641360","GW","true","" +"NM-09748","","","556574","3633110","GW","false","" +"NM-21884","","","366849","3881480","GW","false","" +"NM-20751","","","611919","3852760","GW","false","" +"NM-11826","","","285764","3666570","GW","false","" +"NM-23953","","","645657","3921390","GW","false","" +"NM-01040","","","589452","3836160","GW","false","" +"NM-08142","","","680101","3614620","GW","false","" +"BW-0016","21S5E32.222","","363923","3590500","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13431","","","548049","3690590","GW","false","" +"NM-07890","","","676963","3610810","GW","false","" +"NM-19909","","","384988","3834860","GW","false","" +"NM-08295","","","655863","3616310","GW","false","" +"NM-11296","","","654644","3657380","GW","false","" +"NM-06263","","","254649","3581710","GW","false","" +"NM-26059","","","663827","4018490","GW","false","" +"NM-00900","","","147195","3795110","GW","false","" +"NM-21748","","","236695","3882990","GW","false","" +"NM-26370","","","665982","4055620","GW","false","" +"NM-06231","","","326641","3579100","GW","false","" +"NM-20186","","","626734","3839880","GW","false","" +"SO-0071","3N1W25.444","","326460","3813660","GW","true","" +"NM-19994","","","233264","3839080","GW","false","" +"NM-27963","","","573525","3855910","GW","false","" +"NM-23462","","","654598","3906070","GW","false","" +"NM-08540","","","291227","3621360","GW","false","" +"NM-03425","S158","","350165","3894530","GW","false","" +"NM-19791","","","673273","3833980","GW","false","" +"NM-02622","","","629248","3633390","GW","false","" +"NM-22811","","","611672","3891480","GW","false","" +"QY-0375","12.32.11.444","","635572","3904640","GW","true","" +"NM-07694","","","227755","3609960","GW","false","" +"NM-02291","","","156437","3579360","GW","false","" +"QY-0653","5.30.26.144","","615947","3832570","GW","true","" +"SD-0066","8N.7E.23.324","","391488","3863710","GW","true","" +"TO-0147","5N8E8.424","","397881","3837330","GW","true","" +"NM-01228","","","608584","3889250","GW","false","" +"NM-12463","","","672886","3676450","GW","false","" +"NM-09672","","","190140","3636900","GW","false","" +"NM-17622","","","633058","3790950","GW","false","" +"NM-26616","","","193512","4075820","GW","false","" +"NM-07856","","","631669","3609640","GW","false","" +"NM-05067","","","681654","3560430","GW","false","" +"NM-05252","","","590310","3562340","GW","false","" +"NM-12141","","","291859","3671470","GW","false","" +"NM-15367","","","328684","3741070","GW","false","" +"NM-16656","","","271359","3777690","GW","false","" +"NM-25335","","","409087","3969290","GW","false","" +"NM-18628","","","602591","3809300","GW","false","" +"NM-02905","","","660959","3737560","GW","false","" +"SD-0020","7N.7E.1.122","","394205","3858440","GW","true","" +"WL-0248","","","276501","3651475","GW","false","Going south on I-25 from Truth or Consequences, take exit for NM-152 west towards Silver City & Hillsboro for ~4.5 miles. Turn right on CR B028 (Alto Road). Drive to bottom of hill, burn left at stop sign and continue to mailboxes. Gate is a double gate, second gate on right. Well is inside pump house south of main house." +"TS-101","","","436995","4044304","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"NM-11994","","","555914","3666760","GW","false","" +"NM-12048","","","554070","3667550","GW","false","" +"NM-27268","","","327272","3575260","GW","false","" +"NM-21068","","","397457","3861640","GW","false","" +"NM-19967","","","675513","3836770","GW","false","" +"SM-0139","","","452901","3630796","GW","true","House is along north side Hwy 24, about 1 mi outside of Weed, about 0.2 mi before Miller Flats Rd (as heading toward Pinon). From house, go to west side of house and thru gate. Continue on 2 track northward back through 3 gates. Well is on west side of rd before 4th gate." +"WL-0043","NM3533814","","436015","3697744","GW","true","From Hwy 48 in Alto, NM, go west at Sun Valley Road just south of post office. Follow Sun Valley Road until you get to Snowflake and make a right. Make a left on Elk Horn then right on Mogul Drive. Follow Mogul until it turns into Vail Trail. On Vail Trail pass four houses on right. Well will be after 4th house by blue pump house before Taos Raod. Well is next to pump house." +"NM-00747","","","459170","3697450","GW","false","" +"SD-0138","10N.5E.11.132","","374261","3886080","GW","true","" +"NM-09306","","","642510","3629880","GW","false","" +"TS-005","","","437992","4063217","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"NM-02675","","","665493","3646440","GW","false","" +"NM-05393","","","223652","3567930","GW","false","" +"NM-21542","","","347496","3877220","GW","false","" +"NM-20754","","","401778","3852660","GW","false","" +"NM-03321","","","410211","3870770","GW","false","" +"NM-24945","","","415608","3948150","GW","false","" +"NM-02797","","","560688","3686440","GW","false","" +"NM-19421","","","675858","3827990","GW","false","" +"BW-0302","16S9E1.413","","409372","3646410","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07679","","","661326","3607210","GW","false","" +"NM-06073","","","271098","3576730","GW","false","" +"SB-0328","TWDB 4807620","","486791","3531823","GW","false","" +"SO-0276","NRCS 2 P2B","","328580","3763955","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-05778","","","221367","3572520","GW","false","" +"NM-04855","","","235032","3559110","GW","false","" +"AB-0160","S209","","345100","3828850","GW","true","" +"RA-065","","","422351","4005810","GW","true","" +"WL-0253","","","304717","3726841","GW","true","From I-25 take exit 115. Cross interstate to head north on Hwy 1 for 2.3 miles. Take road west under interstate. Approximately 1 mile after turning up Milligan Gulch, just before No Trespassing sign, take a right. Well is near power lines under corrugated metal box.Take top off and tip over." +"NM-03412","","","413114","3892460","GW","false","" +"QY-0995","9.35.12.122","","665698","3877330","GW","true","" +"NM-06921","","","673066","3592010","GW","false","" +"NM-12715","","","548803","3679410","GW","false","" +"NM-27878","","","566184","3813400","GW","false","" +"NM-27425","","","540142","3665120","GW","false","" +"NM-21303","","","356205","3870020","GW","false","" +"ED-0278","23S26E32.111","","563964","3570190","GW","true","" +"NM-01154","","","645698","3866690","GW","false","" +"AR-0010","NMED 302","","225194","4076660","GW","true","From Hwy 516, take Hwy 350 south. Before the river, turn left at stop sign on Road 3500. Watch closely for driveway on right. Grey two-story house is back off road. Well is under deck in back of house in metal culvert vault." +"NM-24869","","","158721","3952580","GW","false","" +"NM-02816","","","413401","3694610","GW","false","" +"NM-23166","","","350291","3897540","GW","false","" +"TB-1012","","","413576","3699612","SP","true","In arroyo prior to Gamble WM, numerous flows from arroyo bed and stream banks" +"NM-12355","","","640782","3674030","GW","false","" +"SB-0592","TWDB 4862803","","470912","3430750","GW","false","" +"NM-06907","","","574520","3590540","GW","false","" +"SM-4008","","","431670","3629881","PS","true","Stream flow measurement by Patrick Walsh" +"NM-05825","","","674628","3571210","GW","false","" +"NM-08767","","","455187","3622480","GW","false","" +"NM-26706","","","445379","4079890","GW","false","" +"DA-0070","22S3E23.321","","348690","3583600","GW","true","" +"NM-03485","","","625977","3921680","GW","false","" +"DE-0266","","","663066","3634601","GW","false","" +"TO-0530","7N8E35.22","","402841","3850910","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-25730","","","499187","3992020","GW","false","" +"CX-0016","28N26E10.4","","575729","4058950","GW","true","" +"NM-08219","","","189235","3618830","GW","false","" +"NM-27980","","","292890","3876010","GW","false","" +"NM-17717","","","560301","3791960","GW","false","" +"QU-164","NM3574229","","445020","4068033","GW","true","Well located on road to Wild Rivers, ~0.2 miles past the dog-leg in road. Well is the 4th building east of comminity center, 2 buildings east of Vilma's house (143 Hwy 378)." +"NM-13437","","","627938","3691590","GW","false","" +"NM-07439","","","185616","3606660","GW","false","" +"NM-25363","","","576103","3970630","GW","false","" +"UC-0134","","","583419","4067893","GW","true","From Capulin: +Go W on Hwy 56 4.2 miles. Turn N at paved road with cattle guard and go through gate just to the R. Well is about .1 mile in field." +"TO-0497","7N15E2.100","","470591","3858290","SP","true","" +"NM-15040","","","563512","3728620","GW","false","" +"NM-14306","","","548722","3700660","GW","false","" +"NM-27069","","","324204","3772870","GW","true","" +"NM-24936","","","405450","3948070","GW","false","" +"NM-08667","","","554273","3621270","GW","false","" +"RA-020","","","394910","4003208","GW","true","In pit next to propane tank, behind coyote fence." +"NM-02886","","","663479","3724080","GW","false","" +"NM-04561","","","548576","3550600","GW","false","" +"NM-05308","","","339107","3564070","GW","false","" +"QY-0092","10.32.35.311","","634599","3879360","GW","true","" +"NM-08981","","","557480","3624800","GW","false","" +"NM-07829","","","203011","3612730","GW","false","" +"QY-0686","6.28.30.111","","589586","3842520","GW","true","" +"NM-06887","","","341000","3591290","GW","false","" +"SM-1035","","","433979","3634450","SP","true","" +"NM-03094","","","571476","3805470","GW","false","" +"NM-25646","","","415933","3984910","GW","false","" +"NM-03829","","","116639","3525450","GW","false","" +"NM-11305","","","639388","3657400","GW","false","" +"NM-15046","","","263853","3731480","GW","false","" +"NM-22599","","","375237","3889030","GW","false","" +"NM-02893","","","660811","3727980","GW","false","" +"SA-0478","4S13W10.110","","205475","3764600","SP","true","" +"NM-22039","","","391059","3882880","GW","false","" +"NM-00458","","","407647","3640610","GW","false","" +"DA-0001","17S2E33.2","","337268","3629340","GW","true","" +"NM-00256","","","547007","3590780","GW","false","" +"SB-0900","26.17.21.333","","479406","3542919","GW","true","" +"NM-18502","","","668180","3808560","GW","false","" +"NM-03067","","","677273","3800530","GW","false","" +"SB-0741","TWDB 4923905","","391891","3500297","GW","false","" +"NM-15654","","","622583","3746390","GW","false","" +"NM-13174","","","529709","3687040","GW","false","" +"NM-17184","","","650252","3784560","GW","false","" +"TO-0090","4N8E13.133","","402424","3826370","GW","true","" +"DE-0380","","","569125","3626361","GW","false","" +"NM-13727","","","548263","3694250","GW","false","" +"NM-19086","","","617576","3817550","GW","false","" +"NM-09586","","","211265","3635370","GW","false","" +"SB-0293","TWDB 4807510","","482695","3531798","GW","false","" +"NM-09877","","","403281","3635200","GW","false","" +"NM-08107","","","550413","3612470","GW","false","" +"NM-21708","","","350860","3879820","GW","false","" +"NM-17797","","","679716","3795800","GW","false","" +"NM-21898","","","350386","3881800","GW","false","" +"NM-07239","","","596441","3597410","GW","false","" +"NM-02228","","","664089","3569000","GW","false","" +"NM-04886","","","269377","3558610","GW","false","" +"NM-00718","","","457918","3695600","GW","false","" +"AR-0069","","","234659","4082709","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2930, stay right at fork, then right on Rd 2929 loop and address is on left. Well is north of double-wide and carport ~60' in N portion of yard." +"QY-0036","10.29.8.332","","600841","3884830","GW","true","" +"NM-03676","","","494354","4085650","GW","false","" +"BC-0070","54","","378476","3890570","GW","true","" +"NM-13176","","","553677","3687170","GW","false","" +"NM-12353","","","671912","3674370","GW","false","" +"TO-0436","9N15E32.241","","466776","3869200","GW","true","" +"NM-26280","","","228890","4043270","GW","false","" +"NM-02420","","","219213","3594840","GW","false","" +"NM-00360","","","626690","3626000","GW","false","" +"SM-1037","","","432402","3631266","SP","true","" +"SA-0169","","","262322","3722871","GW","true","From the town of Dusty, take 52 south for 4.4 miles. Do not cross Alamosa creek, but take the road to the south (L) just before 52 crosses the creek. Take this branch for 0.3 miles, then take the first road branching to the north (L), which leads to the Aber ranch HQ. Drive up and through the ranch HQ (watch out for 'some young dogs, some old dogs, and some really stupid dogs'!), and continue on road that leads up Post Canyon. Follow this road for 3.6 miles. Look for turnoff to the south (R). Take branch to south, and follow road for 0.3 miles, crossing the creek. Just after crossing the creek, take sharp left and drive up 2-track about 0.2 miles along bed of creek to well. Well has a sign (""Deep Well""), and a tank and pumpjack." +"NM-03099","","","573898","3805950","GW","false","" +"NM-27729","","","629072","3790170","GW","false","" +"NM-22204","","","666248","3885480","GW","false","" +"QY-0786","7.31.15.333","","623188","3854450","GW","true","" +"NM-11587","","","634447","3661980","GW","false","" +"NM-22664","","","607721","3889650","GW","false","" +"NM-26359","","","140462","4058770","GW","false","" +"NM-25293","","","224224","3970200","GW","false","" +"NM-23128","","","350900","3896590","GW","false","" +"NM-02580","","","410080","3625190","GW","false","" +"NM-23837","","","471543","3916130","GW","false","" +"NM-05679","","","677469","3568950","GW","false","" +"PC-081","PW-144","","367727","3907321","GW","true","" +"SV-0023","22 Canada Vista","","381056","3899797","GW","false","Unit 1 Lot 69" +"NM-12807","","","558498","3680820","GW","false","" +"NM-04129","","","344078","3535850","GW","false","" +"NM-01171","","","662865","3874910","GW","false","" +"NM-01371","","","187223","3927640","GW","false","" +"NM-27913","","","593015","3827370","GW","false","" +"NM-20627","","","610330","3849650","GW","false","" +"NM-11227","","","558863","3654680","GW","false","" +"NM-03937","","","252065","3526010","GW","false","" +"NM-03948","","","218125","3527230","GW","false","" +"TC-398","","","452775","4092139","GW","true","" +"NM-21582","","","347757","3877540","GW","false","" +"NM-13452","","","645901","3691880","GW","false","" +"NM-17858","","","645241","3797230","GW","false","" +"NM-19784","","","601238","3832730","GW","false","" +"NM-05123","","","241549","3562670","GW","false","" +"NM-19874","","","628992","3834920","GW","false","" +"SB-0932","","","413447","3620420","GW","false","" +"NM-01572","","","606600","3991350","GW","false","" +"QU-057","","","446067","4066458","GW","true","From Hwy 522, take Rt 378 left toward Cerro. Follow a gravel road forking left instead of curving right with the road. Coming to an intersection, take a right and then immediate left between a grey house and a peach/red trailer. Two well casings are visible on left; this is the well closer to peach/red trailer." +"SD-0184","10N.6E.6.324a","","377783","3886940","GW","true","" +"NM-24179","","","661652","3931130","GW","false","" +"QY-0201","11.30.15.443","","614641","3893160","GW","true","" +"BW-0810","1.26.4.16","","297835","4040290","GW","true","" +"NM-01518","","","223298","3969520","GW","false","" +"BC-0364","ASE-1","","380333","3894694","GW","true","" +"EB-374","","","403628","3929182","GW","true","East side of Hwy 14, North side of SFC42, East of firehouse, east side of access road" +"NM-02477","","","552121","3604690","GW","false","" +"NM-27649","","","671259","3795300","GW","false","" +"NM-27526","","","605894","3784870","GW","false","" +"NM-04179","","","244399","3540410","GW","false","" +"NM-19589","","","662154","3830360","GW","false","" +"NM-16432","","","667499","3772280","GW","false","" +"NM-02979","","","672225","3774640","GW","false","" +"NM-11131","","","578724","3652880","GW","false","" +"NM-01357","","","457995","3917620","GW","false","" +"NM-03799","","","254325","3520380","GW","false","" +"NM-09288","","","680150","3630550","GW","false","" +"LC-031","","","396201","3934130","SP","true","" +"NM-25555","","","177999","3986490","GW","false","" +"NM-07001","","","675933","3593810","GW","false","" +"BC-0106","91","","380464","3872370","GW","true","" +"NM-18741","","","337142","3811850","GW","false","" +"NM-02765","","","663438","3668240","GW","false","" +"NM-00913","","","660684","3819920","GW","false","" +"NM-00240","","","666771","3586850","GW","false","" +"QY-0626","5.29.7.141","","599691","3837300","GW","true","" +"NM-00892","","","324314","3785770","GW","false","" +"NM-03783","","","231573","3520210","GW","false","" +"SD-0009","6N.7E.7.244","","386786","3847330","GW","true","" +"NM-22711","","","235905","3893310","GW","false","" +"BW-0610","4S12E29","","434486","3754930","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18526","","","611986","3807740","GW","false","" +"ED-0206","22S27E5.141","","573811","3587850","GW","true","" +"NM-19328","","","535475","3823960","GW","false","" +"NM-23998","","","447689","3922710","GW","false","" +"NM-18980","","","644664","3816300","GW","false","" +"AR-0007","","","226463","4076570","GW","true","From Hwy 516, take Hwy 350 south across river. Make left on Road 3000; make another left on Road 3302. Follow toward river to address. Well in corner of fenced area east of house near raspberry fields." +"AB-1003","S057","","366669","3884720","SP","true","" +"NM-04277","","","347982","3542260","GW","false","" +"MI-0256","","","551436","3954650","GW","true","Topographic situation: Plateau" +"NM-05207","","","673627","3562440","GW","false","" +"AB-0061","S070","","368196","3871230","GW","true","" +"TB-1042","","","408146","3659638","SP","true","From Hwy 70 at Tulie water tanks, road to E past houses and then through wire gate. Look for salt cedars. Thru arroyo and back north and over hill on 2 track. Numerous seeps - look west of salt cedars in crevice by rocky bench. From gate 0.3 miles, bear right (s) and then follow road due east through arroyo and east to salt cedars." +"NM-24264","","","477411","3932290","GW","false","" +"NM-07772","","","185873","3612330","GW","false","" +"NM-18595","","","562136","3808200","GW","false","" +"ED-0254","22S28E30.443","","582692","3580330","GW","true","" +"NM-01475","","","648598","3949050","GW","false","" +"NM-16969","","","622724","3780980","GW","false","" +"UC-0149","","","651133","4013535","GW","false","" +"NM-23026","","","236076","3897440","GW","false","" +"NM-01526","","","563834","3967790","GW","false","" +"ED-0214","22S27E15.233","","577542","3584460","GW","true","" +"NM-19407","","","612165","3826260","GW","false","" +"NM-06132","","","334868","3576740","GW","false","" +"NM-22471","","","380052","3887490","GW","false","" +"NM-27488","","","562277","3728610","GW","false","" +"NM-12254","","","626663","3672350","GW","false","" +"NM-19192","","","266184","3822890","GW","false","" +"NM-13732","","","542683","3694230","GW","false","" +"NM-14382","","","669609","3703820","GW","false","" +"ED-0274","23S24E25.214","","552148","3571750","GW","true","" +"EB-086","","","408125","3958220","GW","true","Lot 19, #19 Vuelta Maria" +"NM-16695","","","644013","3777310","GW","false","" +"TB-0015","","","416169","3663114","GW","true","Hwy 70 ~ 5.5 miles east of Tularosa, turn right (North of Mile 234) on Virden road at mailboxes. Go back to sign and veer left. Stay straight on main graded road. Cross arroyo, well is just up on the left, in little wood shack. Her house is along main road, all the way back. Old homestead house, lots of stuff in yard. (3rd house back)." +"NM-22749","","","375944","3890750","GW","false","" +"WL-0178","","","135422","3707797","GW","true","Heading north on Rt 180 out of Silver City travel thru Glenwood continuing north. Approx. ~6.8 miles past the turn off to Rt 159 to Mogollon, look for a dirt road turn off to Wild Horse Rd on the right. Follow road at it goes east then turns south and then west again. House is on the right before house at deadend. Well in wellhouse SE of main residence near bend in Wild Horse Rd." +"NM-21351","","","379180","3871420","GW","false","" +"NM-12144","","","657312","3670550","GW","false","" +"NM-06015","","","670780","3574320","GW","false","" +"NM-24375","","","234580","3939280","GW","false","" +"NM-15538","","","412218","3743130","GW","false","" +"NM-15850","","","322427","3751810","GW","false","" +"NM-15018","","","647579","3729090","GW","false","" +"NM-17458","","","136515","3794220","GW","false","" +"NM-15635","","","677405","3747190","GW","false","" +"BW-0650","16S9E7.1","","400699","3645450","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22067","","","391619","3883090","GW","false","" +"NM-16567","","","669289","3775420","GW","false","" +"SM-0098","","","476159","3637546","GW","true","Turn south off Hwy 82, 0.5 mi past mile 54. Onto 2-track that parallels highway. Cross cattle guard and bridge (if not working), if bridge out, drive across river left of bridge. Go through gate, pass corral #1, through 2 more gates (now 2 miles in). After 4th gate, drive clockwise around corral to the windmill (2.3 mi in)." +"NM-21803","","","365750","3880790","GW","false","" +"NM-01638","","","514221","4029410","GW","false","" +"NM-26841","","","548484","3687705","GW","true","" +"NM-16862","","","667109","3779820","GW","false","" +"NM-00704","","","476515","3693420","GW","false","" +"NM-04693","","","614881","3553590","GW","false","" +"NM-23855","","","470030","3916560","GW","false","" +"NM-19125","","","595579","3818400","GW","false","" +"NM-01765","","","171131","3510640","GW","false","" +"MI-0048","","","607644","3903168","GW","true","Topographic situation: Plains" +"NM-06111","","","245716","3578200","GW","false","" +"NM-27853","","","601774","3781160","GW","false","" +"NM-16436","","","651911","3772170","GW","false","" +"NM-10385","","","654598","3643830","GW","false","" +"NM-28193","","","667979","4033430","GW","false","" +"NM-23817","","","638468","3916470","GW","false","" +"NM-00367","","","554937","3626324","GW","true","Driving south on Hwy 285, before entering town of Artesia, take right turn to go south on N. 13th Rural Street (aka Rt 110). Drive 8 miles south to well on west side of road, 2 miles past Eddy County Fairgrounds . Well is the one furthest west of the two USGS well boxes ~30 yds from road. Duck barbed wire fence to access area." +"NM-23206","","","289165","3899720","GW","false","" +"NM-21578","","","347306","3877430","GW","false","" +"NM-25176","","","321535","3961100","GW","false","" +"NM-27356","","","378021","3597840","GW","false","" +"NM-20585","","","403844","3848570","GW","false","" +"NM-24672","","","412161","3942820","GW","false","" +"NM-22318","","","357472","3886120","GW","false","" +"NM-06985","","","671709","3593400","GW","false","" +"NM-09012","","","656271","3626790","GW","false","" +"BW-0283","15S10E26.3","","410932","3649280","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04268","","","349499","3541960","GW","false","" +"NM-12414","","","635902","3674850","GW","false","" +"NM-21537","","","347699","3877190","GW","false","" +"SB-0326","TWDB 4807618","","484454","3531826","GW","false","" +"NM-03638","","","653917","4029900","GW","false","" +"NM-13853","","","544642","3695220","GW","false","" +"NM-14495","","","654258","3707750","GW","false","" +"NM-09528","","","640170","3631600","GW","false","" +"NM-13534","","","542668","3691800","GW","false","" +"NM-22597","","","223486","3892360","GW","false","" +"NM-06449","","","673268","3583320","GW","false","" +"NM-15130","","","303522","3733660","GW","false","" +"NM-17384","","","675283","3788040","GW","false","" +"NM-06926","","","550627","3590830","GW","false","" +"NM-10598","","","553439","3645410","GW","false","" +"NM-06148","","","151810","3581960","GW","false","" +"SM-0168","","","508951","3620792","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-10024","","","544260","3636800","GW","false","" +"NM-10308","","","676881","3643030","GW","false","" +"NM-07686","","","555945","3606190","GW","false","" +"NM-15363","","","663905","3741340","GW","false","" +"BC-0244","244","","378908","3885170","GW","true","" +"NM-15958","","","668304","3755840","GW","false","" +"NM-05309","","","338773","3564080","GW","false","" +"NM-05462","","","245628","3568460","GW","false","" +"NM-16815","","","628236","3778690","GW","false","" +"NM-15301","","","203150","3742450","GW","false","" +"NM-15398","","","576779","3740450","GW","false","" +"HS-008","TC-008","","286722","3666672","GW","true","Hyde & Reater st. on NE corner. Fenced by barbed wire and inside of pump house" +"NM-01757","","","169142","3497070","GW","false","" +"NM-17691","","","325012","3792750","GW","false","" +"NM-09451","","","210687","3634280","GW","false","" +"NM-09995","","","625168","3637220","GW","false","" +"NM-01118","","","646866","3857150","GW","false","" +"PC-125","PW-212","","370244","3909011","GW","true","" +"NM-00312","","","318948","3613830","GW","false","" +"NM-09178","","","673396","3628430","GW","false","" +"NM-05671","M-109","","264143","3570024","GW","false","From east side of Deming, go east on NM549 for 12.8 miles. In meadow on corner of NM549 and B046/Franklin. Look for large concrete pad ~150 ft east of Franklin." +"TO-0465","10N9E18.131","","406034","3883910","GW","true","" +"BC-0253","253","","373975","3886830","GW","true","" +"NM-13788","","","544075","3694910","GW","false","" +"UC-0216","","","675438","3967345","GW","false","" +"NM-18817","","","625344","3812840","GW","false","" +"OG-0010","","","637399","3824207","GW","true","From int of SR 311 and US 60, west of Clovis, drive 20.4 miles north and west on SR 311. Well is on S side of road" +"NM-14396","","","557437","3702680","GW","false","" +"NM-05908","","","181113","3575870","GW","false","" +"NM-13216","","","673090","3689670","GW","false","" +"QU-055","","","444470","4061212","GW","true","From Hwy 522 going north, left on W. Embargo Rd. Descending into arroyo flat, find tailings dam on right and white posts w/ green tube steel gate (#25) on left (gate combo 22-24-14). Well vault is on inside curve of driveway as it turns to the west; covered with a wood platform." +"NM-18147","","","511421","3800700","GW","false","" +"NM-22163","","","377931","3884160","GW","false","" +"NM-24659","","","407151","3942470","GW","false","" +"NM-15459","","","674595","3743380","GW","false","" +"NM-21129","","","403090","3863860","GW","false","" +"MI-0071","","","618312","3909968","GW","true","Topographic situation: Valley" +"NM-03404","S131","","347726","3890930","GW","false","" +"NM-18696","","","269303","3812820","GW","false","" +"NM-23137","","","350548","3896740","GW","false","" +"NM-22016","","","333540","3883480","GW","false","" +"NM-00534","","","670274","3653850","GW","false","" +"NM-19054","","","339840","3817290","GW","false","" +"NM-20109","","","402336","3838170","GW","false","" +"NM-22126","","","432419","3883280","GW","false","" +"NM-22127","","","380586","3883810","GW","false","" +"NM-06989","","","539891","3592010","GW","false","" +"NM-08246","","","649596","3615470","GW","false","" +"NM-24357","","","414152","3935290","GW","false","" +"NM-23671","","","203876","3914950","GW","false","" +"TC-342","","","413719","4056224","GW","true","" +"TS-069","","","432090","4019900","SP","true","One of a series of small seeps with vegetative signatures that are located on west gorge wall between TJ Campground and the gaging station, a distance of one mile. " +"SO-0232","SFC-W01A","","311912","3721564","GW","true","" +"NM-05405","","","222010","3568280","GW","false","" +"NM-14734","","","545471","3716600","GW","false","" +"NM-03071","","","669858","3801990","GW","false","" +"NM-19151","","","675587","3820780","GW","false","" +"NM-11196","","","652001","3655460","GW","false","" +"ED-0283","23S27E4.433","","575959","3577140","GW","true","" +"NM-21225","","","650570","3868560","GW","false","" +"QY-0544","17.36.32.341","","668417","3947400","GW","true","" +"NM-17328","","","613062","3785820","GW","false","" +"NM-07393","","","215703","3604750","GW","false","" +"NM-05461","","","675962","3566800","GW","false","" +"NM-19440","","","621023","3827080","GW","false","" +"NM-02088","","","133990","3563830","GW","false","" +"NM-12075","","","557151","3667910","GW","false","" +"NM-20106","","","543437","3837760","GW","false","" +"TC-304","","","444084","4084798","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Then right (north) on State Line towards red barn. Turn left (west) at T, then right at next T. Well is located along fence at utility poles & concrete structure. Well is near utility pole #36317." +"NM-20920","","","595616","3856540","GW","false","" +"NM-22237","","","602942","3884850","GW","false","" +"NM-11353","","","649050","3658380","GW","false","" +"NM-01058","","","559180","3840110","GW","false","" +"NM-24968","","","412394","3948580","GW","false","" +"NM-27758","","","606602","3784420","GW","false","" +"NM-18393","","","630418","3805890","GW","false","" +"NM-20065","","","678451","3838950","GW","false","" +"ED-0371","26S30E8.11","","603011","3547520","GW","true","" +"BW-0551","7S10E25.4","","421008","3725540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18017","","","635742","3799900","GW","false","" +"NM-18511","","","647113","3808260","GW","false","" +"DA-0203","23S2E18.31","","332120","3575660","GW","true","" +"NM-18821","","","459708","3811840","GW","false","" +"NM-12508","","","666891","3677150","GW","false","" +"NM-00621","","","660933","3670370","GW","false","" +"NM-16230","","","258809","3766260","GW","false","" +"NM-09551","","","578716","3631130","GW","false","" +"NM-23610","","","373298","3909550","GW","false","" +"SB-0456","TWDB 4821501","","459983","3505722","GW","false","" +"SA-0150","","","256591","3711560","GW","true","Well is located near the Monticello Box. From Socorro, access from north (datil) same distance as from south (winston). Where rt 52 crosses Alamosa Creek, go south 4 miles, past the the Cupit ranch HQ (directly on the road to the west (R)) to a 2-track heading east (L) up Havil Canyon. Go through gate/cattle guard, and follow driveway up Havil Canyon past the Phelps ranch HQ for 2.6 miles to Teague House (white house with corrals and outbuildings). Turn east (L), go through gate (combo 3006) by corral, up the steep hill. Follow the 2-track across the top of the ridge for 1.25 miles, to the Gathering Tank well (on the Left). Well head is located within wire enclosure, hidden beneath doghouse." +"NM-08521","","","236172","3622280","GW","false","" +"NM-08316","","","297754","3617540","GW","false","" +"NM-12058","","","561530","3667720","GW","false","" +"NM-09525","","","217363","3634610","GW","false","" +"NM-05081","","","234148","3562400","GW","false","" +"TS-123","","","426346","4012548","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"NM-17520","","","592659","3788770","GW","false","" +"NM-22662","","","384072","3889690","GW","false","" +"NM-18120","","","614243","3801360","GW","false","" +"NM-09699","","","555771","3632520","GW","false","" +"NM-09629","","","665635","3633350","GW","false","" +"NM-06455","","","150528","3588050","GW","false","" +"NM-24871","","","408350","3946530","GW","false","" +"HS-062","TC-062","","288638","3679885","GW","true","At toc airport on southern side of airport" +"NM-15189","","","625152","3734710","GW","false","" +"QY-0022","10.29.12.222","","608469","3886150","GW","true","" +"NM-09150","","","648516","3628430","GW","false","" +"NM-19104","","","661717","3818920","GW","false","" +"NM-02821","","","633687","3696510","GW","false","" +"SD-0397","13N.5E.15.241","","373390","3913600","SP","true","" +"NM-17024","","","667882","3782450","GW","false","" +"NM-01606","","","311350","4013080","GW","false","" +"NM-00775","","","439987","3702730","GW","false","" +"TO-0119","5N5E23.433","","373278","3833920","GW","true","" +"NM-03737","","","172092","3501820","GW","false","" +"NM-24068","","","404891","3926290","GW","false","" +"AB-0109","S133","","348271","3890210","GW","true","" +"NM-10375","","","553404","3642360","GW","false","" +"NM-01656","","","299150","4040550","GW","false","" +"QY-0883","8.30.9.444","","613055","3865490","GW","true","" +"NM-27978","","","342646","3874230","GW","false","" +"NM-20939","","","581086","3856840","GW","false","" +"NM-12911","","","545761","3682450","GW","false","" +"NM-20806","","","627787","3853890","GW","false","" +"NM-28191","","","152456","4038170","GW","false","" +"NM-25817","","","599441","3998170","GW","false","" +"NM-12873","","","609842","3682470","GW","false","" +"NM-18750","","","380356","3811320","GW","false","" +"SB-0738","TWDB 4923902","","392023","3500388","GW","false","" +"NM-14714","","","674513","3716810","GW","false","" +"NM-11597","","","558747","3660960","GW","false","" +"NM-26209","","","323080","4032250","GW","false","" +"NM-00818","","","446783","3713440","GW","false","" +"NM-28107","","","351497","3912250","GW","false","" +"NM-00736","","","431320","3696710","GW","false","" +"NM-00633","","","671224","3676700","GW","false","" +"PP-047","PW-52","","433462","4002977","GW","true","" +"NM-03087","","","672282","3805000","GW","false","" +"BW-0326","16S10E7.223","","410762","3644140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TO-0493","7N5E35.231","","373190","3850830","SP","true","" +"BC-0009","72","","374717","3888080","GW","true","" +"NM-09945","","","221278","3639550","GW","false","" +"SB-0301","TWDB 4807518","","483512","3533614","GW","false","" +"NM-27048","","","326354","3772990","GW","true","" +"CX-0056","25N25E24.22","","569468","4027650","GW","true","" +"NM-12510","","","654289","3676540","GW","false","" +"BC-0034","25","","374292","3884100","GW","true","" +"LC-023","","","400085","3938409","SP","true","242 Los Pinos At spa, spring behind hot tubs" +"QY-0791","7.31.23.422","","626126","3853320","GW","true","" +"NM-15122","","","331704","3732850","GW","false","" +"NM-11877","","","670130","3666640","GW","false","" +"NM-05340","","","262706","3566010","GW","false","" +"NM-22215","","","626416","3884930","GW","false","" +"NM-11198","","","649845","3655590","GW","false","" +"NM-06074","","","235620","3577590","GW","false","" +"NM-27967","","","571681","3857770","GW","false","" +"NM-15609","","","327564","3745990","GW","true","" +"NM-16026","","","626406","3756840","GW","false","" +"SM-0259","","","444543","3642783","GW","true","8 Mile canyon, before all houses, along north side of entrance road. If main gate is locked, there is a side road that bypasses gate by going through the neighbor's property to the west. Cross bridge and go directly east." +"NM-21840","","","409147","3880770","GW","false","" +"NM-22238","","","389894","3884930","GW","false","" +"NM-25285","","","217015","3970270","GW","false","" +"NM-25138","","","406849","3956810","GW","false","" +"NM-19308","","","557650","3823540","GW","false","" +"NM-12332","","","553033","3672480","GW","false","" +"NM-22361","","","340922","3886860","GW","false","" +"SA-0101","","","257959","3713806","GW","true","Go to Cupit headquarters (mile marker 45, Rt 52), take 2 track across from entrance (E). Go thru gate, follow 2 track, take branch to first canyon, follow road in stream bed to well. Approx 1.6 mi from HQ." +"NM-17666","","","639930","3791640","GW","false","" +"NM-00865","","","342313","3756890","GW","false","" +"NM-22560","","","676076","3889420","GW","false","" +"SV-0148","09 Canon Escondido","","377449","3899799","GW","false","" +"TC-209","WG-21b","","434090","4075717","GW","true","" +"NM-14238","","","538503","3699170","GW","false","" +"NM-28079","","","238619","3903450","GW","false","" +"NM-00442","","","442843","3636460","GW","false","" +"HS-047","TC-047","","289912","3667727","GW","true","475 Mims: in the back yard of home near red wooden structure" +"TO-0181","5N8E25.222b","","404307","3833250","GW","true","" +"NM-07587","","","627162","3605370","GW","false","" +"NM-00365","","","389989","3627390","GW","false","" +"PP-024","PW-23","","435721","4004609","GW","true","" +"NM-04565","","","186560","3555400","GW","false","" +"NM-19918","","","563614","3834550","GW","false","" +"BW-0911","1.5.3.29.400","","302810","3834030","SP","true","" +"NM-23222","","","349278","3899010","GW","false","" +"QY-0323","11.32.7.244","","629237","3895640","GW","true","" +"SO-0056","1N1W17.21","","319213","3798780","GW","true","" +"NM-11839","","","555538","3664540","GW","false","" +"NM-27479","","","568790","3725050","GW","false","" +"NM-11025","","","554060","3650650","GW","false","" +"NM-05877","","","255335","3573340","GW","false","" +"NM-22973","","","360331","3894180","GW","false","" +"NM-09449","","","408099","3630480","GW","false","" +"EB-0001","","","324424","3770462","GW","true","" +"NM-19098","","","494951","3817210","GW","false","" +"NM-10768","","","555687","3647480","GW","false","" +"NM-10309","","","553409","3641340","GW","false","" +"NM-03322","","","404585","3871840","GW","false","" +"NM-16314","","","653666","3768340","GW","false","" +"NM-26574","","","579625","4067420","GW","false","" +"NM-13467","","","637545","3692280","GW","false","" +"NM-22125","","","237186","3886800","GW","false","" +"SB-0104","TWDB 4717903","","511455","3502664","GW","false","" +"NM-02070","","","325144","3557530","GW","false","" +"SB-0407","TWDB 4812502","","447994","3519292","GW","false","" +"NM-16928","","","584323","3779700","GW","false","" +"TO-0283","7N8E9.444","","399714","3856150","GW","true","" +"NM-27582","","","660038","3793320","GW","false","" +"NM-02871","","","418322","3720350","GW","false","" +"NM-08894","","","228546","3627450","GW","false","" +"NM-24360","","","378100","3935770","GW","false","" +"NM-24070","","","476689","3925910","GW","false","" +"NM-20642","","","653550","3851230","GW","false","" +"BC-0222","222","","374838","3887560","GW","true","" +"NM-03880","","","228961","3524010","GW","false","" +"NM-19727","","","618337","3831880","GW","false","" +"NM-05494","","","259881","3568450","GW","false","" +"NM-07127","","","548178","3595060","GW","false","" +"NM-12655","","","560611","3678130","GW","false","" +"CX-0014","29N27E36.44","","588460","4062000","GW","true","" +"NM-01508","","","620096","3961230","GW","false","" +"EB-270","","","395376","3966092","GW","true","~ 0.1 mi East of Buckman #1, south side of Buckman Rd" +"TO-0475","10N14E29.221","","457230","3880920","GW","true","" +"QY-0442","13.34.4.134","","650565","3916790","GW","true","" +"MI-0011","","","452753","3895274","GW","true","Topographic situation: Canyon Blanco" +"SO-0103","3N5E16.41","","369308","3816560","GW","true","" +"AR-0221","","","220176","4073806","GW","true","Heading northeast out of Farmington on Hwy 516 past the mall, turn right (south) onto Rancho de Animas Dr. Follow road past sweeping curve to the left. Turn left onto Rancho de Animas Court after curve. House is second on right. Well behind house in center of lawn." +"AR-0501","","","243313","4093823","PS","true","Animas River at bridge on Road 2290. Sample point is east side of bridge, upstream. Walked out on metal gate to collect sample away from the bank." +"AB-0250","","","499999","3983948","GW","true","" +"NM-05920","","","242603","3574210","GW","false","" +"NM-00521","","","654843","3651180","GW","false","" +"TO-0543","8N9E18.333","","404893","3864030","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"SB-0518","TWDB 4844903","","448539","3459220","GW","false","" +"NM-27800","","","592038","3799890","GW","false","" +"NM-27029","","","330404","3802380","GW","true","" +"NM-20930","","","558764","3856480","GW","false","" +"MI-0115","","","579230","3923201","GW","true","Topographic situation: Shadow Valley" +"NM-12931","","","553778","3682920","GW","false","" +"NM-10642","","","551775","3645800","GW","false","" +"SA-0416","4S13W17.430","","203111","3761750","GW","true","" +"NM-08362","","","558648","3616520","GW","false","" +"NM-10578","","","581796","3645420","GW","false","" +"NM-10091","","","561847","3638040","GW","false","" +"NM-13367","","","641360","3691290","GW","false","" +"NM-17275","","","307308","3786460","GW","false","" +"NM-09079","","","674578","3627800","GW","false","" +"NM-26910","PW-154","","372195","3906950","GW","true","" +"NM-18233","","","535711","3802270","GW","false","" +"NM-10646","","","549828","3645790","GW","false","" +"NM-26284","","","157255","4046500","GW","false","" +"NM-24709","","","409052","3943810","GW","false","" +"NM-08779","","","660240","3624390","GW","false","" +"AH-042","LR-01 AH","","438487","4042420","GW","true","" +"NM-12712","","","635201","3680510","GW","false","" +"NM-24105","","","403977","3928030","GW","false","" +"TO-0558","9N8E24","","404973","3872400","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-08212","","","661144","3615220","GW","false","" +"NM-24849","","","157496","3952160","GW","false","" +"NM-12059","","","561505","3667720","GW","false","" +"NM-25018","","","415076","3950310","GW","false","" +"NM-15450","","","668761","3743150","GW","false","" +"NM-04158","","","345130","3537570","GW","false","" +"NM-03289","","","396824","3852780","GW","false","" +"TB-0188","","","414574","3714509","GW","true","Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south past pond to windmill on west side of road." +"NM-15969","","","653816","3755960","GW","false","" +"SA-0017","SA-17_R00","","245573","3778204","GW","true","Drive west on Highway 60 about 0.3 miles past MM 81, turn south (left) on unmarked road at the cattle guard; this road is not marked but is CR 152 or Hand Ranch Road on a GPS. Go 0.8 miles and look for water tank to the west (right). Take 2 track to east (left) for 1.3 miles and look for the power line to pump. Well is in the middle of the old highway inside a barbed wire fence south of the power pole and meter. Watch for rattlesnakes!" +"SV-0081","24 Prado Vista","","377522","3898349","GW","false","Unit 3 Lot 4" +"MI-0236","","","487954","3953859","GW","true","Topographic situation: Plateau" +"NM-23728","","","380798","3913330","GW","false","" +"NM-20326","","","610776","3842200","GW","false","" +"NM-08072","","","561202","3611980","GW","false","" +"NM-21958","","","247981","3885720","GW","false","" +"NM-21929","","","399350","3881400","GW","false","" +"NM-10688","","","410037","3646320","GW","false","" +"NM-27085","","","326304","3772990","GW","true","" +"NM-08278","","","665532","3616220","GW","false","" +"MI-0177","","","438731","3936688","GW","true","Topographic situation: Valley" +"NM-08874","","","675427","3625410","GW","false","" +"NM-21902","","","395295","3881230","GW","false","" +"NM-01065","","","614435","3844340","GW","false","" +"ED-0319","23S30E6.11","","601552","3577990","GW","true","" +"NM-26272","","","245356","4041560","GW","false","" +"BW-0611","22S8E24.3","","398544","3582320","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-500","","","407846","3972986","ES","true","Pojoaque Creek at US Hwy 285" +"NM-27693","","","639938","3796260","GW","false","" +"TV-263","SW-57","","438479","4022658","GW","true","From SR68, take CR110 (leading to Armory) 3.1 miles west, finding #932 on left side of road, tucked into the north face of a ridge." +"EB-304","","","400149","3937292","GW","true","Old Bennett Ranch @286 Los Pinos Rd (Gate Code=""9247#""). Lalo Enriquez house, take right fork before main house, 0.25 mi to 2nd house, across drive under white drum; OR enter from 27347 W. Frontage Rd. Well between garage/shed and sandbox under flower pot." +"SO-0128","BRN-E02A","","327400","3764094","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-21571","","","636991","3877250","GW","false","" +"SB-0391","TWDB 4808201","","494201","3539760","GW","false","" +"SA-0132","","","232712","3774884","GW","true","From Datil, take rt 12 south 4.3 miles, look for gate in fence to east (L). Go through fence, take 2-track to east. Follow 2-track 1.4 miles, at which point road branches sharply to S ((R). Take 2-track to south, follow across arroyo, across hilltop and flat area. Windmill visible across flat area, across shallow arroyo." +"QU-165","","","444329","4061178","GW","true","" +"NM-18341","","","647143","3804750","GW","false","" +"SO-0178","HWY-W05B","","328774","3755365","GW","true","" +"EB-608","","","402225","3952079","GW","true","Caja del Rio north to Las Campanas Drive, left at ""T"" intersection, SW on Las Campanas ~1.0 mi to WWTP yard on left, drill site at SE corner of yard" +"WL-0127","","","303486","3780212","GW","true","From US 60 just east of Magdalena, take La Hinca Road (on north side of Hwy 60) ~3 miles. Windmill is on north side of road, 2 miles west of ranch headquarters. Well under windmill derrick." +"NM-22755","","","658419","3891350","GW","false","" +"NM-15887","","","201601","3756290","GW","false","" +"NM-10702","","","559666","3646250","GW","false","" +"NM-09108","","","287095","3628520","GW","false","" +"CX-0175","32N24E23","","557561","4094260","SP","true","West slope Barilla Mesa (north spg)" +"NM-10631","","","668158","3647070","GW","false","" +"SV-0099","04 Via Alcalde","","380114","3900205","GW","false","Unit 1 Lot 60" +"NM-04150","","","317366","3537430","GW","false","" +"NM-20861","","","594539","3855120","GW","false","" +"SB-0036","TWDB 4709902","","508234","3513868","GW","false","" +"SM-4039","","","436407","3650025","PS","true","Stream flow measurement by Patrick Walsh" +"TO-0454","10N8E20.444","","399423","3881480","GW","true","" +"NM-12161","","","624250","3670600","GW","false","" +"NM-14467","","","634114","3706650","GW","false","" +"NM-02976","","","639416","3779270","GW","false","" +"NM-21862","","","351851","3881570","GW","false","" +"JM-029","","","305383","3659187","GW","true","" +"NM-21856","","","367596","3881020","GW","false","" +"SM-3044","","","563434","3593454","R","true","Yates Fm Gypsum sampled in Carlsbad on Happy Valley Road. Sampled by Lewis Land." +"NM-01296","","","632505","3905550","GW","false","" +"NM-10111","","","284781","3640620","GW","false","" +"NM-22437","","","673064","3888040","GW","false","" +"BW-0755","2.10.35.29.222","","659978","3882060","GW","true","" +"NM-23241","","","349586","3899250","GW","false","" +"NM-07827","","","312494","3610040","GW","false","" +"WL-0157","","","368338","3907364","GW","true","From I-25 north, take exit 242 onto NM-165 east toward Placitas. Drive 5 miles then turn right on Tunnel Springs Road. Drive about 0.5 miles, house is on left. Well is right next to small parking area." +"SO-0197","SAC-W01B","","324129","3791351","GW","true","" +"NM-08180","","","560723","3613580","GW","false","" +"NM-10888","","","636325","3650030","GW","false","" +"NM-28283","128468","","219572","3606686","SP","false","New Mexico State Parks" +"ED-0187","22S26E8.11","","563802","3586310","GW","true","" +"NM-19546","","","609384","3828660","GW","false","" +"NM-03537","","","617735","3959410","GW","false","" +"CX-0013","29N27E26.4","","586769","4064130","GW","true","" +"NM-22942","","","360778","3893620","GW","false","" +"NM-12302","","","559873","3671900","GW","false","" +"NM-26532","","","359676","4065640","GW","false","" +"NM-06790","","","344413","3589580","GW","false","" +"NM-03226","","","397983","3835080","GW","false","" +"QU-029","CER-40","","447732","4072484","GW","true","" +"NM-00638","","","667775","3677250","GW","false","" +"NM-27707","","","636910","3782940","GW","false","" +"TB-0020","","","434473","3713353","GW","true","Chavez Road off Hwy 37. turn north across from concrete white pipe fence. Labeled Stearns, just over the creek. Well is before house, just across from gate in stucco shed." +"CX-0076","24N22E34.11","","536430","4014500","GW","true","" +"NM-03021","","","633993","3786030","GW","false","" +"NM-26379","","","579341","4055250","GW","false","" +"NM-16857","","","650998","3779550","GW","false","" +"NM-14289","","","658801","3701480","GW","false","" +"NM-09734","","","193445","3637660","GW","false","" +"NM-25430","","","410782","3973190","GW","false","" +"AR-0168","D016","","238548","4087600","GW","true","" +"TO-0470","10N9E30.233","","406769","3880470","GW","true","" +"NM-27562","","","669640","3792870","GW","false","" +"NM-13280","","","626103","3689570","GW","false","" +"NM-05078","","","264308","3561660","GW","false","" +"SA-0462","6S12W28.242","","215154","3740460","GW","true","" +"NM-16636","","","678218","3776320","GW","false","" +"NM-28044","","","390552","3887360","GW","false","" +"NM-04067","","","249823","3534390","GW","false","" +"NM-05278","","","237926","3565540","GW","false","" +"NM-17922","","","619718","3797770","GW","false","" +"NM-05666","","","257670","3570200","GW","false","" +"NM-13667","","","542815","3693490","GW","false","" +"NM-00191","","","578917","3575050","GW","false","" +"QY-0696","6.29.29.133","","600834","3842070","GW","true","" +"CX-0125","32","","531894","4046700","GW","true","6 miles northwest of Maxwell" +"EB-036","","","417680","3943130","GW","true","" +"NM-18130","","","606192","3801270","GW","false","" +"NM-07481","","","311708","3604320","GW","false","" +"NM-21573","","","347377","3877500","GW","false","" +"NM-12382","","","548084","3673070","GW","false","" +"WL-0172","","","537304","3659486","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well is south of Sagebrush Valley Road. At intersection with Frankfort Rd, take two track on south side of Sagebrush Valley cross arroyo to well. Well inside small wooden fence with shrubby trees (Hackberry?) and next to power pole." +"NM-15877","","","642389","3752390","GW","false","" +"NM-13358","","","484881","3689770","GW","false","" +"NM-09473","","","197602","3634820","GW","false","" +"NM-16045","","","673057","3758600","GW","false","" +"NM-07369","","","217773","3604040","GW","false","" +"SA-0209","","","246437","3749897","GW","true","From Hwy 52, turn R (west) on CRE -7 (welty mailbox) between mile markers 70-71. Go about 2 miles, turn south on road towards houses. Well is behind houses and barns (west) under windmill." +"NM-24872","","","408501","3946560","GW","false","" +"NM-01416","","","619386","3935300","GW","false","" +"NM-02085","","","338685","3558540","GW","false","" +"NM-00885","","","196771","3783180","GW","false","" +"NM-17760","","","611806","3793670","GW","false","" +"NM-11767","","","564717","3663800","GW","false","" +"QU-168","","","450107","4076031","GW","true","Take third turn B-0042 Latir Road straight back and one dog leg, through the black/red/yellow skull gate. Well in vault north of house." +"NM-07074","","","224594","3597560","GW","false","" +"NM-13401","","","615457","3691190","GW","false","" +"NM-22944","","","608387","3893230","GW","false","" +"SM-4023","","","451601","3629787","PS","true","Stream flow measurement by Patrick Walsh" +"NM-01622","","","297932","4022470","GW","false","" +"NM-20867","","","563296","3854880","GW","false","" +"NM-12701","","","656321","3680640","GW","false","" +"NM-20837","","","356020","3855050","GW","false","" +"NM-03195","","","571143","3825040","GW","false","" +"QY-0328","11.33.25.443","","646855","3890180","GW","true","" +"NM-19765","","","227741","3835880","GW","false","" +"NM-24715","","","405784","3944000","GW","false","" +"NM-25744","","","416818","3993740","GW","false","" +"NM-14357","","","543683","3701500","GW","false","" +"NM-21146","","","403199","3864570","GW","false","" +"NM-01022","","","663908","3831080","GW","false","" +"NM-16025","","","141010","3762710","GW","false","" +"NM-20706","","","560475","3851220","GW","false","" +"NM-17175","","","630743","3784480","GW","false","" +"NM-01956","","","234058","3547920","GW","false","" +"NM-09966","","","554816","3635990","GW","false","" +"NM-19096","","","570491","3817440","GW","false","" +"NM-12929","","","632668","3684050","GW","false","" +"QY-0991","9.34.3.112","","652463","3878720","GW","true","" +"NM-25120","","","411584","3955560","GW","false","" +"NM-15639","","","671801","3747150","GW","false","" +"NM-26448","","","458008","4061780","GW","false","" +"NM-22335","","","377551","3886040","GW","false","" +"NM-06169","","","188929","3581210","GW","false","" +"NM-22758","","","238961","3893840","GW","false","" +"DE-0202","","","611786","3599884","GW","false","" +"NM-11422","","","616848","3659200","GW","false","" +"NM-05027","","","336055","3559600","GW","false","" +"BW-0606","9S9E31.1","","402615","3705780","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06559","","","577494","3584250","GW","false","" +"NM-04731","","","673600","3554830","GW","false","" +"NM-27837","","","552107","3807560","GW","false","" +"NM-23385","","","231646","3905160","GW","false","" +"HS-026","TC-026","","289247","3667770","GW","true","Broadway and McElroy on the SE corner, in the abandoned, gravel lot with red building " +"NM-14348","","","553572","3701460","GW","false","" +"NM-01565","","","238352","3991300","GW","false","" +"NM-01639","","","289637","4034360","GW","false","" +"NM-07787","","","225446","3611410","GW","false","" +"NM-28412","S-2016-038","","622747","3569234","GW","true","" +"NM-21432","","","604198","3872410","GW","false","" +"NM-17830","","","515543","3795010","GW","false","" +"NM-19275","","","551258","3822580","GW","false","" +"NM-21694","","","401881","3878810","GW","false","" +"NM-18166","","","611489","3801790","GW","false","" +"NM-25118","","","411583","3955490","GW","false","" +"MI-0269","","","574726","3948346","GW","true","Topographic situation: Plains" +"NM-10918","","","550071","3649150","GW","false","" +"NM-24634","","","412126","3941810","GW","false","" +"QY-0104","10.34.17.441","","650201","3884020","GW","true","" +"NM-18513","","","655181","3808460","GW","false","" +"QY-0508","16.36.15.432","","671673","3942430","GW","true","" +"NM-23873","","","433583","3917530","GW","false","" +"NM-07023","","","217668","3596610","GW","false","" +"NM-25415","","","374125","3973300","GW","false","" +"NM-08445","","","556610","3617710","GW","false","" +"NM-14370","","","556796","3701940","GW","false","" +"SB-0158","TWDB 4742202","","516302","3468343","GW","false","" +"PC-076","PW-134","","369829","3909579","GW","true","" +"NM-20392","","","666643","3844250","GW","false","" +"NM-07592","","","558222","3604760","GW","false","" +"NM-12425","","","664225","3675530","GW","false","" +"NM-10805","","","666919","3649670","GW","false","" +"NM-19292","","","515012","3822880","GW","false","" +"NM-26320","","","472205","4044970","GW","false","" +"DA-0087","23S2E9.221","","336525","3578180","GW","true","" +"TC-323","","","446441","4065401","GW","true","" +"NM-14070","","","545254","3696950","GW","false","" +"BC-0389","392","","344963","3872547","GW","false","" +"NM-12702","","","558948","3679100","GW","false","" +"NM-08702","","","206667","3626070","GW","false","" +"NM-22166","","","345662","3884620","GW","false","" +"QU-537","","","444285","4060920","SP","true","Drive to the end of Upper Embargo Road and park by QU-069. Walk down to river on west side (dry side) of tailings toe." +"NM-07909","","","605284","3610100","GW","false","" +"BC-0156","137","","380492","3891850","GW","true","" +"QY-0556","5.27.3.312","","584864","3838440","GW","true","" +"NM-04325","M-042","","236487","3546436","GW","false","From the building near NM_04335, go east on dirt road about 0.3 miles to a gate. Continue east for another 0.8 miles to a second gate. Well is another 200 ft east of the gate near the power poles and a red structure." +"NM-17222","","","649418","3785470","GW","false","" +"NM-19517","","","402661","3827970","GW","false","" +"NM-14773","","","544638","3718200","GW","false","" +"NM-00369","","","676052","3628310","GW","false","" +"PC-004","","","368082","3907826","GW","true","" +"TO-0533","7N9E3.3","","409916","3857780","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-15023","","","562717","3728220","GW","false","" +"NM-17152","","","650257","3784250","GW","false","" +"MI-0097","","","516363","3920596","GW","true","Topographic situation: Valley" +"NM-15698","","","672364","3748700","GW","false","" +"NM-10671","","","672362","3647360","GW","false","" +"NM-17517","","","644258","3789700","GW","false","" +"NM-08762","","","240459","3625710","GW","false","" +"NM-03722","","","163001","3493410","GW","false","" +"EB-316","","","399790","3937163","GW","true","NE section of museum property behind house w/circular drive, in well house near pond" +"WL-0217","","","246788","3645505","GW","true","Take Rt 152 to Kingston. Continue on Main Street for 0.19 miles, take a right on Italian Street, take a right on North Street. They are the second street on north (left) side of road. Look for decorative steel fence around house @ address 23 Kingston North Street. Well in pump house next to residence." +"NM-13911","","","544977","3695440","GW","false","" +"SM-0040","","","447836","3641487","GW","true","Hwy 82 between miles 29-30. South on Sleeping Bear Ln, Right on Carpenter Lane. Well is in shed just past house #12 on L side." +"NM-15195","","","499976","3734230","GW","false","" +"NM-23518","","","369310","3907970","GW","false","" +"NM-27782","","","314939","3800960","GW","false","" +"NM-00466","","","660427","3642650","GW","false","" +"NM-15792","","","659539","3750080","GW","false","" +"BW-0090","8S10E9.122a","","415568","3721810","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08133","","","556663","3612970","GW","false","" +"NM-14172","","","541941","3698350","GW","false","" +"NM-11210","","","555622","3654350","GW","false","" +"NM-26457","","","220377","4066440","GW","false","" +"NM-12361","","","553911","3672820","GW","false","" +"NM-26753","","","445660","4089010","GW","false","" +"EB-243","SF-33","","408912","3946594","GW","true","3246 Agua Fria; behind house, off Callejonde Rita, in pit" +"NM-07051","","","611199","3593900","GW","false","" +"NM-13354","","","550276","3689770","GW","false","" +"NM-27182","","","229515","3988240","ES","true","" +"NM-13419","","","624398","3691420","GW","false","" +"NM-13240","","","139019","3694600","GW","false","" +"AR-0236","","","243647","4093843","GW","true","From Aztec, drive 12 miles north on Hwy 550. Turn right (east) on Rd 2290. Road descends down steep hill ~0.25 miles, crosses animas river. Dirve 0.25 miles east of bridge to house and white building. Well is between house and building." +"NM-07996","","","228132","3614200","GW","false","" +"NM-09263","","","580507","3628350","GW","false","" +"NM-19980","","","611617","3835780","GW","false","" +"SB-0122","TWDB 4725902","","508810","3485328","GW","false","" +"NM-28455","","","477566","4071900","GW","true","" +"NM-04715","","","670353","3554620","GW","false","" +"NM-08128","","","648866","3613800","GW","false","" +"NM-20384","","","610761","3843440","GW","false","" +"EB-172","","","405330","3943594","GW","true","West side of Fairly Rd, 0.2 mi S of Airport Rd; south end of empty lot w/cyclone fence/locked gate." +"NM-21366","","","377356","3871560","GW","false","" +"NM-00919","","","672418","3799430","GW","false","" +"NM-22709","","","346736","3890760","GW","false","" +"JM-034","","","299362","3659420","GW","true","" +"NM-03541","","","674241","3963920","GW","false","" +"NM-15314","","","189877","3743060","GW","false","" +"SA-0080","","","250351","3793920","GW","true","" +"NM-09641","","","623612","3632730","GW","false","" +"MI-0264","","","562090","3946334","GW","true","Topographic situation: Arroyo" +"SM-0253","","","422875","3644974","GW","true","" +"NM-14633","","","251169","3715400","GW","false","" +"NM-21623","","","269283","3880070","GW","false","" +"NM-06803","","","569544","3588970","GW","false","" +"NM-01393","","","637881","3929990","GW","false","" +"NM-21456","","","350842","3874050","GW","false","" +"NM-10755","","","667919","3648880","GW","false","" +"NM-18314","","","679589","3805070","GW","false","" +"SB-0396","TWDB 4808406","","488421","3533453","GW","false","" +"BW-0647","14S9E3.333","","399403","3665390","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16595","","","590186","3774550","GW","false","" +"NM-27783","","","580459","3797280","GW","false","" +"NM-00980","","","546209","3812810","GW","false","" +"BW-0645","13S12E27.4","","428919","3668400","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TS-061","","","437309","4062267","SP","true","West side of river on canyon wall w/vegetation signature." +"TC-415","HM-19","","441511","4039260","GW","true","" +"NM-13774","","","545341","3694830","GW","false","" +"BW-0209","14S9E26.441","","402200","3658870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18604","","","608696","3809030","GW","false","" +"UC-0055","","","665949","4044408","GW","true","elv 4882 acc to USGS" +"NM-09694","","","212364","3636450","GW","false","" +"DE-0261","","","663120","3634567","GW","false","" +"NM-11214","","","546023","3654420","GW","false","" +"QY-0195","11.30.14.322","","615561","3893440","GW","true","" +"CX-0129","36","","544252","4050990","GW","true","5 miles northeast of Maxwell" +"BW-0590","19S5E27.1","","366435","3611250","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10026","","","199077","3641350","GW","false","" +"NM-07816","","","678040","3610390","GW","false","" +"NM-22994","","","349787","3894570","GW","false","" +"NM-20640","","","401570","3849830","GW","false","" +"NM-10032","","","653279","3638420","GW","false","" +"NM-15540","","","133255","3749790","GW","false","" +"NM-17333","","","232774","3789070","GW","false","" +"EB-025","","","420106","3934109","GW","true","SE Corner of Hwy 285 and Camino Valle" +"NM-25870","","","412445","4001580","GW","false","" +"QY-0067","10.31.19.224","","619748","3883060","GW","true","" +"ED-0176","22S26E1.144","","570674","3587610","GW","true","" +"NM-27615","","","651787","3794130","GW","false","" +"NM-09533","","","217729","3634660","GW","false","" +"PP-087","PSW-6","","433973","4006209","PS","true","" +"NM-27010","","","253606","3778340","GW","true","" +"NM-00848","","","303567","3733470","GW","false","" +"NM-05839","","","568889","3570240","GW","false","" +"NM-09254","","","406648","3628300","GW","false","" +"NM-27096","","","326804","3777290","GW","true","" +"NM-11698","","","279552","3664830","GW","false","" +"NM-14903","","","651189","3723970","GW","false","" +"NM-19677","","","374167","3831180","GW","false","" +"NM-04905","","","655676","3557680","GW","false","" +"NM-12836","","","560875","3681360","GW","false","" +"SD-0122","10N.4.5E.24.344","","367123","3881600","GW","true","120 feet NW of 10.4 1/2.24.344;" +"SO-0069","3N1W15.22","","323402","3818140","GW","true","" +"NM-09365","","","225779","3632920","GW","false","" +"NM-25123","","","400342","3956690","GW","false","" +"NM-22540","","","381808","3888230","GW","false","" +"NM-12928","","","550105","3682780","GW","false","" +"TC-253","CO-01","","408616","4103321","GW","true","" +"NM-13305","","","609141","3689610","GW","false","" +"ED-0140","21S27E30.443","","573055","3590060","GW","true","" +"NM-04225","","","119068","3546100","GW","false","" +"BW-0024","22S4E13.424","","360791","3584800","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EM-9009","","","194424","3882730","M","true","South side of North Point, below Arran Lopez inscription" +"NM-00227","","","679392","3584580","GW","false","" +"AB-0169","S219","","349074","3924530","GW","true","" +"NM-09172","","","660869","3628930","GW","false","" +"SA-0019","SA-19_R00","","231835","3782318","GW","true","Turn W off NM 12 about 0.8 mi south of Mile marker 73 (on Hwy 60?). Access forest road 66. Then go about 2.6 miles to well. Large, tall metal storage tank about 15 ft SE of well. Power pole and meter about 15 ft NW of well." +"NM-23983","","","639276","3922960","GW","false","" +"NM-14081","","","547733","3697090","GW","false","" +"NM-26463","","","459252","4062190","GW","false","" +"NM-22907","","","385914","3892620","GW","false","" +"NM-10093","","","553427","3638050","GW","false","" +"NM-11932","","","561957","3665750","GW","false","" +"NM-19895","","","160530","3840170","GW","false","" +"NM-19525","","","178216","3833150","GW","false","" +"NM-27733","","","589347","3789970","GW","false","" +"NM-13763","","","557071","3694760","GW","false","" +"NM-03280","","","330101","3849670","GW","false","" +"NM-01300","","","359333","3908870","GW","false","" +"NM-27900","","","596450","3827840","GW","false","" +"NM-14761","","","546238","3717800","GW","false","" +"NM-23344","","","386454","3900550","GW","false","" +"NM-04738","","","677713","3555030","GW","false","" +"SO-0202","SAC-W04A","","324943","3791015","GW","true","" +"NM-06512","","","360396","3584120","GW","false","" +"NM-24271","","","412692","3932770","GW","false","" +"NM-19601","","","601195","3829680","GW","false","" +"NM-22456","","","224272","3890700","GW","false","" +"NM-26345","","","211078","4053010","GW","false","" +"NM-02957","","","671367","3756940","GW","false","" +"NM-09406","","","323951","3631120","GW","false","" +"NM-20149","","","625392","3839430","GW","false","" +"NM-18958","","","541227","3814220","GW","false","" +"BW-0104","9S6E2.442","","380563","3713840","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19455","","","614320","3827180","GW","false","" +"NM-21720","","","351673","3879960","GW","false","" +"NM-14242","","","414246","3699560","GW","false","" +"NM-07297","","","594157","3598840","GW","false","" +"NM-02474","M-176","","213897","3608250","GW","false","" +"NM-06856","","","570817","3589960","GW","false","" +"TO-0463","10N8E36.111","","404415","3879530","GW","true","" +"NM-16885","","","671919","3780210","GW","false","" +"WL-0093","NM3524030","","400483","3846907","GW","true","Drive south from the junction of I-40 and RT 41 (Howard Cavasos Blvd in Moriarity); drive south on Rt 41 towards Estancia. In Estancia, go west on Williams Avenue. Drive west 1.3 miles, through locked gate, Estancia Water Department has the key. Continue due west 0.4 miles, you will see well buildings to the north and south. Go north to well house, well is in building. (The well to the south is #9)." +"NM-10489","","","222417","3647630","GW","false","" +"NM-02183","","","334457","3566000","GW","false","" +"NM-26102","","","209530","4025450","GW","false","" +"NM-22015","","","373354","3882830","GW","false","" +"NM-19763","","","624894","3832960","GW","false","" +"NM-23074","","","357217","3895650","GW","false","" +"NM-02680","","","545229","3646510","GW","false","" +"NM-14878","","","426482","3722560","GW","false","" +"NM-02834","","","297364","3702970","GW","false","" +"NM-28012","","","357680","3881530","GW","false","" +"SA-0332","","","238616","3706277","GW","true","" +"NM-22760","","","238958","3893750","GW","false","" +"NM-17871","","","627192","3797060","GW","false","" +"SR-0020","","","168415","3731950","SP","true","Gila N.F.; from Rt 12 west of Apache Cr., climb St Rt 233 to Eagle Pk. Look Out, descend 300 m SW to spring" +"SB-0230","TWDB 4807114","","480105","3537161","GW","false","" +"NM-03110","","","675485","3809960","GW","false","" +"NM-16787","","","236391","3780980","GW","false","" +"QY-0063","10.31.12.333","","626583","3885220","GW","true","" +"NM-16502","","","667854","3773950","GW","false","" +"NM-08344","","","672568","3617660","GW","false","" +"NM-27627","","","651753","3794630","GW","false","" +"SM-4078","","","435630","3619618","PS","true","Stream flow measurement by Patrick Walsh" +"SO-0177","HWY-W05A","","328774","3755365","GW","true","" +"NM-12943","","","560554","3683140","GW","false","" +"NM-22305","","","345797","3886130","GW","false","" +"NM-04397","","","681734","3547180","GW","false","" +"NM-14410","","","668913","3705220","GW","false","" +"NM-20203","","","214802","3843760","GW","false","" +"NM-26309","","","472548","4043340","GW","false","" +"RA-088","","","392835","4023302","GW","true","In back yard." +"TB-0079","","","403587","3644489","GW","true","Off of La Luz Gate Road (intersection just north of Alamogordo - head west). W center of plant complex in beige metal building. Pumps to yellow water towers above building." +"NM-23585","","","357432","3909290","GW","false","" +"WS-008","","","381387","3631480","GW","true","West side of picnic loop" +"NM-21566","","","347254","3877430","GW","false","" +"NM-18676","","","276748","3812210","GW","false","" +"DA-0043","21S3E33.122","","345568","3590930","GW","true","" +"NM-02971","","","218961","3763220","GW","false","" +"NM-10932","","","276011","3651780","GW","false","" +"NM-19229","","","183557","3826610","GW","false","" +"QU-505","","","439374","4057081","SP","true","Along Red River, just upstream from confluence of Rio Grande and Red River, ~100 meters further upstream from QU-504." +"MI-0187","","","486615","3945067","GW","true","Topographic situation: Plains" +"SB-0014","TWDB 4709202","","505440","3524334","GW","false","" +"QY-0384","12.33.16.111","","640617","3904490","GW","true","" +"QY-0297","11.32.12.333","","635965","3894820","GW","true","" +"NM-22698","","","359768","3890490","GW","false","" +"NM-05185","","","239090","3563910","GW","false","" +"NM-16256","","","206601","3769060","GW","false","" +"NM-11734","","","560418","3663340","GW","false","" +"DE-0063","","","540987","3591884","GW","false","" +"NM-15989","","","658018","3756550","GW","false","" +"NM-14413","","","546100","3703610","GW","false","" +"PC-030","PW-053","","367139","3907238","GW","true","" +"NM-05697","","","221338","3571470","GW","false","" +"AR-0505","","","232818","4080387","PS","true","" +"NM-18303","","","656066","3804270","GW","false","" +"NM-19539","","","405977","3828310","GW","false","" +"TO-0043","3N8E16.222","","398690","3817380","GW","true","" +"NM-18333","","","507178","3803410","GW","false","" +"NM-25738","","","402659","3993550","GW","false","" +"WL-0141","","","372573","3911025","GW","true","High clearance vehicle needed! From I-25 take NM-165 east thru Placitas ~7.1 miles. Turn left (north) onto Camino de Tecolote for ~0.8 miles. At intersection w/Camino de la Rosa Castilla stay straight and road becomes Camino de San Francisco. Go 0.6 miles and turn left (west) onto Linda Placitas Rd for 0.4 miles, then turn left (south) on Dos Hermanitas. Pass 3 dirt roads and take middle road (circular sign ""Little Yellow Flower Hill"") up hill looking for #16 on left side. This is Callen driveway that's more like a 2 track. Well is under manhole cover in old driveway." +"NM-26075","","","396261","4019230","GW","false","" +"NM-00370","","","647285","3627870","GW","false","" +"NM-10678","","","434214","3646620","GW","false","" +"NM-20457","","","166568","3850540","GW","false","" +"NM-10277","","","675270","3641590","GW","false","" +"NM-16710","","","586557","3776270","GW","false","" +"NM-09005","","","559118","3625050","GW","false","" +"NM-21918","","","351792","3881940","GW","false","" +"NM-06726","","","567020","3587540","GW","false","" +"SM-4058","","","437261","3631781","PS","true","Stream flow measurement by Patrick Walsh" +"SM-4031","","","438871","3621108","PS","true","Stream flow measurement by Patrick Walsh" +"NM-04600","","","675776","3553330","GW","false","" +"SM-0010","","","425532","3635423","GW","true","Take Sunspot Rd south to mile marker 8, turn right onto gravel road with black mailbox and yellow cattlegaurd. There is an old outhouse just up road. This well is across meadow to south in corral-paddock. Well is steel pipe with small port on top adjacent to wooden hutch with an electric box on it." +"TB-0093","","","434765","3709643","GW","true","Hwy 37 between mile 7 and 8. Turn west on Pfingsten Rd. Go approx 1 mi to 108 Sunset Mesa. House in back, WM to right." +"NM-12528","","","613405","3676470","GW","false","" +"SM-4042","","","437877","3651462","PS","true","Stream flow measurement by Patrick Walsh" +"NM-08883","","","558370","3623820","GW","false","" +"NM-15369","","","193170","3744490","GW","false","" +"NM-03236","","","398069","3836650","GW","false","" +"TC-423","","","452810","4092220","GW","true","At the Rio Plaza Inn in Costilla. In building with tower." +"SB-0642","TWDB 4915201","","388818","3525643","GW","false","" +"NM-20196","","","606095","3839930","GW","false","" +"NM-13350","","","550302","3689740","GW","false","" +"NM-16250","","","562454","3764280","GW","false","" +"NM-28289","163890","","148262","3749918","SP","false","Gila National Forest" +"NM-07642","","","191109","3610260","GW","false","" +"NM-26705","","","445279","4079710","GW","false","" +"QY-0561","5.28.1.212","","598365","3839360","GW","true","" +"NM-20016","","","615478","3836440","GW","false","" +"NM-21152","","","672536","3866390","GW","false","" +"NM-07202","","","188367","3601060","GW","false","" +"NM-07540","","","247670","3606970","GW","false","" +"NM-23849","","","469778","3916410","GW","false","" +"NM-12992","","","532770","3684090","GW","false","" +"NM-11191","","","622091","3654710","GW","false","" +"NM-21715","","","235336","3882470","GW","false","" +"NM-19288","","","156142","3829190","GW","false","" +"NM-19181","","","543215","3819920","GW","false","" +"NM-15568","","","662910","3745330","GW","false","" +"NM-01257","","","646022","3896600","GW","false","" +"NM-24330","","","477215","3934350","GW","false","" +"NM-25821","","","656184","3999370","GW","false","" +"NM-11005","","","553334","3650490","GW","false","" +"SM-0024","","","424847","3627692","GW","true","Well is in insulated wellhouse adjacent to highway just south of road to Sunspot lab. Rex's office is in Community center, past V.C., has flag in front." +"NM-16526","","","638964","3773880","GW","false","" +"NM-14704","","","144174","3721940","GW","false","" +"NM-19639","","","337200","3831200","GW","false","" +"NM-02469","","","329928","3604800","GW","false","" +"NM-03451","","","673099","3902060","GW","false","" +"NM-17890","","","429557","3796530","GW","false","" +"NM-19966","","","394721","3835450","GW","false","" +"NM-04934","","","604268","3557300","GW","false","" +"WL-0185","","","440945","3927817","GW","true","From Pecos, NM drive south on Hwy 63 for 5 miles then turn left (east) into Forked Lightning Ranch. Drive 0.6 miles (past Hacienda) then turn right (south) on dirt road. Follow 2 miles to River House. Well is behind tennis court." +"NM-00431","","","661462","3636900","GW","false","" +"NM-04270","","","342441","3542090","GW","false","" +"NM-18669","","","637090","3810790","GW","false","" +"NM-02907","","","656803","3738290","GW","false","" +"MI-0105","","","539770","3921637","GW","true","Topographic situation: Plains" +"NM-28384","N-2016-076","","559260","3619252","GW","true","" +"NM-05325","","","666572","3564480","GW","false","" +"JM-008","","","324827","3652693","GW","true","" +"NM-05313","","","243525","3566140","GW","false","" +"NM-05765","","","242124","3571850","GW","false","" +"TS-058","","","434401","4021378","SP","true","Above Dustbowl camping area." +"NM-01042","","","663782","3838590","GW","false","" +"EB-454","","","419857","3927425","GW","true","42 Lime Kiln Road." +"SD-0236","11N.5E.24.132","","375970","3892220","GW","true","" +"NM-14998","","","360394","3728160","GW","false","" +"NM-09790","","","675978","3635410","GW","false","" +"NM-10447","","","165800","3648900","GW","false","" +"NM-05794","","","672099","3570610","GW","false","" +"NM-05198","","","262463","3563490","GW","false","" +"NM-07590","","","217039","3608560","GW","false","" +"NM-03943","","","261664","3525850","GW","false","" +"SM-1013","","","436106","3629483","SP","true","Access Hay Canyon by Prestridge Hill Road or Agua Chiquita. Has marker sign." +"BC-0114","99","","377303","3871320","GW","true","" +"NM-06961","","","675373","3593000","GW","false","" +"NM-26226","","","447787","4031960","GW","false","" +"NM-12422","","","557039","3673790","GW","false","" +"BW-0346","17S9E5.122","","402584","3636940","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16770","","","634954","3778290","GW","false","" +"NM-03886","","","321934","3522130","GW","false","" +"BC-0132","115","","378421","3892260","GW","true","" +"NM-27635","","","642598","3794540","GW","false","" +"NM-25688","","","579404","3988380","GW","false","" +"SA-0474","6S15W1.430","","190815","3746320","GW","true","" +"BC-0046","37","","378221","3886440","GW","true","" +"NM-14664","","","482726","3713240","GW","false","" +"NM-25852","","","674043","4001800","GW","false","" +"NM-10741","","","651208","3647970","GW","false","" +"NM-25109","","","411732","3955370","GW","false","" +"SM-4073","","","451604","3629776","PS","true","Stream flow measurement by Patrick Walsh" +"NM-06381","","","286356","3582890","GW","false","" +"NM-20427","","","588191","3844210","GW","false","" +"NM-04403","","","669086","3547240","GW","false","" +"NM-05300","","","607872","3563280","GW","false","" +"NM-22772","","","379765","3890670","GW","false","" +"NM-10421","","","260486","3645800","GW","false","" +"NM-18026","","","622249","3799710","GW","false","" +"BW-0771","4.26.31.1","","619710","3549140","GW","true","" +"NM-24480","","","298546","3939950","GW","false","" +"NM-13089","","","663296","3687630","GW","false","" +"NM-01495","","","641900","3954530","GW","false","" +"QU-003","","","447039","4063779","GW","true","From main road heading north, take a right fork @ Herrera Rd. ~0.25 mile past town hall (road sign is currently missing so watch for turn). Turn right @ #39 and follow until it becomes deadend driveway making a left at the fork at the end of the driveway. Walk between brown adobe house and large plum tree just to right of porch on house. Hang a right after passing between plum tree and porch, and look for well shack near power pole." +"NM-01915","","","117351","3545210","GW","false","" +"NM-16317","","","308017","3768700","GW","false","" +"NM-03980","","","253892","3527600","GW","false","" +"SM-0035","","","420432","3625055","GW","true","From Graham Ranch Well 1, take bladed road across Dog Canyon drainage, cross two more ravines, curve left, curve right, turn right on graded road, follow this to well, crossing Dog Canyon again to trailer. Well is in small clearing to the right, past junked cars and the trailer house. Well is not equipped, eprobe ok. Installed continuous data logger on 1/12/06." +"BW-0400","17S10E19.121a","","410462","3631240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18617","","","559504","3808550","GW","false","" +"NM-00272","","","365869","3598730","GW","false","" +"AR-0224","","","227213","4078750","GW","true","Going northeast on 516, turn sharp right on Rd 3275, go over ditch, house is on the left. Well is in backyard in pump house." +"NM-12754","","","628756","3680540","GW","false","" +"NM-18111","","","631781","3801630","GW","false","" +"NM-00358","","","678646","3626580","GW","false","" +"DE-0391","","","569478","3626282","GW","false","" +"AB-0202","S255","","362123","3895540","GW","true","" +"NM-23782","","","384633","3915100","GW","false","" +"NM-13312","","","560774","3689310","GW","false","" +"EB-101","","","416630","3958000","GW","true","" +"NM-15802","","","172005","3754520","GW","false","" +"NM-21441","","","301715","3874220","GW","false","" +"NM-10738","","","216553","3650820","GW","false","" +"NM-04726","","","234000","3556770","GW","false","" +"ED-0309","23S28E18.333","","581668","3573900","GW","true","" +"SB-0571","TWDB 4855902","","487823","3448049","GW","false","" +"SB-0928","","","483853","3581290","GW","false","" +"NM-20038","","","568310","3836430","GW","false","" +"NM-08968","","","456992","3624570","GW","false","" +"NM-26627","","","193601","4076470","GW","false","" +"TO-0489","6N5E2.134","","372644","3849080","SP","true","" +"NM-18732","","","607804","3811150","GW","false","" +"NM-20178","","","567984","3839170","GW","false","" +"NM-00896","","","337245","3787140","GW","false","" +"NM-13151","","","490875","3686650","GW","false","" +"BW-0495","6S8E33.241","","397463","3734600","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0121","","","644172","4084268","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-25977","","","376572","4008090","GW","false","" +"NM-21605","","","354756","3877810","GW","false","" +"NM-26680","","","196646","4081370","GW","false","" +"NM-28312","OC-28","","407413","4021070","GW","false","" +"NM-17470","","","640411","3788560","GW","false","" +"NM-26277","","","319884","4040300","GW","false","" +"NM-03299","","","394772","3856230","GW","false","" +"SM-0262","","","324436","3770478","GW","true","Well is located behind house at 519 Western in NE corner of yard next to fence. " +"NM-17018","","","622814","3781940","GW","false","" +"PP-011","PW-11c","","438593","4003444","GW","true","" +"NM-26620","","","152184","4077560","GW","false","" +"DA-0153","26S3E6.211","","342050","3550690","GW","true","" +"AB-0011","S013","","359029","3839100","GW","true","" +"PC-127","PW-214","","368663","3911311","GW","true","" +"TO-0549","8N9E6.4","","406073","3867370","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"WL-0246","","","371291","4067570","GW","true","From the junction of HWY 64/84 and HWY 512, north of Tierra Amarilla, drive east on HWY 512 for 7.1 miles, then turn left (north) at the sign for Brazos Lodge onto Falls Creek Road. Follow Falls Creek Road for 0.15 mile, well is behind building on right (south) side of road labeled Brazos MDWCA Well 3." +"NM-19946","","","142798","3841490","GW","false","" +"NM-24320","","","465834","3934200","GW","false","" +"NM-09182","","","230564","3630790","GW","false","" +"PC-115","PW-199","","364473","3909191","GW","true","" +"NM-18633","","","628727","3809990","GW","false","" +"NM-12946","","","653383","3684750","GW","false","" +"NM-25722","","","587756","3991570","GW","false","" +"SM-0083","","","449223","3650626","GW","true","Off of 16 Springs Canyon Rd, turn left onto Owl Rd, across cattle guard, first driveway on left at #10" +"NM-11935","","","661071","3667350","GW","false","" +"NM-14614","","","548540","3711130","GW","false","" +"NM-22482","","","375421","3887670","GW","false","" +"NM-04256","","","153638","3546000","GW","false","" +"NM-26366","","","578940","4052840","GW","false","" +"NM-13438","","","623051","3691620","GW","false","" +"TS-117","","","427467","4013198","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"NM-15519","","","657246","3744250","GW","false","" +"NM-20369","","","604203","3842990","GW","false","" +"NM-25489","","","626727","3976880","GW","false","" +"RA-025","","","359201","4085400","GW","true","In small shed behind house." +"TB-0021","","","434563","3713343","GW","true","Chavez Road off Hwy 37. turn north across from concrete white pipe fence. Labeled Stearns, just over the creek. Well is past house and shed, behind tree." +"NM-24292","","","476431","3932900","GW","false","" +"BC-0440","443","","379572","3892051","GW","false","" +"NM-09399","","","643274","3631030","GW","false","" +"NM-12575","","","654787","3677780","GW","false","" +"JM-001","","","319283","3645249","GW","true","Well in underground bunker." +"NM-24876","","","408198","3946620","GW","false","" +"NM-00928","","","176623","3805650","GW","false","" +"NM-18360","","","577077","3804370","GW","false","" +"PC-057","PW-093","","372188","3908820","GW","true","" +"NM-12034","","","561947","3667390","GW","false","" +"NM-13031","","","648103","3686520","GW","false","" +"NM-13900","","","555232","3695490","GW","false","" +"NM-07967","","","231144","3613690","GW","false","" +"NM-13480","","","142721","3698010","GW","false","" +"NM-12925","","","636267","3683910","GW","false","" +"NM-04998","","","263859","3560400","GW","false","" +"NM-06946","NH-014","","277257","3593420","GW","false","" +"NM-21885","","","348866","3881760","GW","false","" +"NM-13372","","","553273","3690090","GW","false","" +"NM-19658","","","592831","3830480","GW","false","" +"NM-25602","","","224772","3986940","GW","false","" +"NM-05892","","","242520","3574020","GW","false","" +"NM-13839","","","543841","3695130","GW","false","" +"NM-12020","","","292302","3669150","GW","false","" +"NM-03366","","","595628","3882020","GW","false","" +"NM-06378","","","676819","3582120","GW","false","" +"NM-17951","","","633620","3798170","GW","false","" +"NM-25150","","","676714","3959560","GW","false","" +"NM-24483","","","417804","3938180","GW","false","" +"NM-25536","","","259137","3983060","GW","false","" +"NM-25776","","","405585","3995830","GW","false","" +"NM-24807","","","656322","3946230","GW","false","" +"NM-20635","","","553752","3849300","GW","false","" +"NM-20356","","","586732","3842530","GW","false","" +"NM-24506","","","400493","3938790","GW","false","" +"RA-044","","","416897","4008135","GW","true","In well house next to driveway." +"NM-09765","","","541806","3633310","GW","false","" +"EB-329","","","399211","3940177","GW","true","Cieneguilla Grant; #53 Cam.Montoya, under fake windmill next to pad" +"NM-14528","","","652172","3709070","GW","false","" +"NM-17327","","","654645","3786790","GW","false","" +"NM-10222","","","662277","3641430","GW","false","" +"PC-067","PW-117","","368766","3907515","GW","true","" +"NM-27039","","","322179","3786650","GW","true","" +"NM-02446","","","341736","3597550","GW","false","" +"NM-03411","","","356086","3892950","GW","false","" +"OG-0004","","","638638","3822638","GW","false","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1 mile south. Turn right west onto dirt, drive 0.7 miles west to well." +"NM-15583","","","193535","3748650","GW","false","" +"TS-126","","","425991","4012306","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"AR-0060","B025","","233423","4082020","GW","true","From Aztec take Hwy 516 west toward Farmington. Just across river, turn right on Ruins Rd (Rd 2900). Rd 2900 turns right and travels thru Natl. Monument along river. Proceed to address on right. Well is about 50' W of large stucco/ stone house at N edge of grass lawn. This is Eric's (owner's) well." +"NM-17800","","","533416","3794160","GW","false","" +"NM-28130","","","665304","3948950","GW","false","" +"NM-10842","","","662422","3649960","GW","false","" +"NM-02889","","","666959","3725520","GW","false","" +"NM-14114","","","545923","3697510","GW","false","" +"NM-02658","","","529923","3642600","GW","false","" +"NM-09219","","","556631","3627630","GW","false","" +"NM-06828","","","557162","3589450","GW","false","" +"NM-24862","","","402061","3946350","GW","false","" +"QY-0060","10.30.7.331","","608775","3885060","GW","true","" +"SD-0132","10N.5E.2.413","","374896","3886910","GW","true","" +"NM-25812","","","405681","3997740","GW","false","" +"NM-23581","","","647292","3909340","GW","false","" +"NM-13844","","","544461","3695160","GW","false","" +"NM-01525","","","675683","3968940","GW","false","" +"NM-02462","","","204308","3605420","GW","false","" +"NM-08413","","","290416","3619320","GW","false","" +"NM-24447","","","437405","3937340","GW","false","" +"NM-24702","","","626518","3944060","GW","false","" +"NM-24261","","","476555","3932230","GW","false","" +"AS-004","AS-101","","448715","4041630","GW","true","" +"NM-27169","","","299660","3761670","SP","true","" +"NM-10747","","","620224","3648280","GW","false","" +"TV-195","","","436504","4023133","GW","true","Barranca del Pueblo area along Rio Pueblo. Nueve Vistas subdivision Lot 2. Access to vault requires key from Larry Brooks." +"NM-15269","","","550505","3737120","GW","false","" +"UC-0148","","","645770","4045738","GW","false","" +"NM-25991","","","420655","4008620","GW","false","" +"NM-09133","","","667986","3628210","GW","false","" +"NM-27796","","","660250","3800300","GW","false","" +"NM-25707","","","399942","3990040","GW","false","" +"NM-10098","","","557428","3638160","GW","false","" +"NM-20782","","","274509","3855430","GW","false","" +"TB-1017","","","418870","3707994","SP","true","(Can access from Willow Spring or) Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill, stay south, left at fork past Nagel Windmill to northeast (watch the mudhole!) along fence down canyon into arroyo. Stay east through two gates past windmill on left. From McClain Windmill east, stay left (North) at fork, through arroyo to silver tank. Go through gate to north and bear southeast and continue south, right fork to west at house and south through gate. Continue south past South Finley Spring down hill to the southwest to spring?" +"BW-0531","8S10E15.1","","416952","3719980","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20890","","","402422","3855860","GW","false","" +"NM-08199","","","208802","3617960","GW","false","" +"NM-26793","","","399359","3993710","GW","false","" +"SD-0186","10N.6E.6.414","","378226","3886920","GW","true","" +"NM-22386","","","633886","3886730","GW","false","" +"NM-02657","","","555064","3642710","GW","false","" +"EB-267","","","395127","3966201","GW","true","~700-800 ft from end of Buckman Rd; off north bank of arroyo" +"NM-26420","","","166221","4066770","GW","false","" +"NM-27767","","","578385","3794680","GW","false","" +"DE-0379","","","569347","3626206","GW","false","" +"QY-0698","6.29.30.112","","599384","3842600","GW","true","" +"NM-02018","M-061","","241224","3554179","GW","false","From Deming, go south on NM11. Go east on Elote/B015 for 0.5 miles. Go south over cattle guard at the end of the road to address (1190 Elote, Deming, NM). Well near well house on east side of driveway. NOTE GUS THE LARGE BLACK DOG IS FRIENDLY." +"DA-0063","22S2E29.424","","335172","3582080","GW","true","" +"SM-0174","","","470949","3646129","GW","true","On HW 82 at mile marker 48, well in small shed, south of main house." +"NM-04415","","","320042","3547630","GW","false","" +"NM-12181","","","554652","3669990","GW","false","" +"NM-18461","","","570936","3805950","GW","false","" +"NM-15629","","","419383","3745290","GW","false","" +"NM-27259","","","563753","3571500","GW","false","" +"CX-0066","25N26E36.11","","578049","4024460","GW","true","" +"NM-17084","","","637063","3783000","GW","false","" +"NM-04406","","","134735","3552410","GW","false","" +"NM-11805","","","642432","3665670","GW","false","" +"NM-03673","","","448080","4084250","GW","false","" +"NM-16476","","","347689","3772630","GW","false","" +"NM-25845","","","670076","4001350","GW","false","" +"TB-0161","","","434453","3711985","GW","true","130 Nogal Canyon Rd., 2nd driveway on north side of road. Gate with elk." +"SB-0863","Mayer 24","","445590","3554122","GW","false","" +"NM-12042","","","680068","3669000","GW","false","" +"NM-21076","","","406267","3861790","GW","false","" +"NM-01496","","","203133","3958480","GW","false","" +"NM-27718","","","638748","3790260","GW","false","" +"BW-0115","9S9E29.424","","405227","3706750","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24114","","","404334","3928390","GW","false","" +"NM-20030","","","397508","3836590","GW","false","" +"DE-0082","","","639320","3568966","GW","false","" +"NM-20465","","","668074","3846680","GW","false","" +"NM-21281","","","656542","3869530","GW","false","" +"NM-27676","","","675259","3796150","GW","false","" +"AB-0093","S105","","346634","3902630","GW","true","" +"NM-09084","","","675183","3627440","GW","false","" +"NM-12167","","","626967","3670910","GW","false","" +"NM-12480","","","679804","3676330","GW","false","" +"NM-21648","","","634284","3878630","GW","false","" +"NM-26273","","","187803","4043460","GW","false","" +"ED-0355","25S29E32.211","","593901","3551170","GW","true","" +"NM-10363","","","646160","3643420","GW","false","" +"NM-03907","","","252030","3524560","GW","false","" +"NM-18117","","","625139","3801470","GW","false","" +"NM-08003","","","232044","3614160","GW","false","" +"NM-21047","","","399857","3860570","GW","false","" +"NM-06936","","","674571","3592590","GW","false","" +"NM-23479","","","657236","3906980","GW","false","" +"NM-20727","","","344440","3852820","GW","false","" +"EB-257","","","418507","3963217","GW","true","Beside Rio Chupadero; past center, veer right into floodplain of Rio C." +"NM-16631","","","661718","3775930","GW","false","" +"NM-05245","","","673457","3563210","GW","false","" +"TB-0039","","","430491","3720098","GW","true","Off hwy 380, turn north on Snell Road, east of Carrizozo. Go about 1/2 mi north, straight through gate at bend in road. Follow road past old house, to to big barn. Walk through barn toward windmill on west side." +"NM-11328","","","673495","3658160","GW","false","" +"NM-22802","","","645352","3891770","GW","false","" +"NM-18437","","","568130","3805530","GW","false","" +"WL-0135","","","322965","3767660","GW","true","Take Hwy 60 west out of Socorro. Turn right on Enterprise Road by Arc of Socorro veterinary clinic. Well house is on right at end of road. Well in locked well house." +"NM-18988","","","613413","3815860","GW","false","" +"NM-18371","","","636578","3805640","GW","false","" +"TO-0473","10N9E34.311","","410874","3878560","GW","true","" +"NM-14785","","","646124","3719790","GW","false","" +"NM-28273","ER-5","","449988","4074330","GW","false","" +"NM-12535","","","559640","3676120","GW","false","" +"NM-10097","","","652665","3639460","GW","false","" +"NM-14708","","","409000","3715660","GW","false","" +"QU-114","Q-12","","445990","4060706","GW","true","From Hwy 522, take Llama Road south opposite the Mustang station. Crossing the Red River, take a right at the T onto old Red River Road. Take steep gravelled fork which appears ~90 m later on the left. After becomes asphalt, find red roof house; 2nd on right. Well is in a vault inside the SW side of garage." +"NM-05957","","","232878","3574890","GW","false","" +"HS-087","TC-087","","289534","3667662","GW","true","In block 11 in Hot Springs, NM" +"NM-13441","","","550323","3690690","GW","false","" +"NM-19245","","","615628","3822390","GW","false","" +"TO-0560","9N8E27.433","","401915","3870210","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-02946","","","679775","3749700","GW","false","" +"NM-14269","","","678351","3701790","GW","false","" +"NM-27172","","","488571","4069090","ES","true","" +"NM-01421","","","650876","3936860","GW","false","" +"NM-15117","","","590441","3731580","GW","false","" +"NM-17052","","","298048","3783640","GW","false","" +"NM-26995","","","326429","3772670","GW","true","" +"NM-21584","","","347573","3877550","GW","false","" +"NM-04871","","","675547","3557450","GW","false","" +"NM-17885","","","678823","3798400","GW","false","" +"NM-03103","","","623649","3807830","GW","false","" +"NM-12797","","","139231","3687060","GW","false","" +"NM-10096","","","561430","3638130","GW","false","" +"NM-17617","","","224742","3793890","GW","false","" +"EB-349","","","414128","3935252","GW","true","2-track NE of Gallina Camp, along perimeter fence, cross powerline" +"NM-03239","","","395557","3837170","GW","false","" +"NM-00336","","","632238","3621760","GW","false","" +"CX-0003","31N26E14.13","","575794","4086760","GW","true","" +"SM-0235","","","454663","3639181","GW","true","Mayhill supply well. Rodney lives at house just east of Baptist church in Mayhill (off of Hwy 82). Call on the way, he is usually home. Well in open field south of old hand dug well and east of cemetery. Gate combo 2506 (Dec. 2020)." +"NM-20189","","","610678","3839740","GW","false","" +"NM-20922","","","391635","3856690","GW","false","" +"NM-02635","","","559880","3636700","GW","false","" +"NM-09709","","","198504","3637080","GW","false","" +"TV-186","","","440972","4023357","GW","true","From SR 68, take SR 96 ~1.5 miles to Golf Course Drive and turn right (north). First house on left. Casing near house to west near spigot." +"NM-09711","","","636367","3633890","GW","false","" +"NM-17216","","","651062","3785160","GW","false","" +"DE-0035","","","646099","3556191","GW","true","From junction of Battle Axe Rd & HWY 128 (UTM zone 13, easting 649,917 northing 3,562,074), go south on Battle Axe Rd. Battle Axe Rd alternates between north-south and east-west. Follow for 5.6 mi to dirt road on left (east) side of road. Follow dirt road 0.5 miles, Woodley windmills visible on the right (south) side of dirt road. 17 Woodley windmill is on the west side of the concrete tank." +"NM-08827","","","671761","3625130","GW","false","" +"EB-495","","","417501","3954784","ES","true","Little Tesuque Creek at State Hwy 22 (Bishops Lodge Rd)" +"DA-0077","23S2W27.334","","307904","3572520","GW","true","" +"NM-17016","","","653672","3782090","GW","false","" +"NM-18275","","","657333","3803970","GW","false","" +"NM-07246","","","187064","3601990","GW","false","" +"NM-14318","","","664190","3702030","GW","false","" +"UC-0076","","","625527","4066465","GW","true","From major intersection in Clayton (First St. and Main St.) go north-west on 1st street toward US 64 turn right on NM-370 (Lake Highway). Proceed 35.8 miles to intersection with NM 370 and Weatherly Road, approx 2.3 miles south of Guy NM. +35.8 / 0.0 mi. From the corner of NM 370 and Weatherly Rd. go East 16.1 miles to Blind Gap Rd. Continue .9 more miles on Weatherly to dirt track to North turn North / Right on dirt track (Fence to your left). +17.0 mi. After turning north on the dirt afte r0.2 mile veer slightly left to windmill and pens ahead. 0.5 miles to windmill from road." +"NM-00658","","","625861","3687920","GW","false","" +"NM-09062","","","204047","3629970","GW","false","" +"BC-0332","315","","377682","3891460","GW","true","" +"NM-04282","","","201133","3545620","GW","false","" +"NM-27946","","","561115","3842940","GW","false","" +"SO-0026","2N3E10.41","","351680","3808890","GW","true","" +"NM-19458","","","628459","3827520","GW","false","" +"NM-22777","","","595283","3890770","GW","false","" +"CX-0150","66","","516070","4031930","GW","true","6 miles northwest of Miami" +"NM-01233","","","652825","3890970","GW","false","" +"NM-00686","","","623069","3691610","GW","false","" +"BC-0439","442","","379612","3892082","GW","false","" +"NM-27799","","","595005","3799640","GW","false","" +"QU-133","MMW-31B","","454648","4060163","GW","true","" +"NM-05040","","","263878","3561210","GW","false","" +"SM-0203","","","480387","3624472","GW","true","Hwy 24, 3.5 mi south of Dunken. Take Denver road west (just after large brown/white cattle pen) to dead end at house. Well is 200 yds southeast? Of house under old windmill tower. Jeremiah Morse site visit." +"NM-18844","","","570427","3812360","GW","false","" +"NM-19724","","","537561","3831170","GW","false","" +"NM-06070","","","235540","3577530","GW","false","" +"TS-088b","","","437997","4056042","PS","true","Red River above confluence with Rio Grande." +"NM-19026","","","647052","3816950","GW","false","" +"NM-08571","","","233172","3623160","GW","false","" +"NM-24587","","","459466","3940240","GW","false","" +"NM-20060","","","600273","3837120","GW","false","" +"NM-23563","","","412402","3908250","GW","false","" +"HS-080","TC-080","","290097","3666867","GW","true","Road across river, turn right at hydraulic gate. After ~1/3 mile look left for culvert pipe in arroyo. Well on east end of pipe." +"NM-09308","","","672815","3630360","GW","false","" +"NM-18294","","","632283","3804130","GW","false","" +"NM-24539","","","399116","3939450","GW","false","" +"NM-17118","","","593101","3782950","GW","false","" +"NM-12212","","","555454","3670180","GW","false","" +"NM-02678","","","665507","3648690","GW","false","" +"NM-07311","","","267013","3601480","GW","false","" +"BC-0054","45","","381156","3888180","GW","true","" +"NM-10831","","","554255","3648220","GW","false","" +"SM-0019","","","429141","3641987","GW","true","Take 1st left with mailboxes past mile marker 2 going south on Sunspot Highway. Go down gravel road thru two switchbacks, at second one stay right on Peacock Lane. Go to end, house is past gray gate with # 35. Welll is in pasture to left of road. Ok to come by anytime, call before hand so he can move horses out of pasture." +"NM-18681","","","573050","3809880","GW","false","" +"NM-06984","","","675339","3593460","GW","false","" +"NM-24993","","","409886","3949190","GW","false","" +"NM-17367","","","671785","3787510","GW","false","" +"NM-25867","","","288889","4003510","GW","false","" +"BC-0163","179","","375624","3892580","GW","true","" +"NM-20671","","","676229","3852560","GW","false","" +"EW-0001","","","418523","4005210","SP","false","From intersection of Hwy 75 and CR 67 west of Dixon, take CR67 south ~0.7 mi to gate across road. Park and hike to spring up arroyo immediately to left inside gate . There is a GPS coordinate at the road and arroyo where you need to slog up the wetland to the mouth of the spring. Brush is thick." +"NM-02762","","","555508","3665250","GW","false","" +"NM-23373","","","464090","3900880","GW","false","" +"NM-07992","","","231520","3614080","GW","false","" +"NM-24841","","","413927","3945890","GW","false","" +"NM-06205","","","575141","3577370","GW","false","" +"NM-05755","","","642774","3569790","GW","false","" +"QY-0059","10.30.7.131","","608902","3885810","GW","true","" +"NM-14027","","","542982","3696540","GW","false","" +"NM-19780","","","570505","3832320","GW","false","" +"BW-0751","2.9.28.17.244","","592465","3874280","GW","true","" +"NM-26644","","","194206","4078050","GW","false","" +"NM-25467","","","288195","3976820","GW","false","" +"NM-25341","","","590857","3969880","GW","false","" +"NM-13364","","","642058","3691300","GW","false","" +"NM-06327","","","674012","3581120","GW","false","" +"NM-15193","","","564117","3734450","GW","false","" +"WS-017","","","381311","3632416","GW","true","" +"NM-08160","","","548846","3613300","GW","false","" +"NM-12991","","","533442","3684090","GW","false","" +"NM-27943","","","560236","3841150","GW","false","" +"NM-09432","","","649745","3631460","GW","false","" +"NM-09472","","","283695","3632570","GW","false","" +"NM-18047","","","654195","3800400","GW","false","" +"NM-28391","N-2016-088","","559041","3626163","GW","true","" +"NM-27528","","","585333","3775700","GW","false","" +"NM-11739","","","662432","3664970","GW","false","" +"NM-13724","","","136355","3700930","GW","false","" +"SD-0228","10N.7E.25.122","","395452","3880560","GW","true","" +"MI-0196","","","497174","3942077","GW","true","Topographic situation: Plateau" +"NM-03055","","","658509","3797480","GW","false","" +"NM-21718","","","580078","3879040","GW","false","" +"NM-06582","","","574276","3584750","GW","false","" +"AB-0147","S194","","330306","3801070","GW","true","" +"NM-10149","","","438138","3638930","GW","false","" +"NM-26696","","","259330","4081390","GW","false","" +"NM-24291","","","674414","3934580","GW","false","" +"SB-0083","TWDB 4717312","","510919","3512023","GW","false","" +"SB-0378","TWDB 4807904","","484501","3528286","GW","false","" +"NM-17270","","","656148","3785700","GW","false","" +"BC-0102","88","","379075","3872220","GW","true","" +"NM-20622","","","399964","3849470","GW","false","" +"NM-24467","","","402472","3937930","GW","false","" +"NM-23906","","","639401","3919780","GW","false","" +"NM-24347","","","228563","3938690","GW","false","" +"SB-0684","TWDB 4915521","","387823","3518694","GW","false","" +"NM-25723","","","399211","3991770","GW","false","" +"MI-0118","","","585987","3925621","GW","true","Topographic situation: Plains" +"QY-0100","10.33.7.234","","638640","3886070","GW","true","" +"EB-404","","","403012","3927884","GW","true","" +"NM-07522","","","247063","3606680","GW","false","" +"NM-23283","","","238117","3902320","GW","false","" +"NM-00582","","","296156","3662370","GW","false","" +"NM-17676","","","608706","3791630","GW","false","" +"NM-00552","","","313674","3657380","GW","false","" +"NM-02581","","","409325","3625200","GW","false","" +"NM-03383","","","678129","3889340","GW","false","" +"CX-0011","29N27E13.3","","587282","4067160","GW","true","" +"AR-0068","","","234296","4081460","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2965 then left on Rd 2970 to address on left. Well is in 6'x8' wooden shed about 70' S of SE corner of residence." +"NM-05910","","","246501","3574050","GW","false","" +"TV-172","COR-80","","441267","4025668","GW","true","Located on hill near large water tank, just east of WWTP office." +"NM-11264","","","621394","3656550","GW","false","" +"DA-0113","24S2E33.141","","335386","3561690","GW","true","" +"SO-0228","SBB-W06B","","322366","3733206","GW","true","" +"SO-0162","ESC-W03B","","325767","3777090","GW","true","" +"NM-24814","","","405975","3945410","GW","false","" +"NM-13631","","","553256","3693170","GW","false","" +"NM-18724","","","602876","3810990","GW","false","" +"NM-25041","","","409255","3951390","GW","false","" +"SD-0003","6N.6E.11.344","","382521","3847170","GW","true","" +"NM-00169","","","585963","3571670","GW","false","" +"NM-20858","","","553086","3854750","GW","false","" +"NM-17227","","","655022","3785680","GW","false","" +"SD-0206","10N.6E.18.442","","378642","3883540","GW","true","" +"TO-0105","4N9E10.133","","408852","3827970","GW","true","" +"BW-0410","17S10E19.321a","","410455","3630430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-28124","","","270156","3882480","GW","false","" +"CX-0002","31N25E26.22","","567435","4083960","GW","true","" +"NM-03273","","","415974","3847660","GW","false","" +"BW-0923","4.26.24.11.122","","549932","3547260","SP","true","" +"NM-14764","","","674183","3719370","GW","false","" +"NM-12387","","","637461","3674440","GW","false","" +"NM-23232","","","296941","3900100","GW","false","" +"NM-21470","","","597208","3874060","GW","false","" +"NM-16775","","","221238","3781140","GW","false","" +"NM-20931","","","524735","3856360","GW","false","" +"NM-05916","","","347485","3572080","GW","false","" +"NM-23244","","","349586","3899280","GW","false","" +"NM-25432","","","469241","3972850","GW","false","" +"NM-24032","","","142121","3931400","GW","false","" +"NM-24570","","","405164","3940180","GW","false","" +"NM-15155","","","442283","3732560","GW","false","" +"NM-23210","","","375465","3898210","GW","false","" +"NM-03861","","","350470","3520320","GW","false","" +"NM-23327","","","392910","3900140","GW","false","" +"SO-0192","SAC-E01B","","325149","3791014","GW","true","" +"NM-06688","","","567652","3586740","GW","false","" +"NM-17925","","","671704","3798920","GW","false","" +"NM-21038","","","524852","3859810","GW","false","" +"NM-23486","","","242474","3909560","GW","false","" +"NM-28080","","","240454","3903440","GW","false","" +"NM-10667","","","542116","3645880","GW","false","" +"DE-0055","","","585878","3581466","GW","false","" +"UC-0233","","","613501","4001286","GW","false","" +"HS-015","TC-015","","289775","3667577","GW","true","Cement capped" +"NM-27667","","","632717","3795140","GW","false","" +"DE-0156","","","672676","3618929","GW","false","" +"DA-0080","23S1E30.212","","323219","3573460","GW","true","" +"NM-14535","","","544764","3707790","GW","false","" +"AB-0052","S060","","349528","3887380","GW","true","" +"NM-18411","","","368101","3805820","GW","false","" +"SD-0328","13N.5E.32.334a","","369040","3907820","GW","true","" +"EB-497","","","417124","3955895","ES","true","Tesuque Creek near State Highway 22" +"NM-27715","","","669382","3797210","GW","false","" +"NM-19510","","","656621","3829030","GW","false","" +"NM-02667","","","656904","3645870","GW","false","" +"QY-0683","6.28.24.423","","598718","3843260","GW","true","" +"NM-07262","","","209636","3601810","GW","false","" +"TS-108","","","436898","4044084","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"SM-2009","","","423293","3627925","M","true","Station is on west side of buildings furthest south." +"NM-20027","","","201711","3840810","GW","false","" +"AS-050","DM-15","","444841","4042160","GW","true","" +"QY-0206","11.30.18.332","","608817","3893140","GW","true","" +"NM-15968","","","653816","3755960","GW","false","" +"NM-19688","","","626541","3831720","GW","false","" +"UC-0101","","","662887","3982481","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-12775","","","557855","3680140","GW","false","" +"NM-04348","","","210394","3547910","GW","false","" +"NM-24780","","","408711","3944950","GW","false","" +"NM-12053","","","626508","3668320","GW","false","" +"TB-0085","","","403999","3640809","GW","true","From HQ south/SE across cattle guard approx 1.5 mi. From new well #5 approx 1/8 mile on right, east side of road." +"NM-12043","","","655323","3668520","GW","false","" +"LC-003","","","398346","3935963","SP","true","Park on two-track to right off end of Rio Guicu. Discharge from large hole @ base of big cottonwood tree; north side of Guicu Creek drainage, west end (gate code #4110 or #2180)" +"NM-02578","","","644057","3625600","GW","false","" +"NM-02341","","","311947","3579460","GW","false","" +"WL-0361","","","461434","3775588","GW","true","" +"NM-08270","","","293728","3616910","GW","false","" +"NM-26116","","","321145","4023010","GW","false","" +"SR-0008","","","269975","3752420","SP","true","San Mateo Mtns; no trail, descend from FR 138" +"NM-23098","","","611542","3895890","GW","false","" +"NM-04066","","","138928","3537950","GW","false","" +"NM-03713","","","166189","3490660","GW","false","" +"NM-12321","","","639933","3673610","GW","false","" +"NM-02322","","","680764","3577940","GW","false","" +"NM-01128","","","343930","3860060","GW","false","" +"BC-0413","416","","345185","3872921","GW","false","" +"TC-448","","","447559","4078059","GW","true","Head N on Hwy 522 past Cerro. Well is located on left side of the Hwy, about 2.5 miles past the runway strip." +"NM-16737","","","661124","3777710","GW","false","" +"BC-0143","126","","358336","3895900","GW","true","" +"NM-17089","","","547180","3782150","GW","false","" +"NM-24905","","","672831","3948630","GW","false","" +"NM-24003","","","446329","3922930","GW","false","" +"NM-25333","","","388746","3969460","GW","false","" +"TC-444","","","454856","4091321","PS","true","At USGS gaging station at bridge over Costilla Creek on NM 196." +"NM-22843","","","647064","3892330","GW","false","" +"TC-233","","","411193","4078883","GW","true","" +"NM-27726","","","397444","3789000","GW","false","" +"EB-328","","","397578","3942243","GW","true","North of SFC 56C, through locked gate; Right at 1st intersection; stay right at ridge" +"NM-24798","","","409066","3945200","GW","false","" +"NM-16666","","","295527","3777290","GW","false","" +"PC-024","PW-038","","370828","3908019","GW","true","" +"QY-0700","6.29.30.412","","600202","3841880","GW","true","" +"NM-04528","M-055","","265937","3552054","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 mile. Go south on B047/Marana Rd for 6.3 miles (road jogs to the left and continues south at mile 6.0). Go east on the dirt road (Perico Rd but unlabeled on-site) for 0.3 miles. Well located south of poles, about 150 ft north of dirt road." +"SA-0311","","","236479","3727499","GW","true","" +"TC-338","","","412221","4057145","GW","true","" +"QY-0501","16.35.6.442","","657720","3945410","GW","true","" +"NM-02379","","","149032","3588720","GW","false","" +"TO-0301","7N8E26.121a","","401907","3852610","GW","true","" +"NM-01394","","","235286","3933310","GW","false","" +"NM-17854","","","663825","3797630","GW","false","" +"DE-0183","","","611754","3599878","GW","false","" +"NM-28056","","","630202","3892840","GW","false","" +"NM-18221","","","663186","3803480","GW","false","" +"NM-16169","","","629526","3761170","GW","false","" +"BC-0063","182","","378918","3888420","GW","true","" +"NM-06230","","","278865","3580000","GW","false","" +"NM-04868","","","306850","3557710","GW","false","" +"QU-096","MW-30","","445925","4063358","GW","true","See Chevron map of monitoring wells." +"NM-10536","","","672926","3646290","GW","false","" +"NM-22320","","","345977","3886310","GW","false","" +"NM-19686","","","610475","3831170","GW","false","" +"NM-04660","","","238358","3555850","GW","false","" +"DE-0027","","","599387","3620262","GW","true","From Carlsbad, go east on Hobbs Hwy (HWY 62) to junction of HWY 360 (UTM zone 13, easting 592,622 northing 3,599,545). Go north on HWY 360 ~11.6 mi to CR 251, turn right (northeast); drive on CR-251 ~1.8 mi, then turn right (east) on CR-250. Stay on CR-250 (road winds around quite a bit) ~2.7 mi, turn left into residence. Well is ~100 ft NE of house (not in the small building that looks like a well house)." +"NM-25296","","","224200","3970230","GW","false","" +"NM-14833","","","546249","3720850","GW","false","" +"NM-26292","","","161528","4047380","GW","false","" +"NM-03710","","","166065","3487610","GW","false","" +"NM-14862","","","666896","3723210","GW","false","" +"NM-24472","","","436301","3937840","GW","false","" +"NM-11867","","","653475","3665710","GW","false","" +"NM-09240","","","411479","3627490","GW","false","" +"WL-0244","","","452908","3710202","GW","true","Heading east on US 380E/Billy the Kid Blvd from Capitan, drive ~4 miles. Wells are on left side of road ~0.25 mile after MM 89. Look for large fencing around well. This is the well furthest from the highway, enclosed by steel pipe barrier." +"NM-24204","","","470757","3930390","GW","false","" +"NM-24104","","","438975","3927720","GW","false","" +"NM-11798","","","572593","3664260","GW","false","" +"DE-0113","","","672843","3616098","GW","false","" +"NM-04754","","","677707","3555370","GW","false","" +"NM-25686","","","613190","3988660","GW","false","" +"NM-09542","","","648224","3632300","GW","false","" +"NM-16115","","","669963","3760730","GW","false","" +"NM-17092","","","224848","3786150","GW","false","" +"NM-04376","","","181923","3549840","GW","false","" +"PC-072","PW-128","","367641","3907200","GW","true","" +"LC-024","","","398982","3937584","SP","true","" +"NM-16229","","","594446","3763650","GW","false","" +"NM-07473","","","206328","3606590","GW","false","" +"NM-01127","","","584376","3858370","GW","false","" +"NM-18014","","","667686","3800540","GW","false","" +"NM-20729","","","341651","3852910","GW","false","" +"NM-00148","","","584732","3564500","GW","false","" +"NM-23492","","","639799","3907130","GW","false","" +"TC-271","CO-19","","408512","4099612","GW","true","" +"NM-04200","","","345258","3539220","GW","false","" +"QY-0571","5.29.13.121","","607581","3836140","GW","true","" +"TB-0212","","","420513","3739190","GW","true","From main entrance to HQ north on Hwy 54, go 5.1 miles to green gate on W side of Hwy. Bear right from gate 1 mile to well, then bear left W on 2 track 0.7 miles to this well w/ blue cap." +"NM-13081","","","137900","3692390","GW","false","" +"NM-11888","","","289669","3667260","GW","false","" +"NM-25279","","","216929","3969940","GW","false","" +"NM-04569","","","133620","3557240","GW","false","" +"AH-012","AH-35","","441849","4042392","GW","true","" +"NM-28004","","","257800","3883170","GW","false","" +"NM-05421","","","496418","3564650","GW","false","" +"TB-0311","","","403137","3661487","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Railroad Ave and proceed to address just S of Tularosa Creek on W side of Rd. Address is second house on gravel drive. Well is on N side of gravel drive." +"NM-12863","","","139101","3688450","GW","false","" +"NM-12349","","","556243","3672620","GW","false","" +"NM-13244","","","610962","3688640","GW","false","" +"NM-13415","","","557820","3690460","GW","false","" +"NM-01545","","","477702","3978280","GW","false","" +"PC-098","PW-175","","373051","3911207","GW","true","" +"NM-17046","","","624188","3782600","GW","false","" +"NM-14457","","","403202","3705740","GW","false","" +"GT-004","Faulkner","","261004","3629181","GW","true","well located down in the valley north of the house, hot water was reported when the well was drilled." +"SB-0781","TWDB 4932501","","399791","3494521","GW","false","" +"NM-21675","","","674793","3879750","GW","false","" +"NM-25189","","","235035","3964630","GW","false","" +"QU-546","","","446629","4061862","D","true","Traveling north into town on Rt 586, as the road climbs the hill, a ditch passes under the road. Sampled site located to the right of the road at a pullout opposite the terminus of Embargo Road. (map on inventory form)" +"NM-22452","","","652227","3887790","GW","false","" +"NM-27204","","","382687","3822108","GW","false","" +"NM-20832","","","631841","3854680","GW","false","" +"NM-15226","","","562411","3735570","GW","false","" +"NM-00930","","","656522","3801930","GW","false","" +"NM-23403","","","334615","3903460","GW","false","" +"NM-05822","","","651025","3570770","GW","false","" +"NM-01240","","","635698","3891740","GW","false","" +"UC-0195","","","648626","4000311","GW","false","" +"NM-26874","PW-27","","434175","4003352","GW","true","" +"NM-02769","","","667387","3669830","GW","false","" +"NM-28127","","","357726","3878070","GW","false","" +"QU-032","","","445410","4056702","GW","true","From Hwy 522, go east on Lama Road following road as it turns 90 degrees to north. At 1.8 miles find a sign that says ""UPS 9"" intended for delivery personnel. Follow driveway to old windmill on wooden shed. Well under windmill." +"BW-0556","16S10E7.4","","410556","3643130","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TO-0518","6N8E15","","400451","3845510","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-11733","","","622983","3664240","GW","false","" +"JM-018","","","307073","3673477","GW","true","" +"NM-22890","","","639995","3892860","GW","false","" +"NM-00320","","","660786","3616970","GW","false","" +"QY-0523","16.37.6.122","","676324","3947060","GW","true","" +"NM-18346","","","671713","3805390","GW","false","" +"NM-25842","","","235601","4003420","GW","false","" +"NM-19812","","","637792","3834000","GW","false","" +"NM-24692","","","235209","3946850","GW","false","" +"SA-0056","SA-56_R00","","207054","3753340","GW","true","From Datil, take Hwy 12 south to Old Horse Springs. Take gate on left, 0.6 miles past Old Horse Springs, follow road past house (on right) 2 miles. Go through gate and turn left, follow past windmill 1.8 miles, take branch to the right. Follow track 2.3 miles, go through gate, well 0.7 miles ahead. Combo for gate on Hwy 12 is 1880 (on 3/5/2021)." +"NM-08127","","","649882","3613780","GW","false","" +"NM-15741","","","327753","3749310","GW","true","" +"NM-23736","","","641282","3914050","GW","false","" +"NM-21676","","","595082","3878600","GW","false","" +"NM-17468","","","641843","3788620","GW","false","" +"NM-13346","","","642372","3691050","GW","false","" +"QU-008","","","446647","4063062","GW","true","Turn in at town hall but follow old Rt. 3 south. Shortly past first curve on right #2484. Proceeding clockwise around the house, well house on west in ground." +"SB-0923","","","516314","3544244","GW","true","At base of large pump jack." +"QY-0397","12.34.21.421","","651428","3902120","GW","true","" +"NM-24129","","","343115","3929870","GW","false","" +"NM-03272","","","399712","3846320","GW","false","" +"NM-18571","","","570717","3807800","GW","false","" +"NM-12595","","","554637","3677230","GW","false","" +"NM-05837","","","334177","3571330","GW","false","" +"NM-17689","","","325012","3792750","GW","false","" +"NM-03389","","","349304","3889920","GW","false","" +"ED-0053","19S28E2.122","","579663","3617930","GW","true","" +"NM-20320","","","671516","3843570","GW","false","" +"NM-13555","","","548273","3692220","GW","false","" +"NM-20313","","","596635","3841770","GW","false","" +"EB-068","","","417500","3955240","GW","true","" +"BC-0090","77","","374926","3888900","GW","true","" +"NM-11414","","","401046","3658570","GW","false","" +"NM-08930","","","198589","3628750","GW","false","" +"NM-09833","","","222325","3637920","GW","false","" +"SD-0034","7N.7E.13.431","","394363","3854620","GW","true","" +"NM-09163","","","633687","3628150","GW","false","" +"SD-0363","10N.4.5E.25.121","","365915","3881180","SP","true","" +"NM-20366","","","673937","3844440","GW","false","" +"NM-08367","","","551564","3616540","GW","false","" +"NM-16612","","","676227","3775920","GW","false","" +"NM-18973","","","598113","3815170","GW","false","" +"NM-24054","","","401228","3925560","GW","false","" +"ED-0207","22S27E8.313","","573484","3585620","GW","true","" +"NM-01856","","","121584","3537070","GW","false","" +"QU-173","","","448618","4065669","GW","true","From 522, take a right onto Elano Road after the VFW post. Take first right onto Pinabete. Follow the road past a dog-leg onto Upper Pinabete. Well is downhill of cistern ~100 ft. right of driveway on 2-track." +"PC-142","PS-20","","370980","3907988","SP","true","" +"MI-0061","","","504657","3913973","GW","true","Topographic situation: Plains" +"NM-25116","","","413667","3955440","GW","false","" +"NM-18963","","","579365","3814680","GW","false","" +"TC-229","WG-29","","427538","4085394","GW","true","" +"AR-0050","","","219667","4073420","GW","true","From Farmington take hwy 516 toward Aztec. Turn right on Sierra Vista Dr just past Animas Mall, then left on E Hubbard Rd. Turn left on Gold Ave and proceed to address on left. Well is on side of house by car port." +"NM-13859","","","544745","3695250","GW","false","" +"NM-05729","","","250618","3571080","GW","false","" +"EB-237","","","410148","3948186","GW","true","#93A (2000 range) West Alameda in well pit behind garage. Turn onto Cam Tres Arroyos. House is white with red roof." +"NM-27594","","","595639","3782610","GW","false","" +"NM-18325","","","331345","3804810","GW","false","" +"NM-07471","","","206432","3606590","GW","false","" +"NM-26323","","","472753","4045090","GW","false","" +"ED-0324","24S25E5.442","","555598","3567630","GW","true","" +"NM-16311","","","313397","3768320","GW","false","" +"NM-18778","","","153764","3817490","GW","false","" +"NM-25159","","","477126","3958470","GW","false","" +"QY-0087","10.32.24.212","","637072","3883340","GW","true","" +"NM-15661","","","535490","3745750","GW","false","" +"SM-1000","","","445612","3650145","SP","true","Turn north off Hwy 82 onto 16 Springs Canyon Rd, go over mtn, and her house is first one on L as you enter the valley." +"NM-14892","","","642639","3723590","GW","false","" +"HS-027","TC-027","","289217","3667804","GW","true","between Broadway and Main crossed with Poplar and McElroy, in the middle of the median" +"NM-04942","","","265618","3559350","GW","false","" +"BC-0204","204","","374864","3886990","GW","true","" +"NM-22106","","","349385","3884090","GW","false","" +"NM-16072","","","627514","3758160","GW","false","" +"ED-0273","23S23E29.331","","534947","3570640","GW","true","" +"NM-28447","","","476920","4072070","GW","true","" +"QY-0830","7.32.8.112","","629625","3857380","GW","true","" +"NM-07655","","","555582","3605820","GW","false","" +"NM-01533","","","475555","3970310","GW","false","" +"NM-24092","","","447790","3927080","GW","false","" +"NM-26628","","","448248","4071150","GW","false","" +"NM-11653","","","677263","3663590","GW","false","" +"NM-04636","","","548332","3552170","GW","false","" +"NM-04386","","","659153","3546560","GW","false","" +"AB-0022","S025","","353788","3882260","GW","true","" +"NM-06730","","","663349","3588760","GW","false","" +"SB-0213","TWDB 4806608","","475193","3535324","GW","false","" +"NM-14942","","","148509","3730940","GW","false","" +"NM-01239","","","238209","3894220","GW","false","" +"NM-06150","","","674902","3578020","GW","false","" +"NM-08593","","","680026","3621640","GW","false","" +"NM-17186","","","672626","3784940","GW","false","" +"NM-27417","","","565821","3653860","GW","false","" +"HS-501","HS-501","","289794","3667643","SP","true","Main and Pershing: Pools, no wells: artesian. She has noticed a fluctuation with flow when river is not flowing" +"NM-23109","","","658428","3896650","GW","false","" +"NM-01902","","","120772","3543110","GW","false","" +"NM-21895","","","348949","3881770","GW","false","" +"NM-17339","","","648959","3786970","GW","false","" +"NM-22114","","","374735","3883770","GW","false","" +"NM-11930","","","563512","3665730","GW","false","" +"NM-10298","","","657917","3642620","GW","false","" +"DE-0110","","","672809","3616163","GW","false","" +"EB-114","","","404980","3939648","GW","true","WELL MAY NOT EXIST. COULD NOT FIND WELL AT THIS LOCATION IN APRIL 2015. VET CLINIC IN LOCATION NOW. Open field NW of Hwy 14 and NE of 599/Frontage, across from PNM, ~ 100 ft inside fence (park at ""Trucks Turning"" sign)" +"QU-031","","","446413","4067887","GW","true","Go 1 mile past first entrance to Cerro Rt. 378 (marked with ""Wild Rivers"" sign); take left onto Old Post Office Rd.; at 0.3 miles turn right into Gomez Market. Grey stucco shed where well is located is west of Old PO Road & east of rental trailer. Will likely meeting Mr. Gomez to visit well." +"NM-09967","","","452960","3635950","GW","false","" +"SD-0260","11N.6E.19.134","","377427","3892100","GW","true","" +"NM-09385","","","555788","3629530","GW","false","" +"NM-20260","","","633432","3841330","GW","false","" +"NM-26123","","","318289","4023630","GW","false","" +"SA-0001","SA-1_R00","","256701","3795438","GW","true","Northernmost Irrigation well on farm. About 0.2 mi north of metal storage barn. Well not used, has no power. Discharge? To west." +"BW-0042","22S5E32.311","","362604","3580160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20588","","","397058","3848670","GW","false","" +"NM-20572","","","673015","3849080","GW","false","" +"NM-06983","","","671710","3593370","GW","false","" +"NM-12952","","","556233","3683300","GW","false","" +"NM-03628","","","405924","4017980","GW","false","" +"NM-23332","","","353503","3900790","GW","false","" +"NM-24833","","","411511","3945790","GW","false","" +"NM-08188","","","669957","3614970","GW","false","" +"NM-13421","","","287139","3692680","GW","false","" +"DE-0176","","","611964","3600166","GW","false","" +"NM-06256","","","325791","3579820","GW","false","" +"NM-15337","","","552643","3738750","GW","false","" +"NM-08514","","","661508","3620060","GW","false","" +"EB-514","","","417465","3964403","GW","true","" +"TS-080","","","437051","4080812","SP","true","Spring Set 2 below Cow Patty E side" +"NM-22424","","","380146","3886960","GW","false","" +"NM-16897","","","655318","3780170","GW","false","" +"NM-06820","","","671836","3590570","GW","false","" +"NM-03058","","","678162","3798170","GW","false","" +"NM-13304","","","618935","3690030","GW","false","" +"NM-04271","","","620070","3541650","GW","false","" +"NM-03131","","","669778","3813390","GW","false","" +"NM-22733","","","366730","3890630","GW","false","" +"NM-27981","","","191101","3879180","GW","false","" +"BW-0353","17S9E14.422","","408036","3633450","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BC-0324","321","","378963","3885200","GW","true","" +"NM-19465","","","394906","3827100","GW","false","" +"NM-08627","","","655595","3621760","GW","false","" +"NM-13616","","","549019","3693000","GW","false","" +"NM-01707","","","193730","4075770","GW","false","" +"NM-01123","","","358763","3857980","GW","false","" +"NM-25793","","","405944","3996660","GW","false","" +"QY-0003","10.27.10.343","","585155","3884670","GW","true","" +"NM-21100","","","664045","3864290","GW","false","" +"SM-0087","","","439525","3640142","GW","true","Turn south off of Hwy 82, onto Coleman Ranch. Drive past ranch mgr house and big main house. Well is on right, at tipped over windmill." +"NM-24825","","","415081","3945630","GW","false","" +"NM-16473","","","646367","3772540","GW","false","" +"NM-13258","","","632517","3689470","GW","false","" +"NM-16979","","","652656","3781610","GW","false","" +"NM-07363","","","680233","3601620","GW","false","" +"NM-28216","","","171301","4074040","GW","false","" +"NM-14144","","","546126","3698090","GW","false","" +"NM-11640","","","400846","3661900","GW","false","" +"NM-10679","","","434214","3646620","GW","false","" +"WL-0198","","","488217","3541560","GW","true","From junction of TX FR 1576 & NM CR G005, go west 0.5 miles, turn right and go 0.5 miles, turn left, go 0.5 miles and turn right for 0.25 miles. Well head is within active pivot irrigation field between a corn and cotton field." +"SB-0916","","","430445","3562082","GW","true","From Hwy 62 (aka Hwy 180, road runs east/west south of Dell City), go N on Hueco Ranch Rd (which turns into Loma Linda Rd and then F002) for ~14.5 mi past Cambalachie Camp bunkhouse at F002/F001 intersection. Drive 10.6 mi NE and turn N (left) on F059 (which turns into F034 after 3.7 mi) for 7.9 mi, then turn W (left) on 2-track for 400 m to well under old WM tower." +"DA-0150","26S3E4.211","","345260","3550650","GW","true","" +"TB-0225","","","426186","3716722","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road several miles to cattle pens, across cattle guard and take two track to the east before road to big tank. Go past pens on east side and bear to the south to well house by cattle guard. Wellhead is inside building on the left side. Exit same way or if going east stay to left along fence and will circle back to main road." +"NM-10040","","","657806","3638180","GW","false","" +"NM-27035","","","325379","3780270","GW","true","" +"SB-0431","TWDB 4815301","","484389","3523606","GW","false","" +"NM-26950","PW-150","","370746","3913315","GW","true","" +"NM-15067","","","146140","3735970","GW","false","" +"NM-14883","","","624942","3723190","GW","false","" +"MI-0086","","","468880","3924739","GW","true","Topographic situation: Mesa" +"TB-0006","","","405269","3661640","GW","true","Off of Hwy 54, take east turn onto Bookout Road, just north of Pecan Orchard and vet clinic. Sign to Horseman's Park. Go 0.8 mi to corner of alfalfa field.. Turn Right (south) at Abercrombie sign. Head south, looking for well immediately on Right. Walk in through green gate on right (west) side of road." +"DE-0382","","","568955","3626141","GW","false","" +"SD-0134","10N.5E.2.434","","375140","3886770","GW","true","" +"NM-20164","","","599104","3839300","GW","false","" +"JM-004","","","316195","3634692","GW","true","" +"NM-02984","","","658563","3776070","GW","false","" +"NM-24984","","","662692","3950070","GW","false","" +"NM-21783","","","626477","3880520","GW","false","" +"NM-23738","","","224221","3917200","GW","false","" +"AB-0007","S008","","336033","3881180","GW","true","" +"NM-22296","","","348961","3886010","GW","false","" +"BC-0257","258","","366007","3879890","GW","true","" +"NM-04120","","","249107","3537360","GW","false","" +"NM-26584","","","584870","4068670","GW","false","" +"NM-01842","","","338798","3527430","GW","false","" +"NM-00790","","","441355","3707030","GW","false","" +"NM-26799","","","348117","3868558","GW","true","" +"NM-00793","","","445382","3707380","GW","false","" +"QY-0866","8.29.36.122","","607488","3860320","GW","true","" +"TO-0140","5N8E5.131","","396542","3839320","GW","true","" +"NM-06651","","","672706","3587100","GW","false","" +"NM-13775","","","544489","3694820","GW","false","" +"NM-01506","","","578869","3959750","GW","false","" +"NM-05865","","","252245","3573320","GW","false","" +"NM-06775","","","676292","3589750","GW","false","" +"NM-25023","","","465418","3950250","GW","false","" +"TC-357","","","446396","4066911","GW","true","" +"NM-10592","","","659258","3646490","GW","false","" +"TC-350","","","447779","4070723","GW","true","" +"AR-0101","B011","","243570","4091280","GW","true","From Hwy 550 in Cedar Hill, take Rd 2350 east to address. Road takes a few dog legs and turns to gravel. House is on the left and has an elaborate brown metal gate. Well is behind house near river, downstream next to shed, 2'x3' box along shed wall; lift lid well inside." +"NM-25392","","","401345","3972300","GW","false","" +"NM-04315","","","492187","3542360","GW","false","" +"SM-0126","","","483424","3637670","GW","true","" +"UC-0061","","","659464","4061354","GW","true","elv 5058 acc to USGS" +"NM-02933","","","666817","3745430","GW","false","" +"NM-13157","","","543129","3686900","GW","false","" +"TS-036g","","","436177","4042623","SP","true","Small spring on east side." +"NM-09745","","","655107","3634630","GW","false","" +"EB-377","","","399150","3933319","GW","true","Ranch Windmill East of Bonanza Creek Rd in 1st pasture" +"NM-05119","","","240683","3562640","GW","false","" +"NM-02046","","","234095","3557380","GW","false","" +"NM-07133","","","357272","3596040","GW","false","" +"NM-24409","","","616722","3937060","GW","false","" +"NM-00057","","","366995","3545190","GW","false","" +"TV-187","","","442824","4026031","GW","true","From Hwy 240, take Tom Holder Rd south. Follow road to west. At top of hill take Cuchilla west, then south across mesa to Cactus Flower (to south) & Las Tusas (to north). Turn on Las Tusas (look for round house w/pink curtains #189). Take 1st road north & bear east past first house to new stucco home. Blue casing & frost-free hydrant." +"BC-0187","167","","379257","3885320","GW","true","" +"NM-18983","","","572881","3815180","GW","false","" +"NM-27252","","","362286","3569400","GW","false","" +"NM-24227","","","652836","3932330","GW","false","" +"NM-27779","","","599301","3787360","GW","false","" +"NM-21058","","","548481","3860920","GW","false","" +"NM-03030","","","648490","3787460","GW","false","" +"NM-11431","","","656365","3660090","GW","false","" +"NM-25660","","","405634","3986430","GW","false","" +"NM-16284","","","217973","3769700","GW","false","" +"NM-24442","","","428620","3937320","GW","false","" +"NM-18265","","","615337","3803210","GW","false","" +"NM-04340","","","343978","3544750","GW","false","" +"NM-02430","","","583924","3593270","GW","false","" +"NM-22327","","","237196","3888900","GW","false","" +"NM-20745","","","607221","3852480","GW","false","" +"NM-22040","","","390072","3882890","GW","false","" +"NM-27270","","","540825","3574430","GW","false","" +"BW-0515","16S9E6.4","","401468","3646250","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TC-355","","","446200","4067915","GW","true","" +"NM-07810","","","229318","3611800","GW","false","" +"NM-26751","","","447317","4088940","GW","false","" +"NM-09816","","","554203","3633960","GW","false","" +"DA-0017","20S4W20.132","","285961","3604450","GW","true","" +"PB-0016","","","379241","3937943","GW","true","Heading north on Hwy 22 from post office in Pena Blanca, home is first driveway on right (east) just past turn to Carros de Caballos. Well is on east side of grey stucco shed (white pvc). This well is ~0.3 miles north of municipal well on east side of Hwy 22." +"NM-07571","","","651600","3605400","GW","false","" +"NM-21404","","","346203","3872620","GW","false","" +"TV-511","","","434544","4021864","SP","true","North slope of Rio Pueblo de Taos, just NE of Rio Grande confluence" +"SB-0872","Mayer 33","","438279","3552047","GW","false","" +"NM-07450","","","183350","3606860","GW","false","" +"NM-14563","","","553941","3709160","GW","false","" +"NM-06346","","","582883","3580290","GW","false","" +"NM-14963","","","148986","3731980","GW","false","" +"NM-09029","","","653019","3626680","GW","false","" +"BW-0402","17S10E19.123","","410462","3631240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"AR-0067","","","235954","4082950","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Approx. 1/4 mile past Rd 2896 on left, turn right on Rd 2885 to address. Well is about 10' N of pump/equipment shed, across Rd 2885 and approximately between #5 and #7 mobile homes." +"NM-18103","","","650027","3801750","GW","false","" +"QY-0402","12.34.36.433","","655761","3898360","GW","true","" +"NM-19165","","","664867","3821130","GW","false","" +"NM-23655","","","357430","3910770","GW","false","" +"NM-07903","","","678158","3611070","GW","false","" +"NM-09041","","","554771","3625370","GW","false","" +"TB-0301","","","397688","3671678","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Otero County Rd B027. Go through green gate , then veer right. Stay on main Rd 42.9 mi. Beware giant ruts in road. Well is located under windmill. Location is near White Sands Missile Range." +"SB-0640","TWDB 4914305","","381488","3523631","GW","false","" +"NM-17835","","","642417","3796360","GW","false","" +"CX-0113","16","","541819","4070490","GW","true","1 1/2 miles east of Van Houten" +"NM-10331","","","506652","3641600","GW","false","" +"CX-0031","28N27E27.44","","585427","4053910","GW","true","" +"NM-23326","","","379630","3900280","GW","false","" +"NM-14893","","","642279","3723580","GW","false","" +"NM-04837","","","267139","3558230","GW","false","" +"NM-22203","","","360747","3884990","GW","false","" +"ED-0027","17S27E3.12","","568495","3636930","GW","true","" +"NM-21765","","","647913","3880600","GW","false","" +"NM-19930","","","383540","3835160","GW","false","" +"NM-22062","","","621601","3883230","GW","false","" +"BW-0575","15S9E24.4","","403581","3650950","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24393","","","397948","3936290","GW","false","" +"NM-18902","","","570878","3813470","GW","false","" +"MI-0303","","","473378","3906986","SP","true","Topographic situation: Plateau" +"TC-298","","","450837","4025751","PS","true","Divisidero Trailhead below picnic area." +"NM-07287","","","278243","3600420","GW","false","" +"NM-00920","","","666695","3799350","GW","false","" +"NM-22315","","","374966","3885830","GW","false","" +"NM-00912","","","196925","3799910","GW","false","" +"NM-20591","","","628565","3849120","GW","false","" +"BC-0308","332","","378434","3890150","GW","true","" +"ED-0043","18S29E24.3","","590649","3621700","GW","true","" +"HS-071","TC-071","","289470","3667668","GW","true","Near SE corner of Clancy and Austin. Walk down alley behind abandonned corner building and through wavy steel fence. Walk through 1 gate and it's on the left in a pump house. In small well box in NW corner of patio" +"MI-0054","","","470878","3916027","GW","true","Topographic situation: Valley" +"OG-0035","","","641827","3817893","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2 miles on CR 17. Turn left south on CR X. Drive 1 mile. Turn right west onto dirt. Drive 0.7 miles to well." +"QY-0554","5.27.25.242","","589401","3832430","GW","true","" +"NM-22771","","","616513","3890900","GW","false","" +"NM-17365","","","611904","3786500","GW","false","" +"NM-01485","","","620882","3951500","GW","false","" +"NM-05915","","","207319","3575140","GW","false","" +"NM-05701","","","234536","3571180","GW","false","" +"NM-11100","","","558540","3652270","GW","false","" +"NM-28093","","","348547","3903490","GW","false","" +"NM-14933","","","451428","3724340","GW","false","" +"NM-24752","","","409914","3944480","GW","false","" +"NM-25526","","","307482","3981370","GW","false","" +"DE-0138","","","615159","3631133","GW","false","" +"TB-1055","","","427104","3710931","SP","true","" +"NM-15234","","","287292","3738080","GW","false","" +"NM-26544","","","580062","4065760","GW","false","" +"NM-00843","","","318434","3688620","GW","false","" +"NM-13166","","","138774","3693590","GW","false","" +"NM-00117","","","489290","3556900","GW","false","" +"NM-23366","","","231067","3904410","GW","false","" +"SD-0326","13N.5E.32.323","","369251","3908220","GW","true","" +"NM-12556","","","561242","3676440","GW","false","" +"NM-10210","","","656924","3641340","GW","false","" +"NM-16753","","","537653","3776690","GW","false","" +"SB-0124","TWDB 4726101","","512593","3498171","GW","false","" +"SD-0378","11N.4E.11.232","","364718","3896190","SP","true","" +"SV-0061","08 Los Cedros","","379200","3898139","GW","false","Unit 2 Lot 20" +"NM-18470","","","151218","3812330","GW","false","" +"NM-00798","","","435886","3708150","GW","false","" +"NM-00670","","","437832","3688760","GW","false","" +"NM-28073","","","240108","3902690","GW","false","" +"ED-0146","21S27E31.214","","572824","3589540","GW","true","" +"NM-13343","","","555240","3689640","GW","false","" +"SA-0049","SA-49_R00","","205350","3758670","GW","true","about 0.1 mile N of Hwy 12 and E of road. Pipe steel tower, dry stock tank E ~5 ft of WM" +"AS-029","ES-15","","451520","4042080","GW","true","" +"HS-112","TC-112","","289250","3668485","GW","true","" +"SA-0496","5S9W1.111","","248002","3754600","GW","true","" +"NM-00909","","","597807","3792940","GW","false","" +"AR-0041","NMED 270","","221789","4074810","GW","true","From Farmington take Hwy 516 towards Aztec. Turn right on Old Aztec Hwy. Turn right on Roberts Rd to address on right." +"NM-01564","","","474841","3986230","GW","false","" +"NM-02158","","","338026","3564860","GW","false","" +"NM-01088","","","599712","3850760","GW","false","" +"MI-0073","","","448644","3921181","GW","true","Topographic situation: Valley" +"NM-19048","","","566596","3816400","GW","false","" +"MI-0163","","","562249","3927393","GW","true","Topographic situation: Plains" +"NM-04079","","","120796","3538790","GW","false","" +"NM-11456","","","401625","3659400","GW","false","" +"NM-17904","","","644770","3797970","GW","false","" +"NM-03614","","","674420","4005440","GW","false","" +"NM-08564","","","664307","3620940","GW","false","" +"NM-20681","","","523404","3850470","GW","false","" +"NM-03906","","","250267","3524550","GW","false","" +"NM-14367","","","481621","3701700","GW","false","" +"NM-13161","","","554479","3686990","GW","false","" +"NM-26498","","","452041","4062770","GW","false","" +"NM-20264","","","600206","3840910","GW","false","" +"MI-0019","","","438302","3903782","GW","true","Topographic situation: Mesa" +"NM-12054","","","554614","3667620","GW","false","" +"NM-08272","","","293728","3616910","GW","false","" +"NM-01011","","","630114","3825720","GW","false","" +"NM-12683","","","612105","3679170","GW","false","" +"NM-10027","","","625342","3637840","GW","false","" +"NM-21359","","","340994","3872030","GW","false","" +"NM-10282","","","283509","3643080","GW","false","" +"NM-10265","","","660140","3641790","GW","false","" +"NM-18731","","","625542","3811430","GW","false","" +"NM-26126","","","316669","4023690","GW","false","" +"NM-14907","","","608551","3723540","GW","false","" +"SA-1010","","","259252","3717923","SP","true","Just west of the Box, north of Alamosa Creek drainage about 0.2 mile along trail. This is site for main spring pool." +"PC-066","PW-116","","373667","3912562","GW","true","" +"QY-0831","7.32.9.244","","632491","3856880","GW","true","" +"NM-11438","","","400817","3659030","GW","false","" +"NM-12156","","","640256","3671000","GW","false","" +"NM-13461","","","551303","3691010","GW","false","" +"NM-28263","","","274298","3746922","SP","false","" +"TO-0515","6N10E5.3","","416219","3848120","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-03636","","","671490","4028510","GW","false","" +"TS-036l","","","436157","4042569","SP","true","Small spring on east side." +"NM-20168","","","595414","3839290","GW","false","" +"NM-24324","","","436578","3934390","GW","false","" +"NM-28398","N-2017-001","","610443","3625733","GW","true","" +"NM-27530","","","585919","3776020","GW","false","" +"AS-026","ES-6","","450771","4042430","GW","true","" +"NM-11208","","","641905","3655530","GW","false","" +"DA-0193","24S2E23.134","","338452","3564650","GW","true","" +"SD-0286","11N.6E.33.324","","381063","3888440","GW","true","" +"NM-26511","","","215176","4067720","GW","false","" +"QY-1038","14.37.31.211","","676867","3919350","SP","true","" +"NM-11150","","","668987","3654760","GW","false","" +"NM-21791","","","363672","3880750","GW","false","" +"NM-04097","M-027","","214365","3536800","GW","false","" +"NM-25959","","","418862","4006390","GW","false","" +"NM-13643","","","540723","3693300","GW","false","" +"NM-19285","","","648159","3824360","GW","false","" +"NM-04463","","","134210","3553910","GW","false","" +"UC-0065","","","674737","4036834","GW","true","elv 4710 acc to USGS" +"NM-08595","","","199297","3624560","GW","false","" +"NM-04729","","","243571","3556550","GW","false","" +"WL-0190","","","611835","3721245","GW","true","Well on BLM land. Contact Mike McGee for escort to well." +"NM-06740","","","676093","3589160","GW","false","" +"NM-04344","","","587640","3544060","GW","false","" +"DE-0073","","","639345","3568998","GW","false","" +"NM-11060","","","677556","3653180","GW","false","" +"NM-05970","","","170715","3576880","GW","false","" +"NM-17028","","","654615","3782380","GW","false","" +"NM-27058","","","325704","3771640","GW","true","" +"EB-573","","","401990","3939964","GW","true","Location not reliable." +"SB-0630","TWDB 4907804","","386561","3528347","GW","false","" +"BW-0925","1.7.2.6.434","","309028","3859780","SP","true","" +"SV-0031","21 Canon Escondi","","376748","3899282","GW","false","Unit 3 Lot 21" +"TC-243","TP-21","","415803","4060566","GW","true","" +"NM-16542","","","650383","3774730","GW","false","" +"NM-11868","","","636492","3665990","GW","false","" +"NM-05097","","","342855","3560410","GW","false","" +"NM-14352","","","495691","3701310","GW","false","" +"NM-04546","","","344803","3550790","GW","false","" +"NM-09920","","","285574","3637640","GW","false","" +"NM-06631","","","605697","3585900","GW","false","" +"NM-06496","","","603059","3583220","GW","false","" +"NM-20598","","","632835","3849240","GW","false","" +"EB-198","","","415952","3958391","GW","true","#11 Corte Corazon; E from Tesuque Market on Arroyo Griego to 1st L at Griego Hill; 0.3 mi to Corte Corazon (L); 0.1 mile to #11 (horse trailer in drive)" +"NM-11189","","","474059","3653800","GW","false","" +"NM-10188","","","327737","3640850","GW","false","" +"SB-0507","TWDB 4838101","","465152","3484613","GW","false","" +"NM-27700","","","653485","3796660","GW","false","" +"NM-04955","","","241282","3560430","GW","false","" +"NM-20711","","","546118","3851230","GW","false","" +"PB-0007","","","378896","3937401","GW","true","" +"TB-0256","","","411427","3626938","GW","false","" +"NM-27573","","","650605","3792880","GW","false","" +"NM-16529","","","581666","3773110","GW","false","" +"NM-00068","","","547282","3545900","GW","false","" +"QY-1035","13.36.27.332a","","671803","3910100","SP","true","" +"NM-26928","PW-100","","371796","3905410","GW","true","" +"NM-09522","","","554975","3630730","GW","false","" +"SB-0799","TWDB 5007501","","480758","3420907","GW","false","" +"NM-15770","","","673233","3750410","GW","false","" +"NM-20810","","","594022","3853510","GW","false","" +"NM-04012","","","122273","3533860","GW","false","" +"UC-0073","","","613188","4034456","GW","true","From the west edge of Clayton, NM, proceed 17.8 miles west on Hwy. 64/87 to the town of Mt. Dora and Loop Road intersection. +17.8 mi/0.0 From intersection of U.S. Hwy. 64/87 and Loop Road, proceed 0.7 miles west to T in road, which is the junction with Sofia Road. +0.7 miles Turn left onto Sofia Road and proceed west and south for another 9.8 miles to a stop sign at the intersection of Sofia Road and Hwy. 453. +10.5 miles From junction of Sofia Rd. and Hwy. 453, proceed straight through the stop sign on Sofia Road for another 4.2 miles west of Hwy. 453 to a metal frame gate on the south side of Sofia Road. +14.7 miles Go through metal frame gate and proceed over an old railroad bed, then stay to the right on any forks in the dirt trail. Continue west on dirt trail for 1.0 mile to a windmill about 50 feet from a creek bed." +"NM-23471","","","228046","3909120","GW","false","" +"NM-18355","","","659568","3805400","GW","false","" +"NM-07714","","","588216","3606850","GW","false","" +"TO-0450","10N8E11.331","","402882","3884790","GW","true","" +"NM-19627","","","663823","3831100","GW","false","" +"SO-0119","4N3W25.334","","306007","3823700","SP","true","" +"NM-18444","","","605563","3806190","GW","false","" +"NM-16712","","","658049","3777720","GW","false","" +"SM-4016","","","434809","3631952","PS","true","Stream flow measurement by Patrick Walsh" +"MG-023","WF-11","","294283","3771025","GW","true","Well is south of house" +"NM-03621","","","605323","4010040","GW","false","" +"NM-19039","","","663885","3817480","GW","false","" +"NM-04607","","","130081","3558170","GW","false","" +"SA-0140","","","269867","3700759","GW","true","Contact neighbor foe access to site: Mr. McBride 575-743-0413. At Exit 83 on I25 north of T or C take State Rd. 181 west to State Rd. 52 heading northwest to State Rd. 142 north to Monticello. From the Plaza in Monticello head north through town, bearing to the northwest across the cattle guard and stay to the north on the road approximately 2 miles. Look for green double gate to the east and a driveway leading across the Alamosa Creek (Gate combo 1882) and follow two track across creek and past ramada circling back at the top of the hill above the well which is part way up the slope east of the ramada in the scrub brush." +"NM-20305","","","422799","3841370","GW","false","" +"NM-00434","","","283894","3638130","GW","false","" +"NM-03909","","","237678","3525200","GW","false","" +"NM-23143","","","350486","3896780","GW","false","" +"NM-21716","","","615369","3879390","GW","false","" +"NM-20981","","","634754","3858790","GW","false","" +"NM-05925","","","571707","3571280","GW","false","" +"SD-0189","10N.6E.8.114","","379518","3885920","GW","true","" +"NM-03306","","","396008","3859230","GW","false","" +"NM-09605","","","411023","3631740","GW","false","" +"SB-0119","TWDB 4725801","","504483","3487973","GW","false","" +"NM-03554","","","640362","3972250","GW","false","" +"BW-0391","17S10E18.434","","410861","3631640","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10976","","","678488","3651870","GW","false","" +"NM-12624","","","553833","3677590","GW","false","" +"NM-24049","","","474570","3924960","GW","false","" +"NM-18507","","","585967","3807010","GW","false","" +"QY-0318","11.32.32.433","","630388","3888450","GW","true","" +"BC-0201","201","","377678","3891910","GW","true","" +"NM-03232","","","324746","3836890","GW","false","" +"NM-01334","PW-096","","373931","3911110","GW","false","" +"NM-26354","","","668039","4052050","GW","false","" +"NM-21194","","","558903","3866430","GW","false","" +"NM-13501","","","548278","3691390","GW","false","" +"NM-16411","","","657971","3771650","GW","false","" +"NM-16603","","","536331","3774220","GW","false","" +"NM-27024","","","326854","3777590","GW","true","" +"DE-0045","","","551327","3590355","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep. Well is behind silver tank." +"NM-12659","","","556185","3678160","GW","false","" +"NM-21687","","","378217","3879010","GW","false","" +"NM-05501","","","338897","3566910","GW","false","" +"SB-0397","TWDB 4808407","","489365","3532005","GW","false","" +"NM-04838","","","233064","3559070","GW","false","" +"NM-27380","","","564367","3618100","GW","false","" +"NM-16827","","","594274","3778310","GW","false","" +"NM-22981","","","349913","3894430","GW","false","" +"NM-14106","","","547653","3697450","GW","false","" +"NM-00571","","","400813","3658630","GW","false","" +"MI-0234","","","478186","3950023","GW","true","Topographic situation: Broad, shallow valley" +"SD-0404","13N.5E.33.342","","371103","3907990","SP","true","" +"EM-0001","","","194260","3882640","GW","true","Coordinates taken from trail. Well is approximately 47' from trail in small alcove near small, dry pool @ 255 degrees from trail location." +"NM-06311","","","579098","3579620","GW","false","" +"NM-02689","","","547689","3647900","GW","false","" +"NM-16388","","","302785","3771280","GW","false","" +"NM-10902","","","613459","3649490","GW","false","" +"NM-05019","","","236014","3561550","GW","false","" +"NM-08618","","","557088","3620520","GW","false","" +"JM-020","","","310632","3669681","GW","true","" +"NM-08334","","","668976","3617480","GW","false","" +"NM-16164","","","327181","3761650","GW","false","" +"TO-0194","5N11E12.211","","432661","3837900","GW","true","" +"NM-11610","","","560431","3661190","GW","false","" +"AR-0188","G004","NMED200/201","234943","4084330","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Follow Rd to address on right." +"NM-28451","","","476965","4072090","GW","true","" +"NM-20314","","","676415","3842890","GW","false","" +"TC-262","CO-10","","424864","4102645","GW","true","" +"NM-22073","","","391290","3883120","GW","false","" +"TV-133","","","445160","4019970","GW","true","Ponce de Leon neighborhood. Two ""toy"" houses on south end of neighborhood." +"NM-15088","","","242026","3733490","GW","false","" +"AR-0223","","","198566","4072339","GW","true","Heading west on Hwy 64 out of Farmington, go past Kirtland and Rd 6500. House is just off of Hwy 64 on north (right) side near edge of town, just west of Rd 6575. House number faded and difficult to see. Well is in old subterranian root cellar in back of house. There is a gate by well house to access back yard without going through house." +"QU-903","","","447281","4055581","M","true","Heading north on 522 out of Taos, make a right on La Lama Road south of Questa. There is a parking lot (Park 'n Ride) on left side of road. Make left at first intersection (still La Lama Rd). Go ~0.5 miles and make right on Upper Lama Rd. Make left at fork (right fork goes to Lama Foundation) and follow to Bud Wilson residence. Hike to precip station 500 m to east." +"NM-13785","","","544953","3694920","GW","false","" +"MI-0133","","","479138","3929441","GW","true","Topographic situation: Plateau" +"NM-04236","","","345385","3540630","GW","false","" +"NM-26258","","","164102","4042430","GW","false","" +"NM-09466","","","208634","3634460","GW","false","" +"NM-24394","","","340221","3937170","GW","false","" +"NM-17091","","","224848","3786150","GW","false","" +"NM-14425","","","349912","3705120","GW","false","" +"NM-08594","","","638654","3620980","GW","false","" +"OG-0042","","","645537","3813846","GW","true","From int of SR 311 and US 60, west of Clovis, drive 5 miles west on US 60. Turn right north on CR V. Drive 3.7 miles north. Turn left west on CR 14. Drive 0.5 miles west. Turn left south onto dirt. Drive 0.5 miles south to well." +"NM-22727","","","236770","3893410","GW","false","" +"BW-0508","1N8E4.222","","397670","3800440","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09951","","","659926","3637350","GW","false","" +"NM-26543","","","582468","4065780","GW","false","" +"NM-00133","","","363062","3560920","GW","false","" +"NM-19931","","","672060","3836210","GW","false","" +"NM-26241","","","245040","4038460","GW","false","" +"NM-15752","","","170406","3753680","GW","false","" +"NM-22133","","","346754","3884350","GW","false","" +"NM-10441","","","673600","3644910","GW","false","" +"QY-0474","15.34.30.312","","647246","3929440","GW","true","" +"NM-20270","","","677195","3842040","GW","false","" +"NM-23141","","","658347","3896920","GW","false","" +"NM-17397","","","633157","3787560","GW","false","" +"NM-05144","","","239488","3563070","GW","false","" +"NM-17980","","","189353","3802870","GW","false","" +"NM-21727","","","364318","3879910","GW","false","" +"NM-01770","","","173247","3513320","GW","false","" +"NM-26365","","","591886","4052630","GW","false","" +"NM-17577","","","631915","3790320","GW","false","" +"NM-00316","","","301440","3616420","GW","false","" +"NM-01086","","","606819","3850710","GW","false","" +"NM-23514","","","358046","3907990","GW","false","" +"NM-23901","","","202234","3923390","GW","false","" +"NM-01262","","","358808","3897130","GW","false","" +"SB-0220","TWDB 4807104","","479344","3536854","GW","false","" +"NM-01561","","","406170","3985360","GW","false","" +"NM-09434","","","226918","3633630","GW","false","" +"NM-01476","","","180839","3953910","GW","false","" +"CX-0105","1","","545887","4078890","GW","true","3 miles southwest of Raton" +"EB-278","","","413025","3949523","GW","true","Alto and La Madera Streets" +"BW-0189","14S9E23.412","","401811","3660900","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26206","","","444464","4030280","GW","false","" +"NM-00374","","","471853","3627610","GW","false","" +"NM-14966","","","416798","3725940","GW","false","" +"NM-16324","","","652173","3768630","GW","false","" +"NM-08833","","","407308","3623830","GW","false","" +"NM-09008","","","435294","3625120","GW","false","" +"NM-16706","","","680732","3777610","GW","false","" +"CX-0077","24N23E13.42","","550388","4018520","GW","true","" +"SB-0557","TWDB 4854407","","467627","3448831","GW","false","" +"NM-02754","","","564718","3663680","GW","false","" +"QY-0021","10.29.10.411","","604717","3885320","GW","true","" +"NM-02422","M-151","","265519","3593952","GW","false","" +"NM-02260","","","137778","3577240","GW","false","" +"NM-20496","","","616754","3846220","GW","false","" +"NM-20330","","","566005","3841930","GW","false","" +"NM-16650","","","658486","3776100","GW","false","" +"SD-0334","6N.5E.11.114","","372711","3848020","SP","true","" +"EB-376","","","413721","3940476","GW","true","" +"NM-24991","","","624503","3949580","GW","false","" +"CX-0118","22","","540497","4064070","GW","true","3 1/2 miles southeast of Koehler" +"NM-02506","","","549060","3612070","GW","false","" +"NM-03017","","","678791","3795770","GW","false","" +"TC-249","CER-23","","439905","4059798","GW","true","From Hwy 522, go west on Rt. 378 towards Wild Rivers. Follow road to BLM Hdqtrs. Turn left @ drive just before visitors center (look for employee only sign). Follow road past residence to industrial yard. Look for gravel pile & adobe shed to right. Well outside adobe shed on east side." +"NM-22481","","","381015","3887600","GW","false","" +"NM-28067","","","238892","3901280","GW","false","" +"NM-17265","","","648624","3785490","GW","false","" +"NM-16116","","","631165","3759590","GW","false","" +"BC-0256","257","","378544","3890660","GW","true","" +"DE-0061","","","541640","3591244","GW","false","" +"BC-0115","100","","377261","3871350","GW","true","" +"NM-15052","","","655211","3730160","GW","false","" +"NM-12563","","","208993","3680710","GW","false","" +"BW-0074","6S10E6.131","","412693","3742220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"CP-0027","","","654464","3808996","GW","true","From Hwy 60, just north of Cannon AFB, go north on NM 311. Well is north of Alabama St. on east side of road in fenced area, across from Cannon AFB housing. Gary Blair must open fence for you." +"NM-18515","","","673000","3808990","GW","false","" +"NM-09758","","","675024","3634930","GW","false","" +"NM-09544","","","226110","3634550","GW","false","" +"SB-0192","TWDB 4757903","","509490","3434070","GW","false","" +"NM-00956","","","653567","3811560","GW","false","" +"SB-0010","TWDB 4702804","","516286","3528964","GW","false","" +"NM-20299","","","556242","3841120","GW","false","" +"NM-18361","","","570871","3804320","GW","false","" +"NM-06697","","","659018","3588360","GW","false","" +"PP-072","PS-77","","438562","4004774","SP","true","" +"NM-11320","","","679069","3658450","GW","false","" +"SB-0085","TWDB 4717314","","509684","3509959","GW","false","" +"NM-05599","","","235271","3570270","GW","false","" +"AB-1002","S056","","365592","3888950","SP","true","" +"NM-19833","","","277792","3835520","GW","false","" +"NM-23294","","","233875","3902660","GW","false","" +"NM-09262","","","671627","3629880","GW","false","" +"EB-527","","","419918","3952918","GW","true","" +"NM-28380","N-2016-068","","618394","3635563","GW","true","" +"UC-0016","","","674235","4049754","GW","false","" +"NM-01179","","","550839","3874950","GW","false","" +"NM-08304","","","561885","3615340","GW","false","" +"NM-18828","","","653165","3813560","GW","false","" +"BW-0578","8S9E19.2","","403267","3718530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TO-0103","4N9E7.441","","405219","3827400","GW","true","" +"NM-21952","","","341174","3882450","GW","false","" +"NM-15521","","","133169","3749580","GW","false","" +"NM-24832","","","676534","3947100","GW","false","" +"NM-14166","","","475701","3698200","GW","false","" +"NM-23050","","","235913","3897910","GW","false","" +"QY-0325","11.33.12.241","","646781","3896090","GW","true","" +"NM-08487","","","188150","3623330","GW","false","" +"NM-10506","","","554977","3644310","GW","false","" +"NM-25789","","","406092","3996470","GW","false","" +"NM-27579","","","659400","3793210","GW","false","" +"NM-08806","","","648783","3624490","GW","false","" +"NM-16560","","","630934","3774410","GW","false","" +"NM-06656","","","211409","3589850","GW","false","" +"EB-396","","","403630","3929064","GW","true","" +"BC-0192","172","","375688","3897720","GW","true","" +"NM-26238","","","658297","4035680","GW","false","" +"NM-04495","","","385269","3548820","GW","false","" +"NM-01680","","","276208","4052740","GW","false","" +"NM-18263","","","643144","3803950","GW","false","" +"NM-27848","","","616300","3780620","GW","false","" +"NM-19348","","","600887","3825150","GW","false","" +"NM-21524","","","613608","3876320","GW","false","" +"NM-17353","","","643739","3786860","GW","false","" +"NM-12767","","","635244","3681190","GW","false","" +"EB-043","","","416147","3942105","GW","true","Sebastian De Vargas Grant" +"NM-11696","","","553113","3662500","GW","false","" +"NM-01935","","","345335","3542570","GW","false","" +"NM-07768","","","310311","3609100","GW","false","" +"NM-27050","","","296855","3765350","GW","true","" +"NM-13336","","","668148","3691310","GW","false","" +"NM-22112","","","222844","3887100","GW","false","" +"NM-25248","","","204934","3968910","GW","false","" +"NM-22644","","","348520","3889960","GW","false","" +"BW-0025","22S4E13.432","","360407","3584610","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24941","","","482662","3947660","GW","false","" +"NM-04811","","","234829","3558350","GW","false","" +"NM-25058","","","652884","3953040","GW","false","" +"AR-0054","NMED 23","","235654","4084290","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn leftt on CR 2800 towards the river. Take right bend in road and proceed to address on left. Well is on N side of cinder block pump shed about 80' S of mobile home." +"NM-05958","","","248086","3574560","GW","false","" +"BW-0272","15S10E7.423","","405427","3654380","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"ED-0158","22S23E26.413","","540553","3580580","GW","true","" +"SD-0388","12N.5E.4.222","","371077","3907540","SP","true","" +"NM-25601","","","403670","3983150","GW","false","" +"SM-0218","","","470933","3667296","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. At 25.3 miles, take 2-track on left. Note electric line which runs off to left. This goes to well. Follow 2-track to gated cattle guard (not locked) at 1.4 miles. Continue another 0.8 miles to windmill." +"NM-18819","","","598882","3812400","GW","false","" +"DE-0060","","","540584","3590978","GW","false","" +"TV-110","SWS-08","","439656","4024799","GW","true","From SR 68, turn left (west) on SR 96. Go 2 miles to Los Cordovas, turn right (north). Go 1 mile then left (west). Go ~1/2 mile to Sage Meadow Lane and turn right, second house on right. Casing near road by driveway ~30' east of Sage Meadow Lane & 30' south of drive to #17." +"NM-12596","","","554586","3677230","GW","false","" +"NM-00565","","","494090","3657110","GW","false","" +"NM-11387","","","659784","3658820","GW","false","" +"NM-22395","","","266388","3888810","GW","false","" +"BW-0112","9S8E35.142","","399586","3705620","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11377","","","678065","3659440","GW","false","" +"TB-0032","","","401759","3683043","GW","true","From water tank at Pivot - west to fence, then north to power pole to north. Old barn to NE of well. Well head under 1/2 barrell." +"AH-019","DM-36","","445630","4043078","GW","true","" +"NM-06107","","","158262","3580630","GW","false","" +"SM-0189","","","488274","3623447","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-19746","","","596049","3832060","GW","false","" +"NM-13204","","","630024","3688320","GW","false","" +"NM-05727","","","259364","3570960","GW","false","" +"NM-02650","","","556636","3640410","GW","false","" +"NM-27264","","","584094","3573040","GW","false","" +"NM-27121","MLC-38","","443014","4037520","GW","false","" +"NM-20786","","","540572","3852780","GW","false","" +"NM-17058","","","657194","3782880","GW","false","" +"NM-02032","","","243338","3555653","GW","false","Approx. 11.2 miles S of Pine St & NM 11 intersection in Deming on NM 11, left on Camino Doce CR B16, go 1.9 miles east, well on south, blue, next to small steel shed about 100 yards from road." +"NM-16067","","","604208","3757810","GW","false","" +"SM-4081","","","431898","3617183","PS","true","Stream flow measurement by Patrick Walsh" +"TO-0435","9N15E15.42","","470168","3873500","GW","true","" +"NM-07972","","","282686","3612590","GW","false","" +"NM-20790","","","294256","3855020","GW","false","" +"EW-0005","","","418960","4004833","SP","false","" +"QU-143","MW-28","","444499","4061295","GW","true","" +"WL-0306","","","309660","3793161","GW","false","Will be escorted to well." +"BW-0766","4.9.29.22","","595381","3709250","GW","true","" +"NM-22218","","","395766","3884670","GW","false","" +"NM-01574","","","564921","3992170","GW","false","" +"NM-10469","","","553345","3643680","GW","false","" +"NM-08467","","","557128","3618110","GW","false","" +"NM-21392","","","346055","3872480","GW","false","" +"SM-0108","","","480362","3603028","GW","true","" +"NM-05548","","","222290","3569900","GW","false","" +"NM-02181","","","334612","3565870","GW","false","" +"NM-22673","","","347388","3890400","GW","false","" +"NM-20094","","","588481","3837900","GW","false","" +"NM-27664","","","650206","3795430","GW","false","" +"NM-05853","","","239339","3573550","GW","false","" +"PC-055","PW-090","","372911","3911968","GW","true","From north on I-25, take NM-165E to Placitas. From the intersection of Hwy 165 & Tecolote Rd, drive north on Tecolote. After ~0.8 miles, at intersection w/La Camino de la Rosa Costilla, Tecolote becomes Camino de San Francisco. Stay on Camino de San Francisco for ~1.9 miles, then turn left (NW) on San Francisco Hills Rd. and drive ~0.25 miles. Turn left (SW) on Sangre de Cristo Rd and drive ~0.2 miles. Sangre de Cristo ends at Mountain Rd, turn right (west), and drive ~250 feet to Martin home on left (south) side of road." +"QY-1034","13.32.1.434","","636847","3915790","SP","true","" +"SB-0237","TWDB 4807209","","481004","3540269","GW","false","" +"NM-17292","","","652430","3786010","GW","false","" +"NM-15380","","","664849","3741760","GW","false","" +"NM-20447","","","596857","3844850","GW","false","" +"BW-0030","22S4E23.444","","359152","3582880","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"PC-139","PS-15","","373590","3913456","SP","true","" +"NM-05962","","","252195","3574490","GW","false","" +"NM-19644","","","393492","3830450","GW","false","" +"NM-24239","","","475067","3931430","GW","false","" +"NM-23464","","","626124","3905810","GW","false","" +"QU-534","","","440934","4059508","SP","true","" +"NM-21472","","","410702","3874010","GW","false","" +"NM-16842","","","634946","3778840","GW","false","" +"NM-17170","","","337792","3784510","GW","false","" +"BC-0219","219","","373324","3882450","GW","true","" +"NM-19730","","","557015","3831360","GW","false","" +"NM-23005","","","349362","3894550","GW","false","" +"SM-1038","","","431943","3630299","SP","true","Forest Service marker #59" +"NM-23595","","","188433","3913740","GW","false","" +"MI-0225","","","596406","3940420","GW","true","Topographic situation: Mesa" +"NM-25653","","","404498","3985580","GW","false","" +"QY-0639","5.30.17.213","","611307","3836090","GW","true","" +"NM-09761","","","558991","3633280","GW","false","" +"NM-09940","","","559002","3635770","GW","false","" +"NM-15574","","","653989","3745270","GW","false","" +"NM-10547","","","669859","3646390","GW","false","" +"NM-18797","","","599345","3812070","GW","false","" +"NM-27288","","","362061","3581660","GW","false","" +"NM-02022","","","133395","3557550","GW","false","" +"NM-14079","","","545666","3697040","GW","false","" +"NM-03902","","","232428","3524720","GW","false","" +"NM-16587","","","671416","3775460","GW","false","" +"NM-25687","","","401426","3988480","GW","false","" +"NM-02901","","","680892","3734190","GW","false","" +"NM-21779","","","377070","3880410","GW","false","" +"NM-10971","","","550871","3649950","GW","false","" +"NM-12582","","","643877","3678420","GW","false","" +"SV-0014","22 Camino Real","","380340","3899698","GW","false","Unit 1 Lot 63" +"NM-06965","","","343384","3592780","GW","false","" +"NM-11671","","","548268","3662010","GW","false","" +"WL-0046","","","441001","4049807","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, go past Lawrence Ranch Rd which is the first turn off to San Cristobal. House is off of Hwy 522 on right, before FR 493 at address: 1545 Hwy 522. Well is in back yard underneath frost-free" +"ED-0345","25S25E12.342","","561260","3556180","GW","true","" +"NM-13767","","","442934","3694760","GW","false","" +"BC-0161","142","","375550","3892760","GW","true","" +"NM-13827","","","551721","3695100","GW","false","" +"ED-0221","22S27E21.344","","575656","3582080","GW","true","" +"NM-28200","","","174285","4057140","GW","false","" +"NM-03284","","","665048","3852290","GW","false","" +"BW-0396","17S10E19.112","","410065","3631240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24456","","","402370","3937810","GW","false","" +"NM-03834","","","252692","3521440","GW","false","" +"PP-069","PW-74","","436916","4002851","GW","true","" +"NM-03641","","","658931","4033690","GW","false","" +"NM-08312","","","677037","3616940","GW","false","" +"NM-09345","","","227830","3632680","GW","false","" +"NM-13793","","","544178","3694940","GW","false","" +"RA-1002","","","426585","4002669","SP","false","" +"NM-18700","","","570698","3810300","GW","false","" +"QY-0280","11.31.24.112","","626382","3892800","GW","true","" +"NM-16951","","","656251","3781050","GW","false","" +"NM-05433","","","675776","3566920","GW","false","" +"QY-0835","7.33.13.422","","646986","3855210","GW","true","" +"NM-00427","","","667240","3636570","GW","false","" +"NM-10337","","","582084","3642030","GW","false","" +"NM-08250","","","674109","3615960","GW","false","" +"NM-27043","","","329854","3753490","GW","true","" +"NM-05933","","","243392","3574310","GW","false","" +"NM-21789","","","236609","3883520","GW","false","" +"DA-0129","26S4W6.4","","284347","3550780","GW","true","" +"NM-06229","","","578275","3577890","GW","false","" +"NM-06210","","","670315","3578620","GW","false","" +"NM-20048","","","168462","3842260","GW","false","" +"QY-0073","10.31.25.331","","626654","3880380","GW","true","3.5 ft west of well .331a" +"NM-28446","","","274645","3800862","GW","false","Chavez Springs is approximately 20 miles (21.2 mi) from intersection of Hwy 60 and Hwy 169. Well is on hill above pond near well house enclosed in chainlink fence. Dirt access road just east of the pond to well and tank." +"BW-0122","10S9E24.412","","410972","3698740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0577","5S11E4.4","","426907","3751480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01243","","","658472","3892880","GW","false","" +"NM-00511","","","317404","3649970","GW","false","" +"NM-15184","","","563683","3733950","GW","false","" +"EB-181","","","406657","3949583","GW","true","On east side of Tierra Grande, ~0.1 mi S of La Vida Trail intersection, next to fire hydrant" +"BW-0783","2.23.24.10.100","","555692","4011200","GW","true","" +"NM-00722","","","431445","3695950","GW","false","" +"TO-0542","8N9E18.32","","405369","3864550","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-02810","","","559105","3691700","GW","false","" +"QU-121","","","439316","4071765","GW","true","From Rt. 378 and Ute Mtn. Rd, find H braces in barbed wire fence to west. Follow road 1.2 mi along fence. At cattleguard, in dry season: follow fencline N along 2-track, then W to corner opening to N @ ~1.7 mi. In winter: cut across field to NW corner. Ruts dangerous when snowy; frozen ground pre-condition to field cut. At fence corner, follow 2-track N along fence, then W at corner to a gate @ ~1 mi. Turn in & follow left forking 2-track uphill 0.3 mi NNW to the well. PVC in concrete in field. 1/4 mi from gorge edge" +"NM-08235","","","305623","3616120","GW","false","" +"WL-0323","","","427556","3722064","GW","true","open well behind well house, no cap" +"TO-0427","9N10E33.313","","418924","3868700","GW","true","" +"AR-0019","NMED 204","","231810","4078110","GW","true","From Hwy 550 in Aztec (Main St), take Rd 3000 west (aka S. Rio Grande), make left at fork to Rd. 3004. Turn right to stay on Rd. 3004 to address. Well is in garage to NE of home." +"NM-12348","","","556243","3672620","GW","false","" +"WL-0192","","","511177","3731113","GW","true","Well on BLM land. Contact Mike McGee for escort to well." +"EB-639","","","402980","3955400","GW","true","" +"NM-08409","","","673020","3618620","GW","false","" +"NM-10248","","","652211","3641940","GW","false","" +"TC-402","","","448184","4071123","GW","true","" +"NM-04861","","","133414","3562430","GW","false","" +"NM-24873","","","412550","3946580","GW","false","" +"TB-1048","","","422593","3669570","ES","true","On Mescalero Land. Not ideal for anything." +"NM-21438","","","288426","3874490","GW","false","" +"NM-12336","","","555518","3672520","GW","false","" +"TC-337","","","414340","4058428","GW","true","" +"NM-21734","","","432693","3879270","GW","false","" +"NM-15110","","","198378","3735720","GW","false","" +"NM-02985","","","673141","3776190","GW","false","" +"NM-02665","","","553782","3644390","GW","false","" +"NM-14693","","","365368","3715520","GW","false","" +"TC-263","CO-11","","415871","4100778","GW","true","" +"NM-00095","","","492247","3552430","GW","false","" +"SD-0324","13N.5E.32.211","","369672","3909240","GW","true","" +"NM-10430","","","554204","3643200","GW","false","" +"NM-07800","","","664293","3609170","GW","false","" +"NM-20424","","","608690","3844340","GW","false","" +"NM-26726","","","442902","4083911","GW","true","" +"NM-01442","","","551645","3939980","GW","false","" +"NM-11333","","","676036","3658300","GW","false","" +"EB-664","","","407622","3939532","GW","true","" +"NM-24923","","","670435","3948960","GW","false","" +"QY-1027","10.36.18.224","","667973","3885410","SP","true","" +"MI-0300","","","455950","3900483","SP","true","Topographic situation: Valley" +"AB-0255","","","317483","3874870","GW","true","" +"NM-28165","","","169550","3982700","GW","false","" +"BW-0631","9S9E10.1","","407284","3712100","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0499","5S14W33.133","","193443","3748340","GW","true","" +"NM-27162","PS-009","","369010","3906397","SP","true","" +"NM-08315","","","229413","3619130","GW","false","" +"QU-083","MW-13","","443489","4061245","GW","true","See Chevron map of monitoring wells. Down from Dam 4 (south side)." +"NM-02771","","","551911","3669170","GW","false","" +"NM-02111","M-084","","210670","3563140","GW","false","" +"NM-26880","","","567698","3949600","GW","true","" +"NM-08746","","","556766","3622270","GW","false","" +"NM-19856","","","609525","3833990","GW","false","" +"NM-24465","","","440225","3937600","GW","false","" +"NM-01072","","","628422","3846370","GW","false","" +"WL-0169","","","556285","3722370","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well under old metal windmill next to stock pond." +"AB-0057","S065","","356069","3909350","GW","true","" +"EB-129","","","404145","3939566","GW","true","C&S Trailer Park (Remuda Ridge)" +"NM-25685","","","221958","3992300","GW","false","" +"NM-01404","","","477632","3931790","GW","false","" +"NM-14762","","","546135","3717800","GW","false","" +"NM-22129","","","346456","3884320","GW","false","" +"NM-01650","","","300540","4038200","GW","false","" +"NM-20875","","","656184","3856300","GW","false","" +"NM-13141","","","535658","3686530","GW","false","" +"NM-26485","","","223530","4066920","GW","false","" +"TO-0264","7N7E12.342","","394269","3856300","GW","true","" +"NM-10001","","","548394","3636450","GW","false","" +"NM-16588","","","666393","3775370","GW","false","" +"NM-15438","","","675784","3743090","GW","false","" +"NM-04697","","","671301","3554330","GW","false","" +"NM-16764","","","643768","3778260","GW","false","" +"BW-0281","15S10E22.413","","409918","3651100","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06077","","","587271","3574600","GW","false","" +"NM-03775","","","162297","3521170","GW","false","" +"NM-24590","","","647016","3941480","GW","false","" +"AB-0248","","","407650","3762606","GW","true","" +"NM-19295","","","641201","3824190","GW","false","" +"NM-04667","","","235133","3555940","GW","false","" +"QY-0493","16.34.19.112","","646948","3941480","GW","true","" +"NM-28137","","","175665","3965310","GW","false","" +"NM-05452","","","239627","3568490","GW","false","" +"NM-02494","","","557933","3608900","GW","false","" +"NM-25996","","","192829","4014320","GW","false","" +"NM-13807","","","474504","3694940","GW","false","" +"NM-14735","","","638189","3717670","GW","false","" +"ED-0334","24S28E7.231","","582547","3566760","GW","true","" +"PC-021","PW-035","","371310","3908349","GW","true","" +"NM-23278","","","391987","3899110","GW","false","" +"NM-05506","","","258442","3568550","GW","false","" +"NM-23375","","","376711","3901650","GW","false","" +"NM-17135","","","335379","3784210","GW","false","" +"SB-0187","TWDB 4757801","","504242","3432989","GW","false","" +"NM-22272","","","597875","3885070","GW","false","" +"NM-20576","","","598753","3848290","GW","false","" +"NM-18383","","","426146","3804810","GW","false","" +"SM-1080","","","449136","3634479","SP","true","Near intersection of Hwy 24 and 130 (Cox Canyon). Take Bear Canyon Road off of Hwy 24. Spring found before dirt road hairpins to right, found in heavily used camping area. Spring comes out of pipe." +"NM-14479","","","406355","3706100","GW","false","" +"QY-0920","8.33.9.122","","641175","3867190","GW","true","" +"NM-20818","","","565922","3853510","GW","false","" +"NM-03041","","","636320","3790200","GW","false","" +"BW-0627","8S10E22.3","","416925","3717560","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01005","","","674402","3824780","GW","false","" +"NM-01900","","","339311","3536690","GW","false","" +"NM-11562","","","679142","3661560","GW","false","" +"NM-02973","","","226593","3764110","GW","false","" +"NM-21426","","","378888","3872310","GW","false","" +"NM-05696","","","258672","3570510","GW","false","" +"NM-18717","","","629474","3811330","GW","false","" +"RA-033","","","359603","4086789","GW","true","" +"NM-05981","","","166210","3577370","GW","false","" +"NM-01818","","","251204","3525200","GW","false","" +"NM-16190","","","662938","3763200","GW","false","" +"NM-02333","S-2016-041","","625158","3578140","GW","false","" +"NM-27032","","","328954","3761240","GW","true","" +"NM-01850","","","311723","3530510","GW","false","" +"NM-08378","","","556485","3616820","GW","false","" +"NM-17822","","","676865","3796450","GW","false","" +"NM-14506","","","574418","3706710","GW","false","" +"NM-13561","","","554397","3692320","GW","false","" +"HS-089","TC-089","","289763","3667575","GW","true","In block 40 in Hot Springs, NM" +"QY-0869","8.30.17.333","","610179","3863870","GW","true","" +"NM-03217","","","571406","3830740","GW","false","" +"NM-08572","","","668941","3621050","GW","false","" +"DA-0061","22S2E23.122","","339072","3584540","GW","true","" +"NM-23475","","","371788","3906400","GW","false","" +"BC-0018","193","","368444","3882170","GW","true","" +"NM-27337","","","548325","3591710","GW","false","" +"NM-23172","","","181826","3902120","GW","false","" +"NM-27689","","","678904","3796800","GW","false","" +"NM-17686","","","325012","3792750","GW","false","" +"NM-13138","","","552490","3686580","GW","false","" +"SA-1009","","","258645","3717837","SP","true","1/4 mile north of Box, on east side of arroyo. South of springs 1 and 2 in complex, but north of main Ojo Caliente Springs." +"NM-08484","","","151896","3624260","GW","false","" +"NM-16054","","","624260","3757620","GW","false","" +"NM-10980","","","475451","3649970","GW","false","" +"NM-04570","","","133620","3557240","GW","false","" +"NM-16765","","","572692","3777010","GW","false","" +"NM-05031","","","556684","3558500","GW","false","" +"TO-0522","6N9E2.4","","412200","3848210","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-09965","","","557363","3636010","GW","false","" +"NM-07948","","","231999","3613450","GW","false","" +"NM-10176","","","623832","3640130","GW","false","" +"NM-04909","","","237306","3559790","GW","false","" +"NM-17940","","","621815","3797700","GW","false","" +"NM-25644","","","416934","3984870","GW","false","" +"NM-27412","","","554270","3650190","GW","false","" +"NM-03418","","","418910","3893250","GW","false","" +"NM-14069","","","545357","3696950","GW","false","" +"NM-27760","","","597210","3784230","GW","false","" +"NM-02865","","","415127","3717540","GW","false","" +"NM-23554","","","369521","3908590","GW","false","" +"NM-03430","","","677862","3895160","GW","false","" +"NM-21108","","","428486","3862820","GW","false","" +"NM-05434","","","675707","3566360","GW","false","" +"SO-0143","BRN-W04B","","327164","3763807","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-24776","","","408107","3944930","GW","false","" +"TB-0184","","","419992","3716186","GW","true","From Carrizozo - From Water Canyon Road south through locked gate (Cathie has key) south on road to first windmill on south side of road." +"BW-0500","7S8E14.323","","399822","3729340","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15273","","","652706","3738660","GW","false","" +"EB-432","","","412783","3935231","GW","true","99 Encantado Loop" +"NM-16718","","","666305","3777430","GW","false","" +"NM-24759","","","291069","3946570","GW","false","" +"NM-11982","","","557937","3666470","GW","false","" +"NM-14316","","","544048","3700790","GW","false","" +"NM-05051","","","342452","3559770","GW","false","" +"NM-12367","","","553911","3672880","GW","false","" +"NM-15928","","","209629","3757210","GW","false","" +"NM-10734","","","550965","3646780","GW","false","" +"NM-24681","","","404792","3943050","GW","false","" +"NM-04110","","","261932","3536230","GW","false","" +"NM-13212","","","638808","3688970","GW","false","" +"NM-16768","","","543851","3776960","GW","false","" +"NM-10795","","","266523","3650430","GW","false","" +"NM-15595","","","615919","3744790","GW","false","" +"NM-23602","","","360897","3909550","GW","false","" +"NM-17172","","","655119","3784450","GW","false","" +"NM-06867","","","571991","3590060","GW","false","" +"NM-08074","","","206530","3616110","GW","false","" +"AR-0008","E016","NMED 349","226419","4076530","GW","true","From Hwy 516, take Hwy 350 south across river. Make left on Road 3000; make another left on Road 3302. Follow toward river to address. Well in shed west of house under white hinged box in center of room." +"TO-0405","9N8E21.121","","399993","3873130","GW","true","" +"NM-26278","","","665732","4040200","GW","false","" +"NM-12890","","","667963","3684040","GW","false","" +"NM-26417","","","573733","4060430","GW","false","" +"NM-00153","","","586490","3568100","GW","false","" +"SD-0109","9N.7E.17.232","","389202","3874470","GW","true","" +"SD-0060","8N.7E.9.123","","391488","3863710","GW","true","" +"NM-07730","","","553230","3606880","GW","false","" +"BC-0366","","","379592","3894489","GW","false","" +"NM-01305","PW-041","","367621","3907298","GW","true","" +"AR-0152","C011","","238489","4087260","GW","true","" +"SB-0827","","","478409","3606290","GW","false","" +"NM-15721","","","646638","3748390","GW","false","" +"NM-18939","","","659170","3815670","GW","false","" +"NM-25434","","","277904","3975600","GW","false","" +"NM-06551","","","224296","3587640","GW","false","" +"NM-03812","","","350297","3519250","GW","false","" +"NM-20849","","","351555","3855520","GW","false","" +"NM-01917","M-037","","245974","3541421","GW","false","From main Deming intersection at Pine and Gold, go south on NM-11 for 17.5 miles. Go west on Waterloo for 0.2 miles. Turn south down the dirt road about 100 feet. Well located east of the dirt road under power poles." +"NM-16103","","","650387","3760000","GW","false","" +"NM-24948","","","410530","3948260","GW","false","" +"WL-0310","","","226780","3631310","GW","false","on east side of Hwy 61, 0.5 miles south of intersection with Hwy 152." +"NM-09804","","","560677","3633900","GW","false","" +"NM-11791","","","646613","3665240","GW","false","" +"NM-13938","","","552054","3695600","GW","false","" +"NM-12921","","","556340","3682600","GW","false","" +"NM-16418","","","480982","3770040","GW","false","" +"NM-26101","","","638925","4021600","GW","false","" +"NM-00746","","","430808","3697390","GW","false","" +"TO-0050","3N11E30.32","","423556","3812990","GW","true","" +"NM-09864","","","561399","3634770","GW","false","" +"NM-27143","CH-01","","433129","4003700","GW","false","" +"DE-0271","","","663045","3634598","GW","false","" +"NM-13664","","","566147","3693620","GW","false","" +"NM-06339","","","676439","3581410","GW","false","" +"BW-0026","22S4E14.133","","357794","3585230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18067","","","658620","3800930","GW","false","" +"NM-01076","","","140574","3853150","GW","false","" +"NM-13148","","","552877","3686730","GW","false","" +"BW-0342","17S9E1.141","","408897","3637110","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07740","","","554481","3607080","GW","false","" +"BC-0148","131","","377013","3890380","GW","true","" +"NM-11018","","","654028","3651980","GW","false","" +"NM-18684","","","677822","3811970","GW","false","" +"NM-12193","","","553150","3670040","GW","false","" +"TC-301","","","446413","4081333","GW","true","Head East of TC-300 (South Brown House) @ 49 State Line Rd, then south. Well is located in field center pivot surrounded by blue pipe fencing." +"NM-04658","","","549981","3552610","GW","false","" +"QY-0424","12.37.18.442","","677358","3903590","GW","true","" +"NM-16420","","","569950","3770310","GW","false","" +"SB-0375","TWDB 4807901","","487657","3531083","GW","false","" +"NM-05544","","","229464","3569650","GW","false","" +"BC-0181","161","","379448","3885440","GW","true","" +"NM-02615","","","561424","3630740","GW","false","" +"NM-27482","","","346930","3743070","GW","false","" +"SD-0156","10N.5E.15.433","","373303","3883600","GW","true","" +"NM-25879","","","412224","4001980","GW","false","" +"NM-20773","","","550583","3852610","GW","false","" +"NM-23949","","","402936","3920340","GW","false","" +"NM-03193","","","402266","3827160","GW","false","" +"NM-15366","","","563644","3739710","GW","false","" +"NM-00302","","","375085","3611400","GW","false","" +"NM-13868","","","544848","3695320","GW","false","" +"SB-0163","TWDB 4742901","","521524","3459855","GW","false","" +"NM-03982","","","254139","3528000","GW","false","" +"NM-03764","","","166743","3513620","GW","false","" +"NM-09492","","","226855","3634160","GW","false","" +"EB-482","","","396210","3964020","GW","true","" +"DE-0302","","","675808","3591628","GW","false","" +"NM-01349","","","638056","3914610","GW","false","" +"TO-0535","7N9E30.22","","405975","3852460","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-06764","","","676243","3589600","GW","false","" +"NM-24380","","","671896","3937090","GW","false","" +"NM-28442","","","232083","3550982","GW","false","Well located 0.2 miles west of NM-01979. (To NM-01979: From the intersection of CR34 and Hermanas rd, go south on Hermanas rd for 2.6 miles. Go south into fields beyond red gate for about 0.25 miles. Well located next to power poles.)" +"NM-12169","","","289925","3671940","GW","false","" +"NM-04682","","","145657","3558880","GW","false","" +"NM-16761","","","666367","3778330","GW","false","" +"NM-00375","","","451312","3627820","GW","false","" +"AB-0091","S103","","346634","3902630","GW","true","" +"NM-16364","","","565886","3768650","GW","false","" +"PB-0019","","","377952","3937418","GW","true","Heading south on Hwy 22 from post office in Pena Blanca, turn right (west) on Abrevadero Road to address. Sign at end of driveway says 51 Rocking M. Well on brick/concrete patio next to garage (white pvc stick-up)." +"NM-24560","","","433646","3939620","GW","false","" +"NM-13814","","","546451","3695050","GW","false","" +"NM-08288","","","209229","3619180","GW","false","" +"NM-25562","","","302606","3983020","GW","false","" +"NM-11547","","","560436","3660350","GW","false","" +"NM-15022","","","562743","3728220","GW","false","" +"NM-18859","","","465809","3812370","GW","false","" +"TO-0511","5N8E25.11","","403016","3833230","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-17434","","","647763","3788120","GW","false","" +"NM-07462","","","660734","3603480","GW","false","" +"NM-27552","","","627005","3792010","GW","false","" +"NM-25969","","","418244","4007040","GW","false","" +"NM-23025","","","647327","3894800","GW","false","" +"NM-02114","","","268872","3561800","GW","false","" +"NM-28160","","","650249","3613660","GW","false","" +"NM-01020","","","169259","3833900","GW","false","" +"BW-0143","11S10E6.433","","412475","3693500","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25026","","","215471","3954860","GW","false","" +"NM-25506","","","407900","3978150","GW","false","" +"NM-25979","","","565545","4007610","GW","false","" +"NM-05878","","","166751","3575870","GW","false","" +"NM-23311","","","237095","3902840","GW","false","" +"NM-02007","","","360664","3550630","GW","false","" +"NM-01143","","","669352","3864300","GW","false","" +"NM-00860","","","311676","3750380","GW","false","" +"QY-0763","7.29.28.432","","603230","3851080","GW","true","" +"NM-22278","","","291680","3886960","GW","false","" +"NM-00642","","","670340","3681310","GW","false","" +"TO-0429","9N11E7.134","","425579","3875490","GW","true","" +"NM-23188","","","659738","3898370","GW","false","" +"NM-11876","","","673187","3666780","GW","false","" +"NM-02148","","","166538","3567830","GW","false","" +"NM-15516","","","591517","3742890","GW","false","" +"NM-22298","","","658763","3886210","GW","false","" +"NM-02541","","","674947","3618690","GW","false","" +"DA-0205","23S2E21.3","","335553","3573880","GW","true","" +"NM-13032","","","633157","3686180","GW","false","" +"CP-0023","","","665459","3798794","GW","true","Between Southwest Cheese plant and US 70. Will need EPCOR escort to wells." +"NM-18845","","","572826","3812410","GW","false","" +"NM-10178","","","406624","3639610","GW","false","" +"NM-07367","","","185015","3604990","GW","false","" +"NM-18691","","","645888","3811450","GW","false","" +"NM-19171","","","658231","3821330","GW","false","" +"NM-15584","","","622992","3744510","GW","false","" +"NM-24516","","","400798","3939000","GW","false","" +"NM-13640","","","553151","3693360","GW","false","" +"NM-13307","","","633278","3690520","GW","false","" +"NM-15108","","","586299","3731330","GW","false","" +"NM-05595","","","233280","3570260","GW","false","" +"NM-09187","","","198576","3631740","GW","false","" +"NM-01859","M-022","","260488","3533241","GW","false","From NM_01854, continue east on B005 for another 4.0 miles. Park on north side of the road. Well located ~100 yards north of the road." +"NM-16146","","","663352","3761510","GW","false","" +"NM-06591","","","192191","3589370","GW","false","" +"NM-01948","","","346648","3544340","GW","false","" +"NM-17002","","","662617","3781770","GW","false","" +"NM-20545","","","619534","3847610","GW","false","" +"NM-27925","","","552539","3830380","GW","false","" +"PP-075","PS-80","","439438","4006849","SP","true","" +"NM-23613","","","188342","3914050","GW","false","" +"NM-11802","","","671543","3665920","GW","false","" +"SB-0023","TWDB 4709503","","504970","3518084","GW","false","" +"NM-09173","","","559157","3627270","GW","false","" +"NM-16344","","","139704","3774370","GW","false","" +"SB-0710","TWDB 4915804","","388879","3516650","GW","false","" +"NM-09800","","","281483","3636100","GW","false","" +"NM-20644","","","677856","3851270","GW","false","" +"MI-0223","","","594581","3941809","GW","true","Topographic situation: Plateau" +"BC-0297","307","","376056","3892050","GW","true","" +"QU-014","","","447444","4063375","GW","true","From north on 522, make right on Route 38 at light towards Red River. First hairpin left is Cabresto Road. Well house on north side." +"NM-19585","","","647354","3830080","GW","false","" +"SM-4043","","","442472","3634474","PS","true","Stream flow measurement by Patrick Walsh" +"NM-15567","","","631352","3744220","GW","false","" +"NM-14991","","","645071","3728030","GW","false","" +"BC-0341","359","","376006","3889722","GW","true","" +"NM-09125","","","330503","3627800","GW","false","" +"TO-0519","6N9E1.3","","412994","3848180","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-08896","","","646609","3625380","GW","false","" +"NM-27687","","","647892","3796200","GW","false","" +"NM-08400","","","623070","3617760","GW","false","" +"PP-043","PW-48","","432742","4002978","GW","true","" +"NM-15386","","","619922","3741270","GW","false","" +"NM-26252","","","150334","4042450","GW","false","" +"NM-22885","","","376172","3892560","GW","false","" +"NM-09189","","","640994","3628530","GW","false","" +"NM-11886","","","288086","3667230","GW","false","" +"NM-07697","","","677982","3607810","GW","false","" +"EB-620","","","403255","3983428","PS","true","Rio Grande in Santa Cruz at Rt 84 Bridge" +"SM-0188","","","486153","3634138","GW","true","Off of Hwy 24, to Dunken. Turn east on Dunken Well rd, and go 2.8 mi. Turn left at junction, go over cattlegaurd, and take right fork to well 1.8 miles. 1st site visit by Jeremiah Morse in June 2007" +"NM-28244","","","194571","4079300","GW","false","" +"NM-07696","","","670838","3607650","GW","false","" +"NM-09905","","","671142","3636800","GW","false","" +"NM-09455","","","651927","3631710","GW","false","" +"SB-0169","TWDB 4743501","","528281","3464643","GW","false","" +"BW-0680","2.9.12.16.213","","439250","3873390","GW","true","" +"NM-17778","","","627690","3794300","GW","false","" +"NM-05474","","","242802","3568620","GW","false","" +"NM-23078","","","428636","3894890","GW","false","" +"NM-24547","","","379413","3939790","GW","false","" +"NM-00530","","","405543","3652400","GW","false","" +"NM-09309","","","227064","3632300","GW","false","" +"PC-138","PS-14","","373580","3913510","SP","true","" +"NM-21036","","","525614","3859750","GW","false","" +"NM-03807","","","157396","3523580","GW","false","" +"NM-22694","","","347119","3890540","GW","false","" +"SB-0323","TWDB 4807614","","486029","3531301","GW","false","" +"BW-0276","15S10E9.211","","408301","3655160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07668","","","220752","3609690","GW","false","" +"NM-18956","","","547477","3814250","GW","false","" +"NM-15321","","","592252","3738650","GW","false","" +"NM-24471","","","419161","3937950","GW","false","" +"NM-21976","","","401839","3881990","GW","false","" +"NM-15962","","","205327","3758640","GW","false","" +"NM-16495","","","326549","3773370","GW","false","" +"NM-25864","","","639614","4001920","GW","false","" +"NM-24156","","","637777","3930180","GW","false","" +"NM-11139","","","677009","3654710","GW","false","" +"DE-0318","","","650204","3590795","GW","false","" +"NM-10696","","","406585","3646440","GW","false","" +"NM-10499","","","636756","3645200","GW","false","" +"NM-16863","","","667109","3779820","GW","false","" +"NM-21636","","","355098","3878610","GW","false","" +"NM-07675","","","206642","3610160","GW","false","" +"TO-0072","4N7E11.344","","391574","3827220","GW","true","" +"NM-02117","","","267171","3561930","GW","false","" +"AB-0076","S088","","344737","3868520","GW","true","" +"NM-26458","","","611459","4062630","GW","false","" +"CP-0022","","","662541","3808687","GW","true","West side of Clovis. Need an EPCOR escort to wells." +"NM-01146","","","641827","3864320","GW","false","" +"NM-10104","","","675924","3639870","GW","false","" +"TB-0193","","","411501","3706629","GW","true","Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill, stay south, left at fork past Nagel Windmill to northeast (watch the mudhole!) along fence down canyon into arroyo. Stay east through two gates past windmill on left. From McClain Windmill east, stay left (North) at fork, through arroyo to silver tank. Go through gate to north and bear southeast and continue south, right fork to west at house and south through gate, past Hogback Windmill. Bear right (West) at fork to gate going south at water tank. Go SW around field towards HQ and look for fork before gate to HQ that goes SW to white tank to well with Solar Panel. Road circles back to road to HQ." +"NM-15552","","","673726","3744530","GW","false","" +"QU-539","","","447705","4070695","D","true","" +"NM-19249","","","675195","3823970","GW","false","" +"NM-14054","","","616416","3697360","GW","false","" +"PP-003","PW-03","","436111","4007025","GW","true","" +"NM-08349","","","243165","3619510","GW","false","" +"NM-11922","","","554729","3665560","GW","false","" +"NM-12121","","","652079","3670500","GW","false","" +"NM-00257","","","581875","3591080","GW","true","" +"NM-01538","","","641898","3976590","GW","false","" +"MI-0040","","","563434","3904021","GW","true","Topographic situation: Plains" +"NM-10311","","","661010","3642610","GW","false","" +"SO-0210","SAC-W09A","","324650","3791113","GW","true","" +"NM-17652","","","405830","3790910","GW","false","" +"EB-398","","","404342","3929113","GW","true","" +"TS-030","","","438820","4072483","SP","true","At base of Lone Tree trail on east side of river." +"SD-0248","11N.5E.25.141a","","375910","3890840","GW","true","25+/- feet from well 11.5.25.141" +"TO-0100","4N9E5.344","","406283","3828780","GW","true","" +"NM-04574","","","544249","3550830","GW","false","" +"NM-14345","","","632907","3702440","GW","false","" +"NM-18600","","","670602","3810210","GW","false","" +"NM-14003","","","545619","3696060","GW","false","" +"NM-01211","","","631334","3883480","GW","false","" +"NM-15781","","","675413","3750660","GW","false","" +"NM-02436","","","575089","3594830","GW","false","" +"NM-14184","","","281815","3700940","GW","false","" +"NM-17013","","","630061","3781980","GW","false","" +"NM-17836","","","665008","3797280","GW","false","" +"NM-13201","","","656753","3689150","GW","false","" +"NM-22149","","","346853","3884490","GW","false","" +"NM-15140","","","443773","3732120","GW","false","" +"SB-0060","TWDB 4717209","","507025","3511866","GW","false","" +"NM-08353","","","558701","3616430","GW","false","" +"EB-379","","","401253","3934512","GW","true","East side of Section 9-10 fenceline; north of Bonanza Creek" +"NM-16315","","","634946","3767830","GW","false","" +"NM-13924","","","146898","3701780","GW","false","" +"NM-02449","","","274414","3599670","GW","false","" +"PC-155","PSW-02","","367044","3907819","PS","true","" +"NM-15391","","","652613","3741630","GW","false","" +"NM-23717","","","371727","3912750","GW","false","" +"NM-17429","","","655712","3788550","GW","false","" +"NM-03363","","","361058","3882180","GW","false","" +"NM-02822","","","544715","3696150","GW","false","" +"SB-0418","TWDB 4814801","","471459","3513997","GW","false","" +"NM-00590","","","279770","3664260","GW","false","" +"NM-19788","","","655576","3833640","GW","false","" +"NM-07222","","","677842","3598130","GW","false","" +"NM-04043","M-019","","228509","3533760","GW","false","" +"WL-0210","","","424724","3727625","GW","true","Well on east side of 2-track in large casing on concrete pad. Look for yellow metal upright pipes." +"SV-0129","08 Vista de Sand","","378935","3900015","GW","false","Unit 1 Lot 23" +"SB-0344","TWDB 4807703","","477749","3527559","GW","false","" +"NM-03876","","","143343","3527150","GW","false","" +"NM-26172","","","675339","4028000","GW","false","" +"NM-28203","","","471127","4042110","GW","false","" +"TO-0273","7N8E3.14","","400404","3858580","GW","true","" +"NM-17936","","","664629","3798450","GW","false","" +"NM-27833","","","649574","3807190","GW","false","" +"NM-24636","","","343216","3942750","GW","false","" +"NM-04339","","","598241","3543850","GW","false","" +"NM-15263","","","673369","3738700","GW","false","" +"NM-19596","","","566325","3829240","GW","false","" +"NM-09328","","","589163","3629100","GW","false","" +"NM-18818","","","616438","3812700","GW","false","" +"NM-07208","","","277606","3598770","GW","false","" +"NM-09430","","","679686","3631740","GW","false","" +"NM-28255","Greenfield","","553118","3670004","GW","true","" +"NM-04405","","","135548","3552380","GW","false","" +"NM-17597","","","555046","3789650","GW","false","" +"QY-0427","13.31.25.344","","627082","3909270","GW","true","" +"AS-047","DM-01","","446113","4042290","GW","true","" +"BW-0250","14S10E31.142","","404646","3658040","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"PC-122","PW-209","","371061","3907168","GW","true","" +"NM-15821","","","204413","3754070","GW","false","" +"SM-0187","","","480958","3631023","GW","true","Off of Hwy 24, just north of Dunken. On west side of road (visitble from road) near big storage tank. Site visit by Jeremiah Morse in June 2007" +"NM-27735","","","631606","3790440","GW","false","" +"NM-05164","","","674532","3561630","GW","false","" +"NM-17503","","","659581","3789850","GW","false","" +"NM-09961","","","643392","3637190","GW","false","" +"DA-0164","28S1E7.113","","321564","3529880","GW","true","" +"AS-038","ES-130","","450643","4042800","GW","true","" +"NM-18613","","","629631","3809240","GW","false","" +"NM-02913","","","678586","3740460","GW","false","" +"NM-20429","","","598643","3844350","GW","false","" +"NM-09912","","","557419","3635360","GW","false","" +"NM-01063","","","337848","3844290","GW","false","" +"NM-17487","","","657722","3789550","GW","false","" +"NM-28277","RR-1","","462637","4061650","GW","false","" +"QY-1015","7.30.15.432","","614382","3854660","SP","true","" +"SA-0406","4S11W17.333","","221826","3761180","GW","true","" +"NM-26846","","","549975","3685479","GW","true","" +"NM-06789","","","566961","3588610","GW","false","" +"TS-052b","","","435150","4040574","SP","true","North pool on east side of river." +"NM-14643","","","482906","3712660","GW","false","" +"NM-15425","","","151680","3747090","GW","false","" +"NM-02567","","","559941","3622320","GW","false","" +"NM-04329","","","135664","3549730","GW","false","" +"NM-08158","","","661443","3614490","GW","false","" +"NM-21184","","","638492","3866890","GW","false","" +"NM-14291","","","546994","3700320","GW","false","" +"NM-13226","","","536351","3687740","GW","false","" +"NM-16528","","","257540","3775850","GW","false","" +"NM-06958","","","363632","3592350","GW","false","" +"CX-0138","51","","529753","4032780","GW","true","7 miles northwest of Springer" +"NM-19680","","","540136","3830470","GW","false","" +"TB-0005","","","422319","3652116","GW","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end, house is toward the right. Brick? Past his house, head into pasture, through 3-4 gates (walking down hill, toward pasture). Well is south one, in cattle fence area." +"NM-24671","","","158882","3948890","GW","false","" +"SV-0106","12 Via Entrada","","380580","3897895","GW","false","Unit 2 Lot 3" +"AR-0225","","","230185","4078440","GW","true","From Aztec, head south on Main St (Hwy 516), turn right on Rd 3000, turn right on Rd 3008, turn left on Rd 3020. House is on the right. Well is in pump house." +"SB-0025","TWDB 4709702","","503446","3513188","GW","false","" +"NM-21819","","","257652","3883330","GW","false","" +"QY-0250","11.30.34.143","","613880","3888980","GW","true","" +"AH-101","HM-28","","439133","4042014","GW","true","" +"UC-0235","","","608620","4006059","GW","false","" +"NM-05038","","","267152","3561100","GW","false","" +"NM-01013","","","344295","3827060","GW","false","" +"EB-670","","","420980","3930061","GW","true","" +"NM-27971","","","394825","3866780","GW","false","" +"NM-12070","","","556607","3667810","GW","false","" +"NM-07620","","","218357","3609020","GW","false","" +"BW-0247","14S10E30.342","","404653","3658850","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02874","","","429637","3720630","GW","false","" +"OG-0079","","","652832","3809152","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile west on US 60. Turn right north on CR R. Drive 0.4 miles to well. Well is on E side of road." +"ED-0210","22S27E9.333","","575106","3585240","GW","true","" +"NM-24902","","","625561","3947680","GW","false","" +"NM-28358","","","166034","3631240","SP","false","" +"NM-21477","","","361859","3874870","GW","false","" +"TO-0284","7N8E10.221","","401239","3857430","GW","true","" +"SO-0190","HWY-W11B","","328859","3755359","GW","true","" +"NM-13863","","","543944","3695250","GW","false","" +"SD-0400","13N.5E.28.322","","371148","3910080","SP","true","" +"NM-20873","","","660452","3856370","GW","false","" +"NM-21429","","","343598","3873100","GW","false","" +"NM-07673","","","235855","3609340","GW","false","" +"AB-0085","S097","","354459","3879820","GW","true","" +"NM-13434","","","551357","3690640","GW","false","" +"MI-0020","","","442681","3904526","GW","true","Topographic situation: Mesa" +"NM-20350","","","600621","3842580","GW","false","" +"NM-03095","","","655914","3806620","GW","false","" +"SD-0285","11N.6E.33.222","","381756","3889440","GW","true","" +"NM-25739","","","400109","3993670","GW","false","" +"NM-13691","","","542659","3693800","GW","false","" +"NM-07447","","","225779","3605480","GW","false","" +"NM-06062","","","329427","3575260","GW","false","" +"NM-06527","","","366461","3584190","GW","false","" +"NM-20618","","","394955","3849310","GW","false","" +"NM-11187","","","658778","3655290","GW","false","" +"NM-13890","","","634104","3696230","GW","false","" +"NM-22513","","","600277","3887710","GW","false","" +"NM-20152","","","612363","3839300","GW","false","" +"SB-0282","TWDB 4807425","","479628","3534791","GW","false","" +"NM-19991","","","397907","3835790","GW","false","" +"NM-01774","","","229302","3520950","GW","false","" +"NM-26954","","","356150","3964010","GW","true","" +"NM-20116","","","156263","3844090","GW","false","" +"NM-26351","","","475799","4049980","GW","false","" +"NM-03336","","","348614","3877330","GW","false","" +"NM-08086","","","581340","3612370","GW","false","" +"NM-24219","","","476803","3930810","GW","false","" +"NM-10346","","","551042","3641950","GW","false","" +"NM-20499","","","402014","3846220","GW","false","" +"TB-0139","","","408802","3629621","GW","false","Hwy 54 south of Alamogordo, East on Taylor Ranch Rd. Well in concrete housing on N side of road. Locked and barb wire fence." +"TS-044","","","435648","4041158","SP","true","Marsh zone on east side." +"NM-07968","","","202465","3614570","GW","false","" +"NM-27798","","","661954","3800510","GW","false","" +"NM-22137","","","362253","3884140","GW","false","" +"NM-17323","","","651400","3786390","GW","false","" +"NM-05810","","","605969","3570010","GW","false","" +"QY-0141","11.28.25.124","","597954","3890820","GW","true","" +"SO-0011","1N4E10.12","","360709","3799830","GW","true","" +"NM-07573","","","217553","3608270","GW","false","" +"NM-22245","","","345079","3885610","GW","false","" +"BW-0175","14S9E12.332","","402668","3663710","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06351","","","579484","3580360","GW","false","" +"NM-28013","","","357665","3881530","GW","false","" +"NM-27909","","","564390","3825560","GW","false","" +"WL-0256","","","667627","4050897","GW","false","From the jxn of 1st and Main in Clayton, NM, drive east on Main St (Hwy 412) for 3.3 miles, then turn left (north) on Hwy 406 for 8.6 miles, turn right (east) onto Alope Rd (CR 80) cross cattle guard, then immediately turn north (left) on 2 track. Drive 0.1 mile, go through wire gate, continue on 2 track for another ยผ mile to well. Well is at the end of 3-pole powerline." +"NM-09715","","","561412","3632770","GW","false","" +"NM-13781","","","474710","3694780","GW","false","" +"NM-01507","","","596815","3960150","GW","false","" +"QY-0850","8.28.12.332","","597403","3865420","GW","true","" +"NM-07594","","","656419","3605840","GW","false","" +"NM-25059","","","408861","3952220","GW","false","" +"SB-0600","TWDB 4863601","","487096","3438568","GW","false","" +"NM-16019","","","328079","3757410","GW","false","" +"DE-0230","","","639520","3629547","GW","false","" +"NM-24956","","","411538","3948440","GW","false","" +"NM-26188","","","473896","4028730","GW","false","" +"NM-23100","","","350829","3896430","GW","false","" +"DA-0198","20S3E18.211","","343049","3605380","GW","true","" +"NM-04807","","","242089","3558130","GW","false","" +"NM-26559","","","586920","4067030","GW","false","" +"NM-03081","","","649834","3803460","GW","false","" +"NM-07955","","","628917","3610780","GW","false","" +"NM-21296","","","380776","3869300","GW","false","" +"NM-25274","","","250934","3968730","GW","false","" +"SB-0566","TWDB 4854901","","473868","3446505","GW","false","" +"TO-0335","8N6E15.221","","381772","3865630","GW","true","" +"NM-25278","","","222953","3969750","GW","false","" +"NM-12018","","","292302","3669150","GW","false","" +"NM-21327","","","669222","3871260","GW","false","" +"NM-12997","","","525477","3684130","GW","false","" +"HS-073","TC-073","","290792","3667664","GW","true","There are four wells in this area. Dirt road on southeast side of Rio Grande (see map). We are at well under old windmill structure. (Other wells in area: River Well 3 inside fence, River Well 2 inside shed, capped/welded well in field near River Well 2)." +"TO-0411","9N8E28.244","","400875","3870900","GW","true","" +"ED-0082","20S30E33.44","","596670","3599030","GW","true","" +"NM-13870","","","544176","3695310","GW","false","" +"NM-06072","","","232585","3577640","GW","false","" +"NM-08002","","","232148","3614160","GW","false","" +"DA-0065","22S3E1.131","","349936","3588820","GW","true","" +"BW-0919","2.10.20.25.243","","520921","3880140","SP","true","" +"NM-13234","","","559282","3688000","GW","false","" +"NM-01102","","","564290","3853800","GW","false","" +"NM-24954","","","406007","3948460","GW","false","" +"NM-15202","","","192242","3739520","GW","false","" +"NM-15511","","","676633","3744460","GW","false","" +"NM-16993","","","645283","3781370","GW","false","" +"NM-12092","","","629422","3669400","GW","false","" +"NM-15271","","","210686","3741230","GW","false","" +"NM-23444","","","439396","3904120","GW","false","" +"NM-25272","","","150593","3972000","GW","false","" +"NM-06988","","","568556","3592170","GW","false","" +"NM-01073","","","531947","3844220","GW","false","" +"QY-0337","11.34.15.111","","652126","3894830","GW","true","" +"NM-13122","","","559887","3686400","GW","false","" +"NM-08247","","","581893","3614550","GW","false","" +"SA-0486","4S8W14.320","","256332","3760660","GW","true","" +"NM-25292","","","224224","3970200","GW","false","" +"UC-0208","","","651913","4067512","GW","false","" +"NM-25502","","","477576","3977570","GW","false","" +"UC-0164","","","617201","4093743","GW","false","" +"SA-0109","","","250928","3715353","GW","true","SA-0109 Cupit Knisley WM: From Hwy 60 take County Rd. 52 (By the VLA) south past MM 45 to the Cupit Ranch HQ on the west side of the road. Turn to the west just south of the buildings and bear to the southwest through the two gates, through the equipment yard. Head west and take the right fork over the ridge and thru the metal gate to the west down into Knisley canyon. Stay west past the windmill on the west (right) side of road and continue southwest for 2 miles along the Knisley Creek through the gate to the windmill to the west." +"NM-13241","","","548242","3688060","GW","false","" +"TV-274","","","446187","4026767","GW","true","" +"NM-17568","","","567583","3789360","GW","false","" +"NM-05449","","","669603","3566500","GW","false","" +"NM-21870","","","368013","3881370","GW","false","" +"QY-0294","11.32.11.111","","634396","3896240","GW","true","" +"NM-02542","","","276896","3619560","GW","false","" +"NM-25002","","","415044","3949640","GW","false","" +"NM-25125","","","474908","3955550","GW","false","" +"NM-28429","S-2017-010","","621131","3589375","GW","true","" +"NM-26096","","","474668","4020250","GW","false","" +"NM-07357","","","233557","3603390","GW","false","" +"QY-0821","7.32.29.222","","630915","3852550","GW","true","" +"NM-11334","","","617462","3657700","GW","false","" +"NM-22489","","","648955","3888100","GW","false","" +"NM-26225","","","312671","4033740","GW","false","" +"NM-04202","","","241561","3541440","GW","false","" +"NM-03998","","","253070","3528420","GW","false","" +"NM-12927","","","654502","3684310","GW","false","" +"NM-05550","","","238423","3569540","GW","false","" +"NM-24043","","","404502","3925310","GW","false","" +"NM-20988","","","552279","3858040","GW","false","" +"NM-08144","","","305991","3614910","GW","false","" +"NM-25828","","","478629","3998490","GW","false","" +"NM-08031","","","551098","3611030","GW","false","" +"NM-17143","","","679493","3784730","GW","false","" +"NM-06675","","","360255","3587170","GW","false","" +"SM-3020","","","509664","3615051","S","true","Site visited and sampled by Jeremiah Morse" +"NM-26776","","","404566","3849550","GW","false","" +"NM-26260","","","185833","4042080","GW","false","" +"NM-14763","","","547063","3717840","GW","false","" +"NM-24545","","","411045","3939420","GW","false","" +"NM-11042","","","409953","3651250","GW","false","" +"NM-15249","","","404106","3736710","GW","false","" +"EB-672","","","401499","3939441","GW","true","" +"NM-05186","","","238461","3563930","GW","false","" +"SO-0126","BRN-E01B","","327331","3764068","GW","true","Gate combo to Brown Arroyo transect is 7218." +"SM-0106","","","450284","3619928","GW","true","" +"NM-04767","","","234047","3557540","GW","false","" +"NM-14925","","","148588","3730260","GW","false","" +"NM-14923","","","544716","3723590","GW","false","" +"NM-24205","","","207647","3935220","GW","false","" +"NM-03708","","","162042","3486940","GW","false","" +"NM-26314","","","151705","4051080","GW","false","" +"NM-22600","","","375010","3889030","GW","false","" +"NM-13956","","","543968","3695620","GW","false","" +"WL-0341","","","398573","3939850","GW","false","NAV system gets you to residence + +Well is located at end of driveway and east of house" +"EB-607","","","405006","3936039","GW","true","Hwy 14 South to State Penn; turn east past County Jail and Admin Bldg; adjacent to fenceline, SE of Admin Bldg parking lot" +"NM-21852","","","348824","3881620","GW","false","" +"NM-25752","","","400291","3994320","GW","false","" +"NM-18218","","","669087","3803640","GW","false","" +"AH-032","HM-24","","437881","4042022","GW","true","" +"QU-514","","","440701","4059097","SP","true","Along Red River downstream from fish hatchery." +"NM-10050","","","405176","3637590","GW","false","" +"WL-0112","","","441457","4050332","GW","true","From intersection of Hwy 522 & 64 on north side of Taos, drive north 11 miles. Ignore first road to San Cristobal (sign to D.H. Lawrence ranch) and turn right (east) on 2nd San Cristobal Rd (B0009). Turn right (east) on B-0009 and drive 0.42 miles to 3 dirt roads on right (south) side. Left (east) side of road is driveway to owners home. Well is in side yard, outside garage." +"NM-07323","","","222367","3602990","GW","false","" +"JM-502","","","309551","3672347","L","true","From Engle, take SR51 west 0.7 miles. Southern tip of playa enters road." +"NM-03107","","","615757","3808480","GW","false","" +"NM-08178","","","560723","3613580","GW","false","" +"NM-08679","","","206443","3625550","GW","false","" +"TV-235","","","445894","4021455","GW","true","In Talpa, near refrigerator graveyard just east of Tplq hill. Big house w/red room on Talpa ridge. Gate code=3369. Thru first gate on right after forking onto country road and crossing stream with willows. Up hill to west; north downhill thru electric fence. Well in house area/gated." +"NM-19475","","","566317","3826930","GW","false","" +"NM-07330","","","562245","3599420","GW","false","" +"NM-09238","","","638567","3629020","GW","false","" +"WL-0134","","","322954","3767622","GW","true","Take Hwy 60 west out of Socorro. Turn right on Enterprise Road by Arc of Socorro veterinary clinic. Well is at end of road on left side. Well located in the open, to west of active well in block well house." +"NM-26319","","","600919","4045090","GW","false","" +"NM-22411","","","644412","3887230","GW","false","" +"NM-23648","","","370079","3910520","GW","false","" +"NM-24994","","","673600","3950470","GW","false","" +"NM-06917","","","218076","3594380","GW","false","" +"NM-12378","","","555516","3672980","GW","false","" +"NM-11046","","","559715","3651080","GW","false","" +"NM-25663","","","393996","3986690","GW","false","" +"BC-0344","343","","376151","3892739","GW","true","" +"NM-11279","","","655509","3656840","GW","false","" +"NM-05295","","","244665","3565620","GW","false","" +"NM-23902","","","459747","3918640","GW","false","" +"NM-18446","","","657726","3806770","GW","false","" +"NM-07019","","","344044","3593700","GW","false","" +"SB-0766","TWDB 4924426","","395150","3507346","GW","false","" +"NM-13041","","","560644","3685270","GW","false","" +"NM-13707","","","664356","3695310","GW","false","" +"NM-07999","","","669669","3611970","GW","false","" +"NM-08335","","","125978","3622760","GW","false","" +"SB-0243","TWDB 4807220","","482126","3537095","GW","false","" +"NM-03700","","","166999","3482920","GW","false","" +"NM-13612","","","619970","3694140","GW","false","" +"NM-12088","","","654294","3669700","GW","false","" +"UC-0083","","","611799","4057446","GW","true","Start in Clayton, NM at the intersection of US 56 / US 64 / US 412 and US 87. +Start/0.0 mi From the intersection of US 56 / US 64 / US 412 and US 87, proceed Northwest on US 64 / US 87 35.45 miles to dirt road on the right/Northeast. Dirt road is 8.7 miles west of Grenville. +35.45 mi From the intersection of US 64 / US 87 and the dirt road, turn right/Northeas, go thru gate and proceed 0.25 miles to the well. Well described by USGS at this location is a dry hole. Measured well is active windmill." +"NM-08428","","","677028","3618850","GW","false","" +"QY-0440","13.34.17.444","","650177","3912820","GW","true","" +"NM-19789","","","614198","3832910","GW","false","" +"NM-12791","","","561321","3680440","GW","false","" +"NM-20037","","","602645","3836690","GW","false","" +"NM-01607","","","317132","4013660","GW","false","" +"NM-17418","","","642086","3787790","GW","false","" +"WL-0064","NM3514127","","259430","3645382","GW","true","Going west on Hwy 152 from I-25, after entering Hillsboro, go right (north) on 5th Street (aka Lonnie Rubio Blvd) to well house on left, after residence on the corner. Wells are in chain link fence area west of the well house. Well 3 is first well west of well house closest to entrance." +"SD-0067","8N.7E.27.433","","391488","3863710","GW","true","" +"NM-08153","","","562236","3613310","GW","false","" +"NM-16669","","","642153","3776570","GW","false","" +"NM-14824","","","574053","3720600","GW","false","" +"TV-509","","","445864","4020595","SP","true","" +"NM-00287","","","659765","3626150","GW","false","" +"NM-08776","","","202289","3626970","GW","false","" +"NM-22294","","","376612","3885600","GW","false","" +"NM-10369","","","218968","3646160","GW","false","" +"PC-005","PW-017","","369152","3908096","GW","true","" +"NM-21846","","","348636","3881580","GW","false","" +"SA-0212","","","253770","3726587","GW","true","From Hwy 60 at VLA head south on Hwy 52. Past red barn and house (HQ) at MM 53, 0.5 Mi south. Just past cattle guard. Go through pipe gate (locked, call owner) on east side. East 0.5 mi look for wellhead on left by old corrals north of tower." +"PP-067","PW-72","","438710","4002961","GW","true","" +"NM-16259","","","324908","3766200","GW","false","" +"NM-04313","","","130626","3549290","GW","false","" +"BW-0426","18S8E12.113","","398526","3626200","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02113","","","177826","3563970","GW","false","" +"NM-12013","","","673832","3668430","GW","false","" +"ED-0161","22S23E31.443","","534528","3578400","GW","true","" +"NM-14587","","","452851","3709890","GW","false","" +"SB-0545","TWDB 4853803","","457901","3446064","GW","false","" +"NM-13665","","","547544","3693510","GW","false","" +"NM-24437","","","438612","3937180","GW","false","" +"NM-02066","","","234850","3559180","GW","false","" +"NM-18936","","","676928","3815990","GW","false","" +"NM-15444","","","660406","3742880","GW","false","" +"SM-0050","","","436868","3645647","GW","true","Hyw 82, turn South on Young Canyon Road between mi 21 and 22, head southward on main road. Owner will likely meet you. Need 4WD. Turn L onto Big Dipper. Turn L on well access road after ~1mi. Well is down in valley at end of road." +"NM-06017","","","244851","3576090","GW","false","" +"SD-0396","13N.5E.14.331","","373754","3912790","SP","true","" +"NM-14621","","","663665","3713200","GW","false","" +"SB-0829","","","472864","3591597","GW","false","" +"NM-07763","","","676451","3608830","GW","false","" +"NM-05906","","","253982","3573680","GW","false","" +"NM-01986","","","345330","3549130","GW","false","" +"NM-15100","","","595465","3731140","GW","false","" +"NM-07685","","","663410","3607370","GW","false","" +"DE-0200","","","611768","3599873","GW","false","" +"NM-12720","","","658332","3681100","GW","false","" +"NM-20437","","","554774","3844200","GW","false","" +"NM-20575","","","677282","3849410","GW","false","" +"NM-28342","148659","","169847","3629560","SP","false","Gila National Forest" +"NM-19363","","","614952","3825500","GW","false","" +"NM-10018","","","620381","3637530","GW","false","" +"NM-11447","","","656133","3660030","GW","false","" +"NM-19684","","","130940","3837850","GW","false","" +"NM-07577","","","216095","3608400","GW","false","" +"NM-22993","","","354313","3894430","GW","false","" +"NM-09665","","","678838","3634040","GW","false","" +"NM-07458","","","558915","3602200","GW","false","" +"NM-17407","","","595594","3786980","GW","false","" +"NM-25886","","","579677","4002310","GW","false","" +"SD-0051","8N.6E.10.244","","382159","3866630","GW","true","" +"QY-0158","11.29.19.341","","599418","3891320","GW","true","" +"AH-062","AH-16","","438927","4044720","GW","true","" +"BW-0021","22S4E13.311","","359395","3585020","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18295","","","550293","3802990","GW","false","" +"AR-0063","","","235309","4083430","GW","true","**SPECIAL NOTE ON ACCESS** Take these directions to house. From Aztec take Hwy 550 toward Cedar Hill. Turn left onto Rd 2896 follow thru sharp turn to left. Go past Rd 2894. Between Rd 2894 and Rd 2895, take road across vacant lot to house. Well is between camper trailer and small wishing well on NE corner of lot near blocked driveway off of Rd. 2894." +"NM-25381","","","402946","3972010","GW","false","" +"NM-05287","","","244977","3565520","GW","false","" +"HS-082","TC-082","","289528","3667839","GW","true","In block 2 in Hot Springs, NM" +"SR-0019","","","159433","3704010","SP","true","Gila N.F.; from Willow Cr. C.G. west 3.3 mi on NM-159, right onto Bearwallow Fire Rd 4.8 mi, park at saddle, descend left draw to seep or onto Bear Canyon Spring" +"NM-07915","","","243280","3612880","GW","false","" +"NM-01620","","","284799","4021190","GW","false","" +"NM-25911","","","437994","4003090","GW","false","" +"NM-20414","","","632369","3844520","GW","false","" +"NM-27178","","","214987","4002400","ES","true","" +"NM-02736","","","564802","3658870","GW","false","" +"NM-24240","","","412884","3931820","GW","false","" +"TO-0229","6N8E16.222","","399713","3846100","GW","true","" +"NM-08504","","","192219","3623360","GW","false","" +"NM-27136","COS-02","","443957","4090940","GW","false","" +"NM-06686","","","570082","3586690","GW","false","" +"NM-00577","","","406221","3659260","GW","false","" +"NM-00863","","","377935","3752180","GW","false","" +"NM-18532","","","527957","3806990","GW","false","" +"NM-07446","","","226767","3605330","GW","false","" +"TC-447","","","447574","4078326","GW","true","Head N on Hwy 522 past Cerro. Well is located on left side of the Hwy, about 2.5 miles past the runway strip." +"SA-0053","SA-53_R00","","213052","3755730","GW","true","From Datil, take Hwy 12 south past mile marker 66. Take dirt road to left toward Farr Ranch HQ. Go 3 miles, take 2-track to right, go 1 miles to windmill." +"NM-22962","","","391234","3892710","GW","false","" +"SD-0316","12N.5E.9.242","","371161","3905300","GW","true","" +"NM-20763","","","271092","3855050","GW","false","" +"NM-21372","","","610244","3871530","GW","false","" +"NM-08824","","","237330","3626630","GW","false","" +"NM-23081","","","616352","3895510","GW","false","" +"NM-21829","","","366871","3881230","GW","false","" +"NM-02820","","","548567","3695460","GW","false","" +"SM-0216","","","478559","3667718","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Gate is locked (combo 9977). Cross yard to east, go through gate, and take faint and rough 2-track approximately 0.7 miles, and descend into Chivo Canyon. In bottom of canyon, take 2-track to left, and follow rough 2-track down Chivo Canyon approximately 2 miles." +"NM-05190","","","678348","3562190","GW","false","" +"NM-24384","","","399179","3936060","GW","false","" +"NM-16187","","","669868","3763170","GW","false","" +"NM-16593","","","653392","3775730","GW","false","" +"NM-22768","","","378730","3890860","GW","false","" +"HS-504","TC-504","","290082","3667645","PS","true","Logger hanging from post of deck at River Bend into the Rio Grande" +"NM-23223","","","318884","3899380","GW","false","" +"NM-12642","","","665683","3679650","GW","false","" +"NM-15921","","","669122","3754650","GW","false","" +"AB-0048","S054","","345776","3819810","GW","true","" +"NM-19877","","","638818","3835160","GW","false","" +"NM-26085","","","627622","4020230","GW","false","" +"NM-19433","","","238372","3829560","GW","false","" +"NM-26531","","","675828","4066240","GW","false","" +"NM-27414","","","140934","3658570","GW","false","" +"SM-0231","","","472108","3653950","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles. At the junction with the Lincoln canyon road at 14.9 miles, continue on the Felix Canyon road, re-crossing the Rio Felix. Follow this road as it passes close to an unnamed ranch headquaters, and terminates at the Vanderwart's gate. Gate is electric, and is opened by pushing the button (it will close automatically behind you). Jane's well is located some 3.5 miles up canyon, past Vanderwart Headquaters (on hill to right) and Teel well (on left). House with occupant (Jane?) can be seen from well." +"NM-11321","","","657052","3657700","GW","false","" +"RA-064","","","418315","4007074","GW","true","" +"NM-01787","M-005","","232499","3522370","GW","false","" +"NM-11753","","","402473","3663850","GW","false","" +"NM-27514","","","173212","3765650","GW","false","" +"NM-27502","","","584187","3740300","GW","false","" +"NM-08735","","","409770","3622580","GW","false","" +"BW-0178","14S9E15.211","","400205","3663350","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0059","SA-59_R00","","193384","3749620","GW","true","From SR12 @ milemarker 40, turn south and go 5.5 miles. House to right on hillslope. WM is about 100 yards N of residence. Large metal storage tank ~25 yards E of WM. Corrals about 40 yards N of WM." +"NM-18915","","","654234","3814760","GW","false","" +"MI-0238","","","485917","3953436","GW","true","Topographic situation: North slope of hill" +"TS-077","","","437080","4081230","SP","true","Spring 3 at Cow Patty west, west side of the river" +"NM-09585","","","641613","3632540","GW","false","" +"TS-016c","","","438442","4059852","SP","true","East side of river. Southern-most spring zone in N Big Arsenic zone. Discharge point high on slope, ~25 ft. above trail & TS-016b." +"NM-26099","","","331427","4022010","GW","false","" +"NM-18882","","","664109","3814930","GW","false","" +"NM-25000","","","437363","3949360","GW","false","" +"NM-23363","03 Ojo Chimal","","379991","3901208","GW","true","03 Ojo Chimal; Unit 3 Lot 146" +"NM-15051","","","586394","3729360","GW","false","" +"NM-28042","","","379697","3886360","GW","false","" +"NM-04659","","","241977","3555760","GW","false","" +"NM-01113","","","142343","3862430","GW","false","" +"NM-22172","","","191930","3888650","GW","false","" +"NM-21195","","","657412","3867630","GW","false","" +"NM-00699","","","451785","3692980","GW","false","" +"NM-26555","","","589602","4066750","GW","false","" +"NM-13652","","","548681","3693430","GW","false","" +"NM-25223","","","417457","3963080","GW","false","" +"NM-11177","","","566833","3653840","GW","false","" +"NM-10804","","","276005","3650370","GW","false","" +"NM-28248","","","440408","4077240","GW","false","" +"NM-00181","","","579992","3573650","GW","false","" +"NM-17240","","","652824","3785430","GW","false","" +"UC-0086","","","604941","4055340","GW","true","From major intersection in Capulin NM (NM-324 and US 64 / NM-87) proceed East on US 64 / NM-87 about 16.0 mles +16.0 mi Turn south a Griffin Ranch sign on Gallegos Road. Well is 4.1 miles on left side. Entire inside of casing may be wet. Tape may hang at 248 feet." +"QY-0675","6.28.21.132","","592925","3843620","GW","true","" +"SA-0329","","","241372","3707408","GW","true","" +"NM-25197","","","180779","3966910","GW","false","" +"DE-0333","","","674446","3589772","GW","false","" +"NM-03539","","","631359","3960340","GW","false","" +"NM-14913","","","566947","3723380","GW","false","" +"NM-02310","","","156677","3581020","GW","false","" +"SB-0071","TWDB 4717220","","507814","3512451","GW","false","" +"NM-18883","","","620557","3813920","GW","false","" +"NM-06564","","","360070","3585080","GW","false","" +"NM-05762","","","247359","3571680","GW","false","" +"BW-0741","4.21.30.31.300","","601092","3588850","GW","true","" +"NM-25400","","","483278","3972010","GW","false","" +"NM-12231","","","628717","3671730","GW","false","" +"NM-10156","","","220328","3642760","GW","false","" +"BW-0411","17S10E19.323","","410455","3630430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01869","M-023/M-024","","251225","3534750","GW","false","" +"NM-12420","","","291925","3675780","GW","false","" +"JM-051","","","298203","3645782","GW","true","" +"NM-17010","","","643453","3782080","GW","false","" +"NM-02894","","","658897","3728470","GW","false","" +"SA-0508","8S11W5.242","","222763","3727350","GW","true","" +"SD-0080","9N.6E.12.332","","385318","3875400","GW","true","" +"NM-19405","","","629211","3826550","GW","false","" +"TO-0389","9N6E23.222","","384662","3873440","GW","true","" +"NM-22730","","","375561","3890480","GW","false","" +"NM-19107","","","672750","3819670","GW","false","" +"NM-22920","","","658686","3893480","GW","false","" +"NM-13954","","","544149","3695620","GW","false","" +"NM-16675","","","666698","3776980","GW","false","" +"QY-0509","16.36.15.441","","672267","3942370","GW","true","" +"NM-00899","","","299507","3789670","GW","false","" +"NM-05932","","","252232","3573870","GW","false","" +"NM-00072","","","480943","3548040","GW","false","" +"NM-04637","","","548620","3552200","GW","false","" +"SA-0483","5S15W36.300","","189078","3747840","SP","true","" +"TO-0285","7N8E10.244","","401398","3856770","GW","true","" +"NM-05113","","","263948","3561970","GW","false","" +"NM-05301","","","281944","3565050","GW","false","" +"NM-21664","","","381811","3878680","GW","false","" +"NM-10714","","","545333","3646350","GW","false","" +"ED-0383","26S23E29.332","","535072","3541620","SP","true","" +"QY-0502","16.34.6.444","","648096","3945040","GW","true","" +"NM-10488","","","664758","3645380","GW","false","" +"NM-08193","","","620966","3614500","GW","false","" +"BW-0746","1.12.10.23.233a","","239786","3905200","GW","true","" +"NM-00593","","","657100","3663320","GW","false","" +"NM-20466","","","555304","3844820","GW","false","" +"NM-21357","","","379104","3871450","GW","false","" +"EB-226","SF-9","","411497","3945745","GW","true","1995 Siringo Rd; center of back yard, gate left/east of house; dog" +"NM-19238","","","673578","3823170","GW","false","" +"NM-19957","","","446955","3835540","GW","false","" +"SB-0390","TWDB 4808103","","489424","3537886","GW","false","" +"NM-22284","","","373670","3885540","GW","false","" +"NM-24334","","","405889","3934910","GW","false","" +"NM-00853","","","573505","3741510","GW","false","" +"PC-140","PS-16","","373661","3913118","SP","true","" +"NM-22641","","","381647","3889470","GW","false","" +"NM-20980","","","557892","3857950","GW","false","" +"TS-034a","","","436838","4043387","SP","true","West end of large seep zone along Rio Hondo (east side of Rio Grande)." +"NM-06144","","","311544","3577490","GW","false","" +"NM-28386","N-2016-078","","553775","3618986","GW","true","" +"NM-21674","","","271334","3880940","GW","false","" +"NM-14125","","","545999","3697690","GW","false","" +"NM-04251","","","260481","3542730","GW","false","" +"NM-14025","","","270374","3699140","GW","false","" +"NM-13901","","","554819","3695490","GW","false","" +"WL-0255","","","596515","4078153","GW","true","Drive to Folsom, New Mexico. The address for the well is 80 Main Street, which is Highway 325. The town has very few streets, Main Street is easy to find. Well is in yard behind house." +"NM-23752","","","390222","3913950","GW","false","" +"NM-21382","","","350712","3872360","GW","false","" +"QY-0813","7.32.17.221","","630699","3855810","GW","true","" +"NM-02386","","","570259","3583800","GW","false","" +"NM-26220","","","323689","4032800","GW","false","" +"NM-23943","","","650836","3920960","GW","false","" +"NM-16020","","","633003","3756660","GW","false","" +"TC-247","","","412039","4065328","GW","true","" +"NM-20638","","","599576","3849810","GW","false","" +"NM-26561","","","585705","4067050","GW","false","" +"CX-0184","26N25E12.3","","568292","4039470","SP","true","(west spring)" +"AR-0167","D015","","238547","4087600","GW","true","From Hwy 550 in Cedar Hill, take Rd 2900 west. Turn left onto Rd 2633 and proceed to address on left down dirt Rd." +"WL-0036","","","364401","3899703","GW","true","From I-25 North, take Tramway exit to east, drive about 4 miles and watch for FS Rd 333 on left (north) side of Tramway; drive north on FS Rd 333. The road winds around a lot. Stay on the main road, do NOT turn toward the La Luz trailhead; main road becomes dirt. Look for Canoncito Road on the north (right) side of the main road about 2.9 miles from Tramway driveway. Stay on Canoncito Road (winds around a lot), which ends at the Gaume residence (well on left as you pull into driveway). The address 44 Canoncito Rd NE. Helps to have GPS with address programmed." +"NM-17049","","","574141","3781740","GW","false","" +"NM-20942","","","674381","3858850","GW","false","" +"NM-16822","","","676305","3779930","GW","false","" +"NM-00363","","","654343","3627030","GW","false","" +"TB-1046","","","431450","3712426","ES","true","From Hwy 37 north of Nogal through gateway to east. From trailer find road to east that runs on east side of creek to north. Sampled at creek crossing." +"NM-20726","","","607936","3852150","GW","false","" +"NM-25169","","","186508","3964670","GW","false","" +"NM-27816","","","656848","3804430","GW","false","" +"NM-20912","","","634577","3856970","GW","false","" +"BC-0311","267","","380078","3873300","GW","true","" +"NM-04076","","","220427","3535400","GW","false","" +"NM-08352","","","663763","3617610","GW","false","" +"NM-01030","","","597482","3832600","GW","false","" +"NM-26076","","","320022","4020570","GW","false","" +"ED-0169","22S25E8.441","","555401","3585220","GW","true","" +"NM-26490","","","581677","4062910","GW","false","" +"NM-12721","","","656270","3680580","GW","false","" +"NM-05805","","","236386","3572830","GW","false","" +"NM-01696","","","306211","4065420","GW","false","" +"NM-00291","","","664302","3609440","GW","false","" +"NM-02505","","","546012","3612020","GW","false","" +"NM-14788","","","443077","3718970","GW","false","" +"NM-04468","","","546596","3547790","GW","false","" +"NM-11228","","","557462","3654670","GW","false","" +"NM-07181","","","633877","3596610","GW","false","" +"NM-21354","","","633144","3871620","GW","false","" +"NM-07102","","","210460","3598670","GW","false","" +"NM-11097","","","664489","3653660","GW","false","" +"RA-037","","","359755","4084460","GW","true","Under Barrel in front of house." +"SD-0360","10N.4E.13.242","","366631","3884740","SP","true","" +"NM-21533","","","397724","3876460","GW","false","" +"NM-16505","","","312374","3773900","GW","false","" +"NM-01531","","","585217","3969610","GW","false","" +"NM-06765","","","671254","3589510","GW","false","" +"NM-14080","","","616568","3697670","GW","false","" +"PC-137","PS-13","","373342","3913540","SP","true","" +"NM-14218","","","249560","3702150","GW","false","" +"RA-073","","","393661","4022219","GW","true","In the adjacent field." +"NM-26328","","","416221","4045730","GW","false","" +"MI-0266","","","570883","3952401","GW","true","Topographic situation: Plains" +"NM-14134","","","471542","3697810","GW","false","" +"NM-16254","","","322590","3766010","GW","false","" +"NM-20784","","","676259","3855000","GW","false","" +"NM-25200","","","594178","3961840","GW","false","" +"NM-16830","","","656734","3779700","GW","false","" +"WL-0267","","","345684","3572711","GW","true","From I-25 in Las Cruces, take Exit 1 for E. University Ave. Turn left on E. University towards Organ Mtns, which turns into Dripping Springs Rd. Follow for ~3.7 miles, go right on Soledad Canyon Rd, drive 0.5 miles, turn left to stay on Soledad Canyon Rd. for another 1.5 mi. Turn right on Lost Padre Mine Rd for 1.0 mi to address on left. Well is behind house to east ~60 ft under 55 gallon drum." +"NM-07544","","","606465","3604480","GW","false","" +"SM-1053","","","422750","3633345","SP","true","" +"NM-00492","","","422185","3645690","GW","false","" +"NM-08910","","","409085","3624580","GW","false","" +"NM-17164","","","651247","3784790","GW","false","" +"BW-0638","10S6E26","","379710","3697870","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05203","","","310926","3562590","GW","false","" +"EB-375","","","413797","3940385","GW","true","" +"NM-20998","","","406894","3858550","GW","false","" +"BW-0710","3.10.2.25.100","","313256","3698190","GW","true","" +"WL-0094","NM3524030","","400472","3846362","GW","true","From Rt 41 towards Estancia, go west on Williams Avenue in the town of Estancia. Go ~1.75 miles (road changes from paved to dirt) to split in road. There is a well house north of road and a well to the south. Go south to well in fenced area in secured steel cover. (The wellhouse to the north houses well #8)." +"NM-17824","","","677885","3796600","GW","false","" +"NM-25778","","","396584","3995960","GW","false","" +"NM-24091","","","646001","3928120","GW","false","" +"AR-0053","E005","NMED 4","234797","4082930","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2896. After sharp right turn in road, turn left on Rd 2892 to address on left. Well is in 4'x4' wood shed about 40' W of W side of mobile home." +"NM-12371","","","554713","3672920","GW","false","" +"NM-00281","","","663149","3605060","GW","false","" +"TB-1015","","","406629","3716393","SP","true","Between Mile 116-115 on hwy 54. On west side of road, thru gate at McDonald Ranch. Combo is 2912. Spring is NW of Lower willow spring." +"NM-07334","","","330564","3600720","GW","false","" +"AR-0211","","","240125","4087869","GW","true","Well house is to north of main house along river. Gate to house is locked. If owner not there, call and he will provide key pad #." +"NM-26029","","","318100","4015800","GW","false","" +"NM-19783","","","607094","3832790","GW","false","" +"NM-20838","","","620229","3854740","GW","false","" +"NM-07378","","","226126","3603870","GW","false","" +"NM-27884","","","569169","3816850","GW","false","" +"NM-07510","","","556848","3603390","GW","false","" +"NM-06186","","","248221","3579980","GW","false","" +"TO-0125","5N6E10.344","","381040","3837050","GW","true","" +"NM-03789","","","256950","3520070","GW","false","" +"NM-27319","","","603412","3587040","GW","false","" +"NM-10042","","","561696","3637200","GW","false","" +"NM-13653","","","548267","3693420","GW","false","" +"NM-01204","","","516943","3880880","GW","false","" +"NM-02440","","","213691","3599220","GW","false","" +"NM-02850","","","548700","3710090","GW","false","" +"NM-07790","","","185491","3612620","GW","false","" +"QY-0851","8.28.15.213","","594882","3864860","GW","true","" +"NM-07672","","","670844","3607310","GW","false","" +"NM-03777","","","172620","3520990","GW","false","" +"BW-0244","14S10E29.323","","406280","3659230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10284","","","655192","3642390","GW","false","" +"NM-24937","","","405424","3948070","GW","false","" +"NM-28250","Poe Corn","","544604","3719410","GW","true","" +"NM-01979","M-053","","232328","3550977","GW","false","From the intersection of CR34 and Hermanas rd, go south on Hermanas rd for 2.6 miles. Go south into fields beyond red gate for about 0.25 miles. Well located next to power poles." +"TO-0053","3N14E17.132","","453923","3816560","GW","true","" +"DA-0040","21S2E25.433","","341173","3591380","GW","true","" +"NM-09638","","","550002","3631870","GW","false","" +"TO-0166","5N8E17.212","","397283","3836420","GW","true","" +"EB-499","","","407194","3972212","ES","true","Rio Tesuque at State Hwy 4" +"NM-13625","","","477186","3692930","GW","false","" +"SD-0203","10N.6E.15.241","","383120","3884280","GW","true","" +"NM-06499","","","571675","3583070","GW","false","" +"NM-21110","","","674416","3864980","GW","false","" +"SA-0134","","","272014","3698189","GW","true","On I25 north of T or C take Exit 89, turn left (south) on SR 181, right on SR 52 heading NW, veer right on SR 142 all the way to Monticello. From the Plaza in Monticello head north to the end of town to the last house on the right before leaving the village (423 Calle del Norte). Right thru gate, follow driveway to the east around the curve, uphill toward pitched roof house w/dormers. Before house, look to left (west) to pine tree/fruit trees. Well is in bushes @ ground level north of fruit trees ~10 ft. Very hard to see!" +"NM-01142","","","668209","3864460","GW","false","" +"EB-543","","","415770","3946703","GW","true","" +"NM-27809","","","659395","3803490","GW","false","" +"NM-02311","","","155736","3581080","GW","false","" +"NM-12037","","","669851","3669250","GW","false","" +"SB-0154","TWDB 4735501","","529200","3476191","GW","false","" +"SB-0422","TWDB 4815104","","480134","3524691","GW","false","" +"NM-13010","","","560596","3684620","GW","false","" +"QY-0613","5.29.5.211","","601616","3839360","GW","true","" +"NM-06698","","","585099","3587060","GW","false","" +"EB-493","","","418999","3949504","ES","true","Santa Fe River downstream of Two Mile Reservoir" +"AR-0182","F001","","227505","4077030","GW","true","From Hwy 516 turn South onto Rd 350 and follow across river. Turn left onto Rd 3000, then turn left onto Rd 3284. Take right turn in Rd 3284 and follow to address on left." +"NM-00198","","","588403","3576770","GW","false","" +"NM-21630","","","360468","3878370","GW","false","" +"NM-15144","","","657261","3733960","GW","false","" +"NM-07738","","","598352","3607380","GW","false","" +"SB-0145","TWDB 4734603","","521617","3479066","GW","false","" +"NM-17969","","","572097","3797740","GW","false","" +"NM-04184","","","287020","3539650","GW","false","" +"NM-00271","","","677798","3598520","GW","false","" +"NM-17324","","","651400","3786390","GW","false","" +"NM-26917","PW-122","","368964","3907493","GW","true","" +"NM-14906","","","148450","3729340","GW","false","" +"NM-24618","","","342501","3942210","GW","false","" +"NM-10816","","","544469","3648070","GW","false","" +"NM-00192","","","583081","3575280","GW","false","" +"CX-0083","24N25E26.44","","567989","4015040","GW","true","" +"NM-09710","","","648536","3634000","GW","false","" +"NM-01758","","","169615","3499490","GW","false","" +"BW-0310","16S9E13.32","","408930","3643170","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04326","","","607321","3543630","GW","false","" +"NM-12533","","","627869","3677180","GW","false","" +"NM-28136","","","211453","3963820","GW","false","" +"TV-106","TW-63","","440432","4019553","GW","true","On Stakeout restaurant property, just south of restaurant." +"NM-21896","","","663574","3882040","GW","false","" +"NM-26168","","","312642","4027790","GW","false","" +"NM-17681","","","517161","3791010","GW","false","" +"NM-10964","","","274101","3652320","GW","false","" +"NM-19712","","","594503","3831360","GW","false","" +"NM-11222","","","610102","3655070","GW","false","" +"NM-27868","","","571501","3812090","GW","false","" +"NM-10553","","","641134","3646030","GW","false","" +"WL-0057","NM3510117","","217911","3911650","GW","true","Exit I-40 @ exit 63. Drive S on Hwy 412 ~5.8 mi to residential area. Drive past Bluewater Lake Water Assn bldg on S (left) side of road ~0.1 mi, turn N on Lori Drive (but no sign for Lori Dr). Look for fire dept. building on E side of road as marker. Follow Lori Drive which curves to the E ~0.2 mi. Well is on S side of road thru located gate, in yard south of green pump control house." +"NM-12269","","","679416","3673460","GW","false","" +"NM-01344","","","658117","3914270","GW","false","" +"SO-0029","2N3E34.33","","350919","3802110","GW","true","" +"NM-13885","","","625372","3696090","GW","false","" +"NM-08422","","","659346","3618490","GW","false","" +"EB-121","","","405692","3955377","GW","true","86A Headquarters Trail; 0.9 mi inside La Tierra Nueva gate; driveway on right at S end of circular drive" +"TV-128","LQ-15","","445068","4020094","GW","true","Ponce de Leon neighborhood" +"NM-07216","","","263094","3599190","GW","false","" +"BC-0426","429","","","","GW","false","" +"NM-06214","","","574879","3577490","GW","false","" +"WL-0237","","","385224","4008659","GW","true","From Espanola, drive north on Hwy 84 approx. 20 miles. Approx. 1.3 miles past turn to El Rito (Hwy 554) look for sign on the right w/numbers 20940 and turn right (north). House is last house at end of driveway. Well is in pit ~200 ft southwest of house. Owner is retired geologist and very cooperative, helpful and interested." +"NM-15093","","","395090","3731020","GW","false","" +"NM-21786","","","344797","3880960","GW","false","" +"NM-22766","","","379843","3890850","GW","false","" +"QY-0984","9.34.12.334","","655659","3875950","GW","true","" +"AH-047","PRIN","","437491","4042660","GW","true","" +"NM-15746","","","325881","3749590","GW","false","" +"UC-0231","","","575741","4048688","GW","false","" +"NM-04100","","","138424","3539320","GW","false","" +"NM-07797","","","676390","3609350","GW","false","" +"MG-040","","","294816","3770724","GW","true","Residence is in Hop Canyon, south of Mark Mansell and Hertz property. Look for ""Lucky Signs"" sign at gate. Veer to right at fork." +"NM-24673","","","412112","3942890","GW","false","" +"NM-12453","","","627891","3675510","GW","false","" +"NM-12660","","","553752","3678150","GW","false","" +"NM-24875","","","409307","3946610","GW","false","" +"DE-0108","","","672899","3616216","GW","false","" +"NM-23847","","","204989","3921140","GW","false","" +"NM-02712","","","548321","3651230","GW","false","" +"CP-0019","","","653884","3811556","GW","true","From Hwy 60 just north of Cannon AFB, take SR 311 north to W. Llano Estacado Rd. Go west 1/4 mile. Well on side of road, next to power pole.***From int of SR 311 and US 60, west of Clovis, drive 2 miles north on SR 311. Turn left west on CR12. Drive 0.3 miles west to well. Well is on S side of road." +"NM-11148","","","666681","3654530","GW","false","" +"NM-27199","","","403137","3792975","GW","false","" +"AR-0035","NMED 315","","214281","4067770","GW","true","Location between Animas and San Juan rivers. Heading east on Hwy 64 from Farmington, turn left on S. Butler Ave. after crossing Animas River. There is a small dog-leg in the road, but keep heading south towards river to address. Well NE of house." +"NM-28414","S-2016-046","","603234","3548161","GW","true","" +"NM-19377","","","625243","3825970","GW","false","" +"AR-0190","H001","NMED 15","236474","4085137","GW","true","From Aztec, take Hwy 550 north toward Cedar Hill ~3.5 miles to Rd 2800. Turn right (east) onto Rd 2800 (makes numerous turns) about 1.7 miles to address on right. Well is in vault behind well house." +"NM-08615","","","670933","3621820","GW","false","" +"NM-21975","","","419415","3881820","GW","false","" +"NM-00235","","","575086","3584730","GW","false","" +"NM-26885","PW-162","","363889","3907856","GW","true","" +"NM-07770","","","662763","3608660","GW","false","" +"NM-26335","","","204583","4050890","GW","false","" +"NM-07933","","","278687","3612180","GW","false","" +"NM-28183","","","254006","4016330","GW","false","" +"NM-15920","","","661061","3754290","GW","false","" +"NM-09982","","","652824","3637580","GW","false","" +"AR-0149","C004","NMED 272","227077","4077290","GW","true","From Farmington, take Hwy 516 toward Aztec. Turn right onto Rd 3050, then take left turn in Rd 3050. Turn right onto Rd 3333, then left onto 3334 and proceed to address near end of Rd on right." +"NM-01110","","","647147","3855490","GW","false","" +"DE-0147","","","614581","3631369","GW","false","" +"SD-0193","10N.6E.9.113","","380465","3886090","GW","true","" +"NM-21347","","","195446","3875480","GW","false","" +"NM-10479","","","298198","3645660","GW","false","" +"NM-27190","","","296180","3774540","L","true","" +"NM-07004","","","660059","3593550","GW","false","" +"NM-02177","","","334665","3565940","GW","false","" +"NM-24085","","","248134","3930130","GW","false","" +"NM-01546","","","463799","3979170","GW","false","" +"BW-0583","8S10E19.2","","412922","3718430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DA-0125","25S4E11.14","","357881","3558020","GW","true","" +"NM-02215","","","222338","3570670","GW","false","" +"NM-14553","","","649395","3710080","GW","false","" +"TC-396","","","442818","4070367","GW","true","" +"NM-05535","","","245460","3569110","GW","false","" +"GT-017","SWNM14-7","","234263","3627011","SP","true","" +"NM-04992","","","263020","3560390","GW","false","" +"NM-01236","","","160868","3896550","GW","false","" +"NM-24858","","","414683","3946100","GW","false","" +"NM-01427","","","227520","3940660","GW","false","" +"NM-06842","","","364063","3590480","GW","false","" +"NM-26409","","","225905","4063700","GW","false","" +"NM-03966","","","273862","3526680","GW","false","" +"TB-1066","","","425549","3695460","SP","true","Site visit by Fraser and Cathy Goff. NPW10-9" +"SA-0494","4S16W28.211","","175334","3760610","GW","true","" +"NM-01468","","","659924","3947310","GW","false","" +"NM-26569","","","578807","4067350","GW","false","" +"NM-07509","","","566314","3603450","GW","false","" +"SB-0673","TWDB 4915510","","388390","3520135","GW","false","" +"NM-16678","","","677844","3777150","GW","false","" +"TV-209","","","444721","4017534","GW","true","" +"NM-24035","","","142097","3931430","GW","false","" +"NM-17202","","","642287","3784680","GW","false","" +"NM-27757","","","600973","3784210","GW","false","" +"NM-02683","","","406259","3647650","GW","false","" +"MI-0100","","","530492","3917302","GW","true","Topographic situation: Plains" +"NM-24684","","","408189","3943050","GW","false","" +"NM-26011","","","405413","4012260","GW","false","" +"NM-05807","","","235183","3572890","GW","false","" +"WL-0346","","","433234","3933409","GW","true","Nav System gets you to residence. Gate code is 3142. High clearance vehicle recommended. Well is located on left side of driveway half way between road and house. Easily seen from driveway. " +"NM-20393","","","675850","3844450","GW","false","" +"NM-16549","","","415778","3773500","GW","false","" +"NM-13133","","","617517","3687520","GW","false","" +"NM-02339","","","328604","3579160","GW","false","" +"NM-24764","","","408432","3944710","GW","false","" +"BW-0109","9S8E22.311","","397602","3708460","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05471","","","262205","3568150","GW","false","" +"NM-02872","","","660251","3721430","GW","false","" +"NM-25007","","","665972","3950870","GW","false","" +"NM-00968","","","573334","3811350","GW","false","" +"QY-0144","11.28.28.441","","593850","3889670","GW","true","" +"NM-05256","","","229591","3565580","GW","false","" +"NM-10944","","","552871","3649720","GW","false","" +"ED-0281","23S27E4.331","","575151","3577130","GW","true","" +"NM-26133","","","156772","4029320","GW","false","" +"QY-0023","10.29.17.414","","601677","3883540","GW","true","" +"NM-02701","","","551265","3648970","GW","false","" +"AR-0037","NMED 388","","223013","4074270","GW","true","From Hwy 516, take Hwy 350 south towards Flora Vista. At intersection, make right on Rd 3000, make leftt on Rd 3665 up mesa, through three sharp turns to address at 97 Rd 3665. Home is where Robin Kelly's mother used to live. Robin lives next door. Well under windmill behind house. Robin's mother (Eleanor) used to live in this house." +"AB-0190","S241","","333540","3883480","GW","true","" +"NM-02975","","","224896","3771130","GW","false","" +"UC-0017","","","664361","4050139","GW","false","" +"NM-15169","","","672893","3735150","GW","false","" +"NM-05061","","","269622","3561320","GW","false","" +"NM-04309","","","682815","3544000","GW","false","" +"NM-24489","","","662033","3939340","GW","false","" +"NM-13970","","","543839","3695650","GW","false","" +"NM-00391","","","407413","3629610","GW","false","" +"NM-27397","","","191132","3635330","GW","false","" +"NM-09351","","","552565","3629140","GW","false","" +"SO-0092","1S3E6.13","","345768","3791520","GW","true","" +"NM-08134","","","306820","3614680","GW","false","" +"NM-25238","","","587780","3964020","GW","false","" +"NM-04894","","","675229","3557660","GW","false","" +"SV-0001","02 Arroyo Bonito","","378157","3900443","GW","false","Unit 3 Lot 168" +"NM-14005","","","544741","3696150","GW","false","" +"NM-06163","","","611988","3577000","GW","false","" +"NM-06885","","","643459","3591080","GW","false","" +"NM-00774","","","443358","3702050","GW","false","" +"AB-0185","S236","","333801","3890770","GW","true","" +"NM-26080","","","308382","4021190","GW","false","" +"NM-16188","","","651292","3762820","GW","false","" +"EB-322","","","403716","3938365","GW","true","West side of N.SanMateoWay, off end of ValleVistaBlvd; north side of house across from end of VVBlvd; through gate in yard; knock first" +"NM-00653","","","288948","3687860","GW","false","" +"BC-0429","432","","382909","3890110","GW","false","" +"NM-27947","","","550711","3843130","GW","false","" +"NM-03655","","","617751","4067120","GW","false","" +"NM-05179","","","674106","3562020","GW","false","" +"NM-12869","","","609843","3682440","GW","false","" +"SB-0485","TWDB 4831401","","477540","3491814","GW","false","" +"NM-15305","","","191751","3742840","GW","false","" +"EB-515","","","405505","3944156","GW","true","" +"NM-19710","","","270535","3833700","GW","false","" +"NM-03567","","","408013","3976980","GW","false","" +"NM-26534","","","250196","4068320","GW","false","" +"NM-10990","","","274447","3652650","GW","false","" +"NM-19976","","","396097","3835620","GW","false","" +"NM-26735","","","240875","4090110","GW","false","" +"NM-08255","","","233663","3618120","GW","false","" +"NM-21809","","","263982","3882980","GW","false","" +"NM-27960","","","405979","3851010","GW","false","" +"NM-25659","","","396496","3986410","GW","false","" +"NM-00973","","","643053","3814600","GW","false","" +"NM-24310","","","421694","3933990","GW","false","" +"NM-02122","","","167158","3565120","GW","false","" +"NM-22488","","","352919","3888040","GW","false","" +"NM-11608","","","400401","3661470","GW","false","" +"SD-0298","11N.7E.19.213","","387675","3892430","GW","true","" +"NM-21458","","","636558","3873980","GW","false","" +"NM-13449","","","472193","3690720","GW","false","" +"NM-03323","","","348503","3873690","GW","false","" +"NM-13856","","","136367","3701950","GW","false","" +"NM-19175","","","605146","3820420","GW","false","" +"NM-03108","","","570589","3807890","GW","false","" +"TS-130","","","424880","4011433","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"NM-10245","","","555804","3640460","GW","false","" +"BC-0019","10","","368412","3881650","GW","true","" +"NM-12846","","","650536","3683140","GW","false","" +"NM-08408","","","679558","3618740","GW","false","" +"NM-09862","","","622433","3635550","GW","false","" +"NM-24381","","","435631","3935660","GW","false","" +"NM-12482","","","638447","3676120","GW","false","" +"NM-14890","","","583336","3722860","GW","false","" +"NM-10825","","","546104","3648110","GW","false","" +"QU-108","","","449271","4066816","GW","true","Take Hwy 522 north out of Questa. Make right on Cabresto Road, then left on Llano Road. As you proceed, road does a left/right dog-leg. Go all the way to T and make left on Upper Llano Road (name?). #250 at 2.2 miles from cattleguard. Circular driveway. Well is south and slightly west of house in red shed." +"TS-091","","","437950","4055645","SP","true","Just below launch site at base of Cebolla Trail. Emerges from under rocks and sand, 20 cm above river on east side" +"NM-27566","","","668714","3793130","GW","false","" +"EB-203","","","403394","3925540","GW","true","#23 Pueblo Rd, off SanMarcos Rd" +"ED-0301","23S28E13.131","","589704","3574900","GW","true","" +"NM-24904","","","206352","3951770","GW","false","" +"NM-07100","","","636636","3595360","GW","false","" +"NM-03910","","","203513","3526160","GW","false","" +"NM-01199","","","624865","3880700","GW","false","" +"NM-19046","","","677698","3818440","GW","false","" +"NM-06369","","","365779","3581260","GW","false","" +"NM-10920","","","663680","3650780","GW","false","" +"NM-10439","","","551035","3643270","GW","false","" +"NM-23359","","","228940","3904380","GW","false","" +"NM-15115","","","615202","3731820","GW","false","" +"NM-25600","","","407376","3983110","GW","false","" +"NM-05135","","","675195","3561140","GW","false","" +"NM-02916","","","677665","3742910","GW","false","" +"NM-17197","","","683120","3785260","GW","false","" +"NM-24057","","","402617","3925760","GW","false","" +"SA-0161","","","249418","3724993","GW","true","From the town of Dusty, take 52 south for 2.9 miles. Look for gate to west (R). Gate Combo is 1920. Go through gate, cross the creek. At house and corral complex, turn north (R)and follow 2-tack along the base of hill for 0.75 miles, at which point the 2-track winds up past clay tanks toward the top of the ridge. Follow road across ridge, heading NW for about 2.5 miles. Road branches to North (R), and windmill is off to north (R), about 1/2 mile. Look for water tank and windmill tower." +"NM-17701","","","362717","3792240","GW","false","" +"NM-10820","","","554073","3648150","GW","false","" +"NM-09162","","","638420","3628400","GW","false","" +"MI-0271","","","462583","3963160","GW","true","Topographic situation: Edge of valley" +"NM-26591","","","586056","4069120","GW","false","" +"NM-01050","","","604432","3840460","GW","false","" +"NM-17310","","","663375","3786810","GW","false","" +"NM-13366","","","641463","3691290","GW","false","" +"NM-03682","","","650868","4092490","GW","false","" +"NM-11756","","","559457","3663640","GW","false","" +"BC-0177","157","","379090","3885550","GW","true","" +"NM-06778","","","675091","3589730","GW","false","" +"NM-15623","","","325335","3746430","GW","false","" +"NM-19881","","","611277","3834420","GW","false","" +"NM-23666","PW-306","","360868","3910930","GW","false","" +"NM-15228","","","639435","3736570","GW","false","" +"EB-625","","","399250","3959720","GW","true","" +"DE-0085","","","639341","3568894","GW","false","" +"TV-260","SW-54","","440935","4024629","GW","true","" +"NM-20452","","","348039","3845690","GW","false","" +"NM-20558","","","555569","3847340","GW","false","" +"NM-11537","","","487454","3660050","GW","false","" +"ED-0231","22S27E28.44","","576345","3580380","GW","true","" +"NM-00936","","","627359","3803150","GW","false","" +"NM-24726","","","443437","3943960","GW","false","" +"NM-24802","","","289148","3947260","GW","false","" +"NM-04539","","","591287","3549910","GW","false","" +"NM-06026","","","285069","3575250","GW","false","" +"NM-14444","","","405547","3705310","GW","false","" +"TC-244","TP-04","","412834","4066076","GW","true","" +"QY-0477","15.35.14.211","","663951","3933590","GW","true","" +"NM-20984","","","420680","3858210","GW","false","" +"NM-15174","","","562502","3733510","GW","false","" +"NM-16664","","","668005","3777000","GW","false","" +"NM-20134","","","600257","3838630","GW","false","" +"QY-0797","7.31.27.311","","623287","3851710","GW","true","" +"NM-09471","","","297482","3632270","GW","false","" +"PC-071","PW-127","","368147","3907687","GW","true","" +"NM-00656","","","283154","3688650","GW","false","" +"OG-0019","","","640594","3820245","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 4 miles on CR 17. Turn right north on CR Z drive 1 mile. Turn right east on CR18 drive 0.5 miles. Turn right south on track. Drive 0.5 miles to well." +"NM-23958","","","639171","3921570","GW","false","" +"HS-508","TC-508","","289602","3667919","SP","true","" +"NM-05293","","","168104","3567590","GW","false","" +"NM-17655","","","638928","3791900","GW","false","" +"NM-03362","","","243318","3884330","GW","false","" +"NM-28164","","","654573","3618810","GW","false","" +"NM-08220","","","649627","3615130","GW","false","" +"SA-0335","","","255770","3699788","GW","true","" +"NM-27461","","","221583","3828690","GW","false","" +"NM-21257","","","222966","3871920","GW","false","" +"NM-21166","","","389837","3865550","GW","false","" +"NM-25725","","","465505","3991780","GW","false","" +"MI-0032","","","532675","3903459","GW","true","Topographic situation: Plains" +"NM-14511","","","170016","3712440","GW","false","" +"NM-20792","","","654459","3854610","GW","false","" +"NM-00728","","","473758","3695960","GW","false","" +"NM-07424","","","186392","3606420","GW","false","" +"BC-0402","405","","","","GW","false","" +"SB-0753","TWDB 4924411","","395399","3505896","GW","false","" +"SB-0280","TWDB 4807423","","480151","3533681","GW","false","" +"NM-02100","","","234161","3561880","GW","false","" +"NM-00574","","","673183","3660240","GW","false","" +"NM-25720","","","168067","3997260","GW","false","" +"NM-25830","","","453660","3998620","GW","false","" +"NM-24165","","","404298","3929810","GW","false","" +"NM-07407","","","619484","3601910","GW","false","" +"NM-01582","","","397352","3995210","GW","false","" +"NM-11307","","","657857","3657680","GW","false","" +"NM-13525","","","626450","3692650","GW","false","" +"NM-08441","","","233221","3621100","GW","false","" +"NM-15141","","","658962","3733860","GW","false","" +"NM-22984","","","349656","3894460","GW","false","" +"NM-11714","","","555703","3662820","GW","false","" +"NM-26740","","","448915","4087360","GW","false","" +"NM-19762","","","573155","3832090","GW","false","" +"NM-24255","","","241130","3935670","GW","false","" +"DE-0025","","","659138","3552530","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep." +"NM-06450","","","365638","3582750","GW","false","" +"QY-0557","5.27.30.242","","581300","3832350","GW","true","" +"SB-0032","TWDB 4709806","","505733","3516145","GW","false","" +"NM-19462","","","655675","3827720","GW","false","" +"NM-07362","","","180941","3605050","GW","false","" +"NM-10067","","","554235","3637560","GW","false","" +"NM-10528","","","669242","3646010","GW","false","" +"NM-03013","","","652688","3794270","GW","false","" +"NM-19217","","","601233","3821510","GW","false","" +"NM-28303","DM-68","","444269","4046634","GW","false","" +"NM-14961","","","577592","3725860","GW","false","" +"NM-26663","","","193710","4078900","GW","false","" +"NM-03917","","","137940","3528540","GW","false","" +"NM-07744","","","204173","3611430","GW","false","" +"NM-16626","","","668075","3775920","GW","false","" +"NM-14986","","","470623","3726700","GW","false","" +"NM-11632","","","666698","3662670","GW","false","" +"NM-15554","","","334822","3744360","GW","false","" +"NM-13016","","","620671","3685520","GW","false","" +"NM-21785","","","368205","3880600","GW","false","" +"NM-23622","","","371106","3909950","GW","false","" +"NM-24285","","","239089","3936590","GW","false","" +"NM-24505","","","405048","3938740","GW","false","" +"NM-26931","PW-138","","364937","3910994","GW","true","" +"NM-16782","","","624197","3778050","GW","false","" +"NM-02385","","","260173","3586230","GW","false","" +"NM-27558","","","660050","3792610","GW","false","" +"NM-13742","","","553042","3694500","GW","false","" +"NM-08226","","","560771","3614290","GW","false","" +"NM-01548","","","402018","3980740","GW","false","" +"NM-07760","","","558232","3607400","GW","false","" +"NM-20219","","","147269","3846320","GW","false","" +"NM-08380","","","662626","3618630","GW","false","" +"NM-04356","","","673729","3545750","GW","false","" +"SA-0087","","","252605","3735030","GW","true","Well was where corrals are now SE of house. Well destroyed." +"NM-13337","","","671146","3691400","GW","false","" +"NM-27702","","","666423","3796820","GW","false","" +"DE-0030","","","591499","3613960","GW","true","From Carlsbad, go east on Hobbs Highway (HWY 62) to junction of HWY 360 (UTM zone 13, easting 592,622 northing 3,599,545). Go north on HWY 360 ~5.7 mi, turn west (left) on CR 235 (Curry Comb Rd) and follow for ~4.3 mi (road curves quite a bit), turn north (right) on dirt 2 track for ~2.0 mi to well, passing thru unlocked green gate along the way. Well near solar panel." +"NM-19418","","","571929","3825980","GW","false","" +"NM-15849","","","552091","3750300","GW","false","" +"NM-01943","","","636046","3543680","GW","false","" +"NM-26862","","","195751","3625350","GW","true","" +"NM-19279","","","601927","3823280","GW","false","" +"NM-14630","","","245620","3715450","GW","false","" +"NM-18997","","","675306","3816730","GW","false","" +"MI-0289","","","591704","3961152","GW","true","Topographic situation: Plateau" +"NM-13866","","","553011","3695330","GW","false","" +"BW-0443","18S10E18.224","","411218","3623970","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SM-1071","","","449142","3649319","SP","true","In 16 Springs Canyon, turn S onto Bell Canyon. About 0.5 mi on left, turn onto Big Springs Road. Go past 2 trailers, house is at end of road (Denney on gate). Spring is by all of the piping and culverts." +"TB-1043","","","436078","3724606","SP","true","From Hwy 37, approx MM 77, go north on O-O road for about 6 mi. Thru ranch entrance, past big house and take 2-track to spring house." +"NM-26412","","","574133","4060040","GW","false","" +"NM-27208","","","164497","3488180","GW","false","" +"NM-22893","","","236074","3895620","GW","false","" +"NM-27804","","","661716","3801200","GW","false","" +"BC-0223","223","","375629","3890650","GW","true","" +"NM-15274","","","682016","3738710","GW","false","" +"NM-11290","","","647640","3657280","GW","false","" +"NM-13395","","","402827","3691450","GW","false","" +"NM-28247","","","201399","4080000","GW","false","" +"AH-108","HM-44","","437631","4041648","GW","true","" +"NM-26364","","","582546","4052470","GW","false","" +"NM-23136","","","304628","3897580","GW","false","" +"NM-09454","","","672476","3631890","GW","false","" +"NM-04617","","","239570","3555020","GW","false","" +"NM-13375","","","670102","3691960","GW","false","" +"BW-0406","17S10E19.144","","410459","3630830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26822","","","147056","3701810","GW","true","" +"SM-0053","","","440168","3646224","GW","true","Take US82 east of Cloudcroft several miles. Look for Trimble Rd/ Sullivan Canyon Rd turnoff on the right (south) side. Take immediate left onto Sullivan Canyon rd. go around right angle bend in road, take left onto Savior Trail. Well is on left by big tank, walk through small gate, measure anytime." +"TC-375","","","442831","4076858","GW","true","" +"TO-0439","10N7E12.434","","395794","3884750","GW","true","" +"NM-00050","","","368796","3544430","GW","false","" +"NM-12369","","","650155","3674290","GW","false","" +"NM-10227","","","219581","3643950","GW","false","" +"NM-21618","","","342726","3878410","GW","false","" +"NM-12248","","","663557","3672130","GW","false","" +"NM-25155","","","672738","3959850","GW","false","" +"UC-0156","","","656990","3996421","GW","false","" +"NM-01645","","","660856","3543380","GW","false","" +"NM-14864","","","656100","3723030","GW","false","" +"NM-22815","","","242627","3894480","GW","false","" +"EB-368","","","405580","3948470","GW","true","At end of Sloman road; old idle well in pit ~ 10 ft SW of new PVC well" +"NM-05149","","","675114","3561300","GW","false","" +"ED-0328","24S26E6.322","","562854","3567850","GW","true","" +"NM-14751","","","676592","3718820","GW","false","" +"NM-25666","","","396275","3986780","GW","false","" +"NM-27764","","","592780","3794660","GW","false","" +"NM-19139","","","667110","3819790","GW","false","" +"NM-11475","","","560002","3659270","GW","false","" +"QY-0451","13.36.20.332","","668392","3911530","GW","true","" +"NM-11885","","","563335","3665150","GW","false","" +"NM-02097","","","262136","3560720","GW","false","" +"NM-14943","","","665156","3725990","GW","false","" +"WL-0096","CN-2015-013","","588088","3609460","GW","true","" +"ED-0004","16S24E11.34","","540931","3643760","GW","true","" +"NM-01625","","","301272","4023410","GW","false","" +"NM-01614","","","314807","4018240","GW","false","" +"NM-09260","","","656172","3629770","GW","false","" +"NM-18566","","","678692","3809220","GW","false","" +"NM-18488","","","610100","3806950","GW","false","" +"NM-09436","","","658172","3631620","GW","false","" +"NM-26015","","","327676","4014000","GW","false","" +"QY-0135","10.37.18.122","","676836","3885580","GW","true","" +"SO-0093","1S3E12.211","","354374","3790270","GW","true","" +"NM-26901","PW-110","","372742","3911564","GW","true","" +"NM-12736","","","554029","3679600","GW","false","" +"NM-17993","","","636491","3799350","GW","false","" +"SO-0066","2N2W24.22","","316322","3806990","GW","true","" +"NM-20018","","","399619","3836390","GW","false","" +"NM-03179","","","572353","3823960","GW","false","" +"NM-19542","","","381267","3828620","GW","false","" +"NM-09600","","","559807","3631530","GW","false","" +"QY-0286","11.31.35.442","","626136","3888420","GW","true","" +"NM-05511","","","223646","3569650","GW","false","" +"NM-28419","S-2016-090","","632645","3562037","GW","true","" +"NM-10290","","","678471","3642810","GW","false","" +"TO-0526","7N8E12.431","","403981","3856180","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"MG-015","WF-7A","","293201","3772735","GW","true","" +"NM-19119","","","573546","3818110","GW","false","" +"NM-04621","","","672002","3553200","GW","false","" +"NM-07734","","","281039","3609230","GW","false","" +"NM-16968","","","249884","3783140","GW","false","" +"NM-22871","","","377763","3892320","GW","false","" +"NM-24815","","","414223","3945360","GW","false","" +"NM-28399","S-2014-003","","636206","3600472","GW","true","" +"SM-1002","","","446868","3650392","SP","true","On south side of 16 Springs Canyon, in Walker private property accessed on 2 track across from house. Do not access without prior arrangement with Walker." +"NM-03428","","","349736","3894600","GW","false","" +"NM-06952","","","550258","3591440","GW","false","" +"NM-05417","","","223846","3568320","GW","false","" +"SB-0291","TWDB 4807508","","481147","3532940","GW","false","" +"ED-0245","22S27E33.224","","576500","3579820","GW","true","" +"NM-04195","","","145163","3543930","GW","false","" +"NM-22393","","","347307","3887060","GW","false","" +"SV-0145","16y Via Alcalde","","380307","3901176","GW","false","" +"QY-0357","11.36.16.32","","670230","3894310","GW","true","" +"QY-0586","5.29.18.233","","599976","3835610","GW","true","" +"NM-17015","","","658253","3782320","GW","false","" +"NM-22911","","","614871","3892690","GW","false","" +"NM-03957","","","252004","3526750","GW","false","" +"NM-05392","","","253587","3567150","GW","false","" +"ED-0168","22S24E36.332","","551146","3578690","GW","true","" +"UC-0002","","","674186","4034094","GW","true","Go east on Boise City Highway to Rawhide Road, turn south on Rawhide, go to Pucket road, go past 50 yards to Field Road, drive to fenceline, go through gate, around corrals, go right through second gate, then southeat across field ~ 1/2 mile." +"SB-0728","TWDB 4923504","","388952","3506333","GW","false","" +"NM-28034","","","391619","3883090","GW","false","" +"BW-0235","14S10E18.444","","405496","3662070","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0219","","","248118","3709216","GW","true","From Hwy 52 west on Hwy 59. West of mm2, signs for gila wilderness. Thru gate to north down hill. Look for whilte tank past gate, stay on road to NE." +"NM-06610","","","677943","3586520","GW","false","" +"NM-25656","","","414243","3986130","GW","false","" +"NM-17986","","","656530","3799570","GW","false","" +"NM-23281","15 Canada Vista","","381189","3899306","GW","true","15 Canada Vista; Unit 1 Lot 83" +"NM-24901","","","408684","3947230","GW","false","" +"NM-00964","","","596212","3812690","GW","false","" +"OG-0006","","","638638","3823448","GW","true","From int of SR 311 and US 60, west of Clovis, drive 20 miles north and west on SR 311. Turn left south on CR AB. Drive 0.5 miles south. Turn left east onto dirt, drive 0.34 miles to well." +"NM-09736","","","559799","3632970","GW","false","" +"NM-27066","","","325589","3755120","GW","true","" +"NM-25751","","","405118","3994230","GW","false","" +"NM-22093","","","237635","3886540","GW","false","" +"EM-9004","","","194438","3882740","M","true","North Point, west side of fracture" +"NM-25754","","","404969","3994390","GW","false","" +"NM-03143","","","674546","3815120","GW","false","" +"NM-16834","","","678412","3779660","GW","false","" +"GT-033","","","357316","3973290","GW","true","" +"NM-04264","","","386969","3541290","GW","false","" +"NM-07580","","","246617","3607640","GW","false","" +"BC-0359","365","","376286","3890747","GW","true","" +"NM-27444","","","411879","3692070","GW","false","" +"DA-0011","19S1E16.24","","327606","3614820","GW","true","" +"NM-23792","","","643503","3915690","GW","false","" +"NM-03550","","","532302","3968020","GW","false","" +"SB-0797","TWDB 5007401","","479459","3421556","GW","false","" +"OG-0088","","","654980","3810396","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1.25 miles north on SR 311. Turn right east into Reid property and drive east past house and barns 0.3 miles to well in field." +"NM-21238","","","346793","3868900","GW","false","" +"QY-0289","11.31.6.444","","619628","3896370","GW","true","" +"MI-0219","","","585929","3938721","GW","true","Topographic situation: Plains" +"NM-15645","","","610456","3745930","GW","false","" +"WL-0228","","","285084","3652195","GW","true","From Hillsboro exit on I-25, go east to Rt 187, go left (north) for ~ 2 miles and look for CR B-118 (Seco Rd) on right. Take B-118 to Tee in road at Lakefront Drive and go left to address at end of road. Driveway on left. Well is located to south of house behind well house." +"NM-08535","","","186840","3623960","GW","false","" +"NM-26236","","","660364","4035690","GW","false","" +"RA-075","","","395234","4000750","GW","true","Near side of house." +"NM-02366","","","573520","3580990","GW","false","" +"NM-20632","","","403423","3849590","GW","false","" +"NM-05292","","","246550","3565540","GW","false","" +"NM-08019","","","307066","3612580","GW","false","" +"BW-0180","14S9E15.344","","399781","3662140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BC-0351","338","","377926","3876104","GW","true","" +"NM-09520","","","561424","3630770","GW","false","" +"NM-07794","","","228969","3611440","GW","false","" +"NM-03740","","","134264","3505080","GW","false","" +"SB-0760","TWDB 4924418","","395195","3506607","GW","false","" +"SB-0913","","","483905","3581079","GW","true","From junction of Hwys 1437 (Main) & 2249 (Broadway), go E on 2249 for 3 mi, turn N (left) on Hwy 1576 (hwy alternates between north & east) for 3 mi, east 1 mi, north 1 mi, east 1.4 mi, then turn N on G-005 for 2.3 mi. Road ends at NM-506, turn E (right) on NM-506 for 5.6 mi (numerous curves); at intersection, turn E (right) which is still NM-506 but not clearly marked. Continue on NM-506 for 0.5 mi, NM-506 turns N (left), stay on NM-506 for addl 9 mi. At intersection, turn W (left) which is still NM-506. Take NM-506 for 8.8 mi (several bends) to Pinon Creek Rd. Turn N (right) on Pinon Creek Rd for 4.2 mi to bldgs & ranch structures. Well is under WM tower south side of road." +"NM-06326","","","266750","3582280","GW","false","" +"EB-059","","","403151","3949549","GW","true","NW corner of Cam del Rey and Cam del Rey Circle, one block E of Caja del Rio" +"NM-05228","","","673646","3562870","GW","false","" +"NM-16236","","","326368","3764960","GW","false","" +"NM-18644","","","651951","3810740","GW","false","" +"NM-08047","","","558366","3611380","GW","false","" +"NM-20891","","","633011","3856360","GW","false","" +"NM-18479","","","648812","3807260","GW","false","" +"NM-06635","","","373307","3586170","GW","false","" +"NM-25346","","","232013","3973540","GW","false","" +"NM-06446","","","306717","3583620","GW","false","" +"NM-28228","","","171323","4075880","GW","false","" +"SD-0031","7N.7E.11.142","","392557","3857170","GW","true","" +"HS-096","TC-096","","289758","3667914","GW","true","In block 96 in Hot Springs, NM" +"MI-0297","","","466512","3967049","GW","true","Topographic situation: Valley" +"NM-01702","","","196028","4073090","GW","false","" +"NM-11821","","","286801","3666550","GW","false","" +"NM-14446","","","367685","3705820","GW","false","" +"NM-02485","","","554403","3606950","GW","false","" +"SB-0725","TWDB 4923501","","388899","3506334","GW","false","" +"SV-0116","35 Via Entrada","","379076","3899077","GW","false","Unit 2 Lot 56" +"NM-05085","","","342696","3560290","GW","false","" +"NM-25556","","","177999","3986490","GW","false","" +"NM-25989","","","421152","4008340","GW","false","" +"NM-21810","","","349150","3881220","GW","false","" +"NM-11585","","","649001","3661640","GW","false","" +"NM-25083","","","413705","3954120","GW","false","" +"NM-06332","","","551232","3579770","GW","false","" +"CX-0167","S12","","558929","4097030","SP","true","West slope Barilla Mesa" +"EB-645","","","398694","3954689","GW","true","Off of Santa Fe 599 Bypass, take Hwy 62 /FR 24 northwest. Well is approximately 6 miles down Rd 24, turn off on 2 track (by firewood sign). Look for log corrals and concrete/steel tanks. Well was formerly equipped with pumpjack, now has remains of equipment." +"NM-15750","","","329915","3749490","GW","false","" +"TO-0003","1N10E11.412","","420560","3798370","GW","true","" +"NM-18462","","","570272","3805950","GW","false","" +"NM-02831","","","545498","3699910","GW","false","" +"NM-25194","","","224199","3965390","GW","false","" +"DE-0121","","","672869","3615970","GW","false","" +"NM-22674","","","347388","3890400","GW","false","" +"NM-12424","","","674816","3675690","GW","false","" +"NM-00141","","","363005","3562530","GW","false","" +"NM-20118","","","589801","3838190","GW","false","" +"NM-07134","","","320833","3596640","GW","false","" +"SD-0039","7N.7E.24.434","","394347","3853010","GW","true","" +"NM-19255","","","554650","3822170","GW","false","" +"NM-17581","","","597049","3789800","GW","false","" +"NM-16347","","","324240","3769190","GW","false","" +"NM-09297","","","447801","3628560","GW","false","" +"NM-00289","","","676773","3609540","GW","false","" +"NM-18925","","","558247","3813720","GW","false","" +"NM-03523","","","672732","3948540","GW","false","" +"NM-08886","","","558370","3623850","GW","false","" +"NM-04709","","","671298","3554550","GW","false","" +"NM-11234","","","549134","3654750","GW","false","" +"NM-08129","","","362839","3613630","GW","false","" +"WL-0076","","","483810","4013561","GW","true","From Angel Fire drive 10 miles south on Hwy 434, which becomes Hwy 120. From start of Hwy 120, drive 4.2 miles, turn right on Hidden Lake. Drive to 4-way intersection, turn right, short drive 0.1 miles, then left on Pleasant Meadow. Look for address: 215 Pleasant Meadow Drive on left. Well in front yard not far from house." +"NM-19952","","","606404","3835250","GW","false","" +"NM-25974","","","405087","4007480","GW","false","" +"NM-24534","","","174006","3944780","GW","false","" +"NM-22263","","","379389","3885220","GW","false","" +"NM-02845","","","401135","3705510","GW","false","" +"NM-11893","","","623243","3666240","GW","false","" +"EB-471","","","419661","3953575","GW","true","" +"DA-0039","21S2E12.222","","341673","3597400","GW","true","" +"NM-04620","","","233958","3555160","GW","false","" +"NM-12301","","","558448","3671860","GW","false","" +"NM-00601","","","651731","3664860","GW","false","" +"NM-15229","","","559298","3735650","GW","false","" +"NM-18867","","","329906","3814140","GW","false","" +"NM-19723","","","581462","3831450","GW","false","" +"NM-10983","","","283168","3652360","GW","false","" +"NM-24140","","","671672","3930420","GW","false","" +"NM-14723","","","680360","3717290","GW","false","" +"TB-0128","","","399791","3705691","GW","true","258 Oscuro Range Rd. on north side 1.6 mi from Hwy 54. Well is on R (east) side of drive, east of corrals by 10K gal storage tank with solar panel." +"NM-07322","","","562376","3599210","GW","false","" +"NM-16792","","","667153","3778820","GW","false","" +"NM-13111","","","563611","3686270","GW","false","" +"NM-08497","","","677892","3620100","GW","false","" +"NM-17508","","","678340","3790160","GW","false","" +"NM-10453","","","644634","3644690","GW","false","" +"NM-08452","","","291182","3619800","GW","false","" +"NM-21917","","","351792","3881940","GW","false","" +"QY-0753","7.28.25.331","","597483","3851020","GW","true","" +"NM-10754","","","277030","3649760","GW","false","" +"NM-18231","","","175827","3807800","GW","false","" +"NM-27130","TP-25","","413159","4052930","GW","false","" +"NM-12265","","","671338","3673160","GW","false","" +"NM-14732","","","539362","3716420","GW","false","" +"NM-10585","","","631342","3645990","GW","false","" +"SA-0404","4S11W6.140","","220245","3765090","GW","true","" +"NM-19222","","","624503","3822230","GW","false","" +"EB-409","","","405420","3944846","GW","true","" +"NM-04070","","","254739","3534390","GW","false","" +"NM-08064","","","547811","3611660","GW","false","" +"EB-443","","","415243","3934657","GW","true","11 Fonda Court" +"NM-09146","","","227300","3630480","GW","false","" +"WL-0245","","","364668","3899202","GW","true","From I-25 and Tramway, drive 4.1 miles east on Tramway, turn left (north) on FS 333 and follow for 2.8 miles to end at Circle Drive. Both directions from intersection are Circle Drive. Turn right (north) on Circle Drive and follow thru left curve for 0.25 miles to address at 28 Circle Drive on left. Well is in front of house." +"NM-00230","","","569098","3584030","GW","false","" +"DA-0052","22S1E25.413","","331379","3582100","GW","true","" +"NM-17736","","","526978","3792260","GW","false","" +"SB-0654","TWDB 4915402","","382675","3519367","GW","false","" +"NM-01989","","","346436","3549150","GW","false","" +"NM-12749","","","663121","3681120","GW","false","" +"NM-08008","","","231893","3614380","GW","false","" +"NM-02593","","","576591","3626750","GW","false","" +"TO-0422","9N10E16.311","","418992","3873670","GW","true","" +"NM-21230","","","345452","3868780","GW","false","" +"NM-12473","","","626928","3675840","GW","false","" +"NM-22968","","","392100","3893680","GW","false","" +"NM-25948","","","419707","4005920","GW","false","" +"NM-13668","","","553254","3693570","GW","false","" +"NM-16290","","","328853","3767530","GW","false","" +"NM-22999","","","349527","3894560","GW","false","" +"SV-0004","02 Calle Lomita","","377722","3900313","GW","false","Unit 3 Lot 70" +"NM-21409","","","346100","3872620","GW","false","" +"NM-13922","","","543762","3695430","GW","false","" +"NM-05043","","","339884","3559750","GW","false","" +"SB-0450","TWDB 4816704","","488530","3513163","GW","false","" +"NM-09677","","","282800","3634500","GW","false","" +"NM-06791","","","343901","3589590","GW","false","" +"NM-16352","","","228402","3771610","GW","false","" +"NM-01749","","","167812","3491010","GW","false","" +"NM-02064","","","240539","3559030","GW","false","" +"ED-0255","22S29E11","","598259","3586030","GW","true","" +"NM-04026","","","313211","3529920","GW","false","" +"NM-04409","","","672599","3547420","GW","false","" +"BW-0442","18S10E18.144","","410412","3623570","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07644","","","670849","3607000","GW","false","" +"NM-02941","","","670187","3747120","GW","false","" +"NM-27155","PS-004","","371472","3907931","SP","true","" +"AH-072","AH-34","","438751","4045524","GW","true","" +"NM-13533","","","547293","3691820","GW","false","" +"HS-102","TC-102","","289760","3667671","GW","true","In block 41 in Hot Springs, NM" +"NM-27219","","","660845","3543660","GW","false","" +"NM-00851","","","564859","3736110","GW","false","" +"NM-05486","","","263679","3568420","GW","false","" +"NM-20743","","","659073","3853790","GW","false","" +"NM-20188","","","648386","3840390","GW","false","" +"SM-0227","","","456807","3645720","GW","true","Turnoff to right, 1.5 mi past junction with Walker Canyon Rd., Keep left following bladed road 0.5 mi to windmill on left. Well is in culvert thing." +"BW-0219","14S9E33.213","","398522","3658520","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26551","","","446780","4066290","GW","false","" +"NM-10788","","","620145","3648370","GW","false","" +"NM-25927","","","293917","4006780","GW","false","" +"NM-18250","","","492031","3802390","GW","false","" +"BW-0187","14S9E23.112","","401003","3661720","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08301","","","233756","3618680","GW","false","" +"NM-17079","","","322279","3783560","GW","false","" +"NM-21887","","","348866","3881760","GW","false","" +"NM-00546","","","408882","3654860","GW","false","" +"NM-01939","","","321100","3543650","GW","false","" +"NM-11831","","","555616","3664450","GW","false","" +"NM-06417","","","578533","3581680","GW","false","" +"NM-18587","","","533928","3807930","GW","false","" +"SA-0430","4S13W35.200","","207429","3757780","GW","true","" +"NM-09145","","","576173","3627020","GW","false","" +"WL-0090","NM3522109","","204753","3627290","GW","true","Need to meet w/staff for escort to wells. Coordinate visits with Eddie." +"BC-0284","280","","377728","3886760","GW","true","" +"DE-0263","","","663127","3634533","GW","false","" +"EB-505","","","408355","3946591","GW","true","" +"SD-0217","10N.7E.9.331","","389917","3885020","GW","true","" +"NM-28411","S-2016-037","","617645","3568581","GW","true","" +"QY-0269","11.31.14.113","","624835","3894420","GW","true","" +"NM-08945","","","574474","3624570","GW","false","" +"PC-088","PW-157","","373265","3911748","GW","true","" +"EB-569","","","402917","3939407","GW","true","" +"NM-06972","","","671185","3593550","GW","false","" +"QU-095","MW-34","","446028","4062518","GW","true","See Chevron map of monitoring wells." +"MI-0132","","","479813","3933608","GW","true","Topographic situation: Plateau" +"NM-07324","","","343293","3600300","GW","false","" +"TO-0466","10N9E21.321","","409600","3881870","GW","true","" +"UC-0185","","","596586","4039672","GW","false","" +"AR-0531","","","215510","4069920","PS","true","" +"NM-25824","","","288473","4000810","GW","false","" +"SB-0895","25.18.25.240","","495350","3551810","GW","true","" +"NM-20734","","","617209","3852450","GW","false","" +"NM-25487","","","411312","3976020","GW","false","" +"SD-0314","12N.5E.6.224","","368731","3907440","GW","true","" +"BW-0822","2.5.1.28.114","","331927","3836000","GW","true","" +"NM-00155","","","366219","3569870","GW","false","" +"NM-04274","","","347901","3542100","GW","false","" +"NM-06772","","","671330","3589610","GW","false","" +"NM-14384","","","267045","3704760","GW","false","" +"BC-0376","379","","345734","3874841","GW","false","" +"JM-016","","","310158","3672371","GW","true","" +"NM-05833","","","255612","3572870","GW","false","" +"NM-13674","","","628389","3694590","GW","false","" +"NM-04890","","","267858","3558710","GW","false","" +"NM-09820","","","672021","3635640","GW","false","" +"BW-0642","12S7E8.422","","377935","3683980","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12559","","","558628","3676480","GW","false","" +"NM-21103","","","392395","3862960","GW","false","" +"NM-09272","","","553376","3628320","GW","false","" +"NM-19037","","","544126","3816020","GW","false","" +"NM-16705","","","234710","3779580","GW","false","" +"NM-25143","","","306522","3959260","GW","false","" +"NM-16779","","","664722","3778580","GW","false","" +"NM-25464","","","411674","3974690","GW","false","" +"NM-07835","","","146446","3614790","GW","false","" +"NM-23408","","","673189","3903980","GW","false","" +"NM-19552","","","567096","3828380","GW","false","" +"BC-0328","318","","378430","3885540","GW","true","" +"BW-0037","22S5E15.221","","367093","3585660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00616","","","648840","3668790","GW","false","" +"NM-18387","","","660663","3806050","GW","false","" +"SO-0096","1S3E34.21","","351211","3783680","GW","true","" +"NM-01033","","","597469","3834550","GW","false","" +"NM-06235","","","531896","3577850","GW","false","" +"ED-0356","25S30E2","","608294","3558720","GW","true","" +"NM-25876","","","674393","4003040","GW","false","" +"SB-0371","TWDB 4807815","","481848","3527921","GW","false","" +"QY-1006","9.36.25.123","","675385","3872660","GW","true","" +"NM-13843","","","544642","3695160","GW","false","" +"NM-05279","","","232661","3565680","GW","false","" +"NM-11109","","","554933","3652320","GW","false","" +"NM-26049","","","405957","4016350","GW","false","" +"NM-15834","","","673614","3752020","GW","false","" +"NM-25164","","","415438","3959310","GW","false","" +"NM-15725","","","678201","3747270","GW","false","" +"NM-11741","","","556426","3663380","GW","false","" +"NM-00416","","","409791","3633480","GW","false","" +"BW-0604","16S9E8.14","","402473","3645230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10889","","","557340","3648940","GW","false","" +"NM-21603","","","382250","3877410","GW","false","" +"WL-0058","NM3510333","","215533","3907690","GW","true","Take I-40 west to Thoreau, NM. Take exit and go south on Hwy 612 for ~15 miles until town of Bluewater Acres. Make a right (west) on Perch and a left on Eel (south) to address at 2 Eel Road. Drive south until you get to pump house. Well inside enclosure." +"NM-22449","","","381036","3887260","GW","false","" +"NM-14451","","","441009","3705210","GW","false","" +"TS-009","","","438022","4063486","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"NM-15087","","","142837","3736650","GW","false","" +"NM-00691","","","435711","3691700","GW","false","" +"NM-15179","","","659169","3735340","GW","false","" +"SA-0142","","","262758","3714681","GW","true","From the Monticello plaza, continue about 17 miles up the road that runs up and through Alamosa Creek. Rough going, crossing the creek back and forth! Look for another creek crossing with a sign on the east (L) side saying Main Road with an arrow pointing up stream. Ignore the sign and cross over the creek one last time. Go through the green gate and continue past the ranch manager's house. Then a second house with tent platforms around it is the Maytag house (with a sign saying 'Maytag' above the door). The well is behind the house to the southwest (L)." +"SA-0136","","","271749","3698014","GW","true","At Exit 83 on I25 north of T or C take State Rd. 181 west to State Rd. 52 heading northwest to State Rd. 142 north to Monticello. From the Plaza in Monticello head north through town, bearing to the northwest across the cattle guard and staying to the west on the driveway to the buildings and through the gate with the archway and telephone poles. Look for white pvc casing between the vehicles and tractors east of the metal workshop." +"NM-15878","","","566750","3751530","GW","false","" +"NM-15178","","","678553","3735580","GW","false","" +"NM-01343","","","672379","3913920","GW","false","" +"NM-10763","","","555687","3647450","GW","false","" +"TO-0492","6N8E11.34","","401874","3846500","SP","true","" +"TS-045","","","435641","4041134","SP","true","Tiny trickle on east side." +"NM-05604","","","332006","3568230","GW","false","" +"NM-03390","","","349304","3889920","GW","false","" +"NM-19670","","","654813","3831990","GW","false","" +"NM-08810","","","270024","3625570","GW","false","" +"NM-25917","","","393632","4004100","GW","false","" +"ED-0075","20S29E3.433","","588059","3607140","GW","true","" +"NM-14517","","","441743","3707240","GW","false","" +"NM-06723","","","229195","3590810","GW","false","" +"NM-15991","","","649567","3756540","GW","false","" +"SM-0171","","","463182","3608359","GW","true","In Pinon, just south. Site visit by Jeremiah Morse in June 2007" +"TV-287","","","441938","4021590","GW","true","" +"SB-0742","TWDB 4924202","","400425","3510989","GW","false","" +"NM-03165","","","559005","3818810","GW","false","" +"NM-23310","","","653988","3900330","GW","false","" +"NM-17298","","","630696","3786020","GW","false","" +"BC-0133","116","","382118","3890830","GW","true","" +"SO-0244","SMC-W01A","","314381","3729033","GW","true","" +"WS-020","","","380999","3634655","GW","true","" +"NM-09854","","","638110","3635700","GW","false","" +"NM-15514","","","135687","3749390","GW","false","" +"TV-266","","","446191","4027125","GW","true","Hwy. 68 heading north into Taos area, after passing visitor center and crossing Roy Road, look for Paseo del Canyon W on the left. Make left (west) on Paseo del Canyon W to Camino del Medio; right (north) to Aguire Lane (calvary church on right); turn right to second house on left." +"NM-05540","","","222968","3569760","GW","false","" +"NM-12523","","","677636","3677310","GW","false","" +"NM-14163","","","547313","3698280","GW","false","" +"NM-24683","","","415559","3942980","GW","false","" +"SB-0035","TWDB 4709901","","507918","3514330","GW","false","" +"SA-0007","SA-7_R00","","257804","3793020","GW","true","Well is ~0.25 mi E of barn. Eastern most well on farm." +"NM-12176","","","561516","3669970","GW","false","" +"NM-16341","","","295079","3769620","GW","false","" +"NM-07979","","","257298","3613270","GW","false","" +"NM-12014","","","656962","3668140","GW","false","" +"NM-04252","","","343713","3541150","GW","false","" +"NM-12299","","","676949","3673780","GW","false","" +"DE-0162","","","672753","3618787","GW","false","" +"NM-25208","","","214898","3966180","GW","false","" +"NM-12878","","","666232","3683890","GW","false","" +"NM-14791","","","329319","3720380","GW","false","" +"NM-23808","","","640847","3916050","GW","false","" +"NM-28242","","","193563","4079080","GW","false","" +"NM-05956","","","235129","3574830","GW","false","" +"NM-13049","","","547429","3685260","GW","false","" +"SA-0422","4S13W27.323","","205715","3758790","GW","true","" +"NM-08525","","","194988","3623520","GW","false","" +"EB-166","","","409205","3953067","GW","true","20 Los Prados on circular drive; below ground completion" +"TO-0007","1N13E10.111","","447156","3799290","GW","true","" +"NM-11681","","","626108","3663170","GW","false","" +"NM-27813","","","659275","3804310","GW","false","" +"NM-17529","","","644100","3790010","GW","false","" +"NM-20884","","","593696","3855570","GW","false","" +"NM-09956","","","621977","3636720","GW","false","" +"AH-103","HM-35","","437247","4042050","GW","true","" +"NM-06581","","","569391","3584660","GW","false","" +"NM-24998","","","437463","3949170","GW","false","" +"NM-23882","","","413761","3918220","GW","false","" +"SM-4071","","","431702","3629967","PS","true","Stream flow measurement by Patrick Walsh" +"NM-00165","","","365815","3570990","GW","false","" +"TO-0178","5N8E24.311","","403017","3834090","GW","true","" +"NM-08741","","","540031","3622130","GW","false","" +"NM-10634","","","546141","3645740","GW","false","" +"NM-21559","","","347504","3877420","GW","false","" +"NM-04413","","","598504","3546500","GW","false","" +"DE-0141","","","614873","3631102","GW","false","" +"NM-09907","","","557367","3635300","GW","false","" +"NM-03127","","","622217","3811880","GW","false","" +"NM-05386","","","258693","3566970","GW","false","" +"NM-15853","","","676638","3752470","GW","false","" +"NM-19862","","","601121","3834050","GW","false","" +"NM-09408","","","211531","3633760","GW","false","" +"NM-15469","","","423544","3741710","GW","false","" +"NM-13365","","","652477","3691360","GW","false","" +"NM-19669","","","656495","3831990","GW","false","" +"NM-22734","","","336086","3891130","GW","false","" +"NM-11346","","","559108","3657050","GW","false","" +"NM-27717","","","663321","3797190","GW","false","" +"BW-0587","14S9E7.3","","394699","3664050","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19533","","","607297","3828450","GW","false","" +"NM-09410","","","648085","3631130","GW","false","" +"BW-0483","1S8E1.433","","403038","3790030","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-427","","","415793","3934420","GW","true","6 Dovela Road" +"NM-00698","","","439979","3692950","GW","false","" +"NM-19992","","","396328","3835810","GW","false","" +"TS-116","","","434459","4021833","SP","true","Zone of small springs on east side of Rio Grande, just north of Rio Pueblo de Taos confluence." +"NM-06927","","","323106","3592260","GW","false","" +"NM-12859","","","669417","3683790","GW","false","" +"NM-24266","","","476379","3932290","GW","false","" +"NM-07485","","","671188","3604760","GW","false","" +"NM-27141","W-24","","449845","4025250","GW","false","" +"NM-14368","","","570479","3702000","GW","false","" +"NM-25933","","","174967","4010900","GW","false","" +"NM-10065","","","671725","3639150","GW","false","" +"NM-09168","","","205496","3631410","GW","false","" +"NM-22699","","","347258","3890710","GW","false","" +"NM-15099","","","563395","3730810","GW","false","" +"NM-20287","","","651815","3842360","GW","false","" +"NM-27554","","","660154","3792520","GW","false","" +"DA-0041","21S3E4.211","","345330","3598800","GW","true","" +"NM-02391","M-142","","220889","3588380","GW","false","" +"CX-0053","26N27E33.4","","584022","4033330","GW","true","" +"QU-092","MW-33","","445993","4062031","GW","true","See Chevron map of monitoring wells." +"EB-579","","","398379","3942119","GW","true","" +"NM-05707","","","335083","3569100","GW","false","" +"NM-25995","","","279267","4011700","GW","false","" +"NM-15392","","","683295","3741780","GW","false","" +"NM-16120","","","552017","3759100","GW","false","" +"NM-08707","","","591229","3622250","GW","false","" +"NM-23696","","","373308","3912050","GW","false","" +"NM-03194","","","571030","3826990","GW","false","" +"NM-22724","","","376168","3890440","GW","false","" +"AB-0173","S223","","385052","3926150","GW","true","" +"WL-0300","","","360143","3807992","GW","false","Will be escorted to well." +"NM-15740","","","357483","3748820","GW","false","" +"NM-01314","","","364383","3908290","GW","false","" +"NM-25232","","","673974","3964740","GW","false","" +"NM-21561","","","347732","3877400","GW","false","" +"EB-300","","","398587","3961476","GW","true","10 Miles down Buckman Rd. NE side of Rd" +"TO-0385","8N13E22.13","","449458","3863060","GW","true","" +"NM-03210","","","570161","3828970","GW","false","" +"TC-436","","","442501","4076917","GW","true","Well is located at owner's physical address (2610 N Hwy 522, Questa). The well is 50 yards away from an overturned trailer to the SE of the house." +"NM-26989","","","325004","3770440","GW","true","" +"NM-24963","","","217405","3952550","GW","false","" +"SO-0199","SAC-W02B","","324630","3791124","GW","true","" +"QY-0843","8.27.17.311","","581296","3864150","GW","true","" +"CX-0157","75","","539574","4028780","GW","true","3 miles northeast of Springer" +"NM-23800","","","461168","3914750","GW","false","" +"NM-18655","","","604473","3810030","GW","false","" +"NM-18443","","","609675","3806110","GW","false","" +"AB-0168","S218","","349074","3924530","GW","true","" +"NM-21016","","","383567","3859430","GW","false","" +"QY-0368","12.30.35.14","","615480","3898680","GW","true","" +"NM-22475","","","374610","3887560","GW","false","" +"JM-041","","","309159","3647472","GW","true","" +"NM-04587","","","549097","3551160","GW","false","" +"NM-11244","","","665995","3656680","GW","false","" +"EB-007","","","403933","3929293","GW","true","" +"DA-0014","19S3E19.12","","342834","3613350","GW","true","" +"NM-03381","","","181053","3891500","GW","false","" +"NM-22267","","","594053","3884930","GW","false","" +"NM-05517","","","242052","3569040","GW","false","" +"NM-06615","","","343257","3586310","GW","false","" +"NM-05601","","","165873","3572320","GW","false","" +"SB-0198","TWDB 4758504","","516010","3434632","GW","false","" +"NM-11130","","","157313","3658480","GW","false","" +"NM-11239","","","630204","3655430","GW","false","" +"EB-285","","","407026","3954795","GW","true","Lot 5, #82 Paseo de la Tierra; NO ACCESS" +"NM-23742","","","644385","3914220","GW","false","" +"SB-0077","TWDB 4717306","","509895","3510052","GW","false","" +"NM-27793","","","666830","3799760","GW","false","" +"CP-0024","","","670315","3798505","GW","true","Several miles east of US 70. In farm field with no road." +"NM-06040","","","328240","3574700","GW","false","" +"SD-0338","7N5E35.421","","373692","3850480","SP","true","" +"NM-25594","","","409078","3982970","GW","false","" +"NM-27869","","","504364","3811820","GW","false","" +"NM-27068","","","326804","3751390","GW","true","" +"NM-17232","","","644630","3785490","GW","false","" +"NM-24425","","","413691","3937140","GW","false","" +"NM-20174","","","380797","3839600","GW","false","" +"NM-15881","","","660719","3753270","GW","false","" +"SA-0300","","","257533","3757359","GW","true","" +"NM-05700","","","252338","3570730","GW","false","" +"NM-13571","","","435090","3692440","GW","false","" +"NM-16831","","","655871","3779230","GW","false","" +"DA-0058","22S2E21.123","","335860","3584600","GW","true","" +"NM-13987","","","131347","3702730","GW","false","" +"BW-0210","14S9E26.442","","402200","3658870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DE-0350","","","569182","3626558","GW","false","" +"NM-10985","","","559772","3650190","GW","false","" +"AR-0066","","","235177","4083100","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left onto Rd 2896 thru sharp left turn in road, then left onto Rd 2893 to address on right. Well is down gravel road along N side of home (before circular drive in front of home) about 150 yards to horse barn. Well is about 50' E from N side of barn." +"NM-06113","","","277972","3577500","GW","false","" +"NM-06967","","","341871","3592870","GW","false","" +"WL-0030","NM3504826","","394907","3918062","GW","true","From I-40 take Hwy 14 north towards Madrid. On south side of Madrid, on west side of road is Water Co-op tank/tower. Well is just east of tank." +"NM-06891","","","671107","3591970","GW","false","" +"NM-24562","","","399223","3939970","GW","false","" +"NM-20062","","","645442","3838220","GW","false","" +"NM-26693","","","444721","4077770","GW","false","" +"SB-0659","TWDB 4915407","","383156","3519978","GW","false","" +"NM-21908","","","357237","3881830","GW","false","" +"NM-15416","","","208690","3745030","GW","false","" +"NM-28103","","","346024","3906730","GW","false","" +"ED-0108","21S26E24.424a","","571409","3591790","GW","true","" +"QY-0136","10.37.19.343","","676809","3882710","GW","true","" +"NM-06419","","","365099","3582270","GW","false","" +"SO-0231","SBB-W08EX","","322379","3733196","GW","true","" +"NM-18096","","","323238","3801780","GW","false","" +"NM-05784","","","242317","3572240","GW","false","" +"NM-06125","","","247187","3578410","GW","false","" +"NM-09433","","","226788","3633630","GW","false","" +"SO-0005","1N2E21.12","","340002","3796660","GW","true","" +"NM-13896","","","131720","3702310","GW","false","" +"NM-20834","","","534115","3853800","GW","false","" +"WL-0049","","","441644","4050326","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, go past Lawrence Ranch Rd which is the first turn off to San Cristobal. At second turn off (FR 493) make a right. Turn right on Old Hwy 3 to address ~0.5 miles on right. Well is in vault east of house." +"NM-02575","","","554542","3624320","GW","false","" +"NM-11716","","","563582","3662990","GW","false","" +"NM-01372","","","447839","3922430","GW","false","" +"NM-10090","","","553428","3637960","GW","false","" +"NM-25795","","","640883","3997600","GW","false","" +"NM-23845","","","644232","3917430","GW","false","" +"NM-01207","","","150965","3888290","GW","false","" +"NM-14061","","","546546","3696860","GW","false","" +"DE-0009","","","633216","3564784","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Well is located ~100 ft north behind chain of tanks in enclosure. Need to go through unlocked gate. Well is in small pen." +"NM-17845","","","641769","3796900","GW","false","" +"NM-01623","","","675436","4022270","GW","false","" +"NM-00214","","","671853","3581970","GW","false","" +"NM-23909","","","655593","3920110","GW","false","" +"WL-0364","","","342130","3846286","GW","true","" +"NM-26501","","","165894","4069230","GW","false","" +"NM-00905","","","348477","3792150","GW","false","" +"NM-05849","","","239134","3573530","GW","false","" +"NM-05834","","","251817","3572960","GW","false","" +"NM-12009","","","557235","3666890","GW","false","" +"NM-02295","","","272108","3576240","GW","false","" +"NM-09290","","","411777","3628750","GW","false","" +"EB-163","","","403322","3964577","GW","true","Dirt track off Estrada Calabasa, 0.7 mi past Cam del Cerezo on left, before Mariah Ranch; existing but unused 4WD; OR approach from West/Buckman field (See file maps)" +"NM-22884","","","388466","3892400","GW","false","" +"NM-06852","","","359285","3590670","GW","false","" +"NM-12950","","","670170","3685090","GW","false","" +"NM-06370","","","151627","3586530","GW","false","" +"NM-23422","","","345044","3904260","GW","false","" +"NM-14206","","","552088","3698860","GW","false","" +"NM-22436","","","673089","3888040","GW","false","" +"NM-21478","","","389234","3874430","GW","false","" +"NM-11407","","","402731","3658490","GW","false","" +"NM-15564","","","161442","3749180","GW","false","" +"NM-21883","","","676469","3882220","GW","false","" +"NM-17375","","","535057","3785950","GW","false","" +"AB-0036","S042","","351100","3846250","GW","true","" +"NM-08461","","","594390","3618310","GW","false","" +"NM-24835","","","664839","3946910","GW","false","" +"NM-11081","","","403577","3652170","GW","false","" +"QY-0213","11.30.20.434","","611175","3891240","GW","true","" +"NM-26813","","","174907","3808610","GW","true","" +"WL-0013","","","533691","3974006","GW","true","I-25 N past Las Vegas to exit 387, turn right into Wagon Mound. Drive across railroad tracks, turn right (south) on NM-271. Follow NM-271 thru town (several turns), drive 7.8 miles to entrance of Archuleta ranch on right (just before MM 8). On dirt road, after water crossing, stay left. Home is 1.8 miles on right. Well is on road at corner with driveway." +"SO-0239","SFC-W04B","","312778","3721027","GW","true","" +"NM-00077","","","575925","3549570","GW","false","" +"NM-14214","","","551493","3699040","GW","false","" +"NM-17932","","","677232","3798650","GW","false","" +"NM-17445","","","652136","3788380","GW","false","" +"NM-19439","","","635289","3827500","GW","false","" +"SB-0021","TWDB 4709501","","504812","3517961","GW","false","" +"NM-05987","","","333487","3573340","GW","false","" +"NM-06145","","","137067","3582230","GW","false","" +"NM-16609","","","596513","3774730","GW","false","" +"TV-153","LQ-30","","443983","4024152","GW","true","Vista de Valle subdivision; small subdivision in Ranchos de Taos. Well in cement vault." +"NM-25214","","","641709","3963310","GW","false","" +"NM-10745","","","650999","3648090","GW","false","" +"NM-24232","","","375732","3932100","GW","false","" +"NM-14577","","","640350","3710960","GW","false","" +"NM-01318","","","627165","3908810","GW","false","" +"NM-20519","","","626811","3847280","GW","false","" +"NM-07438","","","190497","3606510","GW","false","" +"WL-0297","","","338931","3796375","GW","false","Will be escorted to wells." +"NM-17322","","","651810","3786400","GW","false","" +"NM-04740","","","670243","3554930","GW","false","" +"NM-23568","","","412353","3908350","GW","false","" +"BW-0641","12S4E2.141","","352960","3686330","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13994","","","544328","3695930","GW","false","" +"UC-0207","","","647241","3983797","GW","false","" +"SM-3035","","","427205","3632708","R","true","Roadcut exposure. Trevor Kludt collected." +"NM-00373","","","663285","3628680","GW","false","" +"WL-0035","","","634026","3695199","GW","true","Coming from Roswell on 380, before mile marker 212, make a left (north) on State Rd 457. Go 4 miles to first house on left @ address 381 9 Ranch Road. Well is by silver stock tank @ entrance to house." +"NM-14585","","","643726","3711220","GW","false","" +"NM-03543","","","622905","3963300","GW","false","" +"NM-16401","","","571337","3769860","GW","false","" +"NM-12291","","","666384","3673470","GW","false","" +"AR-0078","A010","NMED 359","238070","4086990","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 and continue to Rd 2650. Address is at end of Rd 2650 to left. If gate is not open, call first. Well is in green pumphouse behind house." +"QY-0973","9.32.10.323","","633431","3876000","GW","true","" +"QY-0826","7.32.31.333","","628148","3849690","GW","true","" +"NM-01277","","","230767","3903430","GW","false","" +"NM-04815","","","556467","3555170","GW","false","" +"NM-08870","","","190522","3628320","GW","false","" +"NM-27927","","","579467","3829530","GW","false","" +"NM-17486","","","255268","3791010","GW","false","" +"NM-17306","","","650994","3786200","GW","false","" +"NM-07656","","","285638","3607990","GW","false","" +"NM-09001","","","408336","3625240","GW","false","" +"NM-14459","","","129337","3712400","GW","false","" +"NM-26946","PW-123","","368378","3907723","GW","true","" +"NM-28184","","","171791","4022900","GW","false","" +"NM-22031","","","393033","3882730","GW","false","" +"NM-22614","","","351449","3889510","GW","false","" +"NM-11036","","","620286","3651670","GW","false","" +"NM-14742","","","415897","3717170","GW","false","" +"SD-0016","7N.6E.27.434","","381455","3851670","GW","true","" +"NM-13328","","","623690","3690210","GW","false","" +"DE-0032","","","588747","3603260","GW","true","From Carlsbad (junction of Greene & Canal Streets), drive east on Hobbs Highway (HWY 62) ~13.8 mi to CR-238, turn north (right). Drive north on CR-238 ~2.0 mi, then turn west (left) which is still CR-238. Follow CR-238 ~1.0 mi, well is on north (right) side of road west of the cement tank. Well may be buried so bring shovel." +"NM-13905","","","548671","3695460","GW","false","" +"NM-15063","","","628842","3730170","GW","false","" +"NM-04824","","","587567","3555540","GW","false","" +"NM-07375","","","616862","3600840","GW","false","" +"NM-03329","S181","","349271","3877220","GW","false","" +"NM-00012","","","343305","3525510","GW","false","" +"NM-03959","","","342599","3525030","GW","false","" +"NM-22830","","","361766","3892030","GW","false","" +"PP-063","PW-68","","439724","4005459","GW","true","" +"NM-11213","","","559824","3654440","GW","false","" +"NM-17530","","","575799","3788840","GW","false","" +"QY-0240","11.30.30.141","","609095","3890710","GW","true","" +"NM-14675","","","411464","3714430","GW","false","" +"QY-0574","5.29.13.412","","608479","3835420","GW","true","" +"NM-11500","","","402433","3659790","GW","false","" +"NM-21285","","","343968","3869520","GW","false","" +"QY-0714","6.30.27.434","","614666","3841450","GW","true","" +"NM-24283","","","423196","3933020","GW","false","" +"NM-18292","","","646332","3804340","GW","false","" +"NM-02548","","","560696","3618040","GW","false","" +"DA-0096","23S3E3.232","","347472","3579200","GW","true","" +"NM-25782","","","597389","3996110","GW","false","" +"QY-0616","5.29.5.312a","","600990","3838710","GW","true","" +"NM-28209","","","173124","4065860","GW","false","" +"NM-26974","","","322054","3785250","GW","true","" +"NM-25168","","","268339","3962030","GW","false","" +"NM-19419","","","403305","3826210","GW","false","" +"SM-1023","","","427522","3651672","SP","true","Upper La Luz Canyon, just to north inside Apache Spring canyon." +"TC-389","","","437131","4082045","GW","true","" +"NM-15408","","","614317","3741170","GW","false","" +"NM-06623","","","344277","3586380","GW","false","" +"NM-12630","","","288748","3679820","GW","false","" +"NM-18229","","","603530","3802900","GW","false","" +"NM-17433","","","644126","3788280","GW","false","" +"NM-22011","","","671350","3883540","GW","false","" +"NM-22295","","","349145","3886000","GW","false","" +"RA-048","","","422236","4005982","GW","true","Drive through property to get to well. Call Eli." +"DE-0130","","","672828","3616185","GW","false","" +"NM-02086","","","242996","3560586","GW","false","8.3 miles S of Pine St & NM 11 intersection in Deming on NM 11, go east 1.5 miles on CR B019, well is at end of road next to steel shed with sand separator equipment." +"CX-0073","25N27E35b","","586202","4023530","GW","true","" +"TO-0031","2N15E8.312","","463512","3807900","GW","true","" +"NM-02703","","","659268","3650510","GW","false","" +"NM-09206","","","538579","3627420","GW","false","" +"SO-0088","1S2E19.22","","336845","3786990","GW","true","" +"NM-10438","","","651079","3644580","GW","false","" +"NM-04182","","","171843","3542790","GW","false","" +"NM-03046","","","325696","3792370","GW","false","" +"TB-0074","","","404430","3675023","GW","true","Take Snake Tank Rd. off of Hwy 54 (just south of mile 89 on east side). Well before house by barn through rock pillar gate to blue casing NE of house." +"NM-22505","","","286699","3889540","GW","false","" +"NM-21174","","","382358","3866100","GW","false","" +"SA-1001","","","268698","3758024","ES","true","Hwy 60 to Bear Canyon Rd (FR 549) heading south. After turn off for Dufree Canyon, take next left on smaller dirt road. Follow back to GPS coords by lots of little camp sites." +"NM-09821","","","658005","3635500","GW","false","" +"NM-10599","","","535523","3645330","GW","false","" +"NM-05305","","","165679","3568010","GW","false","" +"NM-09320","","","558029","3628840","GW","false","" +"NM-02479","","","206193","3609090","GW","false","" +"SB-0493","TWDB 4834902","","427775","3474091","GW","false","" +"NM-25110","","","410652","3955380","GW","false","" +"NM-21869","","","369584","3881350","GW","false","" +"NM-00726","","","457923","3695920","GW","false","" +"NM-18472","","","571445","3806110","GW","false","" +"QY-0459","14.35.3.313a","","661624","3926150","GW","true","" +"NM-22185","","","354690","3884810","GW","false","" +"NM-04167","","","244990","3539840","GW","false","" +"CX-0004","31N26E15.3","","574688","4085940","GW","true","" +"NM-28233","","","194269","4075760","GW","false","" +"NM-08760","","","557910","3622490","GW","false","" +"NM-22967","","","613618","3893690","GW","false","" +"NM-01886","","","348368","3536430","GW","false","" +"NM-06123","","","285117","3577500","GW","false","" +"NM-06016","","","588094","3573260","GW","false","" +"NM-27003","","","321104","3766040","GW","true","" +"SM-0039","","","437634","3645978","GW","true","Hyw 82, turn South on Young Canyon Road between mi 21 and 22, head southward on main road. Owner will likely meet you. Need 4WD. Turn L onto Big Dipper; follow to end and turn L down steep road. Well is covered by bucket at bottom of hill." +"NM-14233","","","297998","3701140","GW","false","" +"NM-28188","","","444736","4022090","GW","false","" +"NM-23027","","","662529","3895090","GW","false","" +"SM-3021","","","437639","3609584","PS","true","Site visited and sampled by Trevor Kludt" +"NM-20521","","","644602","3847970","GW","false","" +"NM-03196","","","325835","3828450","GW","false","" +"NM-25944","","","389909","4006120","GW","false","" +"NM-22939","","","391207","3893110","GW","false","" +"SB-0857","Mayer 13","","497769","3572719","GW","false","" +"NM-14518","","","636644","3708470","GW","false","" +"TB-0059","","","403882","3688491","GW","true","Take Three Rivers Road at store, head east. Several miles back take a south (right) turn by sign to Ranch Headquarters. Follow road through big white concrete fences, curve to south after passing through 2nd white concrete gate. Well is just north of little shed." +"NM-19252","","","559775","3822020","GW","false","" +"NM-21077","","","676039","3863780","GW","false","" +"NM-07801","","","229207","3611520","GW","false","" +"NM-08500","","","243199","3621850","GW","false","" +"NM-05830","","","337682","3571150","GW","false","" +"NM-08795","","","409723","3623220","GW","false","" +"NM-11133","","","478182","3652620","GW","false","" +"EB-614","","","407590","3973550","GW","true","" +"AR-0122","A012","NMED 249","239880","4088771","GW","true","From Aztec @ Hwy 516 & Ruins Rd, drive north on Ruins Rd. Follow Ruins Rd for 7.7 miles (road becomes Rd 2900) to Rd 2626 and turn right (east). Drive 300 ft then ignore address 7 marker and bear right around 11 Rd 2626, then turn left (north) on dirt drive to Winer house. Well is behind barn in rabbit area." +"NM-27586","","","671288","3793670","GW","false","" +"NM-01825","","","346013","3524680","GW","false","" +"AB-0205","S260","","320930","3823950","GW","true","" +"NM-21736","","","348359","3880290","GW","false","" +"NM-01644","","","661323","3542980","GW","false","" +"DE-0218","","","639745","3628499","GW","false","" +"UC-0218","","","649880","4056581","GW","false","" +"NM-19410","","","232444","3829260","GW","false","" +"NM-17706","","","637157","3792340","GW","false","" +"NM-20480","","","589070","3845420","GW","false","" +"NM-06410","","","582951","3581560","GW","false","" +"NM-11835","","","564168","3664540","GW","false","" +"NM-17784","","","624056","3794530","GW","false","" +"TB-1030","","","409584","3682527","SP","true","" +"NM-18941","","","177661","3819370","GW","false","" +"NM-19021","","","561040","3815650","GW","false","" +"EB-135","","","401760","3938450","GW","true","" +"NM-23085","","","390477","3895460","GW","false","" +"NM-22563","","","236816","3891530","GW","false","" +"NM-05924","","","250168","3574080","GW","false","" +"NM-24488","","","399683","3938400","GW","false","" +"QY-0084","10.32.19.212","","629016","3883260","GW","true","" +"NM-01155","","","349874","3866760","GW","false","" +"NM-20365","","","677045","3844500","GW","false","" +"NM-03375","","","643607","3885240","GW","false","" +"NM-04704","","","243677","3556580","GW","false","" +"NM-01991","","","345094","3549170","GW","false","" +"NM-02617","","","557002","3631050","GW","false","" +"CX-0019","28N26E13.2","","578822","4058110","GW","true","" +"NM-15560","","","675077","3745140","GW","false","" +"SB-0351","TWDB 4807712","","476775","3526915","GW","false","" +"NM-18132","","","660999","3801950","GW","false","" +"NM-05129","","","408917","3559950","GW","false","" +"NM-15433","","","160303","3746880","GW","false","" +"NM-06934","","","570494","3591290","GW","false","" +"NM-17860","","","635093","3797080","GW","false","" +"NM-17431","","","637166","3788180","GW","false","" +"SO-0221","SBB-W02B","","322383","3733193","GW","true","" +"NM-04694","","","341158","3554100","GW","false","" +"NM-15636","","","678407","3747270","GW","false","" +"DA-0189","23S1E16.444","","325635","3575330","GW","true","" +"NM-08538","","","178766","3624310","GW","false","" +"SA-0104","","","246466","3712852","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south to the Cupit Ranch HQ on the west side of the road and continue south to MM 42 (Watch the previous MM as this one appears to be correctly # 42 but says # 39 from the north side. NICE!) Turn to the west heading up Silver Creek across the eroded flats to the north/northwest. Go 2.3 miles and stay on the main road to the west (left) and continue on approx. 2.2. miles. Canyon will narrow, look for old log cabin. Continue west across drainage to the end of the road and look for the well by the cement box at the end of the road under the windmill. Solar turns off at the power pole." +"SB-0057","TWDB 4717206","","506026","3511126","GW","false","" +"NM-17877","","","614641","3796900","GW","false","" +"NM-15531","","","677759","3744790","GW","false","" +"NM-22332","","","342359","3886520","GW","false","" +"NM-04020","","","257832","3530680","GW","false","" +"NM-14311","","","547224","3700720","GW","false","" +"NM-00581","","","662274","3662010","GW","false","" +"ED-0268","23S22E2.242","","531278","3577720","GW","true","" +"NM-00867","","","371283","3756780","GW","false","" +"NM-09243","","","664868","3629480","GW","false","" +"NM-28339","237701","","132258","3724051","SP","false","Gila National Forest" +"NM-15498","","","133852","3749250","GW","false","" +"NM-19485","","","179897","3832290","GW","false","" +"NM-26864","","","155951","3660340","GW","true","" +"SB-0127","TWDB 4726701","","511841","3488164","GW","false","" +"NM-13695","","","548265","3693850","GW","false","" +"TC-386","","","413031","4088273","GW","true","" +"NM-03065","","","661027","3799770","GW","false","" +"DA-0151","26S3E4.333","","344460","3549240","GW","true","" +"NM-06012","","","666622","3574150","GW","false","" +"NM-03237","","","574623","3836360","GW","false","" +"NM-17525","","","678104","3790440","GW","false","" +"BC-0043","34","","377155","3889940","GW","true","" +"NM-27997","","","355754","3879850","GW","false","" +"TO-0014","2N5E3.31","","370202","3810060","GW","true","" +"SB-0421","TWDB 4815102","","480133","3524137","GW","false","" +"NM-02883","","","415946","3722740","GW","false","" +"PB-0011","","","375629","3936512","GW","true","Going N on Hwy 22 toward Pena Blanca, turn W on Indian Service Rt 88. Follow through Kewa Pueblo and across river, then turn N on Indian Service Rt 85. Follow Rd to address. Well is in well house between house and field." +"NM-24005","","","475043","3922900","GW","false","" +"NM-08919","","","348527","3625290","GW","false","" +"NM-19624","","","597879","3830040","GW","false","" +"NM-06798","","","220870","3592390","GW","false","" +"NM-13548","","","411417","3692440","GW","false","" +"ED-0236","22S27E29.311","","573485","3580820","GW","true","" +"NM-16208","","","678601","3764220","GW","false","" +"NM-23662","PW-302","","360766","3910870","GW","false","" +"EB-389","","","403458","3936959","GW","true","West of ponds across from center road; NE toe of primary lagoon" +"NM-12967","","","560989","3683760","GW","false","" +"NM-07964","","","662145","3611390","GW","false","" +"NM-00424","","","450771","3634790","GW","false","" +"NM-26431","","","223647","4065340","GW","false","" +"NM-17033","","","656758","3782880","GW","false","" +"AB-0038","S044","","354427","3884530","GW","true","" +"SB-0148","TWDB 4734703","","515608","3473206","GW","false","" +"NM-04852","","","244759","3558930","GW","false","" +"NM-18049","","","180274","3804630","GW","false","" +"NM-09081","","","555079","3626020","GW","false","" +"NM-26530","","","583695","4064590","GW","false","" +"NM-16933","","","640097","3780460","GW","false","" +"NM-05133","","","674987","3561080","GW","false","" +"NM-24430","","","300263","3939020","GW","false","" +"WL-0082","","","164207","3536270","GW","true","Go to Playas training center. Going S on Smelter rd. go left (east) on Playas Blvd. Roughly 0.7 miles down the road make a right on dirt road. This road leads to well site. Well #2 is the northern most well. It is in a fenced enclosure." +"NM-16320","","","285370","3769190","GW","false","" +"NM-26679","","","641599","4077130","GW","false","" +"EB-295","","","413149","3953989","GW","true","Turn North onto Camino de los Montoyas off of 599, just east of big church. Follow for about 1 mile to large tower, and turn right and immediately left thru barb wire gate. Follow two track through archery site (0.4 mile) until big turn." +"BC-0134","117","","381717","3890810","GW","true","" +"NM-01124","","","637555","3858060","GW","false","" +"NM-21302","","","538370","3868910","GW","false","" +"NM-03247","","","576264","3838000","GW","false","" +"JM-501","","","310516","3663366","L","true","Take CRA18 south from Engle 6.5 miles to Divide Well Rd. Turn right. At railroad tracks turn right, follow to edge of water." +"NM-10020","","","559100","3636820","GW","false","" +"NM-09152","","","195312","3631500","GW","false","" +"MG-020","WF-8","","291133","3776248","GW","true","Blue Sky Lane in Gold West subdivision. Located at the first driveway on the left. House is grey with fence around the front yard. Well is south of house past dog kennel." +"NM-26018","","","324637","4014340","GW","false","" +"NM-01338","","","665913","3912810","GW","false","" +"NM-05886","","","247330","3573690","GW","false","" +"NM-10852","","","653988","3649580","GW","false","" +"NM-17120","","","651875","3783970","GW","false","" +"SB-0461","TWDB 4823701","","477319","3499450","GW","false","" +"NM-20136","","","606005","3838880","GW","false","" +"BW-0568","7S10E2","","419033","3732340","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04156","","","244613","3539480","GW","false","" +"NM-11807","","","286512","3666400","GW","false","" +"NM-23116","","","350923","3896590","GW","false","" +"NM-27086","","","319804","3774570","GW","true","" +"NM-13837","","","543945","3695130","GW","false","" +"DE-0283","","","663213","3634582","GW","false","" +"NM-22207","","","373534","3884830","GW","false","" +"NM-00784","","","464367","3706120","GW","false","" +"NM-11374","","","478140","3657390","GW","false","" +"EB-038","","","417640","3942428","GW","true","" +"NM-23611","","","371934","3909570","GW","false","" +"SA-0064","SA-64_R00","","194909","3739780","GW","true","From SR12 @ milemarker 40, turn south on Cty Rd B019 and go 14.4 miles. Look for 2-track road to left heading to well visible in the distance to north. Sign @ intersection ""F-D Cattle Co. LLC"". 2.2 miles to WM." +"BW-0504","8S5E32.431","","365455","3715490","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"PC-126","PW-213","","364930","3914310","GW","true","" +"NM-08111","","","363122","3613340","GW","false","" +"NM-22586","","","237179","3891800","GW","false","" +"NM-14111","","","548299","3697520","GW","false","" +"BC-0058","49","","377820","3886240","GW","true","" +"NM-01464","","","240857","3948630","GW","false","" +"NM-24950","","","405101","3948350","GW","false","" +"NM-17879","","","572108","3796320","GW","false","" +"SD-0398","13N.5E.15.242","","373588","3913690","SP","true","" +"NM-05450","","","602533","3565630","GW","false","" +"NM-00255","","","574480","3590450","GW","false","" +"NM-14847","","","544572","3721340","GW","false","" +"NM-13301","","","642871","3690480","GW","false","" +"NM-14755","","","546935","3717720","GW","false","" +"TS-036h","","","436174","4042612","SP","true","Small spring on east side." +"NM-03343","","","509223","3876740","GW","false","" +"NM-05664","","","328951","3568740","GW","false","" +"NM-11900","","","564007","3665340","GW","false","" +"NM-28327","SC-19","","440802","4049130","GW","false","" +"NM-27728","","","629128","3790220","GW","false","" +"NM-28317","PIL-13","","429568","4014639","GW","false","" +"NM-14717","","","552641","3715770","GW","false","" +"AB-0078","S090","","342194","3810190","GW","true","" +"NM-24012","","","405749","3924030","GW","false","" +"NM-22870","","","376725","3892310","GW","false","" +"OG-0023","","","639270","3821574","GW","true","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1.5 miles south. Turn right west onto dirt. Drive 0.3 miles west, turn left south into field. Drive 0.15 miles to well." +"NM-05089","","","670200","3560600","GW","false","" +"NM-26968","PW-071","","373711","3911970","GW","true","" +"NM-20687","","","134440","3857810","GW","false","" +"NM-25173","","","279295","3961960","GW","false","" +"NM-06239","","","155767","3583830","GW","false","" +"QY-0906","8.32.28.334","","631233","3860900","GW","true","" +"NM-10709","","","664513","3647560","GW","false","" +"NM-18522","","","635061","3808080","GW","false","" +"NM-00780","","","464546","3705560","GW","false","" +"SV-0075","20 Osito","","377687","3899419","GW","false","Unit 3 Lot 47" +"NM-14339","","","135405","3708010","GW","false","" +"TC-280","CO-27b","","411594","4101475","GW","true","" +"NM-17039","","","655408","3782420","GW","false","" +"NM-20775","","","215896","3856900","GW","false","" +"NM-22559","","","374978","3888540","GW","false","" +"HS-033","TC-033","","289272","3667836","GW","true","Between Broadway and Main on the peninsula " +"MI-0079","","","456385","3918161","GW","true","Topographic situation: " +"NM-22792","","","378938","3891260","GW","false","" +"NM-07791","","","182882","3612700","GW","false","" +"SB-0499","TWDB 4836101","","441569","3484996","GW","false","" +"TB-0028","","","400961","3683403","GW","true","south of pivot on road to old rail tank." +"NM-23218","","","354735","3898610","GW","false","" +"NM-00806","","","451361","3711040","GW","false","" +"SB-0191","TWDB 4757902","","508510","3433053","GW","false","" +"NM-26025","","","244458","4017040","GW","false","" +"NM-00483","","","269354","3647080","GW","false","" +"AB-0136","S180","","349271","3877220","GW","true","" +"NM-06104","","","155901","3580550","GW","false","" +"BW-0558","11S8E27.4","","390836","3688430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27500","","","472058","3733130","GW","false","" +"AB-0004","S005","","340803","3884420","GW","true","" +"NM-21939","","","350467","3882130","GW","false","" +"NM-27031","","","324904","3770590","GW","true","" +"NM-12994","","","625876","3685130","GW","false","" +"NM-11007","","","409896","3650790","GW","false","" +"NM-22721","","","379027","3890370","GW","false","" +"EB-137","","","409540","3954860","GW","true","Paseo de Aguila" +"NM-09767","","","680064","3635260","GW","false","" +"SO-0174","HWY-W03B","","328647","3755358","GW","true","" +"QY-0171","11.29.36.222","","608424","3889370","GW","true","" +"QY-0657","5.30.34.244","","615150","3830950","GW","true","" +"MI-0294","","","468933","3965898","GW","true","Topographic situation: Valley" +"NM-26859","","","495477","4070620","GW","true","" +"NM-11997","","","400329","3667110","GW","false","" +"TB-0143","","","416035","3702978","GW","true","Three Rivers Road - to end of road. Well to right behind cabin by block house." +"NM-04281","","","346802","3542370","GW","false","" +"NM-09581","","","555388","3631250","GW","false","" +"BC-0186","166","","379305","3885270","GW","true","" +"NM-18712","","","674606","3811880","GW","false","" +"NM-19456","","","541427","3826380","GW","false","" +"SB-0221","TWDB 4807105","","476851","3537383","GW","false","" +"NM-02157","","","666851","3565070","GW","false","" +"NM-09508","","","560644","3630730","GW","false","" +"NM-26469","","","459288","4062250","GW","false","" +"DE-0067","","","540490","3592280","GW","false","" +"NM-20824","","","625493","3854380","GW","false","" +"NM-05216","","","221972","3564980","GW","false","" +"BW-0620","7S6E29.414","","375416","3727550","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13678","","","613379","3694240","GW","false","" +"NM-14417","","","419035","3704050","GW","false","" +"NM-10794","","","470046","3647710","GW","false","" +"NM-11257","","","677146","3657180","GW","false","" +"NM-07059","","","339084","3594650","GW","false","" +"NM-17970","","","583700","3797870","GW","false","" +"NM-04196","","","199852","3542270","GW","false","" +"SD-0099","9N.6E.30.213","","377850","3871790","GW","true","" +"HS-074","TC-074","","289374","3668447","GW","true","Northwest corner of 4th & Juniper. Well in west yard at gate." +"NM-19164","","","342518","3820250","GW","false","" +"NM-05694","","","137613","3574100","GW","false","" +"TO-0380","8N11E21.124","","429063","3863430","GW","true","" +"NM-04324","","","244703","3546230","GW","false","" +"NM-15296","","","673747","3739110","GW","false","" +"NM-05242","","","321993","3563190","GW","false","" +"TB-0055","","","407516","3650959","GW","true","Well at McGinn's Pistachio Ranch, along Hwy 54 at big pistachio. Go around back of store, take gravel road through orchards toward the south. Park at junction of powerlines, go past new well south through orchard 100 ft." +"QY-0349","11.35.14.224","","664519","3894820","GW","true","" +"BW-0511","18S7E14.33","","387254","3623350","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22495","","","374461","3887810","GW","false","" +"NM-08982","","","553551","3624780","GW","false","" +"SB-0128","TWDB 4726702","","515638","3488199","GW","false","" +"HS-088","TC-088","","289661","3667657","GW","true","In block 10 in Hot Springs, NM" +"NM-22659","","","381574","3889660","GW","false","" +"NM-23966","","","447706","3921230","GW","false","" +"NM-25692","","","200367","3993480","GW","false","" +"QY-0553","5.27.17.441","","582674","3834750","GW","true","" +"NM-26876","PW-31","","438422","4002516","GW","true","" +"AB-1001","S041","","365801","3873940","SP","true","" +"NM-14778","","","573707","3718720","GW","false","" +"NM-20101","","","621940","3838740","GW","false","" +"UC-0131","","","597048","4035426","GW","false","USGS, not in NESWCD network, not visited by NMBGMR" +"NM-18388","","","660159","3805980","GW","false","" +"NM-01027","","","673939","3833950","GW","false","" +"SD-0352","8N.8E.6.44","","396434","3867420","SP","true","" +"DE-0292","","","673517","3584411","GW","false","" +"NM-20830","","","525631","3853710","GW","false","" +"UC-0068","","","651420","4040528","GW","true","Start in Clayton, NM at the intersection of US 56 and US 87. +Start/0.0 mi Proceed northwest out of Clayton on US 87. +8.1 mi Turn right (north) onto Co Rd A066/Royce Rd. +9.2 mi Turn right (east) onto dirt road. Proceed 1.2 miles to site. Road after gate goes north, then turns east, eventually turns south to windmill in open valley" +"NM-19534","","","228815","3831650","GW","false","" +"NM-07700","","","654828","3607480","GW","false","" +"NM-19461","","","629196","3827660","GW","false","" +"NM-19323","","","663287","3825390","GW","false","" +"NM-18531","","","617494","3807900","GW","false","" +"BW-0289","15S10E30.344","","404591","3649120","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0615","TWDB 4864605","","499761","3438345","GW","false","" +"NM-21979","","","373905","3882360","GW","false","" +"NM-10060","","","284110","3639640","GW","false","" +"NM-19075","","","595592","3817110","GW","false","" +"NM-03853","","","349519","3520030","GW","false","" +"NM-10959","","","550872","3649830","GW","false","" +"NM-06176","","","671057","3578050","GW","false","" +"NM-21981","","","386188","3882230","GW","false","" +"NM-17774","","","602300","3793920","GW","false","" +"DE-0281","","","663195","3634552","GW","false","" +"NM-07508","","","668151","3604620","GW","false","" +"NM-23903","","","430263","3918850","GW","false","" +"BC-0216","216","","380752","3886260","GW","true","" +"NM-03899","","","142306","3527640","GW","false","" +"NM-18769","","","596594","3811580","GW","false","" +"NM-21679","","","340339","3879500","GW","false","" +"NM-24304","","","396209","3934000","GW","false","" +"BC-0298","308","","377023","3892730","GW","true","" +"NM-02660","","","548049","3643130","GW","false","" +"NM-22479","","","676246","3888470","GW","false","" +"WL-0304","","","352012","3804235","GW","false","Will be escorted to well." +"NM-03023","","","656967","3796410","GW","false","" +"NM-08073","","","308928","3613610","GW","false","" +"NM-16074","","","241074","3760990","GW","false","" +"EB-483","","","396748","3965176","GW","true","USGS Site ID from Anderholm, 1994 USGS WRI Report 94-4078" +"NM-18212","","","364098","3802790","GW","false","" +"NM-14593","","","543309","3710060","GW","false","" +"NM-11590","","","563881","3660900","GW","false","" +"SR-0003","","","518281","3544200","SP","true","Gualadule Mtns; Descend Tr. 202 from FR 3008" +"NM-18646","","","666152","3810560","GW","false","" +"NM-15020","","","562691","3728180","GW","false","" +"BC-0205","205","","375904","3884840","GW","true","" +"NM-14222","","","548136","3699090","GW","false","" +"EB-464","","","413110","3942883","GW","true","" +"QY-0215","11.30.20.444","","611546","3891310","GW","true","" +"WL-0055","NM3574125","","463750","3965246","GW","true","North on 518 out of Las Vegas, NM, make left on 94 @ Sapello, then left on 105 towards Rociada, NM. Make a left @ Pendaries Village Lane (there are signs for Pendaries), right @ intersection. Pumphouse and well are down road ~0.5 miles on right side of road (north). Well ~500 ft. from road in fenced enclosure outisde of wellhouse." +"NM-14800","","","139107","3725990","GW","false","" +"NM-12158","","","557244","3669730","GW","false","" +"SB-0466","TWDB 4824203","","492133","3512267","GW","false","" +"NM-00399","","","410236","3631040","GW","false","" +"NM-05251","","","678429","3563510","GW","false","" +"BW-0203","14S9E26.322","","401385","3659290","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22118","","","673509","3884630","GW","false","" +"NM-15420","","","417727","3741050","GW","false","" +"QU-098","MW-14","","445239","4061614","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road." +"SM-4053","","","461098","3642702","PS","true","Stream flow measurement by Patrick Walsh" +"NM-06099","","","589831","3574960","GW","false","" +"NM-00998","","","677684","3821610","GW","false","" +"NM-09743","","","282479","3635270","GW","false","" +"NM-11575","","","667516","3661850","GW","false","" +"NM-18406","","","676545","3806620","GW","false","" +"SM-3039","","","467110","3623541","R","true","Location is approximate. API 30-005-62259. Core sample from 545-548 ft depth. Muddy limestone (fizzes when powdered)." +"NM-22404","","","308093","3887950","GW","false","" +"NM-11766","","","565702","3663780","GW","false","" +"NM-05773","","","133721","3575260","GW","false","" +"NM-09099","","","630394","3627340","GW","false","" +"NM-25743","","","398834","3993810","GW","false","" +"NM-08695","","","206663","3625910","GW","false","" +"SM-0107","","","459897","3621667","GW","true","From Pinon, drive approxiamtely 8 miles north along route 24 to Avis (ghost town). At the Dog Canyon Road, turn right, and proceed 2.6 miles down canyon, passing close to an unnamed ranch headquaters. Well is on the left, past the ranch headquaters, about 50 m from the road." +"AB-0131","S166","","344655","3940140","GW","true","" +"NM-18405","","","591857","3805270","GW","false","" +"NM-03875","","","180971","3525170","GW","false","" +"NM-11185","","","557882","3653870","GW","false","" +"NM-04592","","","179178","3556130","GW","false","" +"NM-06923","","","365069","3591510","GW","false","" +"NM-24520","","","402459","3939040","GW","false","" +"NM-20003","","","633376","3836460","GW","false","" +"NM-27730","","","597049","3789830","GW","false","" +"NM-27427","","","612489","3668330","GW","false","" +"NM-26646","","","193744","4078060","GW","false","" +"NM-12340","","","559066","3672570","GW","false","" +"SB-0775","TWDB 4924801","","397452","3500487","GW","false","" +"NM-17720","","","628342","3793410","GW","false","" +"NM-07630","NH-008","","285315","3607510","GW","false","" +"NM-12050","","","554018","3667580","GW","false","" +"NM-16068","","","197259","3762070","GW","false","" +"NM-12246","","","554647","3670820","GW","false","" +"NM-09292","","","285216","3630680","GW","false","" +"JM-057","JSAI Exp Well 6","","314718","3647895","GW","true","" +"NM-05385","","","241197","3567370","GW","false","" +"NM-07150","","","672749","3596720","GW","false","" +"NM-27503","","","320474","3740940","GW","false","" +"NM-08291","","","209491","3619230","GW","false","" +"NM-05983","","","586559","3572260","GW","false","" +"AS-007","DM-02","","446035","4042380","GW","true","" +"WL-0116","","","574943","3572855","GW","true","Must meet with Ryan prior to visiting well." +"NM-02146","","","636583","3563620","GW","false","" +"SB-0434","TWDB 4815304","","485625","3524189","GW","false","" +"NM-01796","","","351612","3521040","GW","false","" +"NM-05275","","","678450","3563820","GW","false","" +"NM-25798","","","478100","3996700","GW","false","" +"NM-26579","","","446395","4068140","GW","false","" +"NM-19689","","","674935","3832350","GW","false","" +"NM-11992","","","291955","3668660","GW","false","" +"NM-23740","","","639262","3914080","GW","false","" +"NM-24990","","","253511","3952090","GW","false","" +"NM-27710","","","671888","3797250","GW","false","" +"NM-03134","","","610821","3812840","GW","false","" +"NM-17257","","","644630","3785490","GW","false","" +"NM-07636","","","277078","3607870","GW","false","" +"UC-0217","","","675446","3955669","GW","false","" +"NM-18630","","","652023","3810320","GW","false","" +"NM-25291","","","224224","3970200","GW","false","" +"CX-0095","23N23E1.1","","549462","4012950","GW","true","" +"CX-0017","28N26E11.4a","","577143","4059020","GW","true","" +"NM-06950","","","674958","3592810","GW","false","" +"BW-0666","2.10.14.20.400","","455303","3881840","GW","true","" +"NM-16009","","","330613","3756900","GW","false","" +"NM-07203","","","672888","3597730","GW","false","" +"OG-0007","","","637867","3823440","GW","true","From int of SR 311 and US 60, west of Clovis, drive 20 miles north and west on SR 311. Turn left south on CR AB. Drive 0.5 miles south. Turn right west onto dirt, drive 0.15 miles to well." +"NM-20315","","","650158","3842550","GW","false","" +"NM-23623","","","486341","3909070","GW","false","" +"NM-03534","","","632199","3957920","GW","false","" +"NM-08373","","","290351","3618710","GW","false","" +"NM-21842","","","351195","3881540","GW","false","" +"BW-0080","8S6E22.424","","378936","3719230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02619","","","559078","3631640","GW","false","" +"NM-05973","","","647202","3572680","GW","false","" +"NM-10968","","","554063","3649940","GW","false","" +"NM-26095","","","407100","4020650","GW","false","" +"NM-04408","","","253932","3548900","GW","false","" +"NM-14171","","","581816","3698580","GW","false","" +"NM-21576","","","347306","3877430","GW","false","" +"CX-0114","18","","547508","4066850","GW","true","1/2 mile northwest of Hebron" +"DE-0363","","","569124","3626635","GW","false","" +"NM-28119","","","641287","3918520","GW","false","" +"NM-26654","","","194131","4078380","GW","false","" +"BC-0378","381","","","","GW","false","" +"NM-03139","","","678717","3814550","GW","false","" +"NM-04169","","","244622","3539850","GW","false","" +"SV-0018","46 Camino Real","","379441","3899104","GW","false","Unit 2 Lot 58A" +"NM-18954","","","604597","3814870","GW","false","" +"NM-01691","","","283336","4063160","GW","false","" +"ED-0130","21S27E29.311","","574296","3590520","GW","true","" +"NM-05678","","","233636","3570860","GW","false","" +"NM-14181","","","544549","3698520","GW","false","" +"SB-0033","TWDB 4709807","","505787","3514944","GW","false","" +"NM-26492","","","460449","4062650","GW","false","" +"NM-16759","","","655064","3778440","GW","false","" +"NM-08143","","","307259","3614830","GW","false","" +"NM-16786","","","537625","3777360","GW","false","" +"EB-528","","","406711","3943527","GW","true","" +"DE-0370","","","569249","3626569","GW","false","" +"NM-19548","","","174381","3833680","GW","false","" +"TV-103","","","439575","4020899","GW","true","In NW corner of Estancias Atalaya subdivision. Well, pressure tanks (5), and meters in two cement vaults." +"AR-0218","","","226473","4076865","GW","true","Heading north on Hwy 516 out of Flora Vista, turn right on Rd. 3050 going left at the tee on Rd. 3050. Turn right (south) on Rd 3400, go about 1 mile, turn left onto Rd 3335, then right on Rd 3336. House is down block on left. Well is located in shed to west of house." +"NM-21020","","","528891","3858930","GW","false","" +"DE-0066","","","540753","3592272","GW","false","" +"NM-19185","","","638852","3821020","GW","false","" +"NM-09876","","","569769","3634980","GW","false","" +"NM-00941","","","192473","3809650","GW","false","" +"NM-24794","","","460141","3944760","GW","false","" +"SA-0468","6S14W19.122","","192030","3742690","GW","true","" +"NM-25327","","","468850","3968420","GW","false","" +"NM-14183","","","547312","3698590","GW","false","" +"NM-19198","","","538804","3820090","GW","false","" +"QY-0350","11.35.23.123","","663552","3893260","GW","true","" +"SB-0578","TWDB 4861101","","453997","3443401","GW","false","" +"NM-07442","","","576991","3602050","GW","false","" +"QY-0672","6.28.10.133","","594374","3846840","GW","true","" +"NM-20836","","","578009","3854220","GW","false","" +"NM-02444","M-160","","189567","3600140","GW","false","" +"NM-10200","","","337095","3640880","GW","false","" +"NM-05017","S2016-026_C-2569","","618664","3558910","GW","true","" +"BW-0110","9S8E31.343","","393294","3705490","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22587","","","379259","3888820","GW","false","" +"NM-18193","","","663784","3802900","GW","false","" +"NM-04891","","","267491","3558720","GW","false","" +"NM-20541","","","625025","3847660","GW","false","" +"NM-27373","","","300036","3616370","GW","false","" +"AH-051","TL-02","","439722","4044742","GW","true","" +"NM-25621","","","242632","3987200","GW","false","" +"NM-13549","","","410410","3692480","GW","false","" +"NM-21127","","","316574","3865090","GW","false","" +"SM-1086","","","448175","3616264","SP","true","" +"NM-14343","","","144476","3707700","GW","false","" +"NM-20794","","","594964","3853300","GW","false","" +"NM-06571","","","676284","3585780","GW","false","" +"NM-09180","","","636207","3628490","GW","false","" +"NM-05881","","","591359","3570880","GW","false","" +"NM-25349","","","349408","3970970","GW","false","" +"NM-28338","121493","","138822","3693670","SP","false","" +"NM-19787","","","342438","3833520","GW","false","" +"NM-19334","","","658209","3825640","GW","false","" +"NM-16293","","","655317","3767750","GW","false","" +"NM-12520","","","654678","3676490","GW","false","" +"NM-12390","","","664933","3674990","GW","false","" +"NM-26166","","","445058","4025660","GW","false","" +"NM-08459","","","186851","3622660","GW","false","" +"NM-00357","","","630159","3625360","GW","false","" +"NM-01751","","","169474","3493390","GW","false","" +"SM-0191","","","502840","3646748","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-15652","","","620220","3746230","GW","false","" +"NM-01722","","","306385","4077470","GW","false","" +"NM-27037","","","323270","3771130","GW","true","From NMT campus, west on Canyon Road to Fine Arts building on south side of road. Well is in large pumphouse just south of Fine Arts building." +"NM-24806","","","408966","3945290","GW","false","" +"QY-1036","14.35.34.343","","662105","3917910","SP","true","" +"SD-0040","7N.7E.29.341","","387305","3851590","GW","true","" +"NM-04563","","","331605","3551940","GW","false","" +"NM-00417","","","409766","3633690","GW","false","" +"WL-0166","","","597175","3699678","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well inside small, round metal structure with pointed roof." +"NM-15372","","","617413","3740380","GW","false","" +"NM-26903","PW-113","","370190","3907427","GW","true","" +"NM-08949","","","409607","3624760","GW","false","" +"NM-25693","","","424504","3988710","GW","false","" +"NM-04700","","","136405","3559420","GW","false","" +"QY-0962","9.30.5.323","","610784","3877280","GW","true","" +"NM-27549","","","662177","3792400","GW","false","" +"SB-0133","TWDB 4733301","","510842","3484561","GW","false","" +"NM-04646","","","254428","3555330","GW","false","" +"NM-26413","","","571776","4060020","GW","false","" +"NM-06283","","","675542","3580370","GW","false","" +"TC-202","TP-16","","431099","4062420","GW","true","" +"TS-047","","","435555","4041014","SP","true","Marsh and seeps on east side." +"BW-0586","18S10E28.4","","414209","3619730","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14496","","","654359","3707840","GW","false","" +"NM-19996","","","395120","3835890","GW","false","" +"NM-18816","","","626542","3812950","GW","false","" +"TB-0144","","","417892","3704027","GW","true","Back west from Bataan Lodge to 2 track on right (north) back east to windmill. Well under windmill." +"NM-22180","","","403533","3884070","GW","false","" +"SB-0758","TWDB 4924416","","395043","3507193","GW","false","" +"NM-03502","","","529937","3931500","GW","false","" +"SD-0157","10N.5E.15.433a","","373219","3883540","GW","true","50+/- feet from well 10.5.15.433." +"BW-0536","19S7E5.3","","382551","3616930","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17213","","","193473","3788730","GW","false","" +"NM-07309","","","279173","3601140","GW","false","" +"OG-0062","","","647992","3806685","GW","true","" +"NM-00449","","","646506","3639520","GW","false","" +"NM-15090","","","145544","3736610","GW","false","" +"NM-04193","","","345358","3538880","GW","false","" +"NM-15937","","","328467","3754690","GW","false","" +"NM-00450","","","410825","3638610","GW","false","" +"NM-11975","","","554906","3666390","GW","false","" +"WL-0149","","","427792","3936558","GW","true","From Santa Fe, drive north on I-25 and take exit 297 (Valencia). Make right turns so that you are driving back toward Santa Fe frontage road (Sabino Gonzales). Drive ~ 0.7 miles to address (63 Sabino Gonzales) on right (north) side of road. Turquoise gate. Well is in well house." +"NM-19032","","","567644","3816100","GW","false","" +"NM-20923","","","626220","3856950","GW","false","" +"NM-06273","","","551210","3578850","GW","false","" +"NM-11259","","","630737","3656300","GW","false","" +"NM-24016","","","403408","3924370","GW","false","" +"NM-24168","","","337060","3930910","GW","false","" +"PC-113","PW-195","","365655","3909357","GW","true","" +"NM-02273","","","333477","3573320","GW","false","" +"NM-16405","","","293720","3771990","GW","false","" +"NM-03538","","","618533","3959820","GW","false","" +"NM-21211","","","570036","3867000","GW","false","" +"NM-18205","","","674653","3803930","GW","false","" +"NM-09117","","","456375","3626420","GW","false","" +"SM-4077","","","437427","3619297","PS","true","Stream flow measurement by Patrick Walsh" +"QY-0310","11.32.23.443","","635556","3891680","GW","true","" +"NM-03657","","","595938","4067960","GW","false","" +"NM-20013","","","668060","3837680","GW","false","" +"NM-08319","","","678519","3617120","GW","false","" +"BW-0416","17S10E31.412","","410834","3627210","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05589","","","332788","3568060","GW","false","" +"NM-12312","","","632557","3673200","GW","false","" +"NM-10300","","","555073","3641200","GW","false","" +"NM-14978","","","607432","3726830","GW","false","" +"BW-0748","2.4.24.1","","557158","3828810","GW","true","" +"QU-146","TPZ-2","","443757","4060950","GW","true","" +"NM-18530","","","667874","3808550","GW","false","" +"NM-15439","","","673521","3743080","GW","false","" +"NM-07144","","","672587","3597020","GW","false","" +"BW-0259","15S9E1.442","","403809","3655610","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18693","","","568887","3810190","GW","false","" +"NM-16338","","","309234","3769260","GW","false","" +"NM-02586","","","184360","3629110","GW","false","" +"NM-15886","","","211904","3755940","GW","false","" +"NM-03520","","","630040","3945810","GW","false","" +"NM-19523","","","637074","3829160","GW","false","" +"NM-20117","","","575246","3838030","GW","false","" +"NM-12345","","","560412","3672640","GW","false","" +"NM-17538","","","633639","3789690","GW","false","" +"BC-0025","16","","368290","3882280","GW","true","" +"NM-21938","","","263348","3883950","GW","false","" +"SM-0157","","","501986","3617223","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-00157","","","365856","3570160","GW","false","" +"NM-21961","","","368379","3882160","GW","false","" +"NM-05558","","","646322","3567870","GW","false","" +"NM-01249","","","607069","3893460","GW","false","" +"NM-10208","","","661163","3641220","GW","false","" +"NM-23763","","","491950","3913680","GW","false","" +"SA-0012","SA-12_R00","","236446","3792800","GW","true","Well west of steel tank. Steel pipe tower next to wire fences. At intersection of USFS Rd 14 and 100, take 100 about 1.7 mi NNW to Arroyo and USFS 100 signs. Turn N about 0.3 mile to well." +"TS-098","","","436958","4044580","SP","true","Emerges from boulders about 40 ft above river on east side. This is start of โ€œDunn Bridge Northโ€ spring zone, which is nearly continuous to bridge." +"QY-0699","6.29.30.113","","599204","3842400","GW","true","" +"NM-22517","","","660214","3888600","GW","false","" +"NM-07742","","","227957","3610690","GW","false","" +"NM-00938","","","669680","3805360","GW","false","" +"NM-11457","","","400353","3659290","GW","false","" +"NM-21656","","","626580","3878610","GW","false","" +"NM-21071","","","363420","3862210","GW","false","" +"SB-0205","TWDB 4806304","","474357","3536958","GW","false","" +"NM-12854","","","611707","3682300","GW","false","" +"NM-14507","","","481450","3706440","GW","false","" +"BW-0077","7S10E29.31","","414217","3726060","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08100","","","589805","3612690","GW","false","" +"NM-01190","","","662325","3879650","GW","false","" +"PC-116","PW-200","","367871","3907991","GW","true","" +"NM-13558","","","653991","3693700","GW","false","" +"NM-13099","","","618352","3686970","GW","false","" +"NM-25450","","","670910","3975130","GW","false","" +"NM-13050","","","287801","3687460","GW","false","" +"NM-05516","","","334475","3567110","GW","false","" +"NM-09753","","","559797","3633190","GW","false","" +"NM-08471","","","292833","3620230","GW","false","" +"NM-27714","","","625512","3796520","GW","false","" +"NM-08592","","","206850","3624310","GW","false","" +"NM-23114","","","653823","3896660","GW","false","" +"NM-14002","","","544354","3696020","GW","false","" +"SB-0364","TWDB 4807807","","481878","3530507","GW","false","" +"BW-0622","7S7E6.124","","383380","3734000","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19581","","","178870","3834330","GW","false","" +"SB-0574","TWDB 4856802","","493089","3445397","GW","false","" +"BC-0306","265","","378692","3873570","GW","true","" +"NM-16963","","","655072","3781090","GW","false","" +"NM-05266","","","237505","3565460","GW","false","" +"NM-20718","","","557856","3851450","GW","false","" +"EB-566","","","417353","3963079","GW","true","" +"SB-0821","TWDB 4710101","","515239","3526068","SP","false","" +"EB-281","","","412707","3949457","GW","true","Alto and La Madera Streets" +"NM-22308","","","620784","3885650","GW","false","" +"NM-27876","","","571263","3813170","GW","false","" +"NM-17382","","","645782","3787170","GW","false","" +"NM-10286","","","637163","3642030","GW","false","" +"TS-136","","","436285","4043206","SP","true","Sampled by NMED. Located on west side, near river. Spring is only visible at low river levels." +"NM-01662","","","308297","4042570","GW","false","" +"NM-23876","","","642120","3918500","GW","false","" +"SM-0049","","","425595","3635411","GW","true","Take Sunspot Rd south to mile marker 8, turn right onto gravel road with black mailbox and yellow cattlegaurd. There is an old outhouse just up road. Go west up valley, at Y go right up dirt road to locked white gate . Well is beyond gate in meadow and south of drive ~150 feet. There are 2 wells measure the old one, furthest NORTH, closer from electric box." +"DE-0386","","","569533","3626576","GW","false","" +"QY-0546","17.36.34.24","","672491","3948180","GW","true","" +"NM-14802","","","544684","3719460","GW","false","" +"QY-0317","11.32.30.422","","629321","3890510","GW","true","" +"NM-05368","","","230975","3567330","GW","false","" +"NM-11026","","","282920","3652890","GW","false","" +"NM-21027","","","282971","3861670","GW","false","" +"NM-15013","","","643361","3728750","GW","false","" +"NM-11083","","","483499","3651740","GW","false","" +"SD-0368","10N.5E.11.333","","374084","3885090","SP","true","" +"EB-640","","","394146","3934436","GW","true","" +"NM-14796","","","679679","3720580","GW","false","" +"NM-07209","","","276016","3598930","GW","false","" +"NM-25055","","","660274","3953110","GW","false","" +"NM-01848","","","117345","3535210","GW","false","" +"NM-00179","","","585715","3573080","GW","false","" +"NM-27839","","","658484","3809220","GW","false","" +"ED-0084","20S31E15.13","","606682","3604680","GW","true","" +"NM-24799","","","409066","3945200","GW","false","" +"NM-26435","","","223261","4065700","GW","false","" +"ED-0360","25S31E21","","614767","3553840","GW","true","" +"NM-05774","","","241225","3571940","GW","false","" +"NM-19463","","","567108","3826690","GW","false","" +"TO-0144","5N8E7.431","","395646","3836980","GW","true","" +"NM-05290","","","676693","3563910","GW","false","" +"NM-22319","","","346154","3886300","GW","false","" +"NM-11278","","","265643","3658190","GW","false","" +"NM-08832","","","559518","3623390","GW","false","" +"NM-09121","","","640875","3627730","GW","false","" +"NM-12105","","","557147","3668560","GW","false","" +"NM-20927","","","396488","3856810","GW","false","" +"NM-13786","","","544772","3694920","GW","false","" +"NM-03088","","","576003","3802600","GW","false","" +"TB-0254","","","410753","3627297","GW","false","" +"NM-04935","","","661226","3558080","GW","false","" +"OG-0061","","","648002","3807056","GW","true","From int of SR 311 and US 60, west of Clovis, drive 4 miles west on US 60. Turn left south on CR U. Drive 1 mile to well. Well is on west side of road." +"NM-24969","","","407140","3948640","GW","false","" +"UC-0197","","","627505","4093651","GW","false","" +"NM-05086","","","675387","3560660","GW","false","" +"TV-214","","","444063","4012668","GW","true","On ridge. Well is welded shut." +"NM-19652","","","665320","3831470","GW","false","" +"NM-22847","","","383273","3891880","GW","false","" +"NM-15264","","","645613","3738210","GW","false","" +"QU-155","","","446731","4065870","GW","true","Just south of propane station north of town. A large turn around driveway with tractor trailers in it." +"NM-12431","","","664250","3675560","GW","false","" +"EB-433","","","421689","3931477","GW","true","180 Principe de Paz." +"NM-16716","","","640193","3777410","GW","false","" +"SM-3009","","","460578","3629993","R","true","Site visited and sampled by Jeremiah Morse" +"NM-08025","","","666199","3612160","GW","false","" +"BC-0353","362","","376657","3891370","GW","true","" +"AR-0142","B024","NMED164/165","239239","4087410","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn left onto Rd 2620 and proceed to address on left." +"NM-23290","","","667950","3900210","GW","false","" +"DE-0139","","","614853","3631202","GW","false","" +"NM-15213","","","639521","3735930","GW","false","" +"NM-11636","","","407015","3661680","GW","false","" +"NM-22164","","","346678","3884620","GW","false","" +"DE-0001","","","539544","3596003","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Well located at Indian Basin headquarters." +"NM-19663","","","564153","3830360","GW","false","" +"NM-17847","","","604295","3796190","GW","false","" +"QU-087","MW-20","","446057","4064369","GW","true","See Chevron map of monitoring wells. Far northeast monitoring well on Chevron property." +"NM-23939","","","638378","3920660","GW","false","" +"BW-0796","2.13.9.3.200","","411937","3916500","GW","true","" +"NM-12717","","","667675","3681260","GW","false","" +"NM-17205","","","648711","3784840","GW","false","" +"NM-21818","","","367223","3881040","GW","false","" +"NM-11134","","","157214","3658630","GW","false","" +"QY-0324","11.32.8.113","","629572","3895920","GW","true","" +"MG-002","WF-2","","293746","3773043","GW","true","" +"NM-16810","","","651236","3779090","GW","false","" +"NM-20379","","","599672","3843250","GW","false","" +"SB-0917","","","434639","3573574","GW","true","From Hwy 62 (aka Hwy 180, road runs east/west south of Dell City), go N on Hueco Ranch Rd (which turns into Loma Linda Rd and then F002) for ~14.5 mi past Cambalachie Camp bunkhouse at F002/F001 intersection. Drive 10.6 mi NE and turn N (left) on F059 (which turns into F034 after 3.7 mi) and go N 10.0 mi. At intersection veer left and continue N on F058 for 6.6 miles. Turn right and drive 0.3 miles NE to well." +"SD-0092","9N.6E.26.244","","384678","3871230","GW","true","" +"BW-0297","15S10E36.111","","412337","3648660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06660","","","672832","3587350","GW","false","" +"NM-21153","","","382497","3865060","GW","false","" +"SB-0028","TWDB 4709802","","507813","3513899","GW","false","" +"NM-27551","","","629742","3792050","GW","false","" +"NM-23301","","","656949","3900230","GW","false","" +"QY-0624","5.29.6.422","","600566","3838560","GW","true","" +"DE-0357","","","569361","3626771","GW","false","" +"NM-00688","","","474493","3690750","GW","false","" +"NM-23069","","","428382","3894710","GW","false","" +"NM-11913","","","669999","3666730","GW","false","" +"SV-0026","30 Canada Vista","","380673","3900754","GW","false","Unit 1 Lot 65" +"NM-00070","","","548358","3546720","GW","false","" +"NM-02862","","","676645","3718730","GW","false","" +"QY-0336","11.34.12.112","","655316","3896480","GW","true","" +"NM-09392","","","556620","3629600","GW","false","" +"NM-12183","","","561516","3670060","GW","false","" +"NM-08773","","","577012","3622780","GW","false","" +"NM-19303","","","241510","3826850","GW","false","" +"NM-23994","","","405762","3922860","GW","false","" +"EB-199","","","416219","3956263","GW","true","Open well on right side of Palo Duro Dr, on corner uphill from Via Vecino; across from uphill corner of coyote fence, ~70 ft past #19 drive; visible from rd" +"NM-06966","","","666512","3593380","GW","false","" +"SO-0105","3N5E32.21","","367667","3812650","GW","true","" +"SB-0680","TWDB 4915517","","389051","3520467","GW","false","" +"NM-25728","","","657793","3993350","GW","false","" +"TO-0532","7N9E23.3","","411470","3852940","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-13433","","","439162","3690660","GW","false","" +"NM-24411","","","440218","3936520","GW","false","" +"NM-07518","","","187131","3608310","GW","false","" +"NM-25025","","","410128","3950730","GW","false","" +"NM-20911","","","634577","3856970","GW","false","" +"NM-12558","","","562226","3676500","GW","false","" +"NM-25429","","","401005","3973260","GW","false","" +"NM-16983","","","638341","3781420","GW","false","" +"LC-015","","","399009","3937651","SP","true","Just off Los Pinos between Los Golondrinas and La Cienega village. Parking on side of road. Walk up canyon north of one that parking is at. Look for big cottonwoods, and do not walk up canyon but rather along north side of terraces until at GPS coordinates." +"NM-06968","","","666100","3593030","GW","false","" +"BW-0798","2.24.20.4.224","","515305","4021410","GW","true","" +"ED-0085","20S31E16.24","","606280","3604760","GW","true","" +"NM-21742","","","365588","3880110","GW","false","" +"NM-04036","","","343440","3530190","GW","false","" +"NM-17157","","","546433","3783130","GW","false","" +"AB-0132","S167","","333078","3853960","GW","true","" +"EB-554","","","416169","3957267","GW","true","" +"NM-08962","","","201461","3628910","GW","false","" +"CX-0103","23N27E3.22","","585521","4013230","GW","true","" +"NM-00803","","","446964","3710550","GW","false","" +"NM-09608","","","283958","3633720","GW","false","" +"NM-09675","","","553459","3632230","GW","false","" +"NM-15005","","","562180","3727660","GW","false","" +"NM-02124","","","180405","3565070","GW","false","" +"NM-22945","","","601987","3893150","GW","false","" +"NM-06011","","","239797","3576100","GW","false","" +"QY-0735","6.32.2.124","","635045","3849280","GW","true","" +"NM-26900","PW-016","","370756","3908543","GW","true","" +"NM-18100","","","608305","3800920","GW","false","" +"NM-28116","","","212921","3921070","GW","false","" +"ED-0327","24S25E25.413","","561530","3561290","GW","true","" +"QY-0166","11.29.32.342","","601282","3888100","GW","true","" +"JM-056","JSAI Exp Well 3","","315751","3649800","GW","true","" +"NM-01885","","","348368","3536430","GW","false","" +"NM-13300","","","647891","3690270","GW","false","" +"NM-17532","","","597108","3789060","GW","false","" +"BC-0131","114","","378174","3876170","GW","true","" +"NM-04918","","","133283","3563170","GW","false","" +"NM-26167","","","333596","4027110","GW","false","" +"NM-13988","","","640110","3697270","GW","false","" +"NM-23337","","","387073","3900370","GW","false","" +"NM-16797","","","679809","3780270","GW","false","" +"NM-22780","","","376886","3891140","GW","false","" +"NM-03660","","","635198","4071390","GW","false","" +"SO-0257","SMC-W08EX","","314809","3728400","GW","true","" +"NM-26913","PW-135","","364850","3908393","GW","true","" +"NM-07901","","","646256","3610530","GW","false","" +"SB-0240","TWDB 4807217","","481817","3540390","GW","false","" +"SM-0204","","","470468","3627149","GW","true","Hwy 24 south of Dunken to Cuevo Canyon Rd. Take for 8.5 mi. Well is on north side (by windmill tower and feet lot), about 100 yds from road behind old wooden corral and under wooden windmill. Jeremiah Morse site visit. Check GPS location!" +"DE-0237","","","670777","3570001","GW","false","" +"NM-18519","","","636568","3808100","GW","false","" +"NM-18735","","","446431","3810490","GW","false","" +"NM-19172","","","334802","3821020","GW","false","" +"NM-00925","","","662633","3801200","GW","false","" +"SO-0235","SFC-W02B","","312403","3721218","GW","true","" +"NM-10354","","","457898","3642030","GW","false","" +"NM-28348","237700","","190733","3641169","SP","false","Gila National Forest" +"TC-418","VAD-06","","442768","4004780","GW","true","" +"NM-00269","NH-005","","285056","3597570","GW","false","" +"NM-05566","","","663822","3567700","GW","false","" +"SV-0128","06 Vista de Sand","","378935","3899861","GW","false","Unit 1 Lot 24" +"NM-03852","","","350019","3520020","GW","false","" +"NM-10023","","","672751","3638460","GW","false","" +"NM-03047","","","630486","3791870","GW","false","" +"NM-09856","","","198120","3639000","GW","false","" +"NM-28177","","","205200","3999300","GW","false","" +"NM-13296","","","624445","3689820","GW","false","" +"NM-28350","148896","","162800","3690497","SP","false","Gila National Forest" +"NM-01937","","","301962","3543600","GW","false","" +"NM-09458","","","409971","3630490","GW","false","" +"TO-0445","10N7E25.211","","395600","3881270","GW","true","" +"NM-11066","","","403910","3651740","GW","false","" +"NM-20584","","","415867","3848390","GW","false","" +"NM-19672","","","343449","3831560","GW","false","" +"NM-00282","","","679628","3604780","GW","false","" +"NM-12408","","","557740","3673460","GW","false","" +"NM-20199","","","650752","3840460","GW","false","" +"NM-26507","","","460377","4063090","GW","false","" +"NM-17979","","","531333","3797730","GW","false","" +"NM-01523","","","638201","3967900","GW","false","" +"NM-18801","","","592736","3811910","GW","false","" +"NM-12509","","","641907","3676820","GW","false","" +"SA-0227","","","253343","3783403","GW","true","Take Hwy 60 West past VLA. Turn right into Double H Ranch and pass thru gate. At 2 miles bear left, go 1.5 mi to well on left under windmill tower. Well in vault." +"NM-16294","","","649006","3767780","GW","false","" +"NM-04310","","","345718","3543550","GW","false","" +"WL-0219","","","246756","3645149","GW","true","Take Rt 152 east from Hillsboro, veer right (straight really) into Kingston off of Rt 152. Continue on Main Street for 0.2 miles, turn left on Virtue. Home is at the top of the hill. Well is just south of driveway in open yard." +"TO-0400","9N8E7.244","","397757","3875740","GW","true","" +"NM-26175","","","333392","4028160","GW","false","" +"NM-07650","","","237048","3609030","GW","false","" +"DE-0327","","","674376","3589886","GW","false","" +"DE-0289","","","663269","3634514","GW","false","" +"SB-0480","TWDB 4829102","","455205","3496536","GW","false","" +"NM-12685","","","581102","3678920","GW","false","" +"NM-20935","","","584464","3856770","GW","false","" +"NM-14225","","","547309","3699120","GW","false","" +"NM-25857","","","411686","4000730","GW","false","" +"NM-09625","","","411363","3631960","GW","false","" +"NM-03511","","","673025","3941210","GW","false","" +"NM-00911","","","150268","3801320","GW","false","" +"NM-21849","","","348560","3881570","GW","false","" +"NM-15513","","","133679","3749440","GW","false","" +"BC-0015","7","","366258","3880280","GW","true","" +"SV-0103","15 Via Alcalde","","380634","3901146","GW","false","Unit 1 Lot 42" +"QY-0596","5.29.20.131b","","600895","3834190","GW","true","" +"NM-27929","","","332716","3835440","GW","false","" +"SO-0265","NRCS 4 (Deep)","","328237","3764094","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Wells on west side of road. SO-0264 well A is ~2.5 ft. north of SO-0265 well B. Site is next to weather station." +"QY-1007","9.36.27.214","","672626","3872610","GW","true","" +"NM-23092","","","658836","3896470","GW","false","" +"NM-19307","","","623658","3824440","GW","false","" +"NM-22860","","","375787","3892170","GW","false","" +"NM-01386","","","188011","3931410","GW","false","" +"NM-11302","","","650675","3657350","GW","false","" +"NM-01747","","","167703","3490060","GW","false","" +"NM-04730","","","673653","3554830","GW","false","" +"AB-0070","S080","","348099","3896530","GW","true","" +"NM-00016","","","486912","3540700","GW","false","" +"JM-042","","","307198","3649247","GW","true","" +"BC-0203","203","","381856","3867060","GW","true","" +"NM-23544","","","371137","3908560","GW","false","" +"NM-02289","","","578622","3573640","GW","false","" +"NM-07674","","","235855","3609340","GW","false","" +"SD-0180","10N.6E.5.344","","379418","3886530","GW","true","" +"NM-23390","","","231651","3905320","GW","false","" +"NM-17374","","","540149","3785970","GW","false","" +"NM-17279","","","666277","3786310","GW","false","" +"CP-0037","","","667922","3808542","GW","true","Heading east on Hwy 60/84 out of Clovis, turn north (left) on Schepp's Blvd. past Norris St. Make left (west) on 7th Street (aka Curry Rd 10). Well is along the south side of the road next to elm tree. There is a break in the curb to pull in just west of the tree. **NEED TWO KEYS TO ACCESS WELL!**" +"NM-25256","","","223046","3968700","GW","false","" +"NM-04170","","","234696","3540130","GW","false","" +"SB-0100","TWDB 4717605","","507872","3505124","GW","false","" +"NM-19547","","","616695","3828810","GW","false","" +"AS-068","VAL-3","","448367","4044370","GW","true","" +"NM-09891","","","403283","3635390","GW","false","" +"NM-15720","","","635177","3748250","GW","false","" +"SD-0183","10N.6E.6.324","","377788","3887000","GW","true","" +"SD-0349","8N.7E.3.443","","391675","3868420","SP","true","" +"NM-26782","","","661345","3877710","GW","false","" +"DE-0119","","","672719","3616038","GW","false","" +"NM-06997","","","277543","3594760","GW","false","" +"NM-04459","","","533514","3547340","GW","false","" +"NM-11087","","","477843","3651820","GW","false","" +"NM-23584","","","362559","3909210","GW","false","" +"NM-21497","","","343679","3876050","GW","false","" +"NM-20192","","","221034","3843450","GW","false","" +"NM-28319","POT-03","","448024","4015631","GW","false","" +"NM-11061","","","534334","3651270","GW","false","" +"PP-088","PSW-7","","435278","4006259","PS","true","" +"NM-28061","","","617498","3894940","GW","false","" +"NM-22397","","","378952","3886640","GW","false","" +"TO-0353","8N8E17.433","","397510","3864110","GW","true","" +"QY-0372","12.32.1.422a","","637045","3906590","GW","true","About 75 ft NW of well .422" +"NM-00140","","","588841","3561940","GW","false","" +"QY-0946","9.29.22.421","","605169","3872620","GW","true","" +"SM-0221","","","476927","3672259","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Continue for 3.1 miles to faint 2-track angling backward by a telephone pole on lefthand side of the road at 30.3 miles. Go 0.3 miles on 2-track to locked gate (combo 4440). Well 0.2 miles beyond gate, and can be seen from gate." +"NM-00388","","","407723","3629420","GW","false","" +"WL-0176","","","592474","3656135","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well under metal windmill next to large metal stock tank." +"QY-0187","11.30.14.144f","","615557","3893850","GW","true","" +"NM-21996","","","342984","3883090","GW","false","" +"NM-26174","","","640722","4027680","GW","false","" +"NM-12373","","","665664","3674660","GW","false","" +"NM-25181","","","414618","3960180","GW","false","" +"NM-17331","","","636089","3786560","GW","false","" +"NM-25538","","","260543","3983110","GW","false","" +"NM-23629","PW-311","","362246","3910240","GW","false","" +"NM-00535","","","678146","3654840","GW","false","" +"NM-13465","","","403764","3692180","GW","false","" +"NM-04806","","","230634","3558430","GW","false","" +"NM-12015","","","670928","3668440","GW","false","" +"BW-0574","17S9E3.4","","406232","3636510","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13478","","","609532","3691640","GW","false","" +"NM-19618","","","618871","3829980","GW","false","" +"NM-27433","","","613383","3676160","GW","false","" +"NM-20941","","","630049","3857430","GW","false","" +"NM-09904","","","221575","3638990","GW","false","" +"NM-04784","","","674633","3555740","GW","false","" +"NM-12719","","","658591","3681110","GW","false","" +"SB-0007","TWDB 4702102","","515587","3539278","GW","false","" +"ED-0387","26S26E17.443","","565288","3544740","SP","true","" +"BW-0522","17S9E10","","405803","3635300","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27271","","","330088","3576120","GW","false","" +"NM-26829","","","147056","3701810","GW","true","" +"NM-03820","","","247872","3521310","GW","false","" +"NM-11604","","","559757","3661090","GW","false","" +"DE-0182","","","611785","3599808","GW","false","" +"NM-21143","","","675230","3866230","GW","false","" +"SV-0035","02 La Aguapa","","377615","3900805","GW","false","Unit 3 Lot 123" +"BW-0393","17S10E18.442a","","411257","3631630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-1054","","","428391","3711030","SP","true","" +"NM-26867","","","330348","4012950","GW","true","" +"TS-064","","","433044","4021101","SP","true","One of a series of small seeps with vegetative signatures that are located on west gorge wall between TJ Campground and the gaging station, a distance of one mile. " +"NM-24322","","","477214","3934200","GW","false","" +"NM-20478","","","163684","3851100","GW","false","" +"NM-19823","","","653270","3834430","GW","false","" +"NM-09453","","","210192","3634290","GW","false","" +"NM-16014","","","661650","3757410","GW","false","" +"BW-0349","17S9E12.342","","408867","3634660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26794","","","601951","3609590","GW","true","" +"TC-227","","","410470","4101396","GW","true","" +"NM-09192","","","285113","3629540","GW","false","" +"NM-09875","","","282753","3637090","GW","false","" +"MG-029","","","296181","3778953","GW","true","Just NW of Trujillo well, mile marker 117-116." +"UC-0071","","","650354","4028979","GW","true","Start: From Clayton, NM intersection of 1st street and US-56 travel Southwest on Main St. for 400yds. +400yds. Continue onto US-412 for 7.8 miles.(US-412 turns to US-56) +7.8mi.Turn right onto dirt road for 1 mile. Go through gate to W, road goes N. Follow 2 track paralle fence to wst for 1 mile. Well is south of barbed wire fence at power pole in meadow." +"NM-05876","","","255047","3573310","GW","false","" +"NM-26482","","","460163","4062470","GW","false","" +"NM-00887","","","323453","3782630","GW","false","" +"SB-0840","","","466056","3544407","GW","false","" +"EB-266","","","395137","3966202","GW","true","~700-800 ft from end of Buckman Rd; off north bank of arroyo" +"DE-0232","","","670643","3570195","GW","false","" +"NM-07691","","","623092","3607320","GW","false","" +"NM-18870","","","544372","3812780","GW","false","" +"NM-14672","","","543293","3713730","GW","false","" +"PC-158","PSW-05","","367747","3910977","PS","true","" +"NM-19972","","","637276","3836150","GW","false","" +"NM-06505","","","673273","3584520","GW","false","" +"NM-25052","","","412503","3951940","GW","false","" +"NM-02849","","","543935","3708650","GW","false","" +"NM-05475","","","240419","3568680","GW","false","" +"NM-12185","","","289981","3672120","GW","false","" +"NM-19613","","","637874","3830150","GW","false","" +"TV-197","","","437019","4023546","GW","true","Barranca del Pueblo area along Rio Pueblo. Barranca del Pueblo subdivision Lot 6. Access to vault requires key from Larry Brooks." +"NM-24712","","","409128","3943900","GW","false","" +"LC-016","","","399824","3937994","SP","true","Off Los Pinos, northwest of newer house with silver roof (his daughter's house). Spring is at base of several cottonwood trees." +"AS-005","AS-102","","448750","4041550","GW","true","" +"NM-03000","","","675098","3780090","GW","false","" +"NM-16249","","","521212","3764070","GW","false","" +"NM-27484","","","195384","3621100","GW","false","" +"NM-05254","","","244103","3565170","GW","false","" +"NM-13715","","","546533","3694120","GW","false","" +"NM-26924","PW-073","","368056","3906575","GW","true","" +"WS-022","","","377220","3633607","GW","true","" +"SB-0179","TWDB 4757401","","500662","3437298","GW","false","" +"SD-0167","10N.5E.26.311a","","374006","3880830","GW","true","" +"NM-07514","","","205860","3607560","GW","false","" +"MI-0228","","","591683","3938721","GW","true","Topographic situation: Plains" +"SM-0250","","","450780","3640410","GW","true","" +"SB-0217","TWDB 4807101","","476877","3537044","GW","false","" +"NM-01648","","","291639","4037820","GW","false","" +"NM-13915","","","544460","3695440","GW","false","" +"NM-23286","","","382408","3899320","GW","false","" +"NM-24828","","","414252","3945700","GW","false","" +"NM-16016","","","666834","3757630","GW","false","" +"NM-07895","","","678526","3610900","GW","false","" +"NM-10056","","","406788","3637660","GW","false","" +"AH-022","E002","","443313","4042559","GW","true","" +"TO-0248","6N10E27.444","","420489","3841500","GW","true","" +"NM-00694","","","483903","3692020","GW","false","" +"NM-04259","","","343900","3541420","GW","false","" +"SB-0877","Mayer 38","","481094","3547555","GW","false","" +"NM-14122","","","546929","3697610","GW","false","" +"NM-24163","","","404600","3929710","GW","false","" +"NM-23055","","","363559","3895150","GW","false","" +"NM-05453","","","262987","3567940","GW","false","" +"NM-06048","","","186996","3578250","GW","false","" +"NM-18436","","","661723","3806780","GW","false","" +"NM-02156","","","128884","3569940","GW","false","" +"NM-24920","","","410524","3947680","GW","false","" +"NM-08117","","","662079","3613820","GW","false","" +"NM-15453","","","664234","3743160","GW","false","" +"NM-10086","","","556182","3637970","GW","false","" +"NM-18496","","","650413","3807570","GW","false","" +"NM-15970","","","326690","3755890","GW","false","" +"NM-11664","","","636454","3663090","GW","false","" +"WL-0143","","","368950","3907868","GW","true","From I-25, take NM-165 east toward Placitas ~6 miles. Turn right (south) onto +Camino del Rincon Colorado. Owner lives in first house on right just past the turn. Well located in back yard." +"SA-0437","5S11W19.111","","219391","3751230","GW","true","" +"NM-08635","","","646273","3621740","GW","false","" +"EB-126","","","404553","3940939","GW","true","ABANDONED" +"NM-18611","","","639946","3809320","GW","false","" +"NM-24046","","","475427","3924900","GW","false","" +"NM-24892","","","393245","3947220","GW","false","" +"QY-0017","10.28.22.421","","595546","3882070","GW","true","" +"QU-078","MW-7A","","444515","4061712","GW","true","See Chevron map of monitoring wells. Upslope from MW-A & MW-B. Three wells in well box (MW-7A (shallow), MW-7B (mid-depth) & MW-7C (deep))." +"NM-18491","","","604558","3806950","GW","false","" +"NM-01871","","","319352","3533820","GW","false","" +"TO-0056","3N15E22.333","","466627","3813790","GW","true","" +"NM-19248","","","568468","3821980","GW","false","" +"RA-053","","","417628","4007900","GW","true","Next to old well that is open." +"NM-22876","","","361218","3892630","GW","false","" +"TV-202","","","445837","4021116","GW","true","On McClymond compound. Located 400' north of RG-62885. **NOT USING SITE IN INVENTORY.**" +"SB-0681","TWDB 4915518","","388874","3518652","GW","false","" +"NM-04422","","","133962","3552840","GW","false","" +"ED-0099","21S26E16.1","","565546","3594270","GW","true","" +"MI-0168","","","591855","3934943","GW","true","Topographic situation: Plains" +"NM-23251","","","382300","3898830","GW","false","" +"NM-23631","","","360832","3910290","GW","false","" +"NM-01490","","","202744","3956730","GW","false","" +"NM-16276","","","218862","3769390","GW","false","" +"NM-13931","","","545364","3695500","GW","false","" +"NM-02186","M-100","","262470","3567671","GW","false","East from Deming on NM-549 for 11.8 miles. South on B045/Cรณrdoba Rd for 1.5 miles. Well located ~100 ft east of road near seemingly abandoned adobe and steel structure. Met a possible tenant/squatter there who says owner lives out of town." +"TO-0094","4N8E14.14","","401269","3826460","GW","true","" +"NM-27513","","","567308","3648880","GW","false","" +"ED-0205","22S27E4.211","","575974","3588180","GW","true","" +"DE-0233","","","670620","3570148","GW","false","" +"NM-27019","","","327104","3757240","GW","true","" +"NM-06605","","","364130","3585790","GW","false","" +"NM-12571","","","670787","3677990","GW","false","" +"NM-18022","","","643305","3800100","GW","false","" +"NM-00951","","","677560","3809510","GW","false","" +"SD-0343","8N.5E.12.422","","375673","3866150","SP","true","" +"SB-0022","TWDB 4709502","","505731","3520270","GW","false","" +"NM-25973","","","297374","4009230","GW","false","" +"NM-25424","","","412285","3973080","GW","false","" +"NM-14940","","","421965","3724690","GW","false","" +"NM-05649","","","238241","3570590","GW","false","" +"NM-23686","","","462362","3910770","GW","false","" +"NM-02452","","","277641","3600340","GW","false","" +"NM-13267","","","550179","3688570","GW","false","" +"NM-26737","","","448103","4086520","GW","true","Well is located at owner's physical address (3870 Hwy 522, Costilla NM), roughly 25 yards south west of ranch road, and quarter mile east of ranch house. Well is located next to gravel two track on inside of curve of main ranch road." +"SB-0834","Collins (Sigstedt ID)","","499578","3568451","GW","true","From junction of Hwys 1437 (Main St) & 2249 (Broadway), travel E on 2249 for 3 mi, turn N (left) on Hwy 1576 (hwy alternates between north & east) go N 3 mi, east 1 mi, north 1 mi, east 1.4 mi, then turn north on G-005. Drive north on G-005 for 2.3 mi. Road ends at NM-506, turn E (right) on NM-506 and go 5.6 mi (numerous curves); at intersection turn E (right) which is still NM-506 but not clearly marked. Continue on NM-506 for 0.5 mi, NM-506 turns north (left), stay on NM-506 for addl. 9 mi. At intersection, turn E (right) on G-022 and go 1.0 mi, turn N (left), this is still G-022, go N 1.0 mi, turn E (right), which is still on G-022. Take G-022 for 3.5 mi (initially straight but then follows the arroyo), turn S (right) ~0.6 mi to Muise house. Well behind house near large tank." +"NM-18989","","","572778","3815240","GW","false","" +"NM-06401","","","328164","3582490","GW","false","" +"NM-11225","","","560497","3654690","GW","false","" +"NM-17546","","","673622","3790630","GW","false","" +"NM-11058","","","645296","3652590","GW","false","" +"NM-27483","","","584389","3726070","GW","false","" +"SD-0119","10N.4E.25.433","","365933","3881260","GW","true","" +"BW-0093","8S10E13.133d","","419956","3719740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12205","","","556335","3670150","GW","false","" +"NM-00761","","","456094","3699450","GW","false","" +"NM-13971","","","543839","3695650","GW","false","" +"NM-08368","","","291756","3618590","GW","false","" +"NM-20378","","","622080","3843490","GW","false","" +"LC-008","","","399472","3936672","SP","true","Enter Los Golondrinas, drive through site and head east on road. Pass Botanical Park pond, head up hill to water tank. Spring seeps out just below tanks at base of cottonwood." +"NM-04812","","","234200","3558360","GW","false","" +"NM-10326","","","450026","3641630","GW","false","" +"NM-06033","","","579512","3573490","GW","false","" +"NM-03050","","","654292","3794310","GW","false","" +"NM-16734","","","326503","3777870","GW","false","" +"NM-23448","","","228597","3908090","GW","false","" +"NM-01038","","","159717","3840970","GW","false","" +"TO-0403","9N8E14.311","","402885","3873870","GW","true","" +"NM-11816","","","287240","3666480","GW","false","" +"NM-00067","","","323272","3547830","GW","false","" +"NM-19555","","","539712","3828220","GW","false","" +"NM-07912","","","199553","3614070","GW","false","" +"NM-14421","","","549299","3703990","GW","false","" +"EB-140","","","413407","3949860","GW","true","In parking lot of Gallegos & Sons Auto Repair; corner of W. Alameda & Placita de Oro" +"NM-27426","","","558763","3666900","GW","false","" +"NM-05168","","","649910","3561230","GW","false","" +"NM-05066","","","177770","3563880","GW","false","" +"NM-08544","","","190259","3624070","GW","false","" +"NM-00340","","","681118","3623170","GW","false","" +"NM-21457","","","359791","3873910","GW","false","" +"NM-27701","","","628866","3796220","GW","false","" +"NM-05887","","","242776","3573800","GW","false","" +"AR-0212","","","237835","4085662","GW","true","Well house located off of road just off porch to son's doublewide in back. Walk past house, through orchard to second house. Well in well house 75m from road, by second trailer/double wide on property." +"NM-24431","","","401888","3937420","GW","false","" +"NM-03549","","","545226","3968080","GW","false","" +"NM-23759","","","644427","3914720","GW","false","" +"DE-0092","","","639337","3568975","GW","false","" +"NM-15677","","","141096","3752740","GW","false","" +"NM-06228","","","671930","3578990","GW","false","" +"NM-22985","","","349656","3894460","GW","false","" +"NM-23757","","","638851","3914540","GW","false","" +"NM-11735","","","653290","3664330","GW","false","" +"NM-04733","","","670323","3554840","GW","false","" +"NM-01283","","","648955","3902200","GW","false","" +"TS-068","","","432296","4020034","SP","true","One of a series of small seeps with vegetative signatures that are located on west gorge wall between TJ Campground and the gaging station, a distance of one mile. " +"NM-06238","","","363095","3578850","GW","false","" +"NM-05328","","","236354","3566570","GW","false","" +"TV-229","","","439009","4020576","GW","true","El Mirador subdivision" +"NM-25423","","","408800","3973090","GW","false","" +"NM-04515","","","233186","3552720","GW","false","" +"NM-24511","","","399664","3938920","GW","false","" +"PC-068","PW-121","","368591","3907067","GW","true","" +"NM-03483","","","638078","3920220","GW","false","" +"NM-17163","","","652534","3784350","GW","false","" +"QY-0704","6.29.32.111","","600851","3840960","GW","true","" +"NM-18197","","","659099","3803350","GW","false","" +"NM-28208","","","169221","4065890","GW","false","" +"NM-18316","","","671789","3805390","GW","false","" +"NM-14369","","","206215","3706210","GW","false","" +"NM-28438","","","280678","3590594","GW","false","From intersection of CR A030 Uvas Valley Road and NM 26, go south 11.8 miles to Jim Hyatt ranch house. Well east of house and south of barns." +"NM-04492","","","636558","3548970","GW","false","" +"NM-12857","","","138787","3688370","GW","false","" +"NM-22314","","","603339","3885560","GW","false","" +"SM-4015","","","434245","3631659","PS","true","Stream flow measurement by Patrick Walsh" +"NM-16964","","","563630","3780000","GW","false","" +"TO-0193","5N10E31.133","","414221","3830970","GW","true","" +"NM-26745","","","243257","4091850","GW","false","" +"NM-10509","","","655816","3645700","GW","false","" +"NM-23750","","","641302","3914360","GW","false","" +"NM-09089","","","660524","3627720","GW","false","" +"NM-13846","","","544048","3695160","GW","false","" +"SO-0077","3N2W22.214a","","313307","3816600","GW","true","" +"NM-00547","","","674788","3656690","GW","false","" +"NM-19154","","","658253","3820060","GW","false","" +"NM-25073","","","419699","3952980","GW","false","" +"NM-05456","","","241305","3568510","GW","false","" +"NM-02079","","","267481","3559430","GW","false","" +"NM-11104","","","556438","3652290","GW","false","" +"NM-23702","","","226447","3915590","GW","false","" +"NM-05742","","","670572","3569600","GW","false","" +"NM-28253","LFD","","550174","3692767","GW","true","" +"NM-22376","","","603534","3886180","GW","false","" +"NM-24551","","","670542","3940730","GW","false","" +"TO-0087","4N8E12.233","","403259","3827960","GW","true","" +"NM-16506","","","669013","3773660","GW","false","" +"NM-04691","","","336360","3554130","GW","false","" +"BC-0152","133","","379374","3891380","GW","true","" +"LC-039","","","404716","3928667","GW","true","Head 6.5 miles south on HWY 14 from 599. Turn lef on Shenandoah Trail (HWY 44) and drive 0.9 miles. House on righht through locked gate. Well is ~ 20ft to the east of the front door in vault." +"NM-28027","","","395682","3881180","GW","false","" +"NM-07739","","","678830","3608530","GW","false","" +"NM-20353","","","675103","3843600","GW","false","" +"NM-12915","","","552124","3682510","GW","false","" +"NM-25314","","","224381","3972020","GW","false","" +"QU-072","MW-2","","444558","4061434","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road area. Along fenceline outside of junkyard. Well is next to outfall pump system that collects seepage from dam." +"NM-25077","","","417418","3953530","GW","false","" +"EB-283","","","413084","3949010","GW","true","Alto and La Madera Streets" +"BC-0358","352","","378950","3891011","GW","true","" +"SO-0198","SAC-W02A","","324630","3791124","GW","true","" +"SA-0442","5S12W34.430a","","215277","3746780","GW","true","" +"NM-23572","","","358962","3909060","GW","false","" +"NM-12222","","","561098","3670520","GW","false","" +"NM-28180","","","324589","4007980","GW","false","" +"LC-012","","","399793","3936418","SP","true","Off of frontage road, gate combo is 9103 (updated 1/31/12). Be sure to SHUT and LOCK gate after entry and departure." +"NM-13460","","","625607","3691870","GW","false","" +"NM-26619","","","194152","4075910","GW","false","" +"NM-19468","","","230336","3830460","GW","false","" +"NM-16647","","","679798","3776850","GW","false","" +"NM-14201","","","542250","3698690","GW","false","" +"QY-0444","13.35.19.112","","657081","3912600","GW","true","" +"NM-02028","","","238128","3555060","GW","false","" +"SO-0151","ESC-E03B","","326433","3777092","GW","true","" +"NM-01577","","","671497","3994360","GW","false","" +"WL-0128","","","256585","3773146","GW","true","From Hwy 60, take turnoff to VLA on south side of road Rt 52. Turn left towards VLA visitor center, go past visitor center on right, past large antenna barn on left, across antenna tracks then hard left to follow tracks ~0.4 miles then turn right to windmill." +"WL-0164","","","614688","3702343","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well near solar panels." +"NM-17448","","","637166","3788180","GW","false","" +"TS-046","","","435615","4041091","SP","true","Small spring on east side." +"NM-18854","","","584843","3812660","GW","false","" +"NM-26261","","","658257","4037870","GW","false","" +"WL-0091","NM3522109","","204757","3627320","GW","true","Need to meet w/staff for escort to wells. Coordinate visits with Eddie." +"EB-456","","","417013","3928881","GW","true","" +"NM-26192","","","312717","4031240","GW","false","" +"NM-01335","","","372747","3911320","GW","false","" +"NM-11164","","","653335","3654810","GW","false","" +"NM-12708","","","655232","3680720","GW","false","" +"NM-27080","","","324854","3764190","GW","true","" +"SM-1066","","","435297","3625233","SP","true","" +"NM-24580","","","399984","3940550","GW","false","" +"NM-26875","PW-21","","436189","4005093","GW","true","" +"NM-16055","","","618201","3757570","GW","false","" +"NM-07121","","","357739","3595850","GW","false","" +"NM-06486","","","358194","3583630","GW","false","" +"NM-21879","","","348630","3881700","GW","false","" +"CX-0059","25N25E30.1","","560156","4025900","GW","true","" +"JM-050","","","301036","3646501","GW","true","" +"NM-08387","","","667530","3618250","GW","false","" +"NM-16534","","","257289","3776040","GW","false","" +"NM-02283","","","328345","3574700","GW","false","" +"NM-19696","","","618038","3831390","GW","false","" +"NM-17563","","","635577","3790130","GW","false","" +"NM-03278","","","339267","3848860","GW","false","" +"NM-10898","","","550876","3648940","GW","false","" +"NM-06142","","","265876","3578420","GW","false","" +"QY-0834","7.33.12.242","","647057","3857270","GW","true","" +"GT-003","","","261093","3627965","GW","false","irrigation well west of Highway 27 near Berrenda Creek" +"QY-0956","9.30.20.444","","611848","3872090","GW","true","" +"NM-01166","","","337248","3872490","GW","false","" +"NM-22971","","","348747","3894330","GW","false","" +"NM-08912","","","407262","3624450","GW","false","" +"NM-03674","","","449371","4084400","GW","false","From Tony Benson's notes; 100 yds NE of Urraca entrance in wooden shed. Entrance is just south of driveway to MTC Gravel Pit site on east side of road." +"NM-00776","","","438827","3703130","GW","false","" +"WL-0347","","","327939","3568999","GW","true","About 50 m west of house, 10 m west of western arm of driveway on the other side of bushes " +"SB-0707","TWDB 4915801","","386429","3513936","GW","false","" +"NM-07090","","","360536","3595010","GW","false","" +"NM-06329","","","577501","3579910","GW","false","" +"EB-619","","","412432","3955075","GW","true","#254 Tano Rd; thru locked gate 0.1 mi to 2 track on left; 0.1 mi to well in broad arroyo. Northernmost of 3 wells." +"QY-0514","16.36.23.121","","672846","3941980","GW","true","" +"NM-18136","","","660606","3802430","GW","false","" +"SD-0269","11N.6E.24.212","","386146","3892580","GW","true","" +"NM-18441","","","270670","3808170","GW","false","" +"NM-12619","","","558725","3677560","GW","false","" +"NM-25896","","","443463","4002620","GW","false","" +"SD-0226","10N.7E.23.234","","393996","3882370","GW","true","" +"NM-27439","","","352026","3689690","GW","false","" +"NM-28108","","","209264","3913470","GW","false","" +"TV-203","","","444873","4020393","GW","true","From SR 382 (LQ road to Ponce de Leon), turn left onto dirt road just past abandoned dump. Site is just inside gate, right side of road. Abandoned well has pile of cement over top. Located on defunct Chaco subdivision. **NOT USING SITE IN INVENTORY.**" +"NM-13700","","","631050","3694680","GW","false","" +"BW-0557","18S9E1.4","","409425","3626510","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08639","","","526709","3620760","GW","false","" +"NM-27492","","","534385","3731460","GW","false","" +"ED-0267","22S30E30.24","","602126","3581420","GW","true","" +"NM-23161","","","658060","3897440","GW","false","" +"NM-28441","","","199322","3614230","GW","false","From the junction of Hwy 90 and Tyrone Ridge Road (mile marker 31), go east on Tyrone Ridge Rd for 8.1 (will see metal bridge to the left off in the distance). Keep right at the fork. Follow windy road for 1.6 miles to group of houses. Note the large white house w/red trim. Park at back house with the porch and two large friendly dogs. Well is 200 ft NW of houses on high ground under windmill tower." +"NM-08733","","","673421","3624020","GW","false","" +"SB-0294","TWDB 4807511","","482697","3532845","GW","false","" +"NM-18523","","","599266","3807510","GW","false","" +"NM-22861","","","616928","3892100","GW","false","" +"NM-04695","","","673110","3554360","GW","false","" +"AH-027","HM-03","","438477","4040611","GW","true","" +"NM-05572","","","164341","3571970","GW","false","" +"SB-0089","TWDB 4717318","","508867","3511036","GW","false","" +"NM-07119","","","225065","3598530","GW","false","" +"NM-07548","","","175378","3609180","GW","false","" +"NM-18101","","","556414","3800310","GW","false","" +"NM-09740","","","558992","3633060","GW","false","" +"NM-19748","","","564397","3831780","GW","false","" +"TV-154","","","442635","4026829","GW","true","57 Los Cordovas Road; trailer at end of road. Entrance right across Los Cordovas from barn to west w/blue doors. Well in shed; adobe enclosure around well. Owner nice and cooperative." +"WL-0080","","","432576","3934540","GW","true","From north on I-25 from ABQ, take exit 299. Go back across I-25 and make right on 50, then right on La Joya (Cty Rd 63). Follow road (road jogs on frontage road, but there's good signage). Go back under I-25 and road turns to dirt road. Make left on Hummingbird Lane. House is on left and marked. Pass driveway for #16, go to well on left-hand side." +"NM-01985","","","344071","3549150","GW","false","" +"NM-16995","","","127660","3787590","GW","false","" +"NM-22414","","","275435","3888860","GW","false","" +"NM-11704","","","560603","3662670","GW","false","" +"SB-0823","","","463091","3625001","GW","false","" +"NM-14651","","","434532","3712990","GW","false","" +"NM-03662","","","444245","4072900","GW","false","" +"NM-19642","","","580735","3830150","GW","false","" +"NM-11396","","","680474","3659670","GW","false","" +"WL-0257","","","498826","3972874","GW","true","NOTE: There are two exits from I-25 at Watrous, both roads are numbered HWY 161 but they arenโ€™t the same road (apparently HWY 161 used to be a loop but it isnโ€™t any longer). Exit I-25 on the NORTH SIDE OF WATROUS, and drive north on Hwy 161 ~7 miles, following signs to Ft Union Natl. Monument. As you approach the main gate, there is a smaller gate on the right side of the road just before the main gate. Turn right thru the smaller gate. Stay on this road, winding thru administrative and park housing buildings. Turn left (north) after about 0.3 miles on a dirt road, follow the dirt road about 170 feet to the well in wellhouse behind park housing." +"TO-0467","10N9E21.431","","410020","3881490","GW","true","" +"NM-07046","","","553303","3593330","GW","false","" +"TS-085","","","438197","4076893","SP","true","Sunshine Trail Spring 3, east side of the river" +"BW-0543","17S9E3.1","","405449","3637330","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19090","","","656641","3818830","GW","false","" +"NM-13145","","","560169","3686680","GW","false","" +"NM-22729","","","375637","3890470","GW","false","" +"NM-04648","","","228365","3555990","GW","false","" +"NM-14195","","","550488","3698700","GW","false","" +"NM-26195","","","153308","4036370","GW","false","" +"NM-26042","","","185076","4020560","GW","false","" +"SA-0312","","","226529","3730894","GW","true","" +"NM-06412","","","364630","3582150","GW","false","" +"NM-24927","","","409118","3947850","GW","false","" +"NM-18536","","","613691","3807700","GW","false","" +"SV-0025","28 Canada Vista","","380761","3899884","GW","false","Unit 1 Lot 66" +"NM-12470","","","553616","3674670","GW","false","" +"NM-06184","","","262632","3579600","GW","false","" +"ED-0174","22S26E1.113","","570879","3587410","GW","true","" +"NM-16272","","","568909","3765430","GW","false","" +"NM-25323","","","159828","3974790","GW","false","" +"NM-20310","","","598620","3841700","GW","false","" +"NM-19114","","","255948","3820900","GW","false","" +"NM-21114","","","324713","3864470","GW","false","" +"SM-3053","","","444783","3641409","L","true","" +"NM-10191","","","558303","3639620","GW","false","" +"NM-07155","","","357067","3596300","GW","false","" +"NM-27387","","","286637","3628060","GW","false","" +"NM-20846","","","399361","3854750","GW","false","" +"SB-0698","TWDB 4915610","","390269","3518760","GW","false","" +"OG-0095","","","651022","3806752","GW","true","" +"NM-25244","","","669415","3965460","GW","false","" +"EB-073","","","417565","3953580","GW","true","Thorpe Condo" +"QY-0964","9.31.12.233","","627365","3876270","GW","true","" +"NM-24279","","","215329","3937190","GW","false","" +"NM-03105","","","627068","3808090","GW","false","" +"NM-16823","","","674717","3779900","GW","false","" +"NM-15819","","","663580","3751220","GW","false","" +"QY-0611","5.29.36.242","","608705","3830970","GW","true","" +"NM-26855","","","497810","4075810","GW","true","" +"TV-217","","","442074","4022809","GW","true","Located 95' from Nat. Guard DOM (RG-72824)" +"NM-17804","","","660945","3795610","GW","false","" +"NM-26087","","","626025","4020240","GW","false","" +"NM-08399","","","676044","3618520","GW","false","" +"EB-371","","","416257","3954800","GW","true","See also EB-470, well #2" +"NM-02935","","","678411","3745640","GW","false","" +"BC-0138","121","","357980","3896090","GW","true","" +"NM-01455","","","669518","3944020","GW","false","" +"NM-17950","","","652401","3798830","GW","false","" +"ED-0330","24S26E23.242","","569993","3563560","GW","true","" +"NM-24424","","","401961","3937230","GW","false","" +"NM-19920","","","653091","3836030","GW","false","" +"NM-12127","","","403281","3669480","GW","false","" +"NM-10853","","","645736","3649240","GW","false","" +"NM-12819","","","622969","3681790","GW","false","" +"NM-24059","","","405189","3925920","GW","false","" +"BW-0922","4.20.25.16","","547888","3604120","SP","true","" +"NM-05941","","","652432","3572940","GW","false","" +"MI-0306","","","477676","3914513","SP","true","Topographic situation: Valley" +"NM-14152","","","519474","3698100","GW","false","" +"NM-06782","","","676239","3589780","GW","false","" +"QY-0150","11.29.13.133","","607105","3893700","GW","true","" +"NM-18516","","","659517","3808140","GW","false","" +"NM-07122","","","278670","3597300","GW","false","" +"NM-15041","","","418857","3728750","GW","false","" +"NM-09770","","","409767","3633720","GW","false","" +"NM-03300","","","398980","3856380","GW","false","" +"NM-17692","","","325012","3792750","GW","false","" +"NM-17207","","","653908","3786470","GW","false","" +"NM-13517","","","403051","3693230","GW","false","" +"NM-01138","S197","","363663","3862230","GW","false","" +"AR-0196","J002","","235518","4084320","GW","true","" +"NM-05710","","","237913","3571090","GW","false","" +"NM-26008","","","211000","4016320","GW","false","" +"NM-20552","","","342486","3848250","GW","false","" +"NM-03367","","","159681","3887960","GW","false","" +"NM-15901","","","543324","3752070","GW","false","" +"NM-01862","","","121212","3537940","GW","false","" +"NM-12226","","","557058","3670560","GW","false","" +"MI-0317","","","458892","3963437","SP","true","Topographic situation: Valley" +"NM-06413","","","577436","3581570","GW","false","" +"NM-10409","","","549375","3642860","GW","false","" +"NM-05444","","","275210","3567450","GW","false","" +"EB-594","","","409294","3955311","GW","true","16 Camino Ladera. Tano Rd to Tano West. Left onto Tierra de Tano. Follow to Camino Ladera. House is on left." +"NM-26912","PW-145","","368759","3907217","GW","true","" +"NM-03180","","","390795","3824490","GW","false","" +"NM-02413","","","279705","3592100","GW","false","" +"NM-27865","","","625533","3813920","GW","false","" +"SO-0214","SBB-E01B","","322849","3732903","GW","true","" +"NM-22333","","","237730","3888940","GW","false","" +"NM-19049","","","668005","3818260","GW","false","" +"QY-0736","6.32.2.223","","635766","3849250","GW","true","" +"NM-02540","","","555651","3616940","GW","false","" +"QU-067","","","445644","4065430","GW","true","From Hwy 522, go west on Rt 378 (Wild Rivers Rd) . Where road bends to north, go straight on dirt road. Turn left at T (driveway straight ahead) and proceed straight past junk/storage yard. Make a right at next fenceline, left at next fenceline. Well short distance down road on right. White PVC stickup." +"NM-20665","","","530677","3848740","GW","false","" +"NM-26239","","","326945","4036120","GW","false","" +"NM-25147","","","218461","3962020","GW","false","" +"NM-08984","","","201352","3629120","GW","false","" +"BW-0657","19S5E4.1","","364930","3617720","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04642","","","569874","3552540","GW","false","" +"NM-06069","","","238496","3577430","GW","false","" +"NM-02520","","","298231","3616640","GW","false","" +"NM-02272","M-125","","233064","3573826","GW","false","From northern I10 frontage road and Baker Ranch, continue east another 4.5 miles. Go north on Belgian road, over the railroad tracks for 0.1 miles. Go west on D010 for 0.9 miles to open gate on north side of road. Well located ~100 yd northwest of gate." +"NM-16209","","","349156","3763340","GW","false","" +"NM-09840","","","556982","3634370","GW","false","" +"NM-06602","","","337061","3586170","GW","false","" +"NM-23938","","","187103","3924930","GW","false","" +"NM-13590","","","550261","3692630","GW","false","" +"NM-11315","","","638192","3657540","GW","false","" +"NM-00501","","","622586","3648340","GW","false","" +"NM-10717","","","643193","3647320","GW","false","" +"NM-19063","","","649509","3818100","GW","false","" +"NM-21551","","","199616","3881020","GW","false","" +"MI-0134","","","480448","3929123","GW","true","Topographic situation: Plateau" +"MI-0311","","","481850","3919441","SP","true","Topographic situation: Edge of Plateau" +"NM-18809","","","594981","3812020","GW","false","" +"PP-009","PW-11a","","438018","4003038","GW","true","" +"NM-03169","","","463255","3820060","GW","false","" +"SA-0435","4S15W26.334","","187730","3759040","GW","true","" +"NM-10735","","","546941","3646760","GW","false","" +"NM-15982","","","674657","3756810","GW","false","" +"NM-00339","","","667086","3622580","GW","false","" +"NM-13037","","","409594","3685340","GW","false","" +"NM-18718","","","659212","3811700","GW","false","" +"NM-01672","","","448530","4043630","GW","false","" +"NM-15889","","","134963","3758710","GW","false","" +"NM-01922","","","246160","3542273","GW","false","Approx 20.5 miles S of Pine St & NM 11 intersection in Deming on NM 11, and 2.3 mi S of CR072 Bond Road intersection with NM 11, at west side of road at edge of field, go through opening in fence just to north of well, power pole at well. NM OSE Well ID #30071" +"NM-15965","","","205228","3758770","GW","false","" +"NM-20958","","","642587","3858140","GW","false","" +"QU-528","","","444384","4061046","D","true","" +"NM-21443","","","662407","3873570","GW","false","" +"NM-20306","","","387872","3841730","GW","false","" +"NM-13939","","","544769","3695560","GW","false","" +"SB-0859","Mayer 15","","465211","3550310","GW","false","" +"NM-28151","","","634767","3967420","GW","false","" +"NM-08633","","","644815","3621690","GW","false","" +"TO-0361","8N8E33.111","","398297","3860600","GW","true","" +"NM-26743","","","243479","4091850","GW","false","" +"NM-10059","","","410765","3637690","GW","false","" +"MI-0218","","","574142","3938086","GW","true","Topographic situation: Valley" +"TB-0075","","","404439","3675027","GW","true","Take Snake Tank Rd. off of Hwy 54 (just south of mile 89 on east side). Well is just south of house in front of grey shed, in cement box to west of grey shed." +"ED-0242","22S27E32.233","","574295","3579420","GW","true","" +"NM-23378","","","226909","3904990","GW","false","" +"NM-08891","","","560998","3623930","GW","false","" +"NM-00005","","","302962","3521860","GW","false","" +"NM-21601","","","401584","3877150","GW","false","" +"NM-24842","","","409853","3945930","GW","false","" +"PP-057","PW-62","","438591","4005207","GW","true","" +"NM-00751","","","476202","3698090","GW","false","" +"NM-15336","","","673976","3740690","GW","false","" +"NM-21369","","","381338","3871600","GW","false","" +"NM-26368","","","585366","4053700","GW","false","" +"NM-26137","","","239409","4026930","GW","false","" +"NM-27686","","","644210","3796140","GW","false","" +"NM-19359","","","671912","3826380","GW","false","" +"NM-04478","","","163970","3553400","GW","false","" +"AR-0074","B015","","238641","4087350","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 then slight N to Rd 2650. Turn right on Rd 2645 to address at end of road. Well is behind house near river bank, behind motor home." +"NM-11928","","","289550","3667750","GW","false","" +"QY-0281","11.31.26.13","","624883","3890810","GW","true","" +"NM-15925","","","210835","3757140","GW","false","" +"NM-12810","","","138129","3687410","GW","false","" +"DE-0050","","","590098","3559065","GW","false","" +"NM-16988","","","667100","3781730","GW","false","" +"NM-24154","","","404901","3929590","GW","false","" +"NM-06835","","","341784","3590680","GW","false","" +"NM-25403","","","406036","3972530","GW","false","" +"AS-008","DM-03","","446134","4042470","GW","true","" +"NM-16518","","","237944","3775970","GW","false","" +"NM-24527","","","398007","3939310","GW","false","" +"DE-0161","","","672864","3618857","GW","false","" +"AB-0154","S202","","299565","3816100","GW","true","" +"NM-24958","","","411161","3948470","GW","false","" +"NM-10674","","","556578","3646010","GW","false","" +"NM-13808","","","295689","3697060","GW","false","" +"NM-11284","","","609879","3656160","GW","false","" +"NM-27363","","","368371","3602340","GW","false","" +"EB-635","","","401300","3956280","GW","true","" +"NM-11371","","","400675","3657800","GW","false","" +"SB-0620","TWDB 4906301","","380859","3537374","GW","false","" +"NM-04472","","","237346","3551190","GW","false","" +"NM-01141","","","525760","3862210","GW","false","" +"AB-0015","S018","","330998","3850600","GW","true","" +"NM-07910","","","577113","3609840","GW","false","" +"NM-08935","","","193793","3628710","GW","false","" +"MI-0278","","","473622","3957881","GW","true","Topographic situation: Valley" +"NM-25091","","","652467","3955380","GW","false","" +"NM-05522","","","234406","3569240","GW","false","" +"NM-18239","","","615535","3803170","GW","false","" +"NM-13459","","","663264","3692650","GW","false","" +"NM-21263","","","346345","3868880","GW","false","" +"NM-14064","","","543033","3696850","GW","false","" +"BC-0245","245","","374266","3887900","GW","true","" +"SM-0117","","","471883","3645610","GW","true","" +"NM-00249","","","388908","3588790","GW","false","" +"NM-20770","","","666432","3854510","GW","false","" +"TO-0040","3N7E3.434","","390382","3819440","GW","true","" +"SB-0472","TWDB 4824602","","497025","3504506","GW","false","" +"NM-28428","S-2017-009","","607814","3588947","GW","true","" +"NM-03873","","","226948","3523540","GW","false","" +"NM-21434","","","397781","3872510","GW","false","" +"TB-0082","","","404028","3639936","GW","true","From new well #2, across road to east on 2 track." +"NM-26454","","","223625","4066210","GW","false","" +"NM-04864","","","133254","3562370","GW","false","" +"NM-21182","","","564006","3866000","GW","false","" +"NM-28022","","","357340","3881540","GW","false","" +"NM-25040","","","406942","3951350","GW","false","" +"NM-28232","","","170250","4076440","GW","false","" +"NM-09166","","","673674","3628890","GW","false","" +"NM-17126","","","658557","3784020","GW","false","" +"NM-01766","","","167499","3510880","GW","false","" +"NM-02750","","","564934","3662380","GW","false","" +"ED-0368","26S28E2.112","","588436","3549410","GW","true","" +"EB-001","","","398529","3935208","GW","true","North side of Entrada LaCienega, just west of I-25 frontage road. Well is in open area on Las Lagunitas property, ~50 ft inside fence, straight out from cattleguard, Welcome to La Cienega sign, and corner of fenceline." +"NM-06220","","","249776","3580440","GW","false","" +"NM-04991","","","264880","3560350","GW","false","" +"TV-221","","","444372","4015730","GW","true","NOTE: There are three wells at this site: 5"" PVC in steel case (Joe Thomas well) (TV-211); PVC in steel case set in cement culvert pad (TV-220); 6-5/8"" steel casing (TV-221). Get key from Roy Cunningham for Miranda canyon gate." +"NM-24151","","","669928","3930640","GW","false","" +"TC-272","CO-20","","411061","4101198","GW","true","" +"OG-0040","","","645784","3814599","GW","true","From int of SR 311 and US 60, west of Clovis, drive 5 miles west on US 60. Turn right north on CR V. Drive 3.7 miles north. Turn left west on CR 14. Drive 0.3 miles west. Well is less than 0.1 miles south of road in field." +"NM-13857","","","552986","3695300","GW","false","" +"SO-0111","5N1W32.444","","320451","3831520","GW","true","" +"NM-24461","","","435670","3937600","GW","false","" +"NM-25488","","","641770","3976740","GW","false","" +"QY-0662","6.27.10.424","","585904","3846270","GW","true","" +"NM-05410","","","224080","3568250","GW","false","" +"NM-08341","","","644493","3617030","GW","false","" +"NM-08922","","","639579","3625550","GW","false","" +"NM-06468","","","226683","3585940","GW","false","" +"AB-0216","S272","","342073","3883140","GW","true","" +"AB-0234","","","322585","3763319","GW","true","" +"NM-21218","","","336809","3868620","GW","false","" +"NM-09138","","","227140","3630360","GW","false","" +"NM-00844","","","311523","3726720","GW","false","" +"NM-23420","","","228031","3906970","GW","false","" +"NM-15942","","","284576","3755710","GW","false","" +"NM-27662","","","626121","3794950","GW","false","" +"SB-0525","TWDB 4845901","","463009","3460545","GW","false","" +"NM-00306","","","375347","3611520","GW","false","" +"HS-097","TC-097","","289977","3667846","GW","true","In block 102 in Hot Springs, NM" +"NM-01119","","","363579","3857290","GW","false","" +"NM-11123","","","619435","3653320","GW","false","" +"NM-19474","","","647738","3828390","GW","false","" +"NM-09888","","","636336","3636110","GW","false","" +"BW-0479","12S5E28.432","","359597","3678740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0270","11.31.14.33","","624848","3893220","GW","true","" +"HS-034","TC-034","","289285","3667819","GW","true","Between Broadway and Main on the peninsula" +"NM-08011","","","675140","3612190","GW","false","" +"NM-18359","","","656422","3805800","GW","false","" +"NM-16099","","","654370","3759820","GW","false","" +"NM-19304","","","224299","3827340","GW","false","" +"TO-0079","4N7E27.434","","390112","3822510","GW","true","" +"NM-26086","","","656575","4020730","GW","false","" +"SA-0148","","","257360","3711873","GW","true","Well is located near the Monticello Box. From Socorro, access from north (datil) same distance as from south (winston). Where rt 52 crosses Alamosa Creek, go south 4 miles, past the the Cupit ranch HQ (directly on the road to the west (R)) to a 2-track heading east (L) up Havil Canyon. Go through gate/cattle guard, and follow driveway up Havil Canyon past the Phelps ranch HQ for 2.6 miles to Teague House (white house with corrals and outbuildings). Turn east (L), go through gate (combo 3006) by corral, up the steep hill. Follow the 2-track across the top of the ridge for 1.25 miles, past the Gathering Tank well (on the Left), follow 2-track as it winds down off of the ridge. Follow 2-track as it crosses arroyo, bearing north (L) for Mirty Well 0.6 miles. Well is in small canyon." +"BW-0441","18S10E8.333","","411622","3624370","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05814","","","606834","3570190","GW","false","" +"NM-03116","","","628727","3809990","GW","false","" +"QY-0411","12.35.26.233","","663931","3900910","GW","true","" +"NM-07143","","","215231","3599180","GW","false","" +"HS-042","TC-042","","289842","3667712","GW","true","In the middle of Pershing street on the north side of the intersection of Pershing and Austin" +"BW-0485","1S8E7.332","","394445","3789080","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"CP-0021","","","667359","3809329","GW","true","From Hwy 60 in Clovis, well located approximately 1 mile north of EPCOR office @ 1005 N. Norris Street. Need escort to well." +"BW-0612","9S9E31.100a","","402615","3705780","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08689","","","201061","3626020","GW","false","" +"NM-27179","","","229465","3988270","ES","true","" +"DA-0076","23S2W23.341","","310008","3574090","GW","true","" +"NM-23977","","","408023","3922010","GW","false","" +"NM-12776","","","557752","3680140","GW","false","" +"NM-14597","","","643334","3711590","GW","false","" +"NM-22310","","","352913","3886070","GW","false","" +"PP-054","PW-59","","433717","4002009","GW","true","" +"QY-0983","9.34.12.133","","655648","3876760","GW","true","" +"NM-21741","","","403485","3879600","GW","false","" +"NM-22442","","","625673","3887320","GW","false","" +"NM-05802","","","235888","3572810","GW","false","" +"NM-06970","","","666048","3593060","GW","false","" +"NM-15002","","","621738","3727920","GW","false","" +"SA-0107","","","251697","3713317","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south to the Cupit Ranch HQ on the west side of the road and continue south to MM 42 (Watch the previous MM as this one appears to be correctly # 42 but says # 39 from the north side. NICE!) Turn to the west heading up Silver Creek across the eroded flats to the north/northwest. Look for corrals and water tank on the north side of the road, well is on the north side of the fence and the tank." +"BC-0352","347","","362336","3894922","GW","true","" +"PP-064","PW-69","","438327","4005380","GW","true","" +"NM-11143","","","655549","3654320","GW","false","" +"NM-03453","","","635845","3902940","GW","false","" +"NM-17615","","","674448","3791630","GW","false","" +"NM-04766","","","670128","3555480","GW","false","" +"NM-11588","","","282236","3663050","GW","false","" +"NM-09068","","","219254","3629650","GW","false","" +"NM-16982","","","529318","3780010","GW","false","" +"NM-16453","","","537599","3770960","GW","false","" +"NM-03607","","","568955","3999480","GW","false","" +"TV-191","","","439911","4020631","GW","true","From Stakeout Rd., turn left into Estancias Atalaya subdivision. Drive east past intersection. Well is on right." +"NM-20036","","","394123","3836660","GW","false","" +"NM-07293","","","600603","3598750","GW","false","" +"NM-27949","","","560140","3844140","GW","false","" +"NM-20680","","","341033","3851750","GW","false","" +"NM-22345","","","380413","3886100","GW","false","" +"NM-13639","","","476592","3693210","GW","false","" +"SA-0412","4S12W24.122","","218276","3761020","GW","true","" +"NM-27587","","","655252","3793420","GW","false","" +"NM-15865","","","663514","3752150","GW","false","" +"NM-05607","","","223071","3570650","GW","false","" +"BC-0041","32","","378414","3890630","GW","true","" +"GT-006","No Agua","","414461","4068886","GW","true","" +"NM-02093","","","270358","3560260","GW","false","" +"NM-27036","","","325204","3780910","GW","true","" +"MI-0035","","","547032","3900759","GW","true","Topographic situation: Plains" +"NM-10048","","","213492","3641230","GW","false","" +"NM-19932","","","401615","3834980","GW","false","" +"NM-20535","","","231257","3850640","GW","false","" +"NM-09418","","","408537","3630100","GW","false","" +"NM-12926","","","296567","3684650","GW","false","" +"NM-27094","","","324760","3771830","GW","true","" +"SB-0319","TWDB 4807610","","486846","3533578","GW","false","" +"NM-12186","","","159658","3675800","GW","false","" +"NM-15793","","","171641","3754410","GW","false","" +"TB-0095","","","433843","3709243","GW","true","158 Sunset Mesa. Take Hwy 37 and turn on to Pfinsgston between miles 7 and 8. Bear right on Sunset Mesa go about 2 miles. Wood windmill on right before driveway. Well is down hill west of house. Go past house west and take 2track just west of fence to well." +"NM-18674","","","332811","3811000","GW","false","" +"SM-1049","","","440837","3627783","SP","true","" +"SB-0170","TWDB 4743502","","530240","3463417","GW","false","" +"TB-0259","","","412209","3628021","GW","true","" +"SB-0384","TWDB 4807914","","485712","3530254","GW","false","" +"NM-10403","","","653371","3644210","GW","false","" +"NM-18874","","","678808","3815170","GW","false","" +"QY-0216","11.30.20.444a","","611751","3891410","GW","true","" +"NM-04245","","","346675","3540970","GW","false","" +"NM-12060","","","559406","3667710","GW","false","" +"NM-19483","","","637496","3828210","GW","false","" +"NM-12418","","","637687","3674940","GW","false","" +"NM-14366","","","135709","3708520","GW","false","" +"NM-16327","","","632687","3768240","GW","false","" +"NM-14321","","","542963","3700940","GW","false","" +"NM-17972","","","675600","3799760","GW","false","" +"AR-0237","","","236352","4084141","GW","true","From Aztec, drive 3.5 miles north on Hwy 550. Turn left (west) on Rd 2800. Drive 0.25 miles to address. Well is in pit in old house. David has ladder in building next to house." +"NM-11665","","","537122","3661780","GW","false","" +"SO-0217","SBB-E03A","","322994","3732623","GW","true","" +"NM-01963","","","308507","3546830","GW","false","" +"PP-056","PW-61","","438684","4005066","GW","true","" +"NM-22669","","","382750","3889800","GW","false","" +"NM-06794","","","324059","3589960","GW","false","" +"NM-24297","","","396985","3933560","GW","false","" +"NM-21055","","","387426","3861390","GW","false","" +"NM-19414","","","539188","3825600","GW","false","" +"NM-03359","","","615018","3881080","GW","false","" +"SD-0032","7N.7E.12.342","","394027","3856410","GW","true","" +"NM-25130","","","407772","3956180","GW","false","" +"SA-0403","3S12W33.434","","224349","3765930","GW","true","" +"WS-010","","","390006","3627428","GW","true","Behind admin. bldg." +"NM-17176","","","649076","3784420","GW","false","" +"BW-0826","2.10.9.34.311","","410884","3878630","GW","true","" +"NM-17974","","","625278","3798700","GW","false","" +"WL-0285","","","423184","3939702","GW","true","Take Old Pecos Trail exit on I-25 near Santa Fe. Go north (left) toward Santa Fe for 0.4 miles. Turn east (right) onto NM-300 (Old Las Vegas Hwy), road curves to south. Drive 1.0 mile and just past Harryโ€™s Roadhouse turn left (east) on El Gancho Way for ยผ mile. Road ends at Old Santa Fe Trail, turn south (right) on Old Santa Fe Trail for ~3.7 miles, go left at fork onto Canada Village Rd. Drive thru Canada Village about 2.2 miles; at some point, Canada Village Rd becomes Cougar Ridge Road. Oldenburg is on the right at 10 Cougar Ridge Road. Well is 280 ft north of house." +"NM-03565","","","408349","3975460","GW","false","" +"DE-0219","","","639746","3628404","GW","false","" +"NM-19656","","","414123","3830390","GW","false","" +"UC-0038","","","665711","4001519","GW","true","elv 4604 acc to USGS" +"NM-08001","","","232226","3614150","GW","false","" +"NM-15616","","","327722","3746230","GW","false","" +"NM-13388","","","549783","3690200","GW","false","" +"NM-04922","","","142248","3562760","GW","false","" +"BW-0910","1.1.2.7.100","","309039","3801060","SP","true","" +"NM-11744","","","649756","3664790","GW","false","" +"BW-0118","10S8E18.131","","393157","3700660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13150","","","556420","3686780","GW","false","" +"NM-01109","","","639425","3855340","GW","false","" +"NM-03507","","","668968","3937430","GW","false","" +"NM-11105","","","555659","3652290","GW","false","" +"NM-20410","","","620672","3844180","GW","false","" +"NM-04869","","","675207","3557420","GW","false","" +"NM-15074","","","145143","3736220","GW","false","" +"NM-13394","","","541538","3690160","GW","false","" +"NM-26766","","","550041","4092430","GW","false","" +"SB-0772","TWDB 4924601","","404204","3504210","GW","false","" +"NM-14244","","","406964","3699690","GW","false","" +"NM-24030","","","475122","3924250","GW","false","" +"NM-19516","","","572935","3827750","GW","false","" +"BW-0673","2.2.20.10","","516830","3807910","GW","true","" +"NM-22232","","","382626","3884960","GW","false","" +"NM-09727","","","218620","3636700","GW","false","" +"SB-0604","TWDB 4863901","","485738","3433398","GW","false","" +"NM-16696","","","630692","3777090","GW","false","" +"NM-04284","","","349454","3542420","GW","false","" +"QY-0421","12.36.29.242","","669298","3901140","GW","true","" +"NM-24233","","","476300","3931300","GW","false","" +"NM-21290","","","355257","3869420","GW","false","" +"NM-07006","","","358590","3593280","GW","false","" +"NM-14437","","","648658","3705970","GW","false","" +"NM-18663","","","656110","3810800","GW","false","" +"NM-09806","","","558623","3633890","GW","false","" +"NM-14502","","","549002","3706450","GW","false","" +"NM-05470","","","587715","3565710","GW","false","" +"NM-12980","","","644732","3685360","GW","false","" +"QU-511","","","440628","4059045","SP","true","Small spring at river level." +"SD-0381","11N.5E.14.342","","374554","3893220","SP","true","" +"DE-0087","","","639435","3568924","GW","false","" +"EB-388","","","403442","3937136","GW","true","Off NW corner of plant/ponds in open field across buffalo pasture fence" +"NM-13320","","","610147","3689830","GW","false","" +"NM-24294","","","477111","3933030","GW","false","" +"NM-25582","","","232633","3985710","GW","false","" +"NM-06939","","","545690","3591200","GW","false","" +"EB-534","","","420062","3926513","GW","true","" +"NM-15478","","","676461","3744030","GW","false","" +"NM-19628","","","396266","3830200","GW","false","" +"NM-26729","","","444084","4084234","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Then right (north) on State Line towards red barn.Turn left (west) at T, then right at next T. Well is located along fence at utility pole #36360. Large blue turbine well. First one heading north after last right turn." +"NM-13115","","","673486","3687800","GW","false","" +"QY-0855","8.28.6.332","","589488","3867110","GW","true","" +"NM-05786","","","330131","3570420","GW","false","" +"NM-15382","","","653689","3741570","GW","false","" +"NM-15456","","","677707","3743400","GW","false","" +"NM-17987","","","656530","3799600","GW","false","" +"BW-0877","2.22.33.29.422","","640511","3996860","GW","true","" +"MB-0003","","","251004","3574067","GW","true","From intersection of Gold and Pine St in Deming go E on NM-549 for 4.5 mi, then left on NM-337 E. Go 2.4 mi then left on road into farm for 0.5 mi. Well is E of the house." +"TV-502","","","443457","4016260","SP","true","" +"NM-01511","","","644763","3962340","GW","false","" +"NM-00323","","","283180","3617920","GW","false","" +"NM-15940","","","665105","3755160","GW","false","" +"AR-0112","NMED 565","B009","243470","4091200","GW","true","From Hwy 550 in Cedar Hill, turn east on 2350 towards river. Follow to address (road winds a bit). House is on east side of road when it turns to dirt. Well is in field on S side of house next to green and white pole (small weather station). Very cooperative owner." +"NM-13657","","","539508","3693380","GW","false","" +"NM-04188","","","244040","3540760","GW","false","" +"NM-00663","","","443462","3687920","GW","false","" +"NM-13891","","","548567","3695430","GW","false","" +"NM-18540","","","652865","3808320","GW","false","" +"NM-20207","","","407672","3839870","GW","false","" +"WS-401","","","381266","3632565","OT","true","test of audit" +"NM-22353","","","613992","3886120","GW","false","" +"NM-08167","","","208450","3617540","GW","false","" +"NM-04897","","","561464","3556400","GW","false","" +"NM-25312","","","565115","3967830","GW","false","" +"NM-03401","","","347192","3890790","GW","false","" +"NM-06195","","","674555","3578480","GW","false","" +"BW-0843","4.14.10.18.424","","405505","3662480","GW","true","" +"NM-18950","","","320310","3815620","GW","false","" +"NM-18573","","","579601","3807970","GW","false","" +"NM-17494","","","670488","3789830","GW","false","" +"NM-16590","","","210227","3778380","GW","false","" +"BW-0927","1.3.18.30","","154183","3819110","SP","true","" +"NM-07469","","","285982","3604560","GW","false","" +"NM-11907","","","562867","3665360","GW","false","" +"NM-06877","","","572617","3590160","GW","false","" +"NM-26863","","","163904","3649510","GW","true","" +"NM-20797","","","631295","3853780","GW","false","" +"NM-23878","","","407251","3918070","GW","false","" +"NM-14483","","","464521","3705810","GW","false","" +"NM-16390","","","303170","3771300","GW","false","" +"AB-0232","S288","","347365","3933740","GW","true","" +"NM-12568","","","557022","3676590","GW","false","" +"NM-02794","","","551992","3683000","GW","false","" +"NM-06818","","","671315","3590530","GW","false","" +"NM-24834","","","406734","3945840","GW","false","" +"SM-2006","","","442669","3634948","M","true","Hwy 24 to 96 Upper Rio Penasco Rd. House is on south side of road, precip station behind house" +"NM-08872","","","670428","3625420","GW","false","" +"NM-20214","","","674819","3841130","GW","false","" +"NM-10494","","","649171","3645320","GW","false","" +"NM-22645","","","186462","3894120","GW","false","" +"NM-10316","","","669136","3643080","GW","false","" +"NM-07862","","","336695","3610170","GW","false","" +"NM-18217","","","369542","3802900","GW","false","" +"NM-13044","","","614150","3685780","GW","false","" +"SA-0476","6S15W24.111","","189968","3742760","GW","true","" +"NM-03171","","","635653","3821800","GW","false","" +"NM-11488","","","283553","3661600","GW","false","" +"NM-12360","","","553911","3672820","GW","false","" +"NM-08709","","","559943","3622010","GW","false","" +"NM-19022","","","676115","3817180","GW","false","" +"NM-03279","","","658585","3849710","GW","false","" +"NM-13780","","","542370","3694840","GW","false","" +"NM-15220","","","672570","3737330","GW","false","" +"NM-02443","","","356885","3596360","GW","false","" +"NM-12611","","","555439","3677390","GW","false","" +"EB-390","","","404686","3933111","GW","true","Adjacent to water tanks east of Elem School." +"NM-21215","","","538328","3866880","GW","false","" +"BW-0341","17S9E1.112","","409096","3636900","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18024","","","562045","3798870","GW","false","" +"NM-20245","","","586776","3840530","GW","false","" +"DE-0244","","","671174","3570198","GW","false","" +"NM-15243","","","647220","3737340","GW","false","" +"NM-01612","","","480114","4015850","GW","false","" +"NM-28028","","","373188","3881850","GW","false","" +"NM-18434","","","470584","3805270","GW","false","" +"NM-21084","","","585837","3862060","GW","false","" +"NM-06246","","","572963","3578460","GW","false","" +"NM-07503","","","216420","3607010","GW","false","" +"NM-11832","","","555590","3664450","GW","false","" +"TO-0384","8N13E8.332","","446399","3865610","GW","true","" +"UC-0200","","","651020","4071305","GW","false","" +"NM-26139","","","150263","4030230","GW","false","" +"NM-10827","","","276918","3650530","GW","false","" +"NM-03271","","","668252","3846680","GW","false","" +"SM-0233","","","454401","3638217","GW","true","RV park just southwest of Mayhill off of Hwy 130 Rio Penaso Rd (east side of rd). Well is between road and admin building. Water goes into stucco pumphouse." +"NM-26161","","","318533","4026920","GW","false","" +"SD-0097","9N.6E.29.142","","379245","3871480","GW","true","" +"NM-24739","","","407347","3944320","GW","false","" +"NM-26650","","","194189","4078200","GW","false","" +"BW-0312","16S9E25.200a","","409534","3640540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08648","","","659652","3622100","GW","false","" +"QY-0849","8.27.5.324","","581724","3867210","GW","true","" +"SM-0031","","","421525","3645073","GW","true","US 82 to Take Westside road in High Rolls to Rupp Hill road to Serenity Heights Drive. House is first left on Serenity Heights Drive. House has brown siding and green roof. Well is ~ 50 feet north of east side of house in Y where the gravel road splits, adjacent to wooden post with electric box." +"NM-13430","","","550142","3690600","GW","false","" +"NM-12801","","","559275","3680640","GW","false","" +"NM-15457","","","674081","3743370","GW","false","" +"QY-0630","5.29.7.242","","600570","3837320","GW","true","" +"NM-21176","","","491806","3865440","GW","false","" +"NM-04921","","","211782","3560730","GW","false","" +"BW-0473","26S8E32.111","","391010","3541620","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09011","","","190750","3629760","GW","false","" +"NM-06427","","","364764","3582400","GW","false","" +"WL-0243","","","452806","3710141","GW","false","Heading east on US 380E/Billy the Kid Blvd from Capitan, drive ~4 miles. Wells are on left side of road ~0.25 mile after MM 89. Look for large fencing around well. This is the well closest to the highway, enclosed in fence." +"NM-07719","","","554274","3606670","GW","false","" +"NM-03651","","","223580","4066920","GW","false","" +"EB-230","","","415704","3941123","GW","true","#126, Box 71 Arroyo Hondo Rd (CR-58); in well pit, right of front door, behind wall" +"NM-07954","","","628859","3611210","GW","false","" +"DE-0204","","","639581","3628284","GW","false","" +"NM-18850","","","666171","3813790","GW","false","" +"NM-02321","","","489989","3575890","GW","false","" +"QY-0353","11.35.26.133","","663372","3891200","GW","true","" +"NM-02299","","","612364","3574660","GW","false","" +"NM-14710","","","293283","3717480","GW","false","" +"NM-23297","","","380354","3899600","GW","false","" +"NM-07622","","","677637","3606690","GW","false","" +"AR-0141","B022","NMED 281","237772","4086330","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 then left onto Rd 2684. Proceed to address on left." +"NM-11220","","","637802","3655780","GW","false","" +"PP-021","PW-19","","438547","4003293","GW","true","" +"RA-1004","","","378081","4003218","SP","false","" +"NM-26535","","","448780","4064860","GW","false","" +"NM-17467","","","642151","3788590","GW","false","" +"NM-21376","","","378856","3871820","GW","false","" +"NM-23160","","","350311","3897210","GW","false","" +"NM-15864","","","212519","3755000","GW","false","" +"WL-0084","NM3523402","","151921","3736050","GW","true","Heading south on Hwy 435 through town, make left on Orchid/Plant Road, next left on Blue Owl Road. Follow dirt road to end at pumphouse. Well is on east side of pumphouse in enclosure." +"NM-21059","","","146306","3867630","GW","false","" +"RA-017","","","388229","4008620","GW","true","Can be accessed from CR 142. Cross fence. Well in cinder block building 300 ft east of house. " +"TO-0332","7N14E27.442","","460355","3851100","GW","true","" +"NM-24680","","","379511","3943330","GW","false","" +"NM-25115","","","415476","3955420","GW","false","" +"NM-16784","","","307051","3779170","GW","false","" +"NM-18301","","","611108","3803820","GW","false","" +"JM-037","","","309033","3658022","GW","true","" +"SO-0274","NRCS","","328580","3763955","GW","true","" +"NM-15208","","","646495","3735970","GW","false","" +"NM-10498","","","638755","3645230","GW","false","" +"NM-06366","","","666393","3581670","GW","false","" +"NM-07225","CR-2015-002","","574230","3597710","GW","true","" +"QY-0576","5.29.15.133a","","604120","3835610","GW","true","" +"QU-156","","","447215","4065640","GW","true","From 522, turn right at the crest of the plateau climbing out of town center. This is the Eagle Rock Trailer Park. Well is in concrete block building at the end of the road." +"NM-26914","PW-046","","368984","3907727","GW","true","" +"NM-13887","","","554432","3695430","GW","false","" +"CX-0061","25N26E9","","573633","4030250","GW","true","" +"WL-0109","NM3523202","","206430","3801243","GW","true","Take Hwy 60 past Pie Town until you get to Top of the World Land Sale, Groceries, Ice store (~ 3 miles west of Pie Town). Behind Top of the World store turn on dirt road west of building. Well house and well in fenced enclosure. To pick up key from Penny, head west on Hwy 60, drive 0.4 mi from pie stores and turn left on South Pie Town Road at Pie Town RV Park. Drive 0.1 mi to house, a log home on right just south of RV park. Might be a ""Log, Stick, and Steel"" truck parked out front." +"NM-20391","","","595958","3843330","GW","false","" +"NM-09039","","","190679","3630010","GW","false","" +"NM-27257","","","327005","3571950","GW","false","" +"NM-21935","","","644368","3882020","GW","false","" +"NM-12897","","","555436","3682370","GW","false","" +"NM-10216","","","629124","3640810","GW","false","" +"NM-21652","","","355608","3878810","GW","false","" +"NM-14576","","","550483","3709510","GW","false","" +"SB-0288","TWDB 4807504","","481044","3533495","GW","false","" +"NM-14087","","","550728","3697220","GW","false","" +"NM-25117","","","220140","3959440","GW","false","" +"NM-19514","","","615222","3828430","GW","false","" +"SB-0372","TWDB 4807816","","481852","3530661","GW","false","" +"NM-23725","","","656485","3913810","GW","false","" +"NM-09299","","","284749","3630750","GW","false","" +"NM-27111","CH-27","","429742","4002390","GW","false","" +"UC-0030","","","672625","4024245","GW","true","South from Clayton on 402 to Campsey Road. 6 miles east on Campsey. Turn to south thru gat go 0.1 miles to well next to metal paddock with numbers ""K-14""" +"SM-0182","","","522677","3629154","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-25522","","","272324","3982030","GW","false","" +"AS-060","DM-38","","445687","4043240","GW","true","" +"EB-240","SF-31","","406983","3946736","GW","true","North of off Caja del Oro Grant Rd; on SW corner of park by road" +"BW-0327","16S10E8.113","","411164","3644130","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19397","","","640348","3826650","GW","false","" +"NM-14727","","","547071","3716210","GW","false","" +"DE-0213","","","639472","3628346","GW","false","" +"SO-0236","SFC-W03A","","312683","3721087","GW","true","" +"NM-03339","S179","","348031","3877340","GW","false","" +"TV-903","","","444526","4011687","M","true","Located in Carson NF. From NM-518 south of Talpa, take right on FS road 476 toward Vallecitos. Drive westward a mile or two. Take right fork at fence line, cross cattleguard and park. Site is 100 m south of cattleguard on fence line." +"NM-05234","","","200495","3565870","GW","false","" +"NM-22572","","","660025","3889280","GW","false","" +"NM-11412","","","406362","3658520","GW","false","" +"NM-26202","","","318638","4031910","GW","false","" +"NM-04714","","","323425","3555130","GW","false","" +"NM-25010","","","410420","3949810","GW","false","" +"TV-240","COR-33","","443993","4027861","GW","true","Up steep gravel driveway opposite latilla fence. East of mobile home." +"CP-0004","NM3528422","","631561","3789086","GW","true","From Elida, go north on NM 330. Road will make sharp turn east, then north again, then east. Stay east taking NM 267 (use gravel cutoff) to Floyd. From city hall in Floyd, go to west side of town and turn right (north) on S. Roosevelt Rd Ag, go ~1.25 mi, then turn east in gap in fence at electric box, take left (north) on 2-track, cross pasture, turn left (west) follow 2-track to well house." +"NM-17490","","","642476","3789090","GW","false","" +"JM-036","","","296825","3662870","GW","true","" +"SB-0924","","","517118","3441580","GW","false","" +"QY-0247","11.30.30.413","","609568","3890180","GW","true","" +"NM-22014","","","381559","3882720","GW","false","" +"QY-0953","9.30.18.211","","609569","3874990","GW","true","" +"SD-0199","10N.6E.13.224","","386454","3884330","GW","true","" +"MI-0291","","","462219","3965258","GW","true","Topographic situation: Valley" +"WL-0070"," NM3510209","","225112","3634757","GW","false","" +"NM-04412","","","669529","3547400","GW","false","" +"NM-10863","","","278564","3650920","GW","false","" +"NM-16161","","","549241","3760080","GW","false","" +"NM-06576","M-140","","268088","3586970","GW","false","" +"NM-17165","","","651048","3784390","GW","false","" +"NM-20992","","","671394","3859620","GW","false","" +"NM-14007","","","546058","3696180","GW","false","" +"NM-11399","","","286067","3660280","GW","false","" +"CX-0163","81","","518507","4022260","GW","true","Miami" +"NM-10214","","","677696","3641110","GW","false","" +"NM-26223","","","470619","4031700","GW","false","" +"NM-24020","","","414626","3924310","GW","false","" +"NM-16594","","","669642","3775740","GW","false","" +"NM-16442","","","656933","3772400","GW","false","" +"BW-0079","7S11E33.14","","425244","3724500","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04240","","","345124","3540730","GW","false","" +"QY-0122","10.35.5.222","","659880","3888560","GW","true","" +"NM-07688","","","555945","3606220","GW","false","" +"DE-0252","","","628964","3622674","GW","false","" +"NM-07050","","","568312","3593490","GW","false","" +"DE-0091","","","639324","3568973","GW","false","" +"NM-13374","","","558416","3690150","GW","false","" +"NM-21504","","","346440","3876190","GW","false","" +"NM-22227","","","376296","3884980","GW","false","" +"NM-24519","","","400420","3939030","GW","false","" +"NM-08440","","","674394","3619050","GW","false","" +"NM-06714","","","672526","3588460","GW","false","" +"NM-19528","","","660668","3829380","GW","false","" +"NM-01356","","","465214","3916860","GW","false","" +"NM-15711","","","379365","3747680","GW","false","" +"SM-0118","","","471881","3644871","GW","true","" +"NM-13125","","","554638","3686370","GW","false","" +"SM-4017","","","435197","3632060","PS","true","Stream flow measurement by Patrick Walsh" +"NM-04902","","","676090","3557930","GW","false","" +"QY-0761","7.29.19.443","","600200","3852530","GW","true","" +"NM-00758","","","439867","3699450","GW","false","" +"AR-0185","G001","NMED 45","243805","4091590","GW","true","From Aztec, take Hwy 550 into Cedar Hill. Turn right onto Rd 2350 and take left turn in Rd. Then take right turn in Rd 2350 and follow around right bend in Rd. Proceed to address on left." +"NM-07941","","","231841","3613390","GW","false","" +"MI-0167","","","581995","3932574","GW","true","Topographic situation: La Cinta Valley" +"NM-14041","","","545126","3696640","GW","false","" +"NM-09637","","","550002","3631870","GW","false","" +"QY-0784","7.31.11.444","","626067","3856000","GW","true","" +"NM-24018","","","666546","3925460","GW","false","" +"NM-23126","","","350900","3896590","GW","false","" +"NM-26476","","","223640","4066670","GW","false","" +"NM-02911","","","680184","3739740","GW","false","" +"SB-0666","TWDB 4915503","","387451","3520823","GW","false","" +"NM-17599","","","643934","3790770","GW","false","" +"NM-04973","","","242100","3560600","GW","false","" +"BW-0840","4.9.4.4.134","","356910","3714130","GW","true","" +"NM-23135","","","350627","3896700","GW","false","" +"TC-283","CO-30","","413507","4101570","GW","true","" +"NM-22690","","","376771","3890150","GW","false","" +"NM-18872","","","377629","3813600","GW","false","" +"NM-02149","","","177876","3567210","GW","false","" +"NM-22910","Webster W2","","357910","3893050","GW","false","" +"TS-002","","","439140","4066604","SP","true","East side of river, at Chiflo Trail. Large wetland." +"NM-13279","","","554470","3688680","GW","false","" +"NM-26626","","","193632","4076470","GW","false","" +"NM-27706","","","640426","3789270","GW","false","" +"NM-28123","","","336783","3930910","GW","false","" +"JM-002","","","318396","3644997","GW","true","" +"NM-01326","","","370676","3909988","GW","true","From I-25, take NM-165 east thru Placitas ~7.1 miles. Turn left (north) onto Camino de Tecolote and drive ~0.8 miles. Turn left (west) onto Camino de la Rosa Castilla and drive ~1.1 miles to Tres Amigos Rd, turn sharp left (almost a 180-degree turn), then curve right to stay on Tres Amigos. Cross Las Huertas Creek, drive ~0.1 mile to Debajo de Ojo and turn left. Debajo de Ojo is essentially the Hogan driveway, so drive to the end, the only house is the Hogans'." +"NM-09537","","","411017","3631070","GW","false","" +"SO-0165","ESC-W05A","","325922","3777116","GW","true","" +"NM-24735","","","404454","3944320","GW","false","" +"NM-01791","","","364276","3520130","GW","false","" +"BC-0101","87","","377242","3892250","GW","true","" +"NM-16212","","","666537","3764310","GW","false","" +"NM-00135","","","564196","3560280","GW","false","" +"NM-08821","","","554886","3623240","GW","false","" +"NM-03014","","","621672","3797790","GW","false","" +"NM-26892","PW-161","","373300","3909557","GW","true","" +"NM-09561","","","560382","3631130","GW","false","" +"NM-04655","","","228419","3556050","GW","false","" +"NM-26361","","","585403","4052470","GW","false","" +"NM-06182","","","575954","3577100","GW","false","" +"NM-26625","","","578773","4071020","GW","false","" +"QY-0312","11.32.24.323","","636303","3892090","GW","true","" +"NM-06693","","","566032","3586850","GW","false","" +"NM-06355","","","548799","3580260","GW","false","" +"UC-0193","","","628521","3996999","GW","false","" +"TV-164","COR-66","","439960","4025718","GW","true","At WWTP, go left (west) on Thomas H. Romero Rd past treatment plant, over hill, past barrow pit, then right (north) towards river. Well/vault by corrals west of drive." +"TC-216","","","423767","4073057","GW","true","" +"TS-027","","","437859","4077679","SP","true","East bank, just upstream from Sunshine Trail." +"NM-02305","","","155711","3580340","GW","false","" +"QY-0238","11.30.3.341","","613793","3896310","GW","true","" +"EB-034","","","419740","3936689","GW","true","" +"NM-05552","","","234521","3569640","GW","false","" +"NM-10905","","","631366","3650020","GW","false","" +"NM-14465","","","638114","3706730","GW","false","" +"QY-0563","5.28.18.131","","589729","3835660","GW","true","" +"NM-24389","","","432561","3935900","GW","false","" +"WL-0214","","","343155","4058179","GW","true","From Hwy 95 & Hwy 64 in town of Los Ojos, drive west on Hwy 95 for 13.3 miles to Stone House Lodge on south (left) side of road. Road turns to dirt. Continue for 0.15 mile to Pinon Ridge sign on north (right) side of road, turn north (right), thru gate onto Leaning Pine Rd for 0.1 mile, turn west (right) on Christy Lane for 0.1 mile to well outside well house next to road." +"QY-0537","17.35.9.243","","661158","3954300","GW","true","" +"NM-16152","","","667764","3761680","GW","false","" +"NM-12117","","","632159","3670090","GW","false","" +"NM-00631","","","652508","3674510","GW","false","" +"NM-20853","","","579808","3854820","GW","false","" +"NM-19871","","","592667","3834090","GW","false","" +"NM-12404","","","680675","3675420","GW","false","" +"EB-351","","","412716","3940083","GW","true","2-Track N from Gallina Camp; then NE across RR grade, across Cienega Creek to turn" +"NM-00119","","","358359","3558060","GW","false","" +"NM-19293","","","634880","3824070","GW","false","" +"NM-20335","","","393273","3842400","GW","false","" +"NM-25856","","","235576","4004250","GW","false","" +"NM-28048","","","352839","3879940","GW","false","" +"NM-11402","","","665951","3659330","GW","false","" +"BC-0325","322","","378869","3885710","GW","true","" +"NM-17746","","","655679","3793860","GW","false","" +"NM-01406","","","159115","3938940","GW","false","" +"NM-25757","","","318739","3996030","GW","false","" +"NM-25678","","","427297","3987550","GW","false","" +"NM-19605","","","652496","3831950","GW","false","" +"NM-19641","","","594005","3830280","GW","false","" +"NM-25586","","","647577","3983250","GW","false","" +"NM-13230","","","556129","3687860","GW","false","" +"NM-01066","","","597415","3844300","GW","false","" +"NM-16959","","","542711","3779820","GW","false","" +"NM-23002","","","349473","3894560","GW","false","" +"NM-04042","","","139409","3536290","GW","false","" +"NM-22342","","","374236","3886150","GW","false","" +"OG-0020","","","641420","3820168","GW","true","" +"NM-15676","","","653899","3747610","GW","false","" +"NM-05246","","","242343","3565030","GW","false","" +"NM-22507","","","616755","3887850","GW","false","" +"NM-00034","","","489065","3542360","GW","false","" +"NM-00924","","","629413","3800730","GW","false","" +"NM-09350","","","200141","3633510","GW","false","" +"NM-09378","","","675710","3631460","GW","false","" +"NM-03114","","","580281","3809020","GW","false","" +"NM-17183","","","660159","3784690","GW","false","" +"UC-0031","","","668263","4024510","GW","true","Head south from Clayton on 402 to Campsey Road. Go east 3 miles. Well adjacent to old cement water tower or silo, right next to road on south side." +"ED-0295","23S27E29.12","","573969","3571870","GW","true","" +"NM-13104","","","656750","3687730","GW","false","" +"NM-00965","","","595486","3812610","GW","false","" +"NM-26725","","","238597","4086910","GW","false","" +"NM-17882","","","669580","3797610","GW","false","" +"DE-0334","","","674319","3589978","GW","false","" +"NM-00129","","","458387","3559100","GW","false","" +"NM-15334","","","613647","3739130","GW","false","" +"NM-00999","","","654310","3821240","GW","false","" +"BW-0397","17S10E19.112a","","410065","3631240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0363","TWDB 4807806","","482298","3530167","GW","false","" +"NM-24606","","","404797","3941080","GW","false","" +"NM-00955","","","673029","3811840","GW","false","" +"AR-0114","","","243169","4091580","GW","true","Going S on Hwy 550 from Cedar Hill, turn left (east) onto Rd 2350, then south onto 2351. Follow cedar fence on dirt road. Well is on N side of lot on cement pad. Two large dogs on premises." +"TO-0547","8N9E34.33","","409769","3859280","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"SB-0135","TWDB 4734102","","514036","3482840","GW","false","" +"NM-05665","","","259685","3570150","GW","false","" +"NM-12896","","","555514","3682380","GW","false","" +"NM-22504","","","374260","3887910","GW","false","" +"TC-259","CO-07","","419309","4104245","GW","true","" +"NM-04564","","","133984","3557130","GW","false","" +"NM-06274","","","551210","3578880","GW","false","" +"NM-12271","","","655253","3672950","GW","false","" +"NM-19576","","","602115","3829350","GW","false","" +"NM-02962","","","679467","3757830","GW","false","" +"NM-16066","","","559958","3757330","GW","false","" +"NM-27822","","","575470","3804170","GW","false","" +"MI-0124","","","609333","3920995","GW","true","Topographic situation: Hill" +"BC-0342","341","","378427","3887675","GW","true","" +"AB-0179","S230","","345404","3891310","GW","true","" +"NM-13114","","","360497","3687130","GW","false","" +"QY-0320","11.32.4.42","","632464","3896990","GW","true","" +"NM-17263","","","204734","3788950","GW","false","" +"NM-11887","","","289669","3667260","GW","false","" +"NM-02956","","","661888","3755510","GW","false","" +"SD-0098","9N.6E.30.122","","377428","3871830","GW","true","" +"NM-23863","","","642885","3918020","GW","false","" +"BW-0019","22S4E11.244","","359203","3586820","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06943","","","278693","3593600","GW","false","" +"AS-039","ES-131","","449990","4042370","GW","true","" +"EB-092","","","409900","3955470","GW","true","Tano Rd Assoc" +"DE-0387","","","569057","3626594","GW","false","" +"SB-0275","TWDB 4807418","","476869","3533688","GW","false","" +"NM-10388","","","556675","3642620","GW","false","" +"NM-01045","","","148632","3844630","GW","false","" +"NM-02686","","","162103","3653370","GW","false","" +"BW-0882","3.14.4.4.211","","289533","3666940","GW","true","" +"DE-0013","","","628622","3567206","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep." +"NM-07817","","","677685","3609800","GW","false","" +"NM-09489","","","411456","3630750","GW","false","" +"NM-02351","M-132","","235286","3582527","GW","false","5.5 miles N on US180 from US180 & NM26 intersection, go right at cattle guard, number is 6545, 0.7 miles on two track road, can be muddy, towards house and open barns. Can access well thru gate on fence on south side of property if gate at front of house is closed. Well next to power poles, metal tube frame, and red and gray shed." +"NM-16112","","","225674","3762530","GW","false","" +"NM-03500","","","621381","3931450","GW","false","" +"NM-03927","","","118638","3529610","GW","false","" +"NM-18081","","","541878","3799990","GW","false","" +"NM-07741","","","227957","3610690","GW","false","" +"NM-06506","","","551711","3583160","GW","false","" +"NM-06955","","","674722","3592900","GW","false","" +"NM-26142","","","310969","4025390","GW","false","" +"QY-0321","11.32.5.22","","630750","3897630","GW","true","" +"NM-17478","","","607854","3788160","GW","false","" +"NM-09857","","","654745","3636100","GW","false","" +"NM-13880","","","544538","3695350","GW","false","" +"TB-1023","","","431160","3710116","SP","true","From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road thru other gate (several miles), go past the cabin and up the hill to the road to the left heading west. Go 0.4 miles and look for mint on left (south) side of road. Spring is in the ditch with a berm above it to the west." +"NM-02503","","","658585","3612320","GW","false","" +"NM-22023","","","268343","3884970","GW","false","" +"NM-28280","SS-3","","443713","4077930","GW","false","" +"NM-06310","","","543575","3579370","GW","false","" +"NM-27274","","","539147","3575350","GW","false","" +"BW-0147","11S10E8.311","","413876","3692480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QU-904","","","443963","4055956","M","true","" +"NM-08690","","","628324","3622380","GW","false","" +"NM-21356","","","379181","3871450","GW","false","" +"NM-27612","","","670966","3794530","GW","false","" +"NM-12514","","","654678","3676490","GW","false","" +"NM-27298","","","527153","3581930","GW","false","" +"NM-25557","","","406680","3981210","GW","false","" +"PB-0029","","","379228","3937278","GW","false","Well is ~300 yards SE of current municipal well (PB-0021)" +"NM-28038","","","237217","3886750","GW","false","" +"NM-21469","","","191363","3878680","GW","false","" +"AH-005","AH-05","","438542","4043832","GW","true","" +"NM-09899","","","311328","3636500","GW","false","" +"TV-213","","","443824","4011868","GW","true","AKA ""Hell Hole"" or ""Hell Well""" +"NM-21283","","","377322","3869010","GW","false","" +"NM-08427","","","212267","3621400","GW","false","" +"NM-23125","","","351003","3896600","GW","false","" +"NM-26373","","","585781","4054510","GW","false","" +"NM-10062","","","317617","3639030","GW","false","" +"NM-14226","","","546147","3699110","GW","false","" +"NM-11794","","","555826","3664050","GW","false","" +"NM-02997","","","650996","3779670","GW","false","" +"NM-04085","","","344670","3533310","GW","false","" +"TC-232","","","433672","4095908","GW","true","" +"NM-13069","","","552082","3685530","GW","false","" +"SD-0373","10N.5E.21.223","","372166","3883240","SP","true","" +"NM-01320","","","364365","3909270","GW","false","" +"NM-04280","","","227253","3544830","GW","false","" +"NM-05781","","","238860","3572270","GW","false","" +"TB-1052","","","412074","3652792","ES","true","Just east of road crossing in La Luz drainage (field trip stop 1). Stream disappeared just down stream from this (10 ft)." +"NM-13633","","","549664","3693210","GW","false","" +"NM-00003","","","300523","3518680","GW","false","" +"SB-0765","TWDB 4924424","","395242","3506052","GW","false","" +"NM-22270","","","374022","3885380","GW","false","" +"NM-10836","","","301251","3650130","GW","false","" +"SV-0082","31 Prado Vista","","377394","3898813","GW","false","Unit 3 Lot 54A" +"NM-03730","","","166154","3496350","GW","false","" +"NM-24487","","","403735","3938350","GW","false","" +"NM-24210","","","436578","3930820","GW","false","" +"PC-093","PW-168","","364280","3911061","GW","true","" +"NM-22710","","","346736","3890760","GW","false","" +"NM-23020","","","354342","3894670","GW","false","" +"NM-18638","","","273362","3811680","GW","false","" +"NM-20831","","","391963","3854340","GW","false","" +"NM-06874","","","663152","3591230","GW","false","" +"TB-0046","","","405270","3661208","GW","true","At junction of hwy 54 and Bookout NW, turn east on Bookout. Go 0.8 mi to corner of alfalfa field. Turn Right (south) at Abercrombie sign, follow to back (~200 ft)." +"NM-21480","","","344236","3875300","GW","false","" +"NM-16371","","","679197","3770700","GW","false","" +"NM-11969","","","654799","3667250","GW","false","" +"NM-11649","","","564679","3661710","GW","false","" +"NM-18175","","","486537","3801110","GW","false","" +"DE-0031","","","606148","3604537","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep\" +"NM-12208","","","289854","3672250","GW","false","" +"BW-0153","13S9E19.214","","395406","3671500","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00103","","","562189","3554000","GW","false","" +"NM-26573","","","581237","4067440","GW","false","" +"TB-0050","","","434587","3709385","GW","true","Between mile 7 and 8 on Hwy 37, west on Pfingsten Rd. Bear right on Sunset Mesa. Big straw bale house on right." +"NM-18322","","","611436","3804130","GW","false","" +"NM-16846","","","593708","3778550","GW","false","" +"BW-0448","19S6E21.434","","375063","3611840","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17601","","","229287","3793420","GW","false","" +"NM-09683","","","227372","3635930","GW","false","" +"NM-23697","","","407362","3911690","GW","false","" +"PP-034","PW-37","","434131","4002828","GW","true","" +"NM-19860","","","565556","3833640","GW","false","" +"NM-25508","","","651231","3979090","GW","false","" +"SM-2005","","","468390","3641987","M","true","Hwy 82 east of Mayhill. Heading east, as road turns north, look for headless windmill on right. Right over cattle guard, station is on left of driveway, just past carport. Around mile 44-45 marks" +"HS-505","TC-505","","289825","3667969","SP","true","Decorative display outside of Geronimo Springs Museum." +"NM-23149","","","235250","3899500","GW","false","" +"EB-336","","","403199","3944575","GW","true","599 to CR62, south on frontage road 2.3 mi to locked gate #424 (says transfer station closed) on right; around to left just behind hill, 300' from 599 and just north of Santa Fe River" +"NM-03773","","","136837","3520050","GW","false","" +"TB-1057","","","428055","3709202","SP","true","Just east of Gaylord Canyon Trail about halfway between Pennsylvania and Tortolita Canyon Trail." +"AR-0020","","","229016","4079450","GW","true","On south side of Rd. 3050 between Rd. 3133 and Rd. 3063. Well is in yard on west side near fence along Rd. 3050." +"QU-120","","","443600","4070643","GW","true","North on Hwy. 522 out of Questa, take Rt. 378 west towards Cerro and Wild Rivers. Find Ute Mountain Road on right at NW contact w/Cerro Guadalupe. Buena Vista Road is second right, towards the second cluster of houses. Well on side of driveway." +"QY-0398","12.34.22.421","","653083","3902120","GW","true","" +"NM-04401","","","669114","3547120","GW","false","" +"SO-0196","SAC-W01A","","324129","3791351","GW","true","" +"BW-0762","2.32.31.34.133","","622145","4092310","GW","true","" +"NM-00908","","","340601","3792830","GW","false","" +"NM-15160","","","631523","3733720","GW","false","" +"NM-19274","","","224579","3826470","GW","false","" +"QY-0222","11.30.22.333a","","613483","3891420","GW","true","" +"NM-05200","","","214677","3564780","GW","false","" +"NM-11806","","","555540","3664240","GW","false","" +"SB-0365","TWDB 4807809","","481852","3530661","GW","false","" +"NM-27269","","","589651","3574660","GW","false","" +"NM-04089","","","344301","3533540","GW","false","" +"NM-24531","","","344604","3940110","GW","false","" +"NM-08875","","","558319","3623760","GW","false","" +"NM-19707","","","670194","3832450","GW","false","" +"NM-09509","","","560618","3630730","GW","false","" +"NM-21018","","","670211","3860400","GW","false","" +"NM-15553","","","673135","3744460","GW","false","" +"NM-02275","","","150671","3578600","GW","false","" +"QY-0992","9.34.4.212","","651696","3878660","GW","true","" +"NM-22689","","","347527","3890520","GW","false","" +"SA-0322","","","252522","3702186","GW","true","" +"NM-03768","","","169256","3514680","GW","false","" +"NM-25836","","","478331","3999110","GW","false","" +"UC-0078","","","670373","3978421","GW","true","From major intersection in Clayton (First St. and Main St.) go south on Rt 412. At Y in road go left to Rt 402 south. To continue on Rt 402 south, at stop sign at S. First Ave. and Court St. turn left. + +21.7 mi./ 0.0 Intersection with Route 421 + +3.4 mi. Continuing south on Rt. 402 S go to very small town of Stead +and intersection with Stead Rd. Continue south on 402 S. + +17.3 / 0.0mi. Intersection with Route 402 and Koger Rd. Koger Rd. is a dirt road that heads east off of 402 S it is not clearly marked from 402 S. You will see the sign for Koger Rd. just before crossing the cattle guard that is less than 0.1 mi east of 402 S. on Koger Rd. + +3.2 mi From 402 S and Koger Rd, go east ~3.2 mi to cattle guard on left (north) side of Koger Rd. turn North. Cross cattle guard and follow 2-tracks north for 0.2 miles. + +3.4 mi. Travel west along fence line for 0.2 miles. + +3.6 mi. Travel north along fence line for 0.2 miles. +Well is located in NW corner of fenced area" +"NM-24911","","","408436","3947580","GW","false","" +"NM-23330","","","393365","3900170","GW","false","" +"NM-10567","","","265289","3647720","GW","false","" +"SD-0302","11N.7E.24.121","","395267","3892460","GW","true","" +"NM-17401","","","657541","3788100","GW","false","" +"NM-26211","","","173684","4036660","GW","false","" +"NM-28120","","","404010","3921710","GW","false","" +"NM-13413","","","556553","3690420","GW","false","" +"NM-18163","","","651338","3802110","GW","false","" +"NM-26838","","","547868","3687787","GW","true","" +"NM-01019","","","670078","3829600","GW","false","" +"NM-15508","","","629181","3743180","GW","false","" +"SO-0273","NRCS 1 P1B","","328651","3763918","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"WL-0241","","","416793","3650302","GW","false","Heading south on US 54W from Tularosa @ ~6 miles, turn left on Dog Ranch Rd. At end of road, yield right onto Appler Rd, drive ~1 mile and turn left onto Laborcita Canyon Rd, drive ~3.5 miles to Arrowhead Rd on left hand side. Well is next to blue shed on north side of Laborcita Canyon Road." +"NM-13515","","","543702","3691580","GW","false","" +"SB-0034","TWDB 4709808","","506656","3513220","GW","false","" +"NM-22754","","","356132","3891070","GW","false","" +"NM-25749","","","176601","3999600","GW","false","" +"NM-11732","","","554094","3663270","GW","false","" +"NM-11871","","","665025","3666520","GW","false","" +"SB-0886","24.18.29.210","","488455","3561903","GW","true","" +"NM-25385","","","411799","3972070","GW","false","" +"NM-09497","","","554534","3630600","GW","false","" +"NM-22739","","","393402","3890370","GW","false","" +"NM-27057","","","323979","3781700","GW","true","" +"SB-0501","TWDB 4836301","","450425","3483318","GW","false","" +"NM-04033","","","221715","3532460","GW","false","" +"NM-10132","","","439459","3638240","GW","false","" +"NM-00914","","","598489","3786670","GW","false","" +"BW-0542","18S10E7.2","","411023","3625380","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SD-0265","11N.6E.20.324","","379445","3891790","GW","true","" +"NM-15905","","","666820","3754080","GW","false","" +"DA-0165","28S2E13.333","","339296","3526950","GW","true","" +"NM-22366","","","393099","3886150","GW","false","" +"NM-02928","","","657142","3744310","GW","false","" +"NM-15484","","","654117","3743700","GW","false","" +"NM-24492","","","405498","3938390","GW","false","" +"QY-0469","14.37.6.324","","676701","3926510","GW","true","" +"NM-09887","","","210359","3639100","GW","false","" +"NM-19325","","","630814","3824940","GW","false","" +"NM-25661","","","404834","3986500","GW","false","" +"NM-27601","","","646753","3793810","GW","false","" +"NM-24387","","","634630","3936660","GW","false","" +"NM-09280","","","201473","3632760","GW","false","" +"NM-01136","","","441417","3860880","GW","false","" +"EB-260","","","394928","3966358","GW","true","End of Buckman Rd; south side of arroyo; by river" +"NM-05391","","","273909","3566680","GW","false","" +"NM-26894","PW-084","","372506","3910897","GW","true","" +"NM-06259","","","328226","3579830","GW","false","" +"NM-23911","","","637659","3919850","GW","false","" +"NM-09676","","","553433","3632230","GW","false","" +"NM-15555","","","680101","3744680","GW","false","" +"NM-17726","","","597405","3792520","GW","false","" +"NM-05394","","","539295","3564290","GW","false","" +"NM-15679","","","679879","3748250","GW","false","" +"NM-04848","","","233224","3559160","GW","false","" +"SB-0268","TWDB 4807409","","480226","3531895","GW","false","" +"NM-00368","","","286387","3628520","GW","false","" +"NM-27521","","","657575","3772710","GW","false","" +"MG-019","WF-7","","290622","3777660","GW","true","From Hwy 60 west, turn right onto Hwy 169. Turn right after MM1 into property at 108 Hwy 169. Windmill well." +"NM-13402","","","548438","3690250","GW","false","" +"NM-00605","","","404022","3664880","GW","false","" +"NM-09413","","","557815","3629760","GW","false","" +"NM-09954","","","410569","3636150","GW","false","" +"TB-0262","","","408789","3631236","GW","true","" +"NM-17766","","","666767","3794730","GW","false","" +"NM-01209","","","598917","3882380","GW","false","" +"NM-03173","","","638586","3823480","GW","false","" +"SD-0073","8N.8E.19.211","","395978","3863740","GW","true","" +"NM-13443","","","622870","3691650","GW","false","" +"OG-0046","","","651377","3810141","GW","true","" +"NM-23334","","","386719","3900310","GW","false","" +"NM-21805","","","374059","3880730","GW","false","" +"SD-0277","11N.6E.28.323","","380802","3890140","GW","true","" +"NM-07486","","","624129","3603880","GW","false","" +"UC-0140","","","577911","4069260","GW","false","" +"NM-16808","","","542105","3777720","GW","false","" +"NM-17378","","","645358","3788050","GW","false","" +"NM-05654","","","158735","3572930","GW","false","" +"NM-28351","148733","","158047","3697499","SP","false","Gila National Forest" +"NM-21858","YAL-W2","","351819","3881580","GW","false","" +"EB-419","","","412511","3932877","GW","true","10 Casa del Oro Loop" +"NM-10092","","","673668","3639590","GW","false","" +"NM-15504","","","674319","3744450","GW","false","" +"NM-10450","","","552749","3643430","GW","false","" +"NM-18962","","","591968","3814790","GW","false","" +"QY-0688","6.28.7.112","","589696","3847280","GW","true","" +"NM-27221","","","624288","3544120","GW","false","" +"NM-17166","","","650664","3784380","GW","false","" +"NM-28274","ER-4","","449616","4075730","GW","false","" +"JM-012","JSAI Exp Well 5","","314718","3647895","GW","true","" +"NM-01194","","","277194","3881500","GW","false","" +"NM-17252","","","652437","3785610","GW","false","" +"NM-04203","","","119406","3545290","GW","false","" +"NM-17209","","","658617","3785030","GW","false","" +"SO-0212","SAC-W09C","","324650","3791111","GW","true","" +"NM-05735","","","297607","3570060","GW","false","" +"NM-07370","","","213127","3604170","GW","false","" +"NM-03064","","","633620","3798170","GW","false","" +"NM-20609","","","627494","3849380","GW","false","" +"NM-01220","","","623923","3885310","GW","false","" +"NM-02483","M-180","","186632","3610990","GW","false","" +"NM-20322","","","633569","3842480","GW","false","" +"UC-0128","","","675856","3997349","GW","false","USGS, not in NESWCD network, not visited by NMBGMR" +"NM-19929","","","400342","3834960","GW","false","" +"NM-24729","","","408227","3944280","GW","false","" +"WL-0174","","","524442","3636020","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well is north of Hope, NM on Hwy 5. Take Hwy 82 (Main St) west out of Hope, NM. Make right and head north on 5th Street; dog-legs to west then north again and turns into Hwy 5 or Lecheguilla Rd. Well is at intersection ""Y"" with another road. Corrals on right. Well under windmill & near pumpjack and stock tank." +"NM-19778","","","624894","3832960","GW","false","" +"NM-01174","","","438970","3874330","GW","false","" +"NM-10916","","","612470","3649660","GW","false","" +"NM-00586","","","404843","3661550","GW","false","" +"NM-28393","N-2016-092","","559856","3627382","GW","true","" +"NM-13129","","","138057","3693120","GW","false","" +"NM-19989","","","251088","3838550","GW","false","" +"NM-24451","","","402344","3937720","GW","false","" +"SD-0116","10N.4E.13.212","","366125","3885010","GW","true","" +"NM-26932","PW-097","","371747","3909768","GW","true","" +"NM-14057","","","654850","3698150","GW","false","" +"SB-0801","TWDB 5007602","","487528","3422283","GW","false","" +"MI-0072","","","445348","3922201","GW","true","Topographic situation: Valley" +"NM-22252","","","356879","3885450","GW","false","" +"NM-08218","","","546080","3614080","GW","false","" +"MI-0272","","","471873","3959073","GW","true","Topographic situation: Edge of valley" +"NM-04467","","","605882","3548240","GW","false","" +"BW-0162","13S9E35.144","","401453","3667780","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21415","","","345844","3872680","GW","false","" +"NM-00106","","","670042","3556270","GW","false","" +"NM-09268","","","550957","3628270","GW","false","" +"NM-11624","","","666180","3662590","GW","false","" +"SB-0449","TWDB 4816703","","491320","3514453","GW","false","" +"SA-0074","SA-16_R01","","243597","3776398","GW","true","From Hwy 60, 1/4 mile W of marker 81, take county road to S about 2.3 miles. Just past Snake Hill, turn W on 2 track. Follow for 0.4 miles, look for cattle pen and WM." +"NM-02365","","","577127","3580900","GW","false","" +"TO-0083","4N8E2.121","","401297","3830110","GW","true","" +"NM-26305","","","211767","4047560","GW","false","" +"NM-24270","","","429262","3932630","GW","false","" +"NM-25475","","","173385","3980520","GW","false","" +"NM-10771","","","648106","3648780","GW","false","" +"NM-16408","","","677283","3771560","GW","false","" +"BW-0107","9S7E25.134","","391011","3707330","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-23397","","","386415","3902320","GW","false","" +"NM-21505","","","346237","3876190","GW","false","" +"NM-21118","","","665845","3864450","GW","false","" +"NM-21529","","","376157","3876660","GW","false","" +"NM-27849","","","613252","3780650","GW","false","" +"NM-16354","","","639034","3769160","GW","false","" +"NM-22234","","","374727","3885090","GW","false","" +"TB-0014","","","413775","3663400","GW","true","Hwy east from Tularoasa, about 5 mi. Plain gate on R side of road just south of hills (before Virden road). Gate is dummie locked, road heads in east and north. Well is past WM, keep heading eastward on dirt road. Solar well is fenced in nearby big storage tank." +"NM-17961","","","636808","3798680","GW","false","" +"SB-0483","TWDB 4829301","","461266","3496603","GW","false","" +"NM-28261","","","336948","3840312","GW","false","" +"NM-09829","","","624390","3634960","GW","false","" +"NM-20337","","","144912","3848690","GW","false","" +"NM-04322","","","119504","3550080","GW","false","" +"SD-0240","11N.5E.24.221","","376777","3892610","GW","true","" +"MG-010","","","294087","3777164","GW","true","Southeast of school by brown shed behind track" +"SO-0009","1N3E15.340a","","351196","3797140","GW","true","" +"EB-468","","","401326","3927799","GW","true","" +"NM-09793","","","399396","3634100","GW","false","" +"EB-342","","","403560","3924863","GW","true","22B San Marcos Road East, Lot 36 Block 2" +"NM-19452","","","624740","3827350","GW","false","" +"NM-18869","","","597980","3813290","GW","false","" +"NM-13989","","","544355","3695840","GW","false","" +"NM-04657","","","550034","3552610","GW","false","" +"NM-17189","","","651840","3784550","GW","false","" +"NM-20388","","","596060","3843300","GW","false","" +"NM-25480","","","477469","3974920","GW","false","" +"NM-01307","","","658499","3908020","GW","false","" +"TO-0366","8N9E8.111","","406526","3867090","GW","true","" +"TO-0218","6N8E1.111","","403178","3849360","GW","true","" +"TV-232","","","441479","4025438","GW","true","Well is in basement of shed beside house." +"NM-24924","","","410676","3947770","GW","false","" +"TB-0099","","","418820","3722192","GW","true","500 17th Street Carrizozo. Take Hwy 54 from light at 380 heading south. South end of town bear left across tracks to 2nd road (17th St). East to Carrizozo Orchard. West of house on drive, around corner north to past well #2 by powerpole - go about halfway across orchard to this well." +"NM-23284","","","656626","3899910","GW","false","" +"NM-22743","","","239914","3893510","GW","false","" +"NM-18591","","","606378","3808570","GW","false","" +"NM-00452","","","669615","3641650","GW","false","" +"NM-23718","","","380765","3912710","GW","false","" +"UC-0129","","","676245","3999979","GW","false","USGS, not in NESWCD network, not visited by NMBGMR" +"DA-0101","24S5W13.222","","283219","3567840","GW","true","" +"NM-23835","","","381626","3916770","GW","false","" +"NM-17253","","","651029","3785590","GW","false","" +"NM-12057","","","561582","3667720","GW","false","" +"NM-01463","","","664840","3945480","GW","false","" +"TB-0129","","","404790","3705348","GW","true","Oscuro Hostel Rd., 244 Grand Blvd, Country Rd. A002 - straight and curve by sign for hostel" +"NM-26929","PW-101","","371813","3905415","GW","true","" +"NM-08205","","","677117","3615370","GW","false","" +"NM-09396","","","195263","3634150","GW","false","" +"NM-25708","","","391586","3990200","GW","false","" +"NM-06244","","","332575","3579510","GW","false","" +"NM-08946","","","555062","3624450","GW","false","" +"NM-27494","","","562914","3733390","GW","false","" +"BW-0190","14S9E24.2","","403664","3661480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02185","","","333925","3566160","GW","false","" +"NM-19253","","","665871","3823460","GW","false","" +"NM-22594","","","375313","3888970","GW","false","" +"AB-0239","","","362928","3880150","GW","true","" +"NM-09599","","","561419","3631540","GW","false","" +"NM-06418","","","365303","3582240","GW","false","" +"NM-22135","","","389449","3883760","GW","false","" +"NM-16828","","","675312","3779600","GW","false","" +"NM-01893","","","348105","3536430","GW","false","" +"NM-00997","","","185158","3824150","GW","false","" +"NM-13796","","","414983","3695240","GW","false","" +"TB-0303","","","403502","3667974","GW","true","From Hwy 54, turn off is 2.7 miles north of mile marker 81 (bridge). Go east across railroad tracks, veer left. Go towards building. Well is next to beige trailer. Pressure tanks are in red shed." +"NM-12832","","","620273","3682160","GW","false","" +"NM-26302","","","677360","4043700","GW","false","" +"NM-25975","","","415152","4007560","GW","false","" +"QY-0808","7.32.11.431","","635203","3856330","GW","true","" +"NM-06991","","","539108","3592130","GW","false","" +"NM-25599","","","628084","3983560","GW","false","" +"NM-17551","","","305447","3790850","GW","false","" +"TC-212","WG-20","","428405","4078218","GW","true","" +"NM-00006","","","302885","3521950","GW","false","" +"NM-03711","","","167695","3488980","GW","false","" +"NM-26675","","","607466","4076230","GW","false","" +"NM-16093","","","678550","3760120","GW","false","" +"NM-00028","","","669923","3544320","GW","false","" +"NM-04507","","","232934","3552140","GW","false","" +"NM-14846","","","418332","3721520","GW","false","" +"QY-0935","9.27.5.122a","","582189","3877210","GW","true","" +"NM-13565","","","611327","3692830","GW","false","" +"SD-0190","10N.6E.8.121","","379517","3885850","GW","true","" +"NM-07406","","","619429","3602280","GW","false","" +"NM-10475","","","559941","3643750","GW","false","" +"SM-3025","","","486144","3653410","PS","true","Next to fence" +"EB-332","","","399720","3935678","GW","true","Address of well location: 27242-A East Frontage Rd. From East Frontage Road, take left fork past first house. Well on hill on right side. Head of Guicu Creek, east of I-25" +"NM-22565","","","347290","3889090","GW","false","" +"NM-00290","","","326609","3608980","GW","false","" +"NM-12250","","","288291","3673120","GW","false","" +"HS-083","TC-083","","289786","3667757","GW","true","In block 9 in Hot Springs, NM" +"NM-28314","OC-31","","407395","4020172","GW","false","" +"NM-16185","","","657040","3762880","GW","false","" +"NM-20376","","","402236","3843100","GW","false","" +"TO-0434","9N15E14.134","","470754","3873710","GW","true","" +"NM-25612","","","408933","3983530","GW","false","" +"QU-151","TPZ-5B","","444544","4060989","GW","true","" +"NM-07307","","","255079","3601480","GW","false","" +"SM-0042","","","450528","3630163","GW","true","121 Agua Chiquita (hwy 521) just west of Weed on N side of road. Well is in back in well house. Should be able to access well through wire port." +"NM-08486","","","239153","3621620","GW","false","" +"TB-0061","","","404552","3688833","GW","true","Take Three Rivers Road at store, head east. Several miles back take a south (right) turn by sign to Ranch Headquarters. Follow road through big white concrete fences, curve to south after passing through 2nd white concrete gate. Continue east/northeast on road. Turn R just after silted in cattleguard." +"NM-14924","","","543659","3723830","GW","false","" +"NM-20402","","","659302","3844980","GW","false","" +"NM-16906","","","624194","3780170","GW","false","" +"PB-0004","","","378459","3937592","GW","true","N from Pena Blanca on Hwy 22, turn W on Calle Esquela Vieja and follow to address. Well is N of house" +"QY-0811","7.32.16.321","","631582","3855050","GW","true","" +"QY-0602","5.29.23.121","","606033","3834530","GW","true","" +"NM-09903","","","221627","3638990","GW","false","" +"NM-21026","","","417161","3859440","GW","false","" +"DE-0229","","","639877","3628258","GW","false","" +"QY-0619","5.29.5.342","","601113","3838140","GW","true","" +"QU-901","","","437371","4061819","M","true","Location is a short walk from the log-in guest area for fee area on right; before visitor center and before fork to loop drive. Hole in the ground near a blown over pinon." +"ED-0046","19S25E17.13","","545603","3613880","GW","true","" +"NM-13523","","","556985","3691780","GW","false","" +"NM-02234","M-113","","250776","3571384","GW","false","From east side of Deming, go east on NM549 for 3.6 miles (0.8 miles east of NM-549 x NM-377 intersection). Turn left (east) on B037 and go 0.8 miles. Turn right on the dirt road and go another 0.5 miles. Well located at end of dirt road, in tall, wide casing inside fence." +"HS-081","TC-081","","282949","3678686","GW","true","Well by trailer and cow pens" +"NM-07310","","","189099","3603560","GW","false","" +"NM-00049","","","363915","3544370","GW","false","" +"NM-02856","","","407000","3714140","GW","false","" +"NM-21399","","","345857","3872590","GW","false","" +"QY-0403","12.34.36.434","","656057","3898370","GW","true","" +"NM-21508","","","345504","3876330","GW","false","" +"NM-07204","","","672471","3597730","GW","false","" +"NM-06849","","","565751","3589840","GW","false","" +"NM-22082","","","358751","3883730","GW","false","" +"TB-0302","","","402922","3671293","GW","true","Must be escorted to location. Well is on far north side of orchard." +"NM-22969","","","362404","3894090","GW","false","" +"NM-03291","","","672180","3855630","GW","false","" +"NM-24230","","","437035","3931370","GW","false","" +"MI-0175","","","438453","3938117","GW","true","Topographic situation: Valley" +"NM-09805","","","559169","3633890","GW","false","" +"NM-24473","","","400210","3938170","GW","false","" +"AB-0146","S193","","337725","3910330","GW","true","" +"NM-02614","","","525097","3630330","GW","false","" +"ED-0131","21S27E29.321","","573858","3590480","GW","true","" +"BW-0133","11S9.5E12.422","","411406","3693440","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24763","","","405364","3944710","GW","false","" +"NM-25280","","","216854","3969940","GW","false","" +"NM-21957","","","362477","3882160","GW","false","" +"NM-06890","","","672760","3591570","GW","false","" +"NM-03949","","","343381","3524580","GW","false","" +"BC-0178","158","","379113","3885430","GW","true","" +"NM-23636","","","407518","3909750","GW","false","" +"NM-16257","","","213301","3768940","GW","false","" +"BC-0383","386","","","","GW","false","" +"NM-06821","","","342978","3590320","GW","false","" +"NM-13990","","","546137","3695880","GW","false","" +"NM-26984","","","326954","3772840","GW","true","" +"NM-24827","","","622942","3946110","GW","false","" +"NM-25345","","","661257","3970910","GW","false","" +"NM-10398","","","554986","3642770","GW","false","" +"NM-22063","","","394657","3883020","GW","false","" +"NM-27825","","","581205","3802620","GW","false","" +"NM-27467","","","547031","3719040","GW","false","" +"QU-166","","","444545","4061653","GW","true","" +"SO-0226","SBB-W05A","","322805","3732975","GW","true","" +"NM-07506","","","216057","3607080","GW","false","" +"NM-07743","","","619623","3607670","GW","false","" +"NM-06795","","","133371","3595140","GW","false","" +"SM-4074","","","447266","3628620","PS","true","Stream flow measurement by Patrick Walsh" +"NM-19402","","","623708","3826380","GW","false","" +"NM-05152","","","675374","3561390","GW","false","" +"NM-15342","","","661652","3740710","GW","false","" +"WL-0101","S-2016-020","","618459","3559120","GW","true","" +"NM-12748","","","554158","3679720","GW","false","" +"NM-20413","","","576344","3843730","GW","false","" +"ED-0280","23S27E2.122","","578754","3578280","GW","true","" +"NM-09124","","","392844","3626930","GW","false","" +"SM-0113","","","473543","3596995","GW","true","Location originally from Chris Eastoe @ U of A." +"NM-24641","","","412253","3941930","GW","false","" +"NM-02206","","","273735","3568250","GW","false","" +"BC-0239","239","","379331","3885660","GW","true","" +"NM-20440","","","562403","3844310","GW","false","" +"BC-0098","84","","376810","3891430","GW","true","" +"NM-07543","","","216576","3607900","GW","false","" +"NM-12637","","","655566","3679270","GW","false","" +"DE-0157","","","672542","3618867","GW","false","" +"NM-17875","","","593453","3796450","GW","false","" +"NM-17284","","","232139","3788340","GW","false","" +"NM-27651","","","668829","3795260","GW","false","" +"SA-0052","SA-52_R00","","224895","3751056","GW","true","From Datil, go S on Rt 12 for 7 miles. Turn E on county road. Go 11 miles past 3 wells to sheep well. From sheep well, head W to Middlle well (2.2 mi), go thru gate (combo 2020). Go S 1.5 miles, then W 2 miles to well. [From OSE notes: From sheep well (SA-0045) go ~5.8 mi to Eloysia well. Follow main road SSW. Go by middle well, steel WM tower, pump jack, and large metal storage tank about 30 yards NNE of WM.]" +"NM-21900","","","273196","3883420","GW","false","" +"NM-02591","","","286385","3628160","GW","false","" +"MI-0301","","","506310","3901862","SP","true","Topographic situation: Valley" +"TO-0239","6N9E28.333","","407842","3841610","GW","true","" +"NM-08136","","","676873","3614440","GW","false","" +"NM-15650","","","325602","3746980","GW","false","" +"NM-00194","","","586636","3575520","GW","false","" +"TO-0033","2N15E24.212","","470798","3805530","GW","true","" +"NM-02059","","","136542","3561790","GW","false","" +"NM-25134","","","406947","3956650","GW","false","" +"NM-24251","","","338614","3933220","GW","false","" +"NM-03947","","","255359","3526240","GW","false","" +"NM-15496","","","135293","3749190","GW","false","" +"NM-10285","","","620019","3641620","GW","false","" +"NM-08305","","","561885","3615340","GW","false","" +"DA-0067","22S3E7.444","","343276","3586380","GW","true","" +"NM-14145","","","678459","3700120","GW","false","" +"QY-0271","11.31.19.122","","618901","3892750","GW","true","" +"NM-03582","","","408154","3983260","GW","false","" +"SA-0466","6S14W7.330","","191735","3744560","GW","true","" +"CX-0091","24N27E25.4","","588801","4015480","GW","true","" +"NM-24961","","","408949","3948530","GW","false","" +"NM-25435","","","411635","3973300","GW","false","" +"NM-20883","","","367748","3856010","GW","false","" +"NM-12266","","","668437","3673110","GW","false","" +"NM-14956","","","357249","3726240","GW","false","" +"NM-26084","","","474242","4019300","GW","false","" +"EB-641","","","394978","3956163","GW","true","Off of Santa Fe 599 Bypass, take Hwy 62 /Forest road 24 northwest. Well is approximately 9 miles off of 599, on small 2 track on north side of road. Well has remnants of orange pumpjack structure around it, found in split rail fence paddock." +"TC-278","CO-26","","417661","4100599","GW","true","" +"NM-24898","","","676657","3948490","GW","false","" +"NM-01657","","","310775","4040440","GW","false","" +"NM-11271","","","556756","3655560","GW","false","" +"TS-040","","","435700","4041249","SP","true","Spring zone on east side." +"TV-109","SW-27","","439266","4022500","GW","true","From SR 68, turn left (west) onto SR 96. Go ~2-1/2 miles, pass golf course. Driveway on left, #1136. Gate locked. Contact owner." +"QY-0376","12.32.12.221","","636958","3905960","GW","true","" +"NM-18244","","","626163","3803210","GW","false","" +"NM-18317","","","585692","3803610","GW","false","" +"SO-0168","HWY-E01B","","328946","3755366","GW","true","" +"SB-0692","TWDB 4915604","","389674","3522123","GW","false","" +"MI-0039","","","553932","3906305","GW","true","Topographic situation: Plains" +"NM-05760","","","300731","3570490","GW","false","" +"NM-03837","","","350015","3519740","GW","false","" +"NM-22736","","","375638","3890540","GW","false","" +"NM-07183","","","663447","3597150","GW","false","" +"NM-03184","","","568193","3824720","GW","false","" +"NM-06649","","","603343","3586120","GW","false","" +"SB-0815","TWDB 5101504","","503980","3423138","GW","false","" +"PP-060","PW-65","","434942","4005399","GW","true","" +"NM-05670","","","293143","3569440","GW","false","" +"SD-0160","10N.5E.22.212","","373424","3883310","GW","true","" +"NM-25171","","","185179","3964780","GW","false","" +"NM-04929","","","675979","3558260","GW","false","" +"SB-0903","26.18.21.331","","489131","3543099","GW","true","" +"NM-12364","","","563103","3672910","GW","false","" +"NM-14156","","","537526","3698180","GW","false","" +"NM-20034","","","401199","3836610","GW","false","" +"NM-28055","","","236444","3893890","GW","false","" +"NM-06038","","","328346","3574730","GW","false","" +"NM-18734","","","655205","3811630","GW","false","" +"NM-11473","","","565369","3659310","GW","false","" +"NM-07525","","","671353","3605040","GW","false","" +"NM-13606","","","477987","3692770","GW","false","" +"OG-0056","","","644275","3815442","GW","true","From int of SR 311 and US 60, west of Clovis, drive 5 miles west on US 60. Turn right north on CR V. Drive 3.7 miles north. Turn left west on CR 14. Drive 1 mile west. Turn right north on CR W. Drive 0.5 miles. Turn left west on dirt. Drive 0.28 miles to well." +"NM-02360","","","154186","3585550","GW","false","" +"NM-14046","","","250171","3699790","GW","false","" +"NM-23858","","","389607","3917350","GW","false","" +"NM-06302","","","578680","3579520","GW","false","" +"EB-075","","","417230","3954370","GW","true","" +"NM-06224","","","331189","3578900","GW","false","" +"NM-18947","","","580057","3814250","GW","false","" +"NM-26830","","","203721","3813700","GW","true","" +"NM-08234","","","674816","3615760","GW","false","" +"NM-09329","","","555297","3628880","GW","false","" +"NM-01724","","","319759","4078080","GW","false","" +"NM-19138","","","668411","3819810","GW","false","" +"NM-15365","","","561664","3739670","GW","false","" +"NM-12957","","","671262","3684840","GW","false","" +"NM-00343","","","642721","3623160","GW","false","" +"NM-26145","","","630174","4024670","GW","false","" +"NM-27954","","","570273","3846060","GW","false","" +"NM-16165","","","646561","3761700","GW","false","" +"NM-19327","","","547784","3824010","GW","false","" +"AH-014","BURL","","439682","4043794","GW","true","" +"NM-23445","","","244543","3907590","GW","false","" +"DE-0173","","","672896","3618745","GW","false","" +"NM-11957","","","560400","3666110","GW","false","" +"NM-26068","","","601226","4018830","GW","false","" +"MI-0092","","","481447","3923192","GW","true","Topographic situation: Mesa slope" +"NM-01085","","","649406","3850960","GW","false","" +"NM-05873","","","676292","3571850","GW","false","" +"NM-23440","","","629450","3904720","GW","false","" +"SD-0106","9N.7E.7.331","","386652","3875350","GW","true","" +"NM-12679","","","675972","3680540","GW","false","" +"QY-0285","11.31.30.112","","618498","3891100","GW","true","" +"NM-05523","","","233987","3569250","GW","false","" +"NM-09271","","","553402","3628320","GW","false","" +"NM-10072","","","670423","3639310","GW","false","" +"NM-09692","","","629850","3633060","GW","false","" +"BW-0891","4.3.25.28","","562559","3764350","GW","true","" +"NM-03045","","","633569","3791810","GW","false","" +"NM-12583","","","676314","3678820","GW","false","" +"NM-23620","","","368075","3909930","GW","false","" +"NM-03456","","","662493","3905530","GW","false","" +"NM-26242","","","444818","4034900","GW","false","" +"NM-11527","","","397979","3660420","GW","false","" +"NM-06119","","","156493","3581000","GW","false","" +"SA-0317","","","243243","3716623","GW","true","" +"TC-431","","","450939","4089636","GW","true","The well is a turbine well at the edge of the gravel pit, west of the house (located at 4200 Hwy 522 Costilla, NM 87524)." +"NM-07929","","","672629","3611190","GW","false","" +"NM-10556","","","540926","3644860","GW","false","" +"NM-17725","","","579836","3792350","GW","false","" +"NM-18538","","","656501","3808350","GW","false","" +"NM-27123","MLC-42","","438120","4038720","GW","false","" +"NM-04065","","","142789","3537720","GW","false","" +"SM-0029","","","421203","3650539","GW","true","From US70-54, north of the US 82 interchange, take Gravel pit Rd. (or Dog Ranch by Boot Hill building on L, right on Appler) east to Laborcita Canyon Road. Take Laborcita Canyon rd (see above) to La Luz Canyon Rd. Go 2 miles on La Luz Canyon Rd. after sharp hairpin look for 213 La Luz on left side (north). Itโ€™s at same entrance as ""A little bit of Heaven"", sharp left into drive. Well is on excavated bench across driveway from house next to shed." +"SB-0798","TWDB 5007402","","476857","3420761","GW","false","" +"SO-0250","SMC-W05A","","314798","3728409","GW","true","" +"NM-16497","","","662859","3773670","GW","false","" +"NM-24572","","","401340","3940230","GW","false","" +"NM-11089","","","643521","3653270","GW","false","" +"QY-0880","8.30.7.222","","609824","3866670","GW","true","" +"NM-23239","","","349586","3899250","GW","false","" +"TO-0500","3N15E26.111","","468234","3813390","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-08183","","","658546","3614720","GW","false","" +"NM-10765","","","274045","3649890","GW","false","" +"NM-12861","","","483938","3681770","GW","false","" +"NM-08649","","","207109","3625130","GW","false","" +"NM-05277","","","238739","3565520","GW","false","" +"NM-25253","","","310668","3966290","GW","false","" +"ED-0112","21S26E25.22","","571464","3591240","GW","true","" +"NM-23416","","","215921","3907250","GW","false","" +"DE-0014","","","617672","3571079","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Cluster of 3 wells (NGL #11, 12, 10). Well #11 is at south end of enclosure NE of old windmill." +"NM-11013","","","545236","3650540","GW","false","" +"NM-05378","","","263352","3566770","GW","false","" +"AR-0523","","","244184","4104463","PS","true","Take HWY 550 to CR 213, upstream of bridge. Site is located in large bend in river, on steep banks." +"NM-04473","","","343492","3549040","GW","false","" +"NM-13101","","","628644","3687100","GW","false","" +"BW-0083","8S9E25.243","","411494","3716640","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-0234","","","429270","3717412","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and take the road going north across the cattle guard in front of the HQ. Follow road to west 2 miles and at crossroads turn north and go 0.2 miles. At cattlegaurd go wells 0.4 mi (towards WM) and just west of gate to shed find open casing. About 6 ft south of fence." +"SB-0926","","","494871","3559480","GW","false","" +"SB-0155","TWDB 4735701","","524088","3472052","GW","false","" +"NM-15570","","","662858","3745360","GW","false","" +"EB-406","","","405045","3941905","GW","true","" +"BW-0708","2.10.19.18.420","","503140","3882100","GW","true","" +"NM-00410","","","283464","3634380","GW","false","" +"NM-07142","","","215440","3599170","GW","false","" +"NM-21534","","","347926","3877150","GW","false","" +"NM-08616","","","665804","3621740","GW","false","" +"NM-17850","","","596676","3796210","GW","false","" +"NM-07390","","","217188","3604610","GW","false","" +"TO-0054","3N14E35.212","","459628","3812030","GW","true","" +"NM-16708","","","643986","3777400","GW","false","" +"NM-16413","","","323721","3771600","GW","false","" +"QU-103","","","449374","4068240","GW","true","Take Hwy 522 north out of Questa. Make right on Cabresto Road, then left on Llano Road. Go all the way past Echo Forest Rd. Take next street headed uphill (Stairway To Heaven Rd ?) and follow powerline uphill. House on left on Stairway To Heaven Rd. Well to south of house next to railroad tie berm." +"LC-029","","","400290","3935932","GW","true","From east Frontage Road, take Corral Blanco east to address on north side of road. Long driveway goes around house. Well under windmill on northwest side of home." +"NM-25871","","","411970","4001650","GW","false","" +"NM-08149","","","554579","3612960","GW","false","" +"NM-16278","","","313501","3767110","GW","false","" +"NM-16483","","","326365","3773130","GW","false","" +"NM-00988","","","618925","3817060","GW","false","" +"NM-20795","","","594964","3853300","GW","false","" +"TB-0245","","","404308","3677264","GW","true","" +"NM-05902","","","244901","3573930","GW","false","" +"NM-12724","","","548829","3679440","GW","false","" +"NM-19167","","","570474","3819600","GW","false","" +"NM-20371","","","598582","3842930","GW","false","" +"SO-0219","SBB-W01A","","322035","3733382","GW","true","" +"TV-108","SWS-03","","438929","4024831","GW","true","From SR 68, turn left (west) onto SR 96. Go 2 miles to Los Cordovas, turn right (north) 1 mile, turn left (west) 1 mile. At bend look for masonry walls and locked gate. Contact owner to open gate." +"NM-05237","","","678462","3563140","GW","false","" +"NM-05573","","","163419","3571850","GW","false","" +"DE-0132","","","672805","3616197","GW","false","" +"EB-630","","","400130","3957460","GW","true","" +"NM-16429","","","664886","3772140","GW","false","" +"NM-24341","","","476208","3934540","GW","false","" +"NM-26685","","","141021","4083890","GW","false","" +"NM-08381","","","670266","3618210","GW","false","" +"NM-14977","","","561725","3726360","GW","false","" +"SM-0193","","","504336","3644880","GW","true","Hwy 82 to Hwy 13 north about 6 miles, left on Felix Canyon Rd. Go 5 to 6 miles to ranch (Lloyd Treat Ranch on sign). 2nd house. Road crosses Rio Felix." +"NM-07398","","","273901","3603570","GW","false","" +"SO-0181","HWY-W07A","","328803","3755363","GW","true","" +"NM-22746","","","642049","3890950","GW","false","" +"MI-0166","","","578690","3929075","GW","true","Topographic situation: Valley" +"NM-00536","","","408026","3653390","GW","false","" +"NM-08855","","","387919","3624000","GW","false","" +"NM-06098","","","331140","3575940","GW","false","" +"NM-19775","","","295575","3834280","GW","false","" +"NM-01990","","","346436","3549150","GW","false","" +"WL-0327","","","288788","3766035","GW","true","From West on HWY 60 out of Magdelena, turn left on HWY 107, drive for about 7.5 miles. Turn left on Rt. 234, just past MM 34. Drive down 234 for about 1.4 miles until a building and horse corrals on the left/east side of the road. Well is in a box near road. Drill needed to remove screws in lid. " +"NM-13598","","","136272","3699420","GW","false","" +"SD-0383","11N.5E.26.333","","374022","3889840","SP","true","" +"SD-0281","11N.6E.28.443","","381543","3889770","GW","true","" +"NM-01047","S015","","361319","3839970","GW","false","" +"CX-0158","76","","532166","4026100","GW","true","2 1/2 miles northwest of Springer" +"NM-25711","","","172581","3995980","GW","false","" +"AR-0222","","","234741","4066504","GW","true","Heading east on Hwy 64 (W. Broadway Ave) out of Bloomfield, make a right (south) on S. Johnson St. Pass Maple and Cedar Ave and at gate, turn left (east) onto driveway. House is at end of driveway on left along the San Juan River. Well is in small metal well house east of house ~50 meters between livestock corrals." +"NM-25061","","","155877","3958520","GW","false","" +"NM-22655","","","636168","3889870","GW","false","" +"AH-061","AH-15","","439161","4044807","GW","true","" +"NM-01258","S148","","341656","3897000","GW","false","" +"NM-23110","","","652181","3896540","GW","false","" +"NM-01853","M-017","","228146","3532970","GW","false","" +"EB-039","","","417724","3942955","GW","true","" +"NM-16221","","","653445","3764550","GW","false","" +"EB-691","","","400249","3937717","GW","true","West frontage road to Las Estrellas Road (just south of SF Downs entrance road). Go all the way back to end of road. Gate code 1234. Well is NE of house in barren field. Across from carport." +"NM-26567","","","672580","4068510","GW","false","" +"NM-16507","","","666167","3773640","GW","false","" +"NM-09370","","","408611","3629610","GW","false","" +"NM-09038","","","236994","3628670","GW","false","" +"NM-23674","","","373294","3911060","GW","false","" +"NM-04604","","","130604","3558090","GW","false","" +"NM-01405","","","470887","3932210","GW","false","" +"NM-25999","","","671452","4011460","GW","false","" +"NM-15975","","","623443","3755300","GW","false","" +"BW-0367","17S9E25.213","","409246","3631000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11644","","","399783","3661910","GW","false","" +"NM-06839","","","590037","3589870","GW","false","" +"NM-27751","","","630462","3793630","GW","false","" +"NM-24454","","","402773","3937780","GW","false","" +"NM-01470","","","671862","3947760","GW","false","" +"RA-084","","","393178","4023663","GW","true","Small road off of 110, next to large water tan. In fenced area next to tank. " +"TC-236","","","428536","4096932","GW","true","" +"NM-26281","","","667788","4040730","GW","false","" +"ED-0365","26S25E17.24","","555584","3545720","GW","true","" +"NM-22111","","","346370","3884180","GW","false","" +"ED-0132","21S27E29.331","","573459","3590070","GW","true","" +"SM-0112","","","460453","3617587","GW","true","" +"QY-0598","5.29.20.233","","601670","3833990","GW","true","" +"NM-03429","","","349736","3894600","GW","false","" +"QY-0600","5.29.20.433a","","601647","3833300","GW","true","" +"SB-0443","TWDB 4816301","","498607","3526211","GW","false","" +"TB-0217","","","422708","3721336","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road approx 0.5 miles to blue pressure tank on east side of road. Climb over fence at metal cross supports." +"QY-0331","11.33.28.334","","640993","3890240","GW","true","" +"NM-21683","","","282942","3880720","GW","false","" +"NM-19766","","","660447","3833290","GW","false","" +"TB-0081","","","403959","3639956","GW","true","From windmill well back on new road (w) to north). Approx 1/8 mi on new road to 1st well on left (w) side." +"AB-0137","S183","","343285","3836800","GW","true","" +"NM-08260","","","661132","3615960","GW","false","" +"NM-00889","","","323337","3784220","GW","false","" +"SO-0139","BRN-W02A","","327005","3763812","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-08451","","","664392","3618970","GW","false","" +"SD-0243","11N.5E.24.314","","375725","3891700","GW","true","" +"NM-27633","","","636692","3794390","GW","false","" +"NM-27595","","","653943","3793680","GW","false","" +"NM-05342","","","293061","3565440","GW","false","" +"NM-00244","","","326918","3587600","GW","false","" +"TO-0234","6N8E32.113","","396571","3841200","GW","true","" +"NM-03961","M-013","","253036","3526801","GW","false","From Columbus intersection of NM9 and NM11, go north on NM11 for 1.5 miles. Go east on Transfer Station Rd (sign for landfill) for 2.4 miles -- go through the white gate at mile 0.5 and dogleg at the second white gate at mile 1.5 to continue east. Well located on south side of wash, near fields and power pole." +"QY-0887","8.31.17.313","","619906","3864360","GW","true","" +"NM-19958","","","283235","3837240","GW","false","" +"AH-094","HM-17","","439894","4041355","GW","true","" +"SM-3048","","","547227","3540544","R","true","Castille Formation from south of Carlsbad. Collected in 2006 from roadcut about 1 mi north of NM-TX border on Hwy 62-180. Sampled by Lewis Land." +"NM-16089","","","662251","3759830","GW","false","" +"NM-18164","","","621735","3801860","GW","false","" +"ED-0313","23S28E23.133","","588093","3573260","GW","true","" +"NM-27445","","","412915","3692280","GW","false","" +"NM-06481","","","673022","3583940","GW","false","" +"NM-09063","","","644059","3627130","GW","false","" +"NM-07648","","","673222","3607070","GW","false","" +"NM-23948","","","638425","3920880","GW","false","" +"NM-07108","","","555696","3594800","GW","false","" +"NM-24554","","","379189","3939940","GW","false","" +"BC-0151","132","","379387","3891400","GW","true","" +"EB-205","","","402747","3931093","GW","true","ranch manager Steve Price 471-4248" +"SM-1019","","","422342","3651992","SP","true","Mauche Canyon at SW corner of Mescalero Reservation; along fencline" +"NM-17938","","","660226","3798770","GW","false","" +"NM-11029","","","628593","3651650","GW","false","" +"NM-06864","","","654353","3590960","GW","false","" +"NM-06460","","","313133","3583840","GW","false","" +"NM-25455","","","469295","3973900","GW","false","" +"NM-20355","","","606979","3842680","GW","false","" +"TB-0218","","","419832","3720304","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road 1.9 miles. Take road to west 0.3 miles to open case on roadside by tree." +"DA-0084","23S2E7.211","","332929","3578220","GW","true","" +"NM-25067","","","403313","3952710","GW","false","" +"NM-22535","","","375126","3888260","GW","false","" +"NM-24528","","","401531","3939300","GW","false","" +"NM-19280","","","602794","3823320","GW","false","" +"NM-26658","","","193844","4078750","GW","false","" +"NM-14383","","","548431","3702080","GW","false","" +"NM-24591","","","479117","3940290","GW","false","" +"NM-01219","","","608533","3885000","GW","false","" +"NM-04312","","","239517","3545770","GW","false","" +"NM-18427","","","673041","3806800","GW","false","" +"NM-14776","","","253828","3721460","GW","false","" +"NM-06363","","","325798","3581760","GW","false","" +"PC-058","PW-098","","373688","3911755","GW","true","" +"NM-00252","","","669263","3591310","GW","false","" +"NM-04950","","","676499","3558520","GW","false","" +"NM-09095","","","200831","3630500","GW","false","" +"NM-23570","","","376924","3908760","GW","false","" +"NM-16850","","","297695","3780320","GW","false","" +"NM-18091","","","679826","3802060","GW","false","" +"NM-00529","","","658337","3653620","GW","false","" +"TB-1022","","","430728","3711367","ES","true","From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road to west to turn going northwest. Follow this road 0.3 miles to road north going to the north across the arroyo (WM is on Good Sawyer Ranch) Thru locked gate and bear to the west on road down steep hill, thru gate and left (south) on road, past doublewide and west across creek past cabin and continue on Forest Road to locked gate into Wilderness. Alternate Access: From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west past the HQ and take the paved road. Bear to the left at the fence corner and stay to the south and take the road all the way to doublewide and beyond. USFS well?" +"SA-0208","","","240658","3739644","GW","true","Hwy 60 to Rt 52 south from VLA. Go about 22 mi south. South of MM 67 to Jct with 163, take 163 west 3.7 miles to fork at Luera Ranch entrance. 2.6 mi to house. From Luera Ranch HQ entrance, to W on 163. 2 Miles to pipe gate with combo lock. From gate go N 4.5 mi to well house next to power pole." +"NM-15060","","","316113","3730950","GW","false","" +"NM-22747","","","378727","3890680","GW","false","" +"NM-10637","","","639956","3646660","GW","false","" +"NM-13634","","","657541","3694770","GW","false","" +"BW-0856","4.26.8.32.111","","391010","3541620","GW","true","" +"NM-05323","","","666913","3564460","GW","false","" +"UC-0069","","","626083","4009844","GW","true","0.0 mi. From Clayton NM go west on U.S. 56 Approx 25 miles to Pennington Rd. +25.0 From junction of U.S. 56 and Pennington Road turn south on Pennington Road (Pennington Road is also 7.4 miles west of intersection of U.S. Hwy. 56 and Barney Road) + +8.2 miles Intersection of Pennington Road and Barney Road. At the northeast corner of this intersection, is a power pole next to cattle watering tank and well to measure is 6 feet BELOW ground level inside a 5-foot-diameter corrugated metal culvert pipe that is buried so top is flush with ground. Metal plate covering the culvert opening must be lifted off to access. Well casing to measure is 6-inches diameter and has metal plate cap that must be removed" +"NM-27366","","","377987","3605790","GW","false","" +"NM-04378","","","136307","3551550","GW","false","" +"NM-17591","","","665755","3791200","GW","false","" +"NM-14958","","","539351","3725440","GW","false","" +"NM-11801","","","671491","3665920","GW","false","" +"QY-0069","10.31.20.222","","621361","3883080","GW","true","" +"NM-12530","","","642779","3677380","GW","false","" +"BW-0831","3.19.4.11.221","","292254","3617550","GW","true","" +"NM-04661","","","237677","3555870","GW","false","" +"BW-0744","1.3.6.4.200","","273501","3822370","GW","true","" +"NM-14240","","","268785","3701890","GW","false","" +"NM-08462","","","676497","3619460","GW","false","" +"NM-25841","","","409303","3999830","GW","false","" +"SO-0074","3N2W14.323","","314336","3817380","GW","true","" +"NM-25172","","","605952","3959850","GW","false","" +"NM-26671","","","618086","4075200","GW","false","" +"BW-0603","16S8E13.442","","400090","3642830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05639","","","262247","3569930","GW","false","" +"BC-0107","92","","385221","3873340","GW","true","" +"NM-14711","","","548441","3715410","GW","false","" +"NM-15298","","","648837","3739270","GW","false","" +"TC-310","","","444010","4084941","GW","true","Well located just north and west of TC-304, in field in concrete structure." +"NM-28023","","","357340","3881540","GW","false","" +"NM-07018","","","660369","3593770","GW","false","" +"SA-0067","SA-67_R01","","162994","3757850","GW","true","Hwy 12 to Apache Creek Junction with Hwy north towards Quemado (hwy 32). Go 5.4 miles NW (north of mile marker 5) to cattle guard on left (west side) of road with pipe and mesh gates. No Trespassing signs, look for old barns on creek. Well is by red generator in fron of barn under turbine pump." +"NM-19128","","","607009","3818700","GW","false","" +"QY-0447","13.35.5.113","","658543","3917410","GW","true","" +"NM-15812","","","645805","3750750","GW","false","" +"NM-04785","M-068","","199233","3558690","GW","false","" +"NM-26802","","","347079","3867189","GW","true","" +"NM-18421","","","570940","3805340","GW","false","" +"PC-014","PW-027","","369635","3909218","GW","true","From I-25, drive east on NM-165 (Placitas) ~6.8 miles, then turn north (left) on Camino de las Huertas for 0.9 miles, turn south (left) on Camino de la Vina Vieja for ~0.15 mile to address: 19 Camino de la Vina Vieja is on the north (right) side of the road. Well is behind home." +"AR-0227","","","242957","4091517","GW","true","North on Hwy 550, turn right on 2350, veer right on Rd 2345, immediate left on Rd 2352, follow curvy dirt road to well." +"SB-0245","TWDB 4807302","","487560","3537888","GW","false","" +"NM-14927","","","545410","3724020","GW","false","" +"NM-12617","","","558725","3677530","GW","false","" +"NM-05087","","","270051","3561740","GW","false","" +"SM-1027","","","436093","3619410","SP","true","In Agua Chiquita Canyon, access by Scott Able Canyon on Sacramento River side or on Agua Chiquita from Weed/Sacramento side." +"NM-02599","","","560008","3628450","GW","false","" +"QY-0004","10.27.11.242","","587653","3885550","GW","true","" +"GT-016","SWNM14-6","","164068","3649410","GW","true","" +"BW-0014","21S5E17.424","","363978","3594530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0183","HWY-W07C","","328803","3755364","GW","true","" +"BW-0841","4.9.7.25.200","","392037","3707510","GW","true","" +"NM-18368","","","652004","3805910","GW","false","" +"NM-03204","","","380993","3828930","GW","false","" +"NM-18508","","","658831","3808000","GW","false","" +"SM-0082","","","449173","3650299","GW","true","802 Sixteen Springs Rd at intersection with Owl Rd." +"NM-27238","","","609244","3557540","GW","false","" +"NM-07170","","","636174","3596680","GW","false","" +"NM-27077","","","324604","3764270","GW","true","" +"NM-17798","","","606383","3794740","GW","false","" +"NM-06691","","","569089","3586810","GW","false","" +"NM-02633","M-203","","221422","3639120","GW","false","" +"SB-0039","TWDB 4709905","","509522","3514885","GW","false","" +"SB-0701","TWDB 4915613","","390336","3522547","GW","false","" +"NM-13117","","","138437","3692890","GW","false","" +"NM-19169","","","656652","3821210","GW","false","" +"AB-0178","S229","","363642","3892250","GW","true","" +"QY-0164","11.29.25.432","","608017","3889770","GW","true","" +"NM-15292","","","657738","3739360","GW","false","" +"NM-17280","","","647033","3785740","GW","false","" +"SB-0800","TWDB 5007601","","484452","3424103","GW","false","" +"NM-14895","","","543535","3722720","GW","false","" +"QY-1016","8.27.6.43","","580442","3867220","SP","true","" +"NM-05688","","","241652","3570810","GW","false","" +"NM-08724","","","674627","3623520","GW","false","" +"NM-22290","","","247138","3888210","GW","false","" +"SB-0897","25.18.27.443","","492020","3550930","GW","true","" +"NM-24995","","","410515","3949220","GW","false","" +"NM-21338","","","380544","3870970","GW","false","" +"NM-15763","","","170232","3753870","GW","false","" +"DE-0168","","","673083","3618919","GW","false","" +"SB-0616","TWDB 4864606","","497880","3438684","GW","false","" +"NM-01225","","","673322","3888310","GW","false","" +"NM-22033","","","641232","3883300","GW","false","" +"NM-02585","","","410370","3625680","GW","false","" +"NM-00960","","","649708","3812300","GW","false","" +"OG-0092","","","655998","3809969","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile north on SR 311. Turn right east on CR 11. Drive 1 mile to well. Well is on S side of road." +"SB-0441","TWDB 4815902","","488056","3513071","GW","false","" +"NM-18459","","","570170","3805860","GW","false","" +"NM-09122","","","558303","3626530","GW","false","" +"NM-00284","","","676905","3606780","GW","false","" +"NM-14334","","","620853","3702070","GW","false","" +"NM-22750","","","358612","3891000","GW","false","" +"NM-04490","","","346436","3549150","GW","false","" +"NM-08285","","","553551","3615080","GW","false","" +"NM-25774","","","463669","3995330","GW","false","" +"NM-02558","","","557091","3620020","GW","false","" +"NM-20011","","","397529","3836190","GW","false","" +"NM-22542","","","185888","3892900","GW","false","" +"NM-20230","","","254877","3843040","GW","false","" +"NM-24128","","","414468","3928840","GW","false","" +"NM-27049","","","326204","3761190","GW","true","" +"QY-0930","9.27.22.341","","585078","3872090","GW","true","" +"NM-20586","","","674556","3849660","GW","false","" +"NM-19117","","","563830","3817980","GW","false","" +"NM-27423","","","613318","3661690","GW","false","" +"NM-25307","","","411099","3967360","GW","false","" +"NM-04133","M-033","","230762","3538450","GW","false","" +"NM-01182","","","620929","3876430","GW","false","" +"BW-0848","4.22.5.17.200","","363661","3585480","GW","true","" +"NM-24348","","","435474","3934830","GW","false","" +"NM-19828","","","403838","3833320","GW","false","" +"BW-0649","15S9E9.422","","398914","3654430","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21325","","","403386","3870170","GW","false","" +"NM-17883","","","667123","3797690","GW","false","" +"NM-02268","","","257451","3574210","GW","false","" +"NM-01281","","","348129","3901660","GW","false","" +"NM-14454","","","628493","3706170","GW","false","" +"NM-00681","","","473304","3690470","GW","false","" +"EB-469","","","415956","3943472","GW","true","SEE ALSO EB-549" +"QU-006","","","453486","4065334","GW","true","From north on 522, make right (east) on Route 38, then left (north) on Cabresto Road to address. Road opens onto a riverside meadow. Red buildings across the creek. Well is by stream." +"NM-08478","","","412988","3618510","GW","false","" +"NM-05948","","","244993","3574490","GW","false","" +"NM-26119","","","393303","4022070","GW","false","" +"QY-0513","16.36.22.213","","671711","3941710","GW","true","" +"NM-28320","POT-04","","447759","4015378","GW","false","" +"BW-0895","4.12.26.31.133","","557776","3677420","GW","true","" +"NM-22334","","","587666","3885610","GW","false","" +"NM-17341","","","656360","3786780","GW","false","" +"NM-10454","","","610821","3643980","GW","false","" +"NM-16133","","","274471","3761980","GW","false","" +"CX-0164","82","","516820","4022230","GW","true","1 mile west of Miami" +"EB-080","","","415431","3954452","GW","true","Located in pit in corrugated housing w/locked lid on inside of cul de sac turn at end of Sangre de Cristo Dr" +"DA-0088","23S2E9.311","","335308","3577390","GW","true","" +"NM-21825","","","290516","3882610","GW","false","" +"NM-18297","","","633560","3804150","GW","false","" +"SA-0032","SA-32_R00","","236585","3772240","GW","true","From Datil head S on Hwy 12, turn left @ Gutierrezville, go 3.3 miles, turn left toward Sanchez Homestead, go 2.1 miles, then take left to go thru gates to bypass homestead to the N. Go 1.3 miles, past well, turn left on 2-track. Well is 2.3 miles along 2-track." +"NM-24600","","","665334","3941920","GW","false","" +"NM-11891","","","563567","3665240","GW","false","" +"NM-12543","","","557206","3676200","GW","false","" +"NM-21021","","","641008","3860030","GW","false","" +"NM-19335","","","543298","3824140","GW","false","" +"NM-17295","","","651815","3786060","GW","false","" +"SB-0587","TWDB 4862301","","474520","3442193","GW","false","" +"UC-0091","","","613740","4086078","GW","true","From major intersection in Capulin NM (NM-325 and US 64 / NM-87) proceed North on NM 325 to intersection of 325 and Hwy 456 in Fulsom NM, 9.1 miles. From intersection, go North on Hwy 456 7.5 mi. +16.6 / 0.0mi. Intersection of Hwy. 456 with Hwy. 551 N. Stay on 456 east for 7.8 miles. +OR go west on NM 456 16.2 miles from intersection with NM 370 (Lake Highway). +At this point Well is 115 yards north of Hwy. just east of small creek crossing .Go thru red steel gate on north side of road. Power poles surround well with green electric pump." +"DE-0378","","","569620","3626538","GW","false","" +"NM-26976","","","322544","3785270","GW","true","" +"NM-09943","","","651687","3637160","GW","false","" +"NM-07366","","","211090","3604200","GW","false","" +"NM-08976","","","677773","3626690","GW","false","" +"NM-17805","","","660945","3795610","GW","false","" +"BC-0302","323","","376758","3892760","GW","true","" +"NM-19771","","","651450","3833600","GW","false","" +"HS-040","TC-040","","286986","3666394","GW","true","In the treatment plant, continue west of MW3, five yellow poles around a well, south of barbed fence wire" +"NM-07139","","","213533","3599200","GW","false","" +"BW-0078","7S11E27.232","","427279","3726080","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05336","","","187972","3568010","GW","false","" +"NM-08570","","","551678","3619720","GW","false","" +"MI-0127","","","463804","3932900","GW","true","Topographic situation: Valley" +"QY-0410","12.35.25.123","","665100","3901290","GW","true","" +"NM-23747","","","640369","3914310","GW","false","" +"NM-03702","","","132370","3485760","GW","false","" +"NM-01597","","","567419","4007220","GW","false","" +"NM-03438","","","618028","3896950","GW","false","" +"SO-0211","SAC-W09B","","324650","3791113","GW","true","" +"NM-18027","","","270201","3801580","GW","false","" +"QY-0550","5.27.1.341","","588408","3838140","GW","true","" +"NM-14402","","","589906","3703450","GW","false","" +"SV-0027","01 Canon Escondi","","378082","3899902","GW","false","Unit 3 Lot 39" +"NM-14758","","","565620","3717860","GW","false","" +"NM-14317","","","473900","3700730","GW","false","" +"NM-20169","","","574448","3839100","GW","false","" +"NM-01195","","","628089","3880210","GW","false","" +"NM-12441","","","292892","3676160","GW","false","" +"NM-00301","","","674219","3612700","GW","false","" +"NM-02738","","","563501","3659510","GW","false","" +"NM-03630","","","591602","4018420","GW","false","" +"NM-19892","","","665190","3835840","GW","false","" +"NM-15872","","","678523","3753370","GW","false","" +"NM-02659","","","559271","3642890","GW","false","" +"NM-09401","","","214392","3633640","GW","false","" +"NM-02050","","","677141","3556250","GW","false","" +"NM-09539","","","408625","3631120","GW","false","" +"NM-07272","","","190140","3602610","GW","false","" +"NM-04947","","","494844","3556920","GW","false","" +"MI-0179","","","464726","3936728","GW","true","Topographic situation: Tecolote Valley" +"NM-07572","","","215517","3608300","GW","false","" +"NM-05746","","","667377","3569640","GW","false","" +"NM-12076","","","557073","3667910","GW","false","" +"NM-23431","","","325544","3905050","GW","false","" +"NM-12663","","","552225","3678140","GW","false","" +"NM-12397","","","564498","3673410","GW","false","" +"NM-22578","","","348988","3889150","GW","false","" +"NM-11999","","","555939","3666830","GW","false","" +"SA-0236","","","272840","3771756","GW","true","Heading west on Hwy 60 from Magdalena, make left on dirt road just past mile marker 101. Road is directly across Hwy 60 from Armstrong ranch gate. Go through gate to old Hwy 60 (Cty Rd F-28). Well is just west on this road. Look for large, old stone corral. Well is on south side of corral wall with a rock over opening." +"NM-15192","","","625688","3735060","GW","false","" +"SB-0306","TWDB 4807524","","482702","3535770","GW","false","" +"NM-17912","","","514748","3796640","GW","false","" +"NM-05070","","","597830","3559270","GW","false","" +"ED-0150","21S28E18.13","","581765","3594150","GW","true","" +"NM-18373","","","271667","3807120","GW","false","" +"TB-2007","","","499999","3873043","GW","true","" +"NM-06724","","","349246","3588350","GW","false","" +"NM-22897","","","388468","3892530","GW","false","" +"NM-04082","","","252358","3534850","GW","false","" +"NM-17603","","","633089","3790550","GW","false","" +"NM-11777","","","673288","3665490","GW","false","" +"NM-14381","","","669557","3703850","GW","false","" +"NM-17658","","","325231","3792100","GW","false","" +"NM-11688","","","660149","3663480","GW","false","" +"NM-22494","","","615694","3887680","GW","false","" +"NM-07850","","","258902","3611620","GW","false","" +"AR-0197","J003","","230096","4078370","GW","true","" +"NM-05631","","","259052","3569950","GW","false","" +"NM-11606","","","661467","3662180","GW","false","" +"NM-19312","","","675959","3825370","GW","false","" +"NM-05347","","","338052","3564830","GW","false","" +"NM-00676","","","440087","3690000","GW","false","" +"NM-00817","","","447066","3713190","GW","false","" +"NM-10872","","","554875","3648770","GW","false","" +"NM-26948","PW-163","","368840","3911684","GW","true","" +"TO-0036","3N6E19.31","","375110","3815060","GW","true","" +"NM-18612","","","673620","3810010","GW","false","" +"NM-12744","","","675417","3681150","GW","false","" +"SD-0341","7N6E11.133","","382040","3857220","SP","true","" +"NM-07411","","","659575","3602570","GW","false","" +"NM-23711","","","397170","3912330","GW","false","" +"WS-004","","","382148","3631223","GW","true","Near MW6" +"TO-0028","2N13E27.111","","447266","3804200","GW","true","" +"DE-0349","","","569124","3626611","GW","false","" +"NM-26983","","","326004","3770890","GW","true","" +"NM-06844","","","675928","3591160","GW","false","" +"NM-14653","","","555803","3712960","GW","false","" +"NM-05949","","","664449","3572640","GW","false","" +"SB-0143","TWDB 4734601","","521722","3479067","GW","false","" +"TB-1009","","","404978","3681003","SP","true","Snake Tank Road, turn north on good gravel road, through gates. Continue north past Crosby well. Right at intersection by black feeder (NE) to dip in road. Spring is downhill (west) of road." +"NM-19121","","","563804","3818100","GW","false","" +"NM-17872","","","618680","3796950","GW","false","" +"NM-28029","","","248977","3884550","GW","false","" +"NM-28254","Orchard Pk deep","","554497","3679916","GW","true","" +"BW-0734","4.21.26.3.344","","567570","3597450","GW","true","" +"BW-0859","1.7.1.31.122","","320262","3851190","GW","true","" +"EB-102","SF-4","","402734","3934466","GW","true","ranch manager Steve Price 471-4248" +"NM-06638","","","570167","3585710","GW","false","" +"NM-28011","","","357680","3881530","GW","false","" +"MI-0288","","","578016","3956088","GW","true","Topographic situation: " +"NM-28009","","","357677","3881530","GW","false","" +"NM-13794","","","543945","3694940","GW","false","" +"NM-18034","","","366304","3799830","GW","false","" +"NM-18905","","","593050","3813760","GW","false","" +"NM-23762","","","628727","3914600","GW","false","" +"NM-14640","","","546418","3712540","GW","false","" +"BW-0005","19S5E28.443","","365820","3610240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13426","","","610727","3691040","GW","false","" +"EB-447","","","420173","3932047","GW","true","132 Vaquero Road." +"SA-0085","","","177687","3758580","GW","true","West of large sign ""Wapati"" 3 miles back"" west of Hwy 12 ~0.2 mi. Gates can be locked on Hwy 12?" +"SB-0613","TWDB 4864603","","497801","3438068","GW","false","" +"NM-24063","","","653331","3926980","GW","false","" +"NM-05102","","","680886","3560870","GW","false","" +"HS-002"," NM3514327","","287091","3666245","GW","true","S.E. corner of waste water treatment plant; continue on loop around plant (on dirt road). 4 yellow poles around with chain around. Cornerned by barbed wire fence on S & E. " +"NM-26520","","","586527","4064190","GW","false","" +"NM-14448","","","401883","3705470","GW","false","" +"SB-0047","TWDB 4710402","","512514","3519845","GW","false","" +"NM-27564","","","658027","3792700","GW","false","" +"NM-05096","","","210779","3563290","GW","false","" +"BW-0617","6S6E20.441","","375982","3738360","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21520","","","662144","3876990","GW","false","" +"NM-12790","","","662692","3682010","GW","false","" +"NM-00164","","","377143","3570750","GW","false","" +"NM-07403","","","218872","3605060","GW","false","" +"WL-0333","","","368485","3911495","GW","false","Commercial Navigation system can get you to owner's residence. From owners residence head west on Palomino and take 1st left heading south on Horseshoe for .05' miles until road curves to right. Well is in ""common area"" on east side of road. " +"NM-27177","","","229464","3988280","ES","true","" +"SB-0831","","","467326","3585751","GW","true","From Pinon, NM, take NM-24/NM-506 east 2.9 mi, turn S (right) onto Cornucopia Canyon Rd/E038/NM-506 and continue for 15.3 mi. Turn right onto long driveway. Well is located in front of barn west of main house at end of driveway." +"NM-18995","","","418525","3815340","GW","false","" +"NM-24556","","","623781","3940080","GW","false","" +"NM-24370","","","345952","3936510","GW","false","" +"NM-10418","","","283038","3645280","GW","false","" +"HS-067","TC-067","","289847","3667738","GW","true","On east side of Pershing Street between Broadway and Austin in the street" +"SB-0318","TWDB 4807608","","486061","3535396","GW","false","" +"NM-16751","","","134643","3783670","GW","false","" +"NM-03620","","","596835","4009910","GW","false","" +"NM-27107","CAR-05","","427917","4021710","GW","false","" +"NM-20114","","","398748","3838240","GW","false","" +"NM-13164","","","552928","3686980","GW","false","" +"NM-05218","","","233450","3564800","GW","false","" +"BW-0319","16S10E5.133","","411783","3645800","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19436","","","612617","3826760","GW","false","" +"NM-09494","","","640251","3631420","GW","false","" +"NM-10774","","","644080","3648780","GW","false","" +"SB-0521","TWDB 4845601","","461488","3463937","GW","false","" +"NM-21978","","","392165","3882130","GW","false","" +"NM-12074","","","676271","3669730","GW","false","" +"NM-03061","","","571336","3796930","GW","false","" +"NM-14580","","","636481","3710840","GW","false","" +"NM-03685","","","453477","4094500","GW","false","" +"TC-407","","","436282","4092876","GW","true","East edge of Rio Grande" +"NM-24307","","","247095","3937070","GW","false","" +"NM-27736","","","570515","3790610","GW","false","" +"NM-02353","","","573533","3579170","GW","false","" +"NM-05801","","","242328","3572640","GW","false","" +"NM-07205","","","227038","3599960","GW","false","" +"EB-631","","","400130","3957460","GW","true","" +"NM-06315","","","240989","3582730","GW","false","" +"NM-22368","","","379277","3886330","GW","false","" +"NM-01353","","","639507","3916930","GW","false","" +"MG-033","","","297899","3779596","GW","true","Heading east on Hwy 60 from Magdalena, home is on south side of road. Large white horse barn. Gate at road for driveway, but probably easiest to park along Hwy 60 and walk to well through field. Open well is located in field between horse barn and Hwy 60." +"SO-0247","SMC-W03A","","314576","3728660","GW","true","" +"NM-18534","","","613741","3807860","GW","false","" +"NM-21660","","","360627","3878860","GW","false","" +"NM-00480","","","647999","3644440","GW","false","" +"NM-12038","","","669108","3668750","GW","false","" +"NM-23335","","","347289","3900890","GW","false","" +"NM-20621","","","607205","3849530","GW","false","" +"NM-27753","","","638468","3793620","GW","false","" +"NM-00038","","","578055","3543250","GW","false","" +"NM-26871","","","435346","4005650","GW","true","" +"NM-16826","","","634971","3778870","GW","false","" +"NM-10322","","","646974","3642850","GW","false","" +"NM-16803","","","654979","3778960","GW","false","" +"TV-198","","","436937","4023381","GW","true","In Barranca del Pueblo subdivision near Rio Pueblo, red sandstone shelter." +"OG-0069","","","650411","3808018","GW","true","" +"NM-11660","","","665077","3663440","GW","false","" +"DE-0044","","","551009","3591467","GW","true","From Carlsbad, drive north on HWY 285 to junction of HWY 137 near Brantley Lake. Drive west on HWY 137 about 5.8 miles to the Travelstead Ranch on the south side of the highway. Well is behind house in back yard." +"NM-05547","","","222474","3569900","GW","false","" +"NM-17488","","","657697","3789520","GW","false","" +"SM-0184","","","484123","3645912","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-20764","","","623122","3853080","GW","false","" +"TO-0379","8N10E36.241","","424876","3859960","GW","true","" +"NM-04511","","","388973","3549430","GW","false","" +"NM-25417","","","170700","3978550","GW","false","" +"SA-0497","5S11W1.212","","228351","3755100","GW","true","" +"OG-0072","","","650462","3806655","GW","true","From int of SR 311 and US 60, west of Clovis, drive 2 miles west on US 60. Turn left south on CR S. Drive 1.2 miles south. Turn right west onto CR 9. Drive 0.5 miles west. Well is on S side of road." +"SB-0643","TWDB 4915202","","388868","3525365","GW","false","" +"NM-23667","","","379174","3910820","GW","false","" +"NM-13647","","","659114","3694980","GW","false","" +"SO-0185","HWY-W09A","","328808","3755361","GW","true","" +"NM-09597","","","554971","3631440","GW","false","" +"NM-04872","","","675223","3558000","GW","false","" +"NM-27480","","","542546","3725120","GW","false","" +"BW-0901","4.22.23.26.413","","540553","3580430","GW","true","" +"BW-0360","17S9E24.342","","408839","3631410","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05192","","","558714","3560790","GW","false","" +"NM-25481","","","262614","3978090","GW","false","" +"NM-03967","","","251885","3527250","GW","false","" +"NM-20692","","","626421","3851590","GW","false","" +"BC-0296","306","","377347","3892500","GW","true","" +"NM-26738","","","677353","4088310","GW","false","" +"BW-0656","18S8E17.411","","392877","3623790","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03650","","","223605","4066920","GW","false","" +"NM-25853","","","411434","4000510","GW","false","" +"NM-18736","","","574218","3810660","GW","false","" +"NM-04074","","","343164","3532780","GW","false","" +"DE-0080","","","639598","3568691","GW","false","" +"NM-06179","","","250780","3579740","GW","false","" +"NM-03849","","","236206","3522180","GW","false","" +"NM-23153","","","236164","3899570","GW","false","" +"NM-09559","","","283424","3633250","GW","false","" +"NM-02092","M-081","","265285","3560342","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 miles. Go south on B047/Marana Rd for 1 mile. Go west on B046/Rivera Rd for about 200 yards. Well is located on south side of Rivera Rd." +"NM-12001","","","670333","3668370","GW","false","" +"NM-24579","","","624701","3940830","GW","false","" +"NM-08239","","","656340","3615820","GW","false","" +"SA-0213","","","253065","3726820","GW","true","From Hwy 60 at VLA, head south on HWY 52 to just north of MM 53. Look for red barn and HQ house on east side of road. Well is north of house under wooden WM tower." +"PC-100","PW-177","","365963","3908412","GW","true","" +"NM-07618","","","183527","3609970","GW","false","" +"TC-251","TP-11","","413673","4057596","GW","true","" +"NM-25496","","","408092","3977280","GW","false","" +"EB-079","","","415520","3956360","GW","true","" +"NM-22467","","","374811","3887500","GW","false","" +"NM-20133","","","395546","3838650","GW","false","" +"NM-07670","","","670819","3607280","GW","false","" +"BW-0038","22S5E16.111","","364271","3585680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15507","","","133753","3749340","GW","false","" +"LC-002","","","398603","3935594","SP","true","Small spring pool along east side of drainage that flows through Las Lagunitas community" +"NM-09311","","","554180","3628720","GW","false","" +"BW-0335","16S10E32.122","","411525","3637670","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07591","","","676838","3606150","GW","false","" +"NM-21962","","","368303","3882170","GW","false","" +"NM-25282","","","223633","3969790","GW","false","" +"BW-0129","10S10E32.420b","","414529","3695480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02906","","","674609","3738450","GW","false","" +"NM-25576","","","204794","3986470","GW","false","" +"NM-08030","","","645427","3611960","GW","false","" +"WL-0188","","","597710","3672674","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Off the west side of Rd 161 between two defunct tanks." +"NM-15576","","","661649","3745430","GW","false","" +"NM-15992","","","654421","3756650","GW","false","" +"CP-0020","","","662917","3763206","GW","true","From Portales, south on NM 206, east on NM 235 (3 mi north of Dora) for 6 miles to Rogers post office, then north 1 mile on County Rd L (S. Roosevelt Rd L), then west 1/4 mile on S. Roosevelt Rd 18 to driveway w/mailbox w/address on it (1226 S. Roosevelt Rd 18). Well in well house behind main house." +"TV-255","SW-45","","440707","4023945","GW","true","" +"NM-02538","","","120682","3624270","GW","false","" +"NM-16608","","","673401","3776230","GW","false","" +"QY-0302","11.32.17.343","","629874","3893130","GW","true","" +"NM-09592","","","190243","3636040","GW","false","" +"NM-24695","","","402810","3943510","GW","false","" +"SM-4064","","","432122","3630421","PS","true","Stream flow measurement by Patrick Walsh" +"NM-01844","","","346196","3528210","GW","false","" +"NM-00773","","","469738","3701610","GW","false","" +"MI-0261","","","569150","3951173","GW","true","Topographic situation: Plains" +"NM-27504","","","165951","3748500","GW","false","" +"NM-21590","","","347309","3877580","GW","false","" +"QU-062","","","453980","4059638","GW","true","From light @ Questa center, proceed east on Rt. 38 toward Red River. The second Forest Service facility is Columbine Campground. Well is located in the triangle between Rt. 38 and campground roads." +"NM-13916","","","544357","3695440","GW","false","" +"SD-0096","9N.6E.29.141","","379031","3871010","GW","true","" +"NM-22716","","","347087","3890810","GW","false","" +"DA-0183","22S1E9.333","","325788","3586560","GW","true","" +"NM-08332","","","255424","3618710","GW","false","" +"NM-22432","","","381059","3887070","GW","false","" +"NM-14695","","","544706","3714750","GW","false","" +"NM-11505","","","404561","3659920","GW","false","" +"BW-0383","17S10E6.114","","410696","3635460","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10154","","","561451","3638990","GW","false","" +"NM-22036","","","386273","3882910","GW","false","" +"NM-12400","","","554711","3673350","GW","false","" +"NM-14590","","","484835","3709910","GW","false","" +"NM-22262","","","586559","3884830","GW","false","" +"TO-0295","7N8E23.324","","402131","3853200","GW","true","" +"QY-0810","7.32.14.313","","634532","3854900","GW","true","" +"NM-19848","","","663684","3834610","GW","false","" +"BW-0373","17S9E25.444","","409645","3629780","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15815","","","660448","3751050","GW","false","" +"NM-22192","","","380316","3884530","GW","false","" +"NM-02932","","","679855","3745710","GW","false","" +"NM-28437","","","321378","3786395","GW","false","65 Polvadera Heights Drive, Polvadera, NM" +"NM-02939","","","676531","3747200","GW","false","" +"NM-05440","","","333047","3566300","GW","false","" +"NM-00274","","","556862","3598310","GW","false","" +"NM-03137","S032","","326378","3813900","GW","false","" +"NM-15922","","","650478","3754270","GW","false","" +"NM-00171","","","590486","3572010","GW","false","" +"NM-12620","","","553756","3677530","GW","false","" +"NM-10288","","","612485","3641560","GW","false","" +"NM-20936","","","563792","3856610","GW","false","" +"NM-14387","","","251371","3705220","GW","false","" +"NM-03431","","","357911","3894740","GW","false","" +"NM-14932","","","543322","3724230","GW","false","" +"NM-21170","","","380477","3865880","GW","false","" +"AH-109","MLC-40","","437231","4039546","GW","true","" +"TC-267","CO-15","","424945","4107020","GW","true","" +"NM-07523","","","637156","3604940","GW","false","" +"NM-10895","","","675030","3650700","GW","false","" +"JM-058","","","311517","3625631","GW","true","" +"SB-0342","TWDB 4807701","","477854","3527528","GW","false","" +"NM-17177","","","648711","3784840","GW","false","" +"NM-17541","","","668126","3790250","GW","false","" +"NM-14481","","","544696","3705820","GW","false","" +"NM-02213","","","258916","3569740","GW","false","" +"NM-18343","","","666120","3805190","GW","false","" +"NM-26967","PW-179","","365619","3907802","GW","true","" +"NM-14378","","","656157","3703620","GW","false","" +"NM-07893","","","652045","3610430","GW","false","" +"TB-0222","","","424022","3713570","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road several miles to cattle pens, across cattle guard and continue south, bear east 0.4 miles past steel tank on left and up steep hill to end of road (4.1 miles plus) at solar well." +"QY-0668","6.27.35.124","","586832","3840660","GW","true","" +"EB-132","","","400609","3936794","GW","true","27323 W. Frontage Rd, NW corner of property outside fence near dog kennel. J.J. Gonzales does not own this house. Owners are friends of family. They either live there or rent it out and J.J. maintains home for them." +"NM-13596","","","552457","3692740","GW","false","" +"NM-04127","","","346056","3535580","GW","false","" +"NM-18021","","","662224","3800040","GW","false","" +"NM-08972","","","670074","3626370","GW","false","" +"NM-16443","","","656932","3772460","GW","false","" +"BW-0737","4.26.28.13.110","","589962","3546160","GW","true","" +"NM-22979","","","349316","3894410","GW","false","" +"NM-26755","","","444024","4089507","GW","true","Well is located at 636 State Line Rd, in vault w/blue pro panel top to east of new brown house." +"NM-09140","","","195253","3631290","GW","false","" +"EB-056","","","416060","3938460","GW","true","" +"NM-23317","","","379677","3900050","GW","false","" +"NM-09917","","","221424","3639180","GW","false","" +"NM-17637","","","676998","3792110","GW","false","" +"NM-14476","","","245655","3708970","GW","false","" +"NM-27648","","","672870","3795330","GW","false","" +"NM-18304","","","654101","3804310","GW","false","" +"NM-12948","","","548060","3683170","GW","false","" +"SA-0445","5S13W9.420","","204697","3754250","GW","true","" +"QY-0085","10.32.23.132","","634650","3882920","GW","true","" +"NM-04283","","","119861","3548330","GW","false","" +"QY-0246","11.30.30.344","","609170","3889780","GW","true","" +"TB-0248","","","404521","3674170","GW","true","" +"QU-549","","","442280","4060139","SP","true","Located on public land along the hatchery pipeline. Follow hatchery pipeline road NE from the hatchery. Spring located ~100 m SW of utility sheds. Diversion culvert crosses road marked by row of large junipers." +"BW-0151","13S7E26.342","","381894","3668830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14475","","","511692","3705570","GW","false","" +"TO-0219","6N8E1.244","","404475","3848740","GW","true","" +"NM-23637","","","641566","3910420","GW","false","" +"QY-0392","12.33.5.434","","639943","3906240","GW","true","" +"NM-22123","","","389542","3883680","GW","false","" +"NM-22908","","","351028","3893130","GW","false","" +"NM-12792","","","550583","3680380","GW","false","" +"ED-0237","22S27E29.413","","574282","3580670","GW","true","" +"NM-07789","","","229358","3611330","GW","false","" +"NM-07350","","","335918","3600970","GW","false","" +"BW-0157","13S9E20.244","","397432","3671060","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"PC-148","PPT-2","","371063","3899166","M","true","" +"BC-0438","441","","379627","3892187","GW","false","" +"QY-0590","5.29.18.434","","600175","3834820","GW","true","" +"NM-21403","","","346223","3872620","GW","false","" +"NM-05955","","","239971","3574710","GW","false","" +"BW-0279","15S10E21.444","","408693","3650710","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27780","","","615417","3787920","GW","false","" +"NM-23891","","","644101","3919340","GW","false","" +"NM-02938","","","418586","3745300","GW","false","" +"NM-14099","","","545665","3697380","GW","false","" +"NM-16426","","","682044","3772050","GW","false","" +"BW-0123","10S9E34.211","","407704","3696330","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0850","Mayer 6","","455193","3542611","GW","false","" +"NM-19944","","","604419","3835170","GW","false","" +"BC-0301","311","","376787","3892720","GW","true","" +"NM-11410","","","651575","3659550","GW","false","" +"NM-17574","","","564998","3789460","GW","false","" +"NM-01361","","","638461","3920170","GW","false","" +"NM-09655","","","224737","3635730","GW","false","" +"NM-05890","","","249347","3573700","GW","false","" +"NM-12469","","","627887","3675790","GW","false","" +"NM-06816","","","342979","3590260","GW","false","" +"NM-24742","","","459433","3943990","GW","false","" +"NM-10869","","","648478","3649930","GW","false","" +"PP-079","PS-91","","435590","4001870","SP","true","" +"AR-0526","","","247595","4134153","PS","true","Located by United Campground of Durango on wide, flat river." +"NM-17674","","","657446","3792260","GW","false","" +"NM-14616","","","402513","3711590","GW","false","" +"SM-4080","","","437439","3609521","PS","true","Stream flow measurement by Patrick Walsh" +"NM-10757","","","623468","3648380","GW","false","" +"NM-26963","PW-089","","373231","3911218","GW","true","" +"NM-25816","","","407584","3998030","GW","false","" +"NM-26642","","","195184","4077790","GW","false","" +"NM-20753","","","131578","3859500","GW","false","" +"NM-12210","","","618493","3671080","GW","false","" +"NM-05388","","","334186","3565470","GW","false","" +"NM-28066","","","238836","3901200","GW","false","" +"QY-0183","11.30.14.144b","","615557","3893850","GW","true","" +"NM-15288","","","602368","3737950","GW","false","" +"NM-09340","","","585233","3629280","GW","false","" +"UC-0119","","","589536","4067328","GW","false","From NESWCD database, not visited by NMBGMR" +"WL-0330","","","422022","3939633","GW","false","Navigation app will get you to this property" +"EB-581","","","415048","3928456","GW","true","" +"AB-0226","S282","","346536","3926520","GW","true","" +"NM-21293","","","342957","3869780","GW","false","" +"NM-11542","","","282406","3662520","GW","false","" +"NM-16366","","","644047","3770040","GW","false","" +"NM-13518","","","400597","3693290","GW","false","" +"NM-17101","","","231639","3786110","GW","false","" +"SB-0508","TWDB 4838701","","467250","3472476","GW","false","" +"SM-1045","","","437888","3626550","SP","true","" +"NM-13658","","","440162","3693490","GW","false","" +"NM-15993","","","654395","3756650","GW","false","" +"NM-10412","","","657783","3644530","GW","false","" +"NM-25072","","","455302","3952700","GW","false","" +"NM-27639","","","628866","3794380","GW","false","" +"NM-22740","","","376145","3890590","GW","false","" +"NM-15227","","","677481","3737580","GW","false","" +"AR-0028","","","219814","4073190","GW","true","From Hwy 516 from Farmington, turn right (south) on Sierra Vista Dr. after Chili's and Outback Steakhouse, turn left (east) on E. Hubbard Rd. and make second right on Gold Avenue to address." +"NM-05596","","","223933","3570540","GW","false","" +"NM-09078","","","286284","3628090","GW","false","" +"NM-05306","","","570300","3563020","GW","false","" +"NM-17609","","","639944","3790710","GW","false","" +"SA-0120","","","226931","3760744","GW","true","From Datil go south 7 miles. Turn E on county road. Go 5.6 miles to Sanchez well. Go SW from Sanchez on 2 track 4 miles. Well and tank on N side of road." +"AB-0050","S058","","360158","3879640","GW","true","" +"NM-07984","","","677178","3611950","GW","false","" +"NM-25925","","","424839","4004360","GW","false","" +"NM-16807","","","650617","3779320","GW","false","" +"NM-01785","","","323769","3520250","GW","false","" +"NM-27523","","","593588","3772580","GW","false","" +"NM-09776","","","554933","3633560","GW","false","" +"CX-0172","S18","","559128","4096120","SP","true","West slope Barilla Mesa" +"EB-508","","","405835","3943751","GW","true","" +"NM-18271","","","542555","3802700","GW","false","" +"LC-034","","","400173","3937807","GW","true","Backyard hillslope of Kyle & Ellie's house (facing northwest)." +"NM-14573","","","325275","3710850","GW","false","" +"BW-0539","16S9E23.1","","407102","3642160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0256","TWDB 4807315","","485722","3537028","GW","false","" +"NM-24640","","","411800","3941900","GW","false","" +"NM-01140","","","649009","3862860","GW","false","" +"NM-22337","","","237200","3889020","GW","false","" +"NM-04743","","","669849","3554920","GW","false","" +"EB-366","","","401829","3943023","GW","true","Must check-in at main WWTP office. Will be escorted to all sites. From Airport Road, across from main gate & warehouse bldgs., enter gate on south side of road, follow dirt road uphill to sludge field. Well along chain link fence." +"NM-19500","","","665385","3829250","GW","false","" +"NM-24078","","","404493","3926760","GW","false","" +"AB-0045","S051","","345977","3886310","GW","true","" +"SD-0046","7N.8E.7.333","","395777","3856820","GW","true","" +"NM-04237","","","341894","3540690","GW","false","" +"NM-06618","","","326155","3586590","GW","false","" +"NM-02441","","","357119","3596290","GW","false","" +"NM-11782","","","658614","3665370","GW","false","" +"NM-09255","","","199795","3632410","GW","false","" +"SB-0534","TWDB 4853104","","452424","3452952","GW","false","" +"AR-0170","E002","NMED 32","234648","4083480","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Turn right onto Rd 2850, then left onto Rd 2853. Proceed to address on left at 2nd bend in Rd." +"NM-26497","","","452037","4062770","GW","false","" +"TV-277","","","439648","4019873","GW","true","Heading north on Hwy 68, turn east on Stake Out Drive, make right into El Mirador subdivision, left at first intersection, left onto first cul-de-sac." +"CX-0176","32N24E23a","","557371","4093890","SP","true","West slope Barilla Mesa (south spg)" +"QU-076","MW-A","","444555","4061736","GW","true","See Chevron map of monitoring wells. Below Dam 1." +"DE-0260","","","663104","3634587","GW","false","" +"TC-265","CO-13","","416662","4098427","GW","true","" +"NM-22516","","","374565","3888020","GW","false","" +"NM-23561","PW-118","","374119","3908680","GW","false","" +"NM-21201","","","383565","3867260","GW","false","" +"NM-28252","Berrendo-Smith","","545527","3699932","GW","true","" +"ED-0202","22S26E31.413","","563030","3579050","GW","true","" +"NM-07354","","","233556","3603360","GW","false","" +"NM-17053","","","679033","3783340","GW","false","" +"JM-054","","","313070","3652465","GW","true","" +"NM-10581","","","554842","3645230","GW","false","" +"SD-0357","9N.7E.29.214","","389292","3871470","SP","true","" +"TC-391","","","442865","4082104","GW","true","" +"NM-21187","","","571032","3866240","GW","false","" +"NM-11858","","","286445","3666900","GW","false","" +"NM-06909","","","193096","3595020","GW","false","" +"NM-17973","","","662676","3799030","GW","false","" +"SA-0027","SA-27_R00","","262990","3769593","GW","true","From the junction of Hwy 60 & 52, drive south on Hwy 52 (toward the VLA) about 4.3 mi, cross cattle guard, then turn onto 2-track on east (left) side ~100 ft south of the cattle guard. Follow 2-track (winds around a bit) about 2.4 miles to well on north (left) side There's a windmill, stock tank about 30โ€™ to west and solar panel about 25โ€™ southwest." +"NM-10079","","","559847","3637900","GW","false","" +"AB-0225","S281","","357202","3934510","GW","true","" +"SB-0808","TWDB 5008201","","493979","3427295","GW","false","" +"DA-0131","26S4W28.3","","286658","3544060","GW","true","" +"NM-24339","","","411806","3934910","GW","false","" +"NM-25626","","","465299","3983770","GW","false","" +"SB-0312","TWDB 4807601","","486583","3533209","GW","false","" +"TO-0486","4N6E29.444","","378056","3822580","SP","true","" +"NM-19737","","","629841","3832500","GW","false","" +"NM-18225","","","675880","3803890","GW","false","" +"NM-11884","","","661808","3666650","GW","false","" +"NM-18146","","","669154","3802780","GW","false","" +"AR-0106","","","242278","4091200","GW","true","On Hwy 550, just south of Cedar Hill, turn east onto Rd 2390 (Michael Dr), to first driveway on left. Long driveway to house. Well is off to the right of driveway in corrugated housing visible from driveway, N 75-100 yds from house toward road." +"NM-18044","","","678868","3801360","GW","false","" +"TO-0294","7N8E23.311","","401625","3853440","GW","true","" +"NM-19011","","","314443","3817120","GW","false","" +"NM-18547","","","677869","3809510","GW","false","" +"NM-17723","","","621215","3792700","GW","false","" +"NM-12512","","","556925","3675580","GW","false","" +"NM-27195","","","402585","3874081","GW","false","" +"NM-21655","","","645938","3878900","GW","false","" +"NM-13645","","","543849","3693370","GW","false","" +"WL-0047","","","441201","4050251","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, go past Lawrence Ranch Rd which is the first turn off to San Cristobal. At second turn off (FR 493) make a right. Go ~0.25 miles and make a right into driveway on right hand side of road. Well is west of house in vault." +"NM-04293","","","344711","3542920","GW","false","" +"NM-26962","PW-085","","366867","3907405","GW","true","" +"NM-28207","","","449288","4075150","GW","false","" +"NM-13078","","","611687","3686280","GW","false","" +"QY-0827","7.32.32.411","","630547","3850180","GW","true","" +"PP-085","PSW-4","","436095","4006223","PS","true","" +"NM-18119","","","678697","3802280","GW","false","" +"SO-0234","SFC-W02A","","312403","3721218","GW","true","" +"NM-01609","","","290633","4015740","GW","false","" +"QY-0251","11.30.34.444","","614823","3888220","GW","true","" +"NM-21436","","","605210","3872610","GW","false","" +"NM-02112","","","625214","3560350","GW","false","" +"NM-15839","","","623194","3750740","GW","false","" +"NM-21009","","","391715","3859150","GW","false","" +"NM-12293","","","558605","3671740","GW","false","" +"NM-18093","","","652126","3801350","GW","false","" +"NM-21763","","","392570","3880000","GW","false","" +"NM-17317","","","226393","3789030","GW","false","" +"NM-08775","","","230073","3626140","GW","false","" +"NM-11171","","","631700","3654120","GW","false","" +"NM-19681","","","612259","3831130","GW","false","" +"MI-0012","","","458063","3890862","GW","true","Topographic situation: Canyon Blanco" +"NM-03183","","","402255","3824750","GW","false","" +"SM-1021","","","422922","3651981","SP","true","Spring water not accessible, need to contact City of Alamogordo about it." +"NM-10523","","","550977","3644470","GW","false","" +"NM-26121","","","622800","4022560","GW","false","" +"SD-0112","9N.7E.35.113","","393072","3869900","GW","true","" +"EB-201","","","409910","3926671","GW","true","South on NM14 to CR44, L/east, 2 mi to where 44 changes to Southfork, L on Cedar, 1.0mi, R, 0.15 mi, L through gate, 1.0 mi to fork, R, 0.75 mi to end of road; WINDMILL" +"NM-17796","","","593753","3794510","GW","false","" +"NM-27465","","","548633","3718250","GW","false","" +"NM-12223","","","659334","3672090","GW","false","" +"NM-25758","","","205070","3999150","GW","false","" +"NM-04500","","","640958","3549400","GW","false","" +"DE-0238","","","670570","3570026","GW","false","" +"BW-0357","17S9E24.111","","408439","3632630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17819","","","256827","3797790","GW","false","" +"NM-21941","","","351525","3882130","GW","false","" +"NM-23770","","","392804","3914570","GW","false","" +"NM-11968","","","661202","3667230","GW","false","" +"NM-12389","","","558362","3673250","GW","false","" +"NM-00456","","","630053","3640980","GW","false","" +"NM-08796","","","408292","3623210","GW","false","" +"NM-18938","","","572711","3814040","GW","false","" +"EB-654","","","401005","3937572","SP","true","" +"SM-0128","","","465428","3648464","GW","true","" +"NM-07853","","","296705","3610810","GW","false","" +"NM-23915","","","637657","3919970","GW","false","" +"NM-22953","","","363462","3893760","GW","false","" +"NM-17606","","","587991","3790050","GW","false","" +"NM-13854","","","544358","3695220","GW","false","" +"NM-10069","","","561823","3637640","GW","false","" +"PP-058","PW-63","","439789","4005188","GW","true","" +"NM-24602","","","407538","3940960","GW","false","" +"ED-0384","26S23E35.121","","540252","3541130","SP","true","" +"NM-05642","","","259865","3569990","GW","false","" +"QY-0227","11.30.24.131","","616686","3892300","GW","true","" +"NM-14869","","","430833","3722220","GW","false","" +"TV-152","SW-04","","441426","4022701","GW","true","South side of UNM-Taos campus, ~30' south of berm bounding the south parking lot, near SW corner" +"MI-0144","","","505417","3934260","GW","true","Topographic situation: Plains" +"NM-17389","","","142701","3793020","GW","false","" +"NM-10644","","","550217","3645790","GW","false","" +"RA-027","","","358311","4085480","GW","true","Large log cabin at the end of the lane. Well on left side of house (looking from the road) by lard bush." +"TC-266","CO-14","","409965","4101499","GW","true","" +"NM-03252","","","563908","3839910","GW","false","" +"NM-20006","","","399641","3836110","GW","false","" +"NM-20422","","","597983","3844180","GW","false","" +"NM-15755","","","206912","3752510","GW","false","" +"NM-17764","","","363487","3794170","GW","false","" +"NM-05816","","","605870","3570060","GW","false","" +"NM-22383","","","625608","3886550","GW","false","" +"DE-0297","","","674898","3570846","GW","false","" +"NM-04619","","","234719","3555140","GW","false","" +"NM-03749","","","168316","3510020","GW","false","" +"NM-03573","","","407995","3980000","GW","false","" +"NM-02527","","","294125","3617210","GW","false","" +"BW-0618","6S6E31.223","","373730","3735770","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SD-0055","8N.6E.15.224","","382070","3865590","GW","true","" +"NM-03072","","","580842","3800310","GW","false","" +"NM-09808","","","673894","3635580","GW","false","" +"NM-24988","","","253511","3952090","GW","false","" +"NM-17480","","","674998","3789580","GW","false","" +"NM-10183","","","169383","3644760","GW","false","" +"NM-28213","","","171025","4073110","GW","false","" +"NM-18379","","","661043","3805870","GW","false","" +"ED-0061","19S31E33.11","","605011","3609970","GW","true","" +"NM-16624","","","638937","3775760","GW","false","" +"NM-15316","","","662126","3740040","GW","false","" +"NM-25044","","","614741","3952040","GW","false","" +"NM-11471","","","406475","3659410","GW","false","" +"DA-0103","24S4W24.42","","292781","3565150","GW","true","" +"BC-0118","103","","376563","3876330","GW","true","" +"NM-04939","","","203688","3561150","GW","false","" +"NM-06824","","","670372","3590670","GW","false","" +"NM-03919","","","348121","3523340","GW","false","" +"NM-10261","","","279163","3642900","GW","false","" +"SB-0893","25.18.24.111","","493980","3553946","GW","true","" +"NM-01670","","","309895","4044530","GW","false","" +"NM-16028","","","657253","3757770","GW","false","" +"NM-17580","","","625874","3790510","GW","false","" +"NM-13156","","","138253","3693510","GW","false","" +"NM-09415","","","213901","3634680","GW","false","" +"QY-0413","12.35.35.422","","664500","3899180","GW","true","" +"NM-19443","","","643597","3827560","GW","false","" +"NM-14696","","","668517","3716060","GW","false","" +"NM-19431","","","403154","3826370","GW","false","" +"QY-0120","10.35.29.222","","660061","3882150","GW","true","" +"NM-09061","","","412480","3625910","GW","false","" +"NM-05976","","","240400","3575100","GW","false","" +"NM-22115","","","346378","3884180","GW","false","" +"NM-14223","","","281155","3701440","GW","false","" +"NM-19713","","","604256","3831500","GW","false","" +"NM-27382","","","561554","3622480","GW","false","" +"NM-16931","","","652388","3780740","GW","false","" +"NM-21936","","","395475","3881470","GW","false","" +"DE-0098","","","639345","3568948","GW","false","" +"NM-19540","","","405264","3828320","GW","false","" +"NM-02205","M-104","","283370","3568040","GW","false","" +"WL-0233","","","276988","3651707","GW","true","From I-25 take exit for Hillsobor Rt 152. Go left on Rt 187 for ~1 mile to left on CR B050, go 5 miles to sharp curve w/mailboxes. Continue across the creek, then take immediate right on Casa Roca Rd, 0.2 miles to cattle guard, then left to house. Well behind house on hill to the north of the tall well house." +"NM-12677","","","656796","3680090","GW","false","" +"NM-17747","","","648108","3793830","GW","false","" +"NM-24228","","","174535","3936980","GW","false","" +"NM-15915","","","677962","3754530","GW","false","" +"NM-23384","","","294462","3903450","GW","false","" +"NM-08805","","","206673","3627150","GW","false","" +"NM-05294","","","167263","3567520","GW","false","" +"NM-03609","","","671668","4001750","GW","false","" +"NM-23340","","","413108","3900170","GW","false","" +"RA-005","","","379675","4007641","GW","true","In pit south of house." +"WL-0324","","","427551","3722065","GW","true","" +"NM-07168","","","276674","3597960","GW","false","" +"NM-06929","","","673035","3592250","GW","false","" +"NM-23536","","","372753","3908540","GW","false","" +"NM-02921","","","669685","3743260","GW","false","" +"NM-06996","","","358797","3593160","GW","false","" +"NM-26063","","","479973","4017650","GW","false","" +"NM-10947","","","676573","3651530","GW","false","" +"NM-03167","","","570732","3819260","GW","false","" +"BC-0307","289","","382034","3868180","GW","true","" +"NM-21926","","","366879","3881790","GW","false","" +"WL-0265","","","348844","3574072","GW","false","From I-25 in Las Cruces, take Exit 1 for E. University Ave. Turn left on E. University towards Organ Mtns, which turns into Dripping Springs Rd. Follow for ~3.7 miles, go right on Soledad Canyon Rd, drive 0.5 miles, turn left to stay on Soledad Canyon Rd. Drive 3.5 miles and turn right onto Ladera Canyon Rd. for 0.2 mi to address. House is second right w/horse corral. Well is 60 ft west of home next to outhouse looking shed." +"NM-18176","","","668746","3802710","GW","false","" +"NM-08717","","","597761","3622370","GW","false","" +"NM-12135","","","551911","3669240","GW","false","" +"NM-28046","","","634520","3888340","GW","false","" +"NM-23155","","","665424","3897270","GW","false","" +"NM-10989","","","656715","3651190","GW","false","" +"NM-09504","","","408537","3630100","GW","false","" +"NM-21635","","","615916","3878190","GW","false","" +"NM-26956","PW-149","","366615","3908495","GW","true","" +"SM-0060","","","438246","3645210","GW","true","Hwy 82 to Sullivan Canyon Rd, turn south and follow to end of road. At red gate, hop over and get key from backside of tree that has ""howdy"" sign on it. Go thru gate across meadow, well is just past house in valley by shed and electric box." +"SO-0256","SMC-W07C","","314806","3728400","GW","true","" +"NM-07916","","","230922","3613200","GW","false","" +"NM-00397","","","324378","3631730","GW","false","" +"EB-367","","","405580","3948470","GW","true","At end of Sloman Lane" +"NM-25089","","","414135","3954390","GW","false","" +"NM-16396","","","645930","3770960","GW","false","" +"NM-24192","","","439873","3930120","GW","false","" +"SM-3046","","","553725","3603277","R","true","Seven Rivers Formation (Artesia Group) sampled at entrance to Billy the Kid Cave. Gypsum. Sampled by Lewis Land." +"NM-18579","","","679326","3809480","GW","false","" +"MI-0212","","","551880","3942825","GW","true","Topographic situation: Plains" +"NM-18376","","","643396","3805860","GW","false","" +"NM-24848","","","404523","3946050","GW","false","" +"NM-09220","","","556110","3627720","GW","false","" +"WL-0063","","","348311","3885183","GW","true","In Albuquerque, from Mountain west of I-25, turn north on 18th Street, turn into Explora parking lot (east), and go to Kiwani's garden near the mural. Underneath windmill in Kiwani's garden surrounded by fence. Combo to gate 39-21-35." +"NM-06541","","","679170","3585180","GW","false","" +"NM-04948","","","203612","3561250","GW","false","" +"NM-22364","","","375732","3886340","GW","false","" +"SO-0224","SBB-W03B","","322556","3733134","GW","true","" +"NM-20752","","","409400","3852550","GW","false","" +"CX-0072","25N27E35a","","586467","4023530","GW","true","" +"NM-20990","","","605500","3858530","GW","false","" +"NM-19868","","","238540","3837290","GW","false","" +"NM-07162","","","356729","3596370","GW","false","" +"ED-0094","21S25E19.114","","552814","3592470","GW","true","" +"NM-20856","","","545669","3854650","GW","false","" +"NM-25638","","","418610","3984700","GW","false","" +"NM-06126","","","674767","3576790","GW","false","" +"NM-18144","","","590493","3801070","GW","false","" +"NM-27352","","","192801","3633710","GW","false","" +"NM-06059","","","336303","3574930","GW","false","" +"ED-0117","21S26E28.233","","566213","3590840","GW","true","" +"NM-00683","","","486795","3690510","GW","false","" +"NM-23676","","","380666","3910990","GW","false","" +"NM-14586","","","676834","3711220","GW","false","" +"NM-16065","","","139411","3763970","GW","false","" +"NM-18291","","","656068","3804150","GW","false","" +"QY-0439","13.34.13.234","","656314","3913580","GW","true","" +"NM-14053","","","270147","3699360","GW","false","" +"QY-0701","6.29.30.424","","600499","3841660","GW","true","" +"NM-17498","","","558457","3788250","GW","false","" +"NM-08271","","","293728","3616910","GW","false","" +"NM-03816","","","227691","3521760","GW","false","" +"NM-00270","","","321634","3597580","GW","false","" +"NM-08515","","","310477","3620550","GW","false","" +"NM-25849","","","466837","3999970","GW","false","" +"NM-11355","","","624644","3658000","GW","false","" +"NM-05575","","","257754","3569330","GW","false","" +"SA-0182","","","251464","3743248","GW","true","Just S of Mile marker 65 on Road 52, wellhead is visible to west about 1/4 mile off road. This is old open well." +"QY-0671","6.28.1.232","","598470","3848630","GW","true","" +"NM-19819","","","162802","3838820","GW","false","" +"NM-07884","","","231015","3612770","GW","false","" +"AH-046","PALI","","437971","4041517","GW","true","" +"TC-413","","","440000","4069586","SP","true","Located on the east wall of Rio Grande Canyon" +"NM-07914","","","605310","3610130","GW","false","" +"AH-067","AH-25","","442299","4044510","GW","true","" +"NM-02813","","","537052","3693710","GW","false","" +"NM-13098","","","549494","3685980","GW","false","" +"NM-25290","","","224224","3970200","GW","false","" +"NM-13183","","","551504","3687280","GW","false","" +"NM-21297","","","385748","3869360","GW","false","" +"NM-21549","","","342683","3877400","GW","false","" +"NM-16383","","","664063","3770800","GW","false","" +"NM-18409","","","570661","3805120","GW","false","" +"NM-14959","","","543136","3725490","GW","false","" +"SB-0486","TWDB 4831901","","484836","3487491","GW","false","" +"NM-16448","","","302023","3772860","GW","false","" +"MG-041","","","291108","3776817","GW","true","From west on Hwy. 60 outside of Magdalena, veer right onto NM 169 towards Alamo Reservation. On left side of road, look for driveway just before Benjamin town well sign, and across from D&M Woodyard. Comiskey's have signs for selling eggs and lamb." +"NM-05895","","","347925","3571770","GW","false","" +"NM-09440","","","281192","3632340","GW","false","" +"TB-0177","","","416737","3721565","GW","true","12191 Hwy 54, on west side. WM is behind trailer." +"NM-14159","","","631605","3699470","GW","false","" +"NM-13362","","","395193","3690700","GW","false","" +"PC-086","PW-155","","372309","3907049","GW","true","" +"NM-12492","","","648771","3676670","GW","false","" +"QU-113","","","446773","4060973","GW","true","Heading north on Hwy 522 from Taos, turn south (right) on Llama Road just past Family Dollar before town of Questa. Turn east (left) on Old Red River Rd. Between 2394 and 2384 Old Red River Rd, a wide gravel road leads to many mobile homes. Take first left fork on this road uphill and left to Corvette convention. House has our contact, Patrick. Blue house opposite has well. Spiral stair access to well from carport." +"CX-0166","84","","530115","4022260","GW","true","4 miles southwest of Springer" +"NM-12621","","","640400","3678950","GW","false","" +"NM-01462","","","202606","3948740","GW","false","" +"SM-1052","","","422912","3632868","SP","true","" +"NM-05296","","","264023","3565210","GW","false","" +"NM-12417","","","652556","3674760","GW","false","" +"NM-08522","","","195274","3623480","GW","false","" +"NM-15313","","","223022","3742040","GW","false","" +"NM-01101","","","668161","3854900","GW","false","" +"NM-25295","","","224225","3970230","GW","false","" +"NM-03487","","","637664","3922560","GW","false","" +"NM-00950","","","326266","3808540","GW","false","" +"BW-0633","9S9E32.211","","404825","3705950","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22857","","","377482","3892140","GW","false","" +"QY-0694","6.29.25.433","","608033","3841350","GW","true","" +"NM-08294","","","576526","3615350","GW","false","" +"NM-20697","","","601617","3851430","GW","false","" +"BW-0623","7S7E15.421","","388812","3730030","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11200","","","407205","3654410","GW","false","" +"PC-061","PW-105","","369190","3910134","GW","true","" +"NM-13088","","","400783","3686230","GW","false","" +"NM-15499","","","133637","3748330","GW","false","" +"EB-578","","","398152","3942717","GW","true","" +"NM-17664","","","648063","3791860","GW","false","" +"NM-00178","","","587834","3573100","GW","false","" +"NM-00138","","","678556","3562750","GW","false","" +"NM-04911","","","335713","3557880","GW","false","" +"NM-14371","","","267402","3704570","GW","false","" +"TC-290","","","464805","4081445","PS","true","Above Amalia where small bridge crosses river" +"NM-20921","","","527301","3856090","GW","false","" +"NM-10336","","","553459","3641810","GW","false","" +"TO-0311","7N8E36.343","","403478","3849640","GW","true","" +"DE-0037","","","614900","3567699","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep" +"NM-08646","","","669025","3622250","GW","false","" +"NM-00820","","","451531","3714030","GW","false","" +"NM-24148","","","405807","3929490","GW","false","" +"NM-04965","","","677280","3558840","GW","false","" +"NM-03069","","","654281","3801110","GW","false","" +"NM-19937","","","570486","3834750","GW","false","" +"WL-0060","","","476983","3932898","GW","true","Going north on I-25, take exit 339, go left over I-25 and make a right on Ojitos Frios. Follow this road (it turns into Gabaldon) to right on Mirasol, then right on Roadrunner, then left on Coyote Road. Third house on left is 25 Coyote Road. Well is in vault just through gate on right hand side under red lid." +"NM-27885","","","585915","3815380","GW","false","" +"NM-22705","","","383150","3890220","GW","false","" +"NM-19772","","","648367","3833610","GW","false","" +"NM-12673","","","295649","3680390","GW","false","" +"NM-07252","","","669948","3598700","GW","false","" +"NM-08065","","","208895","3615800","GW","false","" +"NM-04566","","","275338","3553090","GW","false","" +"NM-19610","","","585834","3829620","GW","false","" +"NM-28420","S-2016-094","","584332","3562443","GW","true","" +"NM-10325","","","650195","3642930","GW","false","" +"NM-11429","","","667750","3660280","GW","false","" +"NM-14560","","","410359","3709270","GW","false","" +"ED-0165","22S24E27.434a","","548666","3580080","GW","true","" +"DE-0180","","","612022","3600210","GW","false","" +"TS-131","","","424297","4011114","SP","true","Series of spring-fed cienegas on west gorge wall near Souse Hole." +"NM-07589","","","225726","3608320","GW","false","" +"NM-04003","","","142262","3532430","GW","false","" +"SD-0264","11N.6E.19.413","","378010","3891790","GW","true","" +"BC-0263","264","","380721","3870160","GW","true","" +"WL-0279","","","118325","3533171","GW","true","From I-10, take exit 5, go south on NM-80 for ~27 miles. Chiricahua Desert Museum is on the left (east) side of the road at intersection with NM-533. Take gravel road around museum to well ~300 ft behind main building and behind metal casita in back." +"NM-01992","M-054","","238091","3551570","GW","false","" +"NM-19774","","","610864","3832690","GW","false","" +"NM-17745","","","664324","3793980","GW","false","" +"NM-08765","","","206998","3626680","GW","false","" +"NM-20358","","","599424","3842690","GW","false","" +"NM-26778","","","403016","3856770","GW","false","" +"NM-06296","","","234964","3582480","GW","false","" +"BW-0452","19S10E4.124","","413791","3616830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11811","","","634658","3665470","GW","false","" +"NM-19753","","","556936","3831790","GW","false","" +"NM-19329","","","453135","3824010","GW","false","" +"SA-0039","SA-39_R01","","207010","3772540","GW","true","From Hwy 12 take Green Gap Road west past Thomas Ranch Rd. 5.7 mi further to NW, at T go south towards Horse Spring/Mangas. Go South at Y, down hill south again at next Y, road winds west. Look for old WM on left (S) and go one mile further. Look for remains of old cabin and small wood corrall to West at base of hill. Follow 2 track up hill to W and look for 3 wood posts on N, well head is inside posts." +"NM-25624","","","410416","3984040","GW","false","" +"NM-03589","","","645488","3988360","GW","false","" +"QY-0394","12.33.7.124","","638021","3905710","GW","true","" +"NM-18990","","","622673","3816040","GW","false","" +"PC-025","PW-040","","369038","3907586","GW","true","From the junction of I-25 and NM-165, drive east toward Placitas about 6 miles. Turn south (right) onto Camino del Rincon Colorado. Drive 0.3 miles, house is on west (right) side of road.Well is in front yard." +"NM-19535","","","635469","3829130","GW","false","" +"NM-18448","","","647584","3806670","GW","false","" +"CX-0178","S26","","552480","4088380","SP","true","South slope Bartlett Mesa: 2 miles north of Raton (east of road)" +"NM-25063","","","408236","3952510","GW","false","" +"NM-27081","","","298305","3803550","GW","true","" +"NM-24373","","","399957","3935900","GW","false","" +"NM-05068","","","632339","3559750","GW","false","" +"QY-0098","10.33.25.131","","645949","3881450","GW","true","" +"NM-01413","","","635216","3934540","GW","false","" +"NM-16219","","","458472","3762780","GW","false","" +"NM-08348","","","548518","3616310","GW","false","" +"NM-23372","","","667936","3902300","GW","false","" +"NM-23204","","","350511","3898460","GW","false","" +"NM-27164","","","321009","3768233","SP","true","" +"NM-27021","","","322614","3786300","GW","true","" +"NM-24933","","","410754","3948010","GW","false","" +"NM-27248","","","563080","3566050","GW","false","" +"NM-24790","","","405141","3945110","GW","false","" +"SB-0452","TWDB 4816805","","495501","3513096","GW","false","" +"NM-16601","","","671281","3775830","GW","false","" +"QY-0209","11.30.19.122","","609139","3892600","GW","true","" +"NM-17003","","","655831","3781660","GW","false","" +"NM-18723","","","647910","3811470","GW","false","" +"PC-110","PW-192","","365758","3910204","GW","true","" +"NM-11372","","","289452","3659590","GW","false","" +"NM-06282","","","676770","3580400","GW","false","" +"NM-19975","","","401621","3835560","GW","false","" +"WL-0041","NM3533814","","436348","3697625","GW","true","From Hwy 48 in Alto, NM, go west at Sun Valley Road just south of post office. Follow Sun Valley Road until you get to Snowflake and make a right. Make a left on Elk Horn then right on Mogul. Well is on right side of road before you cross wash (go west @ wash). Well next to blue pump house in small attached box to pump house." +"NM-13378","","","551308","3690140","GW","false","" +"NM-09570","","","668066","3632650","GW","false","" +"MI-0209","","","518630","3938036","GW","true","Topographic situation: Plateau" +"NM-16685","","","564965","3775760","GW","false","" +"NM-00058","","","659378","3546480","GW","false","" +"NM-01588","","","394854","3999590","GW","false","" +"NM-10329","","","447403","3641710","GW","false","" +"TV-142","","","445074","4024612","GW","true","On Hwy 240, west of Hart Cemetery on north side of road (#43). Look for sheep. Tall latilla fence to south. Well head in yard, next to round, corrugated metal grain bldg." +"BW-0194","14S9E25.332","","402609","3658870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TC-390","","","441251","4081105","GW","true","" +"EB-168","","","406081","3951925","GW","true","On east side of Coppermallow between #31 and #35; beside road" +"NM-15217","","","577540","3735440","GW","false","" +"NM-07137","","","357064","3596110","GW","false","" +"BW-0738","4.19.28.2.122","","579938","3617230","GW","true","" +"NM-12594","","","670121","3679020","GW","false","" +"NM-10115","","","676492","3640130","GW","false","" +"NM-12858","","","258380","3684690","GW","false","" +"NM-15388","","","653748","3741080","GW","false","" +"NM-09739","","","224113","3636670","GW","false","" +"NM-21040","","","601898","3860370","GW","false","" +"NM-08173","","","646980","3614420","GW","false","" +"SV-0005","03 Calle Lomita","","377593","3900379","GW","false","Unit 3 Lot 84" +"SM-0241","","","484989","3664968","GW","true","From the junction of Lincoln Canyon Road (County Rd E030; Picacho Rd?) and County Rd E028, go south on County Rd E028 road for 7.5 miles, and turn right to Skeen Ranch Headquaters 0.7 miles. Go through gate, and follow two-track along Monument Canyon arroyo, past landing strip. At 2.7 miles, take left track across drainage, and go up hillside and over low saddle, and down into pine tree canyon. Go through gate at 1.1 miles, and at base of hill, take right branch. Follow two-track for 1.9 miles, staying right (don't go down along crooked creek!). Well on hill overlooking crooked creek. Road dead-ends at well." +"QY-0970","9.31.8.44","","621464","3875470","GW","true","" +"SB-0599","TWDB 4863303","","485248","3443435","GW","false","" +"NM-13105","","","624714","3686990","GW","false","" +"NM-06287","","","229390","3582510","GW","false","" +"NM-25302","","","561511","3966760","GW","false","" +"NM-27258","","","535214","3570990","GW","false","" +"ED-0244","22S27E33.143","","575534","3579470","GW","true","" +"BW-0640","11S9E35.1","","401363","3687630","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12403","","","552225","3673330","GW","false","" +"NM-16200","","","326848","3763130","GW","false","" +"NM-17908","","","638814","3797880","GW","false","" +"AH-015","CL-01","","438518","4041806","GW","true","" +"NM-16544","","","544765","3773170","GW","false","" +"PC-080","PW-141","","369254","3907277","GW","true","" +"NM-21052","","","661586","3862620","GW","false","" +"SA-0456","5S14W13.100","","198631","3753210","GW","true","" +"NM-08475","","","549837","3618230","GW","false","" +"NM-26624","","","448023","4070780","GW","false","" +"NM-10928","","","626767","3650270","GW","false","" +"NM-08989","","","205218","3629040","GW","false","" +"NM-03762","","","174029","3513050","GW","false","" +"NM-08251","","","294529","3616560","GW","false","" +"NM-11492","","","561997","3659470","GW","false","" +"NM-18069","","","674743","3801870","GW","false","" +"NM-19223","","","571225","3821420","GW","false","" +"NM-03769","","","142727","3517190","GW","false","" +"EB-063","","","409955","3948070","GW","true","Lot #2 well for Cielo Lumbre HOA; original test well on Via Magdalene" +"NM-23139","","","350548","3896740","GW","false","" +"NM-07731","","","552031","3606880","GW","false","" +"NM-28392","N-2016-090","","559855","3627506","GW","true","" +"NM-19337","","","609836","3824940","GW","false","" +"QY-0690","6.29.16.333","","602421","3844530","GW","true","" +"EB-521","","","417925","3934912","GW","true","" +"NM-12273","","","290790","3673620","GW","false","" +"NM-28381","N-2016-069","","618351","3635047","GW","true","" +"JM-046","","","306216","3640960","GW","true","" +"NM-03879","","","143021","3526520","GW","false","" +"OG-0027","","","641788","3819472","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2.8 miles on CR 17. Well is on S side of road" +"NM-16189","","","325828","3762920","GW","false","" +"NM-10632","","","664159","3647000","GW","false","" +"EB-044","","","415730","3941475","GW","true","Sebastian De Vargas Grant" +"NM-04986","","","265797","3560300","GW","false","" +"NM-20111","","","548069","3837810","GW","false","" +"NM-16380","","","309471","3770860","GW","false","" +"EB-325","","","398586","3940948","GW","true","In open field, buried between markers" +"NM-06362","","","578280","3580570","GW","false","" +"SM-0074","","","452270","3625835","GW","true","Turn south at Weed, onto Weed Rd., follow for 3 miles, stay straight (don't turn onto Seep Canyon Rd). House is at 332 Weed Rd., on west side. Well is down by parking area. cooks@pvtn.net" +"WL-0106","","","604568","3548300","GW","true","" +"NM-18475","","","629533","3807140","GW","false","" +"NM-10004","","","548394","3636480","GW","false","" +"TO-0531","7N9E20","","406937","3853490","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-05143","","","230918","3563230","GW","false","" +"NM-02732","","","404826","3657860","GW","false","" +"NM-03189","","","401429","3826410","GW","false","" +"NM-10271","","","283089","3642900","GW","false","" +"OG-0005","","","638247","3822636","GW","false","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1 mile south. Turn right west onto dirt, drive 0.9 miles west to well." +"NM-16368","","","679246","3770800","GW","false","" +"MI-0138","","","480210","3926068","GW","true","Topographic situation: Slope of mesa" +"NM-14766","","","660367","3719130","GW","false","" +"NM-12578","","","632260","3677910","GW","false","" +"NM-28313","OC-30","","405522","4018051","GW","false","" +"NM-12162","","","679601","3671860","GW","false","" +"LC-035","","","400066","3938430","GW","true","Sunrise Springs off of Los Pinos Road, north of Las Golondrinas. Well located along west wall of Samahdi building. (NOTE: GPS coordinates might be slightly off as well is right next to building.)" +"NM-28335","VAD-21","","442750","4004575","GW","false","" +"NM-04234","","","122913","3546210","GW","false","" +"NM-08321","","","231656","3619130","GW","false","" +"BW-0489","6S5E36.343","","371898","3734000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25675","","","670198","3988590","GW","false","" +"QU-035","","","442697","4055816","GW","true","Take Hwy 522 to mile marker 15, gate 1038 on the west of road. Find well and vault at western most reach of turn around." +"WL-0098","CN-2016-002","","617502","3609310","GW","true","" +"HS-023","TC-023","","289224","3667786","GW","true","in the A1-Used Car Lot (the Monette Ford overflow lot) on the corner of Broadway and McElroy, this is part of the wells that monitor the contaminant plume" +"TV-289","","","440066","4020322","GW","true","From north on State Road 68, make right (east) on Stakeout Drive, left into subdivision on Entrada Atalaya, right on Calle Milagro Sur, and left on Calle Cordillera. Well is on left in bare dirt area between Lots 25 & 26." +"NM-02789","","","139241","3688260","GW","false","" +"NM-03488","","","388637","3922530","GW","false","" +"NM-05210","","","220918","3564790","GW","false","" +"TC-406","","","437367","4093412","GW","true","" +"NM-22646","","","610407","3889400","GW","false","" +"WS-006","","","388600","3625557","GW","true","" +"NM-19902","","","574359","3834320","GW","false","" +"NM-11616","","","553898","3661180","GW","false","" +"NM-06217","","","328648","3578700","GW","false","" +"BW-0453","19S10E17.231","","412358","3613740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0473","15.34.22.311","","651849","3931010","GW","true","" +"NM-08120","","","300378","3614500","GW","false","" +"SO-0144","BRN-W05A","","327231","3763816","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-17755","","","225827","3796850","GW","false","" +"BC-0091","78","","375096","3888410","GW","true","" +"NM-00441","","","413403","3636710","GW","false","" +"NM-21305","","","383216","3869700","GW","false","" +"NM-15573","","","655865","3745300","GW","false","" +"NM-00510","","","278509","3650820","GW","false","" +"NM-12236","","","617502","3671620","GW","false","" +"BW-0739","4.21.28.18.130","","582135","3594010","GW","true","" +"NM-14377","","","545927","3702000","GW","false","" +"NM-10013","","","559100","3636760","GW","false","" +"NM-16514","","","669934","3773770","GW","false","" +"EB-180","","","399582","3940723","GW","true","#96 Cam. Montoya, Cieneguilla Grant" +"BW-0537","7S10E34.3","","416995","3724000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-23368","","","231498","3904430","GW","false","" +"NM-14582","","","536424","3709600","GW","false","" +"NM-09366","","","675274","3631110","GW","false","" +"NM-13373","","","610241","3690600","GW","false","" +"NM-15138","","","628421","3732780","GW","false","" +"EB-567","","","417455","3963294","GW","true","" +"DE-0016","","","617648","3571067","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Cluster of three wells (NGL #10, 11, 12). NGL #10 is located under windmill." +"NM-23551","","","369521","3908590","GW","false","" +"NM-24916","","","411002","3947610","GW","false","" +"NM-24033","","","142121","3931400","GW","false","" +"NM-02438","NH-016","","277549","3597310","GW","false","" +"BW-0081","8S7E8.124","","385124","3722290","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04681","","","671305","3554150","GW","false","" +"NM-18375","","","569950","3804620","GW","false","" +"NM-18835","","","660230","3813410","GW","false","" +"NM-11188","","","655692","3655090","GW","false","" +"SB-0072","TWDB 4717221","","504632","3509771","GW","false","" +"SD-0251","11N.5E.25.221","","376889","3891220","GW","true","" +"NM-01547","","","238581","3983340","GW","false","" +"NM-00770","","","443848","3701200","GW","false","" +"BW-0501","7S8E22.223","","399008","3728550","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0475","6S15W17.400","","184634","3743360","GW","true","" +"NM-04716","","","670353","3554620","GW","false","" +"AH-057","AH-10","","439943","4044235","GW","true","" +"NM-24143","","","676281","3930610","GW","false","" +"NM-25500","","","655648","3978800","GW","false","" +"NM-04333","","","244757","3546320","GW","false","" +"NM-18803","","","591460","3811920","GW","false","" +"TO-0247","6N10E27.4","","420197","3841850","GW","true","" +"NM-13390","","","548749","3690190","GW","false","" +"NM-02221","","","252612","3570140","GW","false","" +"SA-0304","","","243653","3755445","GW","true","" +"CX-0130","37","","544040","4050410","GW","true","4 miles northeast of Maxwell" +"NM-08026","","","231790","3614410","GW","false","" +"NM-18236","","","487382","3802240","GW","false","" +"NM-12064","","","637208","3668520","GW","false","" +"TO-0383","8N12E26.332","","441513","3860810","GW","true","" +"NM-02143","","","221129","3565810","GW","false","" +"BC-0002","2","","380541","3868940","GW","true","" +"QY-0914","8.33.21.212","","641661","3863850","GW","true","" +"NM-13072","","","288482","3687840","GW","false","" +"NM-21857","","","364391","3881390","GW","false","" +"EB-284","","","413084","3949010","GW","true","Alto and La Madera Streets" +"SB-0844","","","488797","3542507","GW","false","" +"NM-01051","","","615264","3841050","GW","false","" +"QY-0162","11.29.25.342","","607616","3889760","GW","true","" +"BC-0033","24","","383207","3890280","GW","true","" +"NM-20811","","","406336","3853600","GW","false","" +"NM-09923","","","556560","3635540","GW","false","" +"NM-25648","","","422019","3985070","GW","false","" +"NM-05732","","","328327","3569450","GW","false","" +"DA-0128","25S4E35.12","","357793","3551980","GW","true","" +"CX-0042","27N26E13","","577901","4047870","GW","true","" +"NM-10507","","","554977","3644310","GW","false","" +"QU-144","TB-1","","444384","4061023","GW","true","" +"NM-17865","","","656972","3797610","GW","false","" +"NM-13941","","","544459","3695560","GW","false","" +"NM-05824","","","246131","3572850","GW","false","" +"LC-026","","","399995","3936316","GW","true","From I-25 take La Cienega exit, go north on west Frontage Road. Just south of Los Golondrinas Road on west side of road look for signs to Leonora Curtin. Combo for entry gate is 5820 (updated 5/18/2020). Lock gate behind you while in park and when leaving. Well located north of kiosk @ base of cottonwood; marked w/green pole ~20' east of outdoor classroom. Well is under 12"" steel casing at GS to cover well. Dummy locked." +"NM-09025","","","201096","3629780","GW","false","" +"NM-06289","","","675567","3580440","GW","false","" +"NM-01674","","","538261","4046490","GW","false","" +"SB-0178","TWDB 4757101","","503814","3443302","GW","false","" +"TB-1024","","","431207","3710395","SP","true","From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road thru other gate (several miles), go past the cabin and then take the right fork to the north west. Stay on main road 0.1 miles to west and look for mine shaft opening in hillside on left. (This is the vent shaft for the American Mine behind the doorway on the hilltop to the south on the other side of the hill. There is a vertical shaft from that opening to this one and a cool breeze coming through!)" +"TS-021a","","","438005","4077558","SP","true","East bank, just upstream from Sunshine Trail." +"NM-18031","","","646190","3800360","GW","false","" +"NM-09023","","","227957","3628790","GW","false","" +"NM-00585","","","650580","3662020","GW","false","" +"NM-16821","","","250190","3781130","GW","false","" +"NM-18992","","","620709","3815990","GW","false","" +"NM-13686","","","137606","3700450","GW","false","" +"QY-0676","6.28.23.112","","596100","3844090","GW","true","" +"BW-0058","25S4E35.12","","357793","3551980","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TS-103","","","436980","4044255","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"TV-284","","","440408","4026314","GW","true","NE corner of well/pump house, inside chain link fence, next to TV-174 monitor well" +"NM-06445","","","364243","3582680","GW","false","" +"NM-01806","","","331614","3522050","GW","false","" +"AR-0508","","","242338","4091350","PS","true","" +"AB-0144","S191","","347512","3902120","GW","true","" +"BC-0196","196","","366796","3881820","GW","true","" +"UC-0183","","","634579","3996689","GW","false","" +"NM-15308","","","647214","3739430","GW","false","" +"NM-21788","","","368358","3880660","GW","false","" +"AH-053","TUNE","","436498","4039547","GW","true","" +"TB-0096","","","433890","3709363","GW","true","158 Sunset Mesa. Take Hwy 37 and turn on to Pfinsgston between miles 7 and 8. Bear right on Sunset Mesa go about 2 miles. Wood windmill on right before driveway." +"QU-002","Moly Well #1","","447994","4064441","GW","true","From main road, turn right towards high school (HS) just past VFW; turn right into HS, take a left at the ""T"" and follow the High School Ring Road NE.Destination is East of the HS after a series of access roads. First look for the row of rocks opposite a prominent entrance to school. Follow road past the rocks to hook left; a white cinderblock bldg. is on left side of road. Take right turn onto gravel to a U shaped trajectory, heading South towards athletic field with El Magre (an alteration scar on mountain) on left. Continue along Southerly Ring Road until at football field 50 yard line. Look left for two-track rd. heading for El Magre and terminating with a turnaround at QU-002." +"TC-377","","","440613","4076268","GW","true","" +"NM-19693","","","607087","3831220","GW","false","" +"UC-0179","","","640274","4092133","GW","false","" +"NM-02431","M-157","","206899","3597150","GW","false","Follow directions for NM-06532. Instead of turning onto 2-track to well, go thru Billings ranch steel gate, needs to be unlocked by Gerald Billings. Go 1.9 miles N to ranch house, go around west and north side of ranch house get on road going east , go thru gate at 3.1 miles go past solar well at 4.4 miles, turn left north at 5.4 miles onto gas line road go thru gate at 6.5 miles, at 7.5 miles turn right east onto road towards solar well and old house ruins, go past them to wells near corral at 8.8 miles" +"NM-28163","","","652320","3617950","GW","false","" +"NM-16621","","","663285","3775750","GW","false","" +"NM-18971","","","664744","3816540","GW","false","" +"NM-28448","","","477312","4072980","GW","true","" +"NM-28142","","","188266","3969580","GW","false","" +"NM-11248","","","641010","3656440","GW","false","" +"NM-06491","","","673201","3584150","GW","false","" +"SM-0041","","","449321","3641241","GW","true","Hwy 82 ~mi 31-32. Turn south on Valley, right on Circle (by JRK sign). Well is in field just past Red cabin. Slanes are in house w/ blue roof. Well is behind two steel gate entry, in steel drum behind pump house." +"NM-13649","","","550257","3693430","GW","false","" +"NM-00437","","","651033","3637370","GW","false","" +"NM-11889","","","289306","3667270","GW","false","" +"BC-0269","293","","374511","3888670","GW","true","" +"ED-0288","23S27E10.413","","577503","3575840","GW","true","" +"NM-23129","","","350395","3896630","GW","false","" +"NM-12388","","","564888","3673260","GW","false","" +"NM-07182","","","230418","3599340","GW","false","" +"NM-09583","","","408370","3631740","GW","false","" +"NM-00976","","","594988","3813810","GW","false","" +"NM-22523","","","242296","3890880","GW","false","" +"NM-08093","","","650280","3613330","GW","false","" +"NM-21506","","","600691","3875490","GW","false","" +"NM-06922","","","673378","3592070","GW","false","" +"NM-00724","","","431434","3695940","GW","false","" +"NM-21890","","","391166","3881190","GW","false","" +"NM-19162","","","620503","3820020","GW","false","" +"NM-15599","","","675007","3746190","GW","false","" +"NM-27641","","","573280","3783700","GW","false","" +"NM-00105","","","577742","3554310","GW","false","" +"NM-01735","","","545463","4093020","GW","false","" +"NM-23275","","","291013","3900850","GW","false","" +"CX-0043","27N27E6.33","","579529","4050660","GW","true","" +"NM-09480","","","679417","3632230","GW","false","" +"NM-05310","","","224088","3566620","GW","false","" +"AB-0114","S138","","352439","3876000","GW","true","" +"NM-12814","","","664803","3682660","GW","false","" +"NM-08568","","","556780","3619740","GW","false","" +"BC-0436","439","","363643","3892244","GW","false","" +"NM-24639","","","479069","3941490","GW","false","" +"AR-0217","","","216573","4075489","GW","true","From Pinon Hills Road near San Juan College campus, turn right (north) on Hood Mesa Trail. House is about 1 mile up road on right side, set back from road among some pinyon trees. Well is behind house in small dog house between house and corral." +"ED-0137","21S27E30.44","","573055","3590060","GW","true","" +"SA-1014","","","259067","3717547","PS","true","This is location of flow measurements made at mouth of drainage flowing from Ojo Caliente Springs (1-4). Just west of the Box." +"BW-0462","25S6E28.444","","374667","3552040","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07528","","","282594","3605990","GW","false","" +"EB-296","","","413146","3953983","GW","true","Turn North onto Camino de los Montoyas off of 599, just east of big church. Follow for about 1 mile to large tower, and turn right and immediately left thru barb wire gate. Follow two track through archery site (0.4 mile) until big turn." +"NM-26360","","","664349","4053140","GW","false","" +"NM-11960","","","403820","3666400","GW","false","" +"NM-04823","","","672128","3556630","GW","false","" +"NM-14013","","","666012","3698210","GW","false","" +"NM-26128","","","445034","4021990","GW","false","" +"NM-02784","","","555004","3676490","GW","false","" +"NM-22849","","","376366","3891970","GW","false","" +"AR-0155","C016","NMED 85","233250","4081740","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Continue on Rd 2900 to address on right across ditch." +"BW-0429","18S9E11.213","","407613","3625930","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08274","","","665949","3616190","GW","false","" +"NM-18253","","","652782","3803670","GW","false","" +"NM-22576","","","382487","3888660","GW","false","" +"ED-0078","20S30E5.31","","593959","3607450","GW","true","" +"EB-042","","","416755","3944155","GW","true","" +"NM-23799","","","642139","3915760","GW","false","" +"TV-120","","","445183","4022350","GW","true","Hwy 68 to SR 382, west 0.9 miles on main road to end of pavement. Hard left (north) on Lebya Road. 0.2 miles to house on south (right) side. Green roof (27 Lebya Road)." +"NM-04265","","","551535","3540860","GW","false","" +"NM-20224","","","593523","3840130","GW","false","" +"QY-0455","14.34.16.111","","650283","3923820","GW","true","" +"SA-0318","","","245630","3709016","GW","true","" +"NM-27659","","","675652","3795660","GW","false","" +"NM-11324","","","666745","3658350","GW","false","" +"NM-27983","","","637099","3875100","GW","false","" +"NM-11750","","","584754","3663710","GW","false","" +"NM-10943","","","669852","3651260","GW","false","" +"TO-0413","9N8E35.211","","403490","3869870","GW","true","" +"NM-03935","","","255036","3525940","GW","false","" +"NM-21609","","","322569","3878530","GW","false","" +"NM-08053","","","230396","3614970","GW","false","" +"NM-28062","","","629628","3895820","GW","false","" +"NM-26363","","","583391","4052480","GW","false","" +"NM-18987","","","618898","3815930","GW","false","" +"NM-10335","","","553407","3641770","GW","false","" +"NM-00219","","","677043","3582850","GW","false","" +"NM-24150","","","212616","3933610","GW","false","" +"NM-18259","","","182738","3807840","GW","false","" +"NM-16680","","","677818","3777180","GW","false","" +"SA-0124","","","234998","3756872","GW","true","From Datil, go south on hwy 12 for 7 miles. Turn E on county road, go 11 miles (pass 3 wells) to sheep well. Take 2 track due E from Sheep well 2.2 miles." +"NM-26732","","","619765","4086170","GW","false","" +"TB-0154","","","408435","3693987","GW","true","Three rivers road about 1.5 mi east of petroglyphs. Turn nroth (left) on 2 track." +"NM-02760","","","580726","3664900","GW","false","" +"NM-24578","","","460673","3940010","GW","false","" +"NM-04411","","","669110","3547360","GW","false","" +"AB-0024","S027","","377600","3943390","GW","true","" +"NM-18298","","","558032","3803060","GW","false","" +"NM-03008","","","672099","3793690","GW","false","" +"TB-0092","","","404944","3644413","GW","true","From office, head east and SE on paved road approx 1 mi to pipe gate on N side of road. Yellow raised tanker. Well is across fence through gate to power pole." +"NM-08804","","","206673","3627150","GW","false","" +"NM-20633","","","653683","3850890","GW","false","" +"NM-15384","","","628537","3741320","GW","false","" +"NM-01176","S163","","357180","3875460","GW","false","" +"NM-01391","","","156293","3934930","GW","false","" +"NM-17212","","","653981","3785110","GW","false","" +"NM-27398","","","283417","3633220","GW","false","" +"NM-01478","","","485901","3948650","GW","false","" +"NM-16630","","","326188","3776060","GW","false","" +"NM-00383","","","285496","3631120","GW","false","" +"NM-21965","","","385121","3882000","GW","false","" +"UC-0206","","","652929","3981682","GW","false","" +"NM-22347","","","434259","3885580","GW","false","" +"TO-0041","3N7E20.114","","386395","3815500","GW","true","" +"NM-17450","","","584791","3787460","GW","false","" +"NM-11397","","","663493","3658910","GW","false","" +"NM-22770","","","235696","3893970","GW","false","" +"NM-28153","","","654635","3611510","GW","false","" +"NM-05721","","","225884","3571960","GW","false","" +"NM-14939","","","429125","3724640","GW","false","" +"NM-08655","","","664050","3622290","GW","false","" +"NM-08559","","","644076","3620600","GW","false","" +"EB-242","SF-32","","408198","3946616","GW","true","3673 Agua Fria (2 houses -- Sam front; Art rear) wells in back by garage; replacement well" +"NM-01291","","","230071","3907460","GW","false","" +"NM-04628","","","310393","3553660","GW","false","" +"SB-0233","TWDB 4807205","","480996","3536266","GW","false","" +"NM-01933","","","234844","3544810","GW","false","" +"TB-0182","","","409901","3709188","GW","true","Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill south to right fork before windmill, through gate to windmill. Take road south to Windmill on Ridge, approximately 2.5 miles. Continue south to next windmill. Can exit through HQ to south and out to road west to highway at Oscuro." +"SM-0175","","","516826","3635484","GW","true","West of Hope on Hwy 82, north side of Hwy. Lock combo 4734. At corral go left. Well is about 2 miles from Hwy 82." +"NM-19426","","","666149","3827870","GW","false","" +"NM-18597","","","674637","3810250","GW","false","" +"NM-28201","","","172844","4058520","GW","false","" +"NM-06510","","","387676","3583750","GW","false","" +"NM-01603","","","308326","4011820","GW","false","" +"TO-0502","5N10E28.4","","418467","3832160","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-23649","","","368766","3910540","GW","false","" +"SB-0383","TWDB 4807910","","486367","3528960","GW","false","" +"NM-01016","","","178162","3832350","GW","false","" +"EB-217","SF-51","","412755","3932722","GW","true","Rt @ 1st light on 285; go to end; left on Casa del Oro, well next to WM (X2) on right" +"PB-0009","","","377068","3936240","GW","true","Going N on Hwy 22 in Pena Blanca, turn W on Arroyo Leyba Rd and proceed to address." +"NM-09383","","","224874","3633160","GW","false","" +"NM-21322","","","383351","3870340","GW","false","" +"NM-21259","","","346751","3869050","GW","false","" +"NM-21073","","","657016","3862600","GW","false","" +"NM-06297","","","362326","3579970","GW","false","" +"TV-134","","","445208","4019938","GW","true","Ponce de Leon neighborhood." +"NM-27578","","","643043","3785460","GW","false","" +"SV-0149","10 La Canada Pl","","380767","3900367","GW","false","" +"NM-17347","","","550873","3785680","GW","false","" +"TC-333","","","421546","4032682","GW","true","" +"NM-13113","","","138744","3692790","GW","false","" +"NM-19857","","","254323","3836610","GW","false","" +"SB-0547","TWDB 4853805","","457925","3445571","GW","false","" +"QY-0929","9.27.16.21","","584021","3874620","GW","true","" +"SO-0175","HWY-W04A","","328712","3755345","GW","true","" +"SD-0267","11N.6E.20.443","","380047","3891310","GW","true","" +"NM-26054","","","305147","4018240","GW","false","" +"NM-27841","","","652836","3809150","GW","false","" +"NM-24592","","","404642","3940780","GW","false","" +"NM-28229","","","170071","4076020","GW","false","" +"NM-01222","","","467623","3885270","GW","false","" +"NM-25918","","","392360","4004270","GW","false","" +"NM-16600","","","675997","3775880","GW","false","" +"NM-04302","","","321048","3543680","GW","false","" +"NM-11419","","","404833","3658590","GW","false","" +"SA-0076","SA-28_R01","","258330","3773329","GW","true","From Hwy. 60, take road south to VLA visitor center. Well site visible from visitor center to east under power lines. Look for railroad tie on end ~400 meter to east. Call first to unlock well casing." +"NM-23293","","","233900","3902660","GW","false","" +"NM-19587","","","523586","3828910","GW","false","" +"NM-26014","","","405417","4012630","GW","false","" +"NM-27487","","","562818","3728520","GW","false","" +"NM-05211","","","673286","3562470","GW","false","" +"NM-17040","","","668281","3783010","GW","false","" +"NM-12062","","","557074","3667690","GW","false","" +"NM-23073","","","289328","3896940","GW","false","" +"NM-25149","","","218488","3962080","GW","false","" +"NM-15036","","","666835","3729680","GW","false","" +"NM-24822","","","679130","3946880","GW","false","" +"NM-26508","","","460359","4063090","GW","false","" +"NM-25060","","","407630","3952240","GW","false","" +"NM-22236","","","237273","3888030","GW","false","" +"NM-03766","","","175100","3513540","GW","false","" +"NM-10752","","","216047","3651300","GW","false","" +"SA-0018","SA-18_R00","","249419","3779180","GW","true","0.25 miles N of Hwy 60 along county line to wooden tower about 5 ft NW of observation well. Metal stock tank 20 ft west of well, about 100 ft west of county road." +"SB-0004","TWDB 4701702","","502181","3527443","GW","false","" +"BC-0232","232","","380856","3886680","GW","true","" +"QU-523","","","442869","4060529","SP","true","Along Red River upstream from fish hatchery." +"PP-090","PSW-9","","437460","4003587","PS","true","" +"NM-14740","","","255851","3719840","GW","false","" +"BW-0460","25S6E4.11","","374147","3559110","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02285","","","328345","3574700","GW","false","" +"NM-10839","","","280868","3650560","GW","false","" +"NM-16233","","","206177","3767810","GW","false","" +"NM-17699","","","579281","3791510","GW","false","" +"NM-28122","","","238572","3932720","GW","false","" +"NM-22976","","","351048","3894360","GW","false","" +"NM-15648","","","662622","3747140","GW","false","" +"EB-570","","","416820","3962129","GW","true","Rancho Encantado, 198 St Rd 592" +"NM-09865","","","554563","3634730","GW","false","" +"NM-19655","","","657144","3831310","GW","false","" +"EB-605","","","405006","3936039","GW","true","Hwy 14 South to State Penn; turn east past County Jail and Admin Bldg; adjacent to fenceline, SE of Admin Bldg parking lot" +"NM-09285","","","667304","3630050","GW","false","" +"NM-21256","","","346272","3868870","GW","false","" +"NM-25108","","","413315","3955320","GW","false","" +"NM-15006","","","649828","3728570","GW","false","" +"ED-0347","25S26E7.444","","563736","3556020","GW","true","" +"SB-0110","TWDB 4718402","","513450","3508085","GW","false","" +"NM-14503","","","547919","3706450","GW","false","" +"AR-0513","","","239852","4088032","PS","true","Walked across subdivision lots to access." +"NM-19769","","","602794","3832470","GW","false","" +"EB-343","","","410748","3934514","GW","true","Windmill NE of Gallina Camp" +"NM-06628","","","677545","3586880","GW","false","" +"NM-02290","","","218408","3577290","GW","false","" +"NM-19815","","","554435","3832730","GW","false","" +"NM-03536","","","674303","3959510","GW","false","" +"NM-21850","","","380120","3881140","GW","false","" +"NM-07693","","","227755","3609960","GW","false","" +"NM-11113","","","557242","3652360","GW","false","" +"NM-00734","","","431285","3696500","GW","false","" +"NM-26122","","","407092","4022220","GW","false","" +"WL-0125","","","306928","3780009","GW","true","From US 60, just east of Magdalena, take La Hinca Rd on north side of road and follow for 5.5 miles to ranch HQ at end of road. Well located in front yard, southwest of front door." +"NM-02011","","","232658","3553600","GW","false","" +"NM-27945","","","585380","3840210","GW","false","" +"NM-13210","","","612234","3688160","GW","false","" +"SM-3049","","","427648","3621777","PS","true","Sac River 4 (SM-3032) was dry, this location was sampled instead." +"NM-16571","","","322838","3775130","GW","false","" +"NM-11621","","","555583","3661250","GW","false","" +"NM-09523","","","410262","3630980","GW","false","" +"NM-17132","","","655074","3784050","GW","false","" +"NM-02725","","","563709","3655510","GW","false","" +"NM-07153","","","357066","3596230","GW","false","" +"SB-0807","TWDB 5008104","","489020","3428499","GW","false","" +"NM-23605","","","238483","3912330","GW","false","" +"NM-13577","","","549021","3692500","GW","false","" +"TC-412","","","440000","4069586","SP","true","Spring located on the east wall of Rio Grande Canyon" +"TS-036f","","","436179","4042634","SP","true","Small spring on east side." +"TO-0288","7N8E12.433a","","404214","3856360","GW","true","" +"SA-0072","","","228537","3768236","GW","true","0.25 miles east of fence line. 0.5 miles NNW of old east section well." +"MG-003","WF-3","","295542","3773306","GW","true","" +"NM-17593","","","642887","3790670","GW","false","" +"TS-074","","","437367","4082068","SP","true","Spring 2 upstream of Cow Patty east side of river" +"BC-0330","316","","378107","3884920","GW","true","" +"TO-0153","5N8E11.212","","402190","3837910","GW","true","" +"ED-0097","21S26E13.33","","570379","3593320","GW","true","" +"NM-12249","","","678156","3672940","GW","false","" +"ED-0042","18S28E30.11","","572908","3621010","GW","true","" +"NM-03575","","","522290","3980500","GW","false","" +"NM-23124","","","351015","3896590","GW","false","" +"NM-08800","","","655265","3624550","GW","false","" +"NM-01231","","","629400","3890630","GW","false","" +"NM-04235","","","246213","3542550","GW","false","" +"NM-17510","","","648429","3789700","GW","false","" +"NM-14187","","","141457","3705150","GW","false","" +"TB-0306","","","399215","3662101","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Railroad Ave. Turn W onto Derbyshire Rd and proceed to address at end of road across wooden bridge. Well is next to pink pumphouse." +"AS-009","DM-05","","446379","4043710","GW","true","" +"AS-012","DM-24","","449386","4042600","GW","true","" +"NM-16270","","","314114","3766950","GW","false","" +"NM-22439","","","599880","3886940","GW","false","" +"NM-00262","","","568453","3592310","GW","false","" +"NM-19257","","","153256","3828520","GW","false","" +"NM-09628","","","225119","3635410","GW","false","" +"NM-26840","","","548229","3685157","GW","true","" +"LC-032","","","396176","3933800","SP","true","" +"NM-21086","","","640738","3862770","GW","false","" +"NM-27559","","","658694","3792620","GW","false","" +"NM-10171","","","558228","3639180","GW","false","" +"NM-02647","","","409300","3639550","GW","false","" +"NM-17954","","","664078","3799270","GW","false","" +"TB-0115","","","401445","3705563","GW","true","Oscuro Range Rd, #136 about 1/2 mile to house on right by water tank. Well is behind building by house." +"NM-17134","","","651642","3784090","GW","false","" +"EB-191","","","415089","3958534","GW","true","Turn on La Huerta Ln (rd across from Tesuque P.O.), past trailer park, 1/2 Left to black gate, cross river, through aluminum gate, follow drive to R-hand curve and stop near gazebo; well ~60 S/L" +"NM-08217","","","546107","3614080","GW","false","" +"BC-0243","243","","368376","3881530","GW","true","" +"NM-24144","","","645919","3930090","GW","false","" +"NM-16151","","","669279","3761680","GW","false","" +"NM-08998","","","610665","3625400","GW","false","" +"NM-11468","","","475007","3659060","GW","false","" +"NM-24787","","","414245","3945020","GW","false","" +"NM-00324","","","669050","3618980","GW","false","" +"NM-21069","","","187948","3866420","GW","false","" +"NM-06557","","","615559","3584840","GW","false","" +"NM-08457","","","659363","3619010","GW","false","" +"TO-0329","7N12E19.3","","435106","3852970","GW","true","" +"NM-10694","","","634680","3646930","GW","false","" +"NM-17094","","","641380","3783680","GW","false","" +"TO-0544","8N9E19.133","","404926","3863180","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"ED-0104","21S26E23.133","","568781","3592270","GW","true","" +"SA-0137","","","283184","3689185","GW","true","Take I-25 south from socorro, to the monticello exit, just south of the 'canada de alamosa'. Take the exit, and head west (R) to the frontage road. Go N (R) on the frontage road back down into the valley for about 1 mile. Turn west (L) at house along frontage road, and follow CO29 for approx. 2 miles. Look for small red painted barn, and road heading north (R) along alfalfa fields. Drive north along field toward barn on terrace above valley bottom. Go through gate/fence, and Pond Well 1 is located to left, near abandoned house, amid some scrub brush." +"NM-09080","","","557473","3626030","GW","false","" +"NM-25470","","","411124","3974790","GW","false","" +"NM-26927","PW-077","","373320","3913914","GW","true","" +"NM-06590","","","662506","3585980","GW","false","" +"NM-17097","","","643766","3783380","GW","false","" +"NM-17274","","","513872","3784440","GW","false","" +"TB-0103","","","414590","3726763","GW","true","Past mile 62 on Hwy 380 (heading west) on south side. Entrance is just east of Valley of Fires with cattle guard and locked pipe gate. Need owner to unlock gate. Go to end of road - south of windmill with solar." +"NM-22941","","","615698","3893290","GW","false","" +"PC-154","PSW-01","","369062","3909355","PS","true","" +"SB-0382","TWDB 4807909","","485290","3528500","GW","false","" +"NM-11289","","","284721","3658060","GW","false","" +"NM-10759","","","559892","3647480","GW","false","" +"NM-20907","","","673733","3858160","GW","false","" +"BW-0667","4.7.7.9.222","","385899","3731820","GW","true","" +"NM-09984","","","616203","3636890","GW","false","" +"NM-23355","","","390466","3900850","GW","false","" +"NM-02556","","","559150","3619730","GW","false","" +"NM-02584","","","227342","3628940","GW","false","" +"NM-03010","","","658266","3783090","GW","false","" +"NM-17814","","","545967","3794520","GW","false","" +"WL-0315","","","420069","3942583","GW","true","Directions to Site: From the junction of I-25 and HWY 285, proceed north on HWY 285 for 0.25 miles, turn left (northwest) onto Old Las Vegas Highway (HWY 300). Drive northwest on Old Las Vegas Highway for 3.3 miles, then turn right (northeast) onto Two Trails Road. Drive northeast on Two Trails Road for 0.9 miles, then turn left (northwest) onto Old Santa Fe Trail. Drive northwest on Old Santa Fe Trail for 0.4 miles, then turn right (northeast) onto La Barbaria Road. Drive northeast on La Barbaria Road for 0.3 miles, then turn right (east) onto Overlook Road. Drive on Overlook Road, which has many turns. There is a gate into Overlook Homes, the keypad combination is 5531. From La Barbaria Road, drive on Overlook Road for 1.4 miles, the well is on the right side of the road. Specific location of the well: As you are driving in, the well is on the right (south) side of road, about 20 feet from the road. The well is next to the vault and equipped with a pitless adapter." +"NM-10733","","","541100","3646700","GW","false","" +"BC-0076","61","","374918","3888580","GW","true","" +"NM-21384","","","346204","3872460","GW","false","" +"NM-05426","","","612465","3565510","GW","false","" +"NM-11204","","","613450","3654760","GW","false","" +"NM-13747","","","406917","3694860","GW","false","" +"NM-26797","","","653054","3572750","GW","true","" +"NM-10966","","","656409","3650820","GW","false","" +"NM-21144","","","646514","3865170","GW","false","" +"NM-08794","","","551063","3622890","GW","false","" +"NM-17901","","","679388","3798230","GW","false","" +"NM-27746","","","612739","3782860","GW","false","" +"NM-08786","","","286656","3625010","GW","false","" +"NM-10730","","","553770","3646700","GW","false","" +"NM-04608","","","130606","3558150","GW","false","" +"NM-11694","","","564881","3662510","GW","false","" +"NM-19196","","","273071","3822750","GW","false","" +"NM-19231","","","271827","3824050","GW","false","" +"NM-23285","","","383065","3899310","GW","false","" +"NM-05785","","","238731","3572330","GW","false","" +"NM-14683","","","656478","3715670","GW","false","" +"NM-03234","","","567295","3836020","GW","false","" +"NM-02745","","","537048","3660880","GW","false","" +"NM-00075","","","547783","3547020","GW","false","" +"NM-20481","","","317149","3846800","GW","false","" +"BC-0027","18","","377160","3888990","GW","true","" +"NM-22828","","","378843","3891760","GW","false","" +"NM-15678","","","668675","3747950","GW","false","" +"QY-0709","6.29.4.334","","602446","3847710","GW","true","" +"AB-0059","S068","","347368","3889180","GW","true","" +"SO-0044","2N5E20.244","","367961","3805750","GW","true","" +"AR-0006","E018","NMED 160/161","228880","4078170","GW","true","From Hwy 516, make right on Road 3133 towards the river. Follow to end at property. Well in stone shed in yard north of house." +"NM-11014","","","545236","3650540","GW","false","" +"NM-08917","","","642025","3625590","GW","false","" +"NM-14453","","","403562","3705580","GW","false","" +"DA-0166","27S2W14.44","","310030","3537120","GW","true","" +"NM-07410","","","664192","3602640","GW","false","" +"NM-03084","","","668254","3804490","GW","false","" +"NM-02695","","","542859","3648220","GW","false","" +"BW-0926","1.8.3.10.222","","304412","3867930","SP","true","" +"NM-13293","","","437962","3688910","GW","false","" +"NM-22533","","","638670","3888460","GW","false","" +"NM-03973","","","341823","3525840","GW","false","" +"MI-0123","","","608592","3920637","GW","true","Topographic situation: Valley" +"NM-07750","","","246944","3610220","GW","false","" +"MI-0139","","","481361","3926385","GW","true","Topographic situation: Plateau" +"NM-21866","","","348895","3881630","GW","false","" +"SB-0687","TWDB 4915524","","387899","3518509","GW","false","" +"NM-05331","","","181971","3568160","GW","false","" +"NM-20759","","","277241","3854870","GW","false","" +"NM-15892","","","619961","3752610","GW","false","" +"NM-02809","","","412513","3693630","GW","false","" +"NM-14286","","","135134","3707000","GW","false","" +"NM-10840","","","280868","3650560","GW","false","" +"NM-09136","","","660930","3628370","GW","false","" +"NM-25951","","","649578","4006890","GW","false","" +"NM-11503","","","669711","3660900","GW","false","" +"NM-13638","","","476696","3693210","GW","false","" +"NM-19441","","","618500","3827110","GW","false","" +"NM-12327","","","636229","3673680","GW","false","" +"BW-0065","26S5E24.32","","368954","3544510","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00550","","","655457","3656810","GW","false","" +"NM-09324","","","199819","3633210","GW","false","" +"NM-00163","","","585264","3570220","GW","false","" +"NM-10882","","","666100","3650520","GW","false","" +"NM-08956","","","678634","3626580","GW","false","" +"ED-0101","21S26E18.311","","562274","3593650","GW","true","" +"NM-28021","","","357348","3881540","GW","false","" +"NM-24287","","","319643","3934630","GW","false","" +"NM-21178","","","665432","3867620","GW","false","" +"NM-23682","","","183281","3916140","GW","false","" +"WL-0270","","","327680","3578578","GW","true","Heading south on I-25 towards Las Cruces, take Exit 9 for NM-320 toward Dona Ana. Turn right onto Thorp Rd/NM-320, drive for ~ 2 mi and turn left on N. Valley Dr/NM-185. Drive ~2.8 mi and turn right on Myles for 0.5 mi then left on Roadrunner Lane for 0.7 mi, turn right on Burke Rd for 0.3 mi, then right on Calle Bedado. Escort to well." +"NM-04199","","","157549","3543730","GW","false","" +"NM-17096","","","657866","3784000","GW","false","" +"QY-0955","9.30.20.122","","610950","3873350","GW","true","" +"PP-045","PW-50","","433318","4002812","GW","true","" +"SB-0438","TWDB 4815601","","487091","3519230","GW","false","" +"NM-03535","","","623000","3958250","GW","false","" +"NM-20333","","","599453","3842320","GW","false","" +"HS-510","TC-510","","289647","3667562","SP","true","In block 39 in Hot Springs, NM" +"OG-0029","","","643007","3816683","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2 miles on CR 17. Turn left south on CR X. Drive 1.75 miles. Well is on west side of road." +"SB-0011","TWDB 4702809","","516286","3528903","GW","false","" +"BW-0819","2.1.2.34.130a","","342813","3794140","GW","true","" +"NM-20548","","","231871","3850740","GW","false","" +"NM-02655","","","552861","3641930","GW","false","" +"NM-22575","","","181951","3893440","GW","false","" +"NM-16858","","","595243","3778760","GW","false","" +"NM-27924","","","578622","3830110","GW","false","" +"NM-06522","","","359535","3584230","GW","false","" +"SB-0250","TWDB 4807307","","487035","3537858","GW","false","" +"NM-07487","","","542091","3602770","GW","false","" +"NM-01695","","","223398","4066680","GW","false","" +"NM-25894","","","412807","4002810","GW","false","" +"NM-00174","","","365159","3572840","GW","false","" +"NM-18345","","","673042","3805380","GW","false","" +"NM-26115","","","331817","4022800","GW","false","" +"NM-06584","","","673632","3586470","GW","false","" +"BC-0449","452","","350704","3895601","GW","false","" +"QY-0878","8.30.34.334","","613537","3859050","GW","true","" +"NM-01200","","","600659","3880380","GW","false","" +"NM-15404","","","647202","3741900","GW","false","" +"NM-19207","","","546807","3820590","GW","false","" +"NM-09863","","","193339","3639300","GW","false","" +"NM-27616","","","650251","3794200","GW","false","" +"NM-10958","","","617413","3650950","GW","false","" +"BW-0733","4.21.25.1.200","","561525","3597820","GW","true","" +"NM-00921","","","630304","3799350","GW","false","" +"NM-17751","","","406644","3793060","GW","false","" +"NM-20190","","","258422","3842270","GW","false","" +"QY-0968","9.31.35.244","","626372","3869880","GW","true","" +"NM-23784","","","458946","3914540","GW","false","" +"NM-03635","","","671210","4026250","GW","false","" +"DE-0304","","","676337","3580824","GW","false","" +"NM-01358","","","661130","3919120","GW","false","" +"NM-20070","","","671017","3838870","GW","false","" +"NM-16242","","","531780","3763760","GW","false","" +"EB-091","","","410225","3956040","GW","true","Tano Rd Assoc" +"NM-13291","","","546765","3688770","GW","false","" +"QY-0890","8.31.24.244","","627607","3863180","GW","true","" +"NM-15221","","","665443","3737170","GW","false","" +"EB-356","","","409367","3939823","GW","true","Off SE corner of Richards Ave and Avenida del Sur; FINAL COMPLETION" +"NM-23594","","","360466","3909430","GW","false","" +"NM-22547","","","375052","3888420","GW","false","" +"NM-13669","","","553228","3693570","GW","false","" +"CP-0034","","","666956","3811228","GW","true","From US 70, go north on N. Norris St in Clovis a couple of miles. Subdivision on west side before reaching E. Llano Estacado Blvd. Well is in back yard under fake rock." +"NM-02672","","","552271","3645430","GW","false","" +"NM-14670","","","484042","3713520","GW","false","" +"BW-0114","9S9E7.312","","403031","3711800","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00029","26.18.28.113","","489039","3542420","GW","false","" +"NM-19790","","","604496","3832800","GW","false","" +"NM-25593","","","302919","3984680","GW","false","" +"NM-06690","","","325881","3588050","GW","false","" +"NM-19287","","","605603","3823460","GW","false","" +"NM-16557","","","669245","3775020","GW","false","" +"NM-27481","","","559491","3725270","GW","false","" +"NM-23394","","","419190","3901900","GW","false","" +"NM-12136","","","560303","3669350","GW","false","" +"NM-02998","","","664802","3779620","GW","false","" +"EB-642","","","393253","3947208","GW","true","Off of Santa Fe 599 Bypass, take Hwy 62 /FR 24 northwest. Well is approximately 15 miles down Rd 24, on north/south stretch of road. Well is on east side of road, just past very large corrugated steel water catchment. Has functional pumpjack visible from FR 24." +"NM-16715","","","645727","3777460","GW","false","" +"NM-00608","","","659538","3666600","GW","false","" +"BW-0399","17S10E19.121","","410462","3631240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16817","","","324380","3779430","GW","false","" +"NM-22248","","","376096","3885170","GW","false","" +"NM-08056","","","199035","3615900","GW","false","" +"NM-18935","","","670474","3815840","GW","false","" +"NM-05971","","","156160","3577400","GW","false","" +"QU-174","","","447398","4066843","GW","true","Well is located at physical address: 2721 Hwy. 522, Questa, NM. Well is located next to steel shed, due west of 586 at end of driveway." +"NM-15463","","","674490","3743500","GW","false","" +"QY-0462","14.36.11.122","","673443","3925760","GW","true","" +"TB-1021","","","431571","3712730","SP","true","Located on Tecolote Creek. From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road to west to turn going northwest. Follow this road 0.3 miles to road going to the north across the arroyo (WM is on Good Sawyer Ranch) thru locked gate and bear to the west on road down steep hill, thru gate and left (south) on road. Where main road bears to the west stay on the two track on the east side of the creek and look for the spring box to the west (right) alongside of creek before dam. Alternate Access: From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west past the HQ and take the paved road. Bear to the left at the fence corner and stay to the south and take the road all the way south past where other road comes in from the east and follow above directions from โ€˜where the road bears westโ€™." +"NM-28330","TC-09","","459087","4024430","GW","false","" +"NM-18501","","","660440","3807910","GW","false","" +"NM-23399","","","627939","3902540","GW","false","" +"SB-0782","TWDB 4932502","","398505","3492378","GW","false","" +"NM-01530","","","674044","3970570","GW","false","" +"NM-05619","","","242476","3570230","GW","false","" +"NM-13361","","","552653","3689940","GW","false","" +"NM-22623","","","652295","3889760","GW","false","" +"NM-03785","","","351039","3517820","GW","false","" +"NM-26893","PW-051","","371976","3906557","GW","true","" +"BC-0338","356","","375951","3884259","GW","true","" +"ED-0276","23S26E8.344","","564433","3575330","GW","true","" +"NM-07466","","","680949","3603850","GW","false","" +"NM-02811","","","540387","3693390","GW","false","" +"NM-12475","","","615848","3675670","GW","false","" +"QU-099","MW-10","","445497","4061702","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road." +"NM-01330","","","367735","3910500","GW","false","" +"NM-16973","","","655831","3781660","GW","false","" +"NM-16173","","","328650","3761990","GW","false","" +"NM-11442","","","556400","3658820","GW","false","" +"TO-0150","5N8E10.331a","","399779","3837030","GW","true","" +"NM-07057","","","364058","3594450","GW","false","" +"SB-0818","TWDB 4702101","","514775","3538106","SP","false","" +"NM-09261","","","423739","3628280","GW","false","" +"TB-0180","","","405120","3706066","GW","true","Oscuro County Road A0002, approx 3 miles to 300 Grand Ave. Two-story house. Well house is north of house. Snakes!" +"NM-01808","","","327255","3522590","GW","false","" +"CX-0034","28N27E30","","579599","4054350","GW","true","" +"NM-00769","","","442816","3700840","GW","false","" +"NM-04001","","","243162","3528790","GW","false","" +"UC-0168","","","603433","4075405","GW","false","" +"NM-18747","","","583634","3810900","GW","false","" +"SO-0277","NRCS 8 W8","","327308","3764269","GW","true","COULD NOT LOCATE WELL. MAY HAVE BEEN DESTROYED!" +"NM-10380","","","658157","3643850","GW","false","" +"NM-08577","","","670033","3621160","GW","false","" +"NM-08654","","","207033","3625230","GW","false","" +"NM-28210","","","170596","4071950","GW","false","" +"CP-0035","","","651759","3777080","GW","true","From Hwy 70, south of ENMU, take S. Avenue O south. This becomes S. Roosevelt Road South. Look for house on west side. Two wells on property (house and windmill) within 100 yds. Domestic well in well house behind home. Windmill is north of well house." +"NM-21315","","","344697","3870610","GW","false","" +"NM-16915","","","640045","3780520","GW","false","" +"NM-24734","","","404454","3944320","GW","false","" +"BC-0425","428","","","","GW","false","" +"NM-16575","","","674538","3775730","GW","false","" +"UC-0142","","","661025","3977205","GW","false","" +"NM-05389","","","296560","3566170","GW","false","" +"NM-21046","","","648482","3861190","GW","false","" +"NM-27604","","","662481","3794040","GW","false","" +"NM-00894","","","537365","3785450","GW","false","" +"NM-26064","","","622832","4018560","GW","false","" +"NM-14115","","","458886","3697480","GW","false","" +"NM-14554","","","668029","3710040","GW","false","" +"QY-0095","10.33.12.222","","647085","3886700","GW","true","" +"NM-09686","","","555772","3632360","GW","false","" +"NM-13171","","","525624","3686990","GW","false","" +"NM-23379","","","356964","3902030","GW","false","" +"NM-21186","","","418872","3866230","GW","false","" +"NM-19091","","","571130","3817290","GW","false","" +"NM-13777","","","567119","3694980","GW","false","" +"SB-0322","TWDB 4807613","","486003","3531239","GW","false","" +"NM-03790","","","227668","3520900","GW","false","" +"NM-05441","","","271570","3567500","GW","false","" +"NM-06013","","","625054","3573620","GW","false","" +"NM-05253","","","590258","3562340","GW","false","" +"NM-19482","","","649317","3828450","GW","false","" +"NM-14922","","","579078","3723750","GW","false","" +"NM-10496","","","660525","3645250","GW","false","" +"NM-13771","","","545006","3694760","GW","false","" +"NM-16793","","","631310","3778670","GW","false","" +"NM-16930","","","678529","3781570","GW","false","" +"NM-24079","","","448014","3926460","GW","false","" +"NM-23519","","","369083","3907980","GW","false","" +"NM-08195","","","595029","3614090","GW","false","" +"NM-07385","","","149685","3606630","GW","false","" +"CX-0148","64","","517192","4030570","GW","true","5 miles north of Miami" +"NM-20976","","","589505","3858150","GW","false","" +"NM-07610","","","662881","3606250","GW","false","" +"NM-03337","S177","","348031","3877340","GW","false","" +"NM-23057","","","234271","3898050","GW","false","" +"BC-0183","163","","379249","3885280","GW","true","" +"NM-10051","","","666478","3638880","GW","false","" +"NM-24300","","","478799","3933300","GW","false","" +"NM-24820","","","414275","3945450","GW","false","" +"QU-139","MMW-48A","","452524","4060184","GW","true","" +"NM-13385","","","552652","3690210","GW","false","" +"NM-17935","","","615041","3797680","GW","false","" +"NM-23950","","","402458","3920400","GW","false","" +"NM-22661","","","678685","3890680","GW","false","" +"NM-14729","","","258028","3719200","GW","false","" +"NM-11403","","","650284","3659100","GW","false","" +"NM-25580","","","408943","3982080","GW","false","" +"NM-09868","","","556434","3634770","GW","false","" +"NM-01551","","","402041","3982210","GW","false","" +"NM-05633","","","246087","3570050","GW","false","" +"SM-0141","","","458187","3632763","GW","true","White house at 556 Miller Flats Rd. Past house with tall poplar trees at corner of McDonald Flats. Well is uphill on right side of house (facing front of house) in meadow." +"NM-16468","","","274960","3773870","GW","false","" +"NM-15689","","","665584","3748330","GW","false","" +"NM-02770","","","663443","3669810","GW","false","" +"NM-23498","","","663209","3907830","GW","false","" +"QY-0578","5.29.15.311b","","604116","3835360","GW","true","" +"QY-0660","5.31.31.311","","618737","3830820","GW","true","" +"NM-20001","","","649157","3836800","GW","false","" +"NM-27316","","","364203","3587300","GW","false","" +"NM-28078","","","238681","3903390","GW","false","" +"NM-22959","","","400951","3893400","GW","false","" +"NM-12529","","","287571","3678120","GW","false","" +"NM-19599","","","610543","3829790","GW","false","" +"NM-25932","","","161720","4011370","GW","false","" +"NM-14690","","","365470","3715430","GW","false","" +"NM-18904","","","615526","3814200","GW","false","" +"NM-13213","","","559542","3687730","GW","false","" +"NM-11393","","","400653","3658170","GW","false","" +"NM-01637","","","273433","4032270","GW","false","" +"NM-10355","","","558288","3642140","GW","false","" +"NM-24677","","","412540","3942940","GW","false","" +"NM-17124","","","644170","3783780","GW","false","" +"NM-03344","S185","","323006","3878590","GW","false","" +"NM-10627","","","665744","3647000","GW","false","" +"NM-24335","","","399846","3934970","GW","false","" +"NM-27018","","","293005","3770890","GW","true","" +"NM-10485","","","548695","3643780","GW","false","" +"NM-01571","","","248367","3993560","GW","false","" +"NM-15963","","","652200","3755810","GW","false","" +"NM-04510","","","673863","3550220","GW","false","" +"NM-07422","","","617942","3602140","GW","false","" +"NM-26391","","","577687","4056860","GW","false","" +"ED-0062","19S31E33.11a","","605011","3609970","GW","true","" +"MI-0025","","","459429","3901536","GW","true","Topographic situation: Glorieta Mesa" +"MG-030","","","290575","3775752","GW","true","600 ft. east of other west well in Lot 6" +"NM-17782","","","550880","3793750","GW","false","" +"DE-0114","","","672898","3616031","GW","false","" +"NM-12211","","","555480","3670180","GW","false","" +"SR-0018","","","169659","3714920","SP","true","Gila N.F.; From Reserve, 24.9 mi on NM-435/ Reserve-Beaverhead Rd/ FR 181, ascend gentle draw following flowing water to tank" +"NM-15798","","","663563","3750730","GW","false","" +"SB-0118","TWDB 4725401","","502426","3490097","GW","false","" +"NM-00702","","","476154","3693020","GW","false","" +"NM-27550","","","657982","3792330","GW","false","" +"NM-07924","","","662152","3610960","GW","false","" +"QU-530","","","449743","4061936","PS","true","" +"ED-0353","25S28E18.324","","582251","3554890","GW","true","" +"NM-24746","","","606134","3944600","GW","false","" +"NM-02605","","","546297","3629140","GW","false","" +"TB-1013","","","415115","3669366","SP","true","Cat Mountain Quad, no apparent roads to spring site. Possibly accessible by ATV or on foot." +"NM-15907","","","664508","3754070","GW","false","" +"EB-275","","","411717","3957024","GW","true","At end of Kia Rd; through gate (#2547) on left; @ end of track" +"NM-04551","","","134013","3556450","GW","false","" +"NM-22194","","","609277","3884460","GW","false","" +"NM-18072","","","679519","3802080","GW","false","" +"NM-04418","","","305118","3548010","GW","false","" +"BW-0730","4.20.25.27.300","","549120","3600510","GW","true","" +"NM-21131","","","383145","3864120","GW","false","" +"NM-02350","","","576332","3578980","GW","false","" +"NM-26990","","","325554","3762340","GW","true","" +"NM-01710","","","310023","4073880","GW","false","" +"NM-12785","","","538087","3680230","GW","false","" +"NM-17017","","","654792","3782540","GW","false","" +"NM-01961","","","134751","3551390","GW","false","" +"NM-07432","","","669586","3603070","GW","false","" +"NM-00523","","","408933","3650860","GW","false","" +"BC-0313","283","","379830","3872880","GW","true","" +"NM-00228","","","313186","3583830","GW","false","" +"NM-14825","","","429611","3720630","GW","false","" +"NM-04161","","","346547","3537720","GW","false","" +"TO-0444","10N7E25.122","","395458","3881270","GW","true","" +"NM-20737","","","541669","3851830","GW","false","" +"NM-06095","","","589414","3574870","GW","false","" +"SB-0400","TWDB 4808601","","498451","3531692","GW","false","" +"NM-11625","","","654851","3662350","GW","false","" +"NM-26552","","","583254","4066590","GW","false","" +"NM-09203","","","198659","3631890","GW","false","" +"CP-0030","","","661688","3803701","GW","true","From Hwy 60 east of Cannon AFB, go south on NM 467, east on Curry County Rd 8, south on Curry County Rd M, east on Curry County Rd 7 to address (1258) on north side of road (cream color w/brown trim). Well is in NW corner of property. Well head is buried." +"NM-03036","","","646231","3789520","GW","false","" +"SA-0314","","","265106","3724588","GW","true","" +"NM-12444","","","548985","3674180","GW","false","" +"NM-09682","","","506476","3632180","GW","false","" +"NM-27275","","","557450","3575650","GW","false","" +"NM-05709","","","242104","3571040","GW","false","" +"NM-08476","","","289708","3620360","GW","false","" +"SA-0151","","","255446","3707612","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south past the Cupit Ranch HQ (MM45) on the west side of the road and continue south 2.4 miles to the black mailbox on the east side of the road (0.4 miles south of MM43) and take road east up Havil Canyon. Go through gate/cattle guard and follow driveway up Havil Canyon past Phelps ranch HQ for 2.6 miles to the Teague House (white house with corrals and outbuildings) Continue straight east through gates in corral (combo 3006??) and then bear to the south (right) and follow the two track up the canyon for 1.5 miles. The well is to the northeast and located beneath the windmill tower near a water tank." +"BW-0413","17S10E29.314a","","411644","3628810","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26690","","","441029","4077480","GW","false","" +"NM-24931","","","214269","3952100","GW","false","" +"NM-26000","","","639042","4011130","GW","false","" +"QU-025","CER-35","","445513","4067729","GW","true","" +"NM-07574","","","269803","3606960","GW","false","" +"NM-00692","","","477933","3691820","GW","false","" +"QY-0365","12.30.33.113","","611781","3898940","GW","true","" +"NM-02682","","","553666","3646730","GW","false","" +"NM-20265","","","565303","3840600","GW","false","" +"NM-22492","","","374587","3887780","GW","false","" +"NM-02723","","","265546","3657720","GW","false","" +"NM-16404","","","323794","3771390","GW","false","" +"NM-07799","","","242948","3611100","GW","false","" +"SB-0633","TWDB 4908501","","399502","3532400","GW","false","" +"NM-09315","","","633483","3629810","GW","false","" +"EB-393","","","404230","3930029","GW","true","" +"NM-27347","","","559324","3594790","GW","false","" +"NM-06307","","","654724","3580460","GW","false","" +"NM-22220","","","376827","3884910","GW","false","" +"SD-0402","13N.5E.32.332","","369059","3908110","SP","true","" +"QY-0299","11.32.13.333","","635988","3893210","GW","true","" +"NM-22462","","","391264","3887250","GW","false","" +"NM-05817","","","330192","3570940","GW","false","" +"NM-26097","","","159001","4026910","GW","false","" +"NM-15759","","","665271","3750050","GW","false","" +"NM-14532","","","643319","3709120","GW","false","" +"NM-09111","","","657839","3628050","GW","false","" +"TB-0127","","","399502","3705654","GW","true","258 Oscuro Range Rd. on north side 1.6 mi from Hwy 54. Well is on R (east) side of drive by corral. Look for electric box on post." +"NM-05996","","","329610","3573690","GW","false","" +"NM-13147","","","138064","3693300","GW","false","" +"TB-0001","","","414805","3663276","GW","true","Hwy 70 ~ 5.5 miles east of Tularosa, turn right on Virden road at mailboxes. Go back to sign and veer right (heading south). Stay straigh, his house is middle of 3 with lots of trees. Yellow with brown trim. Well is in field across from carport (to the right, if facing house). Cattle fencing around well can be opened. Has big P-tank." +"QY-0194","11.30.14.312a","","615159","3893440","GW","true","" +"NM-01147","","","358085","3865020","GW","false","" +"SD-0322","13N.4E.36.334","","366010","3907930","GW","true","" +"NM-10861","","","643468","3649790","GW","false","" +"AB-0073","S085","","325001","3859090","GW","true","" +"BW-0691","4.8.2.17.200","","336196","3720900","GW","true","" +"SO-0145","BRN-W05B","","327231","3763816","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-11818","","","662268","3665490","GW","false","" +"NM-07295","","","279371","3600670","GW","false","" +"NM-02708","","","160174","3655510","GW","false","" +"NM-19099","","","264406","3820220","GW","false","" +"UC-0051","","","676430","4056261","GW","true","elv 4771 acc to USGS" +"SB-0197","TWDB 4758503","","516036","3434478","GW","false","" +"NM-02902","","","661797","3735200","GW","false","" +"NM-14051","","","547321","3696740","GW","false","" +"NM-10007","","","555358","3636580","GW","false","" +"NM-27892","","","673695","3820990","GW","false","" +"NM-20474","","","598784","3845400","GW","false","" +"EB-452","","","414350","3928701","GW","true","230 Spur Ranch Road." +"NM-13469","","","552647","3691040","GW","false","" +"NM-26247","","","261184","4038340","GW","false","" +"SM-4055","","","483356","3638125","PS","true","Stream flow measurement by Patrick Walsh" +"NM-12693","","","138883","3685370","GW","false","" +"NM-09714","","","210603","3636750","GW","false","" +"NM-19623","","","607912","3829850","GW","false","" +"RA-024","","","359359","4079458","GW","true","At junction of Cr 343 and HWY 64, south of Chama, drive west on CR 343 about 1/4 mile, turn south (left) on Private road 1791. House is 3rd house on right. Well about 100 ft from house, next to well house," +"NM-20565","","","399718","3847880","GW","false","" +"NM-15104","","","664258","3732780","GW","false","" +"NM-05771","","","245737","3571790","GW","false","" +"NM-26609","","","193766","4075720","GW","false","" +"NM-05320","","","239153","3566340","GW","false","" +"NM-04664","","","235473","3555900","GW","false","" +"SO-0051","3N2E26.33","","342972","3813340","GW","true","" +"NM-11236","","","560496","3654840","GW","false","" +"BW-0898","4.17.7.23","","388017","3632130","GW","true","" +"NM-12476","","","614817","3675290","GW","false","" +"DE-0240","","","671021","3569819","GW","false","" +"TC-270","CO-18","","407519","4099894","GW","true","" +"NM-28128","","","608549","3942500","GW","false","" +"NM-05559","","","259451","3569110","GW","false","" +"NM-28114","","","356169","3911630","GW","false","" +"NM-17810","","","622079","3795090","GW","false","" +"NM-26432","","","223423","4065350","GW","false","" +"NM-13675","","","578703","3693870","GW","false","" +"NM-27455","","","246745","3705210","GW","false","" +"NM-13222","","","546589","3687750","GW","false","" +"NM-14865","","","252555","3725100","GW","false","" +"NM-03627","","","405692","4017240","GW","false","" +"NM-01286","","","230096","3905600","GW","false","" +"NM-25188","","","477157","3960690","GW","false","" +"NM-17537","","","522845","3788650","GW","false","" +"NM-07960","","","230750","3613610","GW","false","" +"NM-26682","","","231892","4080200","GW","false","" +"DE-0264","","","663201","3634521","GW","false","" +"NM-05934","","","239125","3574420","GW","false","" +"EB-232","SF-17","","412512","3941509","GW","true","#9 Hondo Lane; leave info at door" +"NM-09201","","","410981","3627030","GW","false","" +"NM-09549","","","213804","3634930","GW","false","" +"NM-25114","","","326749","3956650","GW","false","" +"NM-02023","","","238747","3554640","GW","false","" +"NM-00922","","","621503","3799770","GW","false","" +"NM-07292","","","667165","3599640","GW","false","" +"SM-0123","","","476811","3643390","GW","true","" +"NM-10742","","","647210","3647910","GW","false","" +"AR-0157","D004","","243850","4092070","GW","true","From Aztec, take Hwy 550 into Cedar Hill. Turn right onto Rd 2345 then right onto Rd 2343. Turn left onto Rd 2335 and take left bend in Rd. Continue on Rd 2335 around right bend in Rd to address at end of Rd on left." +"NM-09906","","","637216","3636390","GW","false","" +"NM-11269","","","284636","3657720","GW","false","" +"NM-19943","","","662556","3836470","GW","false","" +"NM-05387","","","655166","3565320","GW","false","" +"NM-24459","","","444328","3937540","GW","false","" +"OG-0084","","","652830","3809767","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile west on US 60. Turn right north on CR R. Drive 0.8 miles to well. Well is on E side of road." +"NM-04103","","","253332","3536030","GW","false","" +"PC-160","PSW-07","","371517","3909867","PS","true","" +"NM-21804","","","651934","3881100","GW","false","" +"NM-20953","","","591722","3857340","GW","false","" +"NM-16048","","","613482","3757240","GW","false","" +"DE-0078","","","639407","3568801","GW","false","" +"SM-1061","","","441402","3647014","SP","true","" +"NM-27213","","","232704","3532290","GW","false","" +"NM-24036","","","398978","3924970","GW","false","" +"NM-14391","","","555554","3702390","GW","false","" +"NM-12698","","","625657","3680040","GW","false","" +"NM-00493","","","680125","3647590","GW","false","" +"NM-19797","","","601974","3832890","GW","false","" +"NM-02427","","","358667","3593190","GW","false","" +"MI-0004","","","470661","3879721","GW","true","Topographic situation: Valley" +"NM-13333","","","630253","3690510","GW","false","" +"NM-05660","","","259370","3570100","GW","false","" +"NM-06900","","","259578","3593050","GW","false","" +"NM-09381","","","554982","3629500","GW","false","" +"NM-27632","","","636692","3794390","GW","false","" +"NM-10981","","","619491","3650890","GW","false","" +"NM-27023","","","327054","3757740","GW","true","" +"EB-297","","","413146","3953983","GW","true","Turn North onto Camino de los Montoyas off of 599, just east of big church. Follow for about 1 mile to large tower, and turn right and immediately left thru barb wire gate. Follow two track through archery site (0.4 mile) until big turn." +"NM-13103","","","138015","3692690","GW","false","" +"NM-23028","","","648920","3894850","GW","false","" +"NM-21331","","","356193","3870860","GW","false","" +"PC-120","PW-207","","372139","3909359","GW","true","" +"NM-05733","","","158004","3573790","GW","false","" +"SM-0223","","","482453","3673558","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Continue on the county road for 4 miles, at which point the road crosses Monument Canyon arroy. Take road on right, leading to the Wright ranch headquaters. Follow Monument Canyon for 0.8 miles, then take the two-track to the left for 2.4 miles, going up a side canyon, over a low saddle, and down into and unnamed side canyon. Road is rough! Watch for exotic game. Look for windmill and storage tank. According to ranch foreman, windmill permenently running to keep it from silting in." +"NM-20531","","","642387","3848120","GW","false","" +"TB-1056","","","428450","3709948","SP","true","East of Gaylord Canyon trail about 1 km south of Tortolita Canyon" +"NM-05174","","","166941","3565710","GW","false","" +"NM-14835","","","534681","3720800","GW","false","" +"NM-01624","","","158070","4027820","GW","false","" +"UC-0190","","","614356","4045993","GW","false","" +"SB-0415","TWDB 4814401","","467902","3520719","GW","false","" +"NM-27509","","","164288","3763370","GW","false","" +"NM-20404","","","576396","3843490","GW","false","" +"NM-23989","","","447662","3922270","GW","false","" +"NM-03841","","","231257","3522190","GW","false","" +"NM-12230","","","642367","3671950","GW","false","" +"NM-08621","","","679680","3622040","GW","false","" +"NM-00850","","","295441","3736900","GW","false","" +"NM-07301","","","675093","3600050","GW","false","" +"NM-13773","","","145529","3701150","GW","false","" +"NM-10165","","","555812","3639080","GW","false","" +"NM-27631","","","647457","3794560","GW","false","" +"TO-0018","2N7E14.433","","391574","3806450","GW","true","" +"NM-07270","","","661301","3599110","GW","false","" +"NM-11243","","","404230","3655240","GW","false","" +"QU-510","","","440106","4057929","SP","true","Seep at river level." +"SA-0015","SA-15_R0?","","250400","3783067","GW","true","see OSE field sheet. Turn off to well from Hwy 60 north, just past (west of) solar water tank and just east of mile marker 85. From sketch in notes, looks like well is east of house, and east of another windmill by ~1/4 mi (possibly a fence in between them?)." +"BW-0694","4.18.8.5.430","","392921","3626680","GW","true","" +"NM-14157","","","640721","3699660","GW","false","" +"NM-24783","","","414043","3944930","GW","false","" +"NM-10901","","","637829","3650140","GW","false","" +"NM-13670","","","536614","3693530","GW","false","" +"NM-12002","","","665798","3668290","GW","false","" +"NM-13862","","","544151","3695250","GW","false","" +"NM-18009","","","587857","3798830","GW","false","" +"NM-03797","","","116840","3524490","GW","false","" +"NM-07230","","","618467","3597470","GW","false","" +"NM-18498","","","268395","3809180","GW","false","" +"QU-180","","","443079","4061677","GW","true","Tailing facility, Dam 4 impoundment" +"NM-25970","","","290801","4009230","GW","false","" +"BW-0307","16S9E4.441","","404906","3646020","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0037","SA-37_R01","","212467","3770010","GW","true","From Hwy 12, take Green Gap Rd West to Thomas Ranch Rd west. Bear left (SW) on Frontier Trail Rd. Got 1.3 mi stay W at Tee Pee Ranch sign. Got 1.9 mi to Plains Dr. Right to SW downhill, 0.4 mi to Crooked Arrow Dr. Turn left (S) and look for white metal shed inside chain link fence enclosure on SW side of road. Well inside fence. No trespassing posted." +"NM-14789","","","443077","3718970","GW","false","" +"DE-0354","","","569113","3626634","GW","false","" +"SM-1028","","","430465","3632876","SP","true","" +"BW-0445","18S10E30.242","","411198","3620350","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19093","","","667260","3818560","GW","false","" +"NM-04007","","","182370","3531230","GW","false","" +"NM-05472","","","243247","3568610","GW","false","" +"NM-22341","","","377805","3886100","GW","false","" +"NM-14760","","","451421","3717780","GW","false","" +"AB-0127","S159","","350122","3894540","GW","true","" +"NM-22037","","","619907","3883020","GW","false","" +"NM-26276","","","666733","4039910","GW","false","" +"NM-28199","","","169661","4055370","GW","false","" +"CX-0153","71","","530082","4026890","GW","true","4 miles northwest of Springer" +"NM-16158","","","651982","3761410","GW","false","" +"BW-0070","6S9E7.232","","403259","3740850","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0191","SAC-E01A","","325150","3791014","GW","true","" +"QY-0746","7.27.10.244","","585823","3856450","GW","true","" +"NM-25534","","","675548","3981510","GW","false","" +"NM-11494","","","563553","3659510","GW","false","" +"SB-0002","TWDB 4701401","","503150","3534217","GW","false","" +"NM-10215","","","654258","3640650","GW","false","" +"NM-01237","","","168414","3896310","GW","false","" +"NM-02744","","","560382","3660630","GW","false","" +"NM-03652","","","223558","4067010","GW","false","" +"NM-25690","","","639537","3989470","GW","false","" +"UC-0006","","","672083","4002475","GW","false","" +"BW-0282","15S10E22.43","","409917","3650700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26232","","","601845","4034000","GW","false","" +"NM-12672","","","556184","3678410","GW","false","" +"NM-11720","","","285217","3665290","GW","false","" +"DE-0258","","","663175","3634551","GW","false","" +"NM-09287","","","645113","3629790","GW","false","" +"NM-16266","","","327602","3766480","GW","false","" +"NM-06209","","","670315","3578620","GW","false","" +"SM-3024","","","478480","3652708","PS","true","Site visited and sampled by Trevor Kludt and Patrick Walsh" +"NM-09960","","","655660","3637470","GW","false","" +"NM-04888","","","268721","3558630","GW","false","" +"NM-03132","","","646783","3813030","GW","false","" +"NM-18456","","","649694","3806740","GW","false","" +"NM-03825","","","233639","3521700","GW","false","" +"PP-037","PW-42","","438068","4003242","GW","true","" +"NM-23087","","","380185","3895650","GW","false","" +"BW-0252","14S10E31.444","","405452","3657210","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22963","","","351543","3894150","GW","false","" +"NM-00975","","","639323","3814680","GW","false","" +"NM-13507","","","553420","3691540","GW","false","" +"NM-09810","","","214775","3637890","GW","false","" +"DA-0182","22S1E9.232","","326807","3587540","GW","true","" +"NM-22441","","","639140","3887520","GW","false","" +"NM-25356","","","404524","3970420","GW","false","" +"NM-15699","","","286483","3749070","GW","false","" +"NM-13795","","","660972","3696740","GW","false","" +"NM-22891","","","387708","3892470","GW","false","" +"NM-01544","","","638633","3980150","GW","false","" +"NM-13468","","","609636","3691520","GW","false","" +"NM-21092","","","642486","3863010","GW","false","" +"NM-25604","","","403596","3983220","GW","false","" +"TV-206","","","443234","4019655","GW","true","**NOT USING SITE IN INVENTORY.**" +"EB-116","","","405163","3939771","GW","true","At PNM office on South14/E Frontage Rd, north of 599 bypass, in pit with green metal cover, under flagpole" +"NM-14012","","","129455","3703350","GW","false","" +"NM-09667","","","551509","3632160","GW","false","" +"NM-19061","","","593376","3816810","GW","false","" +"NM-24830","","","406909","3945770","GW","false","" +"NM-19010","","","667317","3816770","GW","false","" +"NM-24756","","","662599","3945570","GW","false","" +"SM-1011","","","437747","3629577","SP","true","Access Hay Canyon by Prestridge Hill Road or Agua Chiquita." +"NM-23214","","","394377","3898030","GW","false","" +"NM-25165","","","471829","3958980","GW","false","" +"NM-06093","","","262238","3577330","GW","false","" +"TC-374","","","442021","4076258","GW","true","" +"NM-28198","","","174783","4048570","GW","false","" +"NM-11280","","","614057","3656120","GW","false","" +"NM-21202","","","655072","3867900","GW","false","" +"MI-0063","","","523650","3910524","GW","true","Topographic situation: Plains" +"NM-10807","","","412443","3648240","GW","false","" +"BC-0258","259","","366921","3881480","GW","true","" +"NM-21330","","","293724","3872020","GW","false","" +"NM-02943","","","419030","3746060","GW","false","" +"NM-20233","","","673837","3841920","GW","false","" +"NM-19276","","","228304","3826420","GW","false","" +"NM-07978","","","657945","3611570","GW","false","" +"NM-10773","","","555686","3647550","GW","false","" +"NM-15961","","","653898","3755620","GW","false","" +"NM-12855","","","558182","3681840","GW","false","" +"TC-269","CO-17","","414315","4105724","GW","true","" +"SB-0257","TWDB 4807316","","486776","3540013","GW","false","" +"NM-03975","M-014","","256862","3527500","GW","false","" +"NM-04728","","","336709","3554630","GW","false","" +"NM-08730","","","408076","3622410","GW","false","" +"QY-0241","11.30.30.313","","608701","3889960","GW","true","" +"NM-15592","","","679842","3746160","GW","false","" +"NM-11592","","","404289","3661280","GW","false","" +"NM-12682","","","635870","3678980","GW","false","" +"NM-22243","","","346345","3885590","GW","false","" +"NM-05766","","","242124","3571850","GW","false","" +"ED-0179","22S26E2.144","","569056","3587610","GW","true","" +"NM-20317","","","615687","3842140","GW","false","" +"SB-0012","TWDB 4709101","","503732","3522733","GW","false","" +"NM-11103","","","556438","3652290","GW","false","" +"NM-10053","","","402525","3637670","GW","false","" +"NM-11546","","","559581","3660320","GW","false","" +"NM-15449","","","132188","3748200","GW","false","" +"NM-08973","","","559926","3624720","GW","false","" +"QY-0284","11.31.3.221","","623426","3896850","GW","true","" +"BW-0314","16S9E25.332","","408518","3639530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25210","","","221838","3966230","GW","false","" +"DE-0190","","","611969","3598519","GW","false","" +"NM-02457","NH-020","","280022","3602710","GW","false","" +"NM-18281","","","655699","3804020","GW","false","" +"NM-27895","","","578294","3820610","GW","false","" +"NM-19749","","","567733","3831840","GW","false","" +"SB-0463","TWDB 4824101","","491370","3512083","GW","false","" +"NM-03860","","","349654","3520270","GW","false","" +"NM-04949","","","678674","3558560","GW","false","" +"NM-18318","","","199836","3808050","GW","false","" +"BC-0168","148","","378969","3884870","GW","true","" +"NM-02500","NH-001","","282693","3612930","GW","false","" +"NM-14432","","","243584","3707820","GW","false","" +"NM-21986","","","394268","3882230","GW","false","" +"SO-0084","4N3W24.131","","306141","3826230","GW","true","" +"NM-07918","","","185526","3614560","GW","false","" +"NM-07861","","","550170","3608960","GW","false","" +"NM-04758","","","657964","3555300","GW","false","" +"NM-16472","","","650339","3772670","GW","false","" +"AB-0101","S115","","361321","3886830","GW","true","" +"TB-0118","","","416625","3721997","GW","true","247 Schlabb Rd. well is behind trailer in building." +"NM-14239","","","281184","3701600","GW","false","" +"NM-15231","","","644785","3736750","GW","false","" +"NM-09999","","","220594","3640220","GW","false","" +"NM-13749","","","544748","3694610","GW","false","" +"SD-0367","10N.5E.10.434","","373535","3885020","SP","true","" +"NM-18776","","","604835","3811820","GW","false","" +"PB-0025","","","377957","3936598","GW","true","" +"NM-08858","","","190520","3628260","GW","false","" +"QY-0790","7.31.22.224","","624487","3853980","GW","true","" +"NM-13825","","","554046","3695120","GW","false","" +"NM-20147","","","394762","3839090","GW","false","" +"BW-0414","17S10E30.13","","410049","3629220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-385","","","404306","3936263","GW","true","NM State Penitentiary, north end, east well in line" +"PB-0027","","","378161","3937643","GW","true","Just south of the post office in Pena Blanca, turn west on Calle Escuela Vieja. Stay right on Calle Escuela Vieja at fork with Perla Lane to address." +"NM-20982","","","523207","3857830","GW","false","" +"NM-18878","","","573917","3813190","GW","false","" +"NM-11074","","","539055","3651560","GW","false","" +"WL-0336","","","364711","3908517","GW","false","Commercial Nav system will get you to residence. +Well is located north of house (back) outside of fence. " +"NM-22868","","","361618","3892480","GW","false","" +"BW-0776","2.28.3.19.300","","350135","4054310","GW","true","" +"NM-23133","","","350351","3896640","GW","false","" +"NM-17011","","","659942","3782440","GW","false","" +"NM-05114","","","350165","3560430","GW","false","" +"NM-22639","","","348368","3889930","GW","false","" +"NM-09236","","","408076","3628040","GW","false","" +"EB-510","","","417780","3954572","GW","true","" +"NM-00967","","","668140","3814070","GW","false","" +"NM-13608","","","546642","3692890","GW","false","" +"NM-20112","","","548043","3837810","GW","false","" +"NM-19306","","","625672","3824400","GW","false","" +"NM-20839","","","582607","3854320","GW","false","" +"SB-0247","TWDB 4807304","","487533","3536656","GW","false","" +"NM-06212","","","328700","3578630","GW","false","" +"BW-0561","16S9E14.1","","407116","3643790","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"MG-004","WF-4","","294454","3773049","GW","true","" +"AS-065","ES-20","","451101","4041960","GW","true","" +"NM-22864","","","375939","3892230","GW","false","" +"NM-18390","","","621353","3805740","GW","false","" +"DE-0088","","","639312","3568992","GW","false","" +"SB-0420","TWDB 4815101","","477506","3524881","GW","false","" +"HS-036","TC-036","","290076","3667679","GW","true","100 Austin Street. At the end of Austin Street under teepee." +"NM-13945","","","544072","3695560","GW","false","" +"NM-18898","","","578916","3813500","GW","false","" +"NM-04749","","","236421","3557040","GW","false","" +"NM-10464","","","680475","3645470","GW","false","" +"NM-20154","","","602006","3839210","GW","false","" +"TB-0037","","","429185","3720985","GW","true","Off hwy 380, east of Carrizozo, take Basin Street ~1.6 mi to wire gate (at big curve). USE GPS or map! Open gate and drive across field toward casing stick up on small hill. Caution: big ruts just after gate, upon entering the field." +"NM-17910","","","643317","3797670","GW","false","" +"SB-0287","TWDB 4807503","","481907","3531861","GW","false","" +"NM-22057","","","403495","3882890","GW","false","" +"SB-0134","TWDB 4734101","","515253","3480933","GW","false","" +"NM-08000","","","538306","3610600","GW","false","" +"UC-0084","","","637091","4031996","GW","true","From Clayton NM proceed west approx. 4.0 miles on U.S. 56 to Heringa Rd. +0.0 mi. From junction of U.S. 56 and Heringa Road, go west on Heringa Rd. +3.3 miles Intersection with Bella Rd. Continue on Heringa Road 7.3 miles west of Bella Road. +10.6 miles Intersection with Perico Creek Road. Continue west on Heringa rd. +11.6 miles Intersection with Swagerty Road exiting to the South. Continue west on Heringa Rd. +12.6 miles 1.0 mile west of Swagerty Rd. At the point where Heringa Road turns sharply to the north, go through gate on the west side of the corner and proceed 0.1 mile west on dirt road leading to metal frame windmill and livestock water tank. Slide pump cover over enough to allow tape-down inside 6-inch dameter casing that only rises above ground level about 0.25 ft." +"EB-169","","","402516","3948110","GW","true","off Caja del Rio at gate to landfill; behind bldg by storage tank" +"NM-25701","","","427136","3989250","GW","false","" +"NM-24422","","","402464","3937160","GW","false","" +"NM-07007","","","277543","3594760","GW","false","" +"NM-16006","","","612600","3755870","GW","false","" +"NM-18751","","","591086","3811030","GW","false","" +"EB-673","","","407049","3942472","GW","true","" +"ED-0068","20S26E17.33","","555322","3603600","GW","true","" +"TV-173","","","439230","4024897","GW","true","From SR 68, go left (west) on SR 96. Go 2 miles to Los Cordovas and turn right (north). Go 1 mile to Anadarko Rd and turn left (west). Go ~1.5 miles, road bends to north and becomes River Bend Rd. Casing 5 m from road on right." +"NM-22499","","","379199","3888580","GW","false","" +"NM-28170","","","409633","3983400","GW","false","" +"NM-27547","","","637251","3781830","GW","false","" +"NM-04009","","","140393","3533200","GW","false","" +"NM-22561","","","661825","3889160","GW","false","" +"DA-0064","22S2E31.444","","333517","3580130","GW","true","" +"NM-16789","","","659851","3778740","GW","false","" +"SD-0026","7N.7E.7.331","","385471","3856370","GW","true","" +"SO-0097","1S4E6.444","","356323","3790580","GW","true","" +"NM-01293","","","675825","3905850","GW","false","" +"NM-00073","","","547648","3547120","GW","false","" +"NM-25024","","","207342","3955070","GW","false","" +"NM-07541","","","214827","3607920","GW","false","" +"NM-23361","","","232608","3904330","GW","false","" +"NM-03518","","","618711","3944630","GW","false","" +"NM-24094","","","400545","3927630","GW","false","" +"DA-0160","27S3E32.122","","343187","3532960","GW","true","" +"EB-106","","","416810","3929620","GW","true","" +"NM-07868","","","651581","3610080","GW","false","" +"NM-28111","","","641566","3910420","GW","false","" +"NM-03823","","","248056","3521330","GW","false","" +"NM-14508","","","633917","3707810","GW","false","" +"UC-0053","","","657063","4060940","GW","true","elv 5156 acc to USGS" +"NM-20463","","","393179","3845240","GW","false","" +"NM-06471","","","225010","3586020","GW","false","" +"SB-0423","TWDB 4815105","","478481","3526018","GW","false","" +"NM-08265","","","562382","3614940","GW","false","" +"NM-00412","","","660317","3634060","GW","false","" +"NM-05500","","","165048","3571140","GW","false","" +"NM-02468","M-173","","201238","3607570","GW","false","" +"NM-09323","","","408086","3629090","GW","false","" +"SB-0253","TWDB 4807312","","486014","3539522","GW","false","" +"HS-010","TC-010","Theis 18","289766","3667831","GW","true","Copy from map, inside Fire Water. In block 105, in Hot Springs, NM" +"SA-0184","","","269347","3760163","GW","true","From Hwy 60, take turn off for Bear Trap Canyon (FR 168) across from Montoso RV camp and east of MM 100. South for 8.7 miles. Turn left (E) onto FR 52. Go 1/2 mile to Monica Cabin, well by WM. (road forks to SW just before cabin and look for steel WM tower about 200 yards w of cabin." +"TS-106","","","436934","4044169","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope." +"ED-0312","23S28E22.433","","587289","3572440","GW","true","" +"NM-00136","","","368742","3561080","GW","false","" +"NM-03467","","","363965","3908670","GW","false","" +"NM-23436","","","382930","3904490","GW","false","" +"NM-19042","","","578024","3816330","GW","false","" +"TO-0390","9N6E25.334","","385130","3870540","GW","true","" +"ED-0310","23S28E20.144","","583382","3573360","GW","true","" +"NM-05611","","","677320","3568480","GW","false","" +"NM-25225","","","251293","3966310","GW","false","" +"NM-01377","","","176130","3929150","GW","false","" +"NM-24369","","","397161","3935770","GW","false","" +"NM-28018","","","357355","3881530","GW","false","" +"NM-27555","","","635443","3792340","GW","false","" +"SD-0047","7N.8E.8.311","","396676","3856690","GW","true","" +"NM-09164","","","285264","3629300","GW","false","" +"NM-23404","","","299362","3904300","GW","false","" +"NM-01953","M-046","","239195","3547540","GW","false","" +"BC-0072","56","","381263","3890240","GW","true","" +"SD-0350","8N.7E.11.113","","391488","3863710","SP","true","" +"NM-16107","","","650360","3760090","GW","false","" +"AR-0231","","","239808","4087752","GW","true","From junction of Main St. (Hwy 550) and Aztec Blvd in Aztec (Safeway grocery is at this intersection), drive NE on Hwy 550 about 7.4 miles. Make a U-turn about ยผ mile past Mile Marker 167, the first cross-over past the mid-highway barrier. Drive 0.5 miles SW on Hwy 550 and turn right (north) on Rd 1617. Drive 0.1 miles, Rd 2617 turns to the left (west), drive about 0.1 miles to the Larabee residence directly ahead. Well on south side of driveway in front of house." +"NM-11232","","","629163","3655630","GW","false","" +"DE-0079","","","639568","3568780","GW","false","" +"NM-07803","","","661555","3609190","GW","false","" +"NM-26568","","","578014","4067310","GW","false","" +"NM-07141","","","357247","3596140","GW","false","" +"NM-07628","","","185908","3610110","GW","false","" +"ED-0272","23S23E16.133","","536555","3574380","GW","true","" +"NM-14713","","","642797","3716410","GW","false","" +"NM-08683","","","675445","3622920","GW","false","" +"NM-02595","","","555879","3627190","GW","false","" +"NM-05324","","","666572","3564480","GW","false","" +"DE-0010","","","637804","3565300","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep." +"BC-0354","363","","376509","3891309","GW","true","" +"NM-23979","","","339539","3923000","GW","false","" +"NM-10762","","","555687","3647450","GW","false","" +"NM-01454","","","158629","3948660","GW","false","" +"NM-13190","","","542687","3687300","GW","false","" +"NM-24253","","","658363","3933290","GW","false","" +"NM-08148","","","298070","3615100","GW","false","" +"TO-0524","7N12E30.2","","435908","3852220","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-00842","","","312997","3723580","GW","false","" +"EB-669","","","420867","3934850","GW","true","" +"NM-12401","","","554271","3673340","GW","false","" +"NM-15808","","","173222","3754720","GW","false","" +"NM-28230","","","170846","4076230","GW","false","" +"NM-00604","","","616333","3665040","GW","false","" +"NM-11474","","","560002","3659270","GW","false","" +"MI-0080","","","454311","3918796","GW","true","Topographic situation: Hilly" +"NM-12307","","","619456","3672880","GW","false","" +"NM-24362","","","436232","3935190","GW","false","" +"NM-12764","","","657551","3681430","GW","false","" +"NM-16480","","","657799","3772760","GW","false","" +"NM-06819","","","341856","3590310","GW","false","" +"TO-0192","5N10E27.444","","420460","3831810","GW","true","" +"OG-0041","","","645503","3814626","GW","true","From int of SR 311 and US 60, west of Clovis, drive 5 miles west on US 60. Turn right north on CR V. Drive 3.7 miles north. Turn left west on CR 14. Drive 0.5 miles west. Well is on south side of road near track." +"NM-16893","","","673069","3780330","GW","false","" +"TO-0381","8N11E30.222","","426510","3862000","GW","true","" +"TO-0191","5N10E13.443","","423351","3835100","GW","true","" +"TO-0528","7N8E20.342","","397272","3853040","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-19597","","","218382","3833350","GW","false","" +"NM-23869","","","629409","3918090","GW","false","" +"NM-01080","","","628740","3849090","GW","false","" +"NM-01092","","","459919","3850920","GW","false","" +"BW-0503","7S8E34.322","","398161","3724530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08009","","","231682","3614290","GW","false","" +"NM-01160","","","562145","3868080","GW","false","" +"NM-26264","","","605009","4037990","GW","false","" +"NM-21784","","","391028","3880290","GW","false","" +"AB-0064","S074","","312467","3835490","GW","true","" +"NM-00893","","","322087","3786650","GW","false","" +"SM-0165","","","488598","3620997","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-12502","","","292632","3677340","GW","false","" +"NM-04075","","","254742","3534520","GW","false","" +"NM-02966","","","680502","3760130","GW","false","" +"NM-10617","","","657825","3646780","GW","false","" +"SM-3050","","","444543","3642783","R","true","From depth of 120-130 ft Yeso Formation Anhydrite, Limestone, Mudstone." +"BC-0375","378","","345836","3874839","GW","false","" +"CP-0008","","","647944","3812678","GW","true","From Clovis head west on Hwy 60 past Cannon AFB, turn right (north) on CR U (sign is very faint) go ~2.5 miles to well on west side of road. Will pass Montagne (?) Ranch on left (west)." +"QU-502","","","441563","4060011","SP","true","From foot bridge below fish hatchery, turn north along wetland that runs up behind hatchery. Spring feeding wetland behind fish hatchery in engineered arroyo diversion." +"NM-00873","","","534467","3765450","GW","false","" +"ED-0034","17S29E29.4","","584947","3629700","GW","true","" +"NM-04981","","","678978","3559150","GW","false","" +"NM-24272","","","475623","3932440","GW","false","" +"NM-08861","","","204921","3627820","GW","false","" +"NM-00130","","","440581","3559870","GW","false","" +"BW-0469","26S7E1.241","","389075","3549370","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10558","","","546145","3644910","GW","false","" +"NM-27118","LLC-40","","444173","4031130","GW","false","" +"NM-02019","","","137015","3557390","GW","false","" +"NM-17502","","","666596","3789920","GW","false","" +"NM-26923","PW-167","","365499","3910231","GW","true","" +"SM-0217","","","474093","3667513","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. At 26.2 miles, Pickett house on right, behind locked gate (need combo!). Well behind house." +"NM-27474","","","543634","3723710","GW","false","" +"SD-0252","11N.5E.25.231","","376459","3890770","GW","true","" +"NM-20288","","","556626","3840880","GW","false","" +"NM-24612","","","653249","3942080","GW","false","" +"NM-19365","","","633198","3825800","GW","false","" +"BC-0392","395","","378492","3876511","GW","false","" +"NM-01988","","","346436","3549150","GW","false","" +"NM-05205","","","677756","3563070","GW","false","" +"NM-08105","","","648688","3613460","GW","false","" +"DE-0015","","","617673","3571085","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Cluster of 3 wells (NGL #11, 12, 10. Well #12 is on north end of enclosure, NE of old windmill." +"BW-0197","14S9E26.222","","402210","3660090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09198","","","410953","3626880","GW","false","" +"DE-0093","","","639316","3568963","GW","false","" +"QY-0001","10.27.1.431","","588677","3886390","GW","true","" +"NM-08113","","","657129","3613680","GW","false","" +"NM-17088","","","592824","3782430","GW","false","" +"NM-27663","","","661024","3795460","GW","false","" +"NM-03312","","","674400","3864520","GW","false","" +"NM-04180","","","158646","3542910","GW","false","" +"NM-20098","","","601535","3838090","GW","false","" +"NM-17037","","","645629","3782170","GW","false","" +"NM-16820","","","631309","3778760","GW","false","" +"SB-0473","TWDB 4824603","","496920","3505614","GW","false","" +"BW-0201","14S9E26.242a","","402207","3659680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08661","","","554273","3621240","GW","false","" +"NM-07445","","","182564","3606790","GW","false","" +"TB-0264","","","413264","3624371","GW","true","" +"NM-22909","","","375289","3892790","GW","false","" +"NM-25823","","","311122","4000230","GW","false","" +"EB-437","","","414621","3934841","GW","true","14 Gualdo Road." +"NM-00655","","","286372","3687920","GW","false","" +"NM-02694","","","276427","3650630","GW","false","" +"NM-27812","","","656811","3804240","GW","false","" +"EB-660","","","407763","3939516","GW","true","" +"NM-14546","","","674905","3709460","GW","false","" +"TO-0449","10N8E3.333","","401215","3886270","GW","true","" +"NM-21003","","","334935","3859690","GW","false","" +"NM-13071","","","560796","3685730","GW","false","" +"NM-18680","","","603090","3810350","GW","false","" +"NM-28159","","","649871","3612830","GW","false","" +"NM-01488","","","660234","3953240","GW","false","" +"NM-10413","","","408971","3643280","GW","false","" +"NM-22877","","","618341","3892400","GW","false","" +"NM-00729","","","457821","3696040","GW","false","" +"BW-0334","16S10E30.432","","410314","3638090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26548","","","229391","4070160","GW","false","" +"NM-03864","","","349105","3520490","GW","false","" +"NM-11121","","","674344","3654230","GW","false","" +"WL-0071","","","204033","3658920","GW","true","From I-25, take Rt. 152 west, go north on Hwy 35 towards Mimbres. Stay on Hwy 35 to Lake Roberts. On far side of lake, make left on Chestnut Street, right on Cottonwood, left on Mulberry, to right on Timber Street. Well is at the corner of Timber Street and Forest Drive. Well is in silver box next to pumphouse." +"NM-13703","","","631928","3694760","GW","false","" +"NM-08750","","","666390","3624090","GW","false","" +"SB-0653","TWDB 4915401","","382702","3519429","GW","false","" +"NM-07584","","","678820","3606160","GW","false","" +"NM-11152","","","478234","3652950","GW","false","" +"NM-08562","","","553474","3619700","GW","false","" +"AB-0149","S196","","326392","3864250","GW","true","" +"NM-11193","","","620016","3654650","GW","false","" +"QY-0315","11.32.28.434a","","632203","3890100","GW","true","" +"NM-22277","","","597875","3885100","GW","false","" +"NM-21999","","","598994","3882310","GW","false","" +"NM-09784","","","556181","3633660","GW","false","" +"NM-02772","","","553124","3669980","GW","false","" +"PC-114","PW-196","","368233","3911363","GW","true","" +"BW-0067","6S9E1.232","","411123","3742300","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20217","","","601182","3840120","GW","false","" +"NM-25093","","","612569","3954840","GW","false","" +"WL-0238","","","209242","3635760","GW","true","Head west on Hwy 152 out of Hanover, NM for ~1.1 miles, turn right on Humbolt Mountain Rd to last house #30 on the road. Well is behind white shed northwest of the home in the trees." +"NM-06898","","","661163","3591470","GW","false","" +"NM-24584","","","476223","3940110","GW","false","" +"SM-0016","","","439233","3634784","GW","true","Take NM 130 or Sunspot Highway to Rio Penasco Rd, house is ~ 3 miles from west end of Rd on north side. # 313 on mailbox, short steep gravel drive to gate. Manufactured one story house." +"SB-0712","TWDB 4915901","","390958","3514288","GW","false","" +"NM-20053","","","613764","3837160","GW","false","" +"QY-0482","15.35.29.132","","658383","3929860","GW","true","" +"NM-03019","","","622541","3794970","GW","false","" +"NM-09976","","","657425","3637620","GW","false","" +"BW-0872","2.11.30.8.411","","611124","3895020","GW","true","" +"SB-0628","TWDB 4907802","","386467","3529272","GW","false","" +"NM-25186","","","476705","3960660","GW","false","" +"SB-0136","TWDB 4734103","","512905","3480622","GW","false","" +"NM-09425","","","640182","3630770","GW","false","" +"RA-047","","","419784","4006136","GW","true","Next to house." +"BW-0931","1.4.3.25.334","","306007","3823700","SP","true","" +"NM-26833","","","547742","3685742","GW","true","" +"NM-24125","","","479795","3928370","GW","false","" +"NM-17125","","","639766","3783720","GW","false","" +"AB-0195","S248","","358611","3887700","GW","true","" +"NM-15332","","","566995","3738660","GW","false","" +"TC-258","CO-06","","421083","4102212","GW","true","" +"NM-11070","","","559322","3651570","GW","false","" +"NM-10310","","","655035","3642480","GW","false","" +"NM-15306","","","184236","3743090","GW","false","" +"NM-25320","","","159822","3974640","GW","false","" +"NM-22200","","","381939","3884690","GW","false","" +"NM-19532","","","609384","3828660","GW","false","" +"NM-01876","M-030","","252332","3536435","GW","false","From intersection of NM11 and B005, go 4.1 miles north and then east on B011. Stay left at mile 1.6, continuing on B011 for a total of 4.3 miles (go through the gate). Well located just south of the gate, near the power pole with metal box about 50 yards east of the road." +"NM-16946","","","560174","3779790","GW","false","" +"NM-11828","","","550044","3664390","GW","false","" +"NM-13547","","","556388","3692200","GW","false","" +"NM-16451","","","664415","3772680","GW","false","" +"BW-0348","17S9E8.422","","403142","3635110","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26451","","","223474","4066150","GW","false","" +"NM-11938","","","658582","3667370","GW","false","" +"NM-24453","","","678080","3938990","GW","false","" +"NM-28272","ER-6","","450117","4074390","GW","false","" +"NM-17352","","","649880","3786990","GW","false","" +"BW-0028","22S4E16.112","","354791","3585880","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12278","","","591443","3671900","GW","false","" +"NM-24536","","","409459","3939310","GW","false","" +"NM-19371","","","571860","3825000","GW","false","" +"NM-04484","","","344332","3549090","GW","false","" +"SB-0165","TWDB 4743201","","529591","3468772","GW","false","" +"NM-25094","","","404339","3954640","GW","false","" +"NM-10922","","","617108","3650430","GW","false","" +"NM-12973","","","402314","3684150","GW","false","" +"DE-0118","","","672938","3616004","GW","false","" +"NM-05282","","","288847","3564380","GW","false","" +"NM-01845","","","255824","3530300","GW","false","" +"NM-02687","","","281749","3650120","GW","false","" +"NM-22104","","","386863","3883550","GW","false","" +"NM-16118","","","680638","3761060","GW","false","" +"NM-24588","","","676737","3941960","GW","false","" +"NM-18726","","","627154","3811110","GW","false","" +"NM-14322","","","667149","3702730","GW","false","" +"BC-0282","285","","368401","3881850","GW","true","" +"SB-0273","TWDB 4807415","","477763","3534148","GW","false","" +"NM-02363","M-135","","237486","3583973","GW","false","2.3 miles N on US180 from US180 & NM26 intersection, go right north onto CR A008 Keeler Road, 2.9 miles on pavement, 1.5 miles on gravel to Y, stay straight, 0.5 miles to cattle guard, mailbox just beyond it, from mailbox 0.4 miles to house, go past house, north side of barns, circle south thru two gates in corrals to well next to red steel stock tank SW of yellow barn." +"MI-0287","","","578945","3958695","GW","true","Topographic situation: Valley" +"NM-28378","CR-2015-001","","571208","3589656","GW","true","" +"NM-19296","","","668749","3825060","GW","false","" +"NM-08327","","","672473","3617140","GW","false","" +"NM-05465","","","236358","3568730","GW","false","" +"NM-02071","","","269743","3558570","GW","false","" +"NM-23975","","","288949","3923930","GW","false","" +"NM-22691","","","346941","3890640","GW","false","" +"WL-0334","","","369833","3910381","GW","false","Commercial Nav system will get you to well owner residence. +Well is located across driveway southeast of house in a ""Hipcamp"" tent pad. Look for frost free stick-up style faucet" +"NM-02818","","","549163","3695060","GW","false","" +"AR-0173","E006","NMED 323","239035","4088019","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Follow Rd to address on right. Well in well house attached to barn." +"NM-03063","","","572103","3797030","GW","false","" +"NM-07112","","","674507","3596250","GW","false","" +"NM-24044","","","404175","3925310","GW","false","" +"BW-0032","22S4E24.212a","","360362","3584180","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17792","","","524085","3793920","GW","false","" +"NM-15280","","","671375","3739370","GW","false","" +"NM-17844","","","596730","3795990","GW","false","" +"NM-17572","","","661338","3790600","GW","false","" +"DE-0253","","","663124","3634610","GW","false","" +"NM-08229","","","570956","3614380","GW","false","" +"NM-16047","","","653829","3758270","GW","false","" +"NM-22171","","","267594","3886400","GW","false","" +"NM-21234","","","346673","3868810","GW","false","" +"NM-19933","","","396676","3835030","GW","false","" +"NM-17421","","","647766","3787940","GW","false","" +"NM-18142","","","463722","3800670","GW","false","" +"NM-01715","","","431596","4073280","GW","false","" +"NM-23506","","","242070","3910470","GW","false","" +"NM-08573","","","545534","3619720","GW","false","" +"DE-0065","","","540725","3592142","GW","false","" +"NM-18979","","","643803","3815880","GW","false","" +"NM-00355","","","287116","3625870","GW","false","" +"NM-25399","","","400169","3972530","GW","false","" +"NM-03125","","","574624","3810880","GW","false","" +"NM-05504","","","603129","3566190","GW","false","" +"SM-0091","","","435125","3611786","GW","true","Well is behind (north of) fire dept building in Timberon, access by dirt road that is just east of FD building. Old well has silver cap, and air line. New well is green." +"NM-13792","","","544436","3694940","GW","false","" +"NM-26251","","","643814","4036540","GW","false","" +"SO-0002","","","323873","3771183","GW","true","On NMT campus, at intersection of Olive Lane and Canyon Road. Well located in vault below man-hole cover at PRRC intersection. Proximal to Bushman pumphouse." +"NM-15830","","","678625","3752050","GW","false","" +"NM-27668","","","618527","3794890","GW","false","" +"NM-20646","","","448335","3849690","GW","false","" +"TO-0523","7N10E19.411","","415180","3853220","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-15311","","","614399","3738670","GW","false","" +"NM-19924","","","601137","3834950","GW","false","" +"NM-14529","","","631943","3708710","GW","false","" +"NM-07490","","","594065","3603150","GW","false","" +"NM-25808","","","406753","3997450","GW","false","" +"DE-0041","","","604188","3557450","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep" +"NM-23325","","","230659","3903460","GW","false","" +"NM-00091","","","442923","3552340","GW","false","" +"NM-28176","","","404986","3984400","GW","false","" +"HS-085","TC-085","","289678","3667753","GW","true","In block 8 in Hot Springs, NM" +"NM-16879","","","679083","3780750","GW","false","" +"NM-25983","","","419102","4008020","GW","false","" +"NM-26020","","","622176","4013710","GW","false","" +"NM-28168","","","463886","3981280","GW","false","" +"NM-04961","M-078","","221737","3561102","GW","false","Go south from NM-02175 on C046/Pelago Rd for 4.6 miles. Go west on C045 for 0.6 miles through an open gate. Well located just south of gate." +"NM-20325","","","638980","3842990","GW","false","" +"DA-0004","18S2W36.322","","312363","3619550","GW","true","" +"NM-25454","","","470523","3973680","GW","false","" +"NM-18419","","","669721","3806710","GW","false","" +"NM-18084","","","677983","3802210","GW","false","" +"NM-10054","","","282574","3639590","GW","false","" +"NM-24124","","","403355","3928800","GW","false","" +"NM-26151","","","256372","4027610","GW","false","" +"EB-615","","","406339","3950675","GW","true","Off of Cam Las Campana (S from La Tierra), turn left into Los Suenos. Follow Los Suenos Trail south, left onto Camino Los Suenos. Well on left just after turning onto road." +"NM-19237","","","635128","3822780","GW","false","" +"NM-14722","","","419886","3716300","GW","false","" +"NM-04910","","","236470","3559940","GW","false","" +"NM-12385","","","562014","3673180","GW","false","" +"MI-0274","","","468713","3957727","GW","true","Topographic situation: Edge of valley" +"NM-19925","","","377175","3835210","GW","false","" +"NM-11873","","","286163","3667060","GW","false","" +"NM-27442","","","611994","3691090","GW","false","" +"NM-08069","","","209210","3615850","GW","false","" +"NM-01035","","","608853","3834930","GW","false","" +"NM-04091","M-026","","253925","3535550","GW","false","" +"NM-23822","","","465410","3915660","GW","false","" +"TO-0393","9N7E15.113","","391651","3874740","GW","true","" +"SM-4065","","","433598","3631574","PS","true","Stream flow measurement by Patrick Walsh" +"NM-20171","","","290915","3841170","GW","false","" +"NM-19271","","","484988","3822360","GW","false","" +"NM-10487","","","218752","3647700","GW","false","" +"NM-21346","","","251001","3873770","GW","false","" +"NM-10033","","","556967","3637050","GW","false","" +"NM-28237","","","194288","4077750","GW","false","" +"NM-10566","","","550169","3645050","GW","false","" +"NM-08706","","","233076","3625380","GW","false","" +"SV-0074","15 Osito","","377969","3899311","GW","false","Unit 3 Lot 49" +"NM-15695","","","663216","3748510","GW","false","" +"NM-25463","","","580431","3974580","GW","false","" +"NM-15561","","","163985","3749000","GW","false","" +"NM-15027","","","664032","3729420","GW","false","" +"EB-052","","","418154","3941428","GW","true","" +"NM-04086","","","343803","3533330","GW","false","" +"NM-09056","","","611152","3626060","GW","false","" +"NM-05556","","","224257","3569940","GW","false","" +"WL-0247","","","371292","4067660","GW","true","From junction of HWY 64/84 and HWY 512, north of Tierra Amarilla, drive east on HWY 512 for 7.1 miles and turn left (north) at the sign for Brazos Lodge onto Falls Creek Road. Follow Falls Creek Road for ยผ mile, Allen driveway is on the left (west) side of the road. House has tan stucco with blue metal roof." +"NM-06725","","","676099","3588830","GW","false","" +"NM-09838","","","174650","3639530","GW","false","" +"BW-0092","8S10E13.133b","","419956","3719740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22682","","","347469","3890530","GW","false","" +"NM-07852","","","650306","3609880","GW","false","" +"NM-27102","CAR-22","","428683","4018910","GW","false","" +"NM-10972","","","274830","3652400","GW","false","" +"NM-17133","","","655074","3784050","GW","false","" +"NM-03175","","","665416","3824660","GW","false","" +"NM-16861","","","322903","3779970","GW","false","" +"NM-26597","","","577623","4069370","GW","false","" +"NM-02472","M-175","","186525","3608670","GW","false","From the junction of Hwy 90 and White Water Road (mile marker 26), go east on White Water Road for 0.75 miles, turn left at the intersection (still White Water Road) and go east for 0.6 miles. Turn left at signs of an unused two-track and go 0.9 miles to well. Well located near fence and large tree." +"NM-27449","","","552841","3693480","GW","false","" +"NM-17078","","","554144","3782030","GW","false","" +"NM-07896","","","664816","3610690","GW","false","" +"BC-0032","23","","383192","3890480","GW","true","" +"NM-18460","","","391478","3806290","GW","false","" +"ED-0359","25S30E21.33","","604475","3553190","GW","true","" +"NM-08254","","","300914","3616550","GW","false","" +"NM-10206","","","392260","3640180","GW","false","" +"NM-19408","","","598533","3826080","GW","false","" +"BW-0932","2.8.21.10.444","","527964","3864960","SP","true","" +"NM-27948","","","576596","3843920","GW","false","" +"SD-0131","10N.5E.2.341","","374537","3886860","GW","true","" +"NM-08625","","","206370","3624840","GW","false","" +"NM-20714","","","638714","3852200","GW","false","" +"NM-21865","","","348976","3881630","GW","false","" +"NM-06116","","","537213","3575190","GW","false","" +"NM-25039","","","673157","3952550","GW","false","" +"NM-06619","","","340174","3586390","GW","false","" +"NM-22398","","","674567","3887540","GW","false","" +"NM-20110","","","592703","3838150","GW","false","" +"TS-070","","","437367","4082068","SP","true","Spring 2 upstream of Cow Patty on east side of river" +"NM-16733","","","634072","3777260","GW","false","" +"NM-13057","","","677746","3686890","GW","false","" +"NM-16618","","","675997","3775880","GW","false","" +"CX-0131","38","","543643","4049590","GW","true","4 miles northeast of Maxwell" +"NM-22491","","","374714","3887780","GW","false","" +"QY-0450","13.36.15.231","","672254","3914020","GW","true","" +"NM-23524","","","398203","3907750","GW","false","" +"NM-01873","M-025","","252230","3535598","GW","false","From NM-01876, continue south on dirt road another 0.4 miles to the ""gate"" at the southwest corner of the fields. We opted to walk out equipment to the well from there. Well located ~100 yd from the fence at the dead windmill." +"SO-0048","3N1E16.14","","330776","3817080","GW","true","" +"NM-11848","","","286030","3666880","GW","false","" +"NM-27192","","","296180","3773570","O","true","" +"NM-18800","","","593936","3811920","GW","false","" +"ED-0186","22S26E4.24","","566598","3587590","GW","true","" +"NM-13287","","","400590","3690080","GW","false","" +"RA-040","","","379901","4007829","GW","true","In yard north of house." +"NM-10198","","","654667","3641090","GW","false","" +"NM-12276","","","664935","3673360","GW","false","" +"NM-24688","","","405247","3943230","GW","false","" +"NM-00567","","","308441","3661070","GW","false","" +"BC-0337","355","","375947","3884254","GW","true","" +"NM-04960","","","222754","3560980","GW","false","" +"MI-0292","","","468536","3968994","GW","true","Topographic situation: Valley" +"NM-22839","","","377681","3891930","GW","false","" +"QY-0779","7.30.29.133","","610452","3851810","GW","true","" +"NM-11543","","","616903","3661080","GW","false","" +"TB-0231","","","427708","3714842","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and take the road going north across the cattle guard in front of the HQ. Go 3.9 miles west and take the road to the south just past the gravel pit 0.7 miles to gate. Stay to the south west up the canyon to the end and look to the south across the arroyo for the old windmill base and tank." +"NM-07715","","","588216","3606850","GW","false","" +"NM-19634","","","223626","3833840","GW","false","" +"NM-10126","","","284237","3640720","GW","false","" +"NM-14841","","","426575","3721210","GW","false","" +"SV-0095","33 Punta Linda","","379510","3901364","GW","false","Unit 3 Lot 140" +"NM-25551","","","408755","3980820","GW","false","" +"NM-24619","","","302141","3943080","GW","false","" +"NM-18277","","","655902","3804010","GW","false","" +"QY-0643","5.30.19.132","","609238","3834230","GW","true","" +"NM-15196","","","397550","3734780","GW","false","" +"NM-04799","","","670431","3556200","GW","false","" +"BW-0318","16S9E35.222","","408111","3639130","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26600","","","578016","4069750","GW","false","" +"NM-05975","","","552031","3571800","GW","false","" +"NM-27515","","","544439","3649000","GW","false","" +"NM-07482","","","214743","3606810","GW","false","" +"NM-25785","","","232311","3999780","GW","false","" +"DA-0105","24S3W6.444","","294496","3569580","GW","true","" +"AB-0088","S100","","354456","3893870","GW","true","" +"NM-15675","","","550933","3746070","GW","false","" +"NM-06043","","","248919","3576480","GW","false","" +"NM-16247","","","301674","3766030","GW","false","" +"BC-0371","374","","","","GW","false","" +"MI-0245","","","509565","3946644","GW","true","Topographic situation: Plateau" +"PP-023","PW-22","","435697","4004649","GW","true","" +"NM-25020","","","414624","3950440","GW","false","" +"NM-01797","","","117762","3527040","GW","false","" +"NM-22120","","","346424","3884260","GW","false","" +"SV-0054","12 La Quinta","","377943","3898868","GW","false","Unit 3 Lot 57" +"NM-04575","","","233121","3554260","GW","false","" +"NM-09700","","","409862","3632770","GW","false","" +"ED-0204","22S27E1.21","","580780","3588140","GW","true","" +"NM-16856","","","321647","3779930","GW","false","" +"NM-21673","","","344680","3879330","GW","false","" +"NM-27942","","","558842","3840310","GW","false","" +"NM-03370","","","400760","3882900","GW","false","" +"NM-11648","","","564679","3661710","GW","false","" +"NM-16986","","","328007","3781600","GW","false","" +"NM-01949","M-043/M-044","","244663","3546336","GW","false","From main Deming intersection at Pine and Gold, go south on NM-11 for 14.3 miles. Go east on Bond for 3.1 miles. Park on south side of road. Well located to the south of Bond near power poles; must hop fence." +"TO-0237","6N9E9.222","","409236","3847680","GW","true","" +"NM-08513","","","662550","3620050","GW","false","" +"NM-17112","","","655721","3783660","GW","false","" +"NM-01821","","","339830","3524480","GW","false","" +"NM-10557","","","504391","3644770","GW","false","" +"NM-23198","","","236940","3901000","GW","false","" +"NM-03138","","","577417","3812660","GW","false","" +"NM-13619","","","550259","3693030","GW","false","" +"NM-12491","","","666491","3676310","GW","false","" +"NM-17460","","","635958","3788530","GW","false","" +"NM-21085","","","531776","3861710","GW","false","" +"NM-10052","","","402551","3637670","GW","false","" +"SA-0201","","","264014","3711807","GW","true","Canyon subject to flooding in summer, be sure to call ahead and watch for storms even if they are not in canyon!! Approximately 3.5 miles from cattle guard north of Monticello to Coil Ranch HQ (Look for big cottonwood on side of the road and driveway to west) From HQ north 6.5 miles heading close to the Oโ€™Tooles look for โ€œoldโ€ post and rail corral on right (to east) and for old house with big cottonwoods to the west. Turn on two track to west at Keep Out sign and follow road across ditch. Look for elevated storage tank to the southwest and for old cabin with outside stairs. Well is to the south of the windmill, look for white pvc case with gallon can over top." +"NM-01783","","","117008","3525470","GW","false","" +"NM-22107","","","624761","3883730","GW","false","" +"EB-309","","","399896","3939990","GW","true","From the main entrance to El Rancho de las Golondrinas (334 Los Pinos Rd), proceed west on Los Pinos Rd ~0.1 mile, then turn right (north) on Paseo Real (Santa Fe County Rd 56). Drive north on Paseo Real ~1.2 miles, then turn right (east) just before a cattle guard, at a sign that reads ""Entering La Cieneguilla Land Grant"", through green gate. Follow dirt road ~0.9 mile to well on right. Note: This well requires passing thru locked gates so walking to well isnโ€™t a good option. Contact operator (Rey Romero in 2020), who will either meet you there or is willing to unlock gates in advance." +"SO-0102","3N5E9.424a","","369659","3818260","GW","true","" +"EB-093","","","412794","3955412","GW","true","231 Tano Rd; up drive across from Cam de los Montoyas, Box #B (2nd house)" +"NM-26153","","","186145","4030060","GW","false","" +"SB-0102","TWDB 4717607","","511713","3507806","GW","false","" +"NM-18858","","","465809","3812370","GW","false","" +"TO-0456","10N8E25.311","","404453","3880270","GW","true","" +"SO-0087","1S1E36.14","","334687","3783670","GW","true","" +"DA-0023","20S1E14.144","","329812","3605110","GW","true","" +"BW-0628","9S8E23.423","","400420","3708420","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EM-9006","","","194428","3882780","M","true","West of EM2-E on grass-covered slope" +"NM-08275","","","643356","3616340","GW","false","" +"QY-0193","11.30.14.312","","615080","3893370","GW","true","" +"NM-20123","","","601582","3838490","GW","false","" +"SA-0323","","","246700","3705198","GW","true","" +"NM-10601","","","648971","3646480","GW","false","" +"NM-26588","","","422820","4068880","GW","false","" +"TB-1061","","","427962","3703302","SP","true","Site visit by Fraser and Cathy Goff. NPW10-4" +"BC-0212","212","","372411","3883690","GW","true","" +"NM-15800","","","351257","3750020","GW","false","" +"WL-0307","","","315653","3810457","GW","false","Will be escorted to well." +"TB-0313","","","403321","3660045","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Railroad Ave and proceed to address south of Tulie Gate Road. Address is a double wide trailer on W side of road. Well is about 200 ft west of the house." +"NM-09486","","","219646","3634300","GW","false","" +"BC-0103","89","","385334","3875020","GW","true","" +"AR-0073","C005","","235546","4084255","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2800. Road will come to a ""T"" or make sharp turn to right. Address is on left after turn to right. Well is in middle of 10'x15' flower bed about halfway between SE corner of house and NW corner of metal storage shed." +"NM-10930","","","276530","3651740","GW","false","" +"NM-14654","","","209855","3717170","GW","false","" +"HS-075","TC-075","","281391","3679529","GW","true","Almost to town of Cuchillo off Hwy. 52; turn S on ? just after bridge over Chuchillo Creek. Well by volunteer fire dept., right by propane tank, north of bldg." +"MI-0216","","","578785","3944992","GW","true","Topographic situation: Plains" +"BC-0283","279","","382756","3889810","GW","true","" +"BC-0173","153","","379446","3885430","GW","true","" +"NM-05997","","","645699","3573460","GW","false","" +"NM-04742","","","669902","3554920","GW","false","" +"BC-0142","125","","358285","3895800","GW","true","" +"NM-13892","","","548154","3695420","GW","false","" +"NM-03787","","","349862","3518270","GW","false","" +"NM-12072","","","556840","3667850","GW","false","" +"NM-20749","","","554346","3852080","GW","false","" +"BW-0354","17S9E14.422a","","408036","3633450","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0655","18S8E17.4","","393075","3623580","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17598","","","536041","3789550","GW","false","" +"AH-026","HM-02","","436468","4041750","GW","true","" +"NM-01336","","","368466","3911590","GW","false","" +"EB-221","","","404187","3937969","GW","true","West on Valle Vista from Hwy14; south through open lot; along fenceline south of subdivision; western-most well. Identified on USGS log sheets as ""Valle Vista Well #2""" +"NM-15310","","","672957","3740110","GW","false","" +"NM-20960","","","344061","3858350","GW","false","" +"SB-0277","TWDB 4807420","","476893","3532764","GW","false","" +"NM-08063","","","554977","3611670","GW","false","" +"NM-22888","","","356313","3892890","GW","false","" +"SB-0175","TWDB 4743702","","526492","3461344","GW","false","" +"BC-0200","200","","384931","3872160","GW","true","" +"NM-00983","","","679706","3817270","GW","false","" +"NM-17644","","","542867","3790380","GW","false","" +"NM-25231","","","672644","3964690","GW","false","" +"NM-08479","","","230945","3621770","GW","false","" +"NM-26216","","","152467","4037830","GW","false","" +"NM-02364","","","576291","3580860","GW","false","" +"NM-12779","","","140408","3686610","GW","false","" +"NM-01212","","","640891","3883760","GW","false","" +"NM-19526","","","679366","3829820","GW","false","" +"NM-17122","","","628349","3783550","GW","false","" +"NM-01181","","","674136","3877030","GW","false","" +"BW-0860","1.10.7.23.243","","268270","3885040","GW","true","" +"SB-0194","TWDB 4758202","","518486","3441540","GW","false","" +"NM-22748","","","376349","3890740","GW","false","" +"NM-05592","","","259463","3569600","GW","false","" +"NM-26428","","","650193","4061930","GW","false","" +"NM-10999","","","282888","3652620","GW","false","" +"NM-21133","","","582241","3863870","GW","false","" +"NM-12440","","","549658","3674030","GW","false","" +"AR-0014","NMED 277","","226943","4076640","GW","true","From Road 3000, turn north on Road 3291 towards the river. House on left after sharp left turn in road. Well is on north side of property, behind home in small well house. Two wells in shed (one open, one equipped). Home is for sale. May have new owner in future." +"NM-14967","","","576149","3725940","GW","false","" +"NM-23827","","","412833","3916170","GW","false","" +"NM-16403","","","656928","3771170","GW","false","" +"SM-4075","","","441603","3628660","PS","true","Stream flow measurement by Patrick Walsh" +"NM-19113","","","436119","3817860","GW","false","" +"BW-0772","1.10.6.33.100","","273725","3882040","GW","true","" +"NM-25013","","","462328","3950450","GW","false","" +"NM-13397","","","568005","3690340","GW","false","" +"TV-219","","","442093","4022868","GW","true","From SR 68, go west on SR 96 to National Guard on left. Will be escorted to well. Well around right side of armory, right of chain link fence. Well in vault on pad in separate chain link fence area, west of armory truck parking lot." +"NM-04508","","","232620","3552150","GW","false","" +"NM-11117","","","663629","3653860","GW","false","" +"TV-246","LQ-28","","442801","4021984","GW","true","From Hwy 68, east of SR 96, make a right (south) on Camino de Golondrina to #60 (~0.5 mile on left side). Knock on front door first. Well is around house to right." +"DE-0172","","","673096","3618971","GW","false","" +"NM-08783","","","550282","3622820","GW","false","" +"NM-00551","","","650496","3657150","GW","false","" +"NM-16785","","","679928","3779410","GW","false","" +"NM-18688","","","654415","3811520","GW","false","" +"NM-09199","","","227237","3631030","GW","false","" +"NM-15688","","","549312","3746460","GW","false","" +"NM-00732","","","431318","3696220","GW","false","" +"AS-051","DM-18","","445131","4041030","GW","true","" +"TO-0202","6N6E4.21","","379832","3849670","GW","true","" +"NM-23321","","","319526","3901160","GW","false","" +"BW-0716","4.12.23.5.300","","533159","3684090","GW","true","" +"NM-19224","","","644181","3822760","GW","false","" +"NM-04842","","","674583","3557130","GW","false","" +"NM-15360","","","662037","3740470","GW","false","" +"NM-01763","","","169054","3510030","GW","false","" +"NM-00221","","","572580","3692270","GW","false","" +"NM-07064","","","224743","3597280","GW","false","" +"NM-02670","","","556556","3645270","GW","false","" +"NM-24732","","","404454","3944320","GW","false","" +"NM-03514","","","581652","3941280","GW","false","" +"EB-604","","","412377","3949416","GW","true","SE corner of West Alameda and Cam.Alire; monthly water levels" +"ED-0316","23S28E29.144","","583762","3571420","GW","true","" +"SM-3027","","","442327","3639372","L","true","" +"SA-0425","4S13W30.423","","201547","3758980","GW","true","" +"BC-0179","159","","379228","3885330","GW","true","" +"NM-26383","","","584130","4055660","GW","false","" +"NM-04323","","","137311","3549480","GW","false","" +"WL-0262","","","436812","3696640","GW","true","Heading north on Hwy 48 from Ruidoso, turn left on Sun Valley Rd at the Valero gas station ~0.8 miles north of Alto Lake Recreation Area. Make first left past gas station on Mesa Heights Dr and immediately veer right onto Alto Alps Rd. In ~0.25 mile stay right on Alto Alps Rd at fork towards Alto Mtn Village. Look for tennis courts on the right. Well 4 and Well 5 are across from tennis courts. Well 5 is ~50 ft north of shed at top of stairs." +"EB-526","","","419841","3952458","GW","true","" +"RA-060","","","423554","4005485","GW","true","" +"NM-10991","","","618893","3650970","GW","false","" +"NM-11137","","","403820","3653150","GW","false","" +"TC-427","","","449222","4084499","GW","true","West side of Hwy 522, a few miles south of Costilla. Well is in triangular well house just west of office." +"NM-09766","","","554232","3633430","GW","false","" +"NM-10082","","","655604","3639380","GW","false","" +"SA-0187","","","263857","3731454","GW","true","from 52, take FR 478. Head E 9.3 miles. Well casing in stream bed near old corral. Look for steel tank." +"NM-16143","","","673336","3761630","GW","false","" +"SO-0038","2N4E28.432","","359771","3803650","GW","true","" +"NM-06437","","","365999","3582530","GW","false","" +"NM-25936","","","479969","4005020","GW","false","" +"NM-15383","","","642606","3741330","GW","false","" +"NM-18276","","","614097","3803370","GW","false","" +"NM-05137","","","236657","3563080","GW","false","" +"NM-08838","","","553871","3623390","GW","false","" +"NM-02239","","","128116","3575460","GW","false","" +"NM-11515","","","654771","3660870","GW","false","" +"SD-0113","9N.7E.36.414","","395694","3869050","GW","true","" +"NM-24086","","","401926","3927160","GW","false","" +"NM-19739","","","677363","3833260","GW","false","" +"EB-598","","","403236","3949568","GW","true","Well inside gate at house. Right off Caja del Rio onto Cam de Rey. Left onto Cam de Rey Circle, house is #7. Call at gate. Newer well." +"NM-18666","","","654622","3810770","GW","false","" +"NM-21214","","","396201","3867350","GW","false","" +"NM-24546","","","402263","3939510","GW","false","" +"NM-18076","","","607966","3800460","GW","false","" +"NM-12756","","","543419","3679760","GW","false","" +"NM-22580","","","383358","3888680","GW","false","" +"SB-0269","TWDB 4807410","","479360","3531928","GW","false","" +"NM-02535","","","125351","3622990","GW","false","" +"BW-0905","4.24.27.8.430","","574389","3565810","GW","true","" +"NM-17813","","","650210","3795400","GW","false","" +"SB-0740","TWDB 4923904","","391998","3500512","GW","false","" +"EB-183","","","414393","3943568","GW","true","" +"NM-00797","","","435917","3708050","GW","false","" +"TV-295","K2-4","","446675","4030626","GW","true","" +"BW-0214","14S9E27.342","","399748","3658910","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22680","","","652282","3890530","GW","false","" +"NM-01647","","","305429","4037440","GW","false","" +"NM-21642","","","652403","3878820","GW","false","" +"NM-10006","","","198702","3640990","GW","false","" +"NM-01762","","","171502","3509860","GW","false","" +"NM-18363","","","173085","3809870","GW","false","" +"QU-037","LAMA-01","","443725","4055971","GW","true","From 522, take La Lama Road east and uphill 0.5 miles; on the left find a cable and 6x6 gate; park and walk north thru this gate ~120 m." +"NM-09286","","","665926","3629960","GW","false","" +"BW-0721","2.7.19.23.111","","509112","3853200","GW","true","" +"NM-26147","","","466330","4023920","GW","false","" +"NM-24113","","","404686","3928390","GW","false","" +"NM-23687","","","397360","3911310","GW","false","" +"NM-24747","","","461068","3944050","GW","false","" +"NM-13056","","","549601","3685330","GW","false","" +"NM-23216","","","353578","3898590","GW","false","" +"SD-0094","9N.6E.27.221","","383086","3871680","GW","true","" +"AB-0009","S011","","345721","3884620","GW","true","" +"NM-24327","","","343544","3935630","GW","false","" +"SO-0189","HWY-W11A","","328859","3755359","GW","true","" +"NM-20540","","","637179","3847800","GW","false","" +"TO-0561","9N9E31.222","","407159","3869750","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"SB-0481","TWDB 4829103","","455231","3496535","GW","false","" +"QY-0319","11.32.34.442","","634187","3888560","GW","true","" +"NM-18614","","","608696","3809030","GW","false","" +"NM-05024","","","678364","3559750","GW","false","" +"NM-15606","","","657472","3746130","GW","false","" +"NM-01091","","","148852","3856380","GW","false","" +"NM-18838","","","661236","3813390","GW","false","" +"NM-06426","","","673117","3582980","GW","false","" +"NM-08608","","","206310","3624570","GW","false","" +"NM-20289","","","604603","3841360","GW","false","" +"HS-107","TC-107","","290209","3668610","GW","true","" +"NM-11411","","","406544","3658490","GW","false","" +"SM-0051","","","436897","3645002","GW","true","Hyw 82, turn South on Young Canyon Road between mi 21 and 22, head southward on main road. Owner will likely meet you. Need 4WD. Turn L onto Big Dipper. Well is across from access road going to SM-050 and SM-038." +"NM-22717","","","237931","3893290","GW","false","" +"NM-22526","","","387728","3887940","GW","false","" +"NM-28396","N-2016-097","","556681","3626237","GW","true","" +"NM-19858","","","601148","3833930","GW","false","" +"QY-0971","9.32.1.433","","637037","3877250","GW","true","" +"NM-11966","","","290417","3668290","GW","false","" +"NM-12676","","","664724","3679700","GW","false","" +"NM-00974","","","651939","3814880","GW","false","" +"NM-26334","","","473052","4045550","GW","false","" +"SB-0411","TWDB 4813701","","455526","3516054","GW","false","" +"NM-08782","","","206746","3626960","GW","false","" +"NM-11589","","","615085","3661370","GW","false","" +"DE-0231","","","670688","3570370","GW","false","" +"EB-359","","","409346","3939820","GW","true","Off SE corner of Richards Ave and Avenida del Sur; WEST OF CDEX#1" +"SB-0264","TWDB 4807404","","479812","3534790","GW","false","" +"NM-12437","","","650376","3675060","GW","false","" +"NM-08346","","","293064","3618310","GW","false","" +"QU-048","","","446463","4062172","GW","true","Find address on right side (uphill) of West Embargo Rd. less than 0.1 miles after ""Love Thy Neighbor"" sign. Well is covered with stuff (pick-up truck cap) and would need thought to move." +"NM-04915","","","142095","3562890","GW","false","" +"NM-24903","","","408862","3947360","GW","false","" +"NM-23754","","","636934","3914420","GW","false","" +"UC-0032","","","656091","4067661","GW","true","E on 56 from Clayton, north on 406 12.1 miles to Seneca, left onto Campbell Road , go west or 3 miles, then north for three miles, then west fro three miles, then north with some curves fro 4.8 miles to junction with Atencio Road (road has become Corrumpa). Go west 0.9 miles to int. with Pacheco Road. Metal gate on south side, windmill is right there." +"NM-26044","","","405475","4015680","GW","false","" +"SB-0482","TWDB 4829104","","455205","3496505","GW","false","" +"NM-16883","","","237504","3782270","GW","false","" +"DE-0385","","","569622","3626329","GW","false","" +"NM-14659","","","544250","3713050","GW","false","" +"NM-24423","","","402087","3937200","GW","false","" +"TB-0250","","","429144","3722626","GW","true","From Hwy 380 directions same as TB-249 (take road to north past houses and corals. Bear west past dirt tank, look for solar panels). Well is northeast of TB-249." +"NM-08079","","","342951","3613400","GW","false","" +"SM-0004","","","433434","3614489","GW","true","Follow Sunspot road towards Timberon. A few miles from Timberon, canโ€™t miss Circle Cross ranch entrance on right, go thru large white gate (always seems to be open) go up paved drive, veer right towards green gate. Go through green gate and follow dirt 2 track, just before 2nd green gate, turn right on dirt road towards RV's. Go over creek and up little hill to find well." +"NM-25922","","","561925","4004010","GW","false","" +"NM-21934","","","366905","3881820","GW","false","" +"AB-0200","S253","","348039","3845690","GW","true","" +"TS-036a","","","436180","4042671","SP","true","Northernmost spring from long spring and seep zone downstream from Dunn Bridge on East side. Possibly same spring as TS-19." +"NM-22751","","","678513","3891690","GW","false","" +"NM-07358","M-167","","219963","3603880","GW","false","" +"UC-0173","","","651756","4019868","GW","false","" +"NM-11776","","","557279","3663750","GW","false","" +"NM-20503","","","585858","3846250","GW","false","" +"NM-17497","","","305329","3790060","GW","false","" +"NM-27354","","","586058","3597100","GW","false","" +"NM-11615","","","620587","3661750","GW","false","" +"QY-0358","11.37.17.321","","678155","3894580","GW","true","" +"NM-21461","","","343442","3874360","GW","false","" +"NM-21335","","","531950","3870090","GW","false","" +"NM-01515","","","501142","3963270","GW","false","" +"NM-09205","","","556944","3627510","GW","false","" +"NM-20215","","","608789","3840210","GW","false","" +"QY-0064","10.31.13.21","","627399","3884840","GW","true","" +"TO-0045","3N9E5.424","","406899","3819510","GW","true","" +"NM-26643","","","193290","4078020","GW","false","" +"NM-09777","","","554725","3633560","GW","false","" +"NM-26804","","","376096","3892640","GW","true","" +"QY-0300","11.32.14.444","","635652","3893220","GW","true","" +"NM-08660","","","572858","3621360","GW","false","" +"SD-0038","7N.7E.23.112","","392071","3854340","GW","true","" +"NM-25218","","","412533","3962660","GW","false","" +"NM-03640","","","448503","4030970","GW","false","" +"QY-0199","11.30.15.243","","614595","3893780","GW","true","" +"NM-19460","","","347791","3827570","GW","false","" +"NM-11033","","","614814","3651290","GW","false","" +"NM-23917","","","643659","3920130","GW","false","" +"NM-00395","","","654468","3631210","GW","false","" +"NM-20045","","","602592","3836870","GW","false","" +"SB-0870","Mayer 31","","440026","3568508","GW","false","" +"NM-15351","","","555598","3739320","GW","false","" +"AH-078","AH-42","","441408","4042207","GW","true","" +"NM-16357","","","641135","3769260","GW","false","" +"TC-388","","","452771","4092562","GW","true","" +"NM-24992","","","376326","3949470","GW","false","" +"NM-26676","","","195805","4081030","GW","false","" +"NM-13440","","","623000","3691590","GW","false","" +"NM-00041","","","479371","3542800","GW","false","" +"NM-04101","","","171331","3538300","GW","false","" +"NM-17376","","","544985","3786020","GW","false","" +"NM-26916","PW-047","","370762","3908156","GW","true","" +"NM-19387","","","670265","3827180","GW","false","" +"NM-17369","","","652692","3787250","GW","false","" +"NM-05151","M-089","","208283","3564040","GW","false","" +"NM-02120","","","241074","3563055","GW","false","6.8 miles S of Pine St & NM 11 intersection in Deming on NM 11, turn east on CR B21, well 0.3 miles east next to road with vertical blue pipe." +"NM-27034","","","327604","3780350","GW","true","" +"NM-10134","","","551163","3638650","GW","false","" +"NM-22276","","","604862","3885180","GW","false","" +"NM-09880","","","658847","3636500","GW","false","" +"NM-06969","","","665839","3593030","GW","false","" +"NM-04094","","","250170","3535710","GW","false","" +"ED-0380","24S26E33.122","","566358","3560530","SP","true","" +"TO-0425","9N10E23.342","","422437","3871770","GW","true","" +"NM-12263","","","651963","3672900","GW","false","" +"NM-11179","","","565743","3653920","GW","false","" +"AH-017","DAVI","","436686","4041657","GW","true","" +"NM-09233","","","637657","3629010","GW","false","" +"NM-20821","","","674619","3855710","GW","false","" +"NM-08793","","","555123","3622910","GW","false","" +"NM-03384","","","647569","3889280","GW","false","" +"NM-08901","","","551864","3624000","GW","false","" +"NM-02349","","","329902","3580120","GW","false","" +"NM-23186","","","319730","3898720","GW","false","" +"NM-07826","","","617574","3608970","GW","false","" +"MI-0304","","","474797","3914873","SP","true","Topographic situation: Valley" +"NM-03989","","","251962","3528260","GW","false","" +"WS-014","","","392725","3626932","GW","true","Garton pond" +"WL-0142","","","371534","3908088","GW","true","From I-25, take NM-165 east thru Placitas ~7.3 miles. NM-165 curves to the south. Turn right (west) onto Sombra del Monte. House numbers are difficult to spot. Drive 0.07 mile, past first house on right, to second driveway on right; turn right (north). Well is clearly visible next to driveway, near building with sign โ€œWomenโ€ that isnโ€™t an outhouse. " +"NM-16053","","","322832","3758400","GW","false","" +"SB-0335","TWDB 4807627","","484874","3531918","GW","false","" +"NM-02881","","","429623","3722230","GW","false","" +"NM-01789","","","230946","3522380","GW","false","" +"NM-15011","","","562178","3727900","GW","false","" +"TC-341","","","413719","4056224","GW","true","" +"SV-0032","22 Canon Escondi","","376948","3898974","GW","false","Unit 3 Lot 13" +"NM-14412","","","631559","3704700","GW","false","" +"AB-0153","S201","","307025","3818810","GW","true","" +"ED-0152","21S29E18.13","","591342","3594160","GW","true","" +"OG-0038","","","642077","3818709","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2.5 miles on CR 17. Turn left south on track. Drive 0.5 miles. Turn right west and drive less than 0.1 miles to well." +"NM-02244","M-117","","234581","3573526","GW","false","From northern I10 frontage road and Baker Ranch, continue east another 4.5 miles. Go north on Belgian road, over the railroad tracks for 0.1 miles. Go east on D010/Horseshoe for 0.8 miles. Go south at driveway, past house. Well located south of house near power pole." +"BW-0395","17S10E18.444","","411257","3631630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0291","11.31.8.113","","619926","3895870","GW","true","" +"NM-19948","","","665687","3836560","GW","false","" +"SO-0155","ESC-E05EX","","326034","3777110","GW","true","" +"NM-04338","","","345489","3544510","GW","false","" +"NM-15159","","","671227","3734720","GW","false","" +"NM-27140","COS-03","","459818","4089520","GW","false","" +"NM-23428","","","387725","3903970","GW","false","" +"NM-03753","","","168297","3511100","GW","false","" +"TO-0483","1S13E9.411","","446537","3788860","GW","true","" +"NM-12633","","","654790","3679260","GW","false","" +"NM-25421","","","629082","3973530","GW","false","" +"NM-28033","","","263100","3885130","GW","false","" +"NM-17169","","","623222","3783980","GW","false","" +"NM-21565","","","348565","3877450","GW","false","" +"DE-0174","","","672905","3618707","GW","false","" +"TO-0442","10N7E23.234","","394281","3882180","GW","true","" +"NM-24178","","","380496","3930440","GW","false","" +"NM-04215","","","246274","3541840","GW","false","" +"NM-20595","","","675302","3850510","GW","false","" +"NM-02643","","","406928","3638770","GW","false","" +"NM-19243","","","628373","3822680","GW","false","" +"NM-16596","","","680765","3775880","GW","false","" +"QY-0947","9.29.23.131","","605661","3873080","GW","true","" +"EM-9011","","","194355","3882710","M","true","At interpretation point 10 along Inscription Trail" +"NM-00839","","","448857","3718740","GW","false","" +"SA-2003","","","271989","3698160","M","true","In the village of Monticello (St rd 52, then 142 north of T or C). From plaza, head N toward end of town (200 yds). Darland house is last house on the R, before leaving the village. Precip collector at herb garden." +"TO-0243","6N10E8.112","","416207","3847590","GW","true","" +"NM-09837","","","544063","3634280","GW","false","" +"BC-0451","","","592349","3762606","GW","true","" +"NM-14161","","","549328","3698290","GW","false","" +"NM-25791","","","624061","3996970","GW","false","" +"DE-0361","","","569220","3626676","GW","false","" +"NM-20626","","","630816","3849920","GW","false","" +"NM-23971","","","397784","3921930","GW","false","" +"NM-20520","","","655404","3848300","GW","false","" +"NM-08463","","","655428","3619100","GW","false","" +"SB-0813","TWDB 5101502","","507112","3422308","GW","false","" +"MI-0307","","","481469","3910280","SP","true","Topographic situation: Edge of Cuesta" +"AB-1006","S256","","369007","3906280","SP","true","" +"NM-12899","","","581666","3682590","GW","false","" +"NM-18629","","","594833","3809060","GW","false","" +"NM-10202","","","327403","3641070","GW","false","" +"TO-0127","5N6E24.224","","385081","3835020","GW","true","" +"NM-21289","","","377348","3869100","GW","false","" +"BW-0713","4.9.23.20.140","","533339","3708970","GW","true","" +"TB-0149","","","412648","3697775","GW","true","Head SE from Hail WM, across arroyo to raod NE-N through gate by generator insdie wire enclosure." +"SD-0101","9N.6E.32.223","","379824","3870090","GW","true","" +"NM-08829","","","629001","3624360","GW","false","" +"OG-0096","","","651171","3808386","GW","true","North side of brick house, NE of water tank in shack ~20ft From int of SR 311 and US 60, west of Clovis, drive 2 miles west on US 60. Turn left south on CR S. Immediately after crossing railroad tracks turn right west onto Ernie Wright property. Well is W of grey water tank on building." +"SB-0008","TWDB 4702103","","515639","3539740","GW","false","" +"NM-20606","","","345232","3849710","GW","false","" +"NM-01271","","","618889","3898840","GW","false","" +"SB-0603","TWDB 4863803","","483983","3429676","GW","false","" +"NM-05783","","","606680","3569520","GW","false","" +"WL-0290","","","356195","3964095","GW","true","From Jemez Springs, drive ~15 miles north on Hwy 4 to mile marker 33, turn south (right) into Mesa Verde Rd. Drive on Mesa Verde ~0.5 miles, take left fork onto Via Los Pinos and drive ~0.3 mile to 315 Via Los Pinos on west side of the road. Well is next to driveway." +"NM-18702","","","679703","3812440","GW","false","" +"SD-0030","7N.7E.10.422","","391663","3856700","GW","true","" +"NM-05187","","","237859","3563940","GW","false","" +"NM-24142","","","477251","3928870","GW","false","" +"NM-28450","","","477263","4072640","GW","true","" +"AB-0079","S091","","343041","3942820","GW","true","" +"NM-11276","","","554811","3655550","GW","false","" +"NM-04517","","","347523","3550210","GW","false","" +"NM-12142","","","561105","3669470","GW","false","" +"NM-12493","","","549369","3674980","GW","false","" +"NM-04168","","","244728","3539880","GW","false","" +"NM-18065","","","640762","3800920","GW","false","" +"NM-24617","","","672271","3942490","GW","false","" +"NM-02257","M-121","","232839","3574100","GW","false","" +"NM-17191","","","574970","3783720","GW","false","" +"EB-323","","","397066","3937953","GW","true","SFC54A to Paseo del Canon, first house at end of road, east side of house, call first" +"AR-0046","NMED 77","","220537","4074320","GW","true","From Farmington, take Hwy 516 toward Aztec. Past Animas Mall but before Memory Gardens Cemetery, turn right onto Schmitt Rd to address on right. Well is in the S corner of the property under decorative well." +"NM-00687","","","486201","3690690","GW","false","" +"NM-03508","","","629995","3936780","GW","false","" +"TB-0135","","","408352","3706070","GW","true","3.5 Mi East on County Road 002 to Vega/Hefker gate. Go to bunkhouse with corrals on south. Well is to east of bunkhouse on 2 track. Bear north to well head by fallen windmill. Under metal box." +"NM-22121","","","346424","3884260","GW","false","" +"NM-01784","","","237091","3521790","GW","false","" +"NM-23022","","","287788","3896020","GW","false","" +"SD-0198","10N.6E.12.432","","386145","3885000","GW","true","" +"SB-0343","TWDB 4807702","","479358","3531004","GW","false","" +"NM-21540","","","381633","3876710","GW","false","" +"AS-025","ES-5","","449924","4042460","GW","true","" +"NM-10510","","","283664","3646590","GW","false","" +"NM-01814","","","120877","3528880","GW","false","" +"DE-0280","","","663180","3634569","GW","false","" +"NM-20940","","","581086","3856840","GW","false","" +"NM-20813","","","617927","3853940","GW","false","" +"NM-27012","","","322234","3780750","GW","true","" +"SV-0111","22 Via Entrada","","379581","3898270","GW","false","Unit 2 Lot 8" +"NM-12632","","","653191","3678830","GW","false","" +"NM-21358","","","340994","3872030","GW","false","" +"NM-25771","","","647331","3996440","GW","false","" +"NM-15998","","","656272","3756520","GW","false","" +"NM-02891","","","414812","3725550","GW","false","" +"NM-01883","","","231737","3538550","GW","false","" +"NM-17123","","","657816","3783970","GW","false","" +"NM-10690","","","471287","3645980","GW","false","" +"NM-10607","","","658215","3646720","GW","false","" +"HS-009","TC-009","","286013","3666971","GW","true","North of Conoco on series of dirt roads in fenced in area. Inside of pump house, NW corner of fenced lot" +"NM-26951","PW-198","","361896","3909444","GW","true","" +"NM-02569","","","548669","3622780","GW","false","" +"EB-657","","","414490","3927056","GW","true","" +"NM-13289","","","633986","3689790","GW","false","" +"NM-15165","","","371673","3733770","GW","false","" +"NM-01608","","","597159","4013340","GW","false","" +"BW-0229","14S9E36.112","","402606","3658460","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25414","","","409675","3972860","GW","false","" +"NM-17000","","","667868","3781800","GW","false","" +"NM-10081","","","553454","3637930","GW","false","" +"NM-09989","","","284916","3638420","GW","false","" +"QY-0068","10.31.2.41","","625745","3887210","GW","true","" +"NM-00002","","","307819","3518470","GW","false","" +"SB-0892","25.18.21.441","","490415","3552763","GW","true","" +"NM-11436","","","402814","3658980","GW","false","" +"NM-05375","","","250570","3566980","GW","false","" +"NM-24761","","","412330","3944610","GW","false","" +"NM-16971","","","666746","3781510","GW","false","" +"NM-25264","","","619260","3965500","GW","false","" +"TC-327","","","443689","4078910","GW","true","" +"UC-0154","","","621876","4022680","GW","false","" +"NM-07291","","","200282","3602700","GW","false","" +"NM-03546","","","675801","3966290","GW","false","" +"NM-12485","","","562210","3674930","GW","false","" +"SM-4070","","","431664","3629862","PS","true","Stream flow measurement by Patrick Walsh" +"NM-00556","","","309113","3658020","GW","false","" +"NM-26031","","","165679","4020600","GW","false","" +"TB-0130","","","404786","3705374","GW","true","Oscuro Hostel Rd., 244 Grand Blvd, Country Rd. A002 - straight and curve by sign for hostel. North of windmill, across fence." +"BW-0222","14S9E34.422","","400550","3657680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02518","","","305282","3615970","GW","false","" +"NM-03547","","","584527","3965660","GW","false","" +"BW-0921","4.11.26.2.442","","564658","3694590","SP","true","" +"ED-0279","23S27E1.342","","580574","3577280","GW","true","" +"NM-22582","","","380710","3889940","GW","false","" +"NM-16437","","","563666","3770790","GW","false","" +"NM-15464","","","671200","3743410","GW","false","" +"NM-00421","","","451350","3634860","GW","false","" +"NM-23608","","","208778","3913310","GW","false","" +"SB-0315","TWDB 4807605","","484953","3532010","GW","false","" +"EB-236","SF-26","","414837","3949256","GW","true","Under manhole cover on sidewalk at SE corner of Bataan Bldg (outside Estevan Lopez office)" +"AB-0230","S286","","345487","3931870","GW","true","" +"NM-13918","","","544150","3695440","GW","false","" +"QY-0892","8.31.26.222","","625989","3862040","GW","true","" +"NM-05106","","","266752","3561940","GW","false","" +"NM-18097","","","655325","3801430","GW","false","" +"NM-05167","","","649910","3561230","GW","false","" +"NM-04261","","","680329","3542070","GW","false","" +"NM-06321","","","365417","3580390","GW","false","" +"NM-26329","","","473450","4045400","GW","false","" +"DE-0019","","","634418","3560893","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Well is at an old windmill." +"NM-11420","","","678359","3660410","GW","false","" +"NM-15490","","","659721","3743860","GW","false","" +"NM-10358","","","558288","3642170","GW","false","" +"NM-07645","","","575475","3605830","GW","false","" +"NM-16899","","","129089","3786080","GW","false","" +"NM-01284","","","239665","3905110","GW","false","" +"NM-07298","","","594183","3598870","GW","false","" +"TO-0097","4N8E18.122","","394588","3827050","GW","true","" +"NM-09070","","","409802","3626150","GW","false","" +"NM-23306","","","375749","3899750","GW","false","" +"NM-12648","","","670420","3679710","GW","false","" +"NM-11462","","","403028","3659630","GW","false","" +"NM-20819","","","421352","3853640","GW","false","" +"SA-0123","","","237725","3765234","GW","true","From Datil, go south 7 miles, turn E on county road. Go 5.6 miles to Sanchez well, turn E and go 4 miles. Turn north and go 1/3 mile to well. Well is in pinon/juniper forest." +"NM-11528","","","669125","3661780","GW","false","" +"QY-0756","7.28.35.333","","595971","3849270","GW","true","" +"NM-21682","","","377432","3879040","GW","false","" +"NM-06556","","","676498","3585500","GW","false","" +"NM-24508","","","428403","3938550","GW","false","" +"SO-0035","2N4E16.420a","","360018","3807140","GW","true","" +"NM-16263","","","206815","3769330","GW","false","" +"UC-0162","","","648980","4087476","GW","false","" +"NM-09615","","","663687","3633220","GW","false","" +"TO-0170","5N8E17.323","","396828","3835630","GW","true","" +"WL-0250","","","303777","3727478","GW","true","From I-25 take exit 115. Head north on Hwy 1 for 2.3 miles. Take road west under interstate, drive ~2 miles, take road to left after passing the Gillard's place with all the trees. Well is beneath decorative windmill, northeast of stone house." +"NM-12386","","","553832","3673160","GW","false","" +"NM-13696","","","138928","3700500","GW","false","" +"NM-12601","","","560823","3677330","GW","false","" +"TC-352","","","446209","4069525","GW","true","" +"BW-0057","25S4E18.244","","352241","3556500","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0505","7S8W21.000","","252600","3730820","GW","true","" +"NM-24804","","","670961","3946440","GW","false","" +"NM-10407","","","650960","3643830","GW","false","" +"NM-09604","","","411023","3631740","GW","false","" +"NM-05025","","","678326","3560430","GW","false","" +"NM-04255","","","281380","3542450","GW","false","" +"LC-033","","","401185","3943424","O","true","Santa Fe river, downstream from wastewater treatment plant. East side of bridge over river, just west of WWTP." +"BW-0876","2.15.27.17","","581867","3931980","GW","true","" +"BW-0352","17S9E13.244","","409681","3633850","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09104","","","526382","3626140","GW","false","" +"WL-0328","","","288056","3763982","GW","false","From West on HWY 60 out of Magdelena, turn left on HWY 107, drive for about 7.5 miles. Turn left on Rt. 234, just past MM 34. Drive down 234 for about 1.5 miles and turn right/west onto driveway toward house. Well is located about 1.25 miles south of house down a two-track road. Owner does not want to drive on it, will give a ride on ATV if needed. " +"SO-0275","NRCS 2 P2A","","328580","3763955","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-03878","","","348961","3521420","GW","false","" +"NM-19513","","","651647","3829350","GW","false","" +"NM-06781","","","677101","3589800","GW","false","" +"NM-23288","13 Camino Real","","380502","3899387","GW","true","13 Camino Real; Unit 1 Lot 10" +"NM-24838","","","224264","3949650","GW","false","" +"NM-25201","","","476681","3961370","GW","false","" +"NM-25300","","","640440","3967350","GW","false","" +"NM-19095","","","652686","3818860","GW","false","" +"NM-24669","","","604744","3942950","GW","false","" +"QU-512","","","446549","4054667","SP","true","North on 522 from Taos; turn right (east towards mtns.) on Cty Rd B-014 just north of mile marker 15 and just before Lama township sign. Cross cattle guard, follow rd for ~1 mi. Road curves left around Sangre de Cristo Youth Ranch. Continue 1/2 mile then turn right on Upper Lama Rd. Right at next fork on Lama Foundation Rd. Turn left at next fork (~ 2 mi) to stay on Lama Foundation Rd. Uphill trail to spring/stone bldg." +"NM-17827","","","611728","3795570","GW","false","" +"NM-15279","","","628471","3738480","GW","false","" +"NM-11153","","","283856","3655310","GW","false","" +"NM-12184","","","558045","3670040","GW","false","" +"NM-12137","","","560303","3669350","GW","false","" +"NM-00543","","","678523","3656350","GW","false","" +"NM-16459","","","540649","3771060","GW","false","" +"SM-4035","","","449477","3635139","PS","true","Stream flow measurement by Patrick Walsh" +"NM-27721","","","564224","3786750","GW","false","" +"QY-0275","11.31.20.442","","621224","3891580","GW","true","" +"EB-060","","","409088","3956910","GW","true","Lot #99, 135 Estrada Maya, well pit in center of drive turnaround w/ landscape rocks" +"NM-21919","","","351792","3881940","GW","false","" +"NM-11978","","","560424","3666450","GW","false","" +"NM-12981","","","276285","3686390","GW","false","" +"NM-00841","NM3580628","","312963","3723567","GW","false","From I-25 south, take exit 124 to San Marcial. Take left on NM-178, then right on NM-1 south, then Left onto Ft. Craig Road. Well is located in small fenced area to the right of the main building." +"NM-15309","","","420918","3738220","GW","false","" +"SV-0040","17 La Aguapa","","378764","3901628","GW","false","Unit 3 Lot 107" +"SM-0144","","","470081","3636255","GW","true","Access through Mule Canyon, taking left turn off to head up to ridge top. Miller Flats area." +"NM-23037","","","288070","3896170","GW","false","" +"NM-12849","","","642030","3682610","GW","false","" +"NM-25561","","","403450","3981340","GW","false","" +"MG-005","WF-5","","295542","3773587","GW","true","" +"NM-07795","","","228760","3611410","GW","false","" +"NM-24676","","","660086","3943950","GW","false","" +"NM-02354","","","577112","3579510","GW","false","" +"NM-05739","","","257034","3571010","GW","false","" +"NM-20896","","","403668","3855970","GW","false","" +"NM-23370","","","230996","3904560","GW","false","" +"NM-28052","","","352210","3891130","GW","false","" +"EB-303","","","400274","3937732","GW","true","From Los Pinos Road, take gated entrance (code 9247#) to Simon residence 1/2 mile north of El Rancho de Los Golondrinas. House well is in horse pasture ~0.05 mi past barn on right/east side in vault across from new house for Kyle & Allie being built." +"RA-031","","","359112","4085139","GW","true","Next to house." +"NM-24522","","","409078","3939000","GW","false","" +"NM-02302","","","335399","3575630","GW","false","" +"NM-04899","M-075","","266359","3559504","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 mile. Go south on B047/Marana Rd for 1.5 miles. Go east on Aquila Rd(dirt road) for 0.5 miles. Well located on north side of Aquila Rd near power pole." +"NM-09934","","","558976","3635710","GW","false","" +"BW-0601","4S12E29.3","","434082","3754530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-28240","","","194351","4077930","GW","false","" +"NM-20077","","","658645","3838840","GW","false","" +"WL-0020","NM3500402","","130742","3780590","GW","false","Drive Hwy 60 W into Arizona. Drive 4.7 miles, turn S onto County Road 4225. Turn left at Ranch Gate. Approximately 5 miles from Hwy 60, turn left at fork in road. Drive 4 miles to Escudilla Bonita Acres, fire stateion on S side of road. Follow guide or Coyote Creek KML to well." +"NM-09836","","","621139","3635110","GW","false","" +"NM-14323","","","667174","3702760","GW","false","" +"NM-24569","","","379523","3940460","GW","false","" +"NM-04651","","","604522","3552960","GW","false","" +"NM-15559","","","679037","3745220","GW","false","" +"NM-23443","","","647311","3905120","GW","false","" +"NM-22918","","","665872","3893540","GW","false","" +"NM-23042","","","379286","3894620","GW","false","" +"NM-02649","","","284031","3641960","GW","false","" +"ED-0051","19S27E14.242","","570981","3614440","GW","true","" +"NM-25439","","","214865","3977590","GW","false","" +"NM-12942","","","676391","3684560","GW","false","" +"NM-00139","","","561618","3561170","GW","false","" +"NM-03235","","","396368","3836380","GW","false","" +"NM-11459","","","283987","3661280","GW","false","" +"SA-0152","","","255736","3709844","GW","true","Well is located near the Monticello Box. From Socorro, access from north (datil) same distance as from south (winston). Where rt 52 crosses Alamosa Creek, go south 4 miles, past the the Cupit ranch HQ (directly on the road to the west (R)) to a 2-track heading east (L) up Havil Canyon. Go through gate/cattle guard, and follow driveway up Havil Canyon past the Phelps ranch HQ for 2.6 miles to Teague House (white house with corrals and outbuildings). Well is located between house and corrals, inside a small well house. Door difficult to take off, must remove 4 hand-made wing nuts. (combo 3006)" +"QY-0641","5.30.18.331","","609006","3835020","GW","true","" +"NM-25810","","","407629","3997590","GW","false","" +"SM-0105","","","455095","3622721","GW","true","" +"NM-20212","","","606272","3840060","GW","false","" +"NM-06554","","","359439","3584870","GW","false","" +"NM-20170","","","383824","3839530","GW","false","" +"BW-0722","2.8.22.19.234","","532421","3862540","GW","true","" +"NM-05655","","","555587","3567390","GW","false","" +"TS-015","","","438688","4059439","SP","true","East side of river. Large stream cascades into river upstream from shelter." +"NM-22286","","","345794","3885970","GW","false","" +"NM-14635","","","548507","3712460","GW","false","" +"NM-14257","","","298471","3701530","GW","false","" +"ED-0178","22S26E1.144f","","570674","3587610","GW","true","" +"NM-24222","","","477130","3930870","GW","false","" +"NM-22410","","","667905","3887630","GW","false","" +"WL-0007","NM3512714","","433303","3783247","GW","true","East on Hwy 60 from I-25. At Willard go south on Rt 42 to Corona. Right on Rt 54 at Corona south ~9.5 miles. Turn left (west) on Gallinas Station Rd (aka A019), then right (north) on A022 and left on A023. Well is ~2 miles up the road on the left in fenced enclosure." +"NM-13936","","","544330","3695530","GW","false","" +"NM-06473","","","673181","3583780","GW","false","" +"NM-09642","","","408947","3632190","GW","false","" +"NM-22567","","","186506","3893190","GW","false","" +"BW-0242","14S10E20.223","","407107","3661640","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"JM-044","","","308701","3634398","GW","true","" +"NM-03509","","","647361","3937360","GW","false","" +"NM-07135","","","279171","3597500","GW","false","" +"NM-24819","","","399990","3945540","GW","false","" +"NM-08932","","","587590","3624590","GW","false","" +"NM-23103","","","674260","3896910","GW","false","" +"NM-27218","","","564618","3542500","GW","false","" +"NM-12280","","","558450","3671680","GW","false","" +"NM-18167","","","270331","3803730","GW","false","" +"NM-01920","","","309602","3540800","GW","false","" +"NM-10239","","","554844","3640370","GW","false","" +"DA-0010","19S1E1.222","","332586","3618390","GW","true","" +"NM-07174","","","673735","3597100","GW","false","" +"NM-00326","","","412981","3617740","GW","false","" +"NM-16192","","","674690","3763380","GW","false","" +"HS-113","TC-113","","289521","3668507","GW","true","" +"NM-19794","","","188749","3837480","GW","false","" +"NM-01068","","","596600","3844870","GW","false","" +"NM-25355","","","646677","3971120","GW","false","" +"NM-13723","","","137234","3700900","GW","false","" +"TB-0026","","","400895","3684738","GW","true","UTM location for approximately 3 wells." +"NM-20636","","","594289","3849720","GW","false","" +"NM-16977","","","568084","3780120","GW","false","" +"NM-10410","","","408866","3643190","GW","false","" +"NM-02470","","","555595","3603570","GW","false","" +"NM-23592","PW-314","","362005","3909380","GW","false","" +"NM-27944","","","566131","3842110","GW","false","" +"NM-13008","","","673649","3685920","GW","false","" +"NM-25980","","","416977","4007790","GW","false","" +"NM-23449","","","381521","3904940","GW","false","" +"SB-0281","TWDB 4807424","","477972","3533563","GW","false","" +"NM-09066","","","625977","3626760","GW","false","" +"SA-0309","","","247668","3729472","GW","true","" +"NM-21690","","","597563","3878780","GW","false","" +"NM-08665","","","557292","3621290","GW","false","" +"EB-501","","","416748","3942377","ES","true","Arroyo Hondo at US Hwy 285" +"NM-20138","","","601933","3838900","GW","false","" +"NM-12544","","","680079","3678250","GW","false","" +"NM-13568","","","611353","3692870","GW","false","" +"NM-15210","","","676718","3737100","GW","false","" +"NM-05767","","","239531","3571880","GW","false","" +"NM-07863","","","675589","3610410","GW","false","" +"NM-07887","","","631898","3610050","GW","false","" +"AB-0171","S221","","370375","3936220","GW","true","" +"BC-0171","151","","379130","3885570","GW","true","" +"NM-03162","","","642962","3819140","GW","false","" +"NM-02460","","","320751","3602250","GW","false","" +"NM-06494","","","227643","3586620","GW","false","" +"NM-15931","","","652092","3754510","GW","false","" +"UC-0152","","","618688","4022635","GW","false","" +"NM-05411","","","240896","3567870","GW","false","" +"QY-0535","17.35.32.424","","659781","3947450","GW","true","" +"NM-09129","","","681469","3628140","GW","false","" +"SM-0115","","","472114","3653924","GW","true","" +"NM-16844","","","678717","3779760","GW","false","" +"SB-0584","TWDB 4861501","","459326","3437900","GW","false","" +"NM-07504","","","594270","3603460","GW","false","" +"BW-0371","17S9E25.343","","408819","3629780","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DA-0122","25S2E28.221","","336074","3554040","GW","true","" +"NM-23000","","","349527","3894560","GW","false","" +"QY-0125","10.35.9.424","","661524","3886120","GW","true","" +"NM-04839","","","230941","3559160","GW","false","" +"NM-16036","","","660226","3758130","GW","false","" +"NM-03492","","","657343","3925380","GW","false","" +"TO-0071","4N7E8.132","","386032","3828150","GW","true","" +"MG-001","WF-1","","294240","3773750","GW","true","In vault" +"NM-18467","","","624584","3806700","GW","false","" +"NM-04937","","","262870","3559600","GW","false","" +"NM-26977","","","326724","3777320","GW","true","" +"EB-261","","","394928","3966358","GW","true","End of Buckman Rd; south side of arroyo; by river" +"NM-07402","","","284444","3603430","GW","false","" +"MI-0031","","","540692","3906436","GW","true","Topographic situation: Valley" +"NM-05356","","","673047","3565730","GW","false","" +"NM-00610","","","644874","3667990","GW","false","" +"NM-02502","","","198684","3615510","GW","false","" +"AR-0129","B007","","242670","4091040","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn right onto Rd 2390 then left onto Rd 2380. Continue straight on Rd 2380 to address on left." +"NM-22049","","","388857","3882970","GW","false","" +"NM-16763","","","661527","3778120","GW","false","" +"QY-0637","5.30.1.212","","617930","3839560","GW","true","" +"NM-25384","","","404928","3972080","GW","false","" +"NM-12618","","","556991","3677520","GW","false","" +"NM-07031","","","361210","3593840","GW","false","" +"DE-0291","","","673575","3584316","GW","false","" +"SA-0125","","","225470","3748438","GW","true","From Datil, go south on Hwy 12 for 7 miles. Turn E/S on county road for 11 miles (go past 3 wells) to Sheep well. Head W to middle well (2.2 miles). Go thru gate (combo is 2020), then 1.5 miles to Eloysia well. Then head S 1.8 miles to Antelope well." +"NM-00101","","","323425","3555130","GW","false","" +"NM-05262","","","220057","3565900","GW","false","" +"SB-0223","TWDB 4807107","","477456","3537967","GW","false","" +"NM-01441","","","663953","3941050","GW","false","" +"TO-0406","9N8E24.3","","404565","3872000","GW","true","" +"NM-18541","","","270738","3809890","GW","false","" +"NM-20137","","","655418","3839980","GW","false","" +"NM-03865","","","233353","3522840","GW","false","" +"NM-00617","","","673756","3669780","GW","false","" +"NM-24503","","","648183","3939430","GW","false","" +"SA-0239","","","235412","3780812","GW","true","From west on Hwy 60 at Datil, go left (southwest) on Hwy 12 for 1.5 miles. Driveway is on the right side of road, big metal Texas star on gate. Well is near black holding tank between residence and guest house, south of driveway." +"NM-05829","M-118","","212482","3573900","GW","false","" +"NM-13420","","","552624","3690490","GW","false","" +"QU-134","MMW-42B","","451742","4060538","GW","true","" +"NM-14805","","","200336","3724120","GW","false","" +"NM-13646","","","534702","3693330","GW","false","" +"TO-0173","5N8E18.233","","395965","3836250","GW","true","" +"NM-13982","","","544252","3695740","GW","false","" +"NM-09889","","","282471","3637280","GW","false","" +"NM-14342","","","677659","3702880","GW","false","" +"BW-0309","16S9E8.222","","403279","3645630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10574","","","651729","3646220","GW","false","" +"NM-02396","","","325804","3586660","GW","false","" +"NM-06751","","","360565","3588770","GW","false","" +"NM-03698","","","167913","3480890","GW","false","" +"QY-0789","7.31.21.114","","621670","3853950","GW","true","" +"NM-00684","","","472212","3690500","GW","false","" +"SR-0029","","","344321","3991510","SP","true","San Pedro Ridge region. Santa Fe NF road 103 ~10 miles to second entrance of FR 93, climb 1.5 miles to FR 91, follow 1 mile north then east" +"DE-0330","","","674229","3589552","GW","false","" +"BC-0424","427","","","","GW","false","" +"NM-17437","","","664903","3788720","GW","false","" +"NM-22374","","","671686","3887210","GW","false","" +"NM-18739","","","597263","3811030","GW","false","" +"SA-0020","SA-20_R00","","236494","3781171","GW","true","WM, wooden tower about 150 yards east of Hwy 12. Large earthen tank E of well about 15 ft. Whitney ranch house, barns, and metal corrals about 200 yards S of well. Another elect. submersible pump well about 150 ft SW of WM. Go thru gate about 200 yards N of Mile marker 73 on NM 12." +"SA-0202","","","264012","3711810","GW","true","Canyon subject to flooding in summer, be sure to call ahead and watch for storms even if they are not in canyon!! Approximately 3.5 miles from cattle guard north of Monticello to Coil Ranch HQ (Look for big cottonwood on side of the road and driveway to west) From HQ north 6.5 miles heading close to the Oโ€™Tooles look for โ€œoldโ€ post and rail corral on right (to east) and for old house with big cottonwoods to the west. Turn on two track to west at Keep Out sign and follow road across ditch. Look for elevated storage tank to the southwest and for old cabin with outside stairs. Well is to the north of the windmill, look for steel case with log stuck in it." +"SA-0102","","","258393","3714584","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south past MM 45 to the Cupit Ranch HQ on the west side of the road. Look for road to the east (left) just north of the HQ and go thru the gate. Go 0.4 miles and bear to the north (left) across the first arroyo, go 0.6 miles and thru the gate and then take the trail up the second arroyo (Mike Springs Canyon) At 0.4 miles just past the arroyo on the right stay east at the fork up the canyon to the well. Well is to the north (left) under the old windmill, spring box is to the east from well." +"SV-0135","47 Camino Real","","379667","3898965","GW","false","Unit 2 Lot 66" +"ED-0069","20S26E32.22","","556553","3599930","GW","true","" +"NM-23573","","","357681","3909070","GW","false","" +"NM-03835","","","350225","3519710","GW","false","" +"NM-25105","","","407637","3955350","GW","false","" +"NM-12134","","","554734","3669250","GW","false","" +"QY-0924","8.34.26.133","","653742","3861990","GW","true","" +"BC-0242","242","","366941","3881570","GW","true","" +"BW-0477","11S4E27.241","","352147","3689630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0595","TWDB 4862806","","469959","3431091","GW","false","" +"NM-17741","","","597758","3792950","GW","false","" +"NM-14394","","","416649","3702680","GW","false","" +"ED-0379","24S22E25.343","","532220","3560730","SP","true","" +"QU-077","MW-B","","444577","4061756","GW","true","See Chevron map of monitoring wells. Below Dam 1." +"QY-0770","7.30.13.433a","","617594","3854420","GW","true","" +"NM-11023","","","560210","3650680","GW","false","" +"NM-23493","","","647326","3907280","GW","false","" +"AB-0184","S235","","356132","3891070","GW","true","" +"NM-01206","","","150273","3888100","GW","false","" +"NM-07242","","","619846","3597790","GW","false","" +"NM-12295","","","556248","3671720","GW","false","" +"QY-0308","11.32.21.311","","631319","3892150","GW","true","" +"SM-3010","","","464467","3628143","R","true","Site visited and sampled by Jeremiah Morse" +"NM-12816","","","552159","3680940","GW","false","" +"NM-11525","","","630984","3661140","GW","false","" +"NM-13292","","","622638","3689580","GW","false","" +"NM-17722","","","567792","3792160","GW","false","" +"NM-05231","","","243068","3564670","GW","false","" +"AH-082","DM-17","","443986","4041751","GW","true","" +"SA-0073","SA-15_R02","","245759","3774541","GW","true","4 miles west of county line on Hwy. 60, go south 3.4 miles. Turn east (left) and go 0.8 miles to gate. Casing in small enclosure near pump house. Call to get combo to open gate or have owner open gate. (Gate combo was 1925 on 3/14/12)." +"NM-17272","","","662086","3785830","GW","false","" +"NM-20228","","","672195","3841270","GW","false","" +"NM-03779","","","162180","3521630","GW","false","" +"DE-0256","","","663148","3634565","GW","false","" +"SB-0058","TWDB 4717207","","506158","3510018","GW","false","" +"NM-26107","","","332705","4022320","GW","false","" +"NM-16994","","","641282","3781710","GW","false","" +"SB-0746","TWDB 4924404","","395129","3505252","GW","false","" +"CX-0168","S13","","558664","4096850","SP","true","West slope Barilla Mesa" +"NM-19374","","","604757","3825500","GW","false","" +"NM-06569","","","662853","3585520","GW","false","" +"DA-0181","29S1E8.2","","324036","3520150","GW","true","" +"NM-06279","","","676797","3580400","GW","false","" +"NM-04535","","","134677","3555930","GW","false","" +"BC-0423","426","","376932","3890202","GW","false","" +"NM-22756","","","611379","3890680","GW","false","" +"NM-07913","","","605310","3610130","GW","false","" +"NM-26629","","","196952","4076370","GW","false","" +"SB-0930","","","484709","3594370","GW","false","" +"NM-25268","","","411430","3965290","GW","false","" +"BW-0387","17S10E18.424","","411261","3632040","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03583","","","654789","3984850","GW","false","" +"NM-24713","","","623847","3944330","GW","false","" +"NM-18504","","","465430","3806580","GW","false","" +"NM-12099","","","417857","3668490","GW","false","" +"NM-20307","","","420382","3841420","GW","false","" +"NM-01368","","","527971","3921400","GW","false","" +"NM-26480","","","223623","4066730","GW","false","" +"NM-20791","","","233669","3856580","GW","false","" +"SB-0699","TWDB 4915611","","391317","3520843","GW","false","" +"BW-0718","4.15.25.35.213","","555009","3648920","GW","true","" +"NM-18840","","","154336","3818420","GW","false","" +"NM-03728","","","133953","3497080","GW","false","" +"NM-01480","","","652880","3950520","GW","false","" +"NM-26902","PW-039","","370828","3907822","GW","true","" +"ED-0110","21S26E24.424c","","571543","3591910","GW","true","" +"DE-0193","","","611769","3599876","GW","false","" +"NM-20220","","","585331","3840020","GW","false","" +"NM-07125","","","320309","3596530","GW","false","" +"AH-089","HM-11","","437195","4041445","GW","true","" +"NM-24166","","","637724","3930390","GW","false","" +"DE-0188","","","612059","3600155","GW","false","" +"NM-08054","","","184902","3616310","GW","false","" +"NM-09096","","","652041","3627680","GW","false","" +"SV-0122","71 Via Entrada","","377481","3901340","GW","true","Well is on a lot with no home. A navigation app will get you to approximately 71 Via Entrada, but there is no mailbox or other address marker. + +From the entrance to San Pedro Creek Estates on HWY 14, drive north and west about 3.65 miles on Via Entrada; Via Entrada winds through SPCE. After about 3.65 miles, a side road (name unknown) is seen on the right (northeast) side of Via Entrada; turn onto this side road. Drive on side road about 0.16 mile, well is visible on the left (northwest) side of the road." +"TO-0118","4N14E27.442","","458292","3822120","GW","true","" +"NM-15082","","","672643","3731880","GW","false","" +"NM-05797","","","335970","3570540","GW","false","" +"NM-22776","","","343738","3891580","GW","false","" +"TB-2005","","","434108","3716900","M","true","7567 Hwy 380. Just east of turn off for Nogal, house and WM on north side. Station is along fence E of house. Tipping bucket at 5 ft, wind at 6 ft." +"NM-25874","","","291794","4003720","GW","false","" +"NM-22021","","","372772","3882900","GW","false","" +"TB-0223","","","424270","3714997","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road several miles to cattle pens, across cattle guard and continue south, bear east 0.4 miles past steel tank on left and then back to the northeast on 2 track before arroyo and walk to windmill." +"TB-1039","","","416436","3659153","SP","true","From water tanks - Hwy 70 east Mile marker 230 to dirt road (primitive). Stay on main track parallel to hwy. At 1 mile stay SE across cattle guard. Cross arroyos up hill to fork at 1.1 miles. Bear left to NE at 2.3 mi stay N on main road. Fork at 1.5 miles, stay straight to N, then to right (east) on 2 track. Across arroyo and up thru blue gate. Road heads west to spring at 1.7 mi. ???" +"TO-0525","7N8E12.2","","404277","3857120","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-22352","","","356516","3886500","GW","false","" +"NM-04444","","","548383","3546910","GW","false","" +"SM-0014","","","439835","3645624","GW","true","Head east on US 82 down James Canyon. Just past Rodeo Grounds is Trimble Rd/Sullivan Canyon road on the right (south). Turn here and take the immediate left and go over hill on Sullivan Canyon rd. Look for #63 on left, house is a large log cabin style. Well is adjacent to driveway." +"BW-0803","2.28.26.8.200","","572195","4059570","GW","true","" +"TC-411","","","441956","4060725","SP","true","" +"NM-00335","","","661181","3621180","GW","false","" +"NM-22266","","","677709","3886190","GW","false","" +"NM-19997","","","607694","3835910","GW","false","" +"NM-07148","","","357301","3596230","GW","false","" +"NM-21124","","","542682","3863350","GW","false","" +"NM-11577","","","559112","3660650","GW","false","" +"NM-19709","","","641866","3832370","GW","false","" +"NM-21987","","","373932","3882490","GW","false","" +"NM-18677","","","613020","3810440","GW","false","" +"NM-06787","","","220369","3592250","GW","false","" +"NM-27214","","","244242","3541460","GW","false","" +"SA-0178","","","255255","3735470","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south for approximately 29 miles. South of MM 59 look for sign for FR 549, go east for 1.1 miles and then south on FR 73 for 0.8 miles to the bottom of the canyon. Turn west (right) and go 0.4 miles and look for the pumpjack. Wellhead is on the south side of the pump jack in the concrete box below ground surface and is covered with a square rock just below the end of the pipe in the box." +"NM-04944","","","262348","3559700","GW","false","" +"SM-2002","","","496200","3564800","M","true","" +"NM-06608","","","673032","3586400","GW","false","" +"NM-06436","","","261961","3584430","GW","false","" +"NM-15825","","","677730","3751820","GW","false","" +"NM-07017","","","673293","3593980","GW","false","" +"SB-0931","","","411041","3619240","GW","false","" +"NM-11856","","","564348","3664780","GW","false","" +"NM-14241","","","680717","3700970","GW","false","" +"NM-25088","","","171695","3960020","GW","false","" +"QY-0020","10.28.9.423","","593971","3885140","GW","true","" +"TV-281","","","444905","4027904","GW","true","" +"NM-24643","","","418719","3941900","GW","false","" +"NM-18570","","","611540","3808230","GW","false","" +"TV-273","","","446201","4026744","GW","true","" +"NM-09609","","","676906","3632960","GW","false","" +"NM-19300","","","673140","3824800","GW","false","" +"SM-1085","","","450375","3634275","SP","true","" +"SD-0083","9N.6E.19.432","","377995","3872280","GW","true","" +"NM-15655","","","664468","3747480","GW","false","" +"NM-23814","","","273028","3918060","GW","false","" +"NM-25492","","","472210","3976320","GW","false","" +"TS-020a","","","438044","4077518","SP","true","East bank, just upstream from Sunshine Trail." +"MI-0320","","","458220","3965767","SP","true","Topographic situation: Valley" +"SM-4068","","","478480","3652708","PS","true","Stream flow measurement by Patrick Walsh" +"NM-17379","","","590277","3786380","GW","false","" +"SV-0055","13 La Quinta","","377987","3898568","GW","false","Unit 3 Lot 60" +"EB-490","","","402980","3955400","GW","true","" +"NM-13498","","","556729","3691380","GW","false","" +"TB-0233","","","429206","3717403","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and take the road going north across the cattle guard in front of the HQ. Follow road to west 2 miles and at crossroads turn north and go 0.2 miles and turn west before cattle guard to windmill southwest of shed." +"NM-14581","","","640376","3710960","GW","false","" +"NM-21406","","","346139","3872620","GW","false","" +"NM-27229","","","537152","3549170","GW","false","" +"NM-22598","","","649744","3889410","GW","false","" +"NM-17579","","","584234","3789650","GW","false","" +"NM-05104","","","267643","3561920","GW","false","" +"NM-15230","","","653665","3736670","GW","false","" +"NM-15783","","","623237","3749410","GW","false","" +"NM-23807","","","644102","3916100","GW","false","" +"CP-0005","","","625530","3808791","GW","true","To city hall: From Hwy 60 at Melrose, NM, go north on 5th Street, turn left (west) to city hall in middle of block. To Well #4, go west on Hwy 60 in Melrose, turn left (south) on Brownhorn Road"" (aka, CR AJ) at west side of town (sign is faint or non-existent). Cross railroad tracks road becomes dirt, follow to well in fenced area on left (east) just before locked gate." +"BW-0136","11S9.5E22.244","","408145","3690510","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0270","TWDB 4807411","","478628","3533592","GW","false","" +"NM-17763","","","525544","3793120","GW","false","" +"NM-24788","","","413767","3945030","GW","false","" +"NM-02646","","","164152","3644820","GW","false","" +"NM-08996","","","558312","3624930","GW","false","" +"EB-420","","","417483","3928035","GW","true","40 Silver Saddle" +"NM-24186","","","405134","3930200","GW","false","" +"NM-22167","","","661092","3884800","GW","false","" +"NM-04953","","","136131","3563500","GW","false","" +"NM-09457","","","409971","3630490","GW","false","" +"NM-23701","","","260787","3914550","GW","false","" +"TC-376","","","442425","4076257","GW","true","" +"JM-014","JSAI Exp Well10","","316071","3647688","GW","true","" +"NM-20086","","","596143","3837730","GW","false","" +"NM-00717","","","444298","3695400","GW","false","" +"NM-26470","","","459288","4062250","GW","false","" +"GT-009","Gillis","","285536","3640067","GW","true","Get on County Road B012, pass under I-25, turn right onto Mt. View. Well is in northern part of a field." +"NM-15481","","","133815","3748940","GW","false","" +"NM-09064","","","398456","3626100","GW","false","" +"NM-19855","","","609525","3833990","GW","false","" +"NM-22725","","","346831","3890880","GW","false","" +"NM-03552","","","655803","3970020","GW","false","" +"PC-019","PW-033","","369710","3910055","GW","true","From the Placitas Post office, drive east on HWY 165 about 0.35 miles and turn north (left) on Camino de las Huertas. Stay on Camino de las Huertas (it curves quite a bit) for 1.5 miles, the Johnson home is on the left, it has a 6-car garage. The well is located east of the house. Follow the footpath from the driveway. Have Mr. Johnson show you the location of the well the first time." +"QY-0618","5.29.5.341","","601165","3838200","GW","true","" +"NM-27846","","","655996","3809970","GW","false","" +"NM-15977","","","640134","3755560","GW","false","" +"SM-1103","","","444758","3641358","SP","true","Associated with SM-0261 and SM-0260" +"NM-12526","","","668047","3677690","GW","false","" +"NM-06862","","","220486","3593630","GW","false","" +"NM-04104","","","184498","3537950","GW","false","" +"NM-17368","","","653792","3787260","GW","false","" +"AH-088","HM-07","","438112","4042058","GW","true","" +"SB-0379","TWDB 4807905","","484475","3528470","GW","false","" +"SD-0204","10N.6E.16.111","","381161","3884110","GW","true","" +"QY-0467","14.37.30.121","","676552","3920960","GW","true","" +"GT-014","SWNM14-4","","164450","3648810","GW","true","South side of Highway 180 on the east side of Riverside" +"SM-3014","","","443878","3635453","R","true","Site visited and sampled by Jeremiah Morse" +"NM-25419","","","408950","3973020","GW","false","" +"NM-01910","","","169446","3542650","GW","false","" +"NM-14088","","","545821","3697200","GW","false","" +"SM-3043","","","503232","3722045","R","true","Gypsum sample of float from near Capitan Mountains area. Sampled by Lewis Land." +"NM-11120","","","654257","3653960","GW","false","" +"NM-26317","","","214150","4048840","GW","false","" +"NM-10880","","","558820","3648890","GW","false","" +"EB-455","","","411283","3948102","GW","true","" +"NM-16360","","","669183","3769900","GW","false","" +"TO-0151","5N8E10.333","","399795","3836780","GW","true","" +"NM-21814","","","353036","3881200","GW","false","" +"NM-06761","","","575738","3588310","GW","false","" +"NM-17705","","","667184","3792820","GW","false","" +"HS-104","TC-104","","289667","3667562","GW","true","In block 39 in Hot Springs, NM" +"NM-08266","","","561522","3614940","GW","false","" +"NM-07717","","","557142","3606660","GW","false","" +"TV-130","","","445250","4020120","GW","true","Ponce de Leon neighborhood **NOT USING SITE IN INVENTORY.**" +"NM-24382","","","465311","3935560","GW","false","" +"NM-10575","","","650977","3646110","GW","false","" +"NM-06766","","","567041","3588270","GW","false","" +"NM-12084","","","558263","3668230","GW","false","" +"NM-10356","","","438545","3641760","GW","false","" +"NM-15089","","","528624","3730090","GW","false","" +"NM-07022","","","675483","3594170","GW","false","" +"NM-25985","","","388465","4008450","GW","false","" +"NM-16553","","","144514","3779930","GW","false","" +"SB-0780","TWDB 4932301","","404011","3497560","GW","false","" +"NM-03625","","","531995","4013520","GW","false","" +"QY-0818","7.32.21.421a","","632444","3853390","GW","true","" +"NM-07643","","","554097","3605660","GW","false","" +"NM-25493","","","275090","3979370","GW","false","" +"NM-12490","","","547583","3674910","GW","false","" +"NM-22017","","","675934","3883690","GW","false","" +"QY-0245","11.30.30.341","","609170","3889780","GW","true","" +"NM-09148","","","531037","3626810","GW","false","" +"BW-0871","2.10.18.15.400","","499510","3883470","GW","true","" +"NM-11384","","","547226","3657690","GW","false","" +"NM-09647","","","665892","3633540","GW","false","" +"NM-23574","","","356318","3909100","GW","false","" +"NM-13878","","","545571","3695350","GW","false","" +"NM-10675","","","549126","3645970","GW","false","" +"NM-11989","","","672122","3668370","GW","false","" +"NM-04367","","","539240","3544740","GW","false","" +"NM-10289","","","680082","3642810","GW","false","" +"NM-24021","","","475626","3924030","GW","false","" +"NM-22304","","","345797","3886130","GW","false","" +"NM-04456","","","242945","3550460","GW","false","" +"NM-27325","","","557110","3589440","GW","false","" +"WL-0117","","","575008","3572840","GW","true","Well is located in a well house on top of a berm." +"NM-12147","","","624250","3670600","GW","false","" +"TV-116","","","443982","4024766","GW","true","Heading north on Rt 68 before Taos, make left on Cuchilla Road. Go 0.92 miles to Camino de Corazon and make a left, veering right onto dirt road in SE corner of subdivision tract. Well is flush with ground and in the shrubs so is hard to find. Use GPS." +"NM-19488","","","218976","3831080","GW","false","" +"NM-21223","","","355493","3868340","GW","false","" +"BW-0227","14S9E35.422","","402189","3657660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-23733","","","639692","3914000","GW","false","" +"NM-22637","","","381823","3889410","GW","false","" +"NM-08238","","","233806","3617630","GW","false","" +"NM-16902","","","679159","3780780","GW","false","" +"NM-10877","","","559676","3648860","GW","false","" +"TS-017","","","438678","4058447","SP","true","East side of river. Small spring near path." +"NM-07583","","","216464","3608550","GW","false","" +"NM-06589","","","662506","3585980","GW","false","" +"DE-0225","","","639751","3628627","GW","false","" +"ED-0376","22S25E12.12","","561039","3586300","SP","true","" +"EB-175","","","403009","3948399","GW","true","Just south of Pro Shop between parking lot and wire fence, next to wood slat fence" +"NM-15379","","","677734","3741960","GW","false","" +"NM-04938","","","223058","3560600","GW","false","" +"NM-01892","","","348105","3536430","GW","false","" +"NM-20442","","","548365","3844250","GW","false","" +"NM-28148","","","394879","3966280","GW","false","" +"NM-22764","","","235947","3893870","GW","false","" +"NM-16110","","","197402","3763330","GW","false","" +"NM-24644","","","405838","3942030","GW","false","" +"QU-091","MW-17","","445761","4061993","GW","true","See Chevron map of monitoring wells. On mesa above and west of Questa." +"NM-08330","","","673671","3617190","GW","false","" +"NM-17435","","","645460","3788090","GW","false","" +"QY-0758","7.28.9.342","","593070","3855750","GW","true","" +"NM-08650","","","551775","3620980","GW","false","" +"NM-14127","","","547833","3697760","GW","false","" +"NM-11779","","","619478","3664690","GW","false","" +"NM-25456","","","390565","3974530","GW","false","" +"NM-02713","","","167811","3656790","GW","false","" +"SB-0709","TWDB 4915803","","389248","3516708","GW","false","" +"DE-0215","","","639666","3628393","GW","false","" +"BW-0374","17S9E26.242","","408004","3630600","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10179","","","312999","3640930","GW","false","" +"NM-02209","M-105","","233412","3569300","GW","false","" +"NM-07649","","","554801","3605720","GW","false","" +"NM-05365","","","241572","3567053","GW","false","" +"NM-05574","","","642828","3567440","GW","false","" +"NM-24470","","","435118","3937820","GW","false","" +"NM-11379","","","658074","3658700","GW","false","" +"NM-08005","","","209884","3614810","GW","false","" +"TB-1003","","","422143","3652868","SP","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end trailer. Go in fencing and head northward. Follow GPS to location." +"NM-24996","","","412602","3949230","GW","false","" +"NM-15375","","","656288","3741460","GW","false","" +"NM-10256","","","554998","3640580","GW","false","" +"NM-28352","148809","","146325","3698974","SP","false","Gila National Forest" +"NM-18837","","","579207","3812270","GW","false","" +"NM-22408","","","377709","3886870","GW","false","" +"NM-11383","","","558818","3657760","GW","false","" +"NM-20826","","","605550","3854130","GW","false","" +"NM-14065","","","547449","3696900","GW","false","" +"SM-0252","","","419115","3653283","GW","true","Take Laborcita Canyon Rd northward, turn left on Ocotillo Trail, and veer right onto Sierra Roja. Go straight at top of hill to house at 20 Sierra Roja. Well is downhill a little from carport." +"HS-093","TC-093","","289712","3667851","GW","true","In block 105 in Hot Springs, NM" +"QY-0027","10.29.30.422","","600487","3880400","GW","true","" +"SO-0249","SMC-W04A","","314616","3728626","GW","true","" +"NM-00757","","","441802","3699250","GW","false","" +"EB-582","","","406278","3938988","GW","true","SF Skies RV Park. Past Allsups, on S Hwy 14. Well on Brown Castle Ranch Rd, well at end of road." +"TO-0392","9N7E2.342","","393860","3876890","GW","true","" +"QY-0911","8.33.13.122","","646072","3865530","GW","true","" +"NM-08903","","","646426","3625440","GW","false","" +"NM-12752","","","558660","3679810","GW","false","" +"TO-0341","8N7E22.32","","390810","3862890","GW","true","" +"ED-0141","21S27E31.111","","571820","3589700","GW","true","" +"NM-26736","","","448910","4086520","GW","false","" +"NM-19863","","","657101","3835300","GW","false","" +"NM-14753","","","340714","3718800","GW","false","" +"MI-0315","","","471739","3933041","SP","true","Topographic situation: Valley" +"NM-14047","","","142704","3703160","GW","false","" +"NM-12275","","","557880","3671580","GW","false","" +"NM-26231","","","444733","4033300","GW","false","" +"QY-0008","10.27.3.144","","585064","3886930","GW","true","" +"NM-02062","","","352019","3556370","GW","false","" +"NM-21970","","","341863","3882740","GW","false","" +"QY-0426","13.31.1.124","","626862","3916940","GW","true","" +"NM-04421","","","552608","3546400","GW","false","" +"SM-1044","","","439688","3627800","SP","true","" +"SM-0151","","","465000","3634677","GW","true","Miller Flats area. Site visit by Jeremiah Morse in May 2007" +"NM-27875","","","582800","3812860","GW","false","" +"NM-00425","","","658151","3636410","GW","false","" +"NM-08759","","","668211","3624180","GW","false","" +"JM-023","","","294734","3644741","GW","true","" +"NM-01164","","","545788","3868650","GW","false","" +"NM-11894","","","556415","3665260","GW","false","" +"NM-02779","","","552230","3672470","GW","false","" +"NM-07195","","","669568","3598020","GW","false","" +"NM-25298","","","258586","3969350","GW","false","" +"NM-22247","","","380425","3885110","GW","false","" +"ED-0351","25S28E5.331","","583340","3557910","GW","true","" +"NM-22419","","","377816","3886930","GW","false","" +"NM-25408","","","407016","3972700","GW","false","" +"NM-21224","","","403234","3867800","GW","false","" +"EB-697","","","399636","3965339","GW","true","" +"NM-17059","","","656758","3782880","GW","false","" +"TB-0224","","","424243","3715224","GW","true"," From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road several miles to cattle pens, across cattle guard and continue south, bear east 0.4 miles past steel tank on left and then back to the northeast on 2 track past windmill and across arroyo. Look for old windmill base and open case on north side of road on hilltop. Road circles back down hill to main road." +"NM-00364","","","668450","3627360","GW","false","" +"ED-0151","21S29E3.12","","596622","3598510","GW","true","" +"NM-21891","","","386733","3881240","GW","false","" +"NM-23937","","","643374","3920620","GW","false","" +"NM-20746","","","435466","3852080","GW","false","" +"TV-212","","","444670","4012658","GW","true","" +"NM-21677","","","340514","3879500","GW","false","" +"NM-23918","","","642852","3920120","GW","false","" +"NM-11361","","","621997","3658060","GW","false","" +"WL-0124","","","167626","3940060","GW","true","Take I-40 west from Albuquerque almost to Gallup. Exit on NM-118 (Exit 26), turn left (west) on the frontage road (old Hwy 66) for 1 mile, turn right (north) on Superman Canyon Road (turn at mosque), drive under railroad tracks, across Rio Puerco, and under I-40. Turn right (east) on Hasler Valley Rd 1.2 miles then left on Bishop Rd. Drive north 0.3 miles to well on left in fenced yard. Gate code 2025." +"NM-21345","","","379988","3871160","GW","false","" +"QY-0666","6.27.32.343","","581798","3839500","GW","true","" +"NM-08455","","","669780","3619180","GW","false","" +"NM-01780","","","117023","3525160","GW","false","" +"NM-13130","","","137022","3693160","GW","false","" +"QY-0460","14.36.1.234","","675511","3926440","GW","true","" +"SA-0198","","","267420","3702814","GW","true","Canyon subject to flooding in summer, be sure to call ahead and watch for storms even if they are not in canyon!! Approximately 3.5 miles from cattle guard north of Monticello to Coil Ranch HQ (Look for big cottonwood on side of the road and driveway to west) From HQ north 0.5 miles to cultivated fields. Look for โ€œoldโ€ cattle guard in fenceline on west side of road about midway along cultivated fields. Take gate to north of cattle guard and follow road (parallel to main road) towards trailerhouse 0.1 miles and look for high vent casing on west side of road at the end of the cultivated field. Watch for black bear in fields!" +"TB-0192","","","417985","3706677","GW","true","Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill, stay south, left at fork past Nagel Windmill to northeast (watch the mudhole!) along fence down canyon into arroyo. Stay east through two gates past windmill on left. From McClain Windmill east, stay left (North) at fork, through arroyo to silver tank. Go through gate to north and bear southeast and continue south, right fork to west at house and south through gate to next windmill. Exit to HQ by bearing to right (West) at fork to gate going south at water tank. Go SW around field to HQ and stay south thru gate to road west to Highway 380." +"NM-19683","","","677374","3832710","GW","false","" +"NM-01261","","","655881","3897410","GW","false","" +"NM-22444","","","391363","3887100","GW","false","" +"NM-02429","","","322123","3594240","GW","false","" +"NM-20720","","","414982","3851700","GW","false","" +"NM-15378","","","191605","3744700","GW","false","" +"QY-0030","10.29.6.144","","599599","3887220","GW","true","" +"NM-14490","","","167790","3711620","GW","false","" +"SD-0244","11N.5E.24.421","","376836","3891850","GW","true","" +"SB-0303","TWDB 4807521","","482700","3534847","GW","false","" +"NM-27840","","","657709","3809270","GW","false","" +"JM-007","","","331513","3653290","GW","true","" +"AS-006","AS-103","","448823","4042270","GW","true","" +"NM-02546","M-188","","233447","3620986","GW","false","From the junction of US 180 and NM 61, go NE on NM 61 for 16.2 miles. Park at gate across street from white house. Well is located 900 feet due NE from gate, near irrigation ditch." +"BW-0261","15S9E12.422","","403802","3654400","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13543","","","623734","3692830","GW","false","" +"NM-25877","","","555869","4001630","GW","false","" +"NM-12192","","","553849","3670050","GW","false","" +"TB-0009","","","406873","3661088","GW","true","From Hwy north of Tularosa, head east on Bookout Road to eastern end at #162 Bookout NE. Cross-cattle guard. Go to double wide gate, head south and turn left (east) toward corrugated steel shed. Pass shed (left turn) and head south toward pasture. Well is approx 1/2 mi south of steel shed, on east side of 40 acre pasture." +"EB-161","","","399636","3965339","GW","true","Just east of powerline on north side of arroyo in NE 1/4 of Sec. 5" +"NM-03701","","","164456","3483620","GW","false","" +"NM-03986","","","143130","3531630","GW","false","" +"NM-00409","","","639192","3633030","GW","false","" +"NM-03727","","","125645","3497190","GW","false","" +"NM-07243","","","619846","3597790","GW","false","" +"NM-14526","","","627018","3708460","GW","false","" +"NM-01781","","","238871","3521410","GW","false","" +"NM-00435","","","668782","3636690","GW","false","" +"NM-05223","","","221531","3565150","GW","false","" +"NM-01729","","","259878","4085850","GW","false","" +"NM-22970","","","348747","3894330","GW","false","" +"NM-19315","","","589864","3823860","GW","false","" +"NM-24810","","","414449","3945300","GW","false","" +"SM-2004","","","449340","3630350","M","true","183 Agua Chiquita Rd in Weed area." +"NM-01726","","","201252","4084990","GW","false","" +"NM-02401","","","147883","3592530","GW","false","" +"NM-02557","","","153398","3625840","GW","false","" +"NM-26464","","","459252","4062190","GW","false","" +"NM-19520","","","675877","3829690","GW","false","" +"SM-0067","","","446153","3650491","GW","true","617 Sixteen Springs Canyon." +"NM-08530","","","411068","3619330","GW","false","" +"NM-26389","","","584118","4056860","GW","false","" +"NM-23678","","","373120","3911250","GW","false","" +"NM-09657","","","190239","3636750","GW","false","" +"NM-26889","PW-202","","368583","3910731","GW","true","" +"NM-13932","","","270815","3698110","GW","false","" +"NM-25608","","","213135","3987650","GW","false","" +"NM-07869","","","664509","3610320","GW","false","" +"NM-24947","","","414628","3948190","GW","false","" +"NM-05030","","","674720","3559840","GW","false","" +"NM-25270","","","640812","3966030","GW","false","" +"NM-16024","","","652120","3757600","GW","false","" +"WL-0191","","","613513","3724416","GW","true","Well on BLM land. Contact Mike McGee for escort to well." +"AB-0107","S122","","352864","3870490","GW","true","" +"NM-05169","","","135303","3566770","GW","false","" +"NM-05349","","","584955","3563960","GW","false","" +"NM-04526","","","632057","3550200","GW","false","" +"NM-26582","","","191708","4073590","GW","false","" +"NM-12647","","","278297","3680400","GW","false","" +"NM-05554","","","229651","3569770","GW","false","" +"MI-0247","","","524564","3949837","GW","true","Topographic situation: Valley arroyo" +"NM-04692","","","335968","3554150","GW","false","" +"BW-0703","1.12.10.23.233","","239811","3905160","GW","true","" +"NM-26763","","","634547","4092120","GW","false","" +"NM-19382","","","401361","3825460","GW","false","" +"EB-057","","","415550","3939360","GW","true","" +"SB-0314","TWDB 4807604","","486058","3533518","GW","false","" +"NM-22051","","","650853","3883610","GW","false","" +"SM-0178","","","457082","3636581","GW","true","Site visit by Jeremiah Morse in June 2007. North on 130 for 1.5mi turn left on Miller Flats rd 3mi first drive on left" +"BC-0149","178","","375768","3891570","GW","true","" +"TO-0440","10N7E16.412","","390964","3883760","GW","true","" +"NM-07082","","","359841","3594910","GW","false","" +"AB-0069","S079","","348099","3896530","GW","true","" +"NM-13592","","","552457","3692680","GW","false","" +"MI-0147","","","523035","3932609","GW","true","Topographic situation: Plateau" +"NM-20736","","","405708","3852590","GW","false","" +"NM-25140","","","293900","3958990","GW","false","" +"TB-0011","","","405893","3661499","GW","true","Just south of 4way stop at Bookout -Bookout intersection. Turn east on little dirt road, about 1/4 mi south of intersection. Two dirt roads parallel with fence in between them, take the northern one! Well is by field with side roll sprinklers." +"SB-0357","TWDB 4807718","","477700","3529345","GW","false","" +"SB-0167","TWDB 4743203","","529596","3466833","GW","false","" +"NM-22139","","","346800","3884410","GW","false","" +"NM-23113","","","350562","3896560","GW","false","" +"TC-299","TV-512","","447515","4019855","PS","true","200m below Forest Service boundary" +"NM-24593","","","404542","3940780","GW","false","" +"NM-23212","","","277258","3900130","GW","false","" +"NM-15113","","","565142","3731310","GW","false","" +"NM-24999","","","214618","3953570","GW","false","" +"TO-0316","7N9E30.412","","405721","3851680","GW","true","" +"NM-21751","","","644723","3880420","GW","false","" +"NM-04260","","","346369","3541510","GW","false","" +"NM-12804","","","671466","3682070","GW","false","" +"JM-030","","","306131","3662558","GW","true","" +"CX-0141","57","","536136","4033040","GW","true","5 3/4 miles north of Springer" +"NM-11899","","","626041","3666340","GW","false","" +"NM-01995","","","131659","3555300","GW","false","" +"NM-22195","","","391635","3884450","GW","false","" +"NM-18544","","","647798","3808640","GW","false","" +"NM-00618","","","653693","3669720","GW","false","" +"QY-0617","5.29.5.321","","601077","3838770","GW","true","" +"BW-0446","18S10E31.221","","411191","3619140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18335","","","659784","3804820","GW","false","" +"NM-18948","","","184609","3819260","GW","false","" +"NM-20008","","","540469","3835680","GW","false","" +"NM-23183","","","432017","3897120","GW","false","" +"NM-06995","","","675309","3593680","GW","false","" +"NM-04912","","","137794","3563010","GW","false","" +"NM-17675","","","655938","3792140","GW","false","" +"NM-09341","","","668906","3630690","GW","false","" +"NM-14625","","","626804","3712960","GW","false","" +"NM-24976","","","413829","3948820","GW","false","" +"NM-11065","","","403857","3651580","GW","false","" +"NM-09546","","","640089","3631780","GW","false","" +"UC-0237","","","672270","3964682","GW","false","" +"NM-13033","","","532534","3684950","GW","false","" +"UC-0155","","","616417","4057475","GW","false","" +"BC-0066","185","","376703","3885300","GW","true","" +"NM-14601","","","547926","3710210","GW","false","" +"EB-253","","","415436","3958849","GW","true","1/2 mi North of Tesuque Village; right @ ""Cerro Azul"" ; stay left up drive; behind house by wall; under bucket" +"NM-05074","","","680186","3560490","GW","false","" +"SO-0130","BRN-E03B","","327655","3764171","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"QY-0038","10.29.9.341","","602706","3884990","GW","true","" +"QY-0680","6.28.23.311","","596120","3843440","GW","true","" +"NM-00755","","","443166","3698980","GW","false","" +"AB-0124","S151","","358444","3894860","GW","true","" +"BW-0329","16S10E18.231","","410347","3642120","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TO-0161","5N8E15.313","","400039","3835540","GW","true","" +"NM-08429","","","664033","3618630","GW","false","" +"NM-19481","","","673471","3828900","GW","false","" +"NM-11453","","","403103","3659350","GW","false","" +"NM-25129","","","640582","3956820","GW","false","" +"NM-21154","","","644349","3865600","GW","false","" +"NM-28287","149061","","128434","3699574","SP","false","Gila National Forest" +"NM-26058","","","291415","4019210","GW","false","" +"QY-0948","9.29.33.112","","602588","3869960","GW","true","" +"NM-01704","","","305758","4070610","GW","false","" +"NM-22650","","","413812","3889230","GW","false","" +"MG-014","WF-D","","294781","3770325","GW","true","1.5 miles after fire dept. on right; 8' wooden fence across from Frio Road." +"NM-00927","","","572387","3799960","GW","false","" +"NM-24093","","","650109","3928220","GW","false","" +"MI-0207","","","520581","3944981","GW","true","Topographic situation: Plateau" +"NM-09021","M-195","","204449","3629500","GW","false","" +"NM-15575","","","664091","3745470","GW","false","" +"NM-10552","","","647366","3646120","GW","false","" +"SB-0593","TWDB 4862804","","471310","3430657","GW","false","" +"NM-07905","","","230737","3613120","GW","false","" +"NM-08926","","","406301","3624610","GW","false","" +"NM-24296","","","631018","3933990","GW","false","" +"NM-20487","","","622480","3845930","GW","false","" +"SM-1025","","","424456","3650067","SP","true","Along La Luz Creek. In a large meadow with many City of Alamogordo wells?" +"NM-28402","S-2014-014","","636896","3598376","GW","true","" +"NM-26198","","","448696","4029950","GW","false","" +"BW-0678","2.8.13.22.130","","450093","3861580","GW","true","" +"QY-0712","6.30.20.133","","610505","3843790","GW","true","" +"EB-372","","","403838","3947240","GW","true","Behind shed at baseball fields" +"NM-24616","","","674611","3942530","GW","false","" +"PC-097","PW-174","","369553","3909527","GW","true","" +"NM-09463","","","557370","3630340","GW","false","" +"NM-17624","","","407129","3790370","GW","false","" +"NM-02552","","","187099","3623920","GW","false","" +"NM-05307","","","338590","3564050","GW","false","" +"NM-01414","","","476144","3934120","GW","false","" +"NM-22632","","","635742","3889590","GW","false","" +"NM-17398","","","668727","3788140","GW","false","" +"NM-01044","","","349696","3838760","GW","false","" +"BW-0790","1.17.8.25.144","","261098","3951330","GW","true","" +"NM-15867","","","648117","3752450","GW","false","" +"TV-270","","","446556","4020963","GW","true","From 518 South, take right @ E. Camino Abajo de la Loma, switchbacking NW to first left on Valle del Rito Road. Crossing the river valley, take left @ T onto Torrez Road. Follow around footslope, thru green clay. Passing another intersection on left (Torres Rd), find a center road thru a series of forks into driveways. Circlular driveway just past the ""No Trespassing"" sign." +"SA-0426","4S13W30.424","","201456","3758990","GW","true","" +"NM-13697","","","138514","3700510","GW","false","" +"NM-10083","","","621484","3638680","GW","false","" +"NM-10005","","","217139","3640440","GW","false","" +"NM-09595","","","225630","3635050","GW","false","" +"NM-05557","","","223969","3569950","GW","false","" +"NM-02426","M-153","","227814","3595840","GW","false","" +"NM-07761","","","554609","3607380","GW","false","" +"NM-01223","","","592369","3885960","GW","false","" +"NM-04814","","","243954","3558210","GW","false","" +"NM-14135","","","544939","3697900","GW","false","" +"UC-0135","","","578576","4086437","GW","true","From Folsom, go N on NM 456 0.1 miles. Turn left (west) on NM 72, drive west up on Johnson Mesa. At 14.1 miles turn right (north) on dirt road, go thru two gates, road curves west, well is to SW of road in open area 1.5 miles from pavement. Has solar panels, in fenced area. Probably not accessible in winter when snowy or muddy." +"WL-0227","","","250769","3571388","GW","true","From McSherry Farm HQ, take dirt road in SW corner, past trees, turn left, cross Mimbres River to open ag fields. At end of first field, turn right, go 1,000 ft, take dirt road to well." +"NM-08659","","","290132","3623150","GW","false","" +"NM-05514","","","673963","3567250","GW","false","" +"SA-0306","","","224144","3744920","GW","true","" +"NM-27093","","","296385","3768690","GW","true","" +"NM-26430","","","223746","4065340","GW","false","" +"NM-22789","","","397103","3890980","GW","false","" +"NM-02999","","","668872","3791140","GW","false","" +"NM-24689","","","415360","3943190","GW","false","" +"NM-08994","","","201783","3629210","GW","false","" +"TB-0175","","","416904","3721652","GW","true","12199 Hwy 54. Well is south of trailer thru gate in covered box with screwed on lid." +"SM-0033","","","422691","3645226","GW","true","Take US 82 to Karr Canyon Road in Mtn. Park. Head south on Karr Canyon ~ ยพ mile past the school. Driveway has white metal gate and house is in valley on right, #74. House has a green roof and pond. The orchard is too far, as is Peaceful Valley Road. Might also be easiest to access from guest house drive. Well is ~ 100 yds from main house, slightly uphill at SE corner of decrepit orchard. DATA LOGGER INSTALLED." +"ED-0057","19S29E13.41","","591387","3613950","GW","true","" +"NM-04172","","","158857","3542630","GW","false","" +"NM-10177","","","410080","3639540","GW","false","" +"NM-00112","S-2016-095","","587502","3555430","GW","false","" +"NM-06461","NH-011","","275042","3584645","GW","false","2.2 miles SW from well 2390 on same single track road" +"AH-035","HM-41","","437893","4041827","GW","true","" +"SB-0564","TWDB 4854701","","468038","3444673","GW","false","" +"NM-20965","","","669618","3859500","GW","false","" +"NM-03493","","","545801","3924500","GW","false","" +"NM-21990","","","403260","3882190","GW","false","" +"NM-15245","","","379431","3736590","GW","false","" +"NM-08723","","","202090","3626420","GW","false","" +"NM-10148","","","455105","3638840","GW","false","" +"SB-0320","TWDB 4807611","","484381","3535213","GW","false","" +"NM-15983","","","669907","3756730","GW","false","" +"NM-19751","","","591083","3832070","GW","false","" +"BW-0940","","","408700","3638945","GW","true","Shari Kelley visited wells USBR WW01 and USBR WW02 at this facility, but not this well." +"NM-23052","","","288307","3896560","GW","false","" +"QY-0978","9.32.23.441","","635784","3872590","GW","true","" +"NM-26506","","","223489","4067390","GW","false","" +"WL-0095","CN-2014-009","","621018","3614520","GW","true","" +"EB-298","","","398587","3961476","GW","true","10 Miles down Buckman Rd. NE side of Rd" +"NM-14816","","","262274","3722880","GW","false","" +"BW-0937","4.12.7.8.244","","377941","3684380","SP","true","" +"NM-17506","","","622591","3789210","GW","false","" +"NM-18719","","","657804","3811670","GW","false","" +"NM-13237","","","551578","3687990","GW","false","" +"TO-0494","7N5E35.442","","373743","3850140","SP","true","" +"PB-0020","","","379073","3937477","GW","true","Across Hwy 22 from post office and water district office, follow dirt road uphill to fenced in well and city water tank. Well inside well house." +"NM-01354","","","469765","3916080","GW","false","" +"NM-04596","","","677754","3552690","GW","false","" +"NM-02577","","","574479","3624360","GW","false","" +"NM-19451","","","652459","3827980","GW","false","" +"BC-0006","83","","374870","3887490","GW","true","" +"EB-049","","","415767","3941715","GW","true","" +"NM-08444","","","560698","3617740","GW","false","" +"NM-16369","","","677837","3770740","GW","false","" +"OG-0090","","","655192","3810780","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1.5 miles north on SR 311. Turn right east onto dirt road. Drive 0.5 miles east to well. Well is on S side of road." +"NM-09827","","","550537","3634000","GW","false","" +"NM-02119","","","494845","3559320","GW","false","" +"NM-02252","","","617695","3571050","GW","false","" +"NM-20728","","","660002","3853040","GW","false","" +"AR-0043","NMED 538","","221080","4074680","GW","true","From Farmington, take Hwy 516 toward Aztec. A few streets past Animas CrossFit but before Memory Gardens Cemetery, turn right on Halmarc Drive and proceed to address on right. Well is in the SE corner of the backyard." +"NM-11787","","","561943","3663970","GW","false","" +"SB-0069","TWDB 4717218","","506975","3508202","GW","false","" +"NM-01616","","","671844","4018110","GW","false","" +"OG-0067","","","650386","3808499","GW","true","From int of SR 311 and US 60, west of Clovis, drive 2 miles west on US 60. Turn left south on CR S. Immediately after corssing railroad tracks turn right west onto track parallel to railroad. Drive 0.5 miles west. Well is on S side of track." +"NM-24379","","","243674","3939080","GW","false","" +"NM-22173","","","663015","3884920","GW","false","" +"NM-21634","","","357327","3878510","GW","false","" +"NM-10718","","","653241","3647500","GW","false","" +"NM-26668","","","193853","4079260","GW","false","" +"NM-13199","","","139103","3694070","GW","false","" +"NM-07536","","","184975","3608690","GW","false","" +"NM-05272","","","227159","3565800","GW","false","" +"NM-22394","","","381787","3886570","GW","false","" +"NM-20780","","","402011","3853120","GW","false","" +"NM-20847","","","678083","3856610","GW","false","" +"AR-0502","","","232156","4079810","PS","true","Hwy 516 bridge across the Animas River. Park at Florence Park (turn off of Hwy 516 on Ruins Road north, turn immediately into Florence Park. Walk toward river on obvious path. Sample under bridge for westbound lane." +"BW-0249","14S10E31.122","","404650","3658440","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17509","","","673478","3790100","GW","false","" +"WL-0072","NM3501725","","476216","3932773","GW","true","Take I-25 towards Las Vegas NM, take exit 333 (Romeroville) and turn left, toward the Speedway convenience store. The street in front of the Speedway is Ojitos Frios, turn right. This road changes directions numerous times; stay on it for 1.8 miles and turn right (north) onto Mira Sol for 0.45 miles then turn left (west) on Dorothy for 0.3 miles to the gate on the left (south) side of the road; this is the gate to the well. Well is west of tank." +"NM-16210","","","669132","3764140","GW","false","" +"AR-0045","NMED 376","","224756","4065690","GW","true","From Farmington take Hwy 64 east toward Bloomfield. Turn right on Rd 5455 and proceed to address on right. Well is W of house by back fence." +"NM-22557","","","358197","3888760","GW","false","" +"BW-0869","2.8.21.36.224","","530608","3859120","GW","true","" +"AB-0017","S020","","335183","3838080","GW","true","" +"BC-0193","173","","377584","3891220","GW","true","" +"AR-0111","C007","NMED 119","242411","4090900","GW","true","Just south of Cedar Hill on Hwy 550, take Michael's Dr (Rd 2390). then left onto 2380 to address on left of road. House has a red roof. Well is in well house near RV." +"NM-26533","","","587735","4065000","GW","false","" +"TV-298","K2-7","","446675","4030626","GW","true","" +"NM-16163","","","267302","3762900","GW","false","" +"NM-10119","","","555088","3638490","GW","false","" +"NM-05010","","","167623","3563320","GW","false","" +"BW-0111","9S8E35.141","","399586","3705620","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0246","SMC-W02A","","314506","3728696","GW","true","" +"NM-04390","","","181915","3550430","GW","false","" +"EB-312","","","400935","3936570","GW","true","27328 E. Frontage Rd @ mile marker 6. Well on north side of property/drive outside fence. JJ Gonzales no longer manages this home. House was sold." +"TS-048","","","435566","4041009","SP","true","Two small rivulets on east side." +"NM-24066","","","405570","3926190","GW","false","" +"NM-24311","","","670293","3935300","GW","false","" +"NM-11308","","","628673","3657380","GW","false","" +"SB-0825","","","489400","3609847","GW","false","" +"ED-0029","17S28E2.24","","580352","3636770","GW","true","" +"NM-20643","","","399640","3850000","GW","false","" +"NM-10867","","","555680","3648690","GW","false","" +"NM-03503","","","668707","3933910","GW","false","" +"NM-18339","","","659421","3804940","GW","false","" +"NM-09227","","","557073","3627690","GW","false","" +"NM-19898","","","620666","3834900","GW","false","" +"PP-042","PW-47","","433852","4002320","GW","true","" +"NM-21500","","","352439","3876000","GW","false","" +"NM-15387","","","653559","3741600","GW","false","" +"NM-18235","","","670914","3804360","GW","false","" +"NM-13127","","","559524","3686530","GW","false","" +"QY-0733","6.32.17.131a","","629805","3845860","GW","true","" +"NM-10138","","","557425","3638780","GW","false","" +"NM-01699","","","446511","4065560","GW","false","" +"NM-16325","","","326435","3768560","GW","false","" +"NM-18932","","","586336","3814060","GW","false","" +"NM-06463","M-137","","230157","3585750","GW","false","" +"NM-16832","","","658228","3779260","GW","false","" +"EB-462","","","419396","3932934","GW","true","At the intersection of Hwy 285 and Avenida Vista" +"SA-0479","4S13W19.420","","201426","3760600","SP","true","" +"NM-02395","","","675436","3586410","GW","false","" +"NM-24000","","","447766","3922830","GW","false","" +"NM-18888","","","579274","3813350","GW","false","" +"TB-0023","","","418174","3723913","GW","true","South off Hwy 380 before Carrizozo. Turn on B Ave. Right on first dirt road. Little red house, well by big brown tank and lone tree." +"SB-0235","TWDB 4807207","","480998","3537159","GW","false","" +"CP-0013","NM3528522","","654108","3788489","GW","true","From north on Hwy 70 in Portales, go left (west) on E. Lime St., then right (north) on Boston. Boston turns into S. Roosevelt Rd R @ Spruce St. Continue north and cross S. Roosevelt Rd 3. Turn right (east) at brown house (#237), follow 2-track along fence to locked gate (need Public Works to open), then bear right at Well S2 to Well S4, then hard left along fence to S5. Well in fenced area w/power poles." +"NM-17350","","","672527","3787530","GW","false","" +"NM-06128","","","570761","3575550","GW","false","" +"NM-25451","","","575299","3973800","GW","false","" +"NM-08987","","","238203","3628120","GW","false","" +"CX-0108","5","","548798","4072670","GW","true","6 miles south of Raton" +"BC-0409","412","","345935","3876378","GW","false","" +"NM-15358","","","133613","3746380","GW","false","" +"NM-02756","","","565961","3663900","GW","false","" +"NM-24169","","","405157","3929990","GW","false","" +"NM-07109","","","555696","3594800","GW","false","" +"NM-00183","","","458394","3573660","GW","false","" +"NM-04373","","","246085","3547950","GW","false","" +"NM-07194","","","225753","3599780","GW","false","" +"NM-09331","","","210856","3632950","GW","false","" +"NM-01517","","","614917","3965350","GW","false","" +"NM-13871","","","544073","3695310","GW","false","" +"NM-16811","","","548124","3777780","GW","false","" +"NM-09276","","","530746","3628250","GW","false","" +"SB-0776","TWDB 4924802","","398057","3500450","GW","false","" +"NM-07431","","","209961","3605800","GW","false","" +"DE-0107","","","672818","3616276","GW","false","" +"NM-28415","S-2016-048","","578513","3573542","GW","true","" +"NM-15927","","","663495","3754670","GW","false","" +"NM-06932","","","322117","3592430","GW","false","" +"BC-0273","327","","380508","3869320","GW","true","" +"NM-19339","","","622066","3825280","GW","false","" +"NM-07211","","","211740","3600450","GW","false","" +"NM-22231","","","386095","3884910","GW","false","" +"NM-28050","","","664083","3890310","GW","false","" +"NM-16150","","","618372","3760380","GW","false","" +"NM-18191","","","664168","3802880","GW","false","" +"NM-22530","","","390817","3888000","GW","false","" +"NM-10514","","","557703","3644450","GW","false","" +"BW-0003","19S5E19.413","","362230","3612260","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-0170","","","432443","3709231","GW","true","397 Nogal Canyon Rd., on south side of road. Off of emankment in field before little cabin." +"NM-04279","","","341474","3542390","GW","false","" +"DE-0311","","","650223","3590858","GW","false","" +"NM-01773","","","339076","3518340","GW","false","" +"NM-01459","","","153157","3950050","GW","false","" +"NM-22309","","","381166","3885620","GW","false","" +"NM-19879","","","621354","3834850","GW","false","" +"NM-21729","","","404398","3879620","GW","false","" +"NM-12233","","","635839","3671890","GW","false","" +"NM-10849","","","614243","3648980","GW","false","" +"NM-15204","","","566223","3734980","GW","false","" +"NM-06353","","","571407","3580330","GW","false","" +"DE-0284","","","663237","3634555","GW","false","" +"NM-12005","","","631720","3668050","GW","false","" +"NM-19103","","","663144","3818980","GW","false","" +"NM-04301","","","348939","3543100","GW","false","" +"NM-10387","","","630231","3643570","GW","false","" +"AR-0127","B005","NMED 31","242443","4091220","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn right onto Rd 2390 then left onto Rd 2380. Take left turn in Rd 2380 and follow to address on left." +"NM-07026","","","552627","3592840","GW","false","" +"TB-0215","","","417133","3724947","GW","true","Hwy 380 on south side, property just before Hefker residence. Look for red pipe gate with wood post walls. Well is just inside gate. Gate combo 3328" +"NM-22960","","","354156","3894090","GW","false","" +"NM-12113","","","678999","3670770","GW","false","" +"NM-16389","","","261374","3772230","GW","false","" +"NM-12145","","","290306","3671590","GW","false","" +"BC-0140","123","","362428","3892360","GW","true","" +"NM-13530","","","522640","3691700","GW","false","" +"NM-09269","","","550957","3628270","GW","false","" +"NM-26286","","","320987","4041820","GW","false","" +"NM-12881","","","642198","3683500","GW","false","" +"NM-09931","","","408123","3635930","GW","false","" +"SA-0214","","","253066","3726812","GW","true","From Hwy 60 at VLA, head south on HWY 52 to just north of MM 53. Look for red barn and HQ house on east side of road. Well is north of house under wooden WM tower. Well is 12 yards east of tower." +"NM-03382","","","407620","3887600","GW","false","" +"NM-25684","","","396195","3988480","GW","false","" +"TV-225","SWS-116","","443887","4025181","GW","true","Well in shed in vault. **NOT USING SITE IN INVENTORY.**" +"SB-0309","TWDB 4807527","","481806","3534294","GW","false","" +"ED-0154","22S22E20.444","","526438","3581610","GW","true","" +"NM-10925","","","278580","3651630","GW","false","" +"NM-17963","","","566245","3797600","GW","false","" +"NM-27792","","","189128","3803030","GW","false","" +"NM-25224","","","412814","3963150","GW","false","" +"SD-0033","7N.7E.12.444","","394826","3856100","GW","true","" +"CX-0045","27N27E12.43","","588318","4049170","GW","true","" +"HS-020","TC-020","","289609","3667730","GW","true","On the other side of the fence from the blackstone office, next to the purple water tank and the outhouse." +"NM-15150","","","196539","3737050","GW","false","" +"NM-14237","","","543565","3699190","GW","false","" +"DE-0314","","","650249","3590813","GW","false","" +"NM-06630","","","673338","3586840","GW","false","" +"NM-02027","","","495234","3551660","GW","false","" +"QY-0951","9.30.11.344","","615823","3875360","GW","true","" +"GT-013","SWNM14-3","","171336","3639260","SP","true","near intersection of Highway 180 and McMillen Rd." +"NM-18849","","","342914","3813510","GW","false","" +"NM-10258","","","279189","3642900","GW","false","" +"NM-06042","","","655277","3575080","GW","false","" +"DA-0139","26S2E32.33","","333145","3541570","GW","true","" +"NM-16487","","","325520","3773200","GW","false","" +"TB-0058","","","401575","3688079","GW","true","Off of Three River Campground road, ~1 mi east, turn right just past little adobe shack on south side of road. Dirt road goes right to well, just east of shack." +"NM-01057","","","341714","3842980","GW","false","" +"NM-17469","","","640462","3788570","GW","false","" +"NM-16359","","","658440","3769690","GW","false","" +"QU-160","","","446365","4064082","GW","true","Turn into Alta Vista School north of town center. Drive to the back and look for a small building along the fence on the right." +"NM-15974","","","663441","3756310","GW","false","" +"NM-12430","","","669792","3675660","GW","false","" +"NM-15984","","","666722","3756700","GW","false","" +"BC-0362","366","","376462","3892041","GW","true","" +"NM-26775","","","576877","3744240","GW","false","" +"SD-0207","10N.6E.21.241","","381547","3882660","GW","true","" +"NM-14721","","","660656","3717250","GW","false","" +"NM-20083","","","532599","3837220","GW","false","" +"NM-23353","02 CalleChiquita","","377806","3900902","GW","true","02 Calle Chiquita; Unit 3 Lot 122" +"NM-13573","","","404088","3693530","GW","false","" +"AB-0071","S081","","348793","3898580","GW","true","" +"SM-2011","","","442039","3640747","M","true","Turn south off of Hwy 82, onto Coleman Ranch, well is fist one come to along main road (past ranch mgr house), on south side. Precip and weather station is by well and in fenced area along powerline. Precip collection at this site ceased 12/07. See SM-5003" +"NM-20845","","","612096","3854880","GW","false","" +"NM-10529","","","550224","3644530","GW","false","" +"NM-15423","","","134798","3747700","GW","false","" +"NM-25702","","","426786","3989250","GW","false","" +"NM-24934","","","416813","3947960","GW","false","" +"NM-02153","","","223906","3566690","GW","false","" +"NM-27370","","","230176","3612640","GW","false","" +"NM-11977","","","616155","3667260","GW","false","" +"NM-18266","","","611522","3803360","GW","false","" +"EB-113","","","405092","3938705","GW","true","Lot No 8, Tract No B, Valle Lindo" +"NM-27002","","","286905","3763590","GW","true","" +"TS-060","","","437392","4062272","SP","true","West side of river beneath boulder fields." +"BW-0230","14S9E36.122","","403017","3658460","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0242","TWDB 4807219","","482603","3539496","GW","false","" +"NM-12154","","","550302","3669660","GW","false","" +"BC-0061","177","","378097","3888920","GW","true","" +"NM-10534","","","401558","3644950","GW","false","" +"NM-23895","","","638071","3919270","GW","false","" +"NM-06478","","","155330","3588350","GW","false","" +"NM-28279","SS-4","","445115","4077530","GW","false","" +"QY-0750","7.27.6.444","","581069","3857120","GW","true","" +"NM-02639","","","553717","3637280","GW","false","" +"NM-03887","","","250166","3523650","GW","false","" +"NM-15947","","","647808","3754140","GW","false","" +"SB-0417","TWDB 4814702","","465119","3513955","GW","false","" +"NM-16138","","","661634","3761390","GW","false","" +"NM-13802","","","544669","3695010","GW","false","" +"NM-00895","","","564551","3785620","GW","false","" +"MI-0161","","","567223","3931968","GW","true","Topographic situation: Plains" +"NM-26549","","","609398","4066610","GW","false","" +"NM-08599","","","676301","3621670","GW","false","" +"NM-12894","","","139325","3688880","GW","false","" +"NM-07957","","","557148","3610110","GW","false","" +"AH-036","HUNT","","445648","4043197","GW","true","" +"NM-20421","","","678734","3845340","GW","false","" +"BW-0808","1.24.4.6.100","","293675","4024740","GW","true","" +"NM-22670","","","380767","3889880","GW","false","" +"ED-0144","21S27E31.212","","572747","3589290","GW","true","" +"NM-01716","","","310326","4075230","GW","false","" +"BW-0313","16S9E25.22","","409738","3640740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08826","","","675014","3625220","GW","false","" +"NM-22415","","","610363","3886780","GW","false","" +"NM-11341","","","649050","3658380","GW","false","" +"NM-03738","","","168720","3503170","GW","false","" +"NM-14428","","","545529","3704340","GW","false","" +"SD-0212","10N.6E.26.132","","383715","3881150","GW","true","" +"NM-23865","","","414105","3917330","GW","false","" +"NM-24717","","","408878","3944030","GW","false","" +"SR-0002","","","519505","3543330","SP","true","Gualadule Mtns; Next canyon east of Heliport Tank. No trail, descend from tank" +"NM-00465","","","271896","3643570","GW","false","" +"NM-21657","","","192091","3882940","GW","false","" +"NM-13155","","","138874","3693490","GW","false","" +"AR-0163","D010","NMED 97","241684","4091470","GW","true","From Hwy 550 in Cedar Hill, take Rd 2900 west to address on left. Address is next to river." +"NM-00861","","","346398","3750180","GW","false","" +"NM-26347","","","619762","4049210","GW","false","" +"NM-16034","","","361368","3757100","GW","false","" +"NM-01453","","","492549","3941890","GW","false","" +"SA-0498","5S12W9.434","","213713","3753360","GW","true","" +"NM-12723","","","634966","3680690","GW","false","" +"NM-21995","","","660412","3883150","GW","false","" +"NM-06295","","","362979","3579930","GW","false","" +"BW-0182","14S9E16.422","","398968","3662550","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19301","","","590046","3823490","GW","false","" +"UC-0158","","","665010","4038461","GW","false","" +"NM-26010","","","327090","4013400","GW","false","" +"QY-0106","10.34.22.132","","652507","3883170","GW","true","" +"NM-17304","","","618667","3785830","GW","false","" +"NM-19420","","","401344","3826260","GW","false","" +"NM-06477","","","156111","3588230","GW","false","" +"JM-038","","","306216","3654061","GW","true","" +"NM-21277","","","543623","3868130","GW","false","" +"NM-03206","","","565916","3829510","GW","false","" +"NM-09305","","","554987","3628630","GW","false","" +"NM-17629","","","639523","3791480","GW","false","" +"QY-0044","10.30.15.244","","614879","3884190","GW","true","" +"NM-18457","","","632121","3806530","GW","false","" +"NM-08693","","","230361","3625210","GW","false","" +"NM-17098","","","641308","3783340","GW","false","" +"NM-26327","","","473052","4045340","GW","false","" +"NM-17983","","","668782","3799290","GW","false","" +"SA-0446","5S13W14.210","","207250","3753150","GW","true","" +"UC-0226","","","655447","4031410","GW","false","" +"NM-12242","","","680215","3672300","GW","false","" +"EB-225","","","414362","3945076","GW","true","2347 Botulph (@ SE corner of Zia); in pit by white storage tank" +"NM-02995","","","662911","3779340","GW","false","" +"DA-0143","27S4W27.2","","288856","3535110","GW","true","" +"SB-0579","TWDB 4861103","","453438","3442911","GW","false","" +"NM-03581","","","573518","3982900","GW","false","" +"NM-18668","","","637090","3810790","GW","false","" +"NM-27393","","","554978","3630240","GW","false","" +"RA-038","","","394667","4003656","GW","true","In pit next to car port." +"TC-223","WG-32","","414876","4093238","GW","true","" +"PP-006","PW-07","","434379","4004112","GW","true","" +"NM-13494","","","551380","3691250","GW","false","" +"NM-14500","","","342413","3707580","GW","false","" +"NM-02952","","","680087","3753590","GW","false","" +"SB-0355","TWDB 4807716","","480192","3527400","GW","false","" +"NM-02612","","","555783","3630330","GW","false","" +"QY-0330","11.33.28.232a","","641786","3891060","GW","true","" +"NM-16633","","","673017","3776230","GW","false","" +"NM-19299","","","632099","3824210","GW","false","" +"NM-25215","","","671053","3963860","GW","false","" +"NM-00297","","","675428","3611130","GW","false","" +"NM-08473","","","649852","3619230","GW","false","" +"EB-287","","","407017","3956720","GW","true","Lot 16 La Tierra, #218 Paseo de la Tierra, left of drive before house. USGS Site ID from Anderholm, 1994 USGS WRI Report 94-4078" +"NM-07227","","","210733","3600880","GW","false","" +"NM-03593","","","670948","3991260","GW","false","" +"NM-09818","","","553761","3633950","GW","false","" +"NM-04876","","","255563","3558880","GW","false","" +"QY-0721","6.31.13.112","","626710","3846140","GW","true","" +"NM-02679","","","550214","3646380","GW","false","" +"NM-27644","","","658984","3795090","GW","false","" +"DE-0285","","","663215","3634447","GW","false","" +"NM-21528","","","227775","3879860","GW","false","" +"NM-25736","","","180550","3998650","GW","false","" +"NM-20678","","","633491","3851350","GW","false","" +"NM-22821","","","375781","3891770","GW","false","" +"NM-06928","","","566240","3590950","GW","false","" +"NM-02858","","","433777","3715760","GW","false","" +"NM-15505","","","662905","3744130","GW","false","" +"TB-1067","","","426136","3695424","SP","true","Site visit by Fraser and Cathy Goff. NPW10-10" +"AR-0213","","","227177","4081260","GW","true","From Hwy 516 turn N on Rd 3160 at ""Still Smoking"" store. Drive about 1.1 miles on 3160 ignoring signs about private road and no trespassing. At junction with Rd 3163, entrance to Kowal Ranch. House is green with a green gate. Well is in well house behind house." +"NM-27226","","","615751","3547570","GW","false","" +"NM-08844","","","555562","3623430","GW","false","" +"NM-06393","","","573127","3581110","GW","false","" +"DE-0024","","","660584","3555145","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep." +"SM-0206","","","469172","3626907","GW","true","Hwy 24 to Cuevo Canyon. Somewhere by old house along Cuevo Canyon. 250 yards from SM-0205. Jeremiah Morse site visit." +"PC-033","PW-056","","367028","3907805","GW","true","" +"NM-01852","","","312256","3530900","GW","false","" +"NM-24484","","","405975","3938300","GW","false","" +"BC-0047","38","","382773","3890130","GW","true","" +"NM-11759","","","559638","3663680","GW","false","" +"NM-17081","","","651247","3783190","GW","false","" +"NM-16083","","","625250","3758600","GW","false","" +"NM-11841","","","285819","3666730","GW","false","" +"NM-04770","","","243590","3557320","GW","false","" +"DE-0355","","","569248","3626515","GW","false","" +"BW-0857","1.1.2.1.330","","308127","3797560","GW","true","" +"NM-06655","","","345017","3586900","GW","false","" +"NM-05952","","","670117","3573260","GW","false","" +"NM-21701","","","634703","3879410","GW","false","" +"NM-20567","","","393185","3847980","GW","false","" +"NM-07060","","","251455","3596460","GW","false","" +"NM-25339","","","392339","3969940","GW","false","" +"SD-0375","10N.5E.22.143","","372827","3882770","SP","true","" +"ED-0230","22S27E28.421","","576343","3580790","GW","true","" +"MI-0114","","","567919","3923400","GW","true","Topographic situation: Plains" +"NM-11773","","","559482","3663770","GW","false","" +"SD-0279","11N.6E.28.414","","381437","3889950","GW","true","" +"NM-11603","","","647794","3662550","GW","false","" +"BW-0705","1.15.17.30.340","","165952","3934270","GW","true","" +"TV-145","","","444459","4027975","GW","true","Highway 240, house #30." +"NM-24013","","","399347","3924130","GW","false","" +"NM-22678","","","347462","3890380","GW","false","" +"NM-09335","","","285433","3631110","GW","false","" +"NM-12743","","","557729","3679680","GW","false","" +"NM-00855","","","560273","3744080","GW","false","" +"NM-22280","","","355668","3885750","GW","false","" +"NM-03781","","","226809","3520270","GW","false","" +"NM-03999","","","339182","3526770","GW","false","" +"SB-0310","TWDB 4807528","","481041","3531894","GW","false","" +"QY-0265","11.30.9.433","","612580","3894570","GW","true","" +"NM-23987","","","456939","3922160","GW","false","" +"BW-0331","16S10E29.243","","412347","3638870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25909","","","443740","4003020","GW","false","" +"NM-11758","","","565547","3663710","GW","false","" +"NM-07152","","","357588","3596220","GW","false","" +"NM-10182","","","438216","3638960","GW","false","" +"NM-08583","","","289973","3622020","GW","false","" +"NM-25840","","","410226","3999720","GW","false","" +"NM-05360","","","332923","3565130","GW","false","" +"NM-24861","","","413754","3946230","GW","false","" +"NM-27300","","","150946","3588780","GW","false","" +"NM-15714","","","660537","3748860","GW","false","" +"NM-09529","","","552556","3630750","GW","false","" +"NM-12196","","","633672","3671280","GW","false","" +"NM-21699","","","403428","3878920","GW","false","" +"NM-13957","","","145173","3702020","GW","false","" +"NM-24237","","","478441","3931360","GW","false","" +"NM-16400","","","644671","3771130","GW","false","" +"NM-26816","","","170558","3779090","GW","true","" +"WL-0281","","","184974","3536353","GW","false","From I-10, take exit 49 and go south on NM-146 for 19.5 miles, turn right (west) on NM-9 for 0.25 miles. Well is outside of fenced area at southwest corner of lot. Cover needs to be unlocked to access inner well casing." +"NM-07545","","","606361","3604480","GW","false","" +"NM-20360","","","600543","3842730","GW","false","" +"DE-0187","","","611971","3598478","GW","false","" +"NM-21832","","","348465","3881560","GW","false","" +"NM-13617","","","570853","3693160","GW","false","" +"NM-12580","","","656781","3676180","GW","false","" +"NM-28085","","","240790","3904130","GW","false","" +"NM-19744","","","622582","3832490","GW","false","" +"NM-24540","","","398412","3939460","GW","false","" +"NM-05750","","","253060","3571330","GW","false","" +"AS-019","DM-105","","446715","4038930","GW","true","" +"NM-09684","","","676261","3634150","GW","false","" +"NM-03352","","","622581","3880070","GW","false","" +"NM-25805","","","407301","3997290","GW","false","" +"NM-02450","M-164","","264953","3600480","GW","false","" +"NM-12033","","","650471","3668870","GW","false","" +"NM-06312","","","575595","3579590","GW","false","" +"NM-08911","","","409085","3624580","GW","false","" +"NM-09514","","","553363","3630690","GW","false","" +"NM-06036","","","328345","3574700","GW","false","" +"NM-20765","","","396784","3852870","GW","false","" +"SV-0044","08 La Canada Pl","","380599","3900322","GW","false","Unit 1 Lot 57" +"SD-0087","9N.6E.23.343","","383888","3872060","GW","true","" +"NM-19947","","","677143","3836800","GW","false","" +"NM-09322","","","447178","3628810","GW","false","" +"NM-19017","","","657536","3817190","GW","false","" +"NM-18796","","","658426","3813220","GW","false","" +"QU-021","CER-31","","445611","4067661","GW","true","" +"NM-13380","","","260164","3692970","GW","false","" +"NM-17454","","","647818","3787910","GW","false","" +"SB-0457","TWDB 4821502","","460062","3505598","GW","false","" +"NM-26350","","","647556","4050690","GW","false","" +"AR-0056","C010","NMED 133","234810","4083080","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2896 then left onto 2892 to address on right. Well is in wooden lean-to shed along S side of driveway. WATCH OUT FOR DOG! Coordinate visit with owner! May be selling property (6/2/2016)." +"NM-14212","","","542249","3698880","GW","false","" +"EB-413","","","409790","3944508","GW","true","near County Fairgrounds. Turn North off of Rodeo Rd., at light at Pueblos Rd. Well site is surrounded by 4 steel pipes, and located along ""exit"" road in front of mobile homes. Altitude from 30-m DEM." +"NM-07185","","","189269","3600630","GW","false","" +"NM-04185","","","131795","3544530","GW","false","" +"NM-07288","S-2014-001","","636688","3599460","GW","false","" +"NM-06783","","","339310","3589510","GW","false","" +"NM-20913","","","332710","3857510","GW","false","" +"WL-0211","","","424724","3727625","GW","true","Well on east side of 2-track in large casing on concrete pad. Look for yellow metal upright pipes." +"NM-17604","","","669206","3791410","GW","false","" +"NM-01214","","","186565","3888680","GW","false","" +"NM-25100","","","474956","3954660","GW","false","" +"NM-10737","","","542527","3646830","GW","false","" +"QU-109","","","448573","4065764","GW","true","Take Llano Road up to the Latir piedmont. On the left, large house on hill half way up; 0.4 miles from cattleguard at base. Well in vault w/slanted red Propanel roof." +"NM-08526","","","290323","3621080","GW","false","" +"NM-23012","","","664759","3894910","GW","false","" +"NM-15447","","","649298","3742700","GW","false","" +"NM-00013","","","310207","3535190","GW","false","" +"NM-15773","","","183788","3753630","GW","false","" +"NM-23441","","","242490","3907470","GW","false","" +"NM-27941","","","556606","3839860","GW","false","" +"TO-0104","4N9E8.144","","407850","3827940","GW","true","" +"NM-05004","","","678318","3559410","GW","false","" +"QY-0531","17.34.30.343","","647425","3948390","GW","true","" +"NM-09531","","","411068","3631000","GW","false","" +"SD-0339","7N6E2.41","","382971","3858500","SP","true","" +"NM-16543","","","648929","3774280","GW","false","" +"NM-07840","","","677652","3610200","GW","false","" +"NM-07513","","","550667","3603450","GW","false","" +"NM-22035","","","388577","3882880","GW","false","" +"NM-03856","","","233343","3522440","GW","false","" +"NM-17808","","","645041","3795320","GW","false","" +"NM-05931","","","584133","3571400","GW","false","" +"NM-08039","","","663693","3612370","GW","false","" +"NM-03241","","","678070","3838880","GW","false","" +"NM-20096","","","396838","3838080","GW","false","" +"NM-18957","","","547477","3814250","GW","false","" +"NM-15801","","","213750","3753170","GW","false","" +"MG-038"," NM3523528","","296263","3778936","GW","true","" +"NM-17668","","","595553","3791080","GW","false","" +"BW-0802","2.26.21.36.300","","529176","4032610","GW","true","" +"AH-060","AH-14","","439119","4044766","GW","true","" +"SB-0308","TWDB 4807526","","483485","3533152","GW","false","" +"SB-0348","TWDB 4807708","","480191","3526846","GW","false","" +"NM-27857","","","597312","3810930","GW","false","" +"BW-0205","14S9E26.344","","401381","3658890","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18701","","","269407","3812880","GW","false","" +"NM-23972","","","637543","3922440","GW","false","" +"NM-03470","PW-317","","372081","3909200","GW","false","" +"NM-02442","","","357118","3596260","GW","false","" +"NM-26353","","","633824","4051360","GW","false","" +"NM-28226","","","170345","4075690","GW","false","" +"NM-08758","","","562751","3622490","GW","false","" +"NM-10424","","","556594","3643120","GW","false","" +"QY-0905","8.32.26.223","","635428","3862050","GW","true","" +"NM-28017","","","357356","3881540","GW","false","" +"NM-12960","","","650298","3685100","GW","false","" +"NM-16001","","","658917","3756540","GW","false","" +"TS-020b","","","438037","4077521","SP","true","East bank, just upstream from Sunshine Trail." +"NM-24048","","","441452","3925080","GW","false","" +"NM-13650","","","549844","3693430","GW","false","" +"RA-054","","","417628","4007901","GW","true","" +"NM-06616","","","341716","3586340","GW","false","" +"WS-012","","","382090","3631370","GW","true","SE corner of picnic loop" +"NM-26562","","","580026","4066990","GW","false","" +"NM-23291","","","391005","3899370","GW","false","" +"NM-17258","","","643043","3785460","GW","false","" +"NM-23968","","","657770","3922590","GW","false","" +"NM-07943","","","675572","3611370","GW","false","" +"NM-21241","","","345989","3868890","GW","false","" +"NM-13339","","","641469","3690920","GW","false","" +"NM-11440","","","665125","3660570","GW","false","" +"SB-0672","TWDB 4915509","","389104","3520466","GW","false","" +"NM-23601","","","365265","3909450","GW","false","" +"NM-07633","","","680683","3606990","GW","false","" +"MI-0082","","","455252","3917709","GW","true","Topographic situation: " +"NM-25383","","","471193","3971610","GW","false","" +"CX-0139","53","","536566","4035130","GW","true","2 1/4 miles southwest of French" +"NM-01905","","","219038","3540430","GW","false","" +"SB-0843","","","487432","3542537","GW","false","" +"NM-26362","","","427490","4052350","GW","false","" +"SA-1004","","","262749","3731141","ES","true","Take Hwy 60 to VLA. Head south on CR 52, many miles to FR 478 (south of Dusty). Follow bak to stream crossing at GPS coords." +"NM-19950","","","644201","3836170","GW","false","" +"UC-0011","","","674264","4022643","GW","false","" +"HS-506","TC-506","","289803","3667671","SP","true","300 Austin Avenue" +"NM-23704","","","396966","3912140","GW","false","" +"BC-0277","275","","366920","3880520","GW","true","" +"NM-09621","","","666653","3633180","GW","false","" +"NM-08977","","","659453","3626380","GW","false","" +"NM-24852","","","413149","3946050","GW","false","" +"NM-18805","","","153474","3817930","GW","false","" +"NM-16017","","","666809","3757630","GW","false","" +"NM-26662","","","194066","4078880","GW","false","" +"NM-16394","","","659004","3771200","GW","false","" +"NM-09040","","","189560","3630040","GW","false","" +"NM-26634","","","578001","4071380","GW","false","" +"NM-26262","","","591431","4036970","GW","false","" +"NM-06749","","","676325","3589350","GW","false","" +"NM-23079","","","182824","3900260","GW","false","" +"NM-23364","","","378282","3901210","GW","false","" +"NM-18656","","","598933","3809970","GW","false","" +"DE-0214","","","639652","3628306","GW","false","" +"NM-15666","","","353265","3746910","GW","false","" +"NM-16391","","","644650","3770850","GW","false","" +"RA-089","","","394115","4021466","GW","true","Behind house." +"NM-26975","","","325404","3780370","GW","true","" +"NM-00455","","","676047","3641680","GW","false","" +"NM-24084","","","438716","3926740","GW","false","" +"NM-16489","","","670225","3773280","GW","false","" +"NM-02488","M-181","","214770","3611400","GW","false","" +"BC-0122","187","","381500","3868580","GW","true","" +"NM-24725","","","648394","3944920","GW","false","" +"NM-25573","","","410769","3981790","GW","false","" +"NM-19890","","","624870","3834710","GW","false","" +"TO-0279","7N8E7.121","","395562","3857420","GW","true","" +"NM-24694","","","458498","3943070","GW","false","" +"TV-147","","","443682","4027403","GW","true","Highway 240, north of bend in highway across Rio Pueblo @ Riversong & Blackstone ranches. Big barn to east, doors facing north and pumphouse in back SW corner. Casing behind pressure tank." +"NM-21795","","","615785","3880500","GW","false","" +"NM-02400","","","223527","3590130","GW","false","" +"QY-0625","5.29.6.444","","600538","3838040","GW","true","" +"NM-19336","","","616742","3825020","GW","false","" +"NM-18576","","","429133","3807960","GW","false","" +"NM-27475","","","561636","3724170","GW","false","" +"NM-01957","","","118367","3551680","GW","false","" +"NM-06570","","","268138","3586870","GW","false","" +"NM-20823","","","617719","3854240","GW","false","" +"NM-05427","","","262585","3567550","GW","false","" +"NM-09364","","","407649","3629680","GW","false","" +"BC-0315","290","","351825","3896590","GW","true","" +"NM-11127","","","269699","3655130","GW","false","" +"NM-01832","","","344585","3525980","GW","false","" +"NM-16738","","","638214","3777810","GW","false","" +"NM-14975","","","149487","3732270","GW","false","" +"NM-14015","","","632353","3697660","GW","false","" +"NM-26692","","","662329","4079130","GW","false","" +"NM-03877","","","143003","3526480","GW","false","" +"NM-11201","","","405078","3654430","GW","false","" +"EB-277","","","413025","3949523","GW","true","Alto and La Madera Streets" +"AB-0122","S149","","358444","3894860","GW","true","" +"NM-06415","","","576704","3581630","GW","false","" +"NM-27786","","","603873","3788180","GW","false","" +"TB-1060","","","426829","3700441","SP","true","Site visit by Fraser and Cathy Goff. NPW10-3" +"NM-21180","","","401491","3866160","GW","false","" +"NM-10778","","","651351","3648830","GW","false","" +"SB-0284","TWDB 4807427","","477680","3532085","GW","false","" +"NM-01685","","","318367","4056860","GW","false","" +"NM-18106","","","652863","3801850","GW","false","" +"NM-09312","","","447412","3628710","GW","false","" +"NM-03686","COS-23","","438232","4094670","GW","false","" +"NM-05327","","","571240","3563390","GW","false","" +"NM-22732","","","376472","3890490","GW","false","" +"NM-02031","","","242081","3555730","GW","false","" +"WS-023","","","363992","3618672","GW","true","" +"NM-10195","","","680971","3641130","GW","false","" +"NM-07099","","","319647","3595980","GW","false","" +"PC-096","PW-172","","368764","3907516","GW","true","" +"NM-05136","","","662384","3561060","GW","false","" +"BW-0811","4.18.38.30.223","","670428","3622150","GW","true","" +"NM-10324","","","668822","3643200","GW","false","" +"NM-00897","","","344804","3788060","GW","false","" +"CP-0015","NM-3527405","","654179","3854483","GW","true","From Clovis, go north on NM 209, then west on 209 at Broadview. Well is at rest area on east side of town in fenced area. Mayor requests call and presence for visits to well." +"MI-0296","","","467623","3967168","GW","true","Topographic situation: Valley" +"NM-05158","","","614886","3560740","GW","false","" +"NM-14035","","","549310","3696660","GW","false","" +"NM-01932","","","380833","3541700","GW","false","" +"TB-0124","","","421310","3722282","GW","true","From golf course S of Hwy 380 east of Carrizozo, turn S on Water Canyon Rd. Go around curve to W and S to water plant on right, across to old house to windmill. Go thru gate and fenced enclosure, head north and W of rail car. Two track to left (N) to golf course maintenance building. Right (east) to well. OR from Hwy 380 turn south on Water Canyon Road, left at fork past white building to Tan pipe and wire gate. Thru gate and along fence (E) to well." +"NM-08182","","","208167","3617670","GW","false","" +"EB-391","","","404639","3939485","GW","true","20 ft off SE corner of southernmost building; just north of Mesa Steel on west side of South14, north of 599" +"NM-09717","","","283565","3634940","GW","false","" +"NM-14678","","","455451","3714220","GW","false","" +"NM-24195","","","476499","3930100","GW","false","" +"NM-20269","","","558662","3840620","GW","false","" +"MG-009","WF-2A","","293687","3771800","GW","true","Going west on Hwy 60 from Socorro, make a left (south) on Kelly Road (at USFS office) when you get into town of Magdalena. Follow Kelly Road for ~2 mile to fork in road and go right onto Hop Canyon Road. At next fork stay right on Hop Canyon Road. House is ~1.4 miles past this fork on right hand side of road. Well is in a brown stucco hogon." +"AB-0098","S111","","332080","3831260","GW","true","" +"NM-01753","","","169882","3493780","GW","false","" +"NM-14557","","","299026","3710830","GW","false","" +"UC-0202","","","599702","4069911","GW","false","" +"NM-24002","","","406220","3923200","GW","false","" +"NM-24558","","","664624","3940800","GW","false","" +"QY-0820","7.32.27.314","","632971","3851670","GW","true","" +"NM-09278","","","227446","3631980","GW","false","" +"NM-17978","","","650068","3799220","GW","false","" +"RA-046","","","421114","4006052","GW","true","In fenced area" +"NM-23229","","","355043","3898920","GW","false","" +"NM-16395","","","648802","3771010","GW","false","" +"NM-15410","","","351358","3741670","GW","false","" +"SA-0113","","","241046","3772049","GW","true","From Hwy 60, 1/4 mile west of mile marker 81, turn S on country road. Follow for 7.5 miles to Hand Ranch HQ. Turn up driveway, go to house through gate into corral. Take 2 track to NW, follow for 2.3 miles. Look for WM." +"NM-05509","","","259621","3568550","GW","false","" +"TB-0211","","","422743","3725792","GW","true","From Carrizozo go north on HWY 54 to White Oaks turn off, head east across tracks to gate on S side of road 1.4 miles, then east 1.3 miles to tank and WM with solar." +"NM-17585","","","631581","3790440","GW","false","" +"NM-03302","","","339600","3859170","GW","false","" +"NM-06632","","","585215","3585730","GW","false","" +"NM-23716","","","398104","3912380","GW","false","" +"NM-25175","","","181490","3965000","GW","false","" +"NM-18249","","","546515","3802510","GW","false","" +"NM-21471","","","221976","3877780","GW","false","" +"NM-11872","","","286449","3667050","GW","false","" +"NM-23165","","","239822","3900020","GW","false","" +"NM-15460","","","674492","3743410","GW","false","" +"DA-0190","23S1E28.442","","326972","3572300","GW","true","" +"QY-0055","10.30.35.131","","615292","3879450","GW","true","" +"NM-11154","","","283778","3655310","GW","false","" +"NM-15223","","","596164","3735820","GW","false","" +"NM-18262","","","132380","3809720","GW","false","" +"NM-25756","","","674138","3995730","GW","false","" +"NM-18730","","","149777","3816860","GW","false","" +"NM-16279","","","314323","3767160","GW","false","" +"NM-27937","","","129550","3845190","GW","false","" +"NM-19346","","","673058","3826430","GW","false","" +"NM-10629","","","406737","3646070","GW","false","" +"NM-03024","","","651426","3786360","GW","false","" +"NM-06832","","","569487","3589620","GW","false","" +"NM-18737","","","660523","3811800","GW","false","" +"NM-04581","","","231943","3554350","GW","false","" +"NM-15936","","","539442","3753220","GW","false","" +"MI-0284","","","552335","3955443","GW","true","Topographic situation: Plateau" +"NM-18552","","","650062","3808520","GW","false","" +"NM-00832","","","446494","3717040","GW","false","" +"NM-21911","","","660329","3882130","GW","false","" +"NM-26712","","","442886","4081050","GW","false","" +"NM-12486","","","553900","3674910","GW","false","" +"EB-030","","","419682","3930990","GW","true","" +"NM-13167","","","666045","3688780","GW","false","" +"NM-12007","","","558763","3666900","GW","false","" +"BC-0172","152","","379018","3886000","GW","true","" +"NM-09118","","","680893","3626900","GW","false","" +"NM-10908","","","543478","3648960","GW","false","" +"NM-00554","","","665969","3657020","GW","false","" +"NM-27575","","","656920","3793080","GW","false","" +"NM-27472","","","666793","3724720","GW","false","" +"NM-11489","","","676398","3661260","GW","false","" +"NM-20389","","","598577","3843360","GW","false","" +"BW-0688","4.5.5.19.231","","363679","3747630","GW","true","" +"HS-028","TC-028","","289230","3667808","GW","true","Between Main and Broadway and Poplar and McElroy closer to the pull across in the median" +"NM-09067","","","625952","3626730","GW","false","" +"NM-16613","","","670074","3775930","GW","false","" +"BW-0598","11S6E10.2","","371243","3694400","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05268","","","241514","3565390","GW","false","" +"AB-0063","S073","","323076","3828130","GW","true","" +"NM-03166","","","658266","3820800","GW","false","" +"TO-0216","6N7E29.343","","387330","3841720","GW","true","" +"NM-03490","","","396161","3923340","GW","false","" +"NM-18080","","","651208","3801460","GW","false","" +"NM-25128","","","417065","3956060","GW","false","" +"SV-0052","08 La Quinta","","378310","3898762","GW","false","Unit 2 Lot 40" +"NM-03160","","","351593","3818270","GW","false","" +"NM-11702","","","661856","3663720","GW","false","" +"MI-0251","","","536470","3948520","GW","true","Topographic situation: Valley" +"NM-06298","","","330771","3580480","GW","false","" +"NM-11506","","","678837","3661180","GW","false","" +"NM-18051","","","625898","3800160","GW","false","" +"NM-06624","","","647343","3586300","GW","false","" +"NM-25923","","","213418","4008530","GW","false","" +"NM-22570","","","238339","3891610","GW","false","" +"NM-26012","","","647820","4013310","GW","false","" +"NM-09371","","","195203","3633880","GW","false","" +"NM-23521","","","385146","3907820","GW","false","" +"MG-022","WF-10","","290420","3775673","GW","true","Well located southeast of houses." +"NM-00469","","","680947","3641090","GW","false","" +"QY-0673","6.28.13.232","","598482","3845460","GW","true","" +"NM-06987","","","568556","3592170","GW","false","" +"NM-26647","","","195341","4078060","GW","false","" +"SM-5002","","","444748","3604713","M","true","Site set up by Jeremiah Morse. Head south from Timberon on Merlin, at the Y at the airport take left fork on Hoover. Contine on this for about 10 miles, past a house at 5 miles. At double-wide and cowpens, turn left. Station is in fenced area with orchard between house and other buildings. HAS WEATHER STATION INSTALLED in addition to PRECIP COLLECTOR. See SM-2010" +"SO-0149","ESC-E02B","","326052","3777109","GW","true","" +"NM-08720","","","556767","3622080","GW","false","" +"EB-104","","","406047","3951057","GW","true","Lot #8, across from #13 Cloudmarch West, near street; welded shut" +"NM-03497","","","676206","3929280","GW","false","" +"BC-0400","403","","344739","3868540","GW","false","" +"BC-0157","138","","380978","3891240","GW","true","" +"OG-0037","","","642467","3818730","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2.5 miles on CR 17. Turn left south on track. Drive 0.5 miles. Turn left east and drive 0.2 miles to well." +"NM-26148","","","157225","4030660","GW","false","" +"NM-12342","","","557046","3672590","GW","false","" +"SB-0721","TWDB 4916801","","398849","3513992","GW","false","" +"NM-10821","","","554073","3648150","GW","false","" +"NM-20453","","","677091","3846110","GW","false","" +"UC-0056","","","659979","4008302","GW","true","elv 4790 acc to USGS" +"SB-0248","TWDB 4807305","","487010","3538781","GW","false","" +"EB-682","","","403021","3926339","SP","true","On Gallina Creek east of Hwy 14" +"BW-0659","21S4E12.413","","360334","3596070","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01226","","","671740","3888140","GW","false","" +"NM-08600","","","670650","3621600","GW","false","" +"NM-04098","","","345023","3534050","GW","false","" +"NM-01095","","","620689","3852340","GW","false","" +"QY-0542","17.36.28.431","","670436","3948950","GW","true","" +"NM-07381","","","207838","3604630","GW","false","" +"NM-24209","","","476953","3930620","GW","false","" +"TS-041","","","435676","4041241","SP","true","Small seep on east side." +"NM-19935","","","600016","3835030","GW","false","" +"NM-14177","","","532722","3698380","GW","false","" +"TO-0418","9N9E32.131","","407508","3869430","GW","true","" +"BW-0697","2.1.16.27.444","","477439","3792830","GW","true","" +"NM-28217","","","171302","4074030","GW","false","" +"NM-09900","","","559057","3635190","GW","false","" +"NM-26615","","","193515","4075820","GW","false","" +"MI-0305","","","475771","3914471","SP","true","Topographic situation: Valley" +"NM-25906","","","238124","4006610","GW","false","" +"NM-24836","","","413146","3945800","GW","false","" +"NM-23726","","","197567","3917590","GW","false","" +"NM-12030","","","563321","3667330","GW","false","" +"NM-01273","","","342825","3877420","GW","false","" +"NM-26809","","","161710","3654090","GW","true","" +"NM-18312","","","673936","3805400","GW","false","" +"NM-21454","","","630680","3873680","GW","false","" +"NM-06598","","","671492","3586250","GW","false","" +"NM-11098","","","557424","3652240","GW","false","" +"NM-11849","","","286030","3666880","GW","false","" +"NM-07348","","","277573","3602010","GW","false","" +"AH-021","E001","","437814","4037759","GW","true","" +"SB-0747","TWDB 4924405","","395426","3505958","GW","false","" +"NM-00603","","","657036","3666490","GW","false","" +"BW-0040","22S5E29.232","","363410","3582090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24930","","","409170","3947970","GW","false","" +"DA-0106","24S3W17.44","","296084","3566340","GW","true","" +"NM-18469","","","570245","3806070","GW","false","" +"NM-28181","","","159482","4014330","GW","false","" +"NM-22068","","","387086","3883150","GW","false","" +"SB-0106","TWDB 4718101","","513239","3508424","GW","false","" +"NM-24633","","","413334","3941800","GW","false","" +"NM-17026","","","323158","3782610","GW","false","" +"NM-20993","","","582342","3858390","GW","false","" +"SA-0002","SA-2_R00","","257015","3795391","GW","true","Northeastern most well on farm. Diesel tubine. Has metal roof over well, engine and fuel tanks. East to sprinlker pivot. Another well about 250 yards WNW of this well." +"NM-23888","","","411593","3918400","GW","false","" +"NM-13232","","","565126","3687950","GW","false","" +"ED-0198","22S26E14.213","","569448","3584800","GW","true","" +"NM-07725","","","228626","3610340","GW","false","" +"NM-07553","","","597833","3604480","GW","false","" +"NM-17355","","","370544","3786590","GW","false","" +"NM-17921","","","641801","3798170","GW","false","" +"SM-1093","","","445889","3628465","SP","true","" +"AR-0161","D008","NMED 381","234703","4083789","GW","true","From Aztec @ intersection of Hwy 516 & Ruins Rd at traffic light, drive north on Ruins Rd and continue on Rd 2900 through monument for 3.2 miles. Look for sign on right ""Espinozas Hadleys"" and turn right on dirt drive. Drive 0.1 mile, cross ditch, turn right and Hadley house is at end of driveway. Well is in front yard by carport." +"SD-0129","10N.5E.2.222a","","375574","3887990","GW","true","8 feet from well 10.5.2.222." +"NM-26866","","","228806","3907700","GW","true","" +"NM-24127","","","414468","3928840","GW","false","" +"NM-12241","","","275463","3673190","GW","false","" +"NM-09759","","","558991","3633250","GW","false","" +"NM-24419","","","400047","3937130","GW","false","" +"NM-17023","","","236440","3784580","GW","false","" +"QY-0351","11.35.23.222","","664624","3893410","GW","true","" +"NM-21544","","","357863","3877150","GW","false","" +"DE-0120","","","672757","3615968","GW","false","" +"BW-0904","4.24.19.18.344","","495886","3563910","GW","true","" +"NM-09142","","","202231","3631100","GW","false","" +"NM-12787","","","545927","3680290","GW","false","" +"NM-21543","","","347370","3877250","GW","false","" +"EB-580","","","414737","3928082","GW","true","" +"NM-21422","","","345712","3872730","GW","false","" +"BW-0549","16S10E7.400a","","410556","3643130","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0525","14S9E9.4","","398778","3663980","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11641","","","631176","3662280","GW","false","" +"NM-12472","","","631226","3675860","GW","false","" +"NM-10064","","","333317","3638780","GW","false","" +"NM-24743","","","407322","3944380","GW","false","" +"NM-07904","","","311616","3611170","GW","false","" +"NM-19289","","","638115","3824270","GW","false","" +"NM-22545","","","395679","3888130","GW","false","" +"NM-26318","","","674154","4045950","GW","false","" +"NM-27110","CH-26","","435734","3999480","GW","false","" +"NM-24015","","","397207","3924400","GW","false","" +"NM-11687","","","285199","3664490","GW","false","" +"NM-22915","","","236789","3895820","GW","false","" +"NM-26623","","","448122","4070780","GW","false","" +"NM-27771","","","569330","3795130","GW","false","" +"NM-05366","","","234720","3567230","GW","false","" +"NM-04208","","","246211","3541410","GW","false","" +"PC-111","PW-193","","365689","3909165","GW","true","" +"NM-16809","","","653466","3779030","GW","false","" +"NM-21831","","","348937","3881510","GW","false","" +"NM-03763","","","166867","3513370","GW","false","" +"NM-17373","","","645757","3787070","GW","false","" +"NM-26785","","","620838","3892950","GW","false","" +"NM-06634","","","373307","3586170","GW","false","" +"SA-0110","","","240638","3769211","GW","true","From Hwy 60, 1/4 mi W of mile marker 81. Turn S on county road. Follow for 7.5 mi to Hand Ranch HQ. Turn up driveway to W, go to house, through gate to corrals. Follow 2 track to NW 1.6 mi to intersection, turn S. Go 1.8 miles. Well through gate." +"NM-15566","","","142950","3749980","GW","false","" +"NM-23033","","","391171","3894310","GW","false","" +"NM-05330","","","256025","3566110","GW","false","" +"BC-0445","448","","","","GW","false","" +"NM-13497","","","540654","3691260","GW","false","" +"NM-02072","M-073","","265488","3558724","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 miles. Go south on B047/Marana Rd for 2.0 miles. Park on SE corner of Morana & Aquila Rd, past cattle guard and across from small substation. Have to scramble through barbed fence to well covered in grey plastic suitcase." +"NM-23413","","","228170","3906530","GW","false","" +"NM-18370","","","636629","3805640","GW","false","" +"NM-07755","","","675774","3608750","GW","false","" +"BC-0367","","","379424","3893134","GW","false","" +"NM-27038","","","324104","3788020","GW","true","" +"NM-15277","","","680201","3739410","GW","false","" +"WS-201","","","386084","3636582","PS","true","" +"NM-19174","","","360915","3820650","GW","false","" +"NM-25769","","","396731","3995740","GW","false","" +"NM-28395","N-2016-096","","558277","3625130","GW","true","" +"NM-25153","","","579309","3958290","GW","false","" +"NM-19704","","","580396","3831080","GW","false","" +"NM-03668","","","446256","4077630","GW","false","" +"DE-0337","","","569110","3626790","GW","false","" +"NM-17960","","","661018","3799850","GW","false","" +"NM-28292","148887","","155819","3743892","SP","false","Gila National Forest" +"NM-12732","","","557729","3679590","GW","false","" +"NM-12129","","","555537","3669190","GW","false","" +"NM-21280","","","382470","3868910","GW","false","" +"NM-19204","","","551039","3820580","GW","false","" +"BW-0523","14S9E28.2","","398738","3659930","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DE-0384","","","569003","3626867","GW","false","" +"NM-06543","","","676059","3585160","GW","false","" +"NM-01170","","","627373","3874180","GW","false","" +"NM-26545","","","581252","4065800","GW","false","" +"NM-05397","","","261789","3567170","GW","false","" +"NM-28234","","","164184","4077000","GW","false","" +"NM-19155","","","568822","3818910","GW","false","" +"SM-1041","","","430358","3629684","SP","true","" +"NM-04135","","","171977","3540410","GW","false","" +"NM-18789","","","157628","3817530","GW","false","" +"TB-0171","","","427256","3720584","GW","true","Hwy 380 to Basin Valley Rd on north side. Take this to 2nd house on R (east) side. Street address 110 Basin St." +"BW-0262","15S9E12.442","","403799","3653990","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0916","8.33.24.343","","645940","3862750","GW","true","" +"NM-26724","","","445664","4083321","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Then right (north) on State Line towards red barn. Located at first dog-leg on State Line Rd., north of red barn." +"NM-11072","","","668570","3653330","GW","false","" +"NM-00175","","","600131","3572880","GW","false","" +"NM-10338","","","549380","3641820","GW","false","" +"NM-14473","","","543974","3705630","GW","false","" +"NM-19484","","","600888","3827460","GW","false","" +"NM-06320","","","667792","3580890","GW","false","" +"NM-03950","","","342461","3524600","GW","false","" +"NM-20177","","","610681","3839520","GW","false","" +"NM-02866","","","543195","3718250","GW","false","" +"NM-06964","CR-2015-004","","645950","3592780","GW","true","" +"NM-26411","","","166794","4066170","GW","false","" +"NM-15848","","","665184","3752080","GW","false","" +"NM-02020","","","358191","3551660","GW","false","" +"NM-19105","","","658298","3818920","GW","false","" +"NM-14984","","","470622","3726480","GW","false","" +"NM-22677","","","347336","3890410","GW","false","" +"NM-27838","","","608813","3779180","GW","false","" +"NM-15916","","","676344","3754500","GW","false","" +"NM-18270","","","623478","3803420","GW","false","" +"SB-0779","TWDB 4932102","","396401","3498126","GW","false","" +"NM-04181","","","244191","3540480","GW","false","" +"NM-17646","","","622182","3791110","GW","false","" +"QY-0985","9.34.22.132","","652540","3873770","GW","true","" +"NM-01411","","","638128","3933990","GW","false","" +"NM-08554","","","672067","3621010","GW","false","" +"NM-01295","","","227535","3908260","GW","false","" +"NM-22265","","","247586","3887920","GW","false","" +"NM-21680","","","340339","3879500","GW","false","" +"NM-08084","","","198924","3616550","GW","false","" +"AR-0098","NMED 330","","243692","4092040","GW","true","Take Hwy 550 N to Cedar Hill. In Cedar Hill take right on Rd 2350 and follow to address at end of road." +"NM-02466","M-172","","215778","3606440","GW","false","" +"SD-0145","10N.5E.11.342","","374410","3885060","GW","true","" +"NM-00443","","","623680","3637720","GW","false","" +"NM-07039","M-156","","251402","3596201","GW","true","Go 14.4 NE on NM26 from intersection w/US180. Go left on CR A019 Cookes Canyon Road, go 5.2 miles northwest, left on A020 1.0 mile to Ledrew Hyatt house. Well thru gates behind barns under tall rectangular frame of brown pipe." +"PC-064","PW-114","","373734","3912237","GW","true","" +"SD-0296","11N.7E.14.112","","393326","3894020","GW","true","" +"NM-01563","","","407054","3986980","GW","false","" +"NM-24792","","","413391","3945060","GW","false","" +"NM-06521","","","541389","3583330","GW","false","" +"MB-0005","","","242236","3561406","GW","true","From intersection of Gold and Pine St in Deming, go South on NM-11 for 7.6 mi. Go left on Durango road and 1 mi to Simmons house. Shane Franzoy leases farm to Lona Simmons, (575) 544-1285." +"NM-09885","","","646239","3636310","GW","false","" +"NM-22357","","","431678","3885690","GW","false","" +"NM-14817","","","337380","3721380","GW","false","" +"NM-20851","","","660400","3856400","GW","false","" +"NM-17464","","","630791","3788390","GW","false","" +"NM-15293","","","565021","3737720","GW","false","" +"NM-18539","","","656032","3808470","GW","false","" +"NM-24615","","","673177","3942470","GW","false","" +"AB-0120","S145","","341713","3895900","GW","true","" +"EB-255","","","417530","3962862","GW","true","Off CR 76B" +"NM-17695","","","325012","3792750","GW","false","" +"NM-18649","","","629951","3810130","GW","false","" +"NM-26169","","","319350","4027860","GW","false","" +"NM-08553","","","556781","3619650","GW","false","" +"NM-04863","","","133254","3562370","GW","false","" +"SB-0395","TWDB 4808405","","490415","3531696","GW","false","" +"NM-05826","","","249404","3572800","GW","false","" +"NM-15448","","","415365","3741470","GW","false","" +"NM-23721","","","641546","3913320","GW","false","" +"NM-14938","","","645112","3725350","GW","false","" +"NM-26217","","","639480","4032030","GW","false","" +"SB-0522","TWDB 4845602","","461275","3463507","GW","false","" +"NM-07347","","","342178","3600780","GW","false","" +"NM-21695","","","397270","3878870","GW","false","" +"SV-0051","07 La Quinta","","378445","3898654","GW","false","Unit 2 Lot 38" +"NM-12726","","","629298","3680640","GW","false","" +"NM-03335","","","348614","3877330","GW","false","" +"NM-01578","","","475066","3993410","GW","false","" +"TO-0082","4N8E1.144","","403224","3829480","GW","true","" +"NM-14096","","","551451","3697350","GW","false","" +"NM-22501","","","374487","3887870","GW","false","" +"NM-19678","","","548845","3830490","GW","false","" +"NM-15154","","","255244","3735450","GW","false","" +"NM-03434","","","428566","3895570","GW","false","" +"NM-25953","","","388888","4006350","GW","false","" +"NM-00682","","","472037","3690510","GW","false","" +"NM-26860","","","497618","4069560","GW","true","" +"BW-0463","25S7E16.121","","383527","3556260","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05477","","","241207","3568760","GW","false","" +"NM-06683","","","570370","3586630","GW","false","" +"NM-00522","","","665211","3652060","GW","false","" +"NM-18891","","","497730","3813080","GW","false","" +"NM-00781","","","464418","3705840","GW","false","" +"NM-21921","","","676768","3882500","GW","false","" +"NM-16339","","","562304","3767580","GW","false","" +"SA-0159","","","253518","3722558","GW","true","From the town of Dusty, take 52 south for 2.9 miles. Look for gate to west (R). Gate Combo is 1920. Go through gate, cross the creek. At house and corral complex, turn north (R)and follow 2-tack along the base of hill for 0.75 miles. Look for gate in fence line to east (R). Go through gate, follow 2-track to Alamosa Creek. Turn north (L), and drive up creek for about 500 ft, then drive up onto the flats to the west of the creek bed. Drive across the flats for about 0.3 miles. Look for wooden windmill towner, and concrete water tank. Hand dug shaft is under tower." +"BC-0062","181","","381483","3889380","GW","true","" +"NM-23746","","","639184","3914230","GW","false","" +"NM-05571","","","238665","3569780","GW","false","" +"NM-24101","","","447894","3927600","GW","false","" +"UC-0213","","","601397","4064412","GW","false","" +"SD-0359","9N.7E.32.111","","388222","3870110","SP","true","" +"SA-0469","6S14W19.211","","192218","3742650","GW","true","" +"SM-1046","","","438287","3626457","SP","true","" +"SV-0010","15 Calle Lomita","","376865","3900217","GW","false","Unit 3 Lot 78" +"NM-03868","","","135839","3526100","GW","false","" +"BC-0260","261","","379703","3887150","GW","true","" +"NM-02636","","","550107","3636830","GW","false","" +"NM-13687","","","550255","3693830","GW","false","" +"UC-0096","","","633924","4077178","GW","true","Start in Clayton at beginning of NM 370 (Lake Highway). Go north on NM 370 38.8 miles to intersection with Ridge Road. Go west on Ridge Road 2.6 miles to cattle guard on north side of road, go over guard and thru gate to windmill immediately ahead." +"BW-0233","14S10E17.314","","405909","3662480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06910","","","668498","3591810","GW","false","" +"SA-0024","SA-24_R00","","213256","3776420","GW","true","Call owner and go N at sign to Walkabout Creek Ranch ~0.6 mi. Two wooden WM towers, measure Irrigation well under N wooden tower." +"AH-054","VALUS","","436101","4040875","GW","true","" +"BC-0422","425","","376763","3890230","GW","false","" +"NM-18977","","","676910","3816950","GW","false","" +"NM-15790","","","172051","3754360","GW","false","" +"NM-06892","","","650117","3591240","GW","false","" +"NM-07724","","","297521","3608610","GW","false","" +"NM-03929","","","344551","3523730","GW","false","" +"NM-11906","","","286742","3667450","GW","false","" +"NM-15203","","","650300","3736250","GW","false","" +"NM-14011","","","669088","3698170","GW","false","" +"SM-0127","","","473549","3627684","GW","true","" +"SB-0468","TWDB 4824401","","488366","3507621","GW","false","" +"NM-06037","","","328345","3574700","GW","false","" +"NM-27756","","","611058","3784320","GW","false","" +"NM-20198","","","676427","3840920","GW","false","" +"SM-0032","","","422587","3645221","GW","true","Take US 82 to Karr Canyon Road in Mtn. Park. Head south on Karr Canyon ~ ยพ mile past the school. The orchard is too far, as is Peaceful Valley Road. This well is adjacent to the power pole at the end of the guest house driveway, which is the STEEP gravel drive on the right (west) just before the main house drive. Main house driveway has white metal gate and house is in valley on right, #74." +"NM-15597","","","558911","3744180","GW","false","" +"NM-12179","","","556258","3670000","GW","false","" +"NM-11840","","","288152","3666680","GW","false","" +"NM-08529","","","412995","3619310","GW","false","" +"NM-01407","","","521396","3932560","GW","false","" +"EB-208","","","414459","3958298","GW","true","East side of facility road, north of amphitheatre, south of maintenance bldg, beside concrete bldg and storage tank; SEE ALSO EB-178 Stable well" +"NM-08103","","","544864","3612420","GW","false","" +"NM-23272","","","632131","3899370","GW","false","" +"HS-066","TC-066","","286429","3675538","GW","true","Exit 79, Highway 181, take county road on SW side of road before bridge. Take truck route at fork. On left side after green cattle fence next to wooden electrical pool." +"NM-03931","","","342159","3523800","GW","false","" +"NM-04585","","","137015","3557390","GW","false","" +"NM-18625","","","656849","3809950","GW","false","" +"NM-16581","","","223630","3777860","GW","false","" +"NM-17905","","","644770","3797970","GW","false","" +"NM-05857","","","249469","3573330","GW","false","" +"CX-0005","30N24E3.43","","555779","4079120","GW","true","" +"NM-04690","","","264192","3555530","GW","false","" +"NM-25222","","","476509","3962510","GW","false","" +"NM-04757","","","129896","3560300","GW","false","" +"NM-16059","","","224058","3760880","GW","false","" +"NM-10572","","","553778","3645130","GW","false","" +"NM-01965","M-049","","233721","3548874","GW","false","From intersection of CR27 and CR23, go south on CR27 for 2.0 miles. Go west at the corral with a windmill and go 1.0 miles. Go north at the end of the fence for 0.5 miles.Go west for 0.75 miles to the barbed gate on the left side of the road. Well located in back of the lot with abandoned houses, near power poles." +"NM-21882","","","353575","3881590","GW","false","" +"NM-18348","","","663761","3805680","GW","false","" +"NM-14702","","","562132","3715150","GW","false","" +"NM-25465","","","409043","3974720","GW","false","" +"NM-27921","","","582505","3828780","GW","false","" +"CX-0160","78","","545097","4024580","GW","true","2 1/2 miles north of Taylor Springs" +"NM-16481","","","546259","3771550","GW","false","" +"NM-25166","","","631516","3959940","GW","false","" +"NM-05891","","","243171","3573880","GW","false","" +"NM-22081","","","359815","3883710","GW","false","" +"NM-05641","","","260258","3569980","GW","false","" +"NM-03461","","","425814","3905330","GW","false","" +"NM-22546","","","275217","3890310","GW","false","" +"NM-00856","","","380826","3745320","GW","false","" +"NM-13162","","","554376","3686990","GW","false","" +"NM-18285","","","656057","3804080","GW","false","" +"NM-08236","","","571189","3614510","GW","false","" +"NM-07061","","","238242","3596790","GW","false","" +"NM-16092","","","678935","3760130","GW","false","" +"NM-26108","","","654926","4022250","GW","false","" +"NM-23658","","","357380","3910800","GW","false","" +"NM-04946","","","580845","3557240","GW","false","" +"QY-0488","15.37.19.312","","676071","3931370","GW","true","" +"TC-318","","","427524","4085326","GW","true","" +"NM-00619","","","650453","3670450","GW","false","" +"SB-0597","TWDB 4863101","","478807","3440706","GW","false","" +"SD-0143","10N.5E.11.313","","374113","3885450","GW","true","" +"JM-005","","","327722","3640834","GW","true","" +"NM-28189","","","158444","4033080","GW","false","" +"TO-0176","5N8E18.421","","396071","3835820","GW","true","" +"NM-13094","","","555261","3685950","GW","false","" +"NM-20761","","","401601","3852720","GW","false","" +"MI-0070","","","621884","3910993","GW","true","Topographic situation: Valley" +"NM-16114","","","285186","3761090","GW","false","" +"MI-0310","","","441076","3925650","SP","true","Topographic situation: Valley" +"NM-11511","","","658739","3660870","GW","false","" +"NM-23243","01 Prado Vista","","378942","3898838","GW","true","01 Prado Vista; Unit 2 Lot 35" +"NM-05745","","","335666","3569520","GW","false","" +"NM-20257","","","635926","3841340","GW","false","" +"UC-0147","","","666243","3977482","GW","false","" +"NM-14877","","","647720","3723330","GW","false","" +"NM-15164","","","279326","3735390","GW","false","" +"TO-0451","10N8E13.133","","404497","3883700","GW","true","" +"AB-0150","S198","","316760","3860630","GW","true","" +"NM-04257","","","343060","3541380","GW","false","" +"NM-22787","","","611374","3891080","GW","false","" +"NM-01665","","","309995","4043060","GW","false","" +"EB-223","","","399840","3938918","GW","true","Take Los Pinos Road and turn west on Cerro del Alamo. Road turns toward the north. House is 42 Cerro del Alamo on east side of road. Business sign out front for Santa Fe Structures." +"NM-14148","","","297848","3700160","GW","false","" +"NM-06973","","","571612","3591970","GW","false","" +"NM-24596","","","672632","3942000","GW","false","" +"NM-00795","","","444250","3707870","GW","false","" +"QY-0033","10.29.7.212","","600024","3886020","GW","true","" +"NM-26003","","","216123","4015540","GW","false","" +"NM-14782","","","547883","3718770","GW","false","" +"NM-20097","","","601917","3838100","GW","false","" +"NM-14627","","","408735","3712210","GW","false","" +"TO-0038","3N6E29.243","","377681","3813730","GW","true","" +"NM-27241","","","164480","3565090","GW","false","" +"NM-17806","","","614687","3795270","GW","false","" +"DA-0186","22S1E35.334","","329109","3580030","GW","true","" +"SD-0102","9N.6E.34.142","","382354","3869820","GW","true","" +"NM-04980","","","180956","3562550","GW","false","" +"NM-19240","","","652722","3822870","GW","false","" +"AH-052","TOLB","","438100","4041993","GW","true","" +"NM-10414","","","282491","3645260","GW","false","" +"NM-04904","","","138603","3562890","GW","false","" +"NM-01429","","","477197","3937180","GW","false","" +"NM-14232","","","252585","3702160","GW","false","" +"NM-11861","","","640689","3666110","GW","false","" +"NM-12560","","","558628","3676510","GW","false","" +"SB-0732","TWDB 4923508","","388810","3505349","GW","false","" +"QY-0057","10.30.4.433","","612703","3886550","GW","true","" +"NM-25090","","","201709","3958990","GW","false","" +"NM-11034","","","403878","3651150","GW","false","" +"NM-10817","","","662243","3649770","GW","false","" +"TO-0113","4N12E22.234","","438837","3824470","GW","true","" +"NM-25308","","","619228","3967870","GW","false","" +"SV-0048","29 La Cantera","","380264","3898542","GW","false","Unit 2 Lot 76" +"NM-19012","","","661575","3816790","GW","false","" +"TO-0299","7N8E25.411","","404047","3851770","GW","true","" +"SB-0193","TWDB 4757904","","510417","3434194","GW","false","" +"SA-0013","SA-13_R00","","236847","3788885","GW","true","From junction of Hwy 60 & 12 in Datil, drive northwest on Hwy 60 ~2 mi to entrance of Drag A Ranch on north (right) side of road. Turn north and go ~0.1 mi to fork in dirt road. Donnie, the caretaker, house is visible to the east (right). To get to the well, take the west (left) fork ~2.3 mi and the road forks again. Take the right fork thru gate. Windmill is visible ~0.5 mi from gate. **NOTE: From Donnieโ€™s house this road is extremely muddy and treacherous if it is wet. Do not continue down this road if it is wet.**" +"NM-04136","","","347102","3536080","GW","false","" +"MI-0295","","","467187","3966930","GW","true","Topographic situation: Valley" +"NM-09057","M-196","","201647","3629930","GW","false","" +"SO-0060","2N1W9.22","","321718","3809200","GW","true","" +"BC-0241","241","","363415","3892820","GW","true","" +"NM-23916","","","397277","3919540","GW","false","" +"NM-09679","","","625144","3632970","GW","false","" +"NM-01387","","","554466","3926740","GW","false","" +"AB-0003","S004","","340803","3884420","GW","true","" +"QY-0109","10.34.33.333","","650778","3879100","GW","true","" +"NM-15381","","","655823","3741600","GW","false","" +"NM-25914","","","652842","4004580","GW","false","" +"SO-0166","ESC-W05B","","325922","3777116","GW","true","" +"NM-23780","","","408428","3914790","GW","false","" +"NM-02752","","","667682","3664280","GW","false","" +"TC-252","","","441775","4090235","GW","true","" +"BC-0365","ASE-2","","380337","3894648","GW","true","" +"NM-19894","","","591086","3834380","GW","false","" +"NM-17455","","","647627","3788640","GW","false","" +"NM-16926","","","637249","3780750","GW","false","" +"SB-0511","TWDB 4839101","","478917","3481898","GW","false","" +"NM-11051","","","646728","3652370","GW","false","" +"NM-15751","","","171588","3753640","GW","false","" +"NM-15898","","","243441","3755370","GW","false","" +"NM-10068","","","671698","3639210","GW","false","" +"NM-21039","","","408409","3860230","GW","false","" +"NM-06388","","","677050","3582340","GW","false","" +"NM-18391","","","618800","3805610","GW","false","" +"NM-06815","","","672229","3590510","GW","false","" +"NM-12107","","","675357","3670090","GW","false","" +"BW-0514","8S10E2.100a","","418589","3723180","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03691","","","448737","4073603","GW","false","Well located in well house south of the home." +"NM-22943","","","236476","3896380","GW","false","" +"NM-10786","","","468150","3647620","GW","false","" +"SB-0510","TWDB 4838704","","467330","3472537","GW","false","" +"NM-22498","","","381018","3887780","GW","false","" +"QY-0958","9.30.29.434","","611396","3870600","GW","true","" +"NM-21873","","","348542","3881680","GW","false","" +"NM-28290","148473","","165711","3778540","SP","false","Gila National Forest" +"NM-03484","","","395668","3919950","GW","false","" +"NM-19005","","","619791","3815940","GW","false","" +"ED-0045","19S25E15.442","","550192","3613450","GW","true","" +"NM-16318","","","304426","3768780","GW","false","" +"SB-0516","TWDB 4844901","","449971","3460137","GW","false","" +"TO-0310","7N8E35.332","","401814","3849790","GW","true","" +"NM-26313","","","475981","4043910","GW","false","" +"NM-10810","","","658591","3649190","GW","false","" +"NM-25347","","","599082","3970060","GW","false","" +"NM-15368","","","475368","3739590","GW","false","" +"NM-00783","","","450699","3706250","GW","false","" +"NM-17308","","","613191","3785730","GW","false","" +"NM-19094","","","649779","3818780","GW","false","" +"NM-11151","","","657622","3654540","GW","false","" +"SB-0609","TWDB 4864501","","494700","3436930","GW","false","" +"NM-01025","","","678422","3832410","GW","false","" +"WL-0132","","","324198","3774723","GW","true","From I-25, take Escondida exit then go west 0.25 mile to dirt entrance road on left. Well house visible to south. Well in locked well compound." +"NM-24625","","","461408","3941180","GW","false","" +"NM-04732","","","670324","3554780","GW","false","" +"DA-0175","28S3E34.331","","345607","3522030","GW","true","" +"NM-07128","","","659598","3596250","GW","false","" +"NM-04616","","","240331","3555000","GW","false","" +"SD-0133","10N.5E.2.433","","374981","3886580","GW","true","" +"NM-15820","","","628083","3750250","GW","false","" +"SM-1070","","","440803","3617798","SP","true","" +"OG-0055","","","644728","3815634","GW","true","" +"SM-0183","","","480650","3652749","GW","true","Site visit by Jeremiah Morse in June 2007. Hwy 82 to Picacho Rd north. Take to Felix Canyon Rd. Take west fork 3.6 mi and cross Rio Felix. Head west thru Hendrix ranch, over cattlegaurd, to house on left. Well near shed, west of house." +"NM-26499","","","223480","4067110","GW","false","" +"NM-07762","","","186181","3612170","GW","false","" +"NM-07401","","","275859","3603550","GW","false","" +"DE-0122","","","672987","3615969","GW","false","" +"BC-0053","44","","380995","3886660","GW","true","" +"NM-14290","","","547613","3700320","GW","false","" +"PC-147","PPT-1","","367941","3897987","M","true","" +"BW-0403","17S10E19.132","","410061","3630830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0160","TWDB 4742401","","515170","3465632","GW","false","" +"NM-24352","","","434216","3934960","GW","false","" +"NM-11112","","","558695","3652370","GW","false","" +"SO-0207","SAC-W07A","","324641","3791117","GW","true","" +"NM-25005","","","650512","3950570","GW","false","" +"MG-036","","","294932","3776346","GW","true","" +"NM-24256","","","251032","3935420","GW","false","" +"SD-0230","10N.7E.28.424","","391311","3880240","GW","true","" +"NM-03735","","","172151","3500370","GW","false","" +"RA-090","","","388227","4008751","GW","true","Offsite near river." +"NM-03851","","","235761","3522290","GW","false","" +"NM-23246","","","349586","3899280","GW","false","" +"NM-07053","","","281299","3595670","GW","false","" +"NM-02055","M-070","","235135","3558337","GW","false","From well NM-04723, go north on Luca for 0.4 miles. Go west on Hondale for 1 mile. Go north at the gate for 0.5 miles, then west along the north side of the field for about 0.25 miles. Well located to the north of the white shed near the trees." +"NM-07519","","","205371","3607790","GW","false","" +"AH-009","AH-20","","440115","4042874","GW","true","" +"EB-013","","","409375","3944015","GW","true","Hazen Chiropractic; west side of Richards Ave 1st house south of Durango Dr; in pit south of house (need small ladder to access)" +"NM-12051","","","661072","3668860","GW","false","" +"NM-25784","","","404438","3996180","GW","false","" +"NM-02324","","","332968","3577360","GW","false","" +"NM-01494","","","494013","3952820","GW","false","" +"NM-03230","","","646636","3836760","GW","false","" +"NM-06594","","","339724","3586000","GW","false","" +"NM-26443","","","614393","4062240","GW","false","" +"NM-20239","","","599015","3840470","GW","false","" +"EB-139","","","417213","3928915","GW","true","Rancho San Lucas; off Spur Ranch Road" +"NM-27211","","","142439","3528440","GW","false","" +"NM-04077","","","140063","3538030","GW","false","" +"NM-17650","","","670653","3792050","GW","false","" +"NM-12867","","","632112","3683120","GW","false","" +"NM-07661","","","187599","3610770","GW","false","" +"QY-0874","8.30.28.122","","612297","3861860","GW","true","" +"NM-01528","","","593103","3968580","GW","false","" +"NM-00268","","","559033","3595190","GW","false","" +"QY-0012","10.28.1.422","","598797","3886810","GW","true","" +"BW-0792","1.18.15.5.300","","187222","3969140","GW","true","" +"NM-18758","","","639724","3812250","GW","false","" +"NM-07866","","","230095","3612520","GW","false","" +"NM-25047","","","158222","3957940","GW","false","" +"SB-0458","TWDB 4823101","","479812","3508250","GW","false","" +"NM-02175","M-099","","223037","3568329","GW","false","From NM418 and Spruce intersection, go west on NM418 for 10.7 miles. Go south on C046/Pelayo Rd for 1.5 miles. Go east on Red Onion and take first turn-off to the south. Well located east of fenced-in new well." +"BW-0365","17S9E25.132","","408416","3630600","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02014","","","132552","3556750","GW","false","" +"SA-0452","5S13W32.330","","201969","3747250","GW","true","" +"NM-26844","","","547690","3687484","GW","true","" +"NM-26033","","","314315","4016250","GW","false","" +"TB-1002","","","422411","3652996","SP","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end trailer. Go in fencing and head northward. Follow GPS, there is no good trail to site. It's over the fence into Mesc. Res. Spring is buried by branches and in a spring box. No visible water." +"MI-0050","","","442110","3909479","GW","true","Topographic situation: Glorieta Mesa" +"NM-20641","","","353179","3850570","GW","false","" +"TB-0142","","","401891","3670057","GW","true","Hwy 54, north of Tularosa. At Cemex sign, take North gate (not main one). Gate is unlocked, follow road inside gate, south and toward main entrance. Well is just east of big white tower in concrete pad." +"NM-20210","","","254917","3842640","GW","false","" +"NM-03571","","","415950","3978810","GW","false","" +"NM-22089","","","399093","3883310","GW","false","" +"BC-0093","80","","375096","3888700","GW","true","" +"TS-092a","","","437858","4054072","SP","true","Another small spring in zone on east side of river." +"NM-11865","","","286446","3666930","GW","false","" +"NM-23497","","","367329","3907290","GW","false","" +"BC-0327","319","","378985","3885470","GW","true","" +"NM-14090","","","546828","3697270","GW","false","" +"NM-04987","","","655179","3559370","GW","false","" +"NM-01105","","","363405","3854610","GW","false","" +"NM-00283","","","319633","3606300","GW","false","" +"NM-28205","","","649495","4056370","GW","false","" +"NM-20504","","","585858","3846250","GW","false","" +"NM-17632","","","634333","3791190","GW","false","" +"NM-09622","","","225091","3635350","GW","false","" +"NM-19297","","","647699","3824450","GW","false","" +"NM-17554","","","624218","3789970","GW","false","" +"NM-24006","","","474766","3923050","GW","false","" +"NM-27430","","","663387","3674500","GW","false","" +"SA-0226","","","242399","3757584","GW","true","" +"UC-0009","","","662305","4011101","GW","false","" +"NM-09884","","","658041","3636550","GW","false","" +"HS-084","TC-084","","289600","3667757","GW","true","In block 8 in Hot Springs, NM" +"NM-22007","","","394879","3882470","GW","false","" +"NM-06416","","","364736","3582240","GW","false","" +"QY-0567","5.28.31.222","","591026","3831180","GW","true","" +"QU-117","","","445266","4060833","GW","true","Descending hill on Hwy. 522 into Questa, slow to a stop before 45 mph sign at flat. Turn right (south) here. Proceed onto gravel road, up hill past railroad ties to paved road. At top of embankment, turn right into first house." +"ED-0157","22S23E20.213","","535716","3582850","GW","true","" +"NM-04976","","","553362","3557620","GW","false","" +"NM-09094","","","221423","3629900","GW","false","" +"AB-0112","S136","","348271","3890210","GW","true","" +"NM-10095","","","635175","3639200","GW","false","" +"NM-21160","","","638180","3865720","GW","false","" +"NM-21617","","","357322","3878170","GW","false","" +"NM-03213","","","563504","3829350","GW","false","" +"ED-0136","21S27E30.341","","572249","3590020","GW","true","" +"NM-05846","","","245802","3573320","GW","false","" +"NM-10187","","","284310","3641670","GW","false","" +"QY-0192","11.30.14.223","","616357","3894250","GW","true","" +"NM-03888","","","250904","3523700","GW","false","" +"NM-21931","","","368551","3881790","GW","false","" +"NM-05153","","","655126","3561060","GW","false","" +"NM-17521","","","440473","3788530","GW","false","" +"NM-26489","","","584902","4062940","GW","false","" +"NM-10701","","","608401","3646660","GW","false","" +"DA-0171","28S3W15.111","","297394","3528840","GW","true","" +"NM-08907","","","676205","3625580","GW","false","" +"NM-17553","","","637546","3790220","GW","false","" +"NM-09845","","","618326","3635500","GW","false","" +"SO-0091","1S3E2.31","","352072","3791000","GW","true","Benchmark at well." +"NM-18431","","","552426","3805340","GW","false","" +"NM-01809","","","118065","3528370","GW","false","" +"NM-27457","","","557231","3702530","GW","false","" +"NM-26806","","","378895","3885550","GW","true","" +"BW-0417","17S10E31.424","","411234","3627200","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"PP-012","PW-11d","","438545","4002525","GW","true","" +"NM-00991","S031","","323903","3818120","GW","false","" +"NM-21286","","","382446","3868970","GW","false","" +"NM-19319","","","667473","3825130","GW","false","" +"BW-0832","3.21.1.11.431","","321446","3595420","GW","true","" +"NM-22865","","","376395","3892250","GW","false","" +"ED-0011","16S26E18.331","","553653","3642470","GW","true","" +"QU-542","","","444323","4060884","SP","true","Following Embargo Rd to the end, park in loop above the slope. Down to Red River proceed south and find the tailings toe. Find a steel cane marking the pipe. ~50 m west is an excavated pit with discharge into Red River." +"NM-15084","","","146928","3736340","GW","false","" +"TC-401","","","447984","4071123","GW","true","40 feet south of Rio Primero" +"NM-23831","","","367065","3916760","GW","false","" +"NM-07507","","","143382","3609470","GW","false","" +"NM-25401","","","410524","3972450","GW","false","" +"UC-0184","","","593745","4041444","GW","false","" +"NM-25011","","","437617","3949700","GW","false","" +"NM-14522","","","462927","3707350","GW","false","" +"NM-21373","","","378372","3871700","GW","false","" +"MI-0299","","","471195","3964628","GW","true","Topographic situation: Valley" +"NM-09697","","","223578","3636160","GW","false","" +"EB-258","SF-47","","416129","3961521","GW","true","~200 ft off SR592 on Harriets Rd (betwn SFC74 and Rancho Encantado); right side" +"ED-0196","22S26E12.112","","570254","3586430","GW","true","" +"UC-0007","","","672788","4006530","GW","false","" +"NM-13084","","","137513","3692430","GW","false","" +"ED-0285","23S27E6.212","","572852","3578250","GW","true","" +"NM-10299","","","653760","3642550","GW","false","" +"NM-03515","","","627149","3942130","GW","false","" +"NM-09248","","","675869","3629860","GW","false","" +"NM-16573","","","490470","3773570","GW","false","" +"NM-28275","ER-3","","449870","4072950","GW","false","" +"NM-22261","","","599142","3884960","GW","false","" +"NM-13065","","","552884","3685440","GW","false","" +"NM-19580","","","611566","3829460","GW","false","" +"QY-0202","11.30.15.443a","","614657","3892970","GW","true","" +"NM-21717","","","393854","3879270","GW","false","" +"NM-20193","","","169077","3845200","GW","false","" +"NM-03808","","","253207","3520960","GW","false","" +"NM-16222","","","557408","3763020","GW","false","" +"EM-9001","","","194209","3882650","M","true","" +"NM-26973","","","293535","3772590","GW","true","" +"NM-23703","","","374171","3912400","GW","false","" +"NM-04493","","","534298","3548110","GW","false","" +"NM-14362","","","671812","3703420","GW","false","" +"NM-08957","","","656853","3626210","GW","false","" +"NM-16299","","","651262","3767870","GW","false","" +"NM-25981","","","636259","4008650","GW","false","" +"NM-25204","","","179160","3967340","GW","false","" +"NM-09691","","","211842","3636400","GW","false","" +"NM-04549","","","550361","3549960","GW","false","" +"NM-14512","","","255756","3709980","GW","false","" +"NM-01858","","","344036","3531380","GW","false","" +"NM-27103","CAR-25","","428219","4021080","GW","false","" +"NM-04361","","","118145","3551660","GW","false","" +"NM-09981","","","285044","3638330","GW","false","" +"NM-18227","","","264918","3805070","GW","false","" +"NM-25860","","","410237","4000770","GW","false","" +"NM-27507","","","163774","3649770","GW","false","" +"NM-14052","","","546856","3696740","GW","false","" +"NM-15181","","","449701","3733780","GW","false","" +"NM-24529","","","398788","3939330","GW","false","" +"NM-05105","","","267643","3561920","GW","false","" +"NM-02229","","","222937","3571490","GW","false","" +"TV-231","","","439088","4023468","GW","true","From SR 96, go past Los Cordovas, up hill, right at latilla fence, first house on left (pueblo style). Located a couple hundred meters from TV-159 (Fitzgerald @ 4 Samantha Lane). Well in vault." +"BW-0300","16S8E29.121","","392799","3640840","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13013","","","548881","3684560","GW","false","" +"NM-00834","","","446804","3717100","GW","false","" +"UC-0099","","","648498","3966976","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-15015","","","646733","3728890","GW","false","" +"NM-24946","","","407287","3948240","GW","false","" +"NM-09155","","","556270","3627040","GW","false","" +"NM-25154","","","414500","3958360","GW","false","" +"NM-19218","","","678422","3823260","GW","false","" +"NM-20332","","","621889","3842590","GW","false","" +"MI-0184","","","480567","3939164","GW","true","Topographic situation: " +"SD-0319","12N.7E.34.214","","392832","3898880","GW","true","" +"QY-0492","16.34.1.224","","656057","3946550","GW","true","" +"NM-14153","","","554235","3698260","GW","false","" +"SD-0213","10N.6E.27.344","","382574","3880180","GW","true","" +"TO-0262","7N7E4.313","","390359","3853300","GW","true","" +"NM-26939","PW-030","","368512","3906777","GW","true","" +"NM-12068","","","621941","3668810","GW","false","" +"NM-08669","","","554273","3621270","GW","false","" +"NM-02009","","","233810","3553500","GW","false","" +"NM-24249","","","216861","3936220","GW","false","" +"NM-16335","","","661329","3768720","GW","false","" +"SA-0320","","","248920","3702917","GW","true","" +"TB-0147","","","410966","3701186","GW","true","Head back SE through locked gate on Right (W) of gate under windmill. Spring outlet at tank N of windmill." +"NM-12499","","","649358","3677270","GW","false","" +"NM-14863","","","651978","3722930","GW","false","" +"QY-0438","13.33.5.244","","640491","3916670","GW","true","" +"NM-01263","","","675524","3898030","GW","false","" +"NM-24879","","","409534","3946700","GW","false","" +"QY-0901","8.32.16.423","","632235","3864490","GW","true","" +"SA-0337","","","254369","3693904","GW","true","" +"NM-18766","","","656459","3812240","GW","false","" +"NM-09939","","","534206","3635620","GW","false","" +"NM-23713","","","418448","3912140","GW","false","" +"NM-17975","","","625278","3798700","GW","false","" +"BW-0567","16S4E36.1","","360378","3638850","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19283","","","180110","3828110","GW","false","" +"NM-24073","","","335891","3927630","GW","false","" +"SB-0882","21.17.12.343","","484771","3594390","GW","true","" +"NM-12933","","","558175","3682980","GW","false","" +"SM-1062","","","433893","3638720","SP","true","" +"NM-17853","","","594708","3796150","GW","false","" +"NM-11135","","","668249","3653910","GW","false","" +"NM-24413","","","342120","3937750","GW","false","" +"AB-0086","S098","","364402","3870270","GW","true","" +"QU-175","","","445533","4065166","GW","true","" +"NM-26563","","","413404","4067060","GW","false","In No Agua, New Mexico" +"NM-17566","","","646833","3790300","GW","false","" +"NM-08787","","","229950","3626390","GW","false","" +"NM-27291","","","582374","3581710","GW","false","" +"NM-22775","WKR-W4","","360439","3891310","GW","false","" +"NM-20967","","","289738","3859810","GW","false","" +"NM-12374","","","560539","3672980","GW","false","" +"NM-10551","","","674794","3646450","GW","false","" +"NM-14461","","","210765","3709650","GW","false","" +"NM-05564","","","259453","3569200","GW","false","" +"AB-0126","S154","","349051","3880740","GW","true","" +"NM-07171","","","526725","3595540","GW","false","" +"NM-28409","S-2016-015","","633217","3564786","GW","true","" +"EB-541","","","408481","3944772","GW","true","" +"NM-24730","","","407774","3944290","GW","false","" +"NM-13531","","","554012","3691850","GW","false","" +"NM-25396","","","624754","3972820","GW","false","" +"NM-15153","","","653742","3733470","GW","false","" +"TC-291","","","451073","4076023","PS","true","Above headgate on Latir Creek, on Latir Ranch" +"NM-22667","","","674227","3890740","GW","false","" +"NM-05062","","","244019","3561840","GW","false","" +"NM-19423","","","678330","3828070","GW","false","" +"NM-22074","","","351835","3883680","GW","false","" +"NM-17318","","","653857","3786460","GW","false","" +"NM-06479","","","154883","3588300","GW","false","" +"NM-27460","","","548445","3714670","GW","false","" +"NM-24537","","","380343","3939650","GW","false","" +"NM-24244","","","404095","3932000","GW","false","" +"NM-15953","","","653390","3755270","GW","false","" +"SM-1033","","","433178","3634157","SP","true","" +"TO-0455","10N8E23.144","","403488","3882190","GW","true","" +"NM-13329","","","554465","3689420","GW","false","" +"MI-0229","","","600039","3939073","GW","true","Topographic situation: Plateau" +"DE-0251","","","629051","3622682","GW","false","" +"NM-03436","","","236837","3899460","GW","false","" +"NM-20274","","","558560","3840650","GW","false","" +"NM-04736","","","136502","3559940","GW","false","" +"BC-0014","6","","368407","3881650","GW","true","" +"NM-03562","","","407306","3974030","GW","false","" +"NM-28344","237722","","167321","3703819","SP","false","Gila National Forest" +"NM-26386","","","659481","4057780","GW","false","" +"NM-12452","","","356287","3675270","GW","false","" +"NM-18020","","","647370","3800100","GW","false","" +"BW-0896","4.15.26.7.111","","557991","3654800","GW","true","" +"SM-5004","","","443706","3639504","M","true","" +"NM-24037","","","403062","3924960","GW","false","" +"BW-0033","22S4E24.222","","360762","3584220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17048","","","649463","3782630","GW","false","" +"NM-00280","NH-007","","284956","3605046","GW","false","From I-25, exit Hatch. West on NM 26 for 8.3 miles. South (left) on Las Uvas Dairy Rd/E001, continue through sharp right/left at ~0.9 miles to stay on E001. Well located on west side of road at mile 4.0." +"NM-21854","","","368443","3881330","GW","false","" +"NM-01169","","","654486","3873800","GW","false","" +"QY-1022","9.32.33.333","","631488","3869250","SP","true","" +"NM-11415","","","403510","3658610","GW","false","" +"SB-0112","TWDB 4718705","","511902","3503404","GW","false","" +"NM-02135","M-093","","265960","3563610","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.0 miles. Turn east on Monte Vista Rd. Go 1.3 miles and park on north side of road." +"AR-0195","J001","","235644","4084290","GW","true","" +"NM-13848","","","636587","3696080","GW","false","" +"BC-0031","22","","380953","3890660","GW","true","" +"NM-00814","","","452478","3712600","GW","false","" +"SO-0253","SMC-W06B","","314828","3728382","GW","true","" +"EB-299","","","398587","3961476","GW","true","10 Miles down Buckman Rd. NE side of Rd" +"NM-26244","","","445640","4034990","GW","false","" +"NM-27708","","","674012","3797170","GW","false","" +"NM-05673","","","274583","3569870","GW","false","" +"NM-13929","","","551538","3695500","GW","false","" +"NM-14712","","","259244","3718300","GW","false","" +"SA-0183","","","253292","3747448","GW","true","On Hwy 52, between miles 67-68, take driveway to E, toward mountains. Look for house with red metal roof at edge of forest. About 2.3 miles back." +"NM-20278","","","590789","3840960","GW","false","" +"SV-0059","03 Los Cedros","","379076","3898511","GW","false","Unit 2 Lot 14" +"NM-10946","","","679973","3651590","GW","false","" +"NM-09794","","","552540","3633760","GW","false","" +"NM-17251","","","675129","3786250","GW","false","" +"NM-01093","","","638173","3852400","GW","false","" +"NM-16109","","","676651","3760090","GW","false","" +"TB-0239","","","425184","3717526","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and take the road going north across the cattle guard in front of the HQ. Go 3.9 miles west and take the road to the south just past the gravel pit 0.7 miles to gate. From gate stay to the west through the headquarters and take the silver gate to the west to windmill on the north side of the road by the metal tank on the flat. Can exit (or access) from the road coming from the west thru the Saddle Ridge gate near Carrizozo." +"NM-07035","","","368651","3593840","GW","false","" +"NM-19839","","","159525","3839220","GW","false","" +"NM-18670","","","619150","3810240","GW","false","" +"NM-00429","","","285099","3637570","GW","false","" +"NM-15664","","","328795","3747260","GW","true","" +"NM-11076","","","647884","3653150","GW","false","" +"NM-19845","","","676492","3834850","GW","false","" +"NM-14629","","","259809","3715080","GW","false","" +"NM-26640","","","193705","4077830","GW","false","" +"NM-04454","","","340753","3548340","GW","false","" +"NM-18780","","","670711","3812610","GW","false","" +"NM-04856","","","133403","3562120","GW","false","" +"MI-0108","","","546219","3916838","GW","true","Topographic situation: Valley" +"NM-06204","","","625289","3577870","GW","false","" +"NM-18546","","","651170","3808390","GW","false","" +"NM-26449","","","457997","4061800","GW","false","" +"TS-110","","","436814","4043959","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"QU-030","CER-38","","446067","4066465","GW","true","" +"NM-12283","","","554643","3671650","GW","false","" +"NM-26783","","","667467","3883900","GW","false","" +"NM-23421","","","391889","3903550","GW","false","" +"NM-08447","","","677023","3619160","GW","false","" +"NM-07982","","","206878","3614650","GW","false","" +"EB-403","","","404017","3928174","GW","true","" +"QY-0464","14.36.25.133","","674595","3920380","GW","true","" +"NM-07619","","","183136","3610010","GW","false","" +"NM-11962","","","668924","3667450","GW","false","" +"NM-16094","","","669604","3759310","GW","false","" +"NM-14599","","","411195","3710460","GW","false","" +"TC-381","","","443413","4073024","GW","true","" +"NM-10924","","","650837","3650180","GW","false","" +"NM-27614","","","644268","3794010","GW","false","" +"NM-18922","","","661251","3814880","GW","false","" +"NM-14198","","","542973","3698660","GW","false","" +"TC-261","CO-09","","413435","4101627","GW","true","" +"NM-13576","","","642537","3693890","GW","false","" +"NM-02988","","","666308","3776560","GW","false","" +"NM-03960","","","256133","3526690","GW","false","" +"DA-0056","22S2E14.424","","339892","3585330","GW","true","" +"NM-16295","","","220967","3770230","GW","false","" +"EB-064","","","403675","3954970","GW","true","Well at west end of Chisholm Trail, 211 ft north of road at #135 on stucco wall. Enter at guord gate and go west; USGS ID reflects incorrect Latitude" +"NM-16197","","","619760","3762250","GW","false","" +"BW-0566","17S9E1.44","","409700","3636290","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26865","","","175207","3623560","GW","true","" +"NM-14001","","","672090","3697940","GW","false","" +"NM-23111","","","394718","3895870","GW","false","" +"SB-0405","TWDB 4812401","","442513","3521907","GW","false","" +"NM-12494","","","649086","3676400","GW","false","" +"SM-0138","","","454503","3629773","GW","true","By house under old windmill. House is along north side Hwy 24, about 1 mi outside of Weed, about 0.2 mi before Miller Flats Rd (as heading toward Pinon)." +"NM-05620","","","236532","3570390","GW","false","" +"NM-05627","","","238920","3570540","GW","false","" +"SV-0133","21y Canon Escond","","376756","3899305","GW","false","Unit 3 Lot 21" +"NM-18588","","","463674","3807940","GW","false","" +"NM-03360","","","413788","3881090","GW","false","" +"NM-28166","","","408240","3977040","GW","false","" +"NM-19159","","","570809","3819260","GW","false","" +"NM-06218","","","334271","3578630","GW","false","" +"QU-075","MW-12","","444573","4061460","GW","true","See Chevron map of monitoring wells. Further up road from MW-2 (QU-072)." +"NM-25866","","","439454","4001080","GW","false","" +"NM-27607","","","670766","3794240","GW","false","" +"NM-21855","","","368089","3881340","GW","false","" +"NM-26773","","","666129","3662590","GW","false","" +"NM-02735","","","402400","3659110","GW","false","" +"NM-23162","","","288861","3898620","GW","false","" +"BW-0330","16S10E18.241","","410750","3642120","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09842","","","552901","3634410","GW","false","" +"NM-16288","","","300402","3767750","GW","false","" +"NM-22101","","","373416","3883700","GW","false","" +"NM-08921","","","184163","3629170","GW","false","" +"NM-19294","","","615585","3823840","GW","false","" +"NM-13877","","","550221","3695370","GW","false","" +"SB-0462","TWDB 4823901","","488018","3502819","GW","false","" +"NM-11829","","","550044","3664390","GW","false","" +"BC-0336","345","","375889","3884316","GW","true","" +"NM-13309","","","618987","3690030","GW","false","" +"NM-01178","","","328867","3876240","GW","false","" +"NM-19459","","","473988","3826360","GW","false","" +"AB-0214","S270","","345603","3886620","GW","true","" +"NM-22389","","","379204","3886540","GW","false","" +"NM-01907","","","245410","3539830","GW","false","" +"TO-0376","8N10E17.133","","417376","3864630","GW","true","" +"SV-0109","16 Via Entrada","","380126","3897944","GW","false","Unit 2 Lot 5" +"NM-25350","","","326972","3971360","GW","false","" +"NM-14910","","","566536","3723250","GW","false","" +"NM-18846","","","614137","3813040","GW","false","" +"SB-0549","TWDB 4854201","","469980","3457259","GW","false","" +"NM-05248","","","246562","3564980","GW","false","" +"NM-13502","","","563603","3691510","GW","false","" +"NM-24498","","","178584","3943780","GW","false","" +"AH-091","HM-13","","436879","4041882","GW","true","" +"NM-18713","","","671390","3811820","GW","false","" +"NM-13764","","","544360","3694700","GW","false","" +"NM-26022","","","218665","4017620","GW","false","" +"NM-08491","","","291822","3620500","GW","false","" +"NM-19369","","","615690","3825630","GW","false","" +"NM-13874","","","543582","3695310","GW","false","" +"SD-0289","11N.6E.34.244","","383407","3888920","GW","true","" +"NM-21822","","","610866","3880870","GW","false","" +"NM-27101","CAR-19","","428621","4020910","GW","false","" +"NM-22573","","","383003","3888620","GW","false","" +"HS-038","TC-038","","289989","3667658","GW","true","Down alley behind the riverbend spa at Lee's son Jake's home (behind turquoise house)." +"TB-1026","","","424038","3713646","SP","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road several miles to cattle pens, across cattle guard and continue south, bear east 0.4 miles past steel tank on left and up steep hill (total 4.1 miles from pens) Look for rocky wash on hillside to the west and follow eroded rock to spring on crest of hill. (Intermittent seeps below primary outlet)" +"NM-13424","","","543966","3690480","GW","false","" +"NM-19226","","","608087","3821930","GW","false","" +"NM-11389","","","655479","3658750","GW","false","" +"NM-06380","","","364201","3581520","GW","false","" +"QY-0465","14.36.28.234","","670635","3920420","GW","true","" +"NM-10292","","","668052","3642630","GW","false","" +"NM-24847","","","407490","3946010","GW","false","" +"NM-04352","","","343223","3545160","GW","false","" +"NM-22150","","","346861","3884500","GW","false","" +"NM-04957","","","234914","3560630","GW","false","" +"SB-0778","TWDB 4932101","","394608","3498083","GW","false","" +"NM-24651","","","412306","3942210","GW","false","" +"NM-22928","","","607276","3893030","GW","false","" +"NM-14993","","","583064","3727420","GW","false","" +"QY-0047","10.30.2.121","","615412","3887880","GW","true","" +"NM-16870","","","659501","3779720","GW","false","" +"NM-12262","","","536361","3671260","GW","false","" +"NM-02034","","","371642","3553760","GW","false","" +"NM-20785","","","622151","3853500","GW","false","" +"NM-13447","","","623024","3691710","GW","false","" +"NM-13895","","","272002","3697990","GW","false","" +"NM-00572","","","660336","3660160","GW","false","" +"DA-0137","26S2E17.24","","334453","3547210","GW","true","" +"NM-03591","","","592005","3989640","GW","false","" +"DE-0340","","","569315","3626760","GW","false","" +"NM-21380","","","404389","3871580","GW","false","" +"NM-26772","","","222076","4098580","GW","false","" +"NM-17991","","","576361","3798300","GW","false","" +"NM-16011","","","201853","3760200","GW","false","" +"SB-0538","TWDB 4853403","","452995","3450333","GW","false","" +"NM-24622","","","413329","3941360","GW","false","" +"NM-00199","","","584481","3576740","GW","false","" +"EB-031","","","419400","3929425","GW","true","" +"WL-0338","","","398543","3940117","GW","true","Nav system will get to residence address. +Well is located inside garage/workshop detached from residence. Michael will take you to well." +"NM-06157","","","649121","3577390","GW","false","" +"NM-07328","","","214146","3603250","GW","false","" +"NM-22473","","","375344","3887550","GW","false","" +"NM-06372","","","540774","3580530","GW","false","" +"NM-04289","","","547255","3541510","GW","false","" +"NM-12592","","","288762","3679300","GW","false","" +"NM-08840","","","229365","3626930","GW","false","" +"NM-16980","","","622979","3781050","GW","false","" +"SA-0493","4S15W32.124","","182929","3758730","GW","true","" +"NM-03729","","","169541","3496320","GW","false","" +"MI-0008","","","448104","3896610","GW","true","Topographic situation: Canyon Blanco" +"WL-0274","","","424136","3645297","GW","true","Heading east out of High Rolls on US Hwy 82 towards Mountain Park, turn right onto 339 Rd/A-067/Haynes Canyon Rd, after 1 mile turn left to stay on Haynes Canyon Rd. After 1 mile sharp left. Drive thru gate and up hill, follow sign for ""53-56"". Well is next to black storage container and tiny house." +"NM-11755","","","559534","3663640","GW","false","" +"EB-442","","","412001","3934292","GW","true","43 Camerada Road" +"NM-00407","","","411412","3631650","GW","false","" +"NM-20619","","","618414","3849630","GW","false","" +"NM-12569","","","655324","3678220","GW","false","" +"NM-00760","","","456942","3699260","GW","false","" +"DE-0210","","","639467","3628462","GW","false","" +"NM-26356","","","584620","4051260","GW","false","" +"DE-0101","","","659789","3557710","GW","false","" +"SV-0047","26 La Cantera","","380211","3898708","GW","false","Unit 2 Lot 82" +"EB-170","SF-48","","414217","3949028","GW","true","Gravel parking lot at SE corner of Guadalupe & Paseo de Peralta" +"DE-0075","","","639489","3568856","GW","false","" +"NM-05344","","","195730","3567890","GW","false","" +"NM-20758","","","400838","3852700","GW","false","" +"NM-16407","","","261902","3772840","GW","false","" +"NM-04765","","","653433","3555250","GW","false","" +"NM-25301","","","397546","3966920","GW","false","" +"TS-057","","","424335","4011126","SP","true","Large wetland on north side of river, just above Souse Hole rapid on west side of river." +"NM-05233","","","247601","3564590","GW","false","" +"BW-0041","22S5E31.424","","362202","3580170","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13281","","","616406","3689660","GW","false","" +"NM-16302","","","575389","3766530","GW","false","" +"SA-0444","5S13W5.210","","202703","3756570","GW","true","" +"NM-01519","","","646096","3966550","GW","false","" +"NM-06770","","","341763","3589360","GW","false","" +"NM-27064","","","324854","3773840","GW","true","" +"NM-11718","","","563581","3663080","GW","false","" +"NM-24450","","","436398","3937410","GW","false","" +"NM-13170","","","560710","3687120","GW","false","" +"NM-11128","","","482177","3652480","GW","false","" +"NM-14190","","","640748","3699590","GW","false","" +"NM-16064","","","539169","3757100","GW","false","" +"NM-21013","","","549965","3858740","GW","false","" +"SO-0241","SFC-W05A","","312822","3721005","GW","true","" +"NM-20336","","","393146","3842400","GW","false","" +"NM-18727","","","267395","3813150","GW","false","" +"NM-25003","","","412555","3949660","GW","false","" +"SB-0890","25.18.12.124","","494587","3556962","GW","true","" +"NM-03351","","","409328","3879570","GW","false","" +"NM-09566","","","213835","3635080","GW","false","" +"QY-0886","8.31.14.333","","624757","3864040","GW","true","" +"NM-05725","","","258284","3570710","GW","false","" +"NM-01270","","","635864","3899110","GW","false","" +"NM-14720","","","334139","3717340","GW","false","" +"NM-14536","","","656580","3709420","GW","false","" +"NM-04849","","","236449","3559110","GW","false","" +"SB-0853","Mayer 9","","448775","3547065","GW","false","" +"NM-25818","","","599391","3998170","GW","false","" +"TO-0343","8N7E27.433","","391199","3860870","GW","true","" +"NM-00858","","","331862","3971100","GW","false","" +"NM-25589","","","410177","3982750","GW","false","" +"NM-20866","","","594259","3855140","GW","false","" +"NM-14571","","","650904","3710930","GW","false","" +"NM-24975","","","415488","3948800","GW","false","" +"NM-27609","","","577511","3782870","GW","false","" +"NM-08094","","","559220","3612370","GW","false","" +"NM-23097","","","617358","3895960","GW","false","" +"NM-02852","","","547613","3710790","GW","false","" +"SA-1005","","","259109","3717515","SP","true","At north end of Alamosa Creek/Alamosa Canyon Box on West side of channel right at opening of box." +"NM-03395","S125","","348221","3890210","GW","false","" +"NM-02953","","","666112","3753390","GW","false","" +"NM-22329","","","353752","3886300","GW","false","" +"NM-08338","","","297243","3618010","GW","false","" +"NM-12270","","","674729","3673310","GW","false","" +"NM-26756","","","648690","4090830","GW","false","" +"NM-21473","","","598449","3874140","GW","false","" +"EB-081","","","406473","3960061","GW","true","well south of Inn; call 1st" +"DA-0132","26S2W15.44","","308641","3546860","GW","true","" +"NM-22593","","","186517","3893500","GW","false","" +"NM-26824","","","140185","3700900","GW","true","" +"NM-02017","","","341594","3551810","GW","false","" +"PC-032","PW-055","","367179","3907475","GW","true","" +"NM-04428","","","346178","3547550","GW","false","" +"NM-02513","","","128931","3620250","GW","false","" +"QY-0950","9.30.1.211","","617574","3878270","GW","true","" +"NM-18038","","","657796","3800330","GW","false","" +"NM-27266","","","550739","3573860","GW","false","" +"NM-17724","","","664896","3793460","GW","false","" +"QY-0389","12.33.4.411","","641314","3906920","GW","true","" +"NM-09915","","","618397","3636090","GW","false","" +"QY-0031","10.29.6.211","","600071","3887730","GW","true","" +"NM-10394","","","257905","3645520","GW","false","" +"NM-09403","","","557061","3629720","GW","false","" +"NM-04881","","","269797","3558640","GW","false","" +"NM-17042","","","679059","3783340","GW","false","" +"NM-02312","","","159952","3581000","GW","false","" +"NM-04092","","","253925","3535550","GW","false","" +"NM-24187","","","405134","3930200","GW","false","" +"QU-543","","","444251","4060900","SP","true","Following Upper Embargo Rd to the end, park in loop above slope down to Red River. Proceed south and then west into Red River Canyon." +"NM-23427","","","650000","3904490","GW","false","" +"NM-13803","","","544643","3695010","GW","false","" +"NM-14158","","","661409","3699980","GW","false","" +"NM-12082","","","668958","3669940","GW","false","" +"NM-14006","","","535312","3696110","GW","false","" +"NM-24977","","","218373","3952890","GW","false","" +"NM-06108","","","329994","3576300","GW","false","" +"NM-06305","","","675926","3580810","GW","false","" +"NM-25418","","","170650","3978550","GW","false","" +"QY-0468","14.37.6.311","","676103","3926660","GW","true","" +"NM-05003","","","255369","3560640","GW","false","" +"SM-4051","","","451606","3629776","PS","true","Stream flow measurement by Patrick Walsh" +"NM-00614","","","679475","3668570","GW","false","" +"NM-18856","","","573539","3812570","GW","false","" +"SM-0161","","","495942","3623931","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-19085","","","621275","3817600","GW","false","" +"NM-19009","","","576832","3815520","GW","false","" +"NM-10395","","","556571","3642750","GW","false","" +"TC-250","TP-10","","413544","4057896","GW","true","" +"NM-07418","","","290345","3603550","GW","false","" +"NM-23017","","","393521","3894100","GW","false","" +"NM-00764","","","441251","3699860","GW","false","" +"NM-08336","M-186","","198868","3620750","GW","false","" +"NM-01046","","","461822","3838520","GW","false","" +"NM-15824","","","334671","3750970","GW","false","" +"SD-0283","11N.6E.29.131","","378917","3890740","GW","true","" +"QY-0396","12.34.11.344","","653964","3904910","GW","true","" +"NM-12220","","","564854","3670480","GW","false","" +"SO-0152","ESC-E04A","","326035","3777108","GW","true","" +"NM-28185","","","157691","4024130","GW","false","" +"SB-0464","TWDB 4824201","","495895","3511403","GW","false","" +"NM-21444","","","347839","3873430","GW","false","" +"NM-02603","","","555297","3629040","GW","false","" +"QY-0649","5.30.20.333a","","610690","3833320","GW","true","" +"NM-07260","","","657588","3599550","GW","false","" +"NM-15622","","","674171","3746880","GW","false","" +"NM-11918","","","662974","3666670","GW","false","" +"NM-11291","","","402372","3656280","GW","false","" +"NM-22799","","","383468","3891290","GW","false","" +"BW-0717","4.13.25.10.400","","553314","3673920","GW","true","" +"QY-0184","11.30.14.144c","","615557","3893850","GW","true","" +"NM-14868","","","421121","3722270","GW","false","" +"NM-12738","","","552942","3679590","GW","false","" +"NM-14077","","","546157","3697050","GW","false","" +"SA-0244","","","225697","3762526","GW","true","Take Hwy 12 south from Datil. 0.3 miles south of mile marker 60, turn left (southeast) into Coker Ranch (sign ""Coker""). Drive 1.5 miles to ranch headquarters. The road to the well continues straight through gates at ranch HQ. Drive 1.1 miles past HQ (SSE) to fence, turn left (east) and drive 1.5 miles to Hoot well." +"TV-293","K2-2","","446675","4030626","GW","true","" +"SB-0541","TWDB 4853503","","458561","3452341","GW","false","" +"NM-13581","","","627003","3693860","GW","false","" +"MI-0066","","","544454","3907384","GW","true","Topographic situation: Plains" +"NM-12865","","","138971","3689810","GW","false","" +"NM-00961","","","659265","3811220","GW","false","" +"QY-0766","7.29.35.222","","606837","3850570","GW","true","" +"NM-05734","","","677327","3569590","GW","false","" +"NM-09119","","","667622","3628170","GW","false","" +"NM-27673","","","643711","3788650","GW","false","" +"NM-04176","","","244426","3540410","GW","false","" +"NM-26515","","","175076","4069460","GW","false","" +"NM-22629","","","405484","3889040","GW","false","" +"NM-03283","","","403751","3851090","GW","false","" +"NM-08710","","","231433","3625370","GW","false","" +"NM-12970","","","209598","3687940","GW","false","" +"NM-14324","","","544744","3700980","GW","false","" +"NM-04618","","","238338","3555050","GW","false","" +"NM-02288","","","328240","3574700","GW","false","" +"PC-034","PW-057","","367792","3907541","GW","true","" +"NM-13824","","","542602","3695030","GW","false","" +"NM-06485","","","535617","3582690","GW","false","" +"NM-03029","","","642041","3787420","GW","false","" +"TO-0062","4N6E2.424","","382852","3829520","GW","true","" +"NM-09475","","","669196","3631990","GW","false","" +"SA-0247","SA-8_R00","","249866","3798496","GW","false","2.9 miles west of where VLA tracks cross Hwy 60, turn right (north); drive 10.2 miles to cross roads by farm HQ, turn left (west); go 5.6 miles to Rincon WM. Follow signs. Combo 9901 (2/2017)." +"NM-13450","","","633258","3691970","GW","false","" +"NM-08147","","","208547","3617290","GW","false","" +"NM-07151","","","672305","3596710","GW","false","" +"NM-23289","","","233289","3902520","GW","false","" +"NM-06840","","","672979","3590990","GW","false","" +"NM-22992","","","349494","3894430","GW","false","" +"NM-00122","","","479546","3557130","GW","false","" +"NM-19884","","","608883","3834420","GW","false","" +"WL-0122","","","437656","3938834","GW","true","Well in corrugated metal pit behind corral." +"NM-18557","","","568880","3807600","GW","false","" +"SB-0830","Cauhape (Sigstedt ID)","","476470","3588100","GW","true","From junction of Hwys 1437 (Main St) & 2249 (Broadway), go E on 2249 for 3 mi, turn N (left) on Hwy 1576 (hwy alternates between north & east). Take Hwy 1576 north 3 mi, east 1 mi, north 1 mi, east 1.4 mi, then turn N on G-005. Drive N on G-005 for 2.3 mi. Road ends at NM-506, turn E (right) on NM-506 and go 5.6 miles (numerous curves); at intersection, turn E (right) which is still NM-506 but not clearly marked. Continue on NM-506 for 0.5 mi, NM-506 turns N (left), stay on NM-506 for an addl. 9 mi. At intersection, turn W (left) which is still NM-506. Drive NM-506 thru several bends 11.8 mi to Jernigan Draw Rd. Turn N (right) on Jernigan Draw Rd, drive 8 mi to buildings & ranch structures. Road goes thru ranch yard (thru a gate). This Kincaid well is under windmill tower." +"NM-21488","","","266399","3877400","GW","false","" +"QY-0156","11.29.19.231","","599832","3892260","GW","true","" +"NM-26660","","","193650","4078770","GW","false","" +"NM-21169","","","478385","3865070","GW","false","" +"NM-03619","","","675746","4010340","GW","false","" +"NM-24812","","","407534","3945400","GW","false","" +"NM-13445","","","641632","3692090","GW","false","" +"NM-07608","","","183602","3609870","GW","false","" +"NM-18334","","","679780","3805790","GW","false","" +"NM-24406","","","635779","3937290","GW","false","" +"DE-0029","","","589693","3612647","GW","true","From Carlsbad, go east on Hobbs Highway (HWY 62) to junction of HWY 360 (UTM zone 13, easting 592,622 northing 3,599,545). Go north on HWY 360 5.7 mi, then west (left) on CR 235 (Curry Comb Rd). Follow CR 235 (road curves quite a bit) ~5.9 mi, turn north (right) on 2 track. Follow 2 track ~0.5 mi to well located under windmill." +"NM-14335","","","662944","3702410","GW","false","" +"WL-0110","","","441573","4049262","GW","true","Drive on Hwy 522 N from Taos. About 4.5 miles past Arroyo Hondo, turn E on Forest Rd. 493. Drive E about 0.6 miles, road curves S and is Old Hwy 3. Drive 0.7 miles, road curves right. Turn onto Carlitos Rd. Drive 0.2 miles to fork in Rd., take right fork to Johnson house. Well is large dug well in well house behind home." +"NM-21580","","","347752","3877540","GW","false","" +"JM-052","","","295629","3648391","GW","true","" +"NM-01254","","","463841","3894050","GW","false","" +"SM-4005","","","437648","3631995","PS","true","Stream flow measurement by Patrick Walsh" +"NM-14531","","","544352","3707690","GW","false","" +"NM-04071","","","252086","3534490","GW","false","" +"NM-28015","","","357664","3881520","GW","false","" +"NM-09087","","","532679","3625950","GW","false","" +"NM-13588","","","550907","3692640","GW","false","" +"SM-4001","","","442050","3633701","PS","true","Stream flow measurement by Patrick Walsh" +"NM-17846","","","644989","3797010","GW","false","" +"NM-03819","M-004","","271900","3520710","GW","false","Go east from Columbus 14.9 miles on NM-9, turn south on dirt road at cattle guard, windmill of NM-03811 on hill inside bend in road. NM-03819 is ~ 200 yards west of windmill in corral with adjacent solar panels." +"BW-0698","2.2.18.22.422","","496784","3804490","GW","true","" +"NM-27240","","","550299","3557290","GW","false","" +"NM-19740","","","612146","3832020","GW","false","" +"NM-17121","","","650664","3784380","GW","false","" +"NM-02326","","","224844","3579950","GW","false","" +"NM-00626","","","288640","3672920","GW","false","" +"NM-20787","","","639504","3853780","GW","false","" +"NM-10281","","","647011","3642110","GW","false","" +"NM-20608","","","636721","3849520","GW","false","" +"CX-0009","29N24E26.1","","556932","4064410","GW","true","" +"NM-22370","","","647306","3886750","GW","false","" +"NM-07159","","","357381","3596350","GW","false","" +"NM-11385","","","265851","3660370","GW","false","" +"NM-00087","S-2016-063","","584328","3551750","GW","false","" +"NM-24366","","","400156","3935650","GW","false","" +"NM-14354","","","468997","3701420","GW","false","" +"SD-0361","10N.4.5E.13.213","","367236","3884610","SP","true","" +"WL-0021","NM3533126","","420007","3926549","GW","true","Drive into Lamy from west on County Road 33. Well is visible from train depot, about 0.2 miles to SW. To drive to well, drive about 400 ft E on CR 33. Take right (S) dirt road across track, turn right, follow tracks to well. Well is inside well house." +"NM-21255","","","346272","3868870","GW","false","" +"QY-0824","7.32.30.212","","628936","3852430","GW","true","" +"NM-27916","","","574594","3827390","GW","false","" +"SA-0061","SA-61_R00","","248692","3738081","GW","true","From Hwy 60 take County Road 52 (By the VLA) south to MM 61. Roads intersect CR 52 right at MM 61, the road to the east is marked CR E13, two-track road to the west is not marked but is Sullivans Hole Road on GPS. Take two track to west (right) for about 3 miles. Stay on main track bearing left at the top of the mesa and left again at the 2nd homestead past the house to the well under the tower down the hill." +"NM-01378","","","654798","3925040","GW","false","" +"SB-0137","TWDB 4734104","","512878","3480591","GW","false","" +"NM-05304","","","241556","3566030","GW","false","" +"BW-0942","USBR OW01","","408471","3638756","GW","true","Shari Kelley visited wells USBR WW01 and USBR WW02 at this facility, but not this well." +"NM-23530","","","401766","3907900","GW","false","" +"NM-17233","","","644655","3785550","GW","false","" +"WL-0067"," NM3522209","","201984","3626560","GW","true","Need escort to get to well site. When you walk in to wellhouse, well is on the left." +"NM-23145","","","616772","3896350","GW","false","" +"QY-0348","11.35.13.133","","664898","3894520","GW","true","" +"NM-13879","","","545339","3695350","GW","false","" +"NM-11268","","","404001","3655770","GW","false","" +"NM-12032","","","667391","3669120","GW","false","" +"NM-03452","","","660938","3901990","GW","false","" +"NM-01884","","","348368","3536430","GW","false","" +"NM-06659","","","677762","3587930","GW","false","" +"SB-0289","TWDB 4807505","","481304","3532355","GW","false","" +"EB-412","","","404925","3931803","GW","true","" +"NM-26486","","","460329","4062590","GW","false","" +"NM-17483","","","665350","3789490","GW","false","" +"NM-13660","","","552531","3693480","GW","false","" +"NM-25777","","","406611","3995850","GW","false","" +"NM-24017","","","331135","3925470","GW","false","" +"SB-0370","TWDB 4807814","","482241","3527704","GW","false","" +"NM-10845","","","278819","3650700","GW","false","" +"NM-00772","","","442088","3701670","GW","false","" +"NM-02280","","","330200","3574510","GW","false","" +"RA-058","","","421077","4006496","GW","true","" +"NM-11472","","","405591","3659230","GW","false","" +"QU-522","","","442852","4060537","SP","true","Along north side of Red River upstream from fish hatchery." +"SB-0567","TWDB 4854902","","475005","3445701","GW","false","" +"NM-26714","","","447962","4081170","GW","false","" +"NM-02616","","","540827","3630940","GW","false","" +"NM-05553","","","232898","3569680","GW","false","" +"NM-28032","","","342073","3883170","GW","false","" +"BW-0006","20S5E34.133","","366065","3599720","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07682","","","664271","3607360","GW","false","" +"NM-09707","","","224779","3636280","GW","false","" +"NM-26718","","","447966","4081780","GW","false","" +"NM-05858","","","246302","3573400","GW","false","" +"MI-0226","","","594462","3938911","GW","true","Topographic situation: Plateau" +"AR-0158","D005","","243631","4092370","GW","true","From Aztec, take Hwy 550 into Cedar Hill. Turn right onto Rd 2345 then right onto Rd 2343. Turn left onto Rd 2335 and take left bend in Rd. Continue on Rd 2335 around right bend in Rd to address on left." +"NM-09352","","","213961","3633130","GW","false","" +"NM-08519","","","625209","3619570","GW","false","" +"NM-19579","","","544193","3828830","GW","false","" +"TV-253","SO-25","","438917","4020148","GW","true","Enter Stakeout drive from Rt. 68. Take first right at El Mirador. At T, go left. Proceed 0.5 miles to left turn on Calle Altamira. Proceed 0.1 miles to shared well apparatus on left. House #8. Owners (Martin) is 25 yards further on right. Well house and spigot is 15 m from well." +"NM-27922","","","565921","3828770","GW","false","" +"NM-16907","","","677084","3780770","GW","false","" +"NM-04656","","","633248","3553360","GW","false","" +"SD-0062","8N.7E.13.321","","391488","3863710","GW","true","" +"NM-27115","LL-06","","440692","3999790","GW","false","" +"NM-20844","","","415009","3854560","GW","false","" +"NM-11789","","","547118","3663920","GW","false","" +"NM-21759","","","673755","3880990","GW","false","" +"NM-01688","","","474703","4057320","GW","false","" +"QY-0186","11.30.14.144e","","615557","3893850","GW","true","" +"NM-16050","","","621372","3756600","GW","false","" +"NM-25247","","","417644","3964310","GW","false","" +"ED-0060","19S31E28.33","","605005","3610370","GW","true","" +"NM-04201","","","225830","3541750","GW","false","" +"SA-0054","SA-54_R00","","215263","3746820","GW","true","From Datil, take Hwy 12 south past mile marker 66, then take road to left 8.6 miles to ranch HQ. Well at HQ under WM tower. Another well about 40 yards north of 2 wells under tower. Use casing on west side under pumpjack." +"QY-0555","5.27.29.212","","582541","3832700","GW","true","" +"NM-05098","","","262742","3561970","GW","false","" +"EB-334","","","401921","3937456","GW","true","At corner of East Frontage Rd. and Ceramic Court look for Tent Rock construction business on corner. Well on northwest corner of house close to arroyo @ 5 Ceramic Court." +"NM-03443","","","351932","3898870","GW","false","" +"NM-07498","","","311741","3604660","GW","false","" +"NM-27784","","","603337","3788020","GW","false","" +"CP-0026","","","661644","3805967","GW","true","East of Cannon AFB on Hwy 60, turn south on Curry County Rd M (S. Wheaton Road) to address (1501 S. Wheaton Road). Well is ~1/2 mile east of house on gravel road next to two old boxcars." +"NM-01977","","","232191","3550830","GW","false","" +"WL-0026","","","283917","3894707","GW","true","From I-40, take Exit 108 @ Laguna and go west to Hwy 279. Go north on 279 into Bibo and make a right on Moquino Llano Road. Head east into Moquino, then left on Moldanado Road, follow dirt road up and around mound to access from the west side. Well is on SE side of well house. " +"NM-00514","","","618491","3649920","GW","false","" +"NM-11274","","","555848","3655550","GW","false","" +"NM-27478","","","544015","3724790","GW","false","" +"AB-0117","S141","","359693","3852620","GW","true","" +"NM-23830","","","366838","3916760","GW","false","" +"NM-21433","","","653613","3873170","GW","false","" +"TV-192","SW-49","","440787","4023808","GW","true","Along west edge of 15th hole at TCC golf course." +"ED-0038","18S26E2.333","","560033","3626120","GW","true","" +"NM-03506","","","383960","3935260","GW","false","" +"NM-08150","","","552363","3613220","GW","false","" +"EB-046","","","416684","3942075","GW","true","Sebastian De Vargas Grant" +"NM-06709","","","360213","3587850","GW","false","" +"NM-03332","S175","","346256","3877330","GW","false","" +"NM-06607","","","254407","3587880","GW","false","" +"NM-23415","","","667926","3904220","GW","false","" +"NM-11088","","","558853","3652000","GW","false","" +"TO-0131","5N7E9.122","","389163","3838290","GW","true","" +"NM-12936","","","556959","3683000","GW","false","" +"DA-0157","26S3E26.221","","348780","3544190","GW","true","" +"NM-24859","","","408598","3946160","GW","false","" +"NM-19569","","","529548","3828560","GW","false","" +"NM-08151","","","213528","3617200","GW","false","" +"EB-373","NM3590826","","401729","3941231","GW","true","From I-25, take Rt 599 exit and go north. Left on 284 @ light, left on Aviation Dr. Follow dirt road on east side of Airport Rd before entrance to airport (Airport Facility Maintenance sign). Will need Dustin for security access to both gates to well. Follow road to gate, past warehouses & travel trailers on right, stay left down dirt rd. (dirt pile on right of road) to second set of gates. Look for steel corrugated pipe in field on right. Well head w/red cover near this pipe." +"NM-22778","","","393661","3890890","GW","false","" +"NM-22745","","","376196","3890650","GW","false","" +"MI-0089","","","469780","3917093","GW","true","Topographic situation: Hill" +"DE-0389","","","569550","3626667","GW","false","" +"NM-12955","","","556207","3683360","GW","false","" +"NM-26814","","","174406","3759060","GW","true","" +"NM-11020","","","282815","3652860","GW","false","" +"NM-22360","","","393351","3886090","GW","false","" +"NM-14948","","","554934","3724960","GW","false","" +"NM-05634","","","252246","3570140","GW","false","" +"NM-28445","S-2017-004","","604142","3548842","GW","true","" +"NM-13602","","","549459","3692810","GW","false","" +"PC-035","PW-058","","367790","3907537","GW","true","" +"ED-0074","20S28E36.14","","581528","3599830","GW","true","" +"NM-17451","","","648092","3788340","GW","false","" +"NM-12956","","","401249","3683700","GW","false","" +"NM-05715","","","233647","3571260","GW","false","" +"NM-02136","","","335208","3562290","GW","false","" +"NM-20511","","","402451","3846680","GW","false","" +"BW-0468","26S6E34.13a","","375554","3541750","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18886","","","669705","3814600","GW","false","" +"ED-0277","23S26E30.244","","563618","3571240","GW","true","" +"NM-24658","","","410321","3942440","GW","false","" +"NM-19536","","","223973","3831820","GW","false","" +"NM-06354","","","554287","3580250","GW","false","" +"PP-086","PSW-5","","441069","4004744","PS","true","" +"NM-17095","","","619932","3783010","GW","false","" +"NM-24351","","","464527","3934790","GW","false","" +"NM-15319","","","662563","3740050","GW","false","" +"NM-15526","","","133925","3749800","GW","false","" +"NM-17743","","","144527","3799250","GW","false","" +"NM-27823","","","648009","3805270","GW","false","" +"SB-0107","TWDB 4718201","","518026","3510001","GW","false","" +"NM-02171","","","259031","3566870","GW","false","" +"NM-16148","","","656526","3761370","GW","false","" +"QY-0076","10.31.29.222","","621381","3881470","GW","true","" +"SO-0101","3N5E9.424","","369726","3818200","GW","true","" +"NM-25727","","","221235","3996340","GW","false","" +"SA-0153","","","253967","3722652","GW","true","From the town of Dusty, take 52 south 0.8 miles. Look to east (L) for remains of school house foundation. Well located within ruins of school house, look for small diameter steel pipe sticking up through rubble." +"NM-23258","","","382479","3898920","GW","false","" +"SD-0036","7N.7E.19.412","","386304","3853500","GW","true","" +"NM-19392","","","649294","3826690","GW","false","" +"NM-04083","","","183990","3536830","GW","false","" +"TO-0215","6N7E27.343","","390574","3841700","GW","true","" +"SA-0149","","","257288","3710415","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south past the Cupit Ranch HQ (MM45) on the west side of the road and continue south 2.4 miles to the black mailbox on the east side of the road (0.4 miles south of MM43) and take road east up Havil Canyon. Go through gate/cattle guard and follow driveway up Havil canyon past Phelps ranch HQ for 2.6 miles to the Teague House (white house with corrals and outbuildings) Turn east past house through gate (combo 3006) by corral and up steep hill. Follow two track across the top of the ridge for 1.5 miles, past the Gathering Tank well (on left) and follow two track as it winds down off the ridge and back up through green gate down hill and bear south (right) into arroyo. Follow in and out of arroyo approx 0.8 mi thru another gate and on to well. Well is located to the south (right) near trough and water tank, casing is under black tub. Watch for Bulls!!" +"SB-0313","TWDB 4807603","","486007","3534565","GW","false","" +"ED-0386","26S24E11.341","","549916","3546480","SP","true","" +"NM-10192","","","556225","3639600","GW","false","" +"NM-11522","","","282684","3662200","GW","false","" +"NM-17613","","","617762","3790690","GW","false","" +"NM-20119","","","129474","3845190","GW","false","" +"NM-03921","","","345231","3523450","GW","false","" +"NM-00854","","","284553","3744560","GW","false","" +"CX-0062","25N26E10.2","","575920","4030800","GW","true","" +"NM-16461","","","649033","3772610","GW","false","" +"NM-00952","","","606409","3792130","GW","false","" +"NM-25121","","","411156","3955560","GW","false","" +"SA-0509","8S12W32.211","","212638","3719580","GW","true","" +"NM-18129","","","612235","3801370","GW","false","" +"QY-0519","16.36.4.224","","670583","3946790","GW","true","" +"NM-16199","","","615527","3762220","GW","false","" +"NM-23147","","","237046","3899450","GW","false","" +"NM-16142","","","662532","3761440","GW","false","" +"NM-16105","","","586358","3758830","GW","false","" +"NM-14999","","","477524","3727200","GW","false","" +"NM-22020","","","600789","3882570","GW","false","" +"NM-02571","","","561131","3623560","GW","false","" +"UC-0225","","","652166","3986672","GW","false","" +"NM-07843","","","231209","3612240","GW","false","" +"EB-122","","","412026","3952585","GW","true","Monthly water levels" +"NM-21758","","","368022","3880260","GW","false","" +"NM-18707","","","573046","3810380","GW","false","" +"TO-0369","8N9E29.111","","406427","3862170","GW","true","" +"QY-1037","14.35.35.311","","663400","3918590","SP","true","" +"UC-0040","","","669249","4047148","GW","true","elv 4852 acc to USGS" +"NM-12680","","","561203","3678650","GW","false","" +"NM-25054","","","459619","3951730","GW","false","" +"SA-0154","","","254691","3722804","GW","true","From the town of Dusty, take 52 south 1 mile. Look for forest road heading off to east (L). Take this road 0.5 miles. WM located to south (R), look for old wooden windmill tower." +"NM-24997","","","215396","3953480","GW","false","" +"NM-28133","","","659533","3621420","GW","false","" +"BW-0193","14S9E25.14","","403026","3659670","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08309","","","291732","3617450","GW","false","" +"NM-00206","","","580677","3578340","GW","false","" +"NM-02263","","","335556","3572420","GW","false","" +"NM-07332","","","200862","3603730","GW","false","" +"TO-0227","6N8E12.133","","403223","3847160","GW","true","" +"NM-05269","","","678347","3563690","GW","false","" +"NM-03746","","","171441","3508780","GW","false","" +"NM-23996","","","448773","3922610","GW","false","" +"NM-17162","","","219983","3787220","GW","false","" +"NM-13731","","","546274","3694250","GW","false","" +"NM-13826","","","552057","3695110","GW","false","" +"QY-0415","12.35.7.234","","657469","3905510","GW","true","" +"TS-095","","","437302","4047513","SP","true","Good spring emerges from under basalt boulders 30 cm above river on west side." +"NM-05533","","","244933","3568970","GW","false","" +"NM-14572","","","623148","3710410","GW","false","" +"NM-13783","","","645660","3695880","GW","false","" +"NM-10686","","","544530","3646010","GW","false","" +"MI-0165","","","579085","3935022","GW","true","Topographic situation: Valley" +"NM-09293","","","234710","3631910","GW","false","" +"NM-22702","","","346746","3890750","GW","false","" +"NM-25043","","","302850","3953450","GW","false","" +"SB-0727","TWDB 4923503","","387814","3505822","GW","false","" +"NM-07191","","","559551","3596170","GW","false","" +"UC-0102","","","665019","3985292","GW","false","From NESWCD database, not visited by NMBGMR" +"QY-0591","5.29.18.441","","600467","3834810","GW","true","" +"TB-0162","","","434489","3711823","GW","true","130 Nogal Canyon Rd., 2nd driveway on north side of road. Gate with elk. From gate go west to next gate to stone structure." +"SM-0036","","","421216","3625376","GW","true","Take West Side Road from High Rolls about 21 miles to ranch. Stay left at Y at road to Lone Ridge telecom site. Cross cattle guard onto state land, look for Graham Ranch sign on West Side. Open log barrier gate and go onto Graham property. Go past old homestead buildings, and beautiful meadow, go left at fork and go down bombed-out doubletrack power line road to south. At bottom of hill at large rusting water tank, turn right into trees, go ~100 yards, well is in small clearing. Well is not equipped, eprobe ok. 8โ€ steel pipe in larger diameter wellhead. Loose steel plate on top. Installed continuous logger on 1/12/06." +"NM-15548","","","136732","3749750","GW","false","" +"NM-13160","","","138746","3693530","GW","false","" +"NM-12110","","","656058","3669580","GW","false","" +"NM-08854","","","558216","3623510","GW","false","" +"SM-0160","","","490828","3613238","GW","true","Site visit by Jeremiah Morse in June 2007" +"SB-0573","TWDB 4856501","","493938","3448198","GW","false","" +"NM-24152","","","414852","3929460","GW","false","" +"BW-0630","9S9E9.222","","406706","3712320","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22931","","","614764","3893150","GW","false","" +"SA-0077","SA-15_R03","","245740","3774547","GW","true","Four miles west of county line on Hwy 60, go south on Hand Ranch Road 3.4 miles, turn left (east) and go 0.8 miles to gate. Owner prefers to be present for visits. Casing in small wood fence enclosure by pump house. Call first to get combo or have owner open gate. Current gate combo 1925 (Feb. 2022)." +"NM-02178","","","334612","3565870","GW","false","" +"NM-26716","","","446851","4081640","GW","false","" +"NM-22658","","","621591","3889700","GW","false","" +"EB-666","","","407135","3939493","GW","true","" +"CP-0011","NM3527605","","679473","3807816","GW","true","From Clovis go east on Hwy 60 to Texico, then left (north) on Anderson St. and cross over Mildred Ave. Well is in fenced area on east side of road next to concrete block house. Need water operator to access well." +"NM-08485","","","647559","3619290","GW","false","" +"NM-15705","","","661722","3748670","GW","false","" +"NM-01955","","","346881","3545910","GW","false","" +"NM-20908","","","670889","3858100","GW","false","" +"BW-0662","3.13.4.34.310","","292489","3669660","GW","true","" +"AB-0175","S225","","350728","3885670","GW","true","" +"TO-0069","4N6E27.121","","380351","3823850","GW","true","" +"NM-14224","","","551957","3699140","GW","false","" +"NM-25390","","","402347","3972230","GW","false","" +"NM-11892","","","677077","3666700","GW","false","" +"NM-14699","","","587502","3715230","GW","false","" +"NM-25070","","","290861","3954840","GW","false","" +"NM-23452","","","391199","3905000","GW","false","" +"NM-14919","","","364667","3724310","GW","false","" +"NM-09249","","","214837","3631910","GW","false","" +"NM-05929","","","239727","3574370","GW","false","" +"NM-07232","","","345128","3597940","GW","false","" +"NM-25033","","","309397","3952720","GW","false","" +"NM-08671","","","657069","3622400","GW","false","" +"ED-0282","23S27E4.333","","575151","3577130","GW","true","" +"QY-0129","10.36.14.311","","673222","3884710","GW","true","" +"NM-15432","","","472671","3740860","GW","false","" +"RA-052","","","422720","4005643","GW","true","Go through green gate. Well is just past green gate on the right." +"NM-23168","","","235501","3900270","GW","false","" +"NM-04684","","","549796","3552890","GW","false","" +"NM-09554","","","283400","3633210","GW","false","" +"TB-0102","","","414615","3726809","GW","true","Past mile 62 on Hwy 380 (heading west) on south side. Entrance is just east of Valley of Fires with cattle guard and locked pipe gate. Need owner to unlock gate. Go to end of road - windmill with solar." +"AB-0100","S114","","361321","3886830","GW","true","" +"NM-14960","","","149445","3731840","GW","false","" +"NM-21980","","","392190","3882160","GW","false","" +"NM-12538","","","196082","3680670","GW","false","" +"NM-08049","","","655923","3612490","GW","false","" +"EB-279","","","413025","3949523","GW","true","Alto and La Madera Streets" +"QY-0839","7.33.26.221","","645298","3852720","GW","true","" +"NM-01590","","","571445","4000480","GW","false","" +"NM-16736","","","638161","3777930","GW","false","" +"NM-20058","","","656592","3838310","GW","false","" +"NM-21246","","","346134","3868860","GW","false","" +"NM-12742","","","665265","3681400","GW","false","" +"NM-22524","","","630598","3888190","GW","false","" +"AR-0051","","","220096","4073740","GW","true","From Farmington, take Hwy 516 toward Aztec. Turn right on Rancho de Animas Dr. to address. Well is on S part of frontyard." +"NM-01847","","","344306","3529250","GW","false","" +"NM-08361","","","641674","3617360","GW","false","" +"NM-08058","","","210012","3615610","GW","false","" +"NM-26798","CR-2015-006","","661637","3564820","GW","true","" +"NM-08176","","","278637","3615820","GW","false","" +"SB-0066","TWDB 4717215","","506264","3508571","GW","false","" +"NM-25315","","","408875","3968220","GW","false","" +"NM-25437","","","326648","3974560","GW","false","" +"NM-25338","","","408691","3969760","GW","false","" +"NM-08482","","","668914","3619600","GW","false","" +"DE-0242","","","671018","3569638","GW","false","" +"BC-0262","263","","386548","3868490","GW","true","" +"QY-0728","6.31.23.133","","625101","3844000","GW","true","" +"NM-08350","","","676682","3617830","GW","false","" +"NM-05226","","","239189","3564710","GW","false","" +"NM-02868","","","668983","3720350","GW","false","" +"NM-28112","","","206620","3914580","GW","false","" +"NM-22859","","","375964","3892160","GW","false","" +"NM-00096","","","675019","3554670","GW","false","" +"NM-26279","","","645346","4040200","GW","false","" +"NM-02802","","","569395","3687480","GW","false","" +"NM-03424","S157","","350165","3894530","GW","false","" +"NM-09139","","","202126","3631080","GW","false","" +"NM-08993","","","556673","3624890","GW","false","" +"NM-03409","S263","","342591","3892590","GW","false","" +"NM-24888","","","407953","3947000","GW","false","" +"TV-304","RP2000c","","440324","4026228","GW","true","" +"MG-035","","","294960","3776610","GW","true","Cannot access well from house. Come around from south side of property." +"NM-24774","","","660253","3945900","GW","false","" +"NM-01014","","","679199","3828090","GW","false","" +"NM-22929","","","236446","3896230","GW","false","" +"NM-22387","","","380039","3886530","GW","false","" +"NM-01097","","","678967","3854800","GW","false","" +"NM-04989","","","265300","3560340","GW","false","" +"ED-0135","21S27E29.434","","574266","3590090","GW","true","" +"SA-0057","SA-57_R00","","201544","3747190","GW","true","Go ~9 miles S from NM 12 to F-D Cattle Ranch sign. Then about 0.3 mi to ranch house. From ranch house go 6 miles E then 1.5 miles NE, then 1.5 miles N to Diego WM." +"TV-119","","","442022","4024782","GW","true","Mesa Encantada subdivision. East side of Vista Linda, across from intersection at Calle de Milagros, ~10' west of boundary fence in underground cement bunker. (No WL report sent, 1st # I couldn't leave msg, 2nd # someone picked up and hung up.)" +"NM-26227","","","149597","4039060","GW","false","" +"MB-2003","","","209293","3635586","M","false","" +"BW-0305","16S9E3.4","","406331","3646220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10957","","","284822","3652020","GW","false","" +"OG-0030","","","643021","3815893","GW","true","" +"SD-0318","12N.5E.25.331","","375306","3900000","GW","true","" +"MI-0258","","","565505","3951949","GW","true","Topographic situation: Valley" +"SR-0033","","","438863","3945210","SP","true","Pecos Canyon area. From Pecos, follow NM SR 63 5.8 miles, pull off at right (large gravel pile), walk north 100m, follow 4WD road up to La Posada municipal water tank, walk up ridge 200 m, descend to spring south." +"EB-491","","","419620","3932837","GW","true","" +"NM-03164","","","568799","3818570","GW","false","" +"NM-13028","","","561681","3684880","GW","false","" +"BW-0498","7S8E8.322","","395012","3731000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27100","CAR-01","","427640","4024180","GW","false","" +"NM-05084","","","268763","3561620","GW","false","" +"NM-15349","","","655885","3740930","GW","false","" +"AH-023","EMBL","","439374","4041798","GW","true","" +"MI-0286","","","565077","3956410","GW","true","Topographic situation: Plateau" +"TC-414","LLC-12","","442964","4034850","GW","true","" +"NM-08098","","","194604","3616930","GW","false","" +"NM-03741","","","163982","3504920","GW","false","" +"NM-18503","","","139924","3813440","GW","false","" +"NM-00629","","","288159","3674260","GW","false","" +"TO-0217","6N7E35.411","","392510","3840600","GW","true","" +"NM-16438","","","655427","3772010","GW","false","" +"SB-0874","Mayer 35","","429866","3550622","GW","true","From Hwy 62 (road runs east/west south of Dell City), go N on Hueco Ranch Rd, which turns into Loma Linda Rd and then F002 for ~14.5 mi to Camaleche Camp bunkhouse near intersection of F002 & F001. From Camaleche Camp bunkhouses, drive 9.4 mi NE on F003/F001 (past tower on left) and just past F008 turn off. Go N (left) past the โ€˜Grief Tankโ€™ 0.9 mi to well beneath old WM frame." +"TO-0134","5N7E27.244","","391530","3832790","GW","true","" +"NM-13648","","","555399","3693460","GW","false","" +"SV-0066","09 Ojo Chimal","","380320","3901402","GW","false","Unit 3 Lot 149" +"NM-06409","","","152493","3587340","GW","false","" +"NM-19147","","","617248","3819330","GW","false","" +"NM-24690","","","673388","3944570","GW","false","" +"NM-09603","","","553359","3631490","GW","false","" +"BW-0948","","","307335","3912811","GW","true","" +"NM-14299","","","653368","3702040","GW","false","" +"NM-24242","","","410366","3931940","GW","false","" +"QY-0128","10.36.14.211","","673896","3885530","GW","true","" +"NM-04878","","","678456","3557540","GW","false","" +"TO-0437","10N6E26.114","","383647","3881190","GW","true","" +"NM-07617","","","214523","3609130","GW","false","" +"EB-502","","","417279","3942280","ES","true","Arroyo Hondo upstream from US Hwy 285; Location very approximate." +"NM-26078","","","306408","4021050","GW","false","" +"DE-0227","","","639708","3628198","GW","false","" +"NM-08281","","","648520","3615980","GW","false","" +"SD-0173","10N.5E.30.341","","368241","3880300","GW","true","" +"NM-06599","","","336921","3586080","GW","false","" +"NM-22293","","","613164","3885460","GW","false","" +"NM-20971","","","400896","3858030","GW","false","" +"NM-15038","","","142440","3735000","GW","false","" +"NM-27739","","","598694","3781840","GW","false","" +"NM-26441","","","223139","4065790","GW","false","" +"NM-16141","","","671335","3761530","GW","false","" +"NM-26964","PW-044","","368979","3907618","GW","true","" +"NM-27984","","","607551","3876270","GW","false","" +"NM-17390","","","660897","3787970","GW","false","" +"QY-0148","11.28.35.333","","595967","3887980","GW","true","" +"NM-19003","","","573262","3815370","GW","false","" +"AH-083","DM-20","","442916","4042717","GW","true","" +"NM-05526","","","237628","3569190","GW","false","" +"OG-0089","","","655597","3810789","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1.5 miles north on SR 311. Turn right east onto dirt road. Drive 0.75 miles east to well. Well is on S side of road." +"NM-23577","","","224852","3912210","GW","false","" +"SB-0887","24.18.36.410","","494955","3559474","GW","true","" +"ED-0005","16S24E21.2","","538374","3641490","GW","true","" +"NM-15967","","","622446","3754980","GW","false","" +"NM-07532","","","611057","3604310","GW","false","" +"SD-0268","11N.6E.24.112","","385537","3892490","GW","true","" +"NM-27237","","","253304","3558740","GW","false","" +"NM-03022","","","640526","3786250","GW","false","" +"NM-03454","","","608325","3903040","GW","false","" +"SM-0219","","","476219","3674976","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Cross creek at 30.7 miles and at 32.3 miles, look for locked gate on Left (combo 4440). Follow 2-track for 0.8 miles to windmill." +"NM-22042","","","388426","3882910","GW","false","" +"NM-18753","","","574420","3810910","GW","false","" +"NM-10695","","","545334","3646110","GW","false","" +"NM-10184","","","631105","3640410","GW","false","" +"NM-03606","","","489877","3998500","GW","false","" +"NM-16435","","","656499","3772270","GW","false","" +"WL-0113","","","442809","4050221","GW","true","Travel east on Camino del Medio, turn right on Medina Rd to address. Well is located in equipment shed near the northeast end of the property. Difficult to locate, owner will escort you there." +"LJ-001","","","315676","3773291","GW","true","" +"BW-0886","4.1.2.29.340","","337917","3784530","GW","true","" +"AH-048","","","439384","4042223","GW","true","" +"NM-25139","","","414110","3957010","GW","false","" +"BW-0359","17S9E24.222","","409672","3632630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-394","","","405088","3930123","GW","true","" +"SA-0472","6S14W28.330b","","194733","3739670","GW","true","" +"NM-26632","","","193633","4076490","GW","false","" +"NM-17408","","","672203","3788450","GW","false","" +"NM-08698","","","555077","3621830","GW","false","" +"QU-069","MW-25","","444361","4061016","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road. MW-25 and MW-26 are next to each other. MW-26 is further north and MW-25 is further south. Wells are near Roger Herrera's back yard (QU-034)." +"NM-15894","","","247396","3755210","GW","false","" +"NM-26079","","","318032","4020860","GW","false","" +"SM-0208","","","474086","3637673","GW","true","" +"NM-00796","","","453510","3707850","GW","false","" +"NM-09147","","","202393","3631320","GW","false","" +"MI-0237","","","485335","3954150","GW","true","Topographic situation: North slope of hill" +"NM-07312","","","217476","3602780","GW","false","" +"NM-08109","","","559948","3612560","GW","false","" +"NM-24795","","","412913","3945100","GW","false","" +"NM-14682","","","281426","3716820","GW","false","" +"NM-05188","","","235632","3564000","GW","false","" +"NM-07585","","","671153","3606020","GW","false","" +"NM-04979","","","254973","3560490","GW","false","" +"NM-05406","","","221015","3568310","GW","false","" +"NM-26800","","","318600","3849250","GW","true","" +"NM-24740","","","407045","3944320","GW","false","" +"NM-03586","","","639774","3987160","GW","false","" +"NM-20645","","","643237","3850660","GW","false","" +"NM-19803","","","646559","3833610","GW","false","" +"NM-08277","","","674545","3616370","GW","false","" +"NM-12972","","","562075","3683860","GW","false","" +"NM-18745","","","585651","3810880","GW","false","" +"NM-22810","","","241334","3894450","GW","false","" +"NM-28082","","","238691","3903790","GW","false","" +"NM-20673","","","667410","3852400","GW","false","" +"NM-25062","","","656951","3953330","GW","false","" +"NM-01007","","","668720","3825130","GW","false","" +"DE-0303","","","675826","3591594","GW","false","" +"TO-0066","4N6E14.442","","382958","3825970","GW","true","" +"NM-16128","","","657021","3760910","GW","false","" +"NM-25699","","","465269","3988980","GW","false","" +"NM-25839","","","644059","4000390","GW","false","" +"NM-08437","","","659368","3618700","GW","false","" +"NM-11598","","","405092","3661240","GW","false","" +"NM-05431","","","209107","3568980","GW","false","" +"EB-687","","","406645","3954327","GW","true","" +"NM-03038","","","679753","3790440","GW","false","" +"NM-04943","","","262896","3559560","GW","false","" +"DE-0077","","","639634","3568728","GW","false","" +"NM-22075","","","393544","3883130","GW","false","" +"SB-0394","TWDB 4808403","","488449","3534408","GW","false","" +"NM-22324","","","373701","3885940","GW","false","" +"EB-165","","","410472","3957919","GW","true","From Rt 599 (Santa Fe bypass), take exit for Camino de Los Montoyas (north) 2.1 mi to Tano Rd. Turn left (west) on Tano Rd then stay left on Tano Rd (aka Rt 72) at fork (right goes to Tano Norte). Tano Rd becomes dirt, look for driveway on left, 1.7 mi from Camino de Los Montoyas. Number on sign near gate is 410B. Gate code (12/11/2020) is 101 (no # sign needed), which calls Mark Oxford. Follow road 1.7 mi to well." +"NM-21915","","","368601","3881700","GW","false","" +"NM-26733","","","448913","4085717","GW","true","Well is located at owner's physical address (3870 Hwy 522 Costilla). Head east from the house, staying on the road as it turns slightly west. Look for old turbine pump base to the east of the road." +"DE-0352","","","569398","3626646","GW","false","" +"NM-01700","","","590389","4067120","GW","false","" +"LC-007","","","399439","3937177","SP","true","Enter Los Golondrinas, drive through site. Spring is small wet spot along hillslope by cottonwood tree, at road crossing, just above acequia. Just above old building." +"EB-408","","","405630","3944865","GW","true","" +"NM-12383","","","681311","3674660","GW","false","" +"NM-16111","","","196940","3763350","GW","false","" +"NM-24119","","","404638","3928570","GW","false","" +"BW-0873","2.13.4.1.240","","366335","3918220","GW","true","" +"ED-0015","16S31E14.3","","607906","3642590","GW","true","" +"NM-11923","","","285323","3667760","GW","false","" +"NM-01687","","","536073","4056750","GW","false","" +"NM-23712","","","370539","3912670","GW","false","" +"NM-06954","","","195296","3595970","GW","false","" +"NM-24217","","","175282","3936640","GW","false","" +"NM-09850","","","213413","3638480","GW","false","" +"NM-16967","","","622340","3780950","GW","false","" +"NM-24199","","","174650","3936140","GW","false","" +"NM-19230","","","338606","3822640","GW","false","" +"NM-27810","","","600142","3802720","GW","false","" +"NM-19051","","","480718","3816210","GW","false","" +"NM-15446","","","674495","3743250","GW","false","" +"NM-26436","","","223361","4065720","GW","false","" +"NM-04364","","","236371","3548010","GW","false","" +"NM-14488","","","674264","3707810","GW","false","" +"NM-28346","149076","","166019","3631235","SP","false","Gila National Forest" +"NM-17072","","","650661","3782990","GW","false","" +"BW-0844","4.15.10.29.100","","406029","3650130","GW","true","" +"NM-16740","","","296323","3778530","GW","false","" +"DA-0022","20S1E4.121","","326642","3608850","GW","true","" +"NM-08546","","","599538","3620250","GW","false","" +"NM-18403","","","633507","3806090","GW","false","" +"NM-28003","","","344316","3880990","GW","false","" +"NM-03672","","","444073","4083331","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Then right (north) on State Line towards red barn. Turn left (west) at T. Well is at the corner before the next turn north on State Line Rd." +"NM-22528","","","644873","3888440","GW","false","" +"WL-0065","NM3514127","","259425","3645376","GW","true","Going west on Hwy 152 from I-25, after entering Hillsboro, go right (north) on 5th Street (aka Lonnie Rubio Blvd) to well house on left, after residence on the corner. Wells are in chain link fence area west of the well house. Well 2 is second well west of well house furthest from entrance." +"NM-18384","","","622810","3805630","GW","false","" +"NM-05899","","","235372","3574120","GW","false","" +"NM-17989","","","625581","3799010","GW","false","" +"NM-05989","","","679688","3573700","GW","false","" +"NM-12126","","","651749","3670060","GW","false","" +"NM-28081","","","238604","3903420","GW","false","" +"NM-18903","","","659668","3814640","GW","false","" +"NM-12294","","","557129","3671730","GW","false","" +"QY-0152","11.29.13.244","","608411","3893610","GW","true","" +"NM-06175","","","673803","3578100","GW","false","" +"NM-25799","","","295612","3999060","GW","false","" +"NM-27645","","","676092","3795360","GW","false","" +"NM-04560","","","254565","3553380","GW","false","" +"NM-04248","","","260479","3542640","GW","false","" +"NM-03318","","","343077","3867900","GW","false","" +"NM-11199","","","643125","3655520","GW","false","" +"TO-0313","7N9E10.333","","409609","3855990","GW","true","" +"NM-14926","","","610884","3724530","GW","false","" +"NM-06525","","","362488","3584220","GW","false","" +"NM-23590","","","404883","3908820","GW","false","" +"NM-23615","","","243995","3912360","GW","false","" +"NM-08727","","","409716","3622420","GW","false","" +"NM-17944","","","654576","3798710","GW","false","" +"SB-0847","Mayer 3","","444805","3606634","PS","false","" +"NM-15844","","","653268","3751700","GW","false","" +"QY-0026","10.29.26.142","","606126","3880890","GW","true","" +"ED-0008","16S25E14.213","","551300","3643070","GW","true","" +"NM-10100","","","363189","3638940","GW","false","" +"NM-06945","","","277310","3593660","GW","false","" +"NM-04080","","","346845","3532940","GW","false","" +"NM-15198","","","653880","3736060","GW","false","" +"NM-16004","","","651521","3756480","GW","false","" +"AR-0164","D011","NMED 545","241779","4091470","GW","true","From Hwy 550 in Cedar Hill, take Rd 2900 west to address on left. Address is down dirt road and next to river." +"NM-14797","","","565661","3719330","GW","false","" +"NM-23603","","","413849","3908950","GW","false","" +"NM-14514","","","660316","3708220","GW","false","" +"NM-04966","","","676991","3558830","GW","false","" +"NM-23152","","","647520","3896920","GW","false","" +"BW-0368","17S9E25.222","","409658","3631000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-431","","","412561","3933683","GW","true","14 Mariposa Road" +"QY-0670","6.27.8.331","","581423","3846070","GW","true","" +"SM-0226","","","476779","3670509","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. County Road well is located 2.1 miles past the Leonard Headquarters, on the left side of the road. Look for storage tank on left." +"SB-0146","TWDB 4734701","","513812","3473327","GW","false","" +"DA-0021","20S1W23.3","","319932","3603100","GW","true","" +"NM-24647","","","401814","3942130","GW","false","" +"NM-12593","","","281566","3679490","GW","false","" +"NM-25250","","","417420","3964500","GW","false","" +"NM-27548","","","659134","3792310","GW","false","" +"QY-0483","15.35.35.411","","663939","3928090","GW","true","" +"NM-15224","","","666801","3736060","GW","false","" +"BW-0370","17S9E25.324","","408824","3630190","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SM-4025","","","448955","3629590","PS","true","Stream flow measurement by Patrick Walsh" +"NM-06087","","","328624","3575740","GW","false","" +"NM-03705","","","164431","3485320","GW","false","" +"NM-15579","","","660439","3745470","GW","false","" +"NM-16329","","","632557","3768330","GW","false","" +"NM-08375","","","680843","3618270","GW","false","" +"AR-0533","","","226684","4077670","D","true","" +"NM-13908","","","545752","3695440","GW","false","" +"NM-01255","","","653858","3895430","GW","false","" +"NM-14422","","","560345","3704090","GW","false","" +"NM-05759","","","232174","3572040","GW","false","" +"NM-06884","","","681132","3592330","GW","false","" +"NM-21083","","","405230","3862110","GW","false","" +"NM-06444","","","677085","3583330","GW","false","" +"NM-14813","","","428036","3720210","GW","false","" +"NM-27734","","","642016","3790750","GW","false","" +"NM-01740","","","167617","3485710","GW","false","" +"NM-08023","","","241564","3614090","GW","false","" +"NM-00158","","","667205","3570530","GW","false","" +"WL-0292","","","356098","3964046","GW","true","From Jemez Springs, drive ~15 miles north on Hwy 4 to mile marker 33, turn south (right) into Mesa Verde Rd. Drive on Mesa Verde ~0.5 miles, take left fork onto Via Los Pinos and drive ~0.4 mile to 465 Via Los Pinos on west side of road. Well is behind home." +"NM-23009","","","659751","3894790","GW","false","" +"NM-10684","","","545335","3646010","GW","false","" +"NM-10110","","","224862","3642070","GW","false","" +"NM-22784","","","613626","3891070","GW","false","" +"EB-195","","","416613","3958727","GW","true","#76 Lavadero; well is past walk to front door, in rock terrance, by green electric box" +"DE-0169","","","673082","3618910","GW","false","" +"NM-00160","","","440273","3569720","GW","false","" +"EB-133","","","402780","3937785","GW","true","Tranquil Trail & Ceramic Crt; ABANDONED" +"NM-03244","","","399533","3837830","GW","false","" +"TV-294","K2-3","","446675","4030626","GW","true","" +"NM-27313","","","602531","3586300","GW","false","" +"BC-0210","210","","376379","3892210","GW","true","" +"TC-226","WG-33","","423516","4085871","GW","true","" +"QY-0391","12.33.5.333","","638975","3906080","GW","true","" +"NM-11166","","","403177","3653740","GW","false","" +"SB-0512","TWDB 4839701","","477977","3474388","GW","false","" +"NM-26468","","","580861","4062530","GW","false","" +"SM-1067","","","436485","3625470","SP","true","right along road within camp" +"NM-19518","","","655725","3829330","GW","false","" +"NM-01023","","","674587","3831620","GW","false","" +"NM-27936","","","576912","3836010","GW","false","" +"NM-24711","","","404625","3943890","GW","false","" +"NM-00010","","","302256","3523930","GW","false","" +"SB-0748","TWDB 4924406","","395481","3506204","GW","false","" +"NM-20232","","","566214","3839120","GW","false","" +"SM-1050","","","422853","3631247","SP","true","" +"NM-06755","","","207726","3591840","GW","false","" +"EB-392","","","404853","3938331","GW","true","0.2 mi east of S Hwy 14, go east on Camino Bajo to Leo Gurule Park. Well is off SW corner of basketball court outside of fence." +"NM-25359","","","469759","3970200","GW","false","" +"NM-23182","","","656554","3898220","GW","false","" +"NM-00030","","","598063","3542490","GW","false","" +"NM-04916","","","138399","3563050","GW","false","" +"NM-09245","","","625483","3628750","GW","false","" +"NM-07888","","","610709","3609790","GW","false","" +"NM-12399","","","558258","3673370","GW","false","" +"NM-07042","","","667642","3594530","GW","false","" +"NM-05800","","","328253","3570820","GW","false","" +"NM-28434","S-2017-015","","622876","3572661","GW","true","" +"NM-07115","","","280495","3597130","GW","false","" +"NM-27712","","","635994","3796660","GW","false","" +"NM-18497","","","646302","3807850","GW","false","" +"QU-902","","","452083","4064718","M","true","From north on 522, make right (east) on Route 38, then left (north) on Cabresto Road. Up Forest Road 134 (Cabresto Creek) to #445. Make hairpin turn to right. Follow dirt road to left and end. Park at end of road. Walk ~20 meters to north." +"NM-19291","","","635234","3824260","GW","false","" +"SV-0104","03 Via Entrada","","381301","3898331","GW","false","Unit 1 Lot 99" +"NM-03445","","","351934","3898870","GW","false","" +"NM-11386","","","137115","3664300","GW","false","" +"MI-0176","","","438136","3937045","GW","true","Topographic situation: Valley" +"NM-22989","","","669594","3894820","GW","false","" +"NM-15083","","","463734","3729900","GW","false","" +"SR-0034","","","528056","3566678","SP","true","From Sitting Bull Falls recreation area, climb steeply on trail to right of falls. 300 m right at fork, follow streem 0.75 mi to fence, left through fence, left at tributary, 200 m to spring." +"BC-0036","27","","377823","3886010","GW","true","" +"NM-12102","","","420268","3668620","GW","false","" +"NM-17273","","","641684","3785590","GW","false","" +"NM-15612","","","595403","3745030","GW","false","" +"SM-4037","","","434716","3620635","PS","true","Stream flow measurement by Patrick Walsh" +"NM-12875","","","139416","3688530","GW","false","" +"NM-05982","","","676448","3573430","GW","false","" +"NM-11390","","","404491","3658140","GW","false","" +"NM-02564","","","671397","3623620","GW","false","" +"NM-03478","","","240272","3921720","GW","false","" +"TV-127","","","445193","4020308","GW","true","Ponce de Leon neighborhood. She requests that we PARK ALONG DRIVEWAY, not off of roadway." +"SD-0165","10N.5E.23.121","","374376","3883240","GW","true","" +"NM-09175","","","557154","3627260","GW","false","" +"EB-271","","","410191","3968411","GW","true","~ 0.1 mi East of Hwy 285 on Mystic Lane; behind (East) main bldg (2nd on rt)" +"NM-11258","","","653927","3656790","GW","false","" +"NM-21633","","","357505","3878510","GW","false","" +"NM-04211","","","168799","3543780","GW","false","" +"NM-26032","","","634209","4015240","GW","false","" +"WL-0031","NM3504826","","394903","3918077","GW","true","From I-40 take Hwy 14 north towards Madrid. On south side of Madrid, on west side of road is Water Co-op tank/tower. Well is just north of tank." +"BC-0119","104","","379457","3867660","GW","true","" +"BW-0529","17S9E25.3","","408615","3629990","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18033","","","607119","3799620","GW","false","" +"NM-23429","","","666701","3904840","GW","false","" +"BC-0391","394","","379820","3872699","GW","false","" +"TB-0227","","","431498","3710726","GW","true","From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road thru other gate (several miles) to shed on left before cabin, casing in front of shed." +"NM-13766","","","544050","3694700","GW","false","" +"NM-11642","","","563591","3661610","GW","false","" +"NM-00245","","","567594","3586640","GW","false","" +"NM-05379","","","262566","3566780","GW","false","" +"NM-02565","","","541931","3622010","GW","false","" +"NM-27854","","","574246","3807440","GW","false","" +"NM-17559","","","662977","3790530","GW","false","" +"NM-00118","","","353379","3557980","GW","false","" +"UC-0048","","","667840","4017461","GW","true","elv 4240 acc to USGS" +"NM-11316","","","556466","3656450","GW","false","" +"SM-0200","","","509603","3613910","GW","true","AKA Bell Flat well. Site visit by Jeremiah Morse in June 2007" +"NM-05191","","","674288","3562110","GW","false","" +"DA-0167","27S1W26.4","","319465","3533910","GW","true","" +"NM-21336","","","459202","3870180","GW","false","" +"NM-07454","","","196349","3606550","GW","false","" +"NM-18098","","","623917","3801150","GW","false","" +"NM-28156","","","658272","3612310","GW","false","" +"NM-05197","","","677351","3562260","GW","false","" +"NM-04353","","","541367","3544070","GW","false","" +"MI-0023","","","443326","3898231","GW","true","Topographic situation: Canyon Blanco" +"BW-0892","4.4.1.20.430","","328127","3757930","GW","true","" +"NM-24670","","","604594","3942950","GW","false","" +"NM-14150","","","546333","3698190","GW","false","" +"NM-14276","","","547125","3699950","GW","false","" +"TO-0432","9N13E16.22","","449150","3874240","GW","true","" +"NM-02434","","","214294","3598370","GW","false","" +"NM-28043","","","359443","3887510","GW","false","" +"NM-19945","","","466426","3834640","GW","false","" +"NM-19265","","","620463","3823160","GW","false","" +"NM-10374","","","645324","3643720","GW","false","" +"BW-0290","15S10E31.423","","405410","3647910","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00872","","","335107","3766500","GW","false","" +"NM-03104","","","346959","3807990","GW","false","" +"NM-05161","","","677754","3561650","GW","false","" +"NM-16156","","","644874","3761270","GW","false","" +"NM-13250","","","543951","3688140","GW","false","" +"NM-18562","","","558183","3807590","GW","false","" +"SM-4061","","","431708","3629960","PS","true","Stream flow measurement by Patrick Walsh" +"NM-08163","","","559943","3613420","GW","false","" +"NM-12474","","","621880","3675740","GW","false","" +"NM-13257","","","552946","3688300","GW","false","" +"NM-06344","","","570258","3580170","GW","false","" +"PC-085","PW-153","","369398","3909821","GW","true","" +"NM-23169","","","611173","3897080","GW","false","" +"BC-0431","434","","343460","3872423","GW","false","" +"EB-531","","","410002","3967896","GW","true","" +"NM-19575","","","658891","3830430","GW","false","" +"NM-00461","","","409052","3640880","GW","false","" +"JM-507","","","312964","3649428","SP","true","" +"ED-0003","16S23E27.12","","529863","3639910","GW","true","" +"TC-289","","","460238","4086028","PS","true","Bridge in the middle of Amalia" +"NM-22251","","","374779","3885190","GW","false","" +"BW-0144","11S10E7.234","","412470","3692700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09438","","","325388","3631460","GW","false","" +"NM-01958","","","243463","3548110","GW","false","" +"AB-0242","","","591253","3873499","GW","true","lorem" +"NM-05691","","","165813","3572880","GW","false","" +"NM-00622","","","622431","3671100","GW","false","" +"ED-0113","21S26E25.231","","571069","3590840","GW","true","" +"NM-00432","","","444511","3635590","GW","false","" +"SD-0194","10N.6E.9.212","","381178","3885630","GW","true","" +"NM-17330","","","648911","3786750","GW","false","" +"AB-0231","S287","","344500","3931200","GW","true","" +"NM-13563","","","554372","3692320","GW","false","" +"AB-0013","S016","","378480","3922940","GW","true","" +"NM-08714","","","674733","3623430","GW","false","" +"BW-0407","17S10E19.214","","410858","3631230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24188","","","674675","3931500","GW","false","" +"NM-09988","","","413119","3636470","GW","false","" +"BC-0044","35","","380992","3886540","GW","true","" +"NM-27593","","","640311","3786710","GW","false","" +"NM-15649","","","284705","3747780","GW","false","" +"NM-15908","","","649850","3753340","GW","false","" +"SD-0299","11N.7E.20.214","","389433","3892170","GW","true","" +"NM-10404","","","552778","3642850","GW","false","" +"NM-17873","","","617888","3796910","GW","false","" +"NM-26955","PW-002","","370670","3907755","GW","true","" +"BW-0454","19S10E17.233","","412358","3613740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-23926","","","397988","3919930","GW","false","" +"NM-27531","","","648878","3777250","GW","false","" +"NM-07576","","","640020","3605350","GW","false","" +"NM-15237","","","220770","3739910","GW","false","" +"NM-08587","","","190775","3624700","GW","false","" +"NM-16310","","","139381","3773300","GW","false","" +"NM-19700","","","596390","3831170","GW","false","" +"QY-0112","10.34.5.414","","649703","3887300","GW","true","" +"NM-03782","","","233284","3520160","GW","false","" +"BW-0470","26S7E32.122","","381768","3541780","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0238","","","671792","3963961","GW","false","" +"DA-0176","29S4W18.22","","283949","3519510","GW","true","" +"TS-071","","","436962","4080507","SP","true","West side of river" +"NM-17607","","","642806","3790940","GW","false","" +"TV-117","","","443718","4022942","GW","true","Next to boathouse inside shed." +"NM-21770","","","383933","3880170","GW","false","" +"NM-19178","","","618683","3820770","GW","false","" +"NM-26819","","","138173","3692540","GW","true","" +"EB-125","","","404447","3941228","GW","true","" +"QY-0595","5.29.2.131","","605699","3839070","GW","true","" +"NM-25658","","","568886","3986010","GW","false","" +"NM-12111","","","653749","3669750","GW","false","" +"BW-0881","3.1.1.23.300","","323685","3787030","GW","true","" +"NM-00527","","","663634","3652800","GW","false","" +"NM-07352","","","313220","3601430","GW","false","" +"NM-01887","","","348368","3536430","GW","false","" +"UC-0046","","","667591","4043166","GW","true","elv 4845 acc to USGS" +"NM-23303","","","371821","3899770","GW","false","" +"NM-16889","","","665460","3780310","GW","false","" +"NM-08784","","","206748","3627020","GW","false","" +"NM-10568","","","644537","3646020","GW","false","" +"NM-25501","","","621843","3978390","GW","false","" +"NM-09337","","","633636","3630030","GW","false","" +"NM-13973","","","453815","3695690","GW","false","" +"NM-06396","","","665128","3582290","GW","false","" +"NM-12656","","","358879","3678960","GW","false","" +"NM-27918","","","174577","3833430","GW","false","" +"NM-25920","","","412546","4004200","GW","false","" +"NM-02624","","","538143","3632430","GW","false","" +"NM-20254","","","599623","3840780","GW","false","" +"NM-14030","","","546728","3696620","GW","false","" +"QY-0174","11.30.11.234","","616016","3895450","GW","true","" +"NM-03459","","","642252","3905410","GW","false","" +"NM-27705","","","642342","3789460","GW","false","" +"EB-250","","","416106","3946780","GW","true","1758 Camino Corrales" +"NM-23832","","","643054","3916950","GW","false","" +"NM-11454","","","400639","3659380","GW","false","" +"NM-25639","","","672627","3986080","GW","false","" +"NM-23396","","","353891","3902760","GW","false","" +"BW-0415","17S10E31.411","","410834","3627210","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27309","","","362800","3585970","GW","false","" +"NM-05772","M-115","","221018","3572476","GW","false","Start at the frontage road north of the I10, NM418 Exit. Go east for 2.2 miles. Go north on D009 for 0.4 miles. Go west through cattle guard for 0.2 miles. Well inside steel well house inside fence. House labeled ""#6."" Gate was unlocked." +"NM-22124","","","382687","3883760","GW","false","" +"NM-14715","","","676344","3716880","GW","false","" +"NM-20601","","","625259","3849200","GW","false","" +"NM-03016","","","675284","3795350","GW","false","" +"NM-09941","","","219119","3639580","GW","false","" +"WL-0287","","","440434","4000388","GW","true","From intersection of Hwy 73 & 75 in Penasco in Taos county, go SE on Hwy 73 for 1.4 miles, turn NE (left) on road to Santa Barbara Campground for 0.8 miles, then turn north (left) on Ramp 1 Road, a dirt road that climbs steeply. Drive 0.2 miles, then make an almost 180-degree turn to right onto Llano de la LLegua Rd for 0.25 mile and turn left onto private road with #78 on the post. Follow private road, which makes a right turn, about 400 feet to residence. Well is 50 ft south of home." +"SB-0231","TWDB 4807203","","481028","3539560","GW","false","" +"NM-26159","","","310208","4027070","GW","false","" +"PB-0003","","","380331","3938003","GW","true","Off of Hwy 16 near the junction with Hwy 22 north of Pena Blanca. Well is in south room of well house near school." +"QY-0802","7.31.35.333","","624960","3849600","GW","true","" +"NM-19411","","","598533","3826080","GW","false","" +"NM-00325","","","642253","3618590","GW","false","" +"BW-0580","8S10E19.3","","412106","3717640","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27863","","","591567","3811430","GW","false","" +"QY-0496","16.35.3.422","","662546","3945940","GW","true","" +"NM-21147","","","658152","3865950","GW","false","" +"NM-02716","","","563341","3652240","GW","false","" +"TC-393","","","431254","4092597","GW","true","" +"NM-12232","","","627665","3671300","GW","false","" +"QY-1018","8.32.18.223","","629173","3865300","SP","true","" +"NM-24978","","","624305","3949360","GW","false","" +"NM-23424","","","294876","3903840","GW","false","" +"NM-03031","","","651737","3787750","GW","false","" +"NM-19611","","","634911","3830660","GW","false","" +"NM-15904","","","616696","3752660","GW","false","" +"NM-22045","","","362038","3883310","GW","false","" +"ED-0315","23S28E25.213","","590526","3571950","GW","true","" +"NM-15426","","","661590","3742840","GW","false","" +"NM-05938","","","335923","3572450","GW","false","" +"NM-10101","","","283606","3640360","GW","false","" +"NM-26581","","","191728","4073590","GW","false","" +"NM-04548","","","631782","3551190","GW","false","" +"NM-13238","","","658742","3689310","GW","false","" +"NM-04049","M-021","","263488","3533050","GW","false","" +"NM-28297","MLC-34","","436689","4039950","GW","false","" +"NM-12083","","","644035","3669510","GW","false","" +"NM-08261","","","659777","3615940","GW","false","" +"NM-04748","","","240563","3556900","GW","false","" +"NM-09014","","","632933","3626200","GW","false","" +"NM-25318","","","469826","3967980","GW","false","" +"NM-11173","","","634417","3654710","GW","false","" +"SA-0046","SA-46_R00","","221631","3761010","GW","true","Take road 0.3 mi southwest of mile marker 60 on NM 12 then go ~1.7 mi to headquarters. Then go by ranch house south about 2 mi. Steel pipe tower, steel tank ~5 ft S of WM. Tree and overflow dirt tank ~20 yards ESE of WM." +"NM-00902","","","561568","3790160","GW","false","" +"NM-10122","","","408307","3638940","GW","false","" +"NM-16845","","","544408","3778160","GW","false","" +"EB-026","","","420552","3932310","GW","true","" +"NM-17897","","","611851","3797240","GW","false","" +"NM-26246","","","253336","4038370","GW","false","" +"NM-02959","","","678431","3756880","GW","false","" +"NM-24932","","","411257","3947980","GW","false","" +"NM-26777","","","398161","3856490","GW","false","" +"SB-0232","TWDB 4807204","","482704","3537063","GW","false","" +"NM-23969","","","653911","3922550","GW","false","" +"NM-20510","","","397976","3846660","GW","false","" +"NM-02648","","","558745","3639620","GW","false","" +"NM-23324","","","231543","3903410","GW","false","" +"NM-17326","","","646590","3786220","GW","false","" +"NM-20433","","","160898","3850160","GW","false","" +"QY-0458","14.35.3.313","","661571","3926340","GW","true","" +"NM-12625","","","675248","3679050","GW","false","" +"NM-22476","","","380179","3887520","GW","false","" +"NM-19660","","","672516","3832240","GW","false","" +"NM-04712","","","216349","3557060","GW","false","" +"NM-05155","","","168022","3565090","GW","false","" +"NM-07634","","","679379","3607000","GW","false","" +"QY-0941","9.28.27.234","","595481","3871010","GW","true","" +"BC-0370","374","","","","GW","false","" +"NM-13356","","","568188","3689940","GW","false","" +"NM-03723","","","170278","3493770","GW","false","" +"CX-0104","23N27E4.1","","582968","4013180","GW","true","" +"NM-17391","","","644548","3787460","GW","false","" +"NM-06640","","","666437","3586870","GW","false","" +"TC-420","TJ-03","","414759","4020280","GW","true","" +"NM-10716","","","159459","3652140","GW","false","" +"NM-24926","","","410149","3947840","GW","false","" +"AR-0011","","","228764","4079220","GW","true","From Hwy 516, take Road 3133 south towards river. House is on corner of Rd. 3133 and Rd. 3050. Brown stucco house with brown metal roof. Dog on property does not like visitors. CAREFUL! Well in driveway off Rd. 3133 next to car port." +"NM-28134","","","174964","3964040","GW","false","" +"NM-13622","","","548269","3693020","GW","false","" +"EB-441","","","421063","3935709","GW","true","43 Ellis Ranch Road" +"NM-24438","","","483136","3937020","GW","false","" +"BW-0050","23S5E27.142","","366099","3572400","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27696","","","678493","3796890","GW","false","" +"TS-004","","","438906","4066080","SP","true","East side of river, downstream from Chiflo Trail and TS-3." +"SB-0929","","","484709","3594370","GW","false","" +"NM-07062","","","319424","3595060","GW","false","" +"NM-11362","","","676752","3658870","GW","false","" +"NM-11174","","","634417","3654710","GW","false","" +"QY-0126","10.36.1.224","","676037","3888600","GW","true","" +"TB-1037","","","419419","3725911","SP","true","From Carrizozo head north on Hwy 54 to gate on west with rock posts on west side of Hwy. Take road back 1.5 mi, take 2track on Right (north). Spring is around wetland back to east and look for metal fence around spring box." +"NM-17395","","","634769","3787590","GW","false","" +"NM-22584","","","375235","3888850","GW","false","" +"NM-19764","","","554210","3832020","GW","false","" +"NM-20015","","","636319","3837120","GW","false","" +"SD-0382","11N.5E.23.111","","373990","3892800","SP","true","" +"NM-02923","","","670214","3743880","GW","false","" +"NM-21847","","","348560","3881570","GW","false","" +"NM-10844","","","542858","3648310","GW","false","" +"EB-688","","","406749","3954427","GW","true","" +"NM-03891","","","227784","3524280","GW","false","" +"NM-24960","","","406812","3948520","GW","false","" +"QY-0039","10.29.9.341a","","602739","3884820","GW","true","" +"QU-541","","","449556","4065036","D","true","Downloaded diver 12/9/14, 3/17/15, diver gone 6/2/15." +"NM-26338","","","596471","4047040","GW","false","" +"NM-02056","","","234436","3558360","GW","false","" +"NM-14671","","","415070","3713970","GW","false","" +"SM-0129","","","448269","3648446","GW","true","" +"NM-27622","","","651808","3794380","GW","false","" +"NM-05398","","","261344","3567180","GW","false","" +"PP-010","PW-11b","","438020","4003021","GW","true","" +"NM-22170","","","389681","3884100","GW","false","" +"NM-21732","","","660410","3880410","GW","false","" +"NM-16691","","","554257","3775750","GW","false","" +"NM-25696","","","169083","3994970","GW","false","" +"NM-11310","","","403075","3656550","GW","false","" +"NM-22625","","","382935","3889240","GW","false","" +"NM-22061","","","626818","3883300","GW","false","" +"NM-13285","","","551858","3688760","GW","false","" +"WL-0319","","","405728","3947751","GW","true","GPS navigation apps will find this location based on the address" +"NM-21581","","","347752","3877540","GW","false","" +"NM-07189","","","182405","3600970","GW","false","" +"LC-010","","","399811","3937131","GW","true","From La Cienega exit (exit 271) on I-25, go west over the overpass and drive northeast on the frontage road on the west side of I-25 for 1.45 miles, then turn left (west) on Las Golondrinas Road. Drive thru gate (combo 1982) and go 0.5 miles (don't take any side roads) to house on the right (north) side of the road. Well is on the east side of the driveway in a steel box. The combo for the steel box is 5050." +"NM-09210","","","198427","3631960","GW","false","" +"NM-23535","","","394395","3908260","GW","false","" +"NM-07094","","","540796","3594260","GW","false","" +"NM-25372","","","408557","3971390","GW","false","" +"NM-01540","","","467805","3975190","GW","false","" +"NM-20275","","","608524","3841130","GW","false","" +"NM-21106","","","656970","3863800","GW","false","" +"NM-15534","","","133768","3749740","GW","false","" +"NM-09788","","","556648","3633720","GW","false","" +"NM-04615","","","677902","3553240","GW","false","" +"TO-0303","7N8E27.221","","401199","3852610","GW","true","" +"NM-14777","","","431194","3718580","GW","false","" +"NM-17985","","","662238","3799230","GW","false","" +"NM-27533","","","583660","3776490","GW","false","" +"BC-0374","377","","343014","3870226","GW","false","" +"BC-0234","234","","375288","3886170","GW","true","" +"SB-0218","TWDB 4807102","","476874","3535967","GW","false","" +"TC-409","","","442483","4091038","GW","true","" +"NM-20652","","","403736","3850390","GW","false","" +"EB-148","","","404203","3947198","GW","true","SE corner of landfill; keys available from Souder-Miller, or Dan Fuqua / Don Beardsley at Solid Waste Bureau" +"NM-08537","","","406045","3619560","GW","false","" +"NM-01410","","","675460","3934550","GW","false","" +"NM-13278","","","636234","3689890","GW","false","" +"TO-0006","1N12E20.312","","434499","3795350","GW","true","" +"AB-0207","S262","","353952","3889290","GW","true","" +"EB-551","","","409256","3946212","GW","true","" +"NM-25640","","","603722","3985000","GW","false","" +"NM-18585","","","177403","3813400","GW","false","" +"NM-14409","","","298706","3705380","GW","false","" +"NM-06963","","","675390","3593500","GW","false","" +"NM-12069","","","556607","3667810","GW","false","" +"NM-07588","","","556084","3604710","GW","false","" +"JM-015","","","303497","3667536","GW","true","" +"NM-27620","","","628105","3793900","GW","false","" +"BW-0433","18S9E14.432","","407595","3623110","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26462","","","570589","4062380","GW","false","" +"NM-06956","","","337916","3592670","GW","false","" +"TB-0310","","","403056","3661821","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Railroad Ave and follow to Derbyshire Rd. Home is near corner of Railroad & Derbywhire on south side of Derbyshire. Well is next to house on E side." +"NM-23328","","","378510","3900330","GW","false","" +"NM-09873","","","563894","3634880","GW","false","" +"NM-01202","","","343385","3881510","GW","false","" +"TO-0039","3N6E34.431","","380500","3811400","GW","true","" +"NM-23447","","","658022","3905390","GW","false","" +"QY-0860","8.29.29.231","","601236","3861460","GW","true","" +"NM-13607","","","556797","3692950","GW","false","" +"NM-27476","","","554036","3724470","GW","false","" +"EB-286","","","407931","3956170","GW","true","#87 East Estrada Calabasa; La Tierra Lot 59" +"NM-24170","","","405157","3929990","GW","false","" +"NM-03259","","","337137","3842920","GW","false","" +"NM-25960","","","405401","4006550","GW","false","" +"PC-128","PW-215","","362323","3908504","GW","true","" +"SA-0038","SA-38_R00","","218946","3768760","GW","true","From Hwy 12, take Green Gap Rd west for 5.5 miles to gate to McMasters Ranch on left. Go thru gate, take road to bottom of hill, turn left for 1.1 miles to elk gate enclosing wetlands/pond. Go thru gate to windmill." +"QY-0799","7.31.32.422","","621336","3849970","GW","true","" +"SM-0109","","","486596","3610645","GW","true","" +"NM-08719","","","667366","3623330","GW","false","" +"NM-26421","","","223381","4064800","GW","false","" +"NM-15873","","","190356","3756190","GW","false","" +"NM-26371","","","588215","4054500","GW","false","" +"NM-25324","","","384902","3969020","GW","false","" +"NM-07266","","","189302","3602540","GW","false","" +"NM-28376","CN-2016-018","","587101","3624767","GW","true","" +"WL-0073","","","440759","3997657","GW","true","From north on State Road 68 after Velarde & Embudo, make a right on SR75 toward Penasco. In Penasco, make a right (south) on SR73. When you get to ""T"", go left on Upper Llano Road. Go about ~2 miles; look for cattle gate on right and road over acequia through trees. Well is east of pump house." +"NM-20612","","","605632","3849230","GW","false","" +"NM-26081","","","307410","4021210","GW","false","" +"NM-19326","","","625487","3824920","GW","false","" +"NM-20099","","","591127","3837980","GW","false","" +"NM-07443","","","576991","3602050","GW","false","" +"TO-0024","2N11E25.221","","432367","3804230","GW","true","" +"SA-1008","","","258564","3717862","SP","true","About 1/4 mile north of Box, on easts side of drainage, to N of Ojo Caliente spring complex." +"NM-08609","","","195275","3625210","GW","false","" +"NM-03670","","","443072","4079320","GW","false","" +"BC-0236","236","","375678","3891560","GW","true","" +"BC-0021","12","","373360","3882720","GW","true","" +"NM-24703","","","413552","3943580","GW","false","" +"NM-10201","","","152206","3645660","GW","false","" +"NM-00446","","","614371","3637980","GW","false","" +"NM-03629","","","674569","4019200","GW","false","" +"SD-0291","11N.6E.35.111","","383602","3889420","GW","true","" +"AB-0113","S137","","352439","3876000","GW","true","" +"NM-08999","","","675740","3626840","GW","false","" +"NM-09491","","","654991","3632040","GW","false","" +"NM-20432","","","650440","3845540","GW","false","" +"NM-18927","","","611057","3814450","GW","false","" +"NM-17781","","","452446","3793700","GW","false","" +"NM-15754","","","327423","3749560","GW","false","" +"LJ-004","","","313554","3773262","GW","true","" +"BW-0493","6S6E26.333","","379529","3736650","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0285","15S10E29.142","","406233","3649920","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13100","","","621792","3686950","GW","false","" +"NM-02677","","","166245","3651460","GW","false","" +"SB-0009","TWDB 4702302","","520732","3538609","GW","false","" +"NM-05515","","","670874","3567200","GW","false","" +"BW-0565","6S9E2.4","","409911","3741780","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00667","","","443672","3688450","GW","false","" +"NM-05112","","","264917","3561920","GW","false","" +"NM-06561","","","149373","3590220","GW","false","" +"NM-11017","","","667083","3652260","GW","false","" +"NM-10340","","","668063","3641980","GW","false","" +"NM-07161","","","356963","3596360","GW","false","" +"QY-0777","7.30.25.211","","617598","3852410","GW","true","" +"NM-15354","","","634102","3740690","GW","false","" +"BW-0765","4.6.9.1.200","","411529","3742700","GW","true","" +"TV-137","","","444018","4026841","GW","true","Go to physical address (195 State Road 240). Gutierrez sign on gate to north at mile marker 2. Approximately 0.4 miles from river. Well in shed around house on right side. Dogs names are Bubba (tan) & Mater (black/tan)." +"NM-21122","","","558214","3863220","GW","false","" +"NM-00415","","","411103","3632950","GW","false","" +"NM-10692","","","619672","3646700","GW","false","" +"QY-0388","12.33.36.324","","646109","3898580","GW","true","" +"NM-25098","","","410194","3954830","GW","false","" +"NM-01966","","","164747","3550890","GW","false","" +"NM-07286","","","667326","3599370","GW","false","" +"NM-00979","","","333241","3815190","GW","false","" +"NM-08541","M-189","","187757","3624090","GW","false","" +"NM-15980","","","672963","3756720","GW","false","" +"QY-1012","9.36.35.142","","673925","3870790","GW","true","" +"NM-18114","","","613361","3801290","GW","false","" +"NM-09047","","","204402","3629650","GW","false","" +"NM-12511","","","655298","3676590","GW","false","" +"NM-20020","","","142082","3842780","GW","false","" +"NM-01244","","","633535","3892910","GW","false","" +"NM-11652","","","613804","3662180","GW","false","" +"NM-03163","","","641324","3819480","GW","false","" +"NM-02692","","","164385","3653650","GW","false","" +"NM-27440","","","411883","3689670","GW","false","" +"NM-08404","","","680210","3618660","GW","false","" +"DE-0308","","","650173","3633047","GW","false","" +"NM-11576","","","584727","3660840","GW","false","" +"NM-19560","","","676060","3830770","GW","false","" +"QU-547","","","444552","4060909","SP","true","From spring 17, proceed west southwest across Red River acequia return. Find concrete & manhole near gallery standpipe." +"NM-15320","","","674446","3740320","GW","false","" +"TB-0151","","","414087","3696924","GW","true","From main road (Three Rivers road?) turn SE and stay left (S) at Y in arroyo to left at Y (N) through gate. WM is on left (W) side of road." +"NM-16746","","","636429","3777230","GW","false","" +"SB-0517","TWDB 4844902","","448592","3459343","GW","false","" +"NM-00701","","","476151","3693010","GW","false","" +"NM-00857","","","330072","3747050","GW","false","" +"SB-0535","TWDB 4853301","","461066","3457135","GW","false","" +"NM-25622","","","272439","3986470","GW","false","" +"NM-19116","","","661524","3819750","GW","false","" +"NM-16018","","","630155","3756530","GW","false","" +"NM-11275","","","555848","3655550","GW","false","" +"CX-0037","28N27E34.3","","584286","4052490","GW","true","" +"NM-02075","","","355936","3557230","GW","false","" +"BW-0875","2.15.2.36.411","","347412","3928260","GW","true","" +"NM-06101","M-128","","252226","3577323","GW","false","6.7 miles NE on NM26 from intersection with US180 N of Deming, go south thru gate across raill road tracks, follow only major 2-track road towards SE 2.7 miles to well. Well just past dual power lines, next to brown steel cattle tank and yellow cylindrical tank." +"NM-18792","","","667328","3813350","GW","false","" +"NM-25614","","","584206","3983490","GW","false","" +"NM-17749","","","643378","3793720","GW","false","" +"GT-022","SWNM 14-9","","138599","3563590","GW","true","" +"PP-044","PW-49","","434248","4001642","GW","true","" +"QY-0745","6.32.7.313","","628161","3846820","GW","true","" +"QY-0510","16.36.20.222","","669055","3941900","GW","true","" +"TO-0327","7N11E31.214","","424923","3850640","GW","true","" +"NM-18039","","","625823","3800060","GW","false","" +"NM-11594","","","282237","3663110","GW","false","" +"NM-25949","","","423179","4005920","GW","false","" +"NM-18137","","","658325","3801950","GW","false","" +"CX-0146","62","","517044","4031230","GW","true","5 1/2 miles north of Miami" +"NM-13495","","","623042","3692330","GW","false","" +"NM-16662","","","642181","3776450","GW","false","" +"TB-0206","","","409095","3719607","GW","true","SNL called this T-1759 well. From Carrizozo take 380 west to gate on south side of road at MM 36. Go south 3 miles at pens, verr west to wire gate. South 3.7 miles to WM with solar at water tank." +"NM-02138","","","223311","3565070","GW","false","" +"TV-174","COR-65","OW-6","440398","4026308","GW","true","Shallow monitoring well located inside chain link fence around Town of Taos #7 SJC production well." +"NM-03979","","","255338","3527570","GW","false","" +"NM-05986","","","237526","3575360","GW","false","" +"NM-03421","S245","","348366","3894370","GW","false","" +"NM-17114","","","661882","3784260","GW","false","" +"NM-23553","","","369521","3908590","GW","false","" +"NM-19927","","","601187","3834980","GW","false","" +"EB-638","","","402980","3955400","GW","true","" +"NM-13269","","","541829","3688530","GW","false","" +"NM-18329","","","655520","3804690","GW","false","" +"NM-20066","","","601086","3837290","GW","false","" +"TB-0243","","","433386","3734831","GW","true","From Carrizozo, head north on Hwy 54 to White Oaks turnoff. Through town of White Oaks, bear left on White Oaks Canyon Rd, 1/2 mile to dirt track on north side. Locked gate. Follow road to west to WM tower in hole south of road." +"NM-18481","","","571443","3806330","GW","false","" +"SB-0896","25.18.27.213","","491564","3552142","GW","true","" +"NM-18131","","","547572","3800660","GW","false","" +"UC-0186","","","591242","4070833","GW","false","" +"NM-23038","","","616720","3894500","GW","false","" +"NM-18398","","","500103","3804790","GW","false","" +"NM-09689","","","554160","3632360","GW","false","" +"NM-25893","","","596015","4002750","GW","false","" +"NM-03780","","","250568","3519610","GW","false","" +"NM-05789","","","330027","3570450","GW","false","" +"TO-0233","6N8E30.434","","396025","3841650","GW","true","" +"QU-036","NM3501129","LAMA05","445788","4056297","GW","true","From 522, take right on La Lama Road @ Garapata Ridge; at 1.3 miles take a right uphill on road marked ""Lama Foundation""; follow this road 1.4 miles uphill to water tank on the left; do not turn right at drive marked ""Lama Foundation"", stay left at fork staying on upper Lama Road to tank on left. " +"NM-01790","","","227764","3522530","GW","false","" +"DA-0054","22S2E11.44","","339911","3586550","GW","true","" +"BW-0217","14S9E27.442","","400564","3658900","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13217","","","560007","3687820","GW","false","" +"NM-20428","","","232570","3847670","GW","false","" +"SB-0020","TWDB 4709208","","504545","3526520","GW","false","" +"BW-0089","8S10E5.434","","414368","3722220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"HS-063","TC-063","","289775","3667472","GW","true","313 W. Riverside Drive in backyard. Enter through North fence if owners not home. Under wooden box near ground surface. NW side of yard." +"NM-02840","","","556845","3702310","GW","false","" +"NM-27122","MLC-39","","436691","4040150","GW","false","" +"SA-0232","","","256651","3793548","GW","true","From ranch gate @ Hwy 60, go N 1.9 mi to Y in road and take left side. Go 8.4 mi to cross. At cross go left 0.4 mi to 2-track. Right on 2-track 0.2 mi. Look for well vault to right." +"NM-27005","","","303504","3780240","GW","true","" +"QY-0534","17.35.30.211","","657585","3950000","GW","true","" +"NM-17515","","","637302","3789410","GW","false","" +"NM-01493","","","212283","3956660","GW","false","" +"NM-13410","","","549084","3690320","GW","false","" +"NM-03922","","","119682","3529320","GW","false","" +"NM-10746","","","224924","3650830","GW","false","" +"NM-15973","","","605831","3755030","GW","false","" +"NM-23313","","","380067","3899920","GW","false","" +"NM-03377","","","608805","3885810","GW","false","" +"PC-109","PW190","","367739","3910502","GW","true","" +"NM-19333","","","390927","3824620","GW","false","" +"NM-07569","","","268574","3606860","GW","false","" +"NM-22686","","","333775","3890780","GW","false","" +"NM-20949","","","337398","3858200","GW","false","" +"NM-16874","","","636878","3779850","GW","false","" +"NM-01875","","","139622","3539710","GW","false","" +"WL-0029","","","395188","3918440","GW","false","From I-40, take Hwy 14 north (a ways) into the town of Madrid. At the bend in the road in Madrid, at the Mine Shaft Tavern, turn right onto Firehouse Lane to address. Well is at intersection of Firehouse & Red Dog Rd, under old industrial furnace in front of well house." +"NM-12180","","","555429","3669990","GW","false","" +"NM-28086","","","239528","3904210","GW","false","" +"DA-0121","25S1W16.33","","315643","3556310","GW","true","" +"RA-059","","","424574","4004611","GW","true","" +"NM-09579","","","411047","3631470","GW","false","" +"NM-02777","","","547964","3671060","GW","false","" +"NM-26614","","","591235","4070796","GW","true","From Capulin Volcano National Monument Visitor Center parking lot, turn right onto Volcano Road (the road to the top of the volcano). Drive 0.15 mile and turn right (east) into picnic area. Drive 300 ft, turn right and go 250 feet to Lava Flow Trail parking area and park. The well is in a wellhouse ~50 feet from parking area." +"NM-07969","","","199024","3614700","GW","false","" +"NM-08640","","","409653","3621160","GW","false","" +"NM-05712","","","234851","3571230","GW","false","" +"EB-565","","","417336","3963202","GW","true","" +"QY-0385","12.33.17.311","","639089","3903490","GW","true","" +"HS-046","TC-046","","289889","3667656","GW","true","212 Austin Street: In parking lot on the south side under a light blue barrel near the chain fence" +"NM-25737","","","477365","3992980","GW","false","" +"NM-23928","","","402402","3919910","GW","false","" +"NM-12407","","","656419","3674510","GW","false","" +"NM-09512","","","559786","3630730","GW","false","" +"NM-22782","","","350824","3891530","GW","false","" +"NM-19988","","","649538","3836810","GW","false","" +"SA-0204","","","243627","3751338","GW","true","Hwy 60 to Rt 52 south from VLA. Go about 22 mi south. South of MM 67 to Jct with 163, take 163 west 3.7 miles to fork at Luera Ranch entrance. 2.6 mi to house. Well is remote from here. 6.5 mi south from HQ, to pens. Look for power pole and metal rail tank." +"NM-25477","","","398971","3975200","GW","false","" +"EB-146","","","414699","3949328","GW","true","Corner of Cerrillos and Montezuma in parking lot of Saveur Foods" +"NM-04224","","","117383","3546070","GW","false","" +"ED-0304","23S28E14.144","","588706","3574640","GW","true","" +"NM-15710","","","649156","3748490","GW","false","" +"NM-05648","","","238450","3570580","GW","false","" +"QY-0884","8.31.12.211","","626976","3867010","GW","true","" +"EB-098","","","412169","3957033","GW","true","123 Tano Norte, left of drive at top of property" +"NM-08729","","","408700","3622370","GW","false","" +"NM-03268","","","653655","3846460","GW","false","" +"BC-0430","433","","","","GW","false","" +"ED-0306","23S28E15.411","","587293","3574750","GW","true","" +"NM-15287","","","632535","3738690","GW","false","" +"TV-165","COR-18","","440217","4025434","GW","true","At WWTP, go left (west) on Thomas H. Romero Road. Take road past treatment plant, over hill, past barren pit. Turn right (north); first house on left. Well in vault south of house toward power line." +"NM-27619","","","670480","3794490","GW","false","" +"NM-15527","","","678247","3744800","GW","false","" +"PC-073","PW-129","","367853","3907303","GW","true","" +"EB-338","","","403199","3944575","GW","true","599 to CR62, south on frontage road 2.3 mi to locked gate #424 (says transfer station closed) on right; around to left just behind hill, 300' from 599 and just north of Santa Fe River" +"NM-10237","","","665153","3641940","GW","false","" +"NM-00474","","","647811","3642780","GW","false","" +"NM-15076","","","674756","3731790","GW","false","" +"NM-06045","","","662766","3574710","GW","false","" +"NM-21361","","","672856","3872320","GW","false","" +"SB-0743","TWDB 4924401","","395397","3505712","GW","false","" +"OG-0081","","","652843","3809322","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile west on US 60. Turn right north on CR R. Drive 0.55 miles to well. Well is on E side of road." +"NM-02746","","","557268","3661260","GW","false","" +"NM-00495","","","655691","3648650","GW","false","" +"NM-09669","","","587208","3632440","GW","false","" +"NM-20423","","","674665","3845260","GW","false","" +"NM-21808","","","265425","3882910","GW","false","" +"NM-04228","","","240928","3542350","GW","false","" +"QY-0123","10.35.5.222a","","659846","3888380","GW","true","" +"TS-038","","","435697","4041345","SP","true","Spring zone on east side." +"NM-13690","","","547077","3693820","GW","false","" +"BW-0301","16S8E29.311","","392387","3640030","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17102","","","656764","3784080","GW","false","" +"NM-25766","","","396452","3995440","GW","false","" +"QY-0314","11.32.28.434","","632270","3890010","GW","true","" +"NM-16796","","","632743","3778780","GW","false","" +"TO-0164","5N8E16.421","","399335","3835670","GW","true","" +"NM-08743","","","669777","3623960","GW","false","" +"NM-09831","","","631959","3634840","GW","false","" +"NM-15840","","","649544","3751580","GW","false","" +"QY-0506","16.36.14.134","","672685","3942970","GW","true","" +"NM-08954","","","650400","3626050","GW","false","" +"EB-067","","","416460","3955240","GW","true","" +"SB-0037","TWDB 4709903","","507918","3514391","GW","false","" +"NM-13572","","","550262","3692420","GW","false","" +"NM-08390","","","650835","3617990","GW","false","" +"NM-22841","","","349193","3892350","GW","false","" +"NM-05457","","","231249","3568770","GW","false","" +"NM-23624","","","370627","3909990","GW","false","" +"SB-0208","TWDB 4806602","","476031","3534583","GW","false","" +"NM-22833","","","362804","3892080","GW","false","" +"QY-0645","5.30.19.312b","","609120","3834110","GW","true","" +"NM-22226","","","376960","3884930","GW","false","" +"NM-16730","","","674721","3778290","GW","false","" +"BW-0304","16S9E1.443","","409776","3646000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"MI-0215","","","578388","3945309","GW","true","Topographic situation: Plains" +"NM-09123","","","529061","3626400","GW","false","" +"NM-21126","","","345990","3864550","GW","false","" +"NM-07030","","","224987","3596620","GW","false","" +"NM-05127","","","678997","3561030","GW","false","" +"NM-24662","","","653804","3943410","GW","false","" +"TO-0468","10N9E24.333","","414092","3881310","GW","true","" +"NM-08611","","","557505","3620490","GW","false","" +"DA-0163","28S1E6.333","","321566","3530360","GW","true","" +"TS-125","","","426219","4012481","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"NM-22363","","","376061","3886340","GW","false","" +"NM-21806","","","365599","3880850","GW","false","" +"SB-0544","TWDB 4853802","","457925","3445602","GW","false","" +"NM-06717","","","232458","3590590","GW","false","" +"NM-23778","","","662082","3915730","GW","false","" +"NM-02318","","","577480","3575910","GW","false","" +"NM-05491","","","261818","3568370","GW","false","" +"PP-077","PS-82","","436088","4006922","SP","true","" +"RA-057","","","421526","4006390","GW","true","In well house." +"NM-11855","","","634082","3665890","GW","false","" +"BW-0450","19S9E34.311","","405073","3608580","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15737","","","623198","3748460","GW","false","" +"NM-19595","","","607436","3829630","GW","false","" +"NM-14075","","","546545","3697050","GW","false","" +"QY-0846","8.27.32.443","","582558","3858800","GW","true","" +"NM-03872","","","236729","3523100","GW","false","" +"NM-20670","","","384883","3850950","GW","false","" +"NM-04669","","","233977","3555870","GW","false","" +"NM-20864","","","626570","3855530","GW","false","" +"AR-0524","","","243787","4115634","PS","true","From CR 213, drive to CR 214 intersection." +"NM-15303","","","661667","3739790","GW","false","" +"NM-17949","","","652452","3798830","GW","false","" +"NM-02128","M-090","","219572","3564366","GW","false","Go west on C047 at C047/C046 intersection for 2.0 miles. Go south on C048/Shallot for 1.0 miles. Park on south side of road, near opening in fencing, after C048 veers west. Well located west of house near holding pond." +"NM-04206","","","242771","3541470","GW","false","" +"NM-07638","","","658622","3606680","GW","false","" +"NM-03600","","","638863","3994080","GW","false","" +"NM-14471","","","464468","3705530","GW","false","" +"EB-562","","","407717","3946197","GW","true","" +"NM-21971","","","631341","3882350","GW","false","" +"NM-11690","","","648770","3663180","GW","false","" +"HS-024","TC-024","","289231","3667787","GW","true","SW corner of Broadway and McElroy, the one with the white cap next to the black drums, the one in the very most corner" +"NM-14176","","","649912","3700040","GW","false","" +"NM-12489","","","554624","3674950","GW","false","" +"NM-26325","","","472529","4045190","GW","false","" +"NM-15126","","","561665","3731690","GW","false","" +"NM-06041","","","632739","3574140","GW","false","" +"NM-04867","","","208142","3560040","GW","false","" +"NM-22982","","","349729","3894450","GW","false","" +"NM-06143","","","656888","3577480","GW","false","" +"TS-031b","","","436962","4044129","SP","true","Zone of springs and seeps north of Dunn Bridge, on East side. Spring just south of TS-31a." +"NM-24654","","","412106","3942300","GW","false","" +"NM-18482","","","459786","3806170","GW","false","" +"NM-05485","","","154279","3571450","GW","false","" +"NM-22083","","","373161","3883540","GW","false","" +"NM-02642","","","555816","3638370","GW","false","" +"MI-0181","","","479138","3942657","GW","true","Topographic situation: Plains" +"NM-19768","","","649133","3833530","GW","false","" +"TO-0412","9N8E29.311","","397962","3870750","GW","true","" +"LC-019","","","399212","3935699","SP","true","North of Las Lagunitas pond, but down gradient of several other seeps. Very small. (Formerly LL3)" +"SM-0018","","","437314","3629660","GW","true","487 Hay Canyon Road, look for 10 foot green ranch gate. Take Prestridge Rd from Rio Penasco Rd (off of hwy 130). Or from Weed, go past Sacramento on Rd 64 go right on Rd 257, Hay Canyon road, stay left at Prestridge Hill Rd. Go 3.1 miles past the last power pole on Hay Canyon Rd. Canโ€™t see house from Road, there is a steep drive. There is a cabin before the drive and gate, and a new log house to the left." +"SA-0410","4S12W15.420","","215994","3761780","GW","true","" +"NM-11513","","","293289","3661850","GW","false","" +"NM-02281","","","330200","3574510","GW","false","" +"NM-06469","","","652247","3583410","GW","false","" +"NM-23739","","","641281","3914110","GW","false","" +"MI-0131","","","469273","3928415","GW","true","Topographic situation: Plateau" +"CX-0182","S31","","538008","4022140","SP","true","1 mile southwest of Springer" +"DE-0307","","","650291","3633070","GW","false","" +"CX-0048","27N27E24","","588113","4047170","GW","true","" +"EB-472","","","411729","3949937","GW","true","Southwest of Frank Ortiz Park. Well is furthest south MW." +"NM-03866","","","142251","3526070","GW","false","" +"NM-02698","","","559312","3648950","GW","false","" +"SM-0214","","","474838","3668783","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Gate is locked (combo 9977). Well across yard to east, through gate. Look for small pump jack." +"QY-0232","11.30.26.221","","616324","3891130","GW","true","" +"BC-0175","155","","378870","3886050","GW","true","" +"NM-24857","","","407541","3946140","GW","false","" +"NM-14480","","","636767","3707050","GW","false","" +"NM-13357","","","625620","3690880","GW","false","" +"NM-00352","","","411317","3623890","GW","false","" +"NM-04678","","","678436","3554180","GW","false","" +"NM-22936","","","185959","3897870","GW","false","" +"NM-21610","","","404272","3877310","GW","false","" +"TB-0174","","","416936","3721683","GW","true","12199 Hwy 54. In well house in front of trailer." +"NM-11654","","","280701","3664010","GW","false","" +"NM-05624","","","235223","3570420","GW","false","" +"NM-04962","","","240682","3560540","GW","false","" +"NM-08198","","","233222","3617240","GW","false","" +"NM-25137","","","406521","3956750","GW","false","" +"NM-14278","","","542967","3699930","GW","false","" +"NM-08426","","","657782","3618490","GW","false","" +"NM-02465","","","546578","3602390","GW","false","" +"NM-02388","","","568454","3584070","GW","false","" +"NM-15919","","","631458","3753360","GW","false","" +"NM-18471","","","651314","3807500","GW","false","" +"NM-22649","","","640471","3889910","GW","false","" +"NM-06661","","","672858","3587380","GW","false","" +"NM-00314","","","655341","3613950","GW","false","" +"NM-00779","","","456144","3705490","GW","false","" +"SB-0234","TWDB 4807206","","481002","3539407","GW","false","" +"AB-0181","S232","","345404","3891310","GW","true","" +"NM-22110","","","346607","3884150","GW","false","" +"NM-12914","","","555435","3682530","GW","false","" +"NM-11406","","","477312","3658040","GW","false","" +"NM-20385","","","596467","3843280","GW","false","" +"NM-19922","","","559134","3834550","GW","false","" +"NM-27166","OC-01","","405502","4018250","SP","false","" +"SM-0239","","","488040","3670669","GW","true","" +"NM-19305","","","527016","3823340","GW","false","" +"NM-09077","","","286638","3628050","GW","false","" +"NM-14374","","","556796","3701970","GW","false","" +"NM-17427","","","672126","3788450","GW","false","" +"QY-0943","9.29.11.122","","606167","3876450","GW","true","" +"TB-0134","","","404294","3704417","GW","true","County Road 002 right at no trespassing sign to southeast right thru gate at stock tanks. Go down through arroyo then thru gate. Circle corrals to right thru gate to solar panel and green tank." +"NM-13406","","","542132","3690250","GW","false","" +"NM-15542","","","408696","3743200","GW","false","" +"NM-12391","","","632437","3674430","GW","false","" +"SA-0485","8S16W27.122","","176982","3722250","SP","true","" +"NM-14845","","","669692","3722550","GW","false","" +"NM-26171","","","655554","4027560","GW","false","" +"NM-06120","","","155495","3580940","GW","false","" +"NM-12605","","","554559","3677350","GW","false","" +"NM-27028","","","323707","3771308","GW","true","On NMT campus, west of the Macey Center and Children's Center, left hand side of #10 fairway on the golf course in pump house." +"QY-0355","11.35.5.3","","658632","3896950","GW","true","" +"NM-24974","","","406136","3948800","GW","false","" +"NM-05914","","","235326","3574360","GW","false","" +"NM-25988","","","421152","4008340","GW","false","" +"NM-23367","","","671708","3902070","GW","false","" +"SB-0076","TWDB 4717304","","509393","3511560","GW","false","" +"NM-13875","","","408527","3695640","GW","false","" +"NM-16255","","","551038","3764640","GW","false","" +"NM-00082","","","368809","3551610","GW","false","" +"AB-0243","","","591253","3873499","GW","true","lorem" +"NM-17496","","","637532","3789450","GW","false","" +"NM-02607","","","559013","3629550","GW","false","" +"LC-017","","","399197","3935742","SP","true","Along walking bridge around north pond, just behind houses. (Formerly LL2) Two little discharge points @ bridge crossing just N of pond. Water cress in drainage." +"NM-17818","","","630283","3795440","GW","false","" +"NM-11367","","","630479","3658140","GW","false","" +"SO-0094","1S3E16.24","","349842","3788760","GW","true","" +"QY-0678","6.28.23.221","","597092","3844190","GW","true","" +"BW-0668","1.4.4.30.223","","288735","3823530","GW","true","" +"NM-10205","","","645001","3640970","GW","false","" +"EB-023","","","409124","3945240","GW","true","3360 Cerrillos Rd, in pit in adobe wellhouse, back/right; check at office between 1:00-2:00 PM" +"NM-15610","","","675000","3746560","GW","false","" +"ED-0028","17S27E11.11","","569692","3635390","GW","true","" +"NM-17447","","","642106","3788190","GW","false","" +"NM-17964","","","528906","3797410","GW","false","" +"NM-11091","","","623489","3652910","GW","false","" +"NM-25228","","","397682","3963500","GW","false","" +"NM-08879","","","643959","3625090","GW","false","" +"ED-0294","23S27E24.343","","580422","3572380","GW","true","" +"NM-03714","","","166149","3491060","GW","false","" +"NM-09160","","","202813","3631400","GW","false","" +"NM-11090","","","666590","3653760","GW","false","" +"NM-19127","","","638111","3819400","GW","false","" +"NM-02389","","","340129","3585190","GW","false","" +"NM-23257","","","392641","3898790","GW","false","" +"TB-0203","","","423178","3725967","GW","true","From Carrizozo, on Hwy 54 go 3 miles north to White Oaks turn off. Across tracks 1.1 miles to gate on SW corner of fence. South 1.4 miles to cattle tank. Turn right go toward railroad tracks then follow S for ~3 mi, turn left (east) past water tank, past adobe to blue casing on north side of road." +"BW-0018","22S4E1.444","","360824","3587610","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10372","","","218917","3646190","GW","false","" +"NM-26110","","","414314","4021350","GW","false","" +"NM-25767","","","170765","4001020","GW","false","" +"NM-10665","","","470585","3645800","GW","false","" +"NM-26006","","","216659","4015890","GW","false","" +"NM-21414","","","345844","3872680","GW","false","" +"EB-481","","","396164","3964658","GW","true","" +"NM-20905","","","130288","3863500","GW","false","" +"NM-21666","","","350165","3879150","GW","false","" +"NM-22924","","","608897","3892860","GW","false","" +"NM-02259","","","333589","3572180","GW","false","" +"NM-00719","","","458025","3695610","GW","false","" +"NM-19212","","","575155","3820990","GW","false","" +"NM-16868","","","675426","3780340","GW","false","" +"NM-25938","","","439809","4005330","GW","false","" +"NM-25820","","","245281","4001560","GW","false","" +"QY-0167","11.29.35.243","","606657","3888830","GW","true","" +"NM-06558","","","615533","3584840","GW","false","" +"NM-07812","","","229371","3611800","GW","false","" +"NM-13462","","","550295","3691000","GW","false","" +"TO-0539","8N8E25","","403827","3861410","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-07028","","","275699","3595240","GW","false","" +"NM-18223","","","651224","3803650","GW","false","" +"SA-0069","SA-69_R00","","253584","3723973","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south for approximately 32 miles to Dusty (Wahoo Ranch HQ which is the entire town) 100 ft north of the house on the west side of the road through the gates just north of the barn is a two track that winds down toward the creek. Well is located by the small well house with large diameter steel irrigation pipe radiating from the well head." +"NM-23606","","","369257","3909550","GW","false","" +"NM-00341","","","452970","3621510","GW","false","" +"NM-16306","","","217997","3770530","GW","false","" +"NM-26405","","","575732","4058850","GW","false","" +"NM-05507","","","233906","3569160","GW","false","" +"NM-02493","","","557933","3608900","GW","false","" +"NM-12300","","","558526","3671860","GW","false","" +"NM-08232","","","508389","3614200","GW","false","" +"NM-19645","","","564129","3830090","GW","false","" +"QY-0959","9.30.31.123","","609453","3870040","GW","true","" +"TS-023","","","437949","4077604","SP","true","East bank, just upstream from Sunshine Trail." +"NM-05580","","","137601","3573020","GW","false","" +"SO-0238","SFC-W04A","","312778","3721027","GW","true","" +"NM-15811","","","658703","3750930","GW","false","" +"NM-25286","","","216918","3970370","GW","false","" +"NM-24543","","","404175","3939420","GW","false","" +"SD-0014","7N.6E.12.324","","384336","3856740","GW","true","" +"TB-0033","","","402217","3682371","GW","true","" +"NM-18157","","","613764","3801730","GW","false","" +"NM-24118","","","475864","3928070","GW","false","" +"MI-0221","","","588826","3937213","GW","true","Topographic situation: Valley" +"QY-0370","12.31.31.433","","619129","3897920","GW","true","" +"BC-0388","391","","349693","3874179","GW","false","" +"NM-16639","","","673298","3776260","GW","false","" +"NM-18385","","","668022","3806000","GW","false","" +"NM-03855","","","353097","3520040","GW","false","" +"NM-01971","","","346250","3547520","GW","false","" +"AR-0026","NMED 211","","225273","4077390","GW","true","From the far west end of Road 3050, take Road 3500 south, turn left (east) on Road 3476 as it makes a sharp turn to the south to address. Well is in driveway next to garage. House is for sale. Leaving NM in April 2016. Appears to be in foreclosure Jan. 2017." +"NM-16896","","","657240","3780080","GW","false","" +"TV-283","","","445305","4028253","GW","true","" +"NM-22336","","","345272","3886530","GW","false","" +"SM-1098","","","478480","3652708","SP","true","Near roadside" +"NM-28370","CN-2015-015","","581791","3607407","GW","true","" +"NM-17962","","","635095","3798680","GW","false","" +"ED-0381","25S24E23.343","","549798","3552910","SP","true","" +"NM-13737","","","135144","3701100","GW","false","" +"NM-01605","","","294206","4012660","GW","false","" +"NM-18150","","","606842","3801490","GW","false","" +"NM-13324","","","623716","3690180","GW","false","" +"TS-016","","","438412","4059882","SP","true","North Big Arsenic Spring is actually a zone of large springs on east side of the river, some of which are shown as TS-16a, TS-16b, and TS-16c. Approximate center of spring zone was located using Google Earth." +"MI-0056","","","475305","3914958","GW","true","Topographic situation: Valley" +"NM-05752","","","244214","3571610","GW","false","" +"NM-21564","","","350162","3877420","GW","false","" +"NM-27320","","","359666","3587980","GW","false","" +"NM-01036","","","565907","3832600","GW","false","" +"QY-0734","6.32.18.331","","628182","3845060","GW","true","" +"NM-25490","","","466396","3976040","GW","false","" +"NM-22448","","","398653","3887050","GW","false","" +"NM-09652","","","409754","3632340","GW","false","" +"NM-18094","","","623892","3801090","GW","false","" +"NM-13282","","","554521","3688710","GW","false","" +"NM-23823","","","393530","3916220","GW","false","" +"NM-13717","","","552449","3694220","GW","false","" +"NM-02974","","","225768","3767560","GW","false","" +"NM-20777","","","560084","3852760","GW","false","" +"TO-0498","10N7E27.34","","392005","3879940","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-25167","","","415162","3959400","GW","false","" +"NM-18609","","","653139","3809930","GW","false","" +"NM-00816","","","463386","3712800","GW","false","" +"NM-15657","","","634507","3746610","GW","false","" +"NM-06851","","","671226","3591140","GW","false","" +"NM-23743","","","643198","3914210","GW","false","" +"NM-12095","","","611162","3668810","GW","false","" +"NM-10468","","","617804","3644340","GW","false","" +"NM-20771","","","613922","3853150","GW","false","" +"NM-10799","","","281924","3650140","GW","false","" +"NM-14301","","","210204","3704730","GW","false","" +"QY-0656","5.30.33.113","","612199","3831280","GW","true","" +"NM-28141","","","202797","3967410","GW","false","" +"NM-01482","","","669331","3951170","GW","false","" +"NM-08365","","","680664","3618050","GW","false","" +"NM-16944","","","657047","3780940","GW","false","" +"SM-1056","","","441094","3640596","SP","true","" +"NM-16642","","","129540","3781890","GW","false","" +"NM-17946","","","185010","3802370","GW","false","" +"NM-09814","","","557687","3633980","GW","false","" +"NM-03238","","","399566","3836680","GW","false","" +"TV-166","SWS-22","","438483","4022941","GW","true","SR 68 to SR 96, go left (west) ~2.5 miles past Los Cordovas Rd. House on right (north) side of road just after a hill crest Well by garden south of house." +"NM-15214","","","556934","3735170","GW","false","" +"NM-24019","","","652781","3925210","GW","false","" +"NM-08532","","","635439","3619920","GW","false","" +"NM-12675","","","644891","3679880","GW","false","" +"NM-25797","","","395474","3997270","GW","false","" +"BC-0207","207","","377677","3878200","GW","true","" +"NM-19111","","","596450","3818040","GW","false","" +"NM-01436","","","190339","3943950","GW","false","" +"NM-06216","","","328674","3578670","GW","false","" +"TV-135","","","445189","4026137","GW","true","From SR 240 turn right (north) on Camino del Medio. Half mile on right, sharp turn at gate. Drive to horse barn. Well to SE 75 meters. Look for well house and electric line." +"NM-03900","","","347948","3522270","GW","false","" +"NM-19570","","","249864","3831920","GW","false","" +"NM-02563","","","561821","3621310","GW","false","" +"SA-0022","SA-22_R00","","226775","3776803","GW","true","From NM12 (MM 64), go west (right) on Green Gap Rd to Sugarloaf Mt. subdivision. Right @ entrance & go 4 mi north. Cross cattle guard then 0.3 mi to Northern Tr. Turn left for 0.4 mi to Sugarload Tr and turn right. Follow for 1.8 mi passing Bobcat, Deer, Badger & Coyote Trs. Drop down off hill into arroyo, pass tank on right. Go 0.4 mi past Raven Loop, turn left where Raven Lp comes back to Sugarloaf Tr. Well is 0.1 mi up canyon on right in arroyo bottom. Look for corral remnants downhill from earthen berm." +"UC-0187","","","628273","4040658","GW","false","" +"BW-0784","2.25.22.19","","530763","4026850","GW","true","" +"NM-14947","","","416791","3725140","GW","false","" +"BW-0102","8S13E19.33","","433293","3717790","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26185","","","314758","4029960","GW","false","" +"NM-03477","","","638144","3917820","GW","false","" +"SB-0074","TWDB 4717302","","509316","3509990","GW","false","" +"NM-04724","","","236360","3556700","GW","false","" +"ED-0362","26S24E11.314","","549706","3546700","GW","true","" +"NM-17349","","","338730","3786960","GW","false","" +"NM-16681","","","655372","3776840","GW","false","" +"BW-0131","11S9E22.441","","400792","3689890","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0428","TWDB 4815205","","480975","3525120","GW","false","" +"TO-0035","3N6E10.122","","380538","3819100","GW","true","" +"TB-0167","","","434358","3711442","GW","true","#156 B Nogal Canyon Rd. North side of road. Cabin. Go across creek to east to shed. Well is east of shed well, about 200 ft behind box." +"NM-18423","","","570123","3805330","GW","false","" +"EB-010","","","415983","3959744","GW","true","CR74 to Avenida Melodia, first left, past small house, well on left side of road, red steel cap" +"NM-01348","","","641152","3914560","GW","false","" +"NM-28356","237714","","167683","3686361","SP","false","Gila National Forest" +"BC-0279","277","","366939","3880610","GW","true","" +"NM-27740","","","589460","3791540","GW","false","" +"NM-01390","","","477744","3928190","GW","false","" +"NM-09841","","","285369","3636570","GW","false","" +"NM-25875","","","623213","4002140","GW","false","" +"AR-0013","","","226943","4076640","GW","true","From Road 3000, turn north on Road 3291 towards the river. House on left after sharp left turn in road. Well is on north side of property, behind home in small well house. Two wells in shed (one open, one equipped). Home is for sale. May have new owner in future." +"QY-0340","11.34.2.333","","653606","3896830","GW","true","" +"SR-0024","","","301907","3761090","SP","true","Magdalena Ridge; " +"QY-0400","12.34.30.422","","648418","3900400","GW","true","" +"NM-21557","","","347504","3877420","GW","false","" +"SO-0059","1N2W1.33","","315483","3801030","GW","true","" +"NM-12124","","","290557","3671190","GW","false","" +"NM-27318","","","362452","3587330","GW","false","" +"NM-26594","","","658481","4070210","GW","false","" +"NM-21828","","","645898","3881430","GW","false","" +"NM-22887","","","375540","3892600","GW","false","" +"NM-11964","","","678381","3667710","GW","false","" +"NM-01481","","","486000","3949180","GW","false","" +"NM-28325","SC-17","","442301","4050193","GW","false","" +"NM-14400","","","680486","3705030","GW","false","" +"NM-03811","M-003","","272107","3520682","GW","false","Go east from Columbus 14.9 miles on NM-9, turn south on dirt road at cattle guard, windmill of NM-03811 on hill inside bend in road. NM-03819 is ~200 yards west of windmill in corral with adjacent solar panels." +"NM-16783","","","530377","3777240","GW","false","" +"NM-16090","","","669475","3759340","GW","false","" +"ED-0103","21S26E23.131","","568605","3592570","GW","true","" +"NM-15761","","","674944","3749580","GW","false","" +"BC-0117","102","","378063","3868530","GW","true","109 Carlino Canyon Rd, Tijeras, NM 87059" +"NM-16478","","","664840","3773310","GW","false","" +"NM-23970","","","447984","3921410","GW","false","" +"NM-25549","","","622657","3981170","GW","false","" +"NM-25651","","","416187","3985310","GW","false","" +"NM-24180","","","636534","3930710","GW","false","" +"NM-01052","","","678049","3842860","GW","false","" +"NM-14102","","","547343","3697420","GW","false","" +"CX-0057","25N25E25.2","","569416","4025770","GW","true","" +"NM-08044","","","670717","3613190","GW","false","" +"NM-07020","","","542760","3592670","GW","false","" +"NM-04567","","","208018","3554830","GW","false","" +"NM-22141","","","346800","3884410","GW","false","" +"NM-11697","","","539375","3662430","GW","false","" +"NM-27345","","","610429","3595030","GW","false","" +"NM-24568","","","670658","3941250","GW","false","" +"NM-19486","","","667025","3828720","GW","false","" +"NM-10879","","","554070","3648830","GW","false","" +"NM-14527","","","662390","3709240","GW","false","" +"SA-0197","","","267970","3702814","GW","true"," Canyon subject to flooding in summer, be sure to call ahead and watch for storms even if they are not in canyon!! Approximately 3.5 miles from cattle guard north of Monticello to Coil Ranch HQ (Look for big cottonwood on side of the road and driveway to west) From HQ 0.1 miles north look for turbine well and generator on the east side of the road." +"BW-0692","4.9.15.15.331","","458324","3710830","GW","true","" +"NM-01053","","","594400","3841150","GW","false","" +"NM-12536","","","559458","3676120","GW","false","" +"NM-21591","","","347339","3877580","GW","false","" +"SB-0551","TWDB 4854401","","466255","3450405","GW","false","" +"NM-07244","","","344412","3598280","GW","false","" +"NM-00040","","","487441","3543330","GW","false","" +"NM-28265","ICP-WS-01","","656463","3568302","GW","false","" +"QY-0217","11.30.21.244","","613168","3892230","GW","true","" +"NM-15399","","","678524","3742400","GW","false","" +"AB-0110","S134","","348271","3890210","GW","true","" +"NM-18994","","","610091","3815840","GW","false","" +"NM-00243","","","670888","3587970","GW","false","" +"NM-14264","","","679747","3701720","GW","false","" +"NM-24791","","","674938","3946360","GW","false","" +"QY-0025","10.29.20.131","","600788","3882510","GW","true","" +"NM-13791","","","544643","3694950","GW","false","" +"NM-17329","","","655904","3786500","GW","false","" +"NM-22470","","","182593","3892220","GW","false","" +"NM-11973","","","668497","3668120","GW","false","" +"NM-27932","","","567268","3836270","GW","false","" +"NM-03276","","","401697","3847910","GW","false","" +"NM-06399","","","183499","3585910","GW","false","" +"NM-17415","","","643418","3787750","GW","false","" +"NM-05026","","","342604","3559460","GW","false","" +"NM-22434","","","392197","3886970","GW","false","" +"NM-03671","","","646663","4082400","GW","false","" +"SM-0258","","","444462","3640965","GW","true","In 3L Canyon, between spring with wiers and downhill spring by pond that leads to houses." +"NM-17278","","","620028","3785540","GW","false","" +"JM-048","","","312540","3640812","GW","true","" +"TO-0258","7N6E36.111","","383563","3851290","GW","true","" +"NM-17740","","","646576","3793650","GW","false","" +"NM-24338","","","420593","3934830","GW","false","" +"NM-19254","","","622095","3823090","GW","false","" +"NM-21149","","","228821","3868110","GW","false","" +"NM-13566","","","477107","3692220","GW","false","" +"NM-17338","","","656310","3786750","GW","false","" +"AR-0023","NMED 198","","234008","4081640","GW","true","From Hwy 550 in Aztec, take McCoy Avenue north until it turns into Rd. 2999. Follow to the end where it makes sharp turn to east. Follow to next sharp right turn to south to address. Well in workshop under cabinet." +"EB-276","","","412116","3949350","GW","true","Alto and La Madera Streets" +"NM-01888","","","348236","3536430","GW","false","" +"NM-23456","","","670114","3906140","GW","false","" +"NM-26157","","","613235","4025610","GW","false","" +"NM-07113","","","556191","3594890","GW","false","" +"EB-618","","","414110","3930390","GW","true","" +"QY-0706","6.29.33.131","","602499","3840620","GW","true","" +"NM-08450","","","232389","3621180","GW","false","" +"NM-18005","","","676378","3800540","GW","false","" +"NM-24826","","","407487","3945710","GW","false","" +"BC-0294","305","","376442","3890860","GW","true","" +"NM-28315","PIL-06","","432171","4015920","GW","false","" +"NM-13180","","","551478","3687250","GW","false","" +"NM-10518","","","550328","3644440","GW","false","" +"NM-24359","","","399550","3935470","GW","false","" +"SO-0045","2N5E33.222","","369537","3802900","GW","true","" +"NM-13321","","","542343","3689300","GW","false","" +"NM-04858","","","133170","3562220","GW","false","" +"NM-02753","","","635913","3664390","GW","false","" +"NM-01719","","","199902","4079290","GW","false","" +"SM-0143","","","462962","3633486","GW","true","Turn off of Miller Flats Rd, Right at intersection with McDonald Flats. Before getting to Mule Flats Rd, turn left at stone pile onto 2track. Go back about 1 mi on rough rd., to fence style gate. Well is up by beige storage tank. Steel drum over well. No good access port to measure." +"SD-0175","10N.6E.4.122","","381082","3887860","GW","true","" +"NM-25135","","","149063","3963230","GW","false","" +"DA-0083","23S2E6.331","","332122","3578710","GW","true","" +"NM-27006","","","334104","3753090","GW","true","" +"NM-08925","","","612492","3624960","GW","false","" +"NM-18721","","","610332","3811050","GW","false","" +"NM-06643","","","647338","3586610","GW","false","" +"NM-28422","S-2016-100","","586340","3566367","GW","true","" +"NM-16162","","","222430","3764080","GW","false","" +"NM-28162","","","162366","3757080","GW","false","" +"SB-0862","Mayer 23","","425153","3554603","GW","false","" +"QY-0863","8.29.31.224","","600223","3860020","GW","true","" +"NM-27157","PS-017","","373398","3911681","SP","true","" +"EB-248","","","415241","3946037","GW","true","505 Calle de San Francisco, in back yard" +"NM-05447","","","135528","3571550","GW","false","" +"QU-049","CER-19","","446728","4067581","GW","true","From Hwy. 522, one mile north of NM 387 (Wild Rivers Hwy) on the left. An old white plywood sign marks the gate. Gate is locked; call Nick for key." +"NM-07207","","","637445","3597250","GW","false","" +"NM-02819","","","272259","3697920","GW","false","" +"QY-0086","10.32.23.22","","635737","3883280","GW","true","" +"EB-246","","","412838","3946969","GW","true","In storage shed behind Sangre de Cristo Utilities" +"NM-08122","","","232774","3616110","GW","false","" +"BW-0782","2.22.35.32.342","","659093","3995160","GW","true","" +"NM-05508","","","670640","3567140","GW","false","" +"NM-10345","","","649441","3642950","GW","false","" +"NM-09515","","","217960","3634560","GW","false","" +"NM-06359","","","672930","3581650","GW","false","" +"NM-12112","","","558856","3668750","GW","false","" +"BC-0126","110","","366729","3881760","GW","true","" +"ED-0041","18S28E8.33","","574555","3624570","GW","true","" +"AB-0233","test alternate site id","","322585","3763319","GW","true","" +"NM-00485","","","676984","3646420","GW","false","" +"BW-0220","14S9E34.241","","400555","3658090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24167","","","637522","3930390","GW","false","" +"NM-13928","","","552933","3695510","GW","false","" +"NM-10677","","","551696","3646020","GW","false","" +"SB-0311","TWDB 4807529","","482647","3534477","GW","false","" +"NM-09266","","","201311","3632580","GW","false","" +"NM-17592","","","665015","3791060","GW","false","" +"NM-11159","","","671138","3654950","GW","false","" +"DA-0034","21S2W31.432","","304238","3590330","GW","true","" +"NM-01018","","","597798","3828070","GW","false","" +"NM-26992","","","326204","3742540","GW","true","" +"NM-05413","","","240084","3567890","GW","false","" +"NM-01794","","","118084","3526760","GW","false","" +"NM-26767","","","243640","4096350","GW","false","" +"NM-12784","","","613924","3680760","GW","false","" +"AS-015","DM-101","","447333","4042700","GW","true","" +"NM-23105","","","350898","3896450","GW","false","" +"NM-13446","","","639512","3692150","GW","false","" +"NM-01288","","","587391","3902550","GW","false","" +"TO-0447","10N7E30.321","","387195","3880580","GW","true","" +"NM-00595","","","672328","3664910","GW","false","" +"NM-28218","","","159719","4074630","GW","false","" +"NM-01332","","","654840","3911340","GW","false","" +"NM-09986","","","654486","3637700","GW","false","" +"NM-24685","","","160124","3949060","GW","false","" +"NM-07154","","","357745","3596250","GW","false","" +"SB-0679","TWDB 4915516","","388584","3520965","GW","false","" +"SB-0649","TWDB 4915301","","392395","3525913","GW","false","" +"NM-03422","","","671592","3894850","GW","false","" +"BC-0199","199","","375157","3884550","GW","true","" +"NM-05273","","","220872","3565970","GW","false","" +"BC-0023","14","","368553","3881300","GW","true","" +"NM-02930","","","658501","3744540","GW","false","" +"NM-24749","","","407700","3944440","GW","false","" +"NM-03319","","","401966","3870010","GW","false","" +"NM-02606","","","557869","3629510","GW","false","" +"NM-12666","","","558617","3678240","GW","false","" +"DE-0293","","","673491","3584304","GW","false","" +"NM-13720","","","547256","3694220","GW","false","" +"NM-24273","","","477135","3932470","GW","false","" +"NM-25343","","","405631","3970400","GW","false","" +"ED-0240","22S27E31.233","","572714","3579520","GW","true","" +"NM-26066","","","330852","4019400","GW","false","" +"NM-17711","","","609504","3792400","GW","false","" +"NM-01278","","","233517","3903550","GW","false","" +"NM-16760","","","653501","3778480","GW","false","" +"NM-21932","","","368450","3881790","GW","false","" +"NM-17266","","","647037","3785460","GW","false","" +"NM-00959","","","676246","3812410","GW","false","" +"NM-23852","","","391320","3917110","GW","false","" +"NM-23993","","","637604","3923420","GW","false","" +"EB-003","","","409880","3936461","GW","true","300 ft W of RV Test Well; west of crossroads" +"NM-07865","","","664641","3610230","GW","false","" +"NM-26996","","","323854","3790900","GW","true","" +"BC-0437","440","","","","GW","false","" +"NM-07361","","","181436","3605010","GW","false","" +"NM-00500","","","667134","3647580","GW","false","" +"NM-17920","","","645226","3798220","GW","false","" +"BW-0478","12S2E35.434","","341435","3677480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16345","","","674858","3769570","GW","false","" +"NM-12003","","","664970","3668240","GW","false","" +"NM-12880","","","657824","3683750","GW","false","" +"NM-16452","","","542008","3770940","GW","false","" +"MI-0107","","","545570","3924259","GW","true","Topographic situation: Plains" +"SB-0736","TWDB 4923602","","389582","3506203","GW","false","" +"SO-0248","SMC-W03B","","314576","3728660","GW","true","" +"NM-23481","","","411699","3906070","GW","false","" +"NM-07792","","","661662","3609010","GW","false","" +"WL-0136","","","322778","3768915","GW","true","From the crazy intersection of Spring, 6th, Grant & Hwy 60, proceed west on 6th St for 0.65 miles, then turn left on Evergreen. Follow Evergreen for 0.5 miles and turn left on a dirt 2-track road to well house, which should be visible. Well head is outside of well house." +"NM-03482","S206","","364570","3922000","GW","false","" +"TB-1033","","","410959","3701199","SP","true","" +"AR-0055","NMED 553","","235008","4082850","GW","true","Take Hwy 550 from Aztec toward Cedar Hill. Turn left on Rd 2924 to address on left. Well is under floorboards of wood shed in field S of home." +"NM-06161","","","156058","3582090","GW","false","" +"NM-08374","","","233533","3620070","GW","false","" +"NM-08415","","","198531","3621690","GW","false","" +"NM-13995","","","545749","3695970","GW","false","" +"NM-23474","","","363980","3906330","GW","false","" +"NM-19350","","","590211","3824850","GW","false","" +"NM-24475","","","404715","3938160","GW","false","" +"NM-08262","","","560690","3614840","GW","false","" +"NM-20564","","","407624","3847790","GW","false","" +"NM-24509","","","381065","3939060","GW","false","" +"NM-14750","","","545080","3717430","GW","false","" +"NM-07975","","","557251","3610420","GW","false","" +"BC-0349","358","","379391","3891552","GW","true","" +"NM-05189","","","129444","3567330","GW","false","" +"NM-05214","","","216047","3565020","GW","false","" +"SA-0458","5S14W32.434","","193081","3747450","GW","true","" +"NM-25503","","","407775","3978120","GW","false","" +"BW-0158","13S9E25.124","","403108","3669770","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00765","","","440391","3700690","GW","false","" +"NM-26943","PW-191","","366104","3909633","GW","true","" +"NM-27766","","","626600","3816690","GW","false","" +"NM-22193","","","361554","3884790","GW","false","" +"NM-08046","","","258127","3614110","GW","false","" +"NM-04497","","","348193","3549400","GW","false","" +"NM-00594","","","402077","3663150","GW","false","" +"NM-07472","","","206406","3606590","GW","false","" +"NM-20216","","","601920","3840130","GW","false","" +"BW-0480","12S5E31.434","","356324","3677120","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04552","","","672416","3551980","GW","false","" +"AR-0207","","","243480","4095630","GW","true","Heading north on Hwy 550 out of Aztec, turn right on Rd. 2105 after Cedar Hill. First driveway on right after Rd. 2136 w/black mailbox. Go thru gate. Well is in field in small shed that looks like an outhouse; NOT the cinderblock building. Sample @ hydrant next to water tank that is half in shed and half out." +"TB-0181","","","404927","3706201","GW","true","Oscuro County Road A0002, approx 3 miles to 300 Grand Ave. Two-story house. Past driveway at 2-story to ranch house on north side of road. West of ranch house well on 2-track to old cement tank and well house. Look for power pole under steel drum." +"NM-14631","","","548070","3712240","GW","false","" +"NM-04717","","","670143","3554620","GW","false","" +"NM-16640","","","664739","3776140","GW","false","" +"NM-14848","","","544031","3721460","GW","false","" +"NM-22529","","","355711","3888460","GW","false","" +"NM-26215","","","159443","4037520","GW","false","" +"NM-08029","","","645453","3611960","GW","false","" +"NM-18048","","","631518","3800360","GW","false","" +"NM-18920","","","664007","3814920","GW","false","" +"NM-07201","","","225862","3599960","GW","false","" +"NM-23842","","","640852","3917340","GW","false","" +"NM-13271","","","670884","3690100","GW","false","" +"NM-06403","","","583187","3581470","GW","false","" +"EW-0004","","","419009","4004742","SP","false","" +"SB-0751","TWDB 4924409","","395005","3505993","GW","false","" +"NM-15794","","","669936","3750810","GW","false","" +"AB-0053","S061","","349528","3887380","GW","true","" +"NM-06947","","","674046","3592730","GW","false","" +"NM-00250","","","681165","3591030","GW","false","" +"SD-0211","10N.6E.24.313","","385166","3882010","GW","true","" +"NM-18991","","","622673","3816040","GW","false","" +"NM-20889","","","295254","3857590","GW","false","" +"NM-25469","","","651717","3975650","GW","false","" +"NM-09091","","","203875","3630350","GW","false","" +"NM-23457","","","404413","3905040","GW","false","" +"NM-15418","","","423537","3740940","GW","false","" +"NM-21410","","","345694","3872620","GW","false","" +"NM-22983","","","349729","3894450","GW","false","" +"NM-14129","","","547161","3697790","GW","false","" +"SA-0121","","","224812","3757426","GW","true","From Datil take Rt 12 south 7 miles, turn E on county road. Go 5.6 miles to Sanchez well, turn SW, go past Navajo well (4 miles) then 2.5 miles to Chamise well." +"NM-25388","","","407863","3972140","GW","false","" +"BW-0213","14S9E26.444","","402200","3658870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13513","","","549465","3691610","GW","false","" +"NM-14648","","","574395","3712990","GW","false","" +"NM-17507","","","550628","3788330","GW","false","" +"NM-26071","","","630104","4019400","GW","false","" +"BW-0814","1.3.1.25.444","","326410","3813710","GW","true","" +"NM-20300","","","528592","3841000","GW","false","" +"WL-0181","","","439373","3937155","GW","true","From north on I-25 past Santa Fe, take Exit 299 onto NM-50 towards Pecos. Hwy 50 crosses Hwy 63 in Pecos and becomes NM-223. Drive about 0.4 miles, cross Pecos River, turn right (south) into first driveway past Pecos River onto River Cabin Road @ Pecos River Cabins. Well is in yard in front of blue house." +"NM-22446","","","344964","3887770","GW","false","" +"NM-14807","","","676422","3721040","GW","false","" +"NM-23386","","","228335","3905290","GW","false","" +"NM-15760","","","679788","3750380","GW","false","" +"NM-15021","","","247071","3731320","GW","false","" +"EB-037","","","418334","3943280","GW","true","" +"NM-25846","","","166277","4006190","GW","false","" +"NM-16767","","","678740","3778550","GW","false","" +"NM-24315","","","198568","3939040","GW","false","" +"NM-09786","","","193489","3638250","GW","false","" +"NM-06728","","","670847","3588830","GW","false","" +"AR-0039","NMED 327 & 328","","214003","4067760","GW","true","South of Farmington and Hwy 64. From the intersection of business & bypass 64 on the east side of Farmington, take bypass 64 west. Turn left (south) on S. Butler Ave. Road makes a slight jog to right and back left, but stay on S. Butler. Turn right on Ouray Avenue to address. Well in in western part of backyard." +"NM-03415","S161","","353063","3893800","GW","false","" +"NM-25610","","","533502","3983120","GW","false","" +"NM-22478","","","236686","3890550","GW","false","" +"TO-0198","5N14E1.111","","462212","3839220","GW","true","" +"NM-17564","","","620891","3790050","GW","false","" +"WL-0209","","","424198","3727227","GW","true","Well on west side of 2-track. Look for pile of well cuttings." +"NM-14058","","","616829","3697460","GW","false","" +"ED-0065","20S25E15.2","","549883","3604680","GW","true","" +"CP-0014","NM3528522","","670560","3788005","GW","true","From Portales take US 70 north (Portales water tanks on east), turn east on NM 202. Look for Producers Livestock Auction on right. ~0.25-0.5 mi past auction turn right at mailboxes & locked gate marked 419 with white frame. Go SE on dirt road, cross cattle guard, and a maze of dirt roads. Pass wells B1, B2 in houses. Bear left thru fence on 2-track, pass 1 well then 42. Well in locked enclosure." +"NM-24883","","","409485","3946830","GW","false","" +"SB-0583","TWDB 4861302","","463013","3438933","GW","false","" +"QU-178","","","443654","4062874","GW","true","Tailing facility, Dam 4 impoundment" +"NM-26765","","","656417","4093420","GW","false","" +"NM-26801","","","348609","3867626","GW","true","" +"SA-0168","","","251111","3717243","GW","true","From the town of Dusty, take 52 south for 2.9 miles. Look for gate to southwest (R). Gate combo is 1920. Go through gate, follow 2-track across Alamosa Creek. Follow this road about 3.3 miles to the east. Windmill visible from a distance, and is located on top of the ridge in the open. Look for windmill tower and tank." +"NM-21552","","","357788","3877210","GW","false","" +"NM-16029","","","653433","3757370","GW","false","" +"NM-13593","","","629203","3693640","GW","false","" +"DE-0377","","","569483","3626623","GW","false","" +"NM-26294","","","473336","4040840","GW","false","" +"NM-02873","","","645948","3721240","GW","false","" +"NM-12631","","","280075","3680020","GW","false","" +"ED-0337","24S28E27.422","","587880","3561730","GW","true","" +"NM-20419","","","598492","3844160","GW","false","" +"DE-0245","","","671165","3569478","GW","false","" +"TB-0247","","","403127","3675126","GW","true","" +"NM-00084","","","548056","3550790","GW","false","" +"NM-24301","","","420734","3933720","GW","false","" +"NM-10885","","","615043","3649420","GW","false","" +"NM-05792","","","220958","3572900","GW","false","" +"NM-20859","","","552832","3854750","GW","false","" +"NM-06008","","","330927","3574160","GW","false","" +"TC-257","CO-05","","415947","4102009","GW","true","" +"NM-13218","","","560007","3687820","GW","false","" +"NM-12600","","","552153","3677240","GW","false","" +"NM-25037","","","407544","3951250","GW","false","" +"NM-26734","","","448114","4085730","GW","false","" +"BW-0533","17S9E23.310a","","406784","3631830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13787","","","544746","3694920","GW","false","" +"NM-19389","","","611609","3825850","GW","false","" +"NM-19738","","","570587","3831550","GW","false","" +"NM-04048","","","252634","3533240","GW","false","" +"NM-17957","","","387215","3798020","GW","false","" +"DE-0058","","","543174","3590317","GW","false","" +"SA-0238","","","243274","3782181","GW","true","From west on Hwy 60 from Magdalena, turn right (north) on road ~4 miles from the Socorro/Catron county line (before Datil). Go north 1 mile to fork in road and go right. House is at end of drive. Well is in small well house behind residence and near a couple of large tanks." +"TO-0504","5N13E14.311","","450759","3835310","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-04051","","","157010","3536250","GW","false","" +"NM-15646","","","650697","3746910","GW","false","" +"NM-20477","","","221004","3849190","GW","false","" +"SB-0911","","","482268","3575286","GW","true","From junction of Hwys 1437 (Main) & 2249 (Broadway), go E on 2249 for 3 mi, turn N (left) on Hwy 1576 (hwy alternates between north & east) for 3 mi, east 1 mi, north 1 mi, east 1.4 mi, then turn N on G-005 for 2.3 mi. Road ends at NM-506, turn E (right) on NM-506 for 5.6 mi (numerous curves); at intersection, turn E (right) which is still NM-506 but not clearly marked. Continue on NM-506 for 0.5 mi, NM-506 turns N (left), stay on NM-506 for addl. 9 mi. At intersection, turn W (left) which is still NM-506 thru several bends 8.8 mi to Pinon Creek Rd. Turn N (right) on Pinon Creek Rd, go 4.2 mi to bdgs & ranch structures. Well is visible under windmill tower." +"NM-21989","","","394091","3882260","GW","false","" +"NM-06986","","","658258","3593460","GW","false","" +"NM-03246","","","577639","3837920","GW","false","" +"NM-08495","","","284505","3620740","GW","false","" +"NM-03026","","","675654","3796890","GW","false","" +"NM-06944","","","227814","3594850","GW","false","" +"NM-18402","","","666584","3806400","GW","false","" +"NM-15080","","","649604","3731370","GW","false","" +"NM-20756","","","632778","3853130","GW","false","" +"NM-11009","","","647566","3651850","GW","false","" +"NM-25618","","","409687","3983740","GW","false","" +"UC-0221","","","667319","3945482","GW","false","" +"NM-16326","","","571613","3767300","GW","false","" +"NM-18242","","","659242","3803730","GW","false","" +"NM-27239","","","601253","3557490","GW","false","" +"TO-0088","4N8E12.33","","402667","3827330","GW","true","" +"QY-0949","9.29.8.311","","600853","3875660","GW","true","" +"NM-22264","","","378654","3885230","GW","false","" +"NM-04554","","","233862","3553500","GW","false","" +"AB-0203","S257","","347004","3873530","GW","true","" +"NM-12949","","","548060","3683200","GW","false","" +"NM-01422","","","435205","3935730","GW","false","" +"DE-0195","","","611739","3599851","GW","false","" +"BW-0087","8S10E1.324","","420386","3722550","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0172","","","603092","4071182","GW","false","" +"NM-02795","","","540141","3684210","GW","false","" +"SB-0255","TWDB 4807314","","487616","3540412","GW","false","" +"NM-07484","","","280121","3605060","GW","false","" +"NM-16913","","","615567","3779880","GW","false","" +"NM-18353","","","570337","3804070","GW","false","" +"BW-0051","23S5E35.3","","367464","3570140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0463","6S13W11.400a","","208387","3744470","GW","true","" +"NM-26621","","","195139","4076010","GW","false","" +"ED-0032","17S28E22.23","","578524","3632050","GW","true","" +"NM-15069","","","152171","3735810","GW","false","" +"NM-05103","","","675464","3560780","GW","false","" +"UC-0044","","","666479","3994786","GW","true","elv is 4570 acc to USGS" +"NM-06741","","","568037","3587880","GW","false","" +"NM-23150","","","234567","3899520","GW","false","" +"NM-24500","","","397648","3938670","GW","false","" +"NM-18165","","","621735","3801890","GW","false","" +"NM-25826","","","317901","4000240","GW","false","" +"NM-12541","","","196057","3680700","GW","false","" +"NM-04278","","","390910","3541740","GW","false","" +"NM-20550","","","428517","3847180","GW","false","" +"SD-0223","10N.7E.20.112","","389071","3882220","GW","true","" +"ED-0350","25S28E3.222","","587963","3559110","GW","true","" +"QY-0631","5.29.8.114","","600946","3837640","GW","true","" +"CX-0169","S14","","558946","4096830","SP","true","West slope Barilla Mesa" +"NM-02757","","","565960","3664020","GW","false","" +"AB-0258","","","499999","3983948","GW","true","dev test again" +"SM-0023","","","424819","3627744","GW","true","Well is in insulated wellhouse adjacent to highway just south of road to Sunspot lab. Rex's office is in Community center, past V.C., has flag in front. Set appt with Mike so he can unlock door." +"NM-17386","","","675999","3788060","GW","false","" +"TB-1036","","","426303","3707196","SP","true","From Hwy 37 to Nogal Canyon Road to end (where road turns south uphill go straight to end. Nogal Trail #48 trailhead is south of stream and is marked well. Trail parallels stream, follow to spring outlet. About 1/4 mile hike uphill and then down slope to current outlet." +"NM-17449","","","637166","3788180","GW","false","" +"NM-11421","","","665893","3659630","GW","false","" +"NM-06425","","","673169","3582980","GW","false","" +"NM-19176","","","605146","3820420","GW","false","" +"NM-14843","","","641322","3722030","GW","false","" +"NM-28171","","","645269","3985000","GW","false","" +"NM-03745","","","170035","3508520","GW","false","" +"TO-0407","9N8E24.33","","404544","3871730","GW","true","" +"TO-0009","1N13E34.211","","447890","3792570","GW","true","" +"NM-17264","","","677747","3786360","GW","false","" +"NM-19745","","","608349","3832190","GW","false","" +"NM-14801","","","602202","3719780","GW","false","" +"ED-0079","20S30E16.42","","596615","3604250","GW","true","" +"TC-256","CO-04","","409188","4103935","GW","true","" +"NM-21516","","","376531","3876160","GW","false","" +"SB-0570","TWDB 4855901","","487743","3447526","GW","false","" +"SA-0235","","","275582","3772040","GW","true","Heading west on Hwy 60 from Magdalena, make left on dirt road just past mile marker 101. Road is directly across Hwy 60 from Armstrong ranch gate. Make left on old Hwy 60, make right on old dirt road to windmill. Look for power poles to right to help find windmill. Well is underneath old windmill." +"NM-11338","","","649806","3658140","GW","false","" +"NM-18877","","","646301","3814440","GW","false","" +"NM-25982","","","414807","4008030","GW","false","" +"NM-14447","","","539306","3705050","GW","false","" +"NM-26659","","","193453","4078750","GW","false","" +"EB-599","","","407830","3948618","GW","true","68 Camino Espejo. Take Entrada off 599 to Cam Espejo. Well in field behind house." +"NM-16245","","","222517","3767930","GW","false","" +"NM-08644","","","556930","3620950","GW","false","" +"JM-043","","","304384","3666213","GW","true","" +"NM-21893","","","348959","3881770","GW","false","" +"NM-27871","","","566549","3812300","GW","false","" +"SB-0822","TWDB 4835401","","431329","3480378","SP","false","" +"NM-00145","","","487541","3562190","GW","false","" +"NM-14423","","","550847","3704030","GW","false","" +"NM-27075","","","324651","3764000","GW","true","" +"TO-0169","5N8E17.311a","","396490","3835760","GW","true","" +"AB-0192","S243","","337891","3894400","GW","true","" +"SA-0407","4S12W3.220","","216071","3765730","GW","true","" +"TO-0155","5N8E11.221a","","402354","3838100","GW","true","" +"NM-18911","","","594988","3813840","GW","false","" +"NM-02634","","","164169","3641730","GW","false","" +"NM-17697","","","232712","3794960","GW","false","" +"NM-00733","","","431277","3696490","GW","false","" +"NM-08096","","","676805","3613820","GW","false","" +"NM-18648","","","360655","3810120","GW","false","" +"NM-01682","","","316878","4052270","GW","false","" +"BW-0253","14S10E32.111","","405872","3658430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21467","","","344836","3874760","GW","false","" +"NM-20221","","","542741","3839730","GW","false","" +"QY-0425","12.37.30.133","","676134","3901160","GW","true","" +"RA-030","","","358499","4085247","GW","true","In yard near gate, under plywood structure." +"NM-18203","","","528739","3801660","GW","false","" +"NM-12553","","","555496","3676370","GW","false","" +"NM-11618","","","639288","3662550","GW","false","" +"NM-10986","","","559746","3650190","GW","false","" +"NM-13692","","","655340","3694980","GW","false","" +"NM-23477","","","372345","3906450","GW","false","" +"NM-16058","","","218562","3761010","GW","false","" +"NM-08955","","","409530","3624830","GW","false","" +"SA-0336","","","257598","3685137","GW","true","" +"NM-18966","","","574083","3814700","GW","false","" +"NM-18358","","","433931","3804220","GW","false","" +"NM-26570","","","582030","4067410","GW","false","" +"NM-19129","","","165405","3824000","GW","false","" +"EB-667","","","407135","3939493","GW","true","Meet Warren or his son at his office. From I-25 North, take Rt 14 south, then left on Rancho Viejo, through 4 stops crossing Avenida del Sur to commercial offices and parking lot on right. Suite B." +"BW-0830","3.14.4.5.240","","288540","3667230","GW","true","" +"NM-25297","","","386002","3966720","GW","false","" +"BC-0074","58","","377251","3892680","GW","true","" +"EB-145","","","413714","3948195","GW","true","In parking lot at SE corner of St Francis and Cordova by Blockbuster Video" +"ED-0160","22S23E27.333","","538158","3580200","GW","true","" +"NM-04679","","","544870","3552740","GW","false","" +"NM-16927","","","618838","3780410","GW","false","" +"SO-0157","ESC-E06B","","326037","3777103","GW","true","" +"MI-0016","","","582124","3893925","GW","true","Topographic situation: Mesa Rica" +"SA-0047","SA-47_R00","","215865","3761710","GW","true","Wooden tower WM next to fenceline. Steel stock tank E of well. Well is covered by wooden well house with tin on wood. Well is ~0.25 mi south of NM 12, turn at 0.3 mi NE of mile marker 55 off hwy 12" +"QY-0094","10.32.9.142","","631791","3886120","GW","true","" +"ED-0239","22S27E30.243","","573058","3581020","GW","true","" +"TC-219","WG-30","","430675","4092411","GW","true","" +"NM-26823","","","173824","3786820","GW","true","" +"NM-24925","","","410752","3947830","GW","false","" +"NM-23959","","","656016","3921940","GW","false","" +"TC-373","","","442636","4077664","GW","true","" +"NM-14320","","","256479","3703820","GW","false","" +"NM-15774","","","677086","3750540","GW","false","" +"NM-11469","","","680377","3660720","GW","false","" +"NM-11366","","","672567","3659280","GW","false","" +"OG-0076","","","651705","3808032","GW","true","" +"NM-11917","","","285839","3667650","GW","false","" +"NM-07706","","","671018","3607840","GW","false","" +"NM-08569","","","556702","3619740","GW","false","" +"TC-274","CO-22","","411016","4104279","GW","true","" +"NM-24123","","","404514","3928790","GW","false","" +"NM-14470","","","436934","3705640","GW","false","" +"TO-0267","7N7E19.111","","385286","3854560","GW","true","" +"NM-10319","","","408076","3641990","GW","false","" +"NM-13363","","","662686","3691620","GW","false","" +"NM-06114","","","137308","3581580","GW","false","" +"NM-04670","","","233977","3555870","GW","false","" +"SB-0873","Mayer 34","","438219","3547223","GW","false","" +"SD-0305","12N.4E.1.223","","366940","3907590","GW","true","" +"QY-0487","15.37.18.344","","676585","3932530","GW","true","" +"BW-0015","21S5E20.344","","363145","3592530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02934","","","682864","3745470","GW","false","" +"NM-18178","","","279459","3803730","GW","false","" +"HS-091","TC-091","","289156","3667758","GW","true","In block 15 in Hot Springs, NM" +"NM-02402","M-144","","245369","3589976","GW","true","Take NM26 5.1 miles NE of intersection w/US 180, go left on CR016 Greenleaf Mine Road, go 7.4 miles, turn right on 2 track to well. Steel bar gate needs key from Ledrew Hyatt but well is close enough to walk to from gate." +"NM-23502","","","368494","3907460","GW","false","" +"NM-05244","","","681524","3563320","GW","false","" +"TV-111","","","444522","4023739","GW","true","Address: 24 Cuchilla Road, Ranchos de Taos Light sand colored stucco ranch style house @ head of large field on escarpment. Take southern driveway of two that run side by side w/#26. Well behind house in fenced yard. Go thru gate in east side of fenced yard behind house. Well house not easy to spot." +"NM-01878","","","342285","3535380","GW","false","" +"NM-26953","PW-109","","368964","3908352","GW","true","" +"ED-0184","22S26E3.241","","568242","3587600","GW","true","" +"DA-0008","19S3W32.2","","296733","3610830","GW","true","Well in canyon with bedrock near" +"NM-25221","","","402019","3962990","GW","false","" +"BC-0228","228","","384277","3889650","GW","true","" +"NM-14189","","","671398","3700520","GW","false","" +"NM-19679","","","659759","3831800","GW","false","" +"TB-0106","","","416568","3723647","GW","true","From light at intersection of 54 and 380, head south on 54. Take first right at caboose on Airport St. West 1.7 miles, stay right at Culberson gate. Stay right 2x and go straight (N) on 2 track to gate 100 ft past gate. Go left (west) 400 ft to blue PVC casing." +"BC-0121","106","","377243","3868740","GW","true","" +"NM-01037","","","347557","3835680","GW","false","" +"NM-12584","","","552957","3676940","GW","false","" +"NM-27611","","","629642","3793740","GW","false","" +"AR-0001","E019","NMED 406","226179","4076700","GW","true","From Farmington, take Hwy. 516 north towards Aztec, turn right on Rd. 3450 and an immediate left on Rd. 3050. Turn right on Rd. 3400 towards the river, left on Rd. 3394, and right on Rd. 3399 to address. Well is behind home on south side next to patio and playground in small shed." +"NM-11163","","","163830","3658990","GW","false","" +"NM-00011","","","302346","3524030","GW","false","" +"SM-1040","","","429860","3628683","SP","true","Forest Service sign # 67 Take Wills Canyon Road, off of Upper Rio Penasco Rd. Go to end of road and park. Walk south-southwest along trail to spring (swampy area)" +"NM-10705","","","430369","3646340","GW","false","" +"NM-06160","","","156586","3582200","GW","false","" +"NM-11186","","","557596","3653870","GW","false","" +"NM-24354","","","407202","3935230","GW","false","" +"BW-0513","17S7E23","","388017","3632130","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13379","","","526702","3690040","GW","false","" +"NM-20195","","","535721","3839360","GW","false","" +"NM-23677","","","373296","3911240","GW","false","" +"SA-0504","6S15W13.333","","189999","3742900","GW","true","" +"NM-12451","","","555430","3674340","GW","false","" +"NM-18527","","","677859","3808710","GW","false","" +"NM-26196","","","448420","4029640","GW","false","" +"NM-16851","","","303562","3780230","GW","false","" +"NM-06435","","","271581","3584200","GW","false","" +"NM-22199","","","674124","3885590","GW","false","" +"SB-0153","TWDB 4735102","","524912","3480921","GW","false","" +"NM-12055","","","554639","3667650","GW","false","" +"HS-001","TC-001","","287069","3666393","GW","true","West of waste water treatment plant, on same road as MWB. South of barbed wire fence, west of teal trimmed building, north of treatment plant." +"BC-0405","408","","344997","3869579","GW","false","" +"NM-16211","","","653687","3763910","GW","false","" +"MI-0277","","","474931","3961016","GW","true","Topographic situation: Hill" +"NM-23934","","","637649","3920500","GW","false","" +"EB-478","","","395333","3966270","GW","true","USGS Site ID from Anderholm, 1994 USGS WRI Report 94-4078" +"NM-11959","","","560349","3666110","GW","false","" +"SD-0353","9N.4E.24.21","","365840","3873920","SP","true","" +"NM-21912","","","621573","3881560","GW","false","" +"NM-26938","PW-164","","372456","3906396","GW","true","" +"NM-17297","","","647254","3786300","GW","false","" +"NM-22358","","","376187","3886280","GW","false","" +"QY-0395","12.34.11.212","","654345","3906120","GW","true","" +"QY-0083","10.32.17.313","","629754","3883810","GW","true","" +"DE-0243","","","671300","3569891","GW","false","" +"NM-24400","","","613001","3936700","GW","false","" +"NM-09498","","","224905","3634270","GW","false","" +"NM-14515","","","445175","3707160","GW","false","" +"EB-449","","","414495","3930777","GW","true","New development." +"SM-0247","","","451356","3641012","GW","true","" +"NM-02490","","","279628","3609910","GW","false","" +"NM-24550","","","649125","3940310","GW","false","" +"NM-26253","","","159460","4042370","GW","false","" +"NM-05377","","","158461","3569450","GW","false","" +"NM-23154","","","671848","3897390","GW","false","" +"BC-0060","51","","378791","3892370","GW","true","" +"QY-0986","9.34.22.132a","","652456","3873580","GW","true","" +"NM-09360","","","660707","3630890","GW","false","" +"NM-18568","","","625503","3808590","GW","false","" +"NM-16911","","","596490","3779540","GW","false","" +"NM-08068","","","307266","3613470","GW","false","" +"NM-00460","","","409433","3640890","GW","false","" +"NM-14829","","","253657","3723840","GW","false","" +"NM-12086","","","659320","3669780","GW","false","" +"EB-103","","","418810","3945887","GW","true","#39 Wilderness Gate, from Cam Cabra @ St.Johns, turn onto Cam Cruz Blanc, 0.8 mi to Wgate entrance, 1.2 mi S on main road to #39 on R; well ~75' past #39 entrance on R, 10'NW of meter/power box" +"NM-04482","","","130452","3554640","GW","false","" +"QY-0987","9.34.22.132b","","652691","3873620","GW","true","" +"NM-01683","","","290559","4053830","GW","false","" +"NM-12202","","","557474","3670160","GW","false","" +"NM-27919","","","592060","3828630","GW","false","" +"NM-05939","","","239546","3574470","GW","false","" +"NM-22283","","","348630","3885890","GW","false","" +"NM-22356","","","346085","3886710","GW","false","" +"ED-0223","22S27E26.114","","578431","3581550","GW","true","" +"TV-303","RP-2000b","","440324","4026228","GW","true","" +"NM-26440","","","223288","4065790","GW","false","" +"NM-18940","","","592534","3814250","GW","false","" +"PP-080","PS-92","","436575","4009916","SP","true","" +"NM-20508","","","633198","3847000","GW","false","" +"NM-13295","","","551935","3688880","GW","false","" +"NM-22179","","","383377","3884270","GW","false","" +"NM-14489","","","248141","3709180","GW","false","" +"NM-20256","","","576929","3840630","GW","false","" +"NM-14049","","","554037","3696750","GW","false","" +"NM-15662","","","164618","3751600","GW","false","" +"GT-027","CFW14-05","","352977","3965456","SP","true","" +"SB-0562","TWDB 4854502","","471069","3449436","GW","false","" +"NM-22503","","","379174","3888610","GW","false","" +"DE-0099","","","639326","3568973","GW","false","" +"TO-0358","8N8E28.311a","","398309","3861360","GW","true","" +"NM-02174","M-098","","260840","3567309","GW","false","East of Deming on NM-549. South on B044/Josefita for 1.8 miles to address. Well located in back of house near large pond." +"NM-28058","","","235096","3895960","GW","false","" +"NM-24343","","","642176","3935670","GW","false","" +"RA-071","","","417556","4007827","GW","true","Near Garage" +"NM-15909","","","542913","3752250","GW","false","" +"NM-19822","","","554409","3832860","GW","false","" +"NM-10012","","","336188","3637900","GW","false","" +"NM-25376","","","640361","3972310","GW","false","" +"NM-09428","","","226810","3633480","GW","false","" +"EB-560","","","404392","3938343","GW","true","" +"NM-24109","","","476719","3927760","GW","false","" +"NM-04319","","","543864","3542940","GW","false","" +"NM-06804","","","676126","3590300","GW","false","" +"NM-14279","","","553554","3700010","GW","false","" +"NM-08534","","","190357","3623850","GW","false","" +"TO-0362","8N8E34.111","","400026","3860590","GW","true","" +"BC-0008","82","","374731","3887670","GW","true","" +"NM-23773","","","638841","3915180","GW","false","" +"NM-05451","","","332396","3566530","GW","false","" +"NM-24918","","","415376","3947600","GW","false","" +"NM-09969","","","409712","3636280","GW","false","" +"NM-20693","","","387330","3851470","GW","false","" +"NM-19062","","","657605","3817650","GW","false","" +"NM-14886","","","421150","3722700","GW","false","" +"QY-0605","5.29.26.212","","606570","3832920","GW","true","" +"DE-0125","","","672818","3616154","GW","false","" +"SD-0257","11N.5E.36.111","","375593","3889620","GW","true","" +"NM-15065","","","151652","3735740","GW","false","" +"ED-0026","17S26E29.131","","555214","3630160","GW","true","" +"NM-04787","M-069","","265411","3557057","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 miles. Go south on B047/Marana Rd for 3.0 miles (1 mile south of NM-02072). Park on east side of road. Well located ~80 ft east of road, inside pipe fencing; near blue pressure tank and power pole." +"NM-03793","","","352074","3518420","GW","false","" +"NM-10697","","","283781","3648370","GW","false","" +"SD-0035","7N.7E.17.411","","387765","3855230","GW","true","" +"NM-00662","","","634104","3689080","GW","false","" +"NM-13712","","","617944","3694980","GW","false","" +"NM-17475","","","647702","3788740","GW","false","" +"NM-23480","","","227887","3909720","GW","false","" +"TB-0153","","","413205","3687754","GW","true","SE from Golondrina to forn in Rd. Bear right (S) to tank. South to WM tower road to right down hill." +"DA-0149","25S3E33.122","","345121","3552260","GW","true","" +"NM-04970","","","222521","3561080","GW","false","" +"NM-11273","","","556004","3655550","GW","false","" +"NM-18722","","","461667","3810260","GW","false","" +"NM-16238","","","228920","3767310","GW","false","" +"QU-050","","","447576","4063068","GW","true","From Rt. 38 East towards Red River, make left onto Kiowa Trail. Proceed 0.3 miles to Cisco Road on the left. From Cisco Rd, take left @ fork at steel posts numbered 12. Well in vault in plywood shed w/tan roof." +"NM-08527","","","192802","3623650","GW","false","" +"NM-04534","","","135153","3556010","GW","false","" +"DE-0163","","","672899","3618767","GW","false","" +"BW-0768","4.19.31.33.110b","","605011","3609970","GW","true","" +"NM-02220","","","157816","3572870","GW","false","" +"NM-05603","","","551507","3566970","GW","false","" +"TO-0416","9N9E15.133","","410856","3874070","GW","true","" +"NM-03282","","","672205","3851590","GW","false","" +"NM-26795","CR-2015-007","","663479","3549940","GW","true","" +"NM-10341","","","612189","3642450","GW","false","" +"ED-0287","23S27E10.143","","577177","3576350","GW","true","" +"SA-0199","","","268953","3704661","GW","true","Canyon subject to flooding in summer, be sure to call ahead and watch for storms even if they are not in canyon!! Approximately 3.5 miles from cattle guard north of Monticello to Coil Ranch HQ (Look for big cottonwood on side of the road and driveway to west) From HQ north 0.8 miles just past trailer on west side of road. Look east for two track on ridge just above the arroyo that runs along the fenceline parallel to road. (Turn off is 0.1 miles south of the cattle guard on the main road). This is Garcia Canyon. At split in road bear right thru gate and at 1.1 miles look for solar panel and steel tank on south side of road." +"NM-11508","","","617428","3660560","GW","false","" +"NM-25912","","","587011","4003640","GW","false","" +"MI-0171","","","606490","3931931","GW","true","Topographic situation: Valley" +"NM-20279","","","656295","3842310","GW","false","" +"NM-06487","","","348681","3583770","GW","false","" +"QY-0016","10.28.24.242a","","598938","3882360","GW","true","" +"NM-23924","","","410091","3919580","GW","false","" +"QY-0882","8.30.9.122","","612237","3866700","GW","true","" +"NM-22728","","","416047","3890010","GW","false","" +"NM-02226","","","273823","3569850","GW","false","" +"DE-0155","","","614857","3631200","GW","false","" +"NM-27866","","","550679","3811830","GW","false","" +"NM-09151","","","287212","3629100","GW","false","" +"NM-02970","","","674762","3760850","GW","false","" +"NM-21587","","","347500","3877550","GW","false","" +"NM-27174","","","483064","4065930","ES","true","" +"NM-11822","","","286464","3666560","GW","false","" +"SM-0179","","","517218","3631639","GW","true","West of Hope on Hwy 82, south side of Hwy. Site visit by Jeremiah Morse in June 2007" +"BW-0585","10S9E9.1","","405523","3702570","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12428","","","647574","3675390","GW","false","" +"NM-24710","","","458903","3943470","GW","false","" +"NM-02292","","","212239","3577710","GW","false","" +"NM-09334","","","646023","3629870","GW","false","" +"NM-04308","","","320238","3543880","GW","false","" +"NM-02676","","","538169","3645890","GW","false","" +"NM-03437","","","235506","3899590","GW","false","" +"NM-19258","","","679225","3823960","GW","false","" +"SO-0050","3N1E34.430a","","332475","3812430","GW","true","" +"NM-15143","","","540018","3732100","GW","false","" +"OG-0018","","","640639","3821062","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 4 miles on CR 17. Turn right north on CR Z drive 1 mile. Turn right east on CR18 drive 0.55 miles to well. Well is on N side of road." +"NM-00481","","","622033","3644790","GW","false","" +"NM-17966","","","599444","3798020","GW","false","" +"CX-0111","11","","535337","4064500","GW","true","1/2 mile southeast of Koehler" +"NM-10278","","","675275","3641310","GW","false","" +"NM-19134","","","660726","3820140","GW","false","" +"NM-04698","","","670332","3554320","GW","false","" +"NM-00949","","","317311","3804420","GW","false","" +"NM-26525","","","213125","4068780","GW","false","" +"NM-22715","","","347087","3890810","GW","false","" +"NM-23520","","","369032","3907980","GW","false","" +"EB-629","","","400130","3957460","GW","true","" +"NM-11463","","","403028","3659630","GW","false","" +"NM-14957","","","668564","3726600","GW","false","" +"SV-0097","40 Punta Linda","","379980","3901402","GW","false","Unit 3 Lot 147" +"NM-18075","","","607961","3800450","GW","false","" +"NM-23414","","","624490","3903420","GW","false","" +"NM-18919","","","679216","3815170","GW","false","" +"NM-04816","","","674698","3556580","GW","false","" +"NM-24383","","","406278","3935980","GW","false","" +"AS-035","ES-127","","451299","4042190","GW","true","" +"NM-00350","","","411339","3623460","GW","false","" +"WL-0261","","","436810","3696614","GW","true","Heading north on Hwy 48 from Ruidoso, turn left on Sun Valley Rd at the Valero gas station ~0.8 miles north of Alto Lake Recreation Area. Make first left past gas station on Mesa Heights Dr and immediately veer right onto Alto Alps Rd. In ~0.25 mile stay right on Alto Alps Rd at fork towards Alto Mtn Village. Look for tennis courts on the right. Well 4 and Well 5 are across from tennis courts. Well 4 is next to shed at top of stairs." +"NM-13909","","","545571","3695440","GW","false","" +"NM-23473","","","639180","3906280","GW","false","" +"TV-159","SWS-36","SW-69","438986","4023615","GW","true","From SR 68, go left (west) on SR 96. Go past Los Cordovas Rd ~1 mile and turn right (north) at road near house w/coyote fence. House located at end of road on last street. Well casing to SW of house along driveway." +"NM-05764","","","248956","3571670","GW","false","" +"NM-20885","","","561642","3855330","GW","false","" +"NM-15466","","","302050","3743430","GW","false","" +"BW-0778","1.18.3.21.210","","305201","3961910","GW","true","" +"NM-18673","","","658213","3810870","GW","false","" +"SB-0360","TWDB 4807803","","481060","3528014","GW","false","" +"NM-08034","","","550472","3611060","GW","false","" +"NM-24514","","","403515","3938940","GW","false","" +"NM-13264","","","552144","3688490","GW","false","" +"NM-02343","","","347622","3579440","GW","false","" +"NM-15182","","","532859","3733730","GW","false","" +"NM-13560","","","554449","3692320","GW","false","" +"QU-176","","","448195","4066386","GW","true","" +"NM-02372","","","578266","3582320","GW","false","" +"NM-22385","","","672064","3887340","GW","false","" +"SB-0081","TWDB 4717310","","509317","3508481","GW","false","" +"EB-587","","","404110","3949025","GW","true","N on Caja del Rio past golf course. Right onto Cam de Rey to end at gate." +"BC-0421","424","","376766","3890230","GW","false","" +"NM-09330","","","221084","3632650","GW","false","" +"BW-0516","7S10E28.2","","416224","3726430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11155","","","665667","3654610","GW","false","" +"BC-0052","43","","379766","3890580","GW","true","" +"WL-0037","","","440105","3685420","GW","true","Take Hwy 70 south towards Alamogordo from Ruidoso. On left you will see J bar J Country Church (big red barn). After that make a left on Dunagan Trail. Take lower Dunagan Trail (go right at split) until you see house on right. Well house is on opposite side of road from house." +"NM-12893","","","559188","3682340","GW","false","" +"NM-23768","","","659892","3915350","GW","false","" +"WL-0318","","","409105","3951114","GW","true","GPS navigation app sufficient to find location of owner home; well is across the street from house." +"NM-27074","","","325479","3773440","GW","true","" +"NM-21343","","","395608","3870940","GW","false","" +"NM-13154","","","283386","3689130","GW","false","" +"NM-24623","","","342881","3942330","GW","false","" +"NM-12615","","","646639","3678950","GW","false","" +"NM-27511","","","409903","3648690","GW","false","" +"ED-0019","17S25E1.143","","552304","3636610","GW","true","" +"NM-13146","","","644696","3687730","GW","false","" +"DA-0184","22S1E16.433","","326575","3584930","GW","true","" +"NM-07391","","","179787","3605740","GW","false","" +"GT-028","","","354294","3974955","GW","true","" +"NM-24691","","","655099","3944240","GW","false","" +"NM-04047","","","252213","3533220","GW","false","" +"NM-24420","","","399317","3937140","GW","false","" +"NM-14954","","","148632","3731470","GW","false","" +"NM-04138","","","232787","3538490","GW","false","" +"NM-26602","","","198974","4074790","GW","false","" +"NM-08822","","","553455","3623240","GW","false","" +"NM-13248","","","140291","3694670","GW","false","" +"JM-010","JSAI Exp Well11","","316840","3647727","GW","true","" +"NM-13722","","","137234","3700900","GW","false","" +"NM-19203","","","551039","3820580","GW","false","" +"NM-16921","","","324278","3780870","GW","false","" +"NM-11586","","","401642","3661090","GW","false","" +"OG-0003","","","639392","3822788","GW","false","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1 mile south. Turn right west onto dirt, drive 0.2 miles west, turn right north into field drive 0.1 miles to well." +"NM-18660","","","615756","3810100","GW","false","" +"NM-07938","","","675572","3611340","GW","false","" +"NM-12435","","","555510","3674000","GW","false","" +"SD-0191","10N.6E.8.122","","379517","3885790","GW","true","" +"NM-12548","","","676075","3677710","GW","false","" +"NM-16225","","","538708","3763080","GW","false","" +"EB-365","","","401354","3943580","GW","true","Must check-in at main WWTP office. Will be escorted to all sites. NW of Plant adjacent to Santa Fe River" +"NM-14875","","","431119","3722470","GW","false","" +"NM-11008","","","669705","3652240","GW","false","" +"NM-19089","","","671596","3818640","GW","false","" +"QY-0782","7.30.5.231","","611034","3858390","GW","true","" +"NM-10167","","","282248","3641320","GW","false","" +"NM-22875","","","614243","3892280","GW","false","" +"NM-09994","","","636707","3637470","GW","false","" +"NM-16563","","","644054","3774600","GW","false","" +"NM-16947","","","544888","3779700","GW","false","" +"QY-0229","11.30.24.221a","","617869","3892650","GW","true","8 ft west of well .221" +"NM-02188","","","160248","3570350","GW","false","" +"NM-02001","","","132916","3555900","GW","false","" +"NM-16167","","","231371","3764070","GW","false","" +"NM-01812","M-008","","253604","3524370","GW","false","Could not locate well. Suspect old coordinates are not good." +"SA-0006","SA-6_R00","","240289","3795358","GW","true","US60 MM 74, right on FR-100 (zero mileage); 0.3 mi - gate, left along fence; 2.2 mi - thru gate; 3.8 mi - left @ ""Y""; 5.0 mi - cattle guard then right @ fork (FR-14); 6.3 mi - right @ cattle tank (FR-14A); 8.0 mi - left turn for SA-0006 (double tank). Large steel tank NE of well ~20 ft." +"NM-03542","","","616883","3963070","GW","false","" +"BW-0767","4.15.28.31","","577425","3648540","GW","true","" +"HS-105","TC-105","","290577","3668377","GW","true","" +"QY-0050","10.30.27.242","","614945","3881090","GW","true","" +"NM-28045","","","375543","3889180","GW","false","" +"NM-12808","","","553738","3680790","GW","false","" +"NM-03174","","","571495","3822780","GW","false","" +"NM-22221","","","307218","3886120","GW","false","" +"NM-26140","","","392951","4023860","GW","false","" +"NM-19092","","","568885","3817270","GW","false","" +"NM-02330","","","155658","3582630","GW","false","" +"NM-27727","","","586413","3789110","GW","false","" +"NM-17561","","","641640","3790250","GW","false","" +"CX-0060","25N25E31.24","","561404","4023810","GW","true","" +"NM-06980","","","563492","3592040","GW","false","" +"NM-19584","","","574427","3829090","GW","false","" +"NM-20108","","","402336","3838170","GW","false","" +"NM-23961","","","450250","3920780","GW","false","" +"NM-05263","","","219952","3565900","GW","false","" +"RA-029","","","358617","4083677","GW","true","South of RV structure, 15 ft." +"TB-0316","","","407078","3650144","GW","true","Going S on Hwy 54 from Tularosa, turn W onto La Luz Gate Rd. Turn N onto Riata Rd and proceed to address on W side of Rd. Well is about 60 feet from Riata Rd and 55 feet from old well TB-137." +"NM-06528","","","627562","3584180","GW","false","" +"BC-0010","73","","374708","3888070","GW","true","" +"NM-19891","","","595644","3834360","GW","false","" +"NM-12267","","","641630","3672740","GW","false","" +"NM-01352","","","645397","3916180","GW","false","" +"NM-01168","","","627482","3872090","GW","false","" +"AR-0107","","","243814","4092330","GW","true","From Cedar Hill take Hwy 550 north. Turn right on Rd 2290 across river. Continue thru jog in road to Rd 2390. Follow to address on right towards river. Pass by house towards river. Well is in shed on left side of road. Was told about well by neighbor. House is unoccupied currently." +"EB-596","","","408677","3950763","GW","true","Enter thru Aldea Subdivision off of 599. Drive thru subdivision. Follow signs to Centaurus Ranch." +"NM-07976","","","654896","3611490","GW","false","" +"MI-0180","","","476677","3944324","GW","true","Topographic situation: " +"SM-1059","","","444065","3640734","SP","true","Weir installed on this spring." +"NM-11192","","","620483","3654660","GW","false","" +"NM-12153","","","681168","3671210","GW","false","" +"BW-0439","18S10E6.241","","410624","3626190","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21206","","","316363","3868490","GW","false","" +"NM-23951","","","457535","3920280","GW","false","" +"NM-23130","","","619682","3896210","GW","false","" +"QU-082","MW-1","","444323","4061123","GW","true","See Chevron map of monitoring wells. Above Roger Herrera's house (QU-034)." +"NM-19260","","","488862","3822140","GW","false","" +"AH-064","AH-18","","439376","4044844","GW","true","" +"NM-05776","","","241316","3571990","GW","false","" +"NM-13266","","","623674","3689410","GW","false","" +"QY-0061","10.30.7.424","","610038","3885360","GW","true","" +"AB-0235","","","670677","3554329","GW","true","" +"NM-18000","","","603346","3798770","GW","false","" +"NM-03551","","","624404","3969180","GW","false","" +"NM-14186","","","297806","3700620","GW","false","" +"NM-19870","","","634543","3834970","GW","false","" +"NM-09103","","","641191","3627490","GW","false","" +"NM-05560","","","236933","3569670","GW","false","" +"NM-18887","","","654326","3814740","GW","false","" +"NM-00766","","","437740","3700880","GW","false","" +"NM-00977","","","633041","3814640","GW","false","" +"NM-04241","","","680342","3541360","GW","false","" +"NM-27678","","","648536","3795900","GW","false","" +"ED-0199","22S26E14.323","","569048","3583990","GW","true","" +"NM-01451","","","233280","3945430","GW","false","" +"NM-01450","","","233237","3945400","GW","false","" +"QY-0052","10.30.30.333","","608932","3880030","GW","true","" +"DA-0110","24S1W25.44","","321796","3562630","GW","true","" +"NM-14147","","","411317","3698450","GW","false","" +"NM-16012","","","205193","3760120","GW","false","" +"NM-28389","N-2016-082","","556960","3621815","GW","true","" +"EB-658","","","407763","3939516","GW","true","" +"TS-081","","","436996","4080595","SP","true","Head of spring accretion zone." +"UC-0133","","","578401","4053963","GW","true","From Clayton go to Capulin on US64. Go south out of Caplulin on Kiowa Road. 1.1. miles south of Capulin go west on Larga Road. Go 8 miles with several turns. At mile 8 go south on County Loop A18. At 3.1 miles join paved road NM193, contunue south. 1.7 miles after paved road intersection go west on Medlock Road A43. Go 0.3 miles west, then north thru metal gate in field before ranch house. Well is 0.1 miles to NE next to pink tank." +"SB-0689","TWDB 4915601","","391086","3521369","GW","false","" +"SA-0051","SA-51_R00","","246385","3750022","GW","true","Turn west from NM 52 at mile marker 70.6. Approx. 1 mi, bear N by tanks and pens. Go thru gate bear west on 2 track (look for trees) to house. NW of house, N of corrals under shed roof." +"PC-156","PSW-03","","371572","3901587","PS","true","" +"QY-0689","6.29.15.143","","604283","3845280","GW","true","" +"EM-9003","","","194438","3882740","M","true","North Point, east side of fracture" +"NM-00615","","","658567","3668990","GW","false","" +"SO-0131","BRN-E04A","","328138","3764129","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-12284","","","557051","3671700","GW","false","" +"NM-15549","","","664575","3744220","GW","false","" +"SB-0129","TWDB 4726901","","522074","3487503","GW","false","" +"NM-22518","","","657101","3888550","GW","false","" +"NM-20677","","","531307","3850400","GW","false","" +"BC-0124","108","","366897","3881980","GW","true","" +"MG-012","WF-C","","295098","3770551","GW","true","" +"NM-11502","","","401629","3659800","GW","false","" +"NM-21199","","","399926","3866910","GW","false","" +"NM-12187","","","630072","3671170","GW","false","" +"NM-23463","","","637065","3905790","GW","false","" +"NM-17501","","","665347","3789680","GW","false","" +"QU-171","","","444673","4061367","GW","true","" +"NM-13961","","","545750","3695660","GW","false","" +"NM-06715","","","221168","3590870","GW","false","" +"NM-20702","","","665568","3853040","GW","false","" +"BC-0303","329","","374490","3885910","GW","true","" +"BC-0288","299","","378402","3886550","GW","true","" +"BW-0440","18S10E6.322","","410624","3626190","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24439","","","402090","3937540","GW","false","" +"TB-0022","","","435458","3706524","GW","true","3 Este Drive in Loma Grande Estates. #114 on driveway past this house. Has white pipe fence. Jennifer springs, left on El Vado, left at hog farm, first drive on right. (NEED improved directions!!)" +"QY-0436","13.33.28.121","","641137","3910780","GW","true","" +"NM-22177","","","384086","3884230","GW","false","" +"TB-1064","","","424788","3695449","SP","true","Site visit by Fraser and Cathy Goff. NPW10-7" +"AR-0115","A009","","243666","4091830","GW","true","Going S on Hwy 550 from Cedar Hill, turn left on Rd 2350, follow to address after road curves slightly to south. Well is in corner of well house underneath insulation. Well house is attached to dog cage." +"MI-0116","","","570261","3921653","GW","true","Topographic situation: Plains" +"NM-10660","","","390769","3646330","GW","false","" +"TC-369","","","442839","4078067","GW","true","" +"NM-07256","NH-017","","274441","3599865","GW","false","I25 south and exit Hatch. Go west on NM26 for 15.9 miles. Turn south on Uvas Valley Rd NE/A030 (right before bend in the highway). Well is located at mile 4.2. Well on west side of road. Must climb through barbed wire fence. Hidden by large, abandoned, water holding tank." +"SB-0385","TWDB 4807915","","486841","3529391","GW","false","" +"NM-09252","","","227565","3631580","GW","false","" +"NM-23614","","","188342","3914050","GW","false","" +"NM-23997","","","401478","3923030","GW","false","" +"NM-12175","","","657018","3671130","GW","false","" +"NM-12204","","","557060","3670160","GW","false","" +"AR-0092","","","238124","4085370","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2720 to address on right. Well is in light green pump house in N side of backyard." +"BW-0621","7S6E29.414a","","375416","3727550","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27537","","","556134","3778840","GW","false","" +"NM-05551","","","238030","3569550","GW","false","" +"NM-13968","","","543968","3695650","GW","false","" +"BW-0168","14S9E4.1","","397973","3666420","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21292","","","344099","3869660","GW","false","" +"ED-0106","21S26E23.311a","","568626","3592120","GW","true","" +"NM-01193","","","352800","3879930","GW","false","" +"NM-04010","","","242059","3529900","GW","false","" +"NM-19795","","","236311","3836030","GW","false","" +"NM-17438","","","657359","3788280","GW","false","" +"NM-17063","","","655094","3782850","GW","false","" +"NM-08983","","","228310","3628350","GW","false","" +"NM-08885","","","554441","3623800","GW","false","" +"SO-0034","2N4E16.42","","360012","3807190","GW","true","" +"NM-26186","","","333598","4029820","GW","false","" +"SB-0469","TWDB 4824501","","495762","3507677","GW","false","" +"NM-24782","","","414043","3944930","GW","false","" +"SD-0309","12N.5E.4.221a","","371077","3906540","GW","true","" +"NM-12077","","","561917","3667970","GW","false","" +"NM-22156","","","346603","3884530","GW","false","" +"NM-06718","","","672759","3588550","GW","false","" +"NM-15852","","","624989","3751070","GW","false","" +"NM-02445","","","665326","3597240","GW","false","" +"UC-0095","","","651872","4048603","GW","true","Start in Clayton, NM at main intersection. Head West 0.4 miles on US 56 / US 64 to Clayton lake road, NM 370, turn right. proceed 10.4 miles to Clayton Lake park road, NM 455, turn left. + From intersection proceed 1.2 miles (road turns north at 0.9 miles) windmill visable on Left/West side of road. Park on road ad go under fence to west to windmill, gate into pasture is locked." +"AH-013","AH-39","","441648","4041861","GW","true","" +"DA-0059","22S2E21.124","","335922","3584500","GW","true","" +"NM-19161","","","669025","3821120","GW","false","" +"NM-28016","","","357664","3881520","GW","false","" +"NM-04140","","","226512","3538750","GW","false","" +"NM-21171","","","380402","3865950","GW","false","" +"NM-10835","","","274869","3650670","GW","false","" +"NM-23047","","","296271","3896200","GW","false","" +"NM-18245","","","615304","3803260","GW","false","" +"NM-02495","","","213673","3613190","GW","false","" +"NM-12993","","","137426","3690800","GW","false","" +"NM-00812","","","447058","3711830","GW","false","" +"NM-14632","","","626804","3712960","GW","false","" +"NM-04501","","","284365","3550740","GW","false","" +"NM-23543","","","370804","3908560","GW","false","" +"OG-0014","","","640209","3820659","GW","true","" +"NM-13121","","","559913","3686410","GW","false","" +"NM-02140","","","167292","3566810","GW","false","" +"NM-02394","M-143","","224711","3588486","GW","false","10.3 mi north of Deming on US180 between mile markers 153 and 154 turn left west on CR D017, go 2 miles west to Salopek Ranch (white gate) combo is 1951. Go north thru house yard to west of boxcar turn west across RR tracks thru gates to three way jxn of 2-tracks. Take middle track west 0.7 miles look for concrete pad and open hole to S of track." +"NM-04892","","","267098","3558730","GW","false","" +"NM-26182","","","245379","4031350","GW","false","" +"WL-0223","","","251331","3572691","GW","true","From I-10 and Rt 11 intersection, go 4.4 miles east on Rt 549 to Hwy 377. Turn left onto 377 and go 2.8 miles to McSherry Farm driveway past ranch HQ. Take dirt road to east, well to right under trees." +"NM-02803","","","140838","3695020","GW","false","" +"NM-23513","","","368829","3907890","GW","false","" +"NM-01585","","","396134","3998140","GW","false","" +"NM-10221","","","670408","3641650","GW","false","" +"DA-0162","28S1E6.323","","322005","3530860","GW","true","" +"NM-19698","","","602655","3831200","GW","false","" +"QU-010","","","451973","4064679","GW","true","From north on 522, make right (east) on Route 38, then left (north) on Cabresto Road. Up Forest Road 134 (Cabresto Creek) to #445, take a right turn, third right before climbing hill to house, between apartment building & abandoned shower? pad. Right at top of rise. Look for pump house with red roof." +"NM-17325","","","647178","3786300","GW","false","" +"NM-03649","","","223578","4066860","GW","false","" +"MI-0099","","","523535","3925766","GW","true","Topographic situation: Plateau" +"BW-0224","14S9E35.322","","401364","3657670","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09359","","","409806","3629470","GW","false","" +"AR-0153","C012","NMED 193","238566","4087230","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn left onto Rd 2755 and continue straight onto Rd 2650. Turn right onto Rd 2645 and proceed to address at end of Rd on right." +"NM-20475","","","598733","3845430","GW","false","" +"AR-0113","B010","","243418","4091190","GW","true","From Hwy 550 south of Cedar Hill, turn left on Rd 2350, turn right on Rd 2345, then left on Rd 2360. Proceed to address. Well is behind glass, partially-open structure next to small, orange well house. Dog bites!" +"NM-07237","","","681830","3598480","GW","false","" +"SO-0252","SMC-W06A","","314828","3728382","GW","true","" +"NM-09950","","","671963","3637460","GW","false","" +"NM-14140","","","282319","3700370","GW","false","" +"QY-0381","12.32.35.224","","635648","3899310","GW","true","" +"ED-0218","22S27E18.31","","571995","3583820","GW","true","" +"NM-01054","","","576000","3839150","GW","false","" +"NM-23245","","","349586","3899280","GW","false","" +"BC-0387","390","","343395","3877825","GW","false","" +"SA-0045","SA-45_R00","","231405","3756079","GW","true","From Datil go south on NM 12 for 7.7 miles, half way between MM 67 & 66 (Gutierrezville) Look for the Harriet Ranch sign on the east side of the highway. Go east on the county road bearing to the southeast (right) at the fork. Go 11 miles (past three wells) to large corral and pen by well." +"NM-09013","","","654657","3626760","GW","false","" +"NM-03109","","","679343","3809880","GW","false","" +"NM-19899","","","620666","3834900","GW","false","" +"NM-20050","","","616564","3837160","GW","false","" +"NM-12852","","","401644","3681850","GW","false","" +"NM-13872","","","543944","3695310","GW","false","" +"NM-05510","","","236159","3569130","GW","false","" +"SD-0290","11N.6E.34.412","","383010","3888660","GW","true","" +"NM-11301","","","660740","3657510","GW","false","" +"QY-0367","12.30.34.31","","613709","3898090","GW","true","" +"NM-11634","","","559159","3661420","GW","false","" +"NM-21960","","","368429","3882100","GW","false","" +"NM-23119","","","350497","3896590","GW","false","" +"NM-08116","","","670157","3613920","GW","false","" +"NM-07238","","","648620","3598820","GW","false","" +"NM-00954","","","159093","3815810","GW","false","" +"QY-0814","7.32.19.133","","628084","3853720","GW","true","" +"EB-216","","","411637","3934783","GW","true","#39 Encantado Loop, ElDorado; under manhole cover in drive (bring crowbar)" +"NM-12200","","","615079","3670670","GW","false","" +"NM-11209","","","559851","3654310","GW","false","" +"NM-17878","","","615966","3796570","GW","false","" +"DA-0114","25S4W3.343","","288670","3560020","GW","true","" +"NM-10046","","","618349","3637940","GW","false","" +"NM-02266","","","250573","3574560","GW","false","" +"NM-20223","","","599476","3840200","GW","false","" +"NM-00568","","","304966","3659330","GW","false","" +"NM-25045","","","412425","3951730","GW","false","" +"NM-21112","","","656964","3864140","GW","false","" +"NM-14772","","","546674","3718210","GW","false","" +"HS-053","TC-053","","289774","3667485","GW","true","308 Van Patten, right across from Artesian. White hourse with 2 front doors. Well in backyard, under wooden cover, sub-ground surface" +"NM-04887","","","269483","3558670","GW","false","" +"NM-11833","","","554813","3664450","GW","false","" +"NM-16258","","","551037","3764770","GW","false","" +"SD-0056","8N.6E.32.342","","377580","3860260","GW","true","" +"AR-0086","NMED 191","","238419","4087760","GW","true","From Aztec take Hwy 550 toward Farmington. Just across bridge, turn right at light on Ruins Rd and continue on Rd 2900. Address is on right (east) side of road just north of turn for Rd 2633. House with red roof and red fence. Well is underneath white bucket under small ornamental windmill." +"NM-03706","","","159342","3485720","GW","false","" +"NM-12320","","","673763","3673730","GW","false","" +"NM-16346","","","645472","3769110","GW","false","" +"SB-0402","TWDB 4808902","","498056","3526765","GW","false","" +"NM-11400","","","286067","3660280","GW","false","" +"NM-08032","","","366463","3611790","GW","false","" +"NM-22117","","","346667","3884240","GW","false","" +"NM-00447","","","454156","3638030","GW","false","" +"NM-10461","","","318509","3645110","GW","false","" +"NM-08997","","","201758","3629240","GW","false","" +"NM-21595","","","347263","3877580","GW","false","" +"SM-0248","","","451030","3641102","GW","true","" +"EB-032","","","419544","3929425","GW","true","" +"QY-0621","5.29.5.413","","601618","3838540","GW","true","" +"NM-04480","","","133287","3554530","GW","false","" +"NM-20425","","","346500","3844970","GW","false","" +"NM-20507","","","342318","3847360","GW","false","" +"WL-0263","","","437076","3696658","GW","true","" +"NM-21519","","","376558","3876320","GW","false","" +"NM-18139","","","655482","3801900","GW","false","" +"NM-13983","","","544071","3695740","GW","false","" +"NM-00533","","","407511","3653020","GW","false","" +"NM-17929","","","615551","3797780","GW","false","" +"NM-11578","","","676930","3661920","GW","false","" +"NM-10305","","","295158","3643200","GW","false","" +"NM-18834","","","662498","3813320","GW","false","" +"NM-17129","","","652333","3784130","GW","false","" +"SO-0125","BRN-E01A","","327331","3764068","GW","true","Gate combo to Brown Arroyo transect is 7218." +"SB-0196","TWDB 4758204","","517217","3442022","GW","false","" +"AR-0140","B020","","234693","4083580","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Proceed to address on right. Address is next to river." +"WL-0153","","","356578","3963405","GW","true","From San Ysidro drive north on Hwy 4 for 33.3 miles. Turn right on Forest Road 10 and follow for 0.9 miles, then turn left on 2-track. Well is visible in meadow from FR10." +"UC-0104","","","641548","4006004","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-18608","","","270460","3811040","GW","false","" +"BW-0900","4.22.1.28.310","","326745","3583210","GW","true","" +"NM-01498","","","656515","3955610","GW","false","" +"NM-01145","","","349323","3864270","GW","false","" +"SM-4003","","","439882","3632453","PS","true","Stream flow measurement by Patrick Walsh" +"NM-00815","","","454464","3712690","GW","false","" +"BC-0191","171","","375818","3889910","GW","true","" +"NM-04220","","","240553","3542080","GW","false","" +"NM-27770","","","604924","3785700","GW","false","" +"CX-0006","30N24E13.1","","558581","4077020","GW","true","" +"NM-08986","","","548555","3624780","GW","false","" +"AS-041","VAL-7","","446549","4044640","GW","true","" +"NM-14971","","","584364","3726040","GW","false","" +"NM-13173","","","555435","3687150","GW","false","" +"NM-14725","","","410245","3716450","GW","false","" +"NM-13067","","","287184","3687660","GW","false","" +"NM-19801","","","582419","3832730","GW","false","" +"NM-27061","","","305504","3782400","GW","true","" +"NM-20979","","","558730","3857930","GW","false","" +"NM-24582","","","671883","3941680","GW","false","" +"TV-254","SW-06","","441847","4023497","GW","true","From Hwy 68, turn on SR 96 (old Cty Rd 110) towards UNM Taos campus. Turn right (north) on Vista del Ocaso (last right before university). ~300 meters on Vista del Ocaso, find Eva Rd (descending hill on left). Well is in concrete vault on right @ bottom of hill." +"BW-0754","2.10.25.23.333","","567000","3881330","GW","true","" +"NM-01473","","","185139","3953020","GW","false","" +"NM-05361","","","332923","3565130","GW","false","" +"AR-0181","E020","NMED 0","215547","4069320","GW","true","In Farmington, take Hwy 64 going E toward Bloomfield. Turn left onto Malta Ave. then quick left onto Bloomfield Blvd. Turn right onto Southside River Rd and follow to address on left. Well is inside home in concrete vault." +"NM-22418","","","378196","3886930","GW","false","" +"NM-20932","","","659181","3857830","GW","false","" +"DE-0341","","","569382","3626721","GW","false","" +"SB-0120","TWDB 4725802","","505537","3488897","GW","false","" +"NM-02980","","","669019","3774480","GW","false","" +"NM-08448","","","670616","3619040","GW","false","" +"NM-08041","","","650948","3612230","GW","false","" +"NM-06365","","","673242","3581780","GW","false","" +"NM-19665","","","676565","3832380","GW","false","" +"NM-14619","","","411516","3711660","GW","false","" +"MI-0217","","","573427","3940586","GW","true","Topographic situation: Valley" +"NM-02570","","","269975","3625690","GW","false","" +"NM-03938","","","251408","3526030","GW","false","" +"NM-10979","","","634050","3651200","GW","false","" +"SB-0062","TWDB 4717211","","506209","3511712","GW","false","" +"DA-0170","28S4W32.412","","285240","3523480","GW","true","" +"NM-07756","","","669231","3608640","GW","false","" +"NM-17248","","","649443","3785500","GW","false","" +"NM-01111","","","338530","3856010","GW","false","" +"DE-0221","","","639430","3628448","GW","false","" +"UC-0141","","","647549","3976743","GW","false","" +"SD-0002","6N.6E.5.322","","377962","3849150","GW","true","" +"NM-01549","","","634651","3981630","GW","false","" +"SD-0188","10N.6E.7.314","","377907","3885640","GW","true","" +"SM-3034","","","444065","3635579","R","true","From cliff north side of road. Trevor Kludt collected." +"NM-06242","","","572677","3578280","GW","false","" +"BC-0310","266","","379766","3873040","GW","true","" +"NM-22380","","","660268","3887030","GW","false","" +"EB-634","","","401300","3956280","GW","true","" +"NM-25885","","","235674","4005850","GW","false","" +"NM-19376","","","230898","3828720","GW","false","" +"SO-0134","BRN-E05B","","327795","3763488","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-16032","","","326929","3757740","GW","false","" +"NM-27283","","","602778","3580110","GW","false","" +"GT-035","","","684709","3763959","GW","true","" +"NM-13062","","","662502","3687150","GW","false","" +"NM-23021","","","361628","3894590","GW","false","" +"NM-09485","","","410655","3631350","GW","false","" +"NM-19298","","","590021","3823430","GW","false","" +"NM-27312","","","555462","3585280","GW","false","" +"NM-07355","","","181406","3604890","GW","false","" +"NM-10658","","","550217","3645850","GW","false","" +"NM-20151","","","619564","3839390","GW","false","" +"SM-0045","","","443134","3635074","GW","true","Hwy 24 to #70 Upper Rio Penasco, south side with flag in yard. Well is out by dog house." +"SA-0328","","","240518","3707110","GW","true","" +"EB-683","","","423201","3933255","GW","true","Old Las Vegas Hwy" +"NM-01363","","","640892","3920970","GW","false","" +"WS-019","","","377221","3633606","GW","true","" +"NM-09298","","","286570","3630720","GW","false","" +"NM-21269","","","346218","3869000","GW","false","" +"NM-26452","","","578880","4062080","GW","false","" +"AR-0232","","","239724","4087861","GW","true","From junction of Main St. (Hwy 550) and Aztec Blvd in Aztec (Safeway grocery is at this intersection), drive NE on Hwy 550 about 7.4 miles. Make a U-turn about ยผ mile past Mile Marker 167, the first cross-over past the mid-highway barrier. Drive 0.5 miles SW on Hwy 550 and turn right (north) on Rd 1617. Drive 0.1 miles, Rd 2617 turns to the left (west), drive about 0.1 miles, turn right for 0.1 miles to address on left.. Well in middle of back yard next to block of sandstone." +"QY-0478","15.35.15.222","","662747","3933570","GW","true","" +"NM-06452","","","679905","3583530","GW","false","" +"NM-14680","","","543625","3714370","GW","false","" +"NM-14852","","","544056","3721640","GW","false","" +"NM-14036","","","549129","3696660","GW","false","" +"NM-25452","","","411366","3973920","GW","false","" +"NM-15431","","","635006","3742240","GW","false","" +"NM-06756","","","323152","3589430","GW","false","" +"NM-27224","","","655496","3657640","GW","false","" +"NM-10022","","","359116","3637670","GW","false","" +"TO-0359","8N8E28.44","","399560","3860920","GW","true","" +"NM-04021","","","254888","3530750","GW","false","" +"NM-19211","","","676016","3822390","GW","false","" +"PC-054","PW-088","","372000","3909454","GW","true","" +"NM-00484","","","635894","3645680","GW","false","" +"NM-03533","","","622195","3956540","GW","false","" +"NM-03883","","","354643","3521520","GW","false","" +"NM-06701","","","411277","3587120","GW","false","" +"NM-06722","","","569267","3587400","GW","false","" +"NM-03393","","","428287","3889070","GW","false","" +"NM-05863","","","637645","3571220","GW","false","" +"NM-22326","","","416638","3885480","GW","false","" +"NM-02169","","","333030","3565250","GW","false","" +"NM-11212","","","408194","3654650","GW","false","" +"NM-02447","","","276852","3598940","GW","false","" +"NM-07874","","","679573","3610700","GW","false","" +"NM-13729","","","547462","3694250","GW","false","" +"NM-24972","","","437734","3948430","GW","false","" +"BW-0505","9S5E15.143","","368315","3711230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0909","4.26.24.3.341","","548309","3547540","GW","true","" +"NM-00498","","","653179","3647830","GW","false","" +"NM-02710","","","283716","3652470","GW","false","" +"NM-03372","","","404415","3883870","GW","false","" +"NM-21078","","","553857","3861720","GW","false","" +"NM-04686","","","325560","3554260","GW","false","" +"DE-0111","","","672834","3616133","GW","false","" +"NM-16932","","","644527","3780520","GW","false","" +"NM-12636","","","679790","3679870","GW","false","" +"NM-15780","","","172225","3754170","GW","false","" +"NM-26288","","","473881","4040160","GW","false","" +"SD-0208","10N.6E.22.131","","381978","3882800","GW","true","" +"NM-03354","","","404275","3880430","GW","false","" +"DE-0259","","","663135","3634599","GW","false","" +"NM-16824","","","668672","3779790","GW","false","" +"NM-20778","","","673161","3854820","GW","false","" +"NM-23446","","","228621","3908060","GW","false","" +"NM-08725","","","670957","3623460","GW","false","" +"NM-23300","","","232740","3902780","GW","false","" +"NM-08969","","","456888","3624570","GW","false","" +"NM-18641","","","608559","3809830","GW","false","" +"NM-10276","","","680086","3642600","GW","false","" +"NM-25761","","","405151","3995000","GW","false","" +"TO-0060","4N5E12.444","","374831","3827540","GW","true","" +"DE-0276","","","663187","3634481","GW","false","" +"NM-05717","","","232861","3571280","GW","false","" +"NM-27250","","","331969","3569400","GW","false","" +"NM-21389","","","668870","3871100","GW","false","" +"NM-18584","","","268688","3810680","GW","false","" +"TV-250","LR-06","","445214","4028188","GW","true","Ambrosio to sharp left, between first two houses" +"NM-12125","","","290557","3671190","GW","false","" +"NM-16519","","","635301","3773760","GW","false","" +"NM-18257","","","611370","3803270","GW","false","" +"NM-04287","","","137856","3547800","GW","false","" +"NM-11963","","","680377","3667710","GW","false","" +"NM-10349","","","554133","3642020","GW","false","" +"NM-23180","","","663635","3898280","GW","false","" +"CX-0171","S17","","558929","4096180","SP","true","West slope Barilla Mesa" +"EB-448","","","420368","3931718","GW","true","72 Vaquero Road" +"NM-26694","","","629211","4078660","GW","false","" +"NM-23068","","","408428","3894860","GW","false","" +"NM-18260","","","498826","3802480","GW","false","" +"SM-3018","","","510326","3632250","S","true","Site visited and sampled by Jeremiah Morse" +"NM-04218","","","242022","3541980","GW","false","" +"NM-18035","","","668292","3800950","GW","false","" +"WL-0309","","","295298","3771884","GW","false","Heading west into Magdalena on Hwy 60, turn left on Kelly Rd for 2 miles, slight right onto Hop Canyon Rd for 0.8 miles, slight left onto Patterson Canyon Rd for 1 mile to address on right (996 Patterson Canyon Rd)." +"NM-01867","","","250723","3534640","GW","false","" +"NM-16757","","","676583","3778760","GW","false","" +"BW-0139","11S10E5.112","","413888","3694090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09513","","","558616","3630720","GW","false","" +"NM-11004","","","641882","3651740","GW","false","" +"NM-12874","","","609816","3682470","GW","false","" +"BC-0048","39","","377227","3890700","GW","true","" +"TB-1028","","","398366","3663720","SP","true","" +"SB-0524","TWDB 4845604","","461271","3462460","GW","false","" +"OG-0002","","","639470","3822076","GW","false","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1.5 miles south. Turn right west onto dirt. Drive 0.1 miles west, turn right northwest into field, drive 0.2 miles to well." +"NM-25942","","","670365","4007000","GW","false","" +"NM-11094","","","422237","3652280","GW","false","" +"DE-0331","","","674136","3589558","GW","false","" +"QY-0823","7.32.29.433","","630429","3851280","GW","true","" +"NM-16891","","","543612","3778770","GW","false","" +"NM-14000","","","147229","3702320","GW","false","" +"SM-4062","","","431778","3630052","PS","true","Stream flow measurement by Patrick Walsh" +"NM-11601","","","558747","3661020","GW","false","" +"SB-0752","TWDB 4924410","","395009","3506393","GW","false","" +"NM-17060","","","655836","3782890","GW","false","" +"NM-01684","","","312992","4056480","GW","false","" +"TO-0300","7N8E26.121","","401907","3852610","GW","true","" +"NM-27287","","","365375","3581190","GW","false","" +"AB-0158","S207","","372844","3920340","GW","true","" +"TO-0556","9N8E14.2","","403903","3874300","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-08360","","","643263","3617380","GW","false","" +"NM-14667","","","435748","3713530","GW","false","" +"NM-27685","","","593846","3785210","GW","false","" +"NM-00934","","","539911","3801110","GW","false","" +"NM-26991","","","320004","3768990","GW","true","" +"NM-13706","","","137019","3700690","GW","false","" +"NM-24463","","","379341","3938190","GW","false","" +"NM-28309","OC-03","","407635","4020167","GW","false","" +"QY-0254","11.30.35.324","","615621","3888630","GW","true","" +"AH-092","HM-14","","438371","4041788","GW","true","" +"NM-00334","","","669446","3621110","GW","false","" +"AS-033","ES-24","","451042","4042670","GW","true","" +"NM-08899","","","311485","3625620","GW","false","" +"NM-06533","","","586826","3583810","GW","false","" +"HS-054","TC-054","","289592","3667442","GW","true","425 Charles St. NE corner of Daniels and Charles St. Well in backyard (E of house) in shed that looks like outhouse" +"SB-0061","TWDB 4717210","","506657","3510788","GW","false","" +"SO-0269","NRCS 7","","327385","3764173","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Turn left (west) on Busquceito, then left before old home to locked gate. Will need access. Gate combo to Brown Arroyo transect is 7218 (10/2019). Follow road southwest past road to left Hickox Rd, continue to just before road joins with road from north. Well is on right side (north) of road next to datalogger box." +"NM-00859","","","338939","3749200","GW","false","" +"SB-0880","Mayer 41","","466994","3583717","GW","false","" +"NM-04123","","","250922","3537440","GW","false","" +"UC-0010","","","660393","4011056","GW","true","" +"NM-05250","","","237526","3565270","GW","false","" +"NM-24412","","","435763","3936580","GW","false","" +"NM-27683","","","678524","3796610","GW","false","" +"NM-01504","","","511076","3957840","GW","false","" +"EB-494","","","424322","3954647","PS","true","Little Tesuque Creek at first crossing with Hyde Park Road; Location approximate" +"AH-039","LC-01","","445547","4042786","GW","true","" +"SB-0711","TWDB 4915805","","387130","3517870","GW","false","" +"BW-0804","2.28.26.14.200","","576963","4058050","GW","true","" +"NM-13352","","","552499","3689780","GW","false","" +"NM-02759","","","562120","3664580","GW","false","" +"NM-02805","","","537899","3688540","GW","false","" +"UC-0199","","","633405","4083820","GW","false","" +"OG-0043","","","654624","3810771","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1.5 miles north on SR 311. Turn right east onto dirt road. Drive 0.15 miles east to well. Well is on S side of road." +"NM-20557","","","534572","3847210","GW","false","" +"SB-0478","TWDB 4828301","","452300","3495255","GW","false","" +"EB-609","","","402225","3952079","GW","true","Caja del Rio north to Las Campanas Drive, left at ""T"" intersection, SW on Las Campanas ~1.0 mi to WWTP yard on left, drill site at SE corner of yard" +"NM-16303","","","555798","3766430","GW","false","" +"SB-0612","TWDB 4864602","","499497","3438068","GW","false","" +"NM-18284","","","670683","3804380","GW","false","" +"NM-02187","","","260987","3567590","GW","false","" +"NM-22223","","","376574","3884950","GW","false","" +"NM-17357","","","337197","3787140","GW","false","" +"NM-01077","","","640893","3847960","GW","false","" +"NM-09156","","","330876","3628320","GW","false","" +"NM-09380","","","557817","3629510","GW","false","" +"SD-0045","7N.8E.7.121","","395562","3857420","GW","true","" +"NM-19722","","","581514","3831420","GW","false","" +"PC-008","PW-020","","367931","3907914","GW","true","" +"NM-07177","","","317190","3597290","GW","false","" +"AB-0014","S017","","384373","3922370","GW","true","" +"NM-00901","","","297376","3790790","GW","false","" +"NM-22131","","","385574","3883780","GW","false","" +"NM-23877","","","637680","3918430","GW","false","" +"WL-0024","","","322934","3770238","GW","true","From California Street in Socorro, go west on Spring Street, thru intersection at Grant, then right on Aspen to Fire Academy Road. Drive to drill tower and park NE of tower, walk between ponds to well." +"NM-16829","","","236740","3781550","GW","false","" +"TB-0078","","","404958","3644397","GW","true","Off of La Luz Gate Road (intersection just north of Alamogordo - head west). Adjacent to yellow tank by power pole. Under cement block 27 yards to SE of yellow tank well." +"NM-08204","","","677132","3615950","GW","false","" +"QY-0804","7.32.1.424a","","637322","3857980","GW","true","" +"NM-27303","","","364762","3584250","GW","false","" +"NM-22351","","","608575","3886020","GW","false","" +"UC-0033","","","669400","4020324","GW","true","elv 4707 acc to USGS" +"QY-0374","12.32.1.433","","636546","3906160","GW","true","" +"NM-06137","","","329848","3576950","GW","false","" +"JM-028","","","307941","3661502","GW","true","" +"ED-0253","22S28E4.13","","584757","3587780","GW","true","" +"NM-02879","","","678011","3722950","GW","false","" +"NM-16781","","","646228","3778350","GW","false","" +"BW-0295","15S10E33.441","","408671","3647480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0090","","","608015","4085374","GW","true","From major intersection in Capulin NM (NM-325 and US 64 / NM-87) proceed North on NM 325 to intersection of 325 and Hwy 456 in Folsom NM, 9.1 miles. +9.1 mi. Proceed north on 456 to intersection of Hwy. 551 and Hwy 456 approx 9.2 miles, continue East on Hwy. 456 3.5 miles. +OR Proceed west 21.3 miles on NM 456 from intersection with NM 370 (Lake Highway). At this point on south side of road is a wire gate into pasture with a red and white pole on the side of the gate. On the north side of the road is a wire gate leading to an old corral in the field. Go thru gate on south side of road, well is about .15 miles to SW in pasture across irrigation ditch. Look for old can on open well head." +"NM-28053","","","238961","3893840","GW","false","" +"NM-26818","","","164447","3782560","GW","true","" +"NM-20527","","","578961","3846900","GW","false","" +"NM-11857","","","563519","3664780","GW","false","" +"SB-0276","TWDB 4807419","","477686","3534764","GW","false","" +"NM-27447","","","337529","3704250","GW","false","" +"NM-03170","","","568785","3820480","GW","false","" +"NM-25581","","","404035","3982130","GW","false","" +"QY-0899","8.32.10.142","","633185","3866560","GW","true","" +"NM-26144","","","445669","4023770","GW","false","" +"QY-0359","11.37.18.421","","677323","3894360","GW","true","" +"NM-02045","M-066","","231794","3557581","GW","false","From the intersection of Hermanas Rd/CR20, go west on CR20 for 1.3 miles. Well located on south side of CR20 next to grey box and power pole." +"NM-27014","","","325017","3771660","GW","true","" +"NM-07463","","","206643","3606640","GW","false","" +"NM-20634","","","553778","3849270","GW","false","" +"NM-05542","","","670268","3567440","GW","false","" +"SA-0424","4S13W30.140b","","201122","3759360","GW","true","" +"DE-0178","","","611955","3600191","GW","false","" +"NM-01849","","","311715","3530040","GW","false","" +"NM-16170","","","262021","3763310","GW","false","" +"NM-15955","","","201539","3758390","GW","false","" +"NM-10482","","","270818","3646290","GW","false","" +"NM-06085","","","331946","3575650","GW","false","" +"NM-25262","","","416521","3965030","GW","false","" +"NM-21048","","","636038","3861220","GW","false","" +"NM-23312","","","653785","3900420","GW","false","" +"NM-21427","","","344025","3872870","GW","false","" +"NM-02671","","","656500","3646750","GW","false","" +"NM-16494","","","651896","3773120","GW","false","" +"NM-26065","","","316159","4019630","GW","false","" +"TB-0083","","","404016","3640399","GW","true","from New well #3, north on new road approx 1/2 mile to well on east side of road." +"SD-0280","11N.6E.28.431","","381345","3889780","GW","true","" +"NM-03262","","","393885","3842250","GW","false","" +"NM-03846","","","350700","3519860","GW","false","" +"NM-16082","","","671582","3759250","GW","false","" +"NM-00251","","","662770","3590600","GW","false","" +"ED-0111","21S26E25.142","","570766","3590950","GW","true","" +"NM-11452","","","556788","3659010","GW","false","" +"NM-15557","","","677443","3745160","GW","false","" +"NM-26997","","","323867","3771194","GW","true","On NMT campus, southwest corner of Olive Lane and Canyon Rd. near PRRC." +"NM-12842","","","139161","3687960","GW","false","" +"NM-17539","","","626628","3789630","GW","false","" +"NM-16917","","","660948","3780510","GW","false","" +"NM-02141","","","166481","3566900","GW","false","" +"NM-04244","","","346675","3540970","GW","false","" +"QY-0539","17.36.13.21","","675154","3953200","GW","true","" +"NM-17874","","","596726","3796360","GW","false","" +"NM-02448","","","189961","3601870","GW","false","" +"NM-03266","","","322657","3846140","GW","false","" +"NM-22532","","","357838","3888460","GW","false","" +"NM-26707","","","182929","4085900","GW","false","" +"NM-19773","","","567323","3832200","GW","false","" +"NM-10437","","","639599","3644340","GW","false","" +"NM-21081","","","389645","3862260","GW","false","" +"NM-18458","","","582146","3805950","GW","false","" +"AR-0088","","","238408","4087580","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Turn right on Rd 2633 to address about halfway down road (before it turns) on left. Well is underneath fake rock on N side of driveway." +"NM-11662","","","280314","3664140","GW","false","" +"NM-08772","","","202807","3626860","GW","false","" +"NM-26770","","","202936","4098600","GW","false","" +"NM-02065","","","235034","3559170","GW","false","" +"NM-26197","","","473700","4029620","GW","false","" +"NM-18449","","","656052","3806780","GW","false","" +"CX-0101","23N26E8.31","","571570","4010820","GW","true","" +"NM-06397","","","583450","3581280","GW","false","" +"NM-10011","","","673664","3638320","GW","false","" +"NM-15990","","","653985","3756610","GW","false","" +"NM-10445","","","663390","3644830","GW","false","" +"NM-16465","","","646262","3772750","GW","false","" +"SA-0343","","","253430","3693090","GW","true","" +"NM-19629","","","653219","3831380","GW","false","" +"NM-21208","","","227045","3870750","GW","false","" +"NM-15186","","","558999","3733980","GW","false","" +"DE-0300","","","675850","3591619","GW","false","" +"NM-03224","","","567179","3834480","GW","false","" +"NM-13153","","","550239","3686840","GW","false","" +"NM-15265","","","671953","3738740","GW","false","" +"NM-20878","","","399700","3855490","GW","false","" +"DA-0042","21S3E19.333","","341973","3592870","GW","true","" +"NM-19786","","","342438","3833520","GW","false","" +"TV-162","","","442680","4024140","GW","true","From Hwy 68, turn on W Romero (at old carwash). Over speed bumps. S-curve into subdivision. 2nd road - Adelmo Medina. Go to end of road - maroon stucco with pole barn on left. Well in vault w/cement slab & T-post by clothesline." +"NM-03070","","","572642","3800020","GW","false","" +"NM-06075","","","311149","3575930","GW","false","" +"NM-22566","","","237603","3891570","GW","false","" +"NM-24778","","","409893","3944940","GW","false","" +"TO-0280","7N8E8.311","","396714","3856690","GW","true","" +"NM-28304","DM-69","","444196","4043504","GW","false","" +"BW-0488","1S8E21.431","","398151","3785230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05524","","","233880","3569160","GW","false","" +"NM-23411","","","371971","3903280","GW","false","" +"TV-124","","","439301","4024674","GW","true","From SR 68, turn left (west) onto SR 96. Go 2 miles to Los Cordovas and turn right (north). Go 1 mile then turn left (west) on ?. Approx. 1 mile, find casing to left past fence line after turn in road." +"NM-23526","","","372344","3908150","GW","false","" +"NM-11205","","","613450","3654760","GW","false","" +"NM-20126","","","601073","3838490","GW","false","" +"NM-20615","","","677812","3850900","GW","false","" +"NM-25670","","","664145","3988230","GW","false","" +"MI-0077","","","462464","3918734","GW","true","Topographic situation: " +"NM-21216","","","573105","3867120","GW","false","" +"NM-02095","","","322031","3559370","GW","false","" +"QY-0897","8.31.7.331","","618197","3865760","GW","true","" +"NM-05926","","","260193","3573870","GW","false","" +"NM-14167","","","547726","3698320","GW","false","" +"NM-05483","","","654139","3567360","GW","false","" +"NM-13368","","","553325","3690000","GW","false","" +"QY-1033","12.36.5.231","","668576","3907360","SP","true","" +"QY-0296","11.32.11.43","","635185","3894910","GW","true","" +"NM-20663","","","599999","3850610","GW","false","" +"NM-16010","","","678084","3757620","GW","false","" +"OG-0052","","","647577","3813879","GW","true","" +"NM-19330","","","427727","3824170","GW","false","" +"SV-0016","34 Camino Real","","379408","3899915","GW","false","Unit 1 Lot 27" +"NM-08778","","","677106","3624700","GW","false","" +"NM-00866","","","327283","3757570","GW","false","" +"NM-05804","","","239475","3572750","GW","false","" +"NM-09944","","","556558","3635790","GW","false","" +"NM-10295","","","554268","3641160","GW","false","" +"NM-06127","","","586347","3575670","GW","false","" +"NM-23088","","","633016","3895930","GW","false","" +"NM-20725","","","620718","3852310","GW","false","" +"TV-258","SW-52","","440834","4023468","GW","true","From SR 68, west on SR 96, then turn right onto Golf Course Dr. Proceed 0.1 miles and turn left onto Los Cordovas. Go 0.1 miles to enter the second and lower of two driveways (#10)." +"NM-13277","","","549093","3688620","GW","false","" +"NM-06647","","","600679","3586060","GW","false","" +"NM-12089","","","557071","3668250","GW","false","" +"NM-04588","","","251092","3554080","GW","false","" +"NM-15813","","","637746","3750140","GW","false","" +"NM-16583","","","322819","3775500","GW","false","" +"NM-00401","","","408499","3631580","GW","false","" +"NM-19897","","","600963","3834510","GW","false","" +"NM-09086","","","557291","3626060","GW","false","" +"QU-073","MW-9A","","444658","4061371","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road area near/above Duran property (QU-526?). MW-9A & MW-9B in same well box next to each other. Recovery well ? In shed near these wells." +"SB-0068","TWDB 4717217","","504210","3510694","GW","false","" +"NM-19673","","","648369","3831920","GW","false","" +"NM-23647","","","402649","3910110","GW","false","" +"NM-09467","","","636216","3631580","GW","false","" +"NM-08298","","","204542","3619470","GW","false","" +"NM-25655","","","585034","3985940","GW","false","" +"TO-0265","7N7E12.444","","394942","3856140","GW","true","" +"EB-685","","","422264","3936245","GW","true","" +"NM-18569","","","626958","3808650","GW","false","" +"NM-23352","","","459487","3900120","GW","false","" +"NM-07294","","","594602","3598690","GW","false","" +"SB-0212","TWDB 4806607","","476086","3535630","GW","false","" +"UC-0157","","","646216","4056616","GW","false","" +"NM-12919","","","139513","3689050","GW","false","" +"NM-11866","","","286213","3666930","GW","false","" +"NM-14110","","","549332","3697520","GW","false","" +"QY-0180","11.30.14.143a","","615557","3893850","GW","true","" +"NM-14799","","","409450","3719600","GW","false","" +"EB-254","","","417260","3964594","GW","true","#40 Camino Chupadera; enter F.West drive (now Aric Hagberg) turn right past guest house" +"NM-08980","","","558313","3624800","GW","false","" +"AB-0188","S239","","372888","3910940","GW","true","" +"NM-03258","","","397490","3841400","GW","false","" +"DA-0146","25S2E25.322","","340277","3553150","GW","true","" +"NM-06243","","","672678","3579590","GW","false","" +"PC-043","PW-069","","371834","3905473","GW","true","" +"NM-05011","","","343490","3559110","GW","false","" +"NM-21876","","","348442","3881670","GW","false","" +"NM-09687","","","555173","3632550","GW","false","" +"MI-0182","","","477749","3940355","GW","true","Topographic situation: Plains" +"TC-363","","","420274","4077989","GW","true","" +"NM-03991","","","346749","3526540","GW","false","" +"BW-0669","2.1.2.15.223","","341744","3797270","GW","true","" +"NM-15304","","","661667","3739790","GW","false","" +"NM-25694","","","229040","3992790","GW","false","" +"ED-0037","18S25E23.11","","550418","3622480","GW","true","" +"NM-21371","","","200661","3875740","GW","false","" +"NM-21722","","","387320","3879510","GW","false","" +"WL-0193","","","501595","3733939","GW","true","Well on BLM land. Contact Mike McGee for escort to well." +"TO-0016","2N5E10.332","","370331","3808190","GW","true","" +"NM-25865","","","411941","4001250","GW","false","" +"NM-14268","","","406968","3700090","GW","false","" +"NM-12831","","","641616","3682570","GW","false","" +"NM-23177","","","351535","3897830","GW","false","" +"BW-0137","11S9.5E23.124","","408981","3690900","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25921","","","311243","4005800","GW","false","" +"NM-18802","","","621061","3812480","GW","false","" +"NM-15658","","","326712","3747230","GW","false","" +"NM-18330","","","662657","3804830","GW","false","" +"AS-043","VAL-102","","449413","4044880","GW","true","" +"SD-0224","10N.7E.21.414","","390982","3881850","GW","true","" +"NM-20695","","","610638","3851510","GW","false","" +"NM-05650","","","232140","3570750","GW","false","" +"DA-0089","23S2E9.331","","335335","3577020","GW","true","" +"NM-14213","","","550125","3699010","GW","false","" +"NM-26342","","","181151","4053670","GW","false","" +"JM-506","","","312608","3652893","SP","true","" +"NM-03385","S127","","350212","3889720","GW","false","" +"NM-20987","","","660823","3859830","GW","false","" +"DA-0024","20S1E35.221","","330548","3600670","GW","true","" +"RA-067","","","419711","4006083","GW","true","Navigation correctly leads you to well" +"SB-0816","TWDB 5101601","","510055","3424927","GW","false","" +"NM-23274","39 Via Entrada","","378823","3899250","GW","true","39 Via Entrada; Unit 2 Lot 54" +"BW-0581","16S9E23.100a","","407102","3642160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26827","","","139346","3688260","GW","true","" +"NM-13347","","","624434","3690650","GW","false","" +"NM-16908","","","642222","3780490","GW","false","" +"AR-0024","NMED 51","","226448","4076370","GW","true","From Rd. 3000 on south side of river, take Rd. 3312 north towards river, turn right on Rd. 3308 to address. Well is in shed, in closet behind door." +"TO-0344","8N7E29.322","","387771","3861480","GW","true","" +"NM-18583","","","605459","3808560","GW","false","" +"NM-23248","","","656963","3899430","GW","false","" +"NM-16291","","","323262","3767640","GW","false","" +"NM-14832","","","548903","3720870","GW","false","" +"NM-14228","","","544546","3699100","GW","false","" +"NM-27181","","","229481","3988260","ES","true","" +"NM-24773","","","405592","3944930","GW","false","" +"NM-02749","","","560243","3662170","GW","false","" +"NM-18386","","","261659","3807620","GW","false","" +"AB-0041","S047","","346296","3887160","GW","true","" +"NM-12606","","","553860","3677350","GW","false","" +"NM-09968","","","406671","3636280","GW","false","" +"NM-16416","","","550316","3770120","GW","false","" +"NM-19476","","","511465","3826700","GW","false","" +"ED-0256","22S29E12.224","","600468","3586720","GW","true","" +"NM-09046","","","556670","3625410","GW","false","" +"NM-09301","","","286309","3630810","GW","false","" +"NM-18058","","","520544","3799390","GW","false","" +"NM-06402","","","676809","3582650","GW","false","" +"RA-035","","","359461","4079259","GW","true","Behind (west) of house." +"NM-25605","","","251503","3986200","GW","false","" +"PC-049","PW-079","","367366","3907542","GW","true","" +"NM-21437","","","671486","3873650","GW","false","" +"SM-0007","","","445143","3602882","GW","true","Head south from Timberon on Merlin, at the Y at the airport take left fork on Hoover. Contine on this for about 10 miles, past a house at 5 miles. Past double-wide and cowpens on left, up to intersection at turn to Pinon, take sharp right toward broken windmill. Go to fence gate, use chain to help open. Gate combo 8554. Veer right on vague 2track towards stream bank. Windmill tipped over, look for blue casing." +"NM-25512","","","403044","3978570","GW","false","" +"NM-02004","","","345014","3550770","GW","false","" +"SM-2010","","","444748","3604713","M","true","Site set up by Jeremiah Morse. Head south from Timberon on Merlin, at the Y at the airport take left fork on Hoover. Contine on this for about 10 miles, past a house at 5 miles. At double-wide and cowpens, turn left. Station is in fenced area with orchard between house and other buildings. HAS WEATHER STATION INSTALLED in addition to PRECIP COLLECTOR. See SM-5002" +"NM-00645","","","641881","3684680","GW","false","" +"JM-035","","","297507","3660425","GW","true","" +"NM-18041","","","614095","3799860","GW","false","" +"NM-19758","","","620540","3832840","GW","false","" +"NM-19210","","","628410","3821850","GW","false","" +"NM-13535","","","553857","3691880","GW","false","" +"NM-19023","","","598077","3816150","GW","false","" +"NM-10873","","","164113","3654350","GW","false","" +"NM-08310","","","144835","3621610","GW","false","" +"NM-06879","","","574392","3590210","GW","false","" +"NM-03750","","","168314","3509960","GW","false","" +"NM-23776","","","642095","3915330","GW","false","" +"ED-0270","23S22E36.113","","531726","3569980","GW","true","" +"NM-13211","","","612234","3688160","GW","false","" +"PC-042","PW-067","","371558","3907788","GW","true","" +"NM-07494","","","282446","3605170","GW","false","" +"NM-16898","","","325064","3780390","GW","false","" +"NM-22933","","","359815","3893510","GW","false","" +"NM-16614","","","663541","3775780","GW","false","" +"BC-0368","","","379430","3893109","GW","false","" +"NM-02836","","","553080","3701670","GW","false","" +"RA-080","","","391877","4024686","GW","true","Next to round under round vault with pressure tank." +"EB-627","","","399250","3959720","GW","true","" +"TS-072","","","438133","4076798","SP","true","West side of river. Flows from discrete point ~40 ft above river level." +"TC-213","WG-34","","433797","4081974","GW","true","" +"NM-12947","","","614821","3683730","GW","false","" +"NM-15816","","","649016","3750860","GW","false","" +"NM-06612","","","360421","3585910","GW","false","" +"NM-13073","","","138207","3692280","GW","false","" +"NM-00237","","","576583","3585110","GW","false","" +"NM-08185","","","197039","3618060","GW","false","" +"NM-16728","","","249455","3779510","GW","false","" +"NM-22400","","","588672","3886300","GW","false","" +"BW-0481","13S5E26.313","","361958","3669320","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05661","","","257773","3570130","GW","false","" +"MI-0106","","","533966","3921419","GW","true","Topographic situation: Plains" +"NM-15950","","","600654","3754080","GW","false","" +"NM-03897","","","221242","3524740","GW","false","" +"NM-27747","","","579887","3792410","GW","false","" +"NM-11905","","","556000","3665290","GW","false","" +"AR-0042","NMED 180B","","221710","4074690","GW","true","From Farmington take Hwy 516 towards Aztec. Turn right on Old Aztec Hwy. Turn right on Roberts Rd and take the left bend in the road to address." +"NM-00496","","","268494","3649180","GW","false","" +"QY-0976","9.32.15.444","","634391","3874040","GW","true","" +"NM-13509","","","658137","3693120","GW","false","" +"NM-14744","","","654065","3718160","GW","false","" +"NM-06689","","","360861","3587500","GW","false","" +"NM-15246","","","353090","3737270","GW","false","" +"NM-04072","","","250642","3534580","GW","false","" +"TC-328","","","443650","4078868","GW","true","" +"NM-07086","","","655275","3595540","GW","false","" +"NM-21217","","","583327","3867300","GW","false","" +"NM-00591","","","663524","3663420","GW","false","" +"NM-14389","","","138027","3708930","GW","false","" +"NM-13899","","","555594","3695500","GW","false","" +"BW-0431","18S9E11.412","","407608","3625120","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0919","8.33.6.344","","637994","3867430","GW","true","" +"ED-0358","25S30E9.100a","","604637","3557450","GW","true","" +"PP-022","PW-20","","433637","4002499","GW","true","" +"NM-02532","","","270612","3618310","GW","false","" +"NM-15512","","","670547","3743920","GW","false","" +"NM-19180","","","617229","3820780","GW","false","" +"NM-23760","","","637840","3914610","GW","false","" +"AB-0037","S043","","354427","3884530","GW","true","" +"DE-0144","","","614851","3631379","GW","false","" +"NM-13753","","","550199","3694670","GW","false","" +"NM-07251","","","186910","3602090","GW","false","" +"NM-16806","","","658249","3779540","GW","false","" +"NM-22827","","","615693","3891690","GW","false","" +"NM-24598","","","675324","3942110","GW","false","" +"ED-0208","22S27E8.314","","573484","3585620","GW","true","" +"NM-14828","","","602136","3721160","GW","false","" +"NM-03053","","","624087","3796010","GW","false","" +"NM-04249","","","241945","3543120","GW","false","" +"BW-0518","9S8E13.008","","401447","3710220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"HS-513","TC-513","","289823","3667682","SP","true","In block 41 in Hot Springs, NM" +"DE-0274","","","663070","3634551","GW","false","" +"NM-09953","","","237742","3639200","GW","false","" +"NM-23723","","","229655","3916390","GW","false","" +"SB-0648","TWDB 4915207","","388296","3523555","GW","false","" +"NM-11057","","","649684","3652530","GW","false","" +"NM-27220","","","596854","3543430","GW","false","" +"NM-11024","","","558965","3650680","GW","false","" +"NM-03327","","","531362","3874150","GW","false","" +"ED-0013","16S26E35.113","","559982","3638640","GW","true","" +"NM-08494","","","640838","3619350","GW","false","" +"NM-06050","","","243635","3576680","GW","false","" +"NM-06786","","","643556","3589810","GW","false","" +"NM-27073","","","328699","3756740","GW","true","" +"NM-18509","","","651276","3808300","GW","false","" +"NM-16884","","","676290","3780730","GW","false","" +"NM-02051","","","237221","3557510","GW","false","" +"NM-24260","","","636647","3933210","GW","false","" +"NM-01245","","","495632","3891970","GW","false","" +"NM-06702","","","360263","3587700","GW","false","" +"NM-03577","","","590180","3981880","GW","false","" +"NM-20131","","","166079","3844070","GW","false","" +"NM-20865","","","625020","3855510","GW","false","" +"SO-0007","1N2E34.130a","","341001","3793230","GW","true","" +"BW-0325","16S10E6.231","","410478","3645810","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08097","","","306694","3614120","GW","false","" +"SD-0082","9N.6E.19.343","","377533","3872230","GW","true","" +"NM-00506","","","666968","3649660","GW","false","" +"TO-0172","5N8E18.224","","396290","3836400","GW","true","" +"NM-18525","","","628626","3808050","GW","false","" +"NM-19073","","","573735","3816850","GW","false","" +"BW-0596","22S8E3","","395844","3587480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20057","","","399117","3837040","GW","false","" +"NM-24390","","","397746","3936230","GW","false","" +"NM-23220","","","289423","3899930","GW","false","" +"NM-10706","","","649920","3647300","GW","false","" +"NM-23467","","","356874","3905940","GW","false","" +"NM-24909","","","410422","3947490","GW","false","" +"SB-0350","TWDB 4807711","","477230","3530701","GW","false","" +"NM-10608","","","618457","3646160","GW","false","" +"TB-1011","","","404457","3705968","SP","true","Grand Avenue - from Oscuro to E on hwy approx 1 mi to gate on north side. Cathie has permission to be there with owner. Owner very private." +"NM-16952","","","547474","3779780","GW","false","" +"NM-06010","","","239797","3576100","GW","false","" +"SD-0170","10N.5E.30.224","","369212","3881460","GW","true","" +"NM-10066","","","660190","3638710","GW","false","" +"NM-09130","","","673785","3628470","GW","false","" +"NM-24753","","","410166","3944510","GW","false","" +"NM-25431","","","408902","3973210","GW","false","" +"NM-12160","","","275854","3672160","GW","false","" +"GT-032","","","357196","3972450","GW","true","" +"NM-27908","","","566227","3825260","GW","false","" +"NM-07107","","","555722","3594800","GW","false","" +"NM-01484","","","540950","3950610","GW","false","" +"NM-08401","","","340162","3618280","GW","false","" +"NM-01341","","","373987","3912440","GW","false","" +"NM-25533","","","675173","3981480","GW","false","" +"NM-08512","","","192952","3623430","GW","false","" +"NM-11635","","","559081","3661420","GW","false","" +"NM-21236","","","346578","3868810","GW","false","" +"NM-10262","","","642311","3641830","GW","false","" +"AS-0003","","","499999","3873043","GW","true","" +"NM-17994","","","669075","3800070","GW","false","" +"NM-10436","","","642768","3644390","GW","false","" +"NM-12329","","","555441","3672460","GW","false","" +"NM-07614","","","216111","3608990","GW","false","" +"NM-03942","","","120526","3530060","GW","false","" +"NM-07902","","","230736","3613080","GW","false","" +"QY-0551","5.27.12.444","","589399","3836320","GW","true","" +"SR-0022","","","300586","3762420","SP","true","Magdalena Ridge; " +"QY-0781","7.30.4.421","","613008","3857940","GW","true","" +"NM-21344","","","384704","3871070","GW","false","" +"NM-22109","","","346607","3884150","GW","false","" +"EB-273","SF-21","","413205","3954305","GW","true","#61 Calle San Martin" +"SB-0548","TWDB 4853902","","460733","3445930","GW","false","" +"NM-15803","","","566048","3749120","GW","false","" +"NM-05075","","","579311","3559200","GW","false","" +"NM-10819","","","629430","3649130","GW","false","" +"NM-06400","","","583449","3581320","GW","false","" +"NM-01108","","","619207","3854900","GW","false","" +"NM-18078","","","667645","3801370","GW","false","" +"SM-0021","","","430302","3639561","GW","true"," Sunspot Highway south to Russia Canyon Road on left. Take rightmost dirt road at the intersection. Go down canyon. Go right on Lupine Street, go to top to Lupine Court. Look for 12 Lupine Court, a green double gate with a white # 12 on it. Go up steep driveway into woods. Well is in Y of driveway, with an electric box on a wooden post adjacent. Approx. 100 feet from house. Ok to come anytime, don't need to call" +"NM-12436","","","285560","3676200","GW","false","" +"NM-18350","","","274974","3806490","GW","false","" +"NM-11824","","","286308","3666560","GW","false","" +"NM-14707","","","410650","3715640","GW","false","" +"BC-0312","281","","379764","3873200","GW","true","" +"NM-24041","","","447903","3924860","GW","false","" +"SA-0174","","","248204","3749792","GW","true","From Hwy 60 turn south on County Rd. 52 (By the VLA). Drive about 18 miles. From MM 70, drive about 1.5 miles (mile markers decrease going south and MM 69 is missing), turn west (right) onto 2 track. Drive about 0.75 mile, turn north (right) just past broken windmill and tank but before the corral. Just past tank, turn slightly left, to the northwest, and drive cross county (there is no road but driving isn't difficult). Look to the north for a faint two track, turn north onto the two track. Drive about 0.3 miles on the two track, well cover is a 50-gallon drum to the east (right) of the two track." +"NM-18264","","","637090","3803860","GW","false","" +"ED-0193","22S26E11.411","","569446","3585620","GW","true","" +"NM-02778","","","632610","3673200","GW","false","" +"NM-12521","","","425427","3675910","GW","false","" +"NM-26306","","","433057","4043060","GW","false","" +"MI-0148","","","530867","3932760","GW","true","Topographic situation: Plateau" +"SB-0904","26.18.27.242","","492153","3542286","GW","true","" +"NM-16688","","","294231","3777810","GW","false","" +"AB-0224","S280","","340611","3926530","GW","true","" +"SM-0119","","","474008","3644065","GW","true","" +"NM-10389","","","556649","3642620","GW","false","" +"QY-0354","11.35.28.433","","660822","3890410","GW","true","" +"NM-02896","","","667320","3731410","GW","false","" +"NM-17424","","","654571","3788140","GW","false","" +"NM-02025","","","303023","3553650","GW","false","" +"EB-498","","","416528","3956339","ES","true","Rio Tesuque at State Hwy 22" +"NM-16131","","","326497","3760770","GW","false","" +"NM-02815","","","136584","3699950","GW","false","" +"NM-01921","M-038/M-039","","243649","3541910","GW","false","From main Deming intersection at Pine and Gold, go south on NM-11 for 17.5 miles. Go west on Waterloo for 1.5 miles. House located at DesGrange Gate. Address 4555 Waterloo." +"NM-00304","","","375059","3611400","GW","false","" +"NM-25203","","","327254","3963210","GW","false","" +"NM-05884","","","268608","3573180","GW","false","" +"SA-0305","","","229759","3737716","GW","true","" +"NM-22134","","","345438","3884370","GW","false","" +"NM-01026","","","183610","3836590","GW","false","" +"NM-06021","","","662617","3574240","GW","false","" +"DE-0046","","","554948","3596317","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep. Well next to concrete tank." +"NM-12566","","","677361","3678200","GW","false","" +"NM-08460","","","192923","3622510","GW","false","" +"NM-00111","","","353637","3555880","GW","false","" +"NM-17945","","","653703","3798660","GW","false","" +"NM-27824","","","558918","3804390","GW","false","" +"NM-10429","","","554984","3643170","GW","false","" +"NM-22230","","","391260","3884850","GW","false","" +"NM-14330","","","544537","3701070","GW","false","" +"NM-16665","","","639515","3776470","GW","false","" +"NM-21455","","","634431","3873790","GW","false","" +"NM-20589","","","632506","3849090","GW","false","" +"NM-08020","NH-002","","278660","3613206","GW","true","I25 South, Exit Hatch. Left (West) on NM26. Right at cattle guard at mile 12 (0.8 miles from NM-07749 gate). Go north on dirt road for 2.5 miles. Keep left at the fork to stay West of the house/buildings. Go another .3 miles to the end of the fields and turn West. The well is to the south of the dirt road at mile 0.4." +"SB-0416","TWDB 4814701","","466199","3514567","GW","false","" +"BW-0013","21S5E17.244","","363984","3594930","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12513","","","556303","3675570","GW","false","" +"SB-0040","TWDB 4709906","","508997","3512884","GW","false","" +"NM-27280","","","595671","3579670","GW","false","" +"ED-0088","21S24E23.4","","550357","3591860","GW","true","" +"NM-22053","","","663870","3883860","GW","false","" +"NM-24793","","","328987","3946280","GW","false","" +"NM-06208","","","669105","3579000","GW","false","" +"NM-20579","","","635561","3848850","GW","false","" +"ED-0023","17S26E2.113","","560046","3636560","GW","true","" +"NM-18256","","","611445","3803330","GW","false","" +"NM-20653","","","390699","3850540","GW","false","" +"NM-09927","","","447448","3635550","GW","false","" +"NM-11600","","","661072","3662570","GW","false","" +"NM-04696","","","671695","3554340","GW","false","" +"NM-12644","","","668919","3679650","GW","false","" +"NM-15135","","","653871","3733470","GW","false","" +"NM-20049","","","599944","3836940","GW","false","" +"NM-28138","","","172473","3967430","GW","false","" +"NM-25476","","","468897","3974640","GW","false","" +"EB-071","","","417460","3954890","GW","true","" +"NM-03611","","","603319","4002190","GW","false","" +"NM-10055","","","198596","3641790","GW","false","" +"NM-00822","","","306018","3715970","GW","false","" +"NM-01583","","","574371","3997200","GW","false","" +"BW-0458","23S6E35.1","","377107","3570710","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04536","","","134759","3556020","GW","false","" +"TB-1062","","","426575","3701821","SP","true","Site visit by Fraser and Cathy Goff. NPW10-5" +"NM-21419","","","382284","3872180","GW","false","" +"NM-25366","","","460331","3970420","GW","false","" +"QY-0313","11.32.27.33","","632808","3889950","GW","true","" +"NM-26406","","","302757","4061410","GW","false","" +"NM-14392","","","548584","3702360","GW","false","" +"QY-0592","5.29.18.443","","600403","3835050","GW","true","" +"SA-0218","","","248846","3702977","GW","true","From Hwy 59 (Beaverhead) west from Hwy 52 (NW of mm34), just after dip look for old cabin. Go 1.5 miles to Morrow Ranch sign on south side." +"NM-23886","","","660299","3919390","GW","false","" +"SM-3037","","","425288","3629396","R","true","Road cut north of Sunspot turnoff, upper portion of exposure. Trevor Kludt collected." +"NM-05537","","","634983","3567350","GW","false","" +"NM-08624","","","190819","3625290","GW","false","" +"NM-01792","","","118049","3526510","GW","false","" +"NM-06497","","","671024","3584610","GW","false","" +"NM-27272","","","160617","3580550","GW","false","" +"TB-1051","","","416266","3667524","PS","true","Near stream gaging station on west side of bridge, across creek on Gato Road south of entrance to Stallings house. Not on Stallings property; public access." +"DE-0086","","","639398","3568890","GW","false","" +"NM-02368","","","151974","3587480","GW","false","" +"NM-02926","","","412213","3742670","GW","false","" +"PP-052","PW-57","","433561","4002454","GW","true","" +"TO-0420","9N9E32.311","","407556","3868950","GW","true","" +"NM-21968","","","368279","3882260","GW","false","" +"NM-16267","","","528750","3764980","GW","false","" +"NM-10855","","","542884","3648470","GW","false","" +"NM-10723","","","544528","3646440","GW","false","" +"NM-16684","","","641379","3776960","GW","false","" +"NM-02688","","","276444","3650260","GW","false","" +"NM-05042","","","342818","3559710","GW","false","" +"NM-28316","PIL-08","","430432","4014342","GW","false","" +"NM-09481","","","529622","3630340","GW","false","" +"NM-13102","","","138429","3692670","GW","false","" +"SV-0136","09 La Canada Pl","","380785","3900570","GW","false","" +"SA-0127","","","229070","3751975","GW","true","From Datil, take Hwy 12 south fo 7 miles to county road East then south for 11 miles (passing 3 wells) to Sheep well. Go west 2.2 miles to Middle well, go through gate to S (combo 2020), go 1.4 miiles to S. Bear L after 0.6 miles bear left, well up canyon 0.8 miles." +"SM-0133","","","475444","3635270","GW","true","Turn south off Hwy 82, past mile 54, road just past Runyan sign and west well (SM-0078). Take road through gates (must get key!), well is several miles back along rough 4wd road." +"NM-11950","","","644723","3666780","GW","false","" +"NM-07214","","","188764","3601200","GW","false","" +"ED-0373","26S31E8.31","","612638","3547110","GW","true","" +"DE-0328","","","674263","3589757","GW","false","" +"NM-08566","","","650637","3620730","GW","false","" +"NM-07434","","","618748","3602370","GW","false","" +"NM-23642","","","668556","3911070","GW","false","" +"WL-0206","","","438068","3932957","GW","true","Take I-25 North from Santa Fe for 24 miles, take exit 307 onto NM-63 north. Drive 3 miles to NPS Trading Post on east side of road. Well is across the dirt road from the trading post." +"NM-25254","","","222893","3968610","GW","false","" +"NM-05005","","","675069","3559360","GW","false","" +"NM-23751","","","641302","3914360","GW","false","" +"NM-15474","","","134319","3748640","GW","false","" +"EB-344","","","407177","3930466","GW","true","On fenceline SE of Gallina Arroyo; access along fenceline road running SW from Pickett WM" +"NM-15684","","","664744","3747820","GW","false","" +"NM-25406","","","593937","3972710","GW","false","" +"NM-26742","","","140395","4095500","GW","false","" +"NM-18624","","","658062","3810010","GW","false","" +"TV-257","SW-51","","442495","4023234","GW","true","" +"NM-19150","","","554263","3818690","GW","false","" +"NM-10693","","","641509","3647020","GW","false","" +"SM-1001","","","447222","3650484","SP","true","On south side of 16 Springs Canyon, in Walker private property accessed on 2 track across from house. Do not access without prior arrangement with Walker." +"NM-22636","","","383595","3889380","GW","false","" +"NM-20431","","","677930","3846120","GW","false","" +"NM-16729","","","678727","3777910","GW","false","" +"NM-11138","","","551401","3652850","GW","false","" +"NM-19429","","","403842","3826330","GW","false","" +"JM-003","","","316205","3634489","GW","true","" +"NM-16799","","","651778","3778820","GW","false","" +"NM-02492","","","542275","3608560","GW","false","" +"NM-25733","","","400426","3992960","GW","false","" +"NM-23271","","","383316","3899120","GW","false","" +"NM-05400","","","165793","3569890","GW","false","" +"NM-05141","","","342234","3560920","GW","false","" +"CP-0007","NM3553205","","654499","3809193","GW","true","From Clovis take Hwy 60 west, turn right (north) on NM 311. Trailer park is on right ~0.25 mi north of Hwy 60 @ 1051 NM 311. Well is behind house near tanks and well house." +"NM-13751","","","544360","3694610","GW","false","" +"DA-0169","28S5W12.114","","281369","3530890","GW","true","" +"QY-0428","13.32.1.311","","645654","3916470","GW","true","" +"NM-06109","","","283516","3577280","GW","false","" +"SB-0168","TWDB 4743204","","530060","3470806","GW","false","" +"NM-01501","","","199890","3961740","GW","false","" +"NM-23935","","","636766","3920480","GW","false","" +"NM-16700","","","665488","3777260","GW","false","" +"SM-0122","","","474059","3643695","GW","true","" +"NM-19504","","","614433","3828350","GW","false","" +"NM-25219","","","283362","3964910","GW","false","" +"NM-10089","","","555013","3637960","GW","false","" +"NM-26888","PW-147","","369176","3909091","GW","true","" +"WL-0066","NM3538309","","190851","3625440","GW","false","From Silver City, NM, go south on Hwy 90. After passing Calvary Baptist Church on right, go ~2 miles and make right on Camino Azteca right after Circle View Apts. and Camino Tolteca on right. Take first dirt road that veers off to left and follow to tanks and well. Well in large metal box on concrete pad inside chain link fence." +"NM-09116","","","655730","3628100","GW","false","" +"NM-11398","","","633553","3659080","GW","false","" +"NM-24518","","","448739","3938630","GW","false","" +"NM-24194","","","428766","3930320","GW","false","" +"NM-21773","","","267212","3882400","GW","false","" +"NM-07600","","","662622","3606100","GW","false","" +"NM-14607","","","643171","3712110","GW","false","" +"AB-0157","S205","","368300","3921820","GW","true","" +"NM-25721","","","415096","3991480","GW","false","" +"NM-03721","","","168911","3493130","GW","false","" +"NM-08964","","","652013","3626110","GW","false","" +"NM-27979","","","343346","3874980","GW","false","" +"NM-18594","","","575845","3808300","GW","false","" +"TV-168","COR-53","","443597","4027664","GW","true","276 SR 240 @ Blueberry Hill, on corner to west. Well in area outside of latilla fenced yard, towards corner of 240 & Blueberry Hill next to vault." +"BW-0591","9S8E36.2","","401809","3705790","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26858","","","493619","4072250","GW","true","" +"NM-08306","","","561885","3615340","GW","false","" +"QY-0306","11.32.20.121","","629829","3892930","GW","true","" +"NM-15092","","","423635","3730680","GW","false","" +"NM-00187","","","323972","3576040","GW","false","" +"NM-11778","","","669794","3665120","GW","false","" +"SD-0331","13N.5E.34.311","","372195","3908040","GW","true","" +"NM-24303","","","476784","3933430","GW","false","" +"NM-23976","","","401694","3922040","GW","false","" +"NM-17296","","","642136","3786160","GW","false","" +"SB-0860","Mayer 21","","432517","3545335","GW","true","From Hwy 62 (aka Hwy 180, road runs east/west south of Dell City), go N on Hueco Ranch Rd, which turns into Loma Linda Rd and then F002 for ~14.5 mi to Cambalachie Camp bunkhouse near intersection of F002 & F001. From Cambalachie Camp bunkhouses, drive 9.1 mi NE on F003/F001 (past tower on left), turn right on F008 and drive SE 1.75 mi, turn S (right) on F009 for 1.5 mi to Wind Mtn Camp. Well is underneath old windmill frame." +"NM-09698","","","542849","3632420","GW","false","" +"ED-0121","21S26E35.122","","569224","3589710","GW","true","" +"EB-355","","","409367","3939823","GW","true","Off SE corner of Richards Ave and Avenida del Sur; TEMPORARY COMPLETION" +"NM-04317","","","247610","3545910","GW","false","" +"NM-13414","","","548179","3690370","GW","false","" +"BW-0789","1.15.9.6.200","","243814","3939020","GW","true","" +"QY-0448","13.35.6.143","","657280","3916920","GW","true","" +"NM-00317","NH-003","","276220","3616850","GW","false","" +"EB-348","","","410362","3931975","GW","true","Windmill at 2-track crossroads south of Gallina Camp" +"TB-1025","","","430715","3710245","SP","true","From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road thru other gate (several miles), go past the cabin and then take the right fork to the north west. Stay on main road 0.1 miles to west, past the Evilina Attic shaft another 0.2 miles to the mine at the end of road. Walk west 200 yards up canyon to outlet of spring at end of poly pipe" +"NM-18742","","","620461","3811450","GW","false","" +"NM-26747","","","243088","4092010","GW","false","" +"NM-18246","","","477522","3802390","GW","false","" +"SO-0053","3N3E16.44","","350746","3817490","GW","true","" +"NM-27569","","","675390","3793220","GW","false","" +"WL-0360","","","461434","3775588","GW","true","" +"NM-20603","","","625462","3849230","GW","false","" +"EB-387","","","403690","3937134","GW","true","North of ponds in buffalo pasture; enter through SE corner gate and drive around on 2 track" +"NM-02731","","","401605","3657390","GW","false","" +"NM-04819","","","674775","3556640","GW","false","" +"NM-18651","","","659168","3810550","GW","false","" +"NM-12149","","","290256","3671660","GW","false","" +"TO-0481","1S12E13.4","","441580","3786730","GW","true","" +"ED-0058","19S29E13.41a","","591308","3613870","GW","true","" +"NM-17394","","","642092","3787390","GW","false","" +"TB-0071","","","403187","3675080","GW","true","Take Snake Tank Rd off Hwy 54 about 1.5 mi from hwy. Well by double green gates next to power line. North of road. Well has been painted green. Well padlock is dummy locked. Had to be cut to remove, but left it on the well." +"NM-18190","","","653547","3802680","GW","false","" +"NM-27882","","","629485","3788440","GW","false","" +"NM-20172","","","590376","3839270","GW","false","" +"NM-15050","","","151011","3735140","GW","false","" +"SB-0783","TWDB 4932503","","398505","3492378","GW","false","" +"NM-24661","","","410045","3942510","GW","false","" +"NM-25303","","","408512","3967020","GW","false","" +"NM-06568","","","548805","3584290","GW","false","" +"NM-16277","","","399398","3765810","GW","false","" +"NM-16460","","","670026","3772910","GW","false","" +"SO-0237","SFC-W03B","","312683","3721087","GW","true","" +"NM-18023","","","599891","3799260","GW","false","" +"NM-16136","","","666971","3761510","GW","false","" +"NM-05936","","","249700","3574180","GW","false","" +"NM-17903","","","648221","3797990","GW","false","" +"QY-0046","10.30.18.121","","609242","3884550","GW","true","" +"EB-588","","","412444","3954655","GW","true","West on Tano Rd; 1st drive on left past Tano Norte, gate code #1936. Well at southern end of 2 track road, access by turning left off of main drive. Southern most of 3 wells." +"NM-09317","","","555064","3628790","GW","false","" +"NM-18830","","","564050","3812070","GW","false","" +"NM-01664","","","499851","4040830","GW","false","" +"NM-17271","","","654229","3785640","GW","false","" +"NM-06577","","","216230","3588300","GW","false","" +"SB-0489","TWDB 4832602","","497760","3493576","GW","false","" +"NM-05940","","","671071","3572600","GW","false","" +"NM-14067","","","545512","3696950","GW","false","" +"NM-15352","","","240884","3742680","GW","false","" +"SB-0041","TWDB 4709907","","508997","3513776","GW","false","" +"NM-20669","","","605512","3850800","GW","false","" +"NM-00116","","","561358","3556610","GW","false","" +"PP-038","PW-43","","437370","4003019","GW","true","" +"BW-0780","2.17.18.17.400","","495243","3950250","GW","true","" +"NM-00561","","","661890","3658580","GW","false","" +"NM-23096","","","450817","3895300","GW","false","" +"NM-21589","","","347309","3877580","GW","false","" +"NM-25965","","","617076","4007180","GW","false","" +"NM-07842","","","289090","3610850","GW","false","" +"SB-0475","TWDB 4824903","","496496","3499457","GW","false","" +"NM-24060","","","639295","3926560","GW","false","" +"NM-00154","","","459524","3568390","GW","false","" +"NM-10659","","","472143","3645760","GW","false","" +"NM-12017","","","562933","3667150","GW","false","" +"NM-10260","","","279163","3642900","GW","false","" +"NM-10266","","","278307","3642980","GW","false","" +"NM-25404","","","481248","3972170","GW","false","" +"NM-15290","","","665508","3739390","GW","false","" +"OG-0009","","","638107","3823949","GW","true","From int of SR 311 and US 60, west of Clovis, drive 20 miles north and west on SR 311. Turn left south on CR AB. Drive 0.2 miles south, well is on left east side of road" +"NM-25689","","","400855","3988890","GW","false","" +"NM-18046","","","361452","3800120","GW","false","" +"NM-03639","","","448323","4031040","GW","false","" +"NM-19910","","","609438","3834890","GW","false","" +"NM-05770","","","251496","3571640","GW","false","" +"NM-10382","","","680109","3644170","GW","false","" +"NM-19809","","","441390","3832640","GW","false","" +"NM-26527","","","583695","4064560","GW","false","" +"NM-03317","","","404096","3867050","GW","false","" +"NM-05314","","","673436","3564410","GW","false","" +"NM-27139","W-06","","449582","4025370","GW","false","" +"NM-19841","","","623401","3834140","GW","false","" +"NM-20327","","","592995","3842040","GW","false","" +"NM-07027","","","600972","3593240","GW","false","" +"NM-07359","","","181851","3604930","GW","false","" +"NM-14803","","","665083","3720750","GW","false","" +"CX-0116","20","","547872","4065660","GW","true","Hebron" +"NM-25833","","","667691","4000500","GW","false","" +"NM-05643","","","258925","3570110","GW","false","" +"NM-19133","","","587825","3818510","GW","false","" +"NM-10798","","","282053","3650140","GW","false","" +"NM-04144","","","343088","3536390","GW","false","" +"NM-06443","","","278433","3584170","GW","false","" +"NM-10367","","","609432","3642760","GW","false","" +"NM-03455","","","360506","3903580","GW","false","" +"NM-03588","","","585394","3987540","GW","false","" +"NM-18944","","","579216","3814180","GW","false","" +"NM-07229","","","637334","3597710","GW","false","" +"TS-066","","","432769","4020810","SP","true","One of a series of small seeps with vegetative signatures that are located on west gorge wall between TJ Campground and the gaging station, a distance of one mile. " +"NM-11571","","","537750","3660460","GW","false","" +"NM-11093","","","490479","3651980","GW","false","" +"NM-16455","","","644676","3772480","GW","false","" +"NM-02664","","","548670","3643720","GW","false","" +"ED-0212","22S27E10.333","","576727","3585260","GW","true","" +"QY-0452","13.36.27.332","","671723","3909990","GW","true","" +"NM-08197","","","591565","3614060","GW","false","" +"SB-0755","TWDB 4924413","","395940","3507369","GW","false","" +"TO-0137","5N7E36.334","","393794","3830420","GW","true","" +"AR-0219","","","220990","4073983","GW","true","Heading north on Hwy 516 out of Farmington, past the Animas Mall, take right (south) on Pryor Lane, continue a few blocks to Samantha Lane and turn right. House is near end of road on left. Well is behind house in NE corner of lot along fence and under plastic rock." +"NM-09102","","","672284","3627980","GW","false","" +"NM-17710","","","668714","3793130","GW","false","" +"NM-19055","","","653695","3818010","GW","false","" +"NM-17801","","","675010","3795770","GW","false","" +"NM-26193","","","613974","4030060","GW","false","" +"TO-0339","8N7E8.341","","387630","3865900","GW","true","" +"NM-03916","","","252097","3525150","GW","false","" +"BW-0196","14S9E26.142","","401389","3659700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18160","","","612257","3801710","GW","false","" +"NM-15938","","","676353","3755370","GW","false","" +"CX-0028","28N27E22.3","","584224","4055710","GW","true","" +"QU-152","TPZ-7U","","446183","4061682","GW","true","" +"NM-07974","","","557876","3610420","GW","false","" +"DE-0177","","","611963","3600080","GW","false","" +"NM-20650","","","428615","3850070","GW","false","" +"NM-11240","","","577409","3655020","GW","false","" +"NM-00380","","","639780","3629750","GW","false","" +"NM-02076","M-076","","242129","3559826","GW","false","From Deming intersection at Pine and Gold, go south on NM-11/Columbus Rd for 8.1 miles. Go east on Rivera Rd/B019 for 1 mile, then go south on Country Club Rd SE/B018 for 0.5 miles. Turbine located on northwest corner of large steel structure." +"NM-05009","","","171267","3563200","GW","false","" +"NM-12022","","","668259","3668420","GW","false","" +"NM-22463","","","374532","3887470","GW","false","" +"QU-115","Q-16","","446810","4062797","GW","true","2469 Highway 522. Well in grey stucco shed behind large red-roofed garage at entrance to trailer park." +"SB-0793","TWDB 5007201","","481619","3427648","GW","false","" +"EB-583","","","409986","3948497","GW","true","House at top of hill on Camino Don Emilio off W. Alameda. Across from pool house." +"SO-0043","2N5E8.43","","367594","3808170","GW","true","" +"NM-24288","","","167487","3939000","GW","false","" +"NM-20272","","","673938","3841980","GW","false","" +"NM-13423","","","550220","3690510","GW","false","" +"NM-22583","","","610163","3888660","GW","false","" +"WL-0308","","","347441","3855164","GW","true","From I-25, take exit 203 @ Los Lunas east onto NM-6/Main Street for 3.9 miles. After crossing the Rio Grande the road bends north and turns into NM-47 for 1.6 miles, turn right on Molina Rd for 1 mile, turn right on Adobe Lane to address at end of road. Well is just south of car port between buildings." +"TO-0067","4N6E19.222","","376470","3825400","GW","true","" +"NM-01855","","","228193","3533740","GW","false","" +"NM-20072","","","591617","3837280","GW","false","" +"NM-04583","","","241122","3554150","GW","false","" +"NM-12461","","","650386","3676080","GW","false","" +"NM-00794","","","453518","3707840","GW","false","" +"NM-24448","","","672744","3938830","GW","false","" +"NM-27629","","","632090","3794270","GW","false","" +"NM-23262","","","630339","3899160","GW","false","" +"NM-10180","","","406962","3639630","GW","false","" +"NM-10643","","","550555","3645790","GW","false","" +"CX-0071","25N27E35","","586549","4023780","GW","true","" +"NM-13215","","","554423","3687760","GW","false","" +"NM-07231","","","577212","3597060","GW","false","" +"BW-0211","14S9E26.442a","","402200","3658870","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19687","","","651197","3831930","GW","false","" +"NM-28343","237698","","152996","3698440","SP","false","Gila National Forest" +"TO-0111","4N10E2.143","","420471","3829310","GW","true","" +"NM-27254","","","588599","3569350","GW","false","" +"NM-20081","","","602735","3837740","GW","false","" +"NM-03758","","","167538","3512080","GW","false","" +"NM-20563","","","401243","3847830","GW","false","" +"OG-0094","","","655970","3811196","GW","true","From int of SR 311 and US 60, west of Clovis, drive 2 miles north on SR 311. Turn right east on SR 245. Drive 1 mile east. Turn right south on dirt. Drive 0.25 miles south. Turn right west into field. Drive 0.2 miles west to well." +"NM-10035","","","619026","3637790","GW","false","" +"NM-11261","","","655588","3656750","GW","false","" +"NM-11314","","","404009","3656600","GW","false","" +"AR-0062","","","233161","4081680","GW","true","From Aztec take Hwy 516 west toward Farmington. Just across river, turn right on Ruins Rd (Rd 2900). Rd 2900 turns right and travels thru Natl. Monument along river. Proceed to address on right. Well is in yellow-orange painted lean-to shed about 250' down driveway off of CR 2900." +"NM-15724","","","607245","3748020","GW","false","" +"NM-19449","","","594093","3826620","GW","false","" +"NM-17990","","","576386","3798300","GW","false","" +"NM-00241","","","569152","3585300","GW","false","" +"NM-27030","","","330404","3802400","GW","true","" +"NM-05094","M-085","","262998","3561959","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go S on B046 for 4.5 miles. Go W on B044/Coyote Rd (lots of trees to the west) for 0.6 miles. Go thru barbed wire gate (no lock), south side of the road before the occupied property. Drive around the occupied lot to the southwest corner of the L-shaped property, ~300 ft. Well is an old turbine located near a power pole. NOTE: Dogs in adjacent dog run are friendly (but LARGE and loud)." +"NM-27680","","","620030","3787390","GW","false","" +"NM-19131","","","158108","3824330","GW","false","" +"NM-16510","","","671164","3773790","GW","false","" +"WL-0296","","","332471","3791849","GW","false","Will be escorted to wells." +"NM-09618","","","388141","3632130","GW","false","" +"NM-20512","","","664868","3848160","GW","false","" +"NM-05339","","","675080","3564750","GW","false","" +"NM-05699","","","643954","3569290","GW","false","" +"SB-0063","TWDB 4717212","","507104","3511835","GW","false","" +"NM-22299","","","348923","3886050","GW","false","" +"NM-20945","","","401648","3857160","GW","false","" +"SV-0085","03 Punta Linda","","377026","3898867","GW","false","Unit 3 Lot 125" +"TS-053","","","428734","4015141","SP","true","North of Pilar, on west side. Spring feeds the Los Acequias de los Ojos of the village of Pilar. Feeds the Pilar Community Ditch." +"NM-26704","","","665493","4080830","GW","false","" +"SO-0112","2N5E3.31","","370012","3810170","GW","true","" +"NM-24962","","","407215","3948540","GW","false","" +"NM-04163","","","245513","3539730","GW","false","" +"NM-18946","","","597610","3814480","GW","false","" +"HS-094","TC-094","","289765","3667869","GW","true","In block 105 in Hot Springs, NM" +"NM-20417","","","597374","3844120","GW","false","" +"NM-22851","","","613565","3891910","GW","false","" +"NM-00094","","","549791","3552540","GW","false","" +"NM-06464","","","675719","3583700","GW","false","" +"DE-0054","","","585974","3581487","GW","false","" +"NM-08614","","","678067","3621950","GW","false","" +"NM-10253","","","550998","3640530","GW","false","" +"NM-26120","","","253452","4024950","GW","false","" +"NM-24446","","","378859","3937910","GW","false","" +"NM-09376","","","679641","3631370","GW","false","" +"NM-19981","","","633376","3836460","GW","false","" +"TV-129","","","445250","4020120","GW","true","Ponce de Leon neighborhood" +"NM-07276","","","211863","3601990","GW","false","" +"PC-157","PSW-04","","371994","3909438","PS","true","" +"NM-05408","","","220334","3568320","GW","false","" +"NM-20176","","","618009","3839610","GW","false","" +"NM-16521","","","313360","3774240","GW","false","" +"DA-0019","20S3W4.32","","297694","3608600","GW","true","In canyon with bedrock near" +"NM-08137","","","549759","3612990","GW","false","" +"NM-08418","","","309297","3618980","GW","false","" +"WL-0119","","","282160","3641880","GW","false","Take exit 59 on HWY 25, and head S on 187 for 0.4 miles. Turn W on Chili Plant Rd. Drive for 1.2 miles, and takea right on Tanzy Rd. Continue 0.5 miles toward house along trees. Well is to the right behind small house." +"NM-24914","","","408588","3947610","GW","false","" +"CX-0064","25N26E19.34","","570314","4026400","GW","true","" +"NM-09601","","","556687","3631510","GW","false","" +"SD-0058","8N.6E.36.333","","383516","3859540","GW","true","" +"NM-05625","","","233940","3570450","GW","false","" +"NM-17193","","","641188","3784510","GW","false","" +"NM-07179","","","339202","3596940","GW","false","" +"PC-075","PW-133","","369330","3907544","GW","true","From I-25 north, take exit 242 for NM-165 east Placitas. After 5 miles, turn right onto Camino del Rincon Colorado. Follow to right at fork. First left onto Al Pie de La Loma. First right onto Camino de Las Piedras, then left onto Cain La Piepyas, and left onto Camino de Las Estrellas. (Alternative route to well, stay straight on Al Pie de La Loma, take right on second dirt access road. Well is ~20 ft before end of dirt road." +"SB-0006","TWDB 4701901","","509822","3530865","GW","false","" +"NM-19362","","","631643","3825810","GW","false","" +"NM-05841","","","239229","3573370","GW","false","" +"NM-09196","","","555045","3627430","GW","false","" +"NM-10736","","","543877","3646780","GW","false","" +"NM-25113","","","405855","3955460","GW","false","" +"NM-11584","","","674766","3662590","GW","false","" +"QY-0002","10.27.10.144","","585146","3885480","GW","true","" +"NM-13471","","","551743","3691040","GW","false","" +"NM-15385","","","620111","3740560","GW","false","" +"NM-19914","","","403522","3834740","GW","false","" +"NM-07952","","","654563","3611080","GW","false","" +"OG-0064","","","647195","3806180","GW","true","From int of SR 311 and US 60, west of Clovis, drive 4 miles west on US 60. Turn left south on CR U. Drive 1.3 miles south. Turn right west into field. Drive 0.5 miles west. Turn left south. Drive 0.3 miles to well. Field may be very sandy." +"NM-23213","","","646304","3898600","GW","false","" +"NM-09054","","","558308","3625570","GW","false","" +"JM-049","","","301243","3650176","GW","true","" +"NM-21691","","","410773","3878690","GW","false","" +"NM-15191","","","594403","3734390","GW","false","" +"BC-0150","194","","375812","3890960","GW","true","" +"SD-0307","12N.5E.3.341","","372515","3906240","GW","true","" +"NM-12237","","","291006","3672780","GW","false","" +"AH-071","AH-32","","438536","4042956","GW","true","" +"NM-20904","","","394070","3856320","GW","false","" +"NM-17866","","","596649","3796360","GW","false","" +"TS-052c","","","435150","4040574","SP","true","Old stone biulding on east side of river." +"NM-22718","","","376344","3890370","GW","false","" +"NM-21306","","","407640","3869510","GW","false","" +"SO-0017","1N5E7.311","","365094","3799100","GW","true","" +"NM-04983","","","266425","3560250","GW","false","" +"SM-0181","","","520739","3626262","GW","true","From Hwy 82, head south on Eddy County 12 at Hope. After 2.8 mi, turn R onto EC 13 (Side Kick Rd). After 5.1 miles (from 82) turn R onto 2 track, well about 0.4 mile in." +"NM-20218","","","169496","3845490","GW","false","" +"MI-0220","","","585056","3936141","GW","true","Topographic situation: Plains" +"NM-02878","","","429642","3721430","GW","false","" +"NM-28430","S-2017-011","","613788","3586474","GW","true","" +"NM-24970","","","415411","3948590","GW","false","" +"NM-10621","","","283615","3647910","GW","false","" +"NM-27088","","","326654","3752870","GW","true","" +"NM-18514","","","631973","3807980","GW","false","" +"NM-22900","","","377059","3892700","GW","false","" +"NM-28888","","","324246","3771377","OT","false","" +"PC-151","","","368461","3906181","M","true","" +"NM-23707","","","393003","3912220","GW","false","" +"NM-18261","","","278086","3805120","GW","false","" +"NM-26843","","","548487","3686836","GW","true","" +"BW-0062","25S5E35.3","","367225","3550790","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-23730","","","197597","3917750","GW","false","" +"NM-23898","","","670861","3920020","GW","false","" +"SB-0851","Mayer 7","","453522","3545414","GW","true","~25 mi south of Alamogordo on Hwy 54, take Rt 506 east ~22 miles. At fork take F052 south. Somewhere along the way F052 turns into F037; continue south. At intersection with F001, turn south (right) on F001. Go past Hat Ranch on right to F021 (aka Dell City Road), follow until it joins with F018 and stay on F018 to residence off of F018, south of Cornudas Mtn and just before intersection of F011. From ranch HQ, take F018 2.25 mi east, go S (right) on F-019, go 1.5 mi to well on east side of road under old WM." +"QY-0494","16.35.24.134","","664599","3941240","GW","true","" +"AR-0177","E012","NMED 144","227638","4076990","GW","true","From Hwy 516, turn south onto Rd 350 and follow across river. Turn left onto Rd 3000, then left onto Rd 3285. Take right turn in Rd 3285 and follow to address on left." +"NM-26839","","","547949","3687897","GW","true","" +"NM-26094","","","406651","4020560","GW","false","" +"BC-0419","422","","","","GW","false","" +"TC-371","","","444857","4077854","GW","true","" +"NM-18030","","","595417","3799330","GW","false","" +"NM-18377","","","635146","3805770","GW","false","" +"NM-24374","","","397289","3935930","GW","false","" +"NM-11619","","","559601","3661270","GW","false","" +"NM-03889","","","250510","3523710","GW","false","" +"BW-0519","15S9E6.2","","395452","3656720","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27962","","","576318","3852880","GW","false","" +"SB-0682","TWDB 4915519","","388421","3520566","GW","false","" +"NM-04189","","","344096","3538770","GW","false","" +"NM-22184","","","191581","3888850","GW","false","" +"NM-25532","","","409323","3980040","GW","false","" +"NM-26577","","","445997","4067930","GW","false","" +"NM-23591","","","369354","3909270","GW","false","" +"NM-11481","","","558342","3659330","GW","false","" +"BC-0321","256","","376039","3899640","GW","true","" +"NM-02531","","","551568","3615770","GW","false","" +"EB-305","","","400377","3937211","GW","true","Old Bennett Ranch @286 Los Pinos Rd (Gate Code=""9247#""); Lalo Enriquez spare, 0.15 mi past Enriquez house on left/north side of track; OR enter from 27347 W. Frontage Rd. In field on north side of road and east of two houses. ~15' off road." +"NM-01167","","","659302","3872460","GW","false","" +"NM-18627","","","624111","3809560","GW","false","" +"NM-00146","","","570247","3563080","GW","false","" +"BC-0406","409","","","","GW","false","" +"NM-03423","S156","","350165","3894530","GW","false","" +"NM-20401","","","593056","3843520","GW","false","" +"NM-27016","","","326779","3777220","GW","true","" +"NM-07828","","","652268","3609480","GW","false","" +"NM-20293","","","663946","3842780","GW","false","" +"NM-21200","","","405534","3867010","GW","false","" +"NM-23879","","","407126","3918230","GW","false","" +"NM-11241","","","580781","3655110","GW","false","" +"TS-018","","","436738","4043777","SP","true","Piped spring just upstream from Dunn Bridge on East side." +"CX-0021","28N26E13.44","","578947","4057120","GW","true","" +"NM-18697","","","622943","3811060","GW","false","" +"NM-14304","","","651325","3702190","GW","false","" +"NM-13527","","","537887","3691710","GW","false","" +"TO-0201","6N6E2.122","","382758","3849720","GW","true","" +"NM-19646","","","258715","3833010","GW","false","" +"NM-02897","","","677229","3731750","GW","false","" +"NM-25679","","","404297","3987830","GW","false","" +"NM-08043","","","541404","3611230","GW","false","" +"NM-19565","","","639557","3830090","GW","false","" +"NM-02991","","","671204","3779790","GW","false","" +"NM-23547","","","369521","3908590","GW","false","" +"HS-090","TC-090","","289654","3667876","GW","true","Currently at Old Youth Center." +"NM-15944","","","207566","3757890","GW","false","" +"SB-0144","TWDB 4734602","","521670","3479036","GW","false","" +"NM-01310","","","368887","3907920","GW","false","" +"NM-00018","","","488265","3541150","GW","false","" +"TB-0122","","","419846","3721904","GW","true","From golf course S of Hwy 380 east of Carrizozo, turn S on Water Canyon Rd. Go around curve to W and S to water plant on right, across to old house to windmill. Go thru gate and fenced enclosure." +"NM-10645","","","550165","3645790","GW","false","" +"TC-432","","","445729","4086519","GW","true","Well is located at physical address (Ute Mtns. Farms 3870 Hwy 522 Costilla), west of concrete block building, and roughly 1 mile west of ranch house. Well is located in underground well house in Chicken Shack." +"NM-05942","","","333256","3572610","GW","false","" +"TO-0251","6N11E19.234","","424894","3843810","GW","true","" +"NM-15030","","","562098","3728330","GW","false","" +"NM-16122","","","218780","3763170","GW","false","" +"NM-10312","","","219048","3645320","GW","false","" +"NM-12079","","","556632","3667970","GW","false","" +"QY-0093","10.32.7.122","","628572","3886470","GW","true","" +"BC-0394","397","","","","GW","false","" +"NM-04306","","","349783","3543370","GW","false","" +"TO-0534","7N9E30.21","","405578","3852480","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-22450","","","374429","3887350","GW","false","" +"NM-27327","","","573638","3589860","GW","false","" +"NM-17999","","","662527","3799570","GW","false","" +"NM-02927","","","678236","3744000","GW","false","" +"NM-25367","","","393957","3970970","GW","false","" +"SD-0114","9N.8E.7.314","","396442","3875410","GW","true","" +"NM-17459","","","638776","3788360","GW","false","" +"NM-07962","","","558346","3610210","GW","false","" +"NM-02730","","","561028","3656910","GW","false","" +"NM-11085","","","561785","3651990","GW","false","" +"BC-0095","180","","375220","3892780","GW","true","" +"NM-00137","","","444147","3560610","GW","false","" +"SB-0563","TWDB 4854503","","468895","3448211","GW","false","" +"NM-11812","","","286825","3666460","GW","false","" +"NM-11853","","","285848","3666880","GW","false","" +"AR-0081","NMED 115","","238644","4086260","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2680 to address on right. Well is behind house, 1/2 fence, well in center." +"NM-26653","","","311261","4074900","GW","false","" +"NM-01221","","","602891","3885030","GW","false","" +"NM-13689","","","547464","3693820","GW","false","" +"WL-0231","","","400516","3992975","GW","true","From the Hernandez Community Center (19418 US 84), drive north about 1.5 miles, then turn east (right) on HWY 74. Drive 1.2 miles to T-intersection, turn right, this is still HWY 74. Drive 0.1 miles, well is on the east (left) side of the road. Well is behind building." +"NM-26768","","","164765","4099840","GW","false","" +"TV-290","","","444358","4028143","GW","true","" +"NM-27638","","","622397","3794230","GW","false","" +"NM-19019","","","644659","3816610","GW","false","" +"TV-177","COR-73","","440735","4025672","GW","true","182 Los Cordovas Road (no directions given)." +"NM-05481","","","662291","3566840","GW","false","" +"NM-22274","","","378619","3885610","GW","false","" +"NM-01621","","","395650","4020320","GW","false","" +"NM-09834","","","651943","3635720","GW","false","" +"WL-0313","","","353488","3900245","GW","true","drive to address, 5220 Corrales rd, Corrales, NM 87048" +"NM-21521","","","360492","3876610","GW","false","" +"NM-06678","","","563736","3586440","GW","false","" +"NM-11064","","","529273","3651310","GW","false","" +"NM-23120","","","350497","3896590","GW","false","" +"NM-19527","","","663801","3829470","GW","false","" +"EB-288","","","397330","3966980","GW","true","" +"SB-0646","TWDB 4915205","","388244","3523555","GW","false","" +"NM-08215","","","647492","3615070","GW","false","" +"NM-26459","","","223609","4066490","GW","false","" +"NM-04023","","","169612","3533150","GW","false","" +"WL-0083","","","164115","3535620","GW","true","Go to Playas training center. Going S on Smelter rd. go left (east) on Playas Blvd. Roughly 0.7 miles down the road make a right on dirt road. This road leads to well sites. Follow dirt road past first two well sites, go through gate and well #3 will be in fenced enclosure." +"EB-234","","","417991","3943045","GW","true","0.6 mi up Ravens Ridge Rd from Old Santa Fe Trail; left side of road ~20 ft" +"NM-14649","","","434557","3712960","GW","false","" +"NM-23793","","","643250","3915720","GW","false","" +"NM-20556","","","592405","3847550","GW","false","" +"NM-23508","","","228024","3910910","GW","false","" +"NM-00463","","","409420","3641300","GW","false","" +"NM-26601","","","198999","4074790","GW","false","" +"NM-11670","","","563588","3662100","GW","false","" +"NM-02685","","","559684","3647570","GW","false","" +"RA-051","","","422072","4004960","GW","true","At end of arroyo drive in." +"NM-09902","","","556562","3635200","GW","false","" +"NM-02080","","","265228","3559510","GW","false","" +"NM-06611","","","677943","3586520","GW","false","" +"NM-01347","","","632137","3914220","GW","false","" +"NM-13039","","","676161","3687230","GW","false","" +"NM-18572","","","622107","3808580","GW","false","" +"NM-11478","","","650967","3660250","GW","false","" +"QY-0749","7.27.4.224","","584204","3858360","GW","true","" +"NM-21008","","","354340","3859640","GW","false","" +"TC-239","","","423625","4095838","GW","true","" +"NM-26434","","","223806","4065650","GW","false","" +"NM-03703","","","165161","3484990","GW","false","" +"NM-09782","","","636693","3634690","GW","false","" +"TB-0077","","","405346","3679005","GW","true","Take Snake Tank Rd. off of Hwy 54 (just south of mile 89 on east side). Go through single green gate on north side of road. Gate is west of well on roadside before HQ. Stay on main road past turnoff to green tank well, 0.6 mi. Veer right past 2nd set of Tpost by liquid feeder. Stay NE to dip, Veer right SE at T to solar panels. Wellis on NE corner outside of fence. Watch your step." +"NM-27990","","","243973","3881380","GW","false","" +"NM-05658","","","260103","3570080","GW","false","" +"OG-0011","","","640011","3821007","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 4 miles on CR 17. Turn right north on CR Z drive 1 mile. Turn right east on CR18 drive 0.17 miles to well. Well is on S side of road." +"NM-14287","","","546916","3700250","GW","false","" +"NM-07158","","","357041","3596320","GW","false","" +"NM-14660","","","303553","3715050","GW","false","" +"NM-25773","","","663385","3996750","GW","false","" +"NM-02231","","","232861","3571280","GW","false","" +"NM-08075","","","205852","3616130","GW","false","" +"SM-0240","","","487388","3667486","GW","true","From the junction of Lincoln Canyon Road (County Rd E030; Picacho Rd?) and County Rd E028, go south on County Rd E028 for 7.5 miles, and turn right to Skeen Ranch Headquaters 0.7 miles. Go through gate, and follow two-track along Monument Canyon arroyo, past landing strip. At 2.7 miles, take left track across drainage, and go up hillside and over low saddle, and down into pine tree canyon. Go through gate at 1.1 miles, and at base of hill, take left branch. Follow down the drainage 1.1 miles, going through second gate at 0.2 miles. Well on right on hill slope, above a corral complex. Follow two-track to well." +"NM-15550","","","677737","3744580","GW","false","" +"NM-14154","","","550594","3698240","GW","false","" +"NM-03623","","","673443","4013100","GW","false","" +"NM-21535","","","347724","3877160","GW","false","" +"NM-14193","","","551831","3698710","GW","false","" +"NM-26959","PW-005","","369159","3906946","GW","true","" +"MI-0102","","","532822","3925465","GW","true","Topographic situation: Valley" +"NM-14253","","","629809","3700520","GW","false","" +"TV-188","SWS-18","","438841","4023087","GW","true","Take SR 68 to SR 96 and turn left (west) ~2 miles. House on right. Well behind house to NE. Casing accessible from surface." +"NM-20776","","","404043","3853040","GW","false","" +"NM-27171","","","487182","4073180","ES","true","" +"NM-07530","","","661519","3604970","GW","false","" +"QY-0412","12.35.29.143","","658657","3900870","GW","true","" +"NM-23062","","","616333","3895050","GW","false","" +"NM-22956","","","335396","3894250","GW","false","" +"BC-0264","268","","380005","3872930","GW","true","" +"NM-01595","","","662272","4007890","GW","false","" +"QY-1042","16.37.18.421","","676900","3942680","SP","true","" +"ED-0049","19S26E27.233","","559234","3610870","GW","true","" +"NM-27017","","","322354","3787480","GW","true","" +"NM-04109","","","344558","3534580","GW","false","" +"AB-0223","S279","","357935","3940970","GW","true","" +"TC-439","","","447741","4074692","GW","true","Well is located adjacent to Cathy Hope property north of Questa a few miles, on the west side of Hwy 522. The well is behind a locked gate, roughly 100 yards from the house." +"QY-0434","13.33.11.322","","644587","3914900","GW","true","" +"BC-0064","183","","379477","3888290","GW","true","" +"NM-08364","","","195356","3621040","GW","false","" +"NM-04847","","","267875","3558310","GW","false","" +"NM-24286","","","398544","3933390","GW","false","" +"NM-14026","","","618563","3697170","GW","false","" +"NM-06959","","","194958","3596040","GW","false","" +"NM-17783","","","535514","3793710","GW","false","" +"ED-0299","23S28E8.421","","584345","3576160","GW","true","" +"NM-06316","","","667845","3580860","GW","false","" +"EB-655","","","411529","3942122","GW","true","" +"SB-0453","TWDB 4820501","","447615","3506885","GW","false","" +"NM-12879","","","662118","3683820","GW","false","" +"NM-08078","","","538613","3611930","GW","false","" +"SA-0454","5S14W5.210","","192947","3756930","GW","true","" +"NM-18506","","","555865","3806750","GW","false","" +"NM-28318","PIL-12","","433600","4020950","SP","false","" +"NM-14747","","","645732","3718430","GW","false","" +"NM-26711","","","242272","4084690","GW","false","" +"NM-05944","","","250305","3574320","GW","false","" +"NM-10146","","","611366","3639430","GW","false","" +"AR-0002","","","226165","4076890","GW","true","From Farmington, take Hwy. 516 north towards Aztec, turn right on Rd. 3450 and an immediate left on Rd. 3050. Turn right on Rd. 3400 towards the river, left on Rd. 3394, and right on Rd. 3399 to address. Well is in yard under concrete blocks north of home." +"NM-09908","","","193695","3639880","GW","false","" +"NM-10856","","","412188","3648760","GW","false","" +"NM-20161","","","599639","3839270","GW","false","" +"NM-05362","","","332923","3565130","GW","false","" +"SA-0316","","","251636","3710522","GW","true","" +"SB-0476","TWDB 4824904","","498025","3500503","GW","false","" +"NM-04541","","","343808","3550790","GW","false","" +"NM-16825","","","652541","3779170","GW","false","" +"QY-0288","11.31.5.434","","620853","3896320","GW","true","" +"NM-11441","","","642798","3660160","GW","false","" +"NM-00661","","","627776","3688470","GW","false","" +"NM-05586","","","332788","3568060","GW","false","" +"ED-0215","22S27E15.333","","576735","3583640","GW","true","" +"NM-22555","","","391327","3888300","GW","false","" +"NM-25311","","","410176","3967830","GW","false","" +"NM-28172","","","384435","3875850","GW","false","" +"NM-18442","","","651225","3806700","GW","false","" +"NM-21342","","","397687","3870850","GW","false","" +"NM-16239","","","219630","3767580","GW","false","" +"NM-02377","","","154109","3588640","GW","false","" +"NM-17981","","","665707","3799670","GW","false","" +"NM-11764","","","667196","3665380","GW","false","" +"TV-208","COR-74","","440458","4025995","GW","true","" +"NM-04212","","","246457","3541810","GW","false","" +"QY-0757","7.28.9.222","","593864","3857000","GW","true","" +"NM-13055","","","552083","3685340","GW","false","" +"NM-20080","","","592709","3837600","GW","false","" +"NM-20236","","","569911","3840170","GW","false","" +"NM-15162","","","653725","3734540","GW","false","" +"NM-14434","","","405156","3704910","GW","false","" +"QY-0857","8.29.20.444","","601770","3862130","GW","true","" +"NM-22894","","","607688","3892450","GW","false","" +"AR-0184","F003","NMED 69","233356","4081800","GW","true","" +"NM-07464","","","185005","3607150","GW","false","" +"BC-0448","451","","340823","3885282","GW","false","" +"SO-0148","ESC-E02A","","326052","3777109","GW","true","" +"NM-11079","","","559398","3651880","GW","false","" +"TO-0314","7N9E17.221","","407560","3855750","GW","true","" +"SM-0215","","","475777","3668159","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Gate is locked (combo 9977). Cross yard to east, go through gate, and take faint and rough 2-track approximately 0.7 miles, and descend into Chivo Canyon. In bottom of canyon, take 2-track to right, and wind toward well on east side of canyon. Cannot drive all the way to well, will have to walk last bit. Look for windmill derrick." +"NM-13997","","","544147","3695960","GW","false","" +"NM-07598","","","579836","3605030","GW","false","" +"ED-0155","22S22E26.223","","531264","3581210","GW","true","" +"NM-22122","","","346424","3884260","GW","false","" +"AB-0201","S254","","379243","3945830","GW","true","" +"SB-0352","TWDB 4807713","","476591","3526700","GW","false","" +"TB-2009","","","592349","3762606","GW","true","" +"NM-15956","","","201539","3758390","GW","false","" +"NM-00828","","","446738","3716340","GW","false","" +"NM-00059","","","433990","3544970","GW","false","" +"NM-00824","","","443316","3715700","GW","false","" +"NM-18206","","","665867","3803650","GW","false","" +"NM-06806","","","322655","3590380","GW","false","" +"EB-384","","","403717","3936239","GW","true","NM State Penitentiary, north end, west well in line" +"NM-00475","","","409046","3643030","GW","false","" +"NM-20143","","","404431","3838950","GW","false","" +"NM-24705","","","405881","3943690","GW","false","" +"TO-0163","5N8E16.211","","398971","3836550","GW","true","" +"NM-13384","","","624042","3690990","GW","false","" +"NM-03924","","","347861","3523500","GW","false","" +"NM-27410","","","162125","3653250","GW","false","" +"NM-00716","","","444305","3695390","GW","false","" +"NM-27923","","","336086","3829980","GW","false","" +"TO-0270","7N7E34.144","","390880","3850510","GW","true","" +"NM-28366","","","472989","3534420","GW","false","" +"TB-0305","","","402690","3662803","GW","true","Going south on Hwy 54, veer right at bridge north of Tularosa. Go south and take first right. Well is under barrel near green pump house." +"NM-25603","","","321587","3984450","GW","false","" +"NM-09314","","","669693","3630370","GW","false","" +"NM-17842","","","627101","3796290","GW","false","" +"ED-0047","19S26E12.323","","562129","3615260","GW","true","" +"SV-0021","13 Canada Vista","","381333","3899133","GW","false","Unit 1 Lot 82" +"NM-22866","","","599799","3891990","GW","false","" +"NM-03358","","","257788","3883190","GW","false","" +"NM-22157","","","594800","3883770","GW","false","" +"SA-0180","","","247284","3755354","GW","true","From US 60, take CR 152 south 10.9 miles to Kiehne Ranch gate. Will need permission from owner and gate combo (13131 in March 2021). Once thru gate, go 5.2 miles to CN Lake well, go thru gate and go south 3.6 miles to gate. Go thru gate, turn L (east) drive 2.0 miles to fork in road, take right branch 0.7 miles to well. Gate at corral may be locked. May have to hop fence. Do not attempt to access well when roads are muddy." +"PP-008","PW-10","","434476","4003681","GW","true","" +"EB-486","","","396848","3965659","GW","true","" +"NM-17898","","","600860","3797020","GW","false","" +"NM-27630","","","651547","3794720","GW","false","" +"NM-27516","","","649143","3793110","GW","false","" +"OG-0074","","","651334","3808308","GW","true","" +"NM-17491","","","532824","3787940","GW","false","" +"NM-01435","","","184591","3943950","GW","false","" +"NM-18213","","","658947","3803310","GW","false","" +"NM-02700","","","161035","3654590","GW","false","" +"WL-0059","NM3533021","","269838","4013105","GW","true","Take Hwy 550 north past Cuba. Half mile past mile marker 103 turn right (east) on dirt road, turn left at Y in road to tan building (Lybrook water office). Well is in small tank well house 50 ft. south of Lybrook water office." +"NM-15284","","","558592","3737550","GW","false","" +"NM-15078","","","149963","3736110","GW","false","" +"NM-02536","","","540107","3616210","GW","false","" +"NM-15522","","","663808","3743960","GW","false","" +"NM-07308","","","225956","3602420","GW","false","" +"NM-17256","","","645808","3785440","GW","false","" +"QU-081","MW-15","","444390","4061608","GW","true","See Chevron map of monitoring wells. Further upslope from MW-7A/B/C and MW-A/B." +"NM-17812","","","590810","3794760","GW","false","" +"NM-12551","","","549181","3676310","GW","false","" +"NM-10493","","","430587","3644090","GW","false","" +"NM-12516","","","562748","3675800","GW","false","" +"SV-0029","08 Canon Escondi","","377677","3899606","GW","false","Unit 3 Lot 43" +"DE-0040","","","609228","3557712","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep" +"MI-0321","","","457162","3963968","SP","true","Topographic situation: Valley" +"NM-14994","","","618855","3727820","GW","false","" +"NM-17512","","","642342","3789460","GW","false","" +"BW-0100","8S11E6.441","","422483","3722150","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-0057","","","400392","3687006","GW","true","Off of Three Rivers Campground road, turn R just after railroad tracks. Follow good road thru gate, to first well on right side - at first water tank. Well is before drainage crossing. Well has bucket over top of casing and water is being piped from some other location." +"NM-00937","","","654503","3803500","GW","false","" +"NM-04285","","","230827","3544890","GW","false","" +"NM-25516","","","171015","3984960","GW","false","" +"NM-13243","","","610962","3688640","GW","false","" +"NM-16840","","","680304","3779850","GW","false","" +"NM-11255","","","668405","3656900","GW","false","" +"NM-13189","","","543101","3687300","GW","false","" +"NM-06223","","","673937","3579390","GW","false","" +"NM-26479","","","223841","4066730","GW","false","" +"NM-21054","","","387477","3861390","GW","false","" +"NM-03585","","","621780","3986280","GW","false","" +"NM-24611","","","292424","3943150","GW","false","" +"NM-19502","","","525425","3827220","GW","false","" +"NM-24515","","","406133","3938940","GW","false","" +"NM-18986","","","631856","3816200","GW","false","" +"NM-16262","","","540419","3764870","GW","false","" +"NM-13628","","","624051","3694280","GW","false","" +"DA-0120","25S2W9.44","","307244","3558080","GW","true","" +"NM-19998","","","401191","3835810","GW","false","" +"NM-27359","","","576698","3599430","GW","false","" +"NM-04808","","","240440","3558260","GW","false","" +"NM-04977","","","345448","3558650","GW","false","" +"NM-12004","","","559670","3666880","GW","false","" +"NM-13969","","","543942","3695650","GW","false","" +"SA-0083","","","206222","3773390","GW","true","From intersection of Greens Gap Rd and Rd to Pie Town (N) and Collinsville (S). Go 2.2 miles S to fork in road. Take right fork south for 0.8 mi, then go W about 1 mi to stocked well on hill equipped with solar panels and sub-pump. Steel pipe tower, dirt tank filled with over flow from metal tank." +"NM-14295","","","635217","3701640","GW","false","" +"EB-011","SF-25","","413539","3950220","GW","true","901 Rio Vista; west on Cam. dela Crucitas to 4-way stop, L, 1st hse on R; well on N side of house 12' from NW corner; padlocked (Roberts @104 Cam de la Crucitas, 87503). USGS Site ID from Anderholm, 1994 USGS WRI Report 94-4078" +"NM-08565","","","655480","3620800","GW","false","" +"AR-0205","A001","NMED 2","226744","4076920","GW","true","From Farmington, take Hwy 516 toward Aztec. Turn right on Rd 350 and follow across river. Turn left on Rd 3000, then turn at Rd 3291 and follow to address on left." +"NM-28256","Bartlett","","558738","3658860","GW","true","" +"TO-0438","10N7E11.111","","393231","3886000","GW","true","" +"NM-12905","","","555410","3682470","GW","false","" +"NM-28071","","","239776","3902270","GW","false","" +"NM-02247","M-119","","229333","3573685","GW","false","Start at the frontage road north of the I10, NM418 Exit. Go east for 6.8 miles. Go north at Baker Ranch (through gate at mile 0.6) for 0.8 miles. Go east through white gates and bear right to cattle guard at house. Well located at windmill near house." +"NM-13143","","","138345","3693200","GW","false","" +"NM-01950","","","121964","3550410","GW","false","" +"NM-22069","","","374348","3883310","GW","false","" +"SB-0053","TWDB 4717202","","505430","3510258","GW","false","" +"NM-28308","MLC_53","","439062","4037528","GW","false","" +"QY-0853","8.28.30.44","","590593","3860540","GW","true","" +"NM-02598","","","553350","3628320","GW","false","" +"QU-150","TPZ-5U","","444544","4060989","GW","true","" +"ED-0216","22S27E15.411","","577544","3584060","GW","true","" +"NM-17656","","","638443","3791830","GW","false","" +"NM-12479","","","562262","3674840","GW","false","" +"NM-17915","","","641801","3798170","GW","false","" +"MI-0091","","","474198","3923813","GW","true","Topographic situation: Valley" +"PC-132","PW-219","","368584","3911066","GW","true","" +"NM-17041","","","658173","3782500","GW","false","" +"NM-17383","","","604959","3786520","GW","false","" +"NM-11842","","","630016","3665680","GW","false","" +"BC-0356","348","","376781","3889459","GW","true","" +"WL-0235","","","338332","4012210","GW","true","From Cuba, go North on Hwy 550 for 3.6 miles, turn right (NE) toward Regina on Hwy 96. Stay on Hwy 96 for 20 miles to Gallina. About 1/4 mile past school, turn left (North) on FR 8. Drive 1.8 miles, look for address numbers 388 and 388A on sign on tree, turn right (east) onto dirt road. Drive 0.25 mile and turn left just before group of houses (go through gate). Drive 0.1 miles to Hershorn house (388A FR 8). Well is near goat pens." +"SM-1077","","","444060","3644834","SP","true","Hwy 82 to Chimney Springs Church Camp, north side of road, across from Cloud Country big entrance. Spring is just up the entrance road on west side. Climb up hillslope following water." +"NM-17619","","","640782","3791130","GW","false","" +"NM-14885","","","425684","3722660","GW","false","" +"NM-02222","","","262458","3569990","GW","false","" +"TB-0145","","","418144","3703942","GW","true","From Bataan WM east on 2 track to wilderness gate. WM is northeast of gate." +"NM-15807","","","671446","3751150","GW","false","" +"NM-08472","","","193323","3622800","GW","false","" +"NM-21233","","","346673","3868810","GW","false","" +"NM-11602","","","657494","3662510","GW","false","" +"NM-06937","","","674074","3592580","GW","false","" +"NM-24679","","","407006","3943000","GW","false","" +"NM-23236","","","392614","3898610","GW","false","" +"NM-05723","","","137664","3574060","GW","false","" +"NM-07196","","","211290","3600250","GW","false","" +"NM-26437","","","580448","4061670","GW","false","" +"NM-27534","","","577714","3776840","GW","false","" +"NM-12396","","","614057","3673860","GW","false","" +"SM-0131","","","448771","3635048","GW","true","" +"NM-04381","","","567825","3545420","GW","false","" +"NM-25858","","","296421","4002650","GW","false","" +"NM-00277","","","284715","3603880","GW","false","" +"NM-26285","","","672050","4041680","GW","false","" +"QY-0049","10.30.26.321","","615544","3880630","GW","true","" +"NM-24645","","","408279","3942030","GW","false","" +"NM-13943","","","544253","3695560","GW","false","" +"NM-01049","","","676147","3842010","GW","false","" +"TS-087b","","","425697","4011943","SP","true","Large cienega on north side of Glenwoody Bridge. Westernmost drainage." +"NM-22468","","","353346","3887850","GW","false","" +"SB-0503","TWDB 4836801","","444895","3475403","GW","false","" +"NM-18549","","","619303","3808200","GW","false","" +"NM-23699","","","373134","3912230","GW","false","" +"NM-21312","","","364301","3870240","GW","false","" +"NM-14697","","","290333","3717050","GW","false","" +"NM-27814","","","583498","3803350","GW","false","" +"BW-0773","1.10.7.18.331","","261204","3886300","GW","true","" +"PP-019","PW-17","","433660","4003887","GW","true","" +"NM-08130","","","301606","3614660","GW","false","" +"NM-03736","","","132714","3502400","GW","false","" +"TS-011","","","437933","4063122","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"NM-02951","","","682142","3752270","GW","false","" +"NM-16622","","","128066","3781640","GW","false","" +"EB-663","","","407765","3939546","GW","true","" +"NM-22961","","","348616","3894180","GW","false","" +"SB-0229","TWDB 4807113","","479344","3536762","GW","false","" +"TO-0162","5N8E16.111","","398119","3836590","GW","true","" +"NM-12716","","","674326","3681380","GW","false","" +"TB-0007","","","404909","3661699","GW","true","Off of Hwy 54, take east turn onto Bookout Road, just north of Pecan Orchard and vet clinic. Sign to Horseman's Park. Go about 1/2 mi, look for mailbox #56 on left, driveway is on right. Well is just south of white trailer. Sealed." +"BW-0047","22S5E33.244","","365423","3580490","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13873","","","543866","3695310","GW","false","" +"SB-0502","TWDB 4836601","","451895","3475984","GW","false","" +"NM-15335","","","362669","3739500","GW","false","" +"NM-12506","","","555425","3675350","GW","false","" +"NM-15345","","","678650","3741140","GW","false","" +"NM-11027","","","670822","3652230","GW","false","" +"NM-24803","","","152608","3951550","GW","false","" +"NM-16574","","","669779","3775280","GW","false","" +"NM-23014","","","357023","3894570","GW","false","" +"NM-23851","","","379411","3917200","GW","false","" +"NM-22254","","","602764","3884940","GW","false","" +"NM-12008","","","557986","3666900","GW","false","" +"BW-0299","16S8E17.132","","392425","3643660","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20301","","","407662","3841420","GW","false","" +"NM-24062","","","401159","3926180","GW","false","" +"NM-04205","","","243821","3541440","GW","false","" +"NM-01104","","","637910","3854700","GW","false","" +"NM-21579","","","381612","3877020","GW","false","" +"NM-18761","","","591517","3811310","GW","false","" +"NM-15946","","","677838","3755670","GW","false","" +"BW-0769","4.21.37.33.210","","672425","3590780","GW","true","" +"NM-08850","","","229237","3627000","GW","false","" +"NM-28075","","","233250","3902920","GW","false","" +"NM-01446","","","620938","3941580","GW","false","" +"EB-647","","","402308","3973185","GW","true","" +"NM-08882","","","609299","3624250","GW","false","" +"NM-17485","","","511539","3787800","GW","false","" +"NM-11715","","","558839","3662870","GW","false","" +"NM-12384","","","668536","3674870","GW","false","" +"NM-15603","","","649042","3745930","GW","false","" +"NM-23796","","","646530","3915800","GW","false","" +"DA-0136","26S1E35.33","","328235","3541650","GW","true","" +"NM-23864","","","642456","3918050","GW","false","" +"MI-0241","","","491447","3949335","GW","true","Topographic situation: Plateau" +"DA-0204","23S2E21.13","","335342","3574480","GW","true","" +"QY-0124","10.35.6.111","","657021","3888400","GW","true","" +"MI-0194","","","490087","3938419","GW","true","Topographic situation: Plateau" +"NM-20973","","","404299","3858020","GW","false","" +"NM-05808","","","606806","3570020","GW","false","" +"NM-19695","","","618038","3831390","GW","false","" +"NM-21901","","","245326","3884160","GW","false","" +"MI-0283","","","543126","3957642","GW","true","Topographic situation: Plateau" +"NM-03965","","","345391","3525350","GW","false","" +"NM-18510","","","657642","3808070","GW","false","" +"NM-13574","","","641970","3693760","GW","false","" +"NM-07034","","","318760","3594580","GW","false","" +"EB-174","","","411371","3948913","GW","true","1701 Purple Aster, off Highline Rd/WestAlameda; in front yard, off patio wall" +"NM-18556","","","669806","3809050","GW","false","" +"NM-24921","","","410524","3947680","GW","false","" +"NM-05879","","","334577","3571760","GW","false","" +"NM-00566","","","293273","3659500","GW","false","" +"NM-02481","NH-023","","276935","3608383","GW","false","" +"NM-03544","","","630864","3964990","GW","false","" +"NM-11056","","","662088","3652880","GW","false","" +"NM-09482","","","192192","3635080","GW","false","" +"NM-02887","","","148464","3730080","GW","false","" +"MI-0036","","","547838","3899957","GW","true","Topographic situation: Plains" +"NM-24824","","","675858","3946930","GW","false","" +"NM-12368","","","552254","3672870","GW","false","" +"NM-04190","","","345410","3538850","GW","false","" +"NM-27128","","","439779","4018780","GW","true","" +"NM-02833","","","550115","3700790","GW","false","" +"NM-06272","","","676747","3580240","GW","false","" +"NM-06405","","","365046","3582020","GW","false","" +"NM-13144","","","560169","3686680","GW","false","" +"NM-17160","","","632306","3784410","GW","false","" +"NM-03158","","","614902","3817210","GW","false","" +"AB-0019","S022","","322277","3809010","GW","true","" +"NM-28143","","","656886","3609300","GW","false","" +"NM-01631","","","428303","4024690","GW","false","" +"NM-13816","","","545547","3695040","GW","false","" +"NM-04775","M-067","","234021","3557570","GW","false","" +"NM-06457","","","527179","3582050","GW","false","" +"NM-17683","","","629742","3792020","GW","false","" +"NM-10626","","","542195","3645660","GW","false","" +"NM-21800","","","343385","3881510","GW","false","" +"SB-0650","TWDB 4915302","","389919","3525323","GW","false","" +"NM-00971","","","636655","3814060","GW","false","" +"NM-18029","","","595443","3799330","GW","false","" +"NM-20877","","","593749","3855390","GW","false","" +"QY-0923","8.34.19.422","","648506","3863280","GW","true","" +"HS-060","TC-060","","289623","3667882","GW","true","Daniels and McAdo Streets, in vacant parking lot. Well inside brown brick shed. Jesus Salayandia w/WWTP can unlock shed (first contact). Becky Rodriguez in Admin. Srvcs. Bldg. across street may also have key or possibly Ed Williams if not Becky." +"NM-02325","","","155603","3581800","GW","false","" +"TB-0240","","","431923","3714629","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west past the HQ and take the paved road. Bear to the left at the fence corner and stay to the south and take the first dirt road to the south to windmill east of pond." +"NM-28321","POT-06","","447759","4015821","GW","false","" +"TO-0220","6N8E2.111","","401517","3849400","GW","true","" +"NM-00715","","","474221","3695250","GW","false","" +"NM-26687","","","441027","4077240","GW","false","" +"SD-0323","13N.5E.31.341","","367725","3908090","GW","true","" +"NM-05463","","","222975","3569050","GW","false","" +"NM-17967","","","677673","3799670","GW","false","" +"NM-01183","","","634436","3876650","GW","false","" +"TB-0207","","","419510","3730240","GW","true","SNL called this well T-1981. Location by SNL was 419117 E, 3729557 N. This well used instead. From Carrizozo take Hwy 54 north to HQ entrance just south of Mile marker 128. Go west 1.5 mi to HQ. Power pole on N side before barn/gate. South side of road look for pump house - well is south by fence, rusty bucket on top." +"NM-17281","","","632183","3785830","GW","false","" +"NM-15012","","","475620","3727760","GW","false","" +"NM-03054","","","670902","3797750","GW","false","" +"SM-0090","","","438044","3609678","GW","true","Take Sunspot Hwy south of Timberon, R on Merlin, L on Hoover, follow to Sacramento River Rd. Just after first cattle guard on Sac River Rd, well is on left side (NE). About 100 ft off road, in a juniper tree. On National Forest Service land." +"NM-10728","","","266520","3649230","GW","false","" +"NM-10031","","","668383","3638510","GW","false","" +"NM-25704","","","248782","3992760","GW","false","" +"NM-02170","","","262544","3566940","GW","false","" +"NM-00342","","","449328","3621800","GW","false","" +"NM-16147","","","661735","3761450","GW","false","" +"SA-0315","","","256214","3715760","GW","true","" +"BW-0902","4.22.37.24.311","","676573","3583610","GW","true","" +"NM-21163","","","421830","3865070","GW","false","" +"NM-22616","","","662624","3889790","GW","false","" +"NM-03772","","","165713","3518440","GW","false","" +"NM-23860","","","631331","3917780","GW","false","" +"NM-23984","","","447862","3922090","GW","false","" +"AB-0164","S213","","363180","3893520","GW","true","" +"NM-22169","","","389605","3884070","GW","false","" +"NM-18560","","","657720","3808760","GW","false","" +"SB-0404","TWDB 4808904","","497679","3530275","GW","false","" +"NM-03914","","","302293","3524000","GW","false","" +"NM-10850","","","278145","3650810","GW","false","" +"NM-12381","","","654266","3674720","GW","false","" +"NM-05751","","","232955","3571840","GW","false","" +"NM-06207","","","674892","3578640","GW","false","" +"NM-06136","","","584122","3575870","GW","false","" +"NM-11172","","","643161","3654870","GW","false","" +"TO-0287","7N8E12.433","","404011","3856070","GW","true","" +"ED-0318","23S30E2.44","","608779","3577600","GW","true","" +"NM-00051","","","366094","3544500","GW","false","" +"NM-17934","","","615450","3797680","GW","false","" +"NM-26674","","","594262","4075980","GW","false","" +"NM-10800","","","650645","3649160","GW","false","" +"QY-0685","6.28.25.411","","598396","3841840","GW","true","" +"NM-03558","","","407949","3973190","GW","false","" +"QY-0829","7.32.36.211","","636890","3850990","GW","true","" +"NM-27588","","","655161","3793440","GW","false","" +"NM-18450","","","571193","3805740","GW","false","" +"BW-0906","4.24.28.36.144","","590226","3560310","GW","true","" +"SD-0385","11N.5E.34.243","","373568","3889000","SP","true","" +"NM-02335","","","334350","3578660","GW","false","" +"NM-09223","","","646399","3629070","GW","false","" +"TS-100","","","437002","4044339","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"NM-21872","","","348542","3881680","GW","false","" +"NM-20182","","","668036","3840420","GW","false","" +"TO-0228","6N8E15.444","","401233","3844880","GW","true","" +"NM-17400","","","441483","3786520","GW","false","" +"NM-26341","","","224340","4052120","GW","false","" +"NM-23919","","","423155","3919340","GW","false","" +"NM-23331","","","386617","3900250","GW","false","" +"NM-05241","","","172698","3566880","GW","false","" +"NM-09892","","","194339","3639640","GW","false","" +"NM-20235","","","604180","3840490","GW","false","" +"NM-10573","","","616645","3645710","GW","false","" +"NM-08890","","","561102","3623930","GW","false","" +"NM-28385","N-2016-077","","558182","3619515","GW","true","" +"ED-0338","25S21E10.223","","520262","3556860","GW","true","" +"NM-03870","","","236018","3523080","GW","false","" +"QU-058","","","446047","4066751","GW","true","From Hwy 522 going north, make left on Rt. 378 to #54 on left after sharp curve to right (north). Well to south of house, between house and attached barn, in a trench." +"NM-26250","","","643814","4036540","GW","false","" +"ED-0118","21S26E31.241","","563395","3589180","GW","true","" +"AH-099","HM-25","","437681","4041903","GW","true","" +"NM-00408","","","313368","3633160","GW","false","" +"NM-11680","","","558921","3662160","GW","false","" +"NM-24854","","","414029","3946070","GW","false","" +"SD-0146","10N.5E.11.424","","375436","3885410","GW","true","" +"NM-12953","","","680696","3685440","GW","false","" +"DE-0146","","","615024","3631498","GW","false","" +"DE-0026","","","591629","3610227","GW","true","From Carlsbad, drive east on the Hobbs Highway (HWY 62) to the junction of HWY 360 (UTM zone 13, easting 592,622 northing 3,599,545). Drive north on HWY 360 about 5.7 miles, then turn west (left) on CR 235 (Curry Comb Rd). Follow CR 235 (road curves quite a bit) ~4.3 miles, turn south (left) on dirt 2 track. Drive on 2 track about 0.4 miles to well located behind 3 large steel tanks." +"NM-09602","","","556193","3631500","GW","false","" +"NM-16724","","","154287","3782430","GW","false","" +"NM-19355","","","675124","3826410","GW","false","" +"NM-22159","","","265715","3886300","GW","false","" +"NM-14042","","","543318","3696540","GW","false","" +"NM-24336","","","398638","3934990","GW","false","" +"NM-05806","","","235994","3572840","GW","false","" +"NM-20338","","","621964","3842680","GW","false","" +"SB-0292","TWDB 4807509","","481933","3531769","GW","false","" +"NM-23121","","","350497","3896590","GW","false","" +"TO-0255","6N14E30.411","","454855","3841810","GW","true","" +"NM-05893","","","241966","3573880","GW","false","" +"NM-27599","","","678366","3794200","GW","false","" +"NM-05823","","","249455","3572770","GW","false","" +"SD-0215","10N.6E.34.221","","383117","3879890","GW","true","" +"NM-11545","","","605679","3660710","GW","false","" +"NM-21622","","","346878","3878420","GW","false","" +"NM-06537","","","263940","3586260","GW","false","" +"NM-00176","","","589953","3573090","GW","false","" +"NM-11181","","","563330","3653910","GW","false","" +"NM-08318","","","678857","3617120","GW","false","" +"NM-16137","","","663276","3761450","GW","false","" +"NM-18079","","","572487","3800140","GW","false","" +"NM-10334","","","626969","3642660","GW","false","" +"NM-20351","","","596017","3842530","GW","false","" +"NM-07344","","","620652","3600230","GW","false","" +"NM-06324","","","673490","3581080","GW","false","" +"NM-20707","","","661552","3853030","GW","false","" +"NM-06763","","","567224","3588250","GW","false","" +"NM-23231","","","233872","3901700","GW","false","" +"SD-0117","10N.4E.25.414","","365933","3881400","GW","true","" +"NM-28443","","","250737","3533102","GW","false","From the Columbus intersection of NM11 and NM9, go north on NM11 for 5.7 miles. Go east on Whirlwind/B005 for 1.4 miles. Go through gate on the south side of the road down a dirt road, over rise to abandoned holding pond. Well located 0.1 miles further up dirt road from NM-04044 near holding pond." +"NM-03958","","","256133","3526690","GW","false","" +"WL-0325","","","419450","3720026","GW","true","" +"NM-27845","","","267528","3811330","GW","false","" +"NM-11160","","","664679","3654710","GW","false","" +"NM-07338","","","184393","3604330","GW","false","" +"NM-16717","","","637248","3777330","GW","false","" +"NM-02227","M-110","","235134","3570881","GW","false","Go south on 11 and then west on Spruce for 0.6 miles. Go left (west) on NM418 for 3.1 miles. Go 0.2 miles north on a dirt road parallel to fencing. Well located Roth of the cattle pen." +"NM-25682","","","673074","3989320","GW","false","" +"NM-14644","","","209592","3717020","GW","false","" +"SO-0067","2N2W36.44","","316825","3803600","GW","true","" +"NM-07511","","","559690","3603500","GW","false","" +"NM-16415","","","552110","3770130","GW","false","" +"NM-14192","","","552502","3698710","GW","false","" +"NM-15506","","","133779","3749340","GW","false","" +"NM-23829","","","409427","3916200","GW","false","" +"NM-13966","","","544175","3695650","GW","false","" +"NM-16232","","","544222","3763350","GW","false","" +"NM-15827","","","141261","3756430","GW","false","" +"NM-06812","","","167811","3594470","GW","false","" +"NM-06897","","","573190","3590410","GW","false","" +"NM-17461","","","550582","3787340","GW","false","" +"NM-25731","","","465658","3992400","GW","false","" +"NM-04666","","","235474","3555930","GW","false","" +"NM-15696","","","536257","3746710","GW","false","" +"NM-16393","","","275557","3772010","GW","false","" +"NM-04148","","","197413","3539780","GW","false","" +"NM-07267","","","186274","3602630","GW","false","" +"GT-015","SWNM14-5","","163535","3649610","GW","true","" +"NM-18484","","","676623","3807880","GW","false","" +"MI-0062","","","521481","3916113","GW","true","Topographic situation: Plains" +"NM-23004","","","349362","3894550","GW","false","" +"NM-01642","","","294042","4036190","GW","false","" +"QY-0045","10.30.15.444","","614890","3883390","GW","true","" +"NM-07012","","","278745","3594770","GW","false","" +"QY-0587","5.29.18.243","","600395","3835680","GW","true","" +"SV-0096","37 Punta Linda","","379681","3901577","GW","false","Unit 3 Lot 142" +"NM-27965","","","551471","3857270","GW","false","" +"NM-19497","","","408237","3827580","GW","false","" +"NM-14408","","","540526","3703370","GW","false","" +"NM-22001","","","612897","3882500","GW","false","" +"NM-01339","","","247004","3914990","GW","false","" +"NM-01827","","","117966","3530650","GW","false","" +"NM-15373","","","594655","3740120","GW","false","" +"NM-13730","","","546455","3694250","GW","false","" +"NM-15766","","","667360","3751100","GW","false","" +"NM-02382","","","223360","3586890","GW","false","" +"NM-10036","","","561463","3637110","GW","false","" +"NM-15485","","","648152","3743640","GW","false","" +"NM-17862","","","272379","3798570","GW","false","" +"NM-01750","","","169435","3492160","GW","false","" +"EB-206","","","404542","3925265","GW","true","111 San Marcos Rd (East off SR14); west side of San Marcos Arroyo; in pit behind house on upper terrace" +"NM-19388","","","619302","3826140","GW","false","" +"NM-23654","","","358491","3910760","GW","false","" +"NM-03644","","","674686","4040560","GW","false","" +"SV-0112","24 Via Entrada","","379489","3898392","GW","false","Unit 2 Lot 9" +"EW-0003","","","419127","4004483","SP","false","" +"NM-08558","","","657095","3620790","GW","false","" +"NM-01800","","","118087","3527530","GW","false","" +"NM-01793","","","118734","3526710","GW","false","" +"TV-140","","","437092","4021843","GW","true","From SR 68, go left (west) on SR 96 ~3 miles. Private road to left (south). Follow road to top, go right (west) across arroyo to Sagebrush Fairy Lane. House to right (north). Well south of house, 10 meters uphill; look for casing." +"NM-12641","","","676710","3679790","GW","false","" +"NM-11071","","","671300","3653130","GW","false","" +"NM-07603","","","206141","3609120","GW","false","" +"NM-28150","","","654588","3611170","GW","false","" +"NM-18798","","","474380","3811420","GW","false","" +"ED-0030","17S28E14.22","","580409","3634010","GW","true","" +"NM-11203","","","610155","3654690","GW","false","" +"NM-15510","","","137433","3749230","GW","false","" +"NM-04219","","","235800","3542170","GW","false","" +"NM-01317","","","370506","3908620","GW","false","" +"SA-0004","SA-4_R00","","257620","3794542","GW","true","From barn, go north ~0.5 mi to earth tank, then east to well at north end of pivot sprinkler." +"NM-05353","","","247290","3566810","GW","false","" +"NM-10917","","","553678","3649170","GW","false","" +"NM-06830","","","223375","3593150","GW","false","" +"SB-0504","TWDB 4837301","","460599","3480719","GW","false","" +"NM-08584","","","190981","3624630","GW","false","" +"NM-00081","","","357979","3551510","GW","false","" +"NM-13060","","","553324","3685380","GW","false","" +"TB-2008","","","499999","3595859","GW","true","" +"NM-19087","","","668817","3818520","GW","false","" +"QY-0237","11.30.29.221","","611359","3891100","GW","true","" +"NM-16235","","","365014","3764310","GW","false","" +"NM-20566","","","584496","3847750","GW","false","" +"NM-16287","","","658478","3767440","GW","false","" +"NM-22643","","","352747","3889890","GW","false","" +"NM-14684","","","135493","3721280","GW","false","" +"NM-11666","","","671124","3663170","GW","false","" +"NM-26173","","","242077","4030220","GW","false","" +"NM-01936","","","345362","3542600","GW","false","" +"NM-00502","","","322104","3648970","GW","false","" +"NM-19366","","","615740","3825660","GW","false","" +"NM-27821","","","588853","3804260","GW","false","" +"NM-18550","","","666566","3808870","GW","false","" +"SM-0066","","","449126","3649265","GW","true","In 16 Springs Canyon, turn S onto Bell Canyon. About 0.5 mi on left, turn onto Big Springs Road. Go past 2 trailers, house is at end of road (Denney on gate). Well is up the road about 100 yards in middle of road. Has green cap." +"NM-27819","","","593120","3804180","GW","false","" +"BC-0202","202","","385689","3889390","GW","true","" +"NM-08370","","","558699","3616610","GW","false","" +"PC-083","PW-148","","367852","3907300","GW","true","" +"NM-21033","","","604085","3860120","GW","false","" +"NM-15300","","","192289","3742760","GW","false","" +"PC-006","PW-018","","369283","3907967","GW","true","" +"NM-08101","","","318693","3613930","GW","false","" +"NM-15517","","","192774","3747410","GW","false","" +"MI-0129","","","469273","3929837","GW","true","Topographic situation: " +"NM-04052","","","183263","3535430","GW","false","" +"NM-27518","","","639060","3771580","GW","false","" +"NM-21095","","","212358","3866570","GW","false","" +"NM-05311","","","223223","3566640","GW","false","" +"NM-18972","","","661810","3816490","GW","false","" +"SV-0009","13 Calle Lomita","","377000","3900421","GW","false","Unit 3 Lot 79" +"NM-18855","","","584741","3812660","GW","false","" +"SB-0246","TWDB 4807303","","485962","3539922","GW","false","" +"NM-10063","","","561304","3637570","GW","false","" +"NM-20156","","","612515","3839390","GW","false","" +"SB-0206","TWDB 4806305","","476298","3536522","GW","false","" +"NM-27761","","","588286","3794060","GW","false","" +"TC-356","","","446758","4067912","GW","true","" +"NM-11904","","","559058","3665300","GW","false","" +"NM-14019","","","656865","3698180","GW","false","" +"BW-0254","14S10E32.121","","406277","3658420","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DE-0008","","","633218","3564689","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Park at NW corner of parking lot off Hwy 128, walk north between barb wire fence and chain link tank enclosure. Well is at NW corner behind enclosure w/old metal tanks." +"NM-11638","","","563540","3661480","GW","false","" +"NM-24171","","","405913","3930010","GW","false","" +"NM-00630","","","663387","3674500","GW","false","" +"BC-0165","145","09 Prado Vista","378478","3898273","GW","true","09 Prado Vista; Unit 2 Lot 31 (aka Sandoval County 2 in Bernalillo County database)" +"NM-24120","","","623809","3928950","GW","false","" +"NM-23679","PW-065","","372716","3911250","GW","false","" +"NM-19616","","","666111","3831390","GW","false","" +"NM-26985","","","295295","3772140","GW","true","" +"NM-12279","","","546020","3671580","GW","false","" +"NM-12686","","","553827","3678730","GW","false","" +"BC-0213","213","","384518","3889540","GW","true","" +"NM-12091","","","629422","3669400","GW","false","" +"NM-10620","","","543805","3645640","GW","false","" +"NM-10668","","","542116","3645880","GW","false","" +"NM-05835","","","250325","3573000","GW","false","" +"NM-16289","","","304020","3767770","GW","false","" +"NM-19836","","","157078","3839280","GW","false","" +"JM-045","","","312589","3640874","GW","true","Well is to west of Upham site along the road." +"WL-0339","","","398696","3940087","GW","false","Nav system will get you to well residence address +Will is located in back yard, under 24"" corrugated manhole. Well and MP are in pit. +Owner will open pit." +"NM-19314","","","654264","3825200","GW","false","" +"NM-18512","","","156795","3812990","GW","false","" +"NM-03288","","","668429","3853710","GW","false","" +"NM-25513","","","408080","3978550","GW","false","" +"NM-15845","","","621267","3750800","GW","false","" +"DE-0329","","","674364","3589763","GW","false","" +"NM-23523","","","367721","3908120","GW","false","" +"NM-25635","","","466878","3984200","GW","false","" +"NM-18362","","","588544","3804530","GW","false","" +"NM-02207","","","335758","3567120","GW","false","" +"BW-0064","26S5E21.4","","364734","3544360","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26300","","","181298","4047550","GW","false","" +"NM-08095","","","309154","3614050","GW","false","" +"NM-07255","","","407405","3597750","GW","false","" +"NM-07200","","","574137","3596490","GW","false","" +"NM-26240","","","253230","4038160","GW","false","" +"NM-07631","","","552039","3605370","GW","false","" +"NM-08489","","","587928","3618680","GW","false","" +"TO-0149","5N8E10.331","","399748","3837080","GW","true","" +"NM-00948","","","642254","3807660","GW","false","" +"NM-00253","La Huerta #13","","571310","3589740","GW","true","" +"NM-16215","","","226658","3766360","GW","false","" +"NM-27305","","","358009","3585390","GW","false","" +"BW-0185","14S9E22.122","","399777","3661740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21212","","","396328","3867320","GW","false","" +"NM-06358","","","257069","3583340","GW","false","" +"NM-19183","","","273171","3822660","GW","false","" +"NM-19674","","","532674","3830350","GW","false","" +"NM-15081","","","596117","3730280","GW","false","" +"NM-07723","","","595723","3607020","GW","false","" +"NM-21798","","","368409","3880720","GW","false","" +"NM-07261","","","279566","3600020","GW","false","" +"NM-08662","","","650587","3622260","GW","false","" +"QY-0845","8.27.22.23","","585343","3862870","GW","true","" +"NM-21094","","","271591","3864870","GW","false","" +"NM-18505","","","659276","3807970","GW","false","" +"NM-09169","","","652987","3628770","GW","false","" +"NM-19750","","","566944","3831830","GW","false","" +"NM-15158","","","564153","3732850","GW","false","" +"UC-0224","","","643999","4069569","GW","false","" +"NM-26754","","","674853","4090700","GW","false","" +"NM-05364","","","241582","3567050","GW","false","" +"NM-23018","","","393344","3894100","GW","false","" +"NM-07854","","","680178","3610400","GW","false","" +"NM-08944","","","228948","3627870","GW","false","" +"NM-15017","","","150515","3734270","GW","false","" +"NM-17220","","","657204","3785320","GW","false","" +"SM-0158","","","501621","3620389","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-15200","","","651565","3736020","GW","false","" +"NM-06488","","","325395","3584140","GW","false","" +"TV-269","","","446417","4020675","GW","true","From 518 South, take right @ E. Camino Abajo de la Loma, switchbacking NW to first left on Valle del Rito Road. Crossing the river valley, take left @ T onto Torrez Road. Follow around footslope, thru green clay. Passing another intersection on left (Torres Rd), find a center road thru a series of forks into driveways. Pass ""No Trespassing"" sign and take left fork of driveway. Pete's house is on right. Take driveway on left going uphill to a construction site w/well vault @ south of clearing." +"NM-03286","","","360185","3853230","GW","false","" +"NM-26872","PW-28","","438232","4002222","GW","true","" +"NM-23064","","","350840","3895560","GW","false","" +"NM-18230","","","603530","3802900","GW","false","" +"NM-01718","","","314357","4075880","GW","false","" +"NM-16838","","","266463","3780860","GW","false","" +"NM-07340","","","279319","3601840","GW","false","" +"PB-0015","","","378860","3937486","GW","true","In field behind Post Office and three-apartment building. Access field from Calle Esquela Vieja thru gate. Well is white pvc in field surrounded by cement blocks. Well head is in vault 5' away." +"NM-26788","","","650685","3911860","GW","false","" +"NM-00209","","","469707","3578550","GW","false","" +"NM-18342","","","635031","3804880","GW","false","" +"NM-24082","","","413239","3926820","GW","false","" +"SB-0015","TWDB 4709203","","504047","3523810","GW","false","" +"NM-25048","","","675535","3953120","GW","false","" +"HS-041","TC-041","","289822","3667773","GW","true","SW corner of Pershing and Broadway, in the parking lot" +"NM-24257","","","676697","3933790","GW","false","" +"NM-02900","","","674663","3734070","GW","false","" +"NM-20914","","","667698","3857550","GW","false","" +"NM-14668","","","555799","3713570","GW","false","" +"NM-23510","","","372061","3907840","GW","false","" +"NM-19761","","","581100","3832130","GW","false","" +"NM-11862","","","638021","3665980","GW","false","" +"SB-0921","","","513524","3552015","GW","false","From Queen, NM, go S/SW on 137 for 12.6 mi (follow signs for Dog Canyon Campground, but donโ€™t go to campground). Turn right on Dell City Rd/G014/415 at El Paso Gap, go N on G014 for 2.2 mi, turn left on unnamed dirt road, cross arroyo. Well is at end of road. Tank is labelled Deep Hole Well. From Debbie Hughes property @ 163 Canyon Trail Rd, go N on Trail Canyon Rd/417 1.7 mi, turn left on NM137 N, go 3.2 mi. Road makes hard right turn, then HARD left onto Dell City Rd/G014/415 (basically a U-turn), go N on G014 for 2.2 mi, turn left on unnamed dirt road, cross arroyo. Well is at end of road. Tank is labelled Deep Hole Well." +"NM-10992","","","558759","3650270","GW","false","" +"QY-0969","9.31.8.122","","620638","3876670","GW","true","" +"MI-0075","","","453125","3919357","GW","true","Topographic situation: Hilly" +"NM-02375","","","224228","3586130","GW","false","" +"NM-04380","","","134706","3551610","GW","false","" +"QY-0043","10.30.14.232","","616051","3884320","GW","true","" +"NM-05711","","","236867","3571180","GW","false","" +"NM-21167","","","668005","3867110","GW","false","" +"NM-23280","","","620222","3899320","GW","false","" +"NM-26407","","","302618","4061440","GW","false","" +"NM-12045","","","641044","3668490","GW","false","" +"NM-11512","","","403188","3660150","GW","false","" +"NM-03803","","","117450","3525070","GW","false","" +"NM-18909","","","664013","3814560","GW","false","" +"NM-18092","","","664209","3802020","GW","false","" +"NM-16814","","","673959","3779360","GW","false","" +"NM-12827","","","656596","3682830","GW","false","" +"NM-28104","","","231847","3909730","GW","false","" +"EB-484","","","395955","3966140","GW","true","" +"NM-21658","","","355609","3878880","GW","false","" +"SO-0061","2N1W13.22","","326168","3808350","GW","true","" +"NM-24493","","","405221","3938400","GW","false","" +"QY-0634","5.29.8.422a","","602029","3837180","GW","true","" +"NM-21451","","","399791","3873140","GW","false","" +"NM-07409","","","543922","3601360","GW","false","" +"NM-27438","","","413210","3687710","GW","false","" +"NM-13745","","","136132","3701220","GW","false","" +"NM-13137","","","552490","3686580","GW","false","" +"NM-17105","","","649858","3783560","GW","false","" +"NM-04239","","","131329","3546180","GW","false","" +"AR-0198","J004","","236949","4085450","GW","true","" +"BW-0380","17S9E35.332","","406739","3628180","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05645","","","257118","3570150","GW","false","" +"NM-12971","","","660668","3685460","GW","false","" +"TB-0219","","","419875","3719595","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road 1.9 miles. Take road to west 0.3 miles and turn south 0.5 miles then bear right (east) to power pole by dirt mound. Casing is under metal box at base of pole." +"NM-06881","","","674224","3591470","GW","false","" +"TO-0388","9N6E21.23","","380766","3873140","GW","true","" +"NM-00031","26.18.29.113","","487456","3542530","GW","false","" +"NM-02843","","","542953","3703130","GW","false","" +"NM-27590","","","672925","3793730","GW","false","" +"NM-13734","","","550304","3694330","GW","false","" +"NM-23219","","","375214","3898340","GW","false","" +"MI-0090","","","473166","3916669","GW","true","Topographic situation: Valley" +"NM-03267","","","578987","3844870","GW","false","" +"NM-01373","","","665808","3924490","GW","false","" +"NM-15315","","","184423","3743270","GW","false","" +"ED-0247","22S27E34.111","","576753","3579980","GW","true","" +"NM-07396","","","204304","3605260","GW","false","" +"NM-25902","","","672794","4004240","GW","false","" +"NM-12438","","","669761","3675900","GW","false","" +"NM-18653","","","623974","3810330","GW","false","" +"NM-27338","","","367676","3593110","GW","false","" +"NM-09846","","","555942","3634460","GW","false","" +"NM-16904","","","640147","3780490","GW","false","" +"NM-23407","","","295778","3904590","GW","false","" +"NM-13673","","","664382","3695320","GW","false","" +"NM-14303","","","679736","3702340","GW","false","" +"NM-03863","","","349473","3520490","GW","false","" +"AB-1004","S072","","360135","3866570","SP","true","" +"ED-0203","22S26E35.222","","569873","3579950","GW","true","" +"NM-03954","","","158034","3529300","GW","false","" +"NM-03824","","","233821","3521600","GW","false","" +"NM-19954","","","637251","3836090","GW","false","" +"NM-27577","","","649143","3793110","GW","false","" +"NM-18015","","","550598","3798680","GW","false","" +"SB-0064","TWDB 4717213","","504922","3508417","GW","false","" +"BW-0756","2.11.31.20.442","","619380","3892850","GW","true","" +"NM-04903","","","238959","3559810","GW","false","" +"NM-16565","","","672775","3775450","GW","false","" +"NM-22684","","","347426","3890530","GW","false","" +"QU-066","","","460148","4062436","GW","true","From Hwy. 522, take Rt. 38 east towards Red River. Fawn Lakes campground is second campground on right. Follow Fawn Lakes campground road to roundabout. Well is next to picnic table of Site 11. Well is locked with Molycorp lock." +"NM-17452","","","650242","3788350","GW","false","" +"NM-21453","","","400781","3873250","GW","false","" +"NM-02437","M-159","","215505","3598680","GW","false","" +"NM-19798","","","582470","3832700","GW","false","" +"EB-182","","","406884","3949499","GW","true","~100 yds down north loop of Tierra Grande, ~15' S of road" +"NM-24158","","","404650","3929650","GW","false","" +"NM-23082","","","350528","3895980","GW","false","" +"NM-16795","","","673118","3779060","GW","false","" +"NM-27565","","","633166","3792340","GW","false","" +"NM-24708","","","461015","3943400","GW","false","" +"NM-03612","","","602308","4003130","GW","false","" +"NM-17127","","","637256","3783770","GW","false","" +"NM-26583","","","586457","4068690","GW","false","" +"NM-21079","","","402894","3862070","GW","false","" +"NM-11685","","","279234","3664560","GW","false","" +"BW-0476","10S5E17.431","","365467","3700480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05602","","","160347","3572500","GW","false","" +"NM-21959","","","387677","3881750","GW","false","" +"BC-0369","373","","366480","3880285","GW","false","" +"NM-04442","","","238919","3550070","GW","false","" +"NM-10576","","","554998","3645200","GW","false","" +"NM-10630","","","674677","3647180","GW","false","" +"NM-09970","","","408984","3636290","GW","false","" +"NM-24106","","","448197","3927690","GW","false","" +"NM-21301","","","185039","3874230","GW","false","" +"NM-21323","","","346731","3870890","GW","false","" +"DA-0124","25S3E22.121","","346550","3555440","GW","true","" +"NM-04792","","","572113","3554780","GW","false","" +"TO-0448","10N7E35.231","","394047","3879260","GW","true","" +"BW-0689","4.6.1.36.233","","334122","3735370","GW","true","" +"NM-21197","","","558599","3866490","GW","false","" +"SD-0370","10N.5E.15.212","","373522","3884900","SP","true","" +"NM-10610","","","552971","3645590","GW","false","" +"NM-22917","","","184020","3897510","GW","false","" +"NM-10743","","","651390","3648000","GW","false","" +"NM-15109","","","647295","3732500","GW","false","" +"NM-10029","","","596600","3637300","GW","false","" +"NM-25571","","","320977","3983090","GW","false","" +"NM-24809","","","289351","3947350","GW","false","" +"AH-066","AH-23","","442055","4043371","GW","true","" +"NM-13656","","","542299","3693400","GW","false","" +"CX-0025","28N26E24","","578581","4056340","GW","true","" +"NM-04316","","","674937","3544200","GW","false","" +"SB-0624","TWDB 4907202","","386331","3540699","GW","false","" +"NM-27022","","","322854","3769340","GW","true","" +"NM-07980","","","203592","3614720","GW","false","" +"NM-11069","","","551668","3651470","GW","false","" +"TO-0484","1S13E14.143","","449094","3787320","GW","true","" +"NM-26940","","","356232","3964360","GW","true","" +"PC-092","PW-165","","365096","3908869","GW","true","" +"NM-26757","","","452466","4089770","GW","false","" +"NM-12674","","","649551","3679890","GW","false","" +"SM-5005","","","684709","3763959","GW","true","" +"NM-18404","","","603654","3805580","GW","false","" +"NM-22651","","","384711","3889550","GW","false","" +"NM-03475","","","391596","3914890","GW","false","" +"NM-25111","","","322276","3956710","GW","false","" +"NM-25517","","","661536","3980320","GW","false","" +"NM-25180","","","235207","3963660","GW","false","" +"NM-11970","","","660240","3667390","GW","false","" +"NM-05698","","","235242","3571130","GW","false","" +"NM-21772","","","353711","3880630","GW","false","" +"NM-01756","","","169933","3497050","GW","false","" +"WL-0137","","","441259","4050161","GW","true","From the junction of Hwy 522 & 64 (road to Rio Grande Gorge bridge), drive north on 522 ~11 miles. Ignore first turn to San Cristobal (w/sign to D.H. Lawrence Ranch) and take the second turn (east, right) to San Cristobal on B0009 (aka FR 493 or SR 493). Drive ~0.3 miles and turn south (right) onto Spotted Owl Rd. Drive ~0.1 mile, the Allen home is on the left side of the road. OK to park in driveway. Well behind house to east." +"AB-0209","Webster W1","","358297","3893530","GW","true","" +"MI-0051","","","437516","3909818","GW","true","Topographic situation: " +"NM-15318","","","668068","3740150","GW","false","" +"NM-16937","","","665908","3781090","GW","false","" +"NM-18087","","","652921","3801270","GW","false","" +"NM-25813","","","478576","3997320","GW","false","" +"NM-27998","","","252775","3882080","GW","false","" +"NM-14916","","","675295","3724840","GW","false","" +"NM-20970","","","324991","3859130","GW","false","" +"NM-21728","","","234914","3882790","GW","false","" +"NM-06687","","","568907","3586690","GW","false","" +"NM-04342","","","263741","3546290","GW","false","" +"BC-0136","119","","381893","3891130","GW","true","" +"BW-0098","8S11E6.431","","422079","3722150","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14804","","","628048","3720240","GW","false","" +"BW-0788","1.9.8.3.300","","256011","3880070","GW","true","" +"NM-20522","","","577564","3846760","GW","false","" +"LC-037","","","400951","3937549","SP","true","Approximately 20 m upstream from LC-005." +"NM-01863","","","345576","3532410","GW","false","" +"EB-095","","","415370","3955370","GW","true","" +"NM-07290","","","200228","3602640","GW","false","" +"NM-05148","","","151303","3565750","GW","false","" +"NM-12771","","","556951","3680010","GW","false","" +"NM-08115","","","242885","3615750","GW","false","" +"NM-14379","","","542958","3702020","GW","false","" +"NM-20120","","","397019","3838350","GW","false","" +"NM-27818","","","650240","3804910","GW","false","" +"TO-0092","4N8E13.333","","402416","3825630","GW","true","" +"EB-048","","","415750","3940585","GW","true","Sebastian De Vargas Grant" +"NM-06942","","","571694","3591390","GW","false","" +"NM-23254","","","377981","3898920","GW","false","" +"NM-17586","","","679313","3791480","GW","false","" +"NM-16981","","","657015","3781280","GW","false","" +"NM-19592","","","625238","3830100","GW","false","" +"NM-13845","","","544151","3695160","GW","false","" +"NM-11327","","","478009","3656590","GW","false","" +"NM-01829","","","340498","3525180","GW","false","" +"TO-0156","5N8E12.111","","403122","3838130","GW","true","" +"NM-21381","","","378604","3871950","GW","false","" +"NM-10199","","","337536","3640810","GW","false","" +"NM-00430","","","673347","3637150","GW","false","" +"TO-0430","9N12E16.213","","439059","3874380","GW","true","" +"DA-0032","20S3E31.322","","342607","3599660","GW","true","" +"NM-28453","","","477469","4072530","GW","true","" +"NM-15785","","","655449","3750350","GW","false","" +"NM-23517","","","372947","3907920","GW","false","" +"EB-211","SF-45","","407265","3926321","GW","true","#19 Spruce Street; new WM next to old frame site" +"NM-20957","","","613154","3857700","GW","false","" +"NM-03001","","","659146","3780900","GW","false","" +"NM-11555","","","619964","3660960","GW","false","" +"NM-18953","","","665654","3815600","GW","false","" +"NM-28102","","","227590","3908270","GW","false","" +"NM-11267","","","557250","3655470","GW","false","" +"NM-09651","","","548077","3632020","GW","false","" +"QY-0754","7.28.31.111","","589615","3850490","GW","true","" +"NM-15718","","","204934","3751800","GW","false","" +"NM-25967","","","652761","4007780","GW","false","" +"BC-0120","105","","377244","3872350","GW","true","" +"NM-07928","","","159736","3615470","GW","false","" +"TB-2004","","","414484","3727240","M","true","Just west of Carrizozo, precip collector is 50m southeast (behind) visitors center in large water cooler in pile of rocks. Send copy of project letter to Najer Alber 12/16/2014. KP" +"NM-17776","","","655716","3794720","GW","false","" +"NM-13345","","","553275","3689690","GW","false","" +"NM-16641","","","303025","3776630","GW","true","" +"NM-18040","","","650929","3800620","GW","false","" +"NM-11129","","","556150","3652660","GW","false","" +"WL-0044","","","433721","4037446","GW","true","From Taos, take 522 north, make a left at 64 towards the Rio Grande Gorge bridge. Cross the bridge and pass rest area. Property is on the right through gates at 24233 West Hwy 64. Well is in field near power pole." +"NM-27535","","","631274","3778760","GW","false","" +"NM-00338","","","272583","3623230","GW","false","" +"NM-09626","","","196525","3636210","GW","false","" +"NM-02246","","","365930","3570890","GW","false","" +"NM-21988","","","372893","3882500","GW","false","" +"NM-00453","","","312647","3640820","GW","false","" +"NM-16848","","","672610","3780230","GW","false","" +"EB-446","","","414611","3931003","GW","true","New development test well" +"BW-0004","19S5E21.111","","364650","3613070","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20710","","","380828","3851860","GW","false","" +"SV-0130","09 Vista de Sant","","379292","3900467","GW","false","Unit 1 Lot 30" +"NM-00246","","","576453","3587080","GW","false","" +"NM-14118","","","537322","3697530","GW","false","" +"EB-434","","","412808","3949782","GW","true","USGS Site ID from Anderholm, 1994 USGS WRI Report 94-4078" +"NM-12671","","","556986","3678410","GW","false","" +"NM-11536","","","540577","3660130","GW","false","" +"NM-25637","","","412326","3984700","GW","false","" +"NM-03182","","","670278","3826470","GW","false","" +"NM-09633","","","200119","3636230","GW","false","" +"NM-26061","","","670179","4019080","GW","false","" +"NM-08550","","","259345","3622370","GW","false","" +"NM-12729","","","547224","3679470","GW","false","" +"NM-08057","","","678384","3612990","GW","false","" +"NM-00202","","","575819","3576900","GW","false","" +"NM-01970","","","132470","3553020","GW","false","" +"NM-20893","","","142261","3862410","GW","false","" +"NM-01714","","","156536","4079510","GW","false","" +"NM-02726","","","562541","3655500","GW","false","" +"NM-27544","","","642192","3784150","GW","false","" +"NM-28246","","","201396","4079990","GW","false","" +"QY-1003","9.36.19.334","","667083","3872900","GW","true","" +"NM-16918","","","590343","3779570","GW","false","" +"NM-08951","","","241579","3627720","GW","false","" +"BW-0597","9S8E5.4","","395428","3713120","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03761","","","174029","3513050","GW","false","" +"NM-25984","","","622625","4008510","GW","false","" +"EB-488","","","400130","3957460","GW","true","" +"NM-17721","","","546210","3791940","GW","false","" +"CX-0143","59","","503394","4030340","GW","true","6 miles southwest of Cimarron" +"NM-27384","","","558319","3623790","GW","false","" +"ED-0185","22S26E3.344","","567436","3586790","GW","true","" +"EB-162","","","405843","3955513","GW","true","Ranch entrance is ~ 0.1 mi west of intersection of Paseo La Tierra and Estrada Calabasa; well was original windmill; north side of ranch house" +"NM-01828","","","254470","3526530","GW","false","In Columbus, go 3.3 miles east on CR B003, Boundary Street, becomes POL ranch road. Go north on CR B004 1 mile, go west on dirt track along old field 0.5 miles, go south 0.2 miles to well." +"WL-0006","NM3512714","","439931","3778604","GW","true","East on Hwy 60 from I-25. At Willard go south on Rt 42 to Corona. Right on Rt 54 at Corona south ~9.5 miles. Turn right (east) on Gallinas Station Rd (aka A019), then left on A032 at tee. Well is on the right next to railroad tracks." +"NM-08586","","","239171","3623310","GW","false","" +"NM-20660","","","608818","3850680","GW","false","" +"AR-0156","D002","NMED 81","243694","4092265","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn right onto Rd 2345, then right onto Rd 2343. Turn left onto Rd 2335 and stay on 2335 at ""Y"" in road. Follow to address on right. Well is in wishing well structure next to garage and near front porch deck." +"NM-13485","","","662174","3692870","GW","false","" +"NM-16482","","","247510","3774880","GW","false","" +"NM-13705","","","137433","3700670","GW","false","" +"SM-1094","","","445852","3628576","SP","true","" +"NM-28155","","","657831","3612180","GW","false","" +"NM-27671","","","622696","3794880","GW","false","" +"TB-1050","","","413368","3694735","ES","true","Near Regan house, do not get out of car if dogs are loose." +"OG-0026","","","641616","3819459","GW","true","" +"AB-0165","S214","","359661","3899920","GW","true","" +"EB-617","","","403930","3940600","GW","true","" +"NM-20407","","","169376","3849260","GW","false","" +"NM-22761","","","658697","3891410","GW","false","" +"AB-1005","S215","","323736","3914700","SP","true","" +"NM-12643","","","660636","3679540","GW","false","" +"NM-07837","NH-009","","289011","3610790","GW","false","" +"EB-218","SF-5","","406118","3941215","GW","true","Off west frontage rd of I-25 @ Mutt Nelson; first house in open lot east of house" +"NM-19067","","","556213","3816640","GW","false","" +"DE-0301","","","675786","3591698","GW","false","" +"QY-0684","6.28.24.431","","598276","3843040","GW","true","" +"NM-16423","","","640869","3771660","GW","false","" +"BC-0170","150","","379019","3885810","GW","true","" +"NM-13609","","","477470","3692800","GW","false","" +"NM-09161","","","671281","3628790","GW","false","" +"QU-020","CER-32","","446285","4067184","GW","true","" +"NM-10988","","","657151","3651510","GW","false","" +"NM-22072","","","615016","3883200","GW","false","" +"NM-19000","","","613234","3815890","GW","false","" +"NM-19919","","","190448","3839460","GW","false","" +"NM-04174","","","244028","3540260","GW","false","" +"NM-27378","CN-2016-007","","587692","3617760","GW","false","" +"NM-16635","","","127716","3781870","GW","false","" +"NM-25412","","","410527","3972760","GW","false","" +"NM-27301","","","553514","3583050","GW","false","" +"NM-25623","","","483175","3983600","GW","false","" +"LC-030","","","398982","3935662","GW","true","From I-25 take La Cienega exit and go north on west Frontage Road. Turn right (go west) on Camino Lagunitas at the entrace gate (gate code #4110). Go straight and cross Guicu Creek to two-track on right. Well just before cottonwoods on right side." +"NM-19509","","","668590","3829580","GW","false","" +"NM-27451","","","412382","3693360","GW","false","" +"NM-25448","","","408407","3973890","GW","false","" +"NM-01811","","","368064","3522210","GW","false","" +"EB-029","","","420343","3931667","GW","true","" +"WL-0260","","","396478","3841136","GW","true","From the junction of HWYs 41 and 55, on the south end of Estancia, drive south on HWY 41 for 3 miles and turn west (right), on Langley Road. Drive west 4 miles, turn south (left) on Akin Farm Rd. Drive south 0.25 mile to first house on east (left) side of road to the Schropp house, 28 Akin Farm Road. Well is in well house in front yard." +"NM-05724","","","258284","3570710","GW","false","" +"TO-0205","6N6E14.111","","382139","3846730","GW","true","" +"NM-04272","","","393033","3541500","GW","false","" +"QY-0798","7.31.29.211","","620598","3852430","GW","true","" +"NM-20344","","","533218","3842030","GW","false","" +"BW-0720","2.6.21.29.130","","523651","3841550","GW","true","" +"NM-28294","146783","","235836","3806733","SP","false","Cibola NF, Magdalena RD" +"NM-02846","","","397969","3706340","GW","false","" +"NM-24250","","","419914","3932120","GW","false","" +"BW-0745","1.5.6.25.100","","277544","3835270","GW","true","" +"NM-21719","","","350050","3879860","GW","false","" +"TV-267","","","447149","4024143","GW","true","Hwy. 68 heading north towards Taos. Make right (east) on Este Es Road (Rio Grande Ace Hardware on corner). Go 2.5 miles to Sangre de Cristo Road and make right (south). Go 0.25 mile to address. Well is in vault to north of house." +"NM-11165","","","648354","3654670","GW","false","" +"NM-27498","","","681630","3738700","GW","false","" +"NM-15258","","","662540","3738390","GW","false","" +"DE-0198","","","611759","3599876","GW","false","" +"SO-0259","SMC-W09B","","314811","3728397","GW","true","" +"TV-210","","","443726","4016447","GW","true","NOTE: There are two wells at this site: (TV-210) 5.6"" steel casing w/padlock (lock replaced by TPL lock); (TV-222) 5"" PVC in steel surface casing set in concrete culvert pad. Get key from Roy Cunningham for Miranda Canyon gate." +"NM-13959","","","546060","3695660","GW","false","" +"JM-032","","","303359","3658930","GW","true","" +"MI-0135","","","479495","3928965","GW","true","Topographic situation: Plateau" +"NM-20035","","","400385","3836650","GW","false","" +"NM-06814","","","671342","3590470","GW","false","" +"NM-25034","","","274609","3953600","GW","false","" +"NM-16316","","","651638","3768400","GW","false","" +"NM-15641","","","666916","3747150","GW","false","" +"TO-0142","5N8E5.344","","397141","3838430","GW","true","" +"NM-15613","","","671708","3746590","GW","false","" +"NM-12706","","","652723","3680640","GW","false","" +"NM-13398","","","568005","3690340","GW","false","" +"NM-25267","","","461887","3964900","GW","false","" +"SO-0025","2N2E36.33","","344324","3802140","GW","true","" +"SB-0362","TWDB 4807805","","481007","3527984","GW","false","" +"NM-16073","","","269420","3760230","GW","false","" +"NM-05291","","","669727","3563790","GW","false","" +"NM-01925","","","325228","3541310","GW","false","" +"NM-21525","","","360518","3876700","GW","false","" +"NM-02742","","","555587","3660420","GW","false","" +"WL-0054","NM3574125","","462880","3963668","GW","true","North on 518 out of Las Vegas, NM, make left on 94 @ Sapello, then left on 105 towards Rociada, NM. Make a left @ Pendaries Village Lane (there are signs for Pendaries), right @ intersection. Follow to fork in road, go left on A34/Forest Drive W. Pass large pond on right, second pond on left w/small peninsula into lake. Well is on this peninsula." +"NM-11738","","","286856","3665500","GW","false","" +"NM-15136","","","578287","3732210","GW","false","" +"EB-438","","","414809","3931287","GW","true","new development" +"NM-18268","","","655843","3803970","GW","false","" +"NM-17224","","","642128","3785050","GW","false","" +"NM-00625","","","672958","3672380","GW","false","" +"NM-22785","","","383516","3891110","GW","false","" +"NM-05959","","","234189","3574920","GW","false","" +"NM-23194","","","257399","3900390","GW","false","" +"NM-21145","","","382722","3864780","GW","false","" +"NM-21102","","","585348","3862730","GW","false","" +"NM-06809","","","671735","3590380","GW","false","" +"NM-27674","","","642069","3795680","GW","false","" +"NM-00752","","","446004","3698450","GW","false","" +"TB-0253","","","428920","3725191","GW","true","From Hwy. 380 on Basin Rd. go north, west and north to headquarters. Thru gate to W past house, W thru next gate, then N along fence 0.1 mile. Then W on 2 track past old house. West across fence. Follow fenceline N 2.1 miles, thru fence and back E then N (1 mile total). Go past pens toward Carrizozo Mtn. East of dirt tank to open case by old water tanks." +"NM-13500","","","549156","3691360","GW","false","" +"SB-0925","","","495260","3551810","GW","false","" +"TV-189","","","440377","4024683","GW","true","On hill at NW corner of golf course. Red roof home w/windmill." +"NM-17282","","","632158","3785790","GW","false","" +"NM-09631","","","214220","3635780","GW","false","" +"NM-15999","","","620764","3755940","GW","false","" +"NM-27428","","","596146","3667690","GW","false","" +"NM-12909","","","555410","3682500","GW","false","" +"NM-03646","","","656383","4053310","GW","false","" +"DE-0136","","","614935","3631118","GW","false","" +"DA-0020","20S1W10.424","","319391","3606530","GW","true","" +"NM-14482","","","464392","3705780","GW","false","" +"NM-03090","","","648697","3782210","GW","false","" +"NM-24538","","","174033","3944810","GW","false","" +"SM-0077","","","478911","3639555","GW","true","Hwy 82 between miles 55 and 56, pull over just before Runyan Fruit Stand. Well is on dirt rd just west of stone house, behind propane tank, under 2 big cottonwoods." +"NM-21111","","","239346","3866570","GW","false","" +"NM-26100","","","474420","4020440","GW","false","" +"NM-17841","","","531724","3795480","GW","false","" +"NM-18711","","","675423","3811900","GW","false","" +"SM-4041","","","441732","3607985","PS","true","Stream flow measurement by Patrick Walsh" +"AB-0238","","","362928","3880150","GW","true","" +"NM-08754","","","204260","3626630","GW","false","" +"NM-06978","","","675029","3593270","GW","false","" +"NM-08481","","","141184","3624610","GW","false","" +"TB-0084","","","404045","3640597","GW","true","From new well #6, on new road south approx 1/4 mile to 2 track on leftt (east) side. Well is back from road." +"NM-05193","","","229503","3564220","GW","false","" +"NM-22825","","","349190","3892170","GW","false","" +"SA-0451","5S13W27.420b","","205980","3749160","GW","true","" +"QY-0080","10.31.8.233","","620758","3885830","GW","true","" +"NM-09926","","","558249","3635580","GW","false","" +"SM-0163","","","491691","3619746","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-22034","","","641232","3883300","GW","false","" +"NM-17057","","","658218","3782900","GW","false","" +"EB-677","","","417685","3932405","GW","true","" +"SM-0209","","","464529","3629410","GW","true","Go to Weed and take Hwy 24 to Miller Flats Rd., turn Right on McDonald Flats Rd. Go about 4.3 mi. Turn right at Mule Canyon Rd, go about 0.5 mi. Along pipe fence, go over cattle guard and into fence into Yates (PayJay Arabians) property. Follow back past houses to Y in road, take a right (white sign at Y). Turn left at big house, follow along pipe fence. Go thru red pipe gate next to red pipe corrall. Go to end of dirt road, concrete shack and power pole at well." +"NM-05380","","","262566","3566780","GW","false","" +"SM-4032","","","437442","3619305","PS","true","Stream flow measurement by Patrick Walsh" +"PC-150","","","371129","3907404","M","true","" +"NM-21243","","","345989","3868890","GW","false","" +"NM-13967","","","544149","3695650","GW","false","" +"AH-001","AH-01","","438079","4043746","GW","true","" +"NM-04303","","","635981","3543080","GW","false","" +"NM-19135","","","622145","3819270","GW","false","" +"NM-24696","","","410030","3943490","GW","false","" +"NM-17793","","","617198","3794870","GW","false","" +"NM-08915","","","555480","3624230","GW","false","" +"TB-0117","","","397722","3708600","GW","true","Oscuro Range Rd for 5 miles to end of county road. North follow driveway behind house to well by WM tower." +"NM-02355","M-133","","266723","3582282","GW","false","From NM-02346, go E along fence line road N of well 0.9 miles. Go NE thru tight gate, 1.4 miles NE on faint 2-track to windmill w red steel cattle tank 50 yards to N. Probably easier to access from Nunn ranch to north on more heavily traveled 2-track roads. All roads in this area S of NM 26 impassable when wet!!" +"SM-0154","","","450787","3646812","GW","true","Hwy 82 east of Mayhill, take left on Carr Gap Rd.. Head west about 3 mi over hill and back down. Take left fork onto Walker Canyon. Pass over 3 cattle guards (~3 mi), then take 2nd right after 3rd cattle guard. Says 15 Arrow Rd on juniper tree. Travel short distance along barb wire fence, then take left fork to gate with many signs. She has to open gate. Wait at gate for her to open." +"NM-05632","","","251717","3569970","GW","false","" +"NM-24653","","","412232","3942300","GW","false","" +"BW-0634","10S6E23","","379757","3699560","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21023","","","651951","3860230","GW","false","" +"NM-13743","","","140942","3701040","GW","false","" +"NM-02381","","","573555","3583360","GW","false","" +"NM-09448","","","621320","3630950","GW","false","" +"SO-0258","SMC-W09A","","314811","3728397","GW","true","" +"SB-0634","TWDB 4908502","","400443","3531898","GW","false","" +"NM-07684","","","635097","3625880","GW","false","" +"NM-24938","","","414978","3948000","GW","false","" +"NM-27284","","","605338","3580230","GW","false","" +"NM-02144","","","260872","3564940","GW","false","" +"NM-15123","","","668583","3732820","GW","false","" +"NM-12963","","","629321","3684770","GW","false","" +"NM-07223","","","642465","3598420","GW","false","" +"NM-04873","","","675207","3557450","GW","false","" +"NM-04964","","","221498","3561080","GW","false","" +"NM-19755","","","655351","3833390","GW","false","" +"NM-01250","","","678070","3894630","GW","false","" +"NM-04027","M-016","","276186","3530700","GW","false","" +"AR-0200","J006","","243863","4092380","GW","true","" +"DA-0068","22S3E9.322","","345591","3586810","GW","true","" +"TV-132","LQ-22","","445150","4019970","GW","true","No info. given on data sheet. Located 50' from original well (TV-131)." +"SM-0085","","","435326","3625244","GW","true","If Larry is not there, can measure well anytime, access thru gate using key hidden under rock at right gate post. Agua Chiquita left at Hay Canyon, to Potato Canyon. Well is at west end of camp, in shooting range. Keep to right at forks or turns. Well by brown shed and porto toilet. If Larry is not there, can measure well anytime, access thru gate using key hidden under rock at right gate post." +"NM-22152","","","630580","3884180","GW","false","" +"NM-18589","","","654496","3809200","GW","false","" +"NM-10470","","","552592","3643680","GW","false","" +"TB-0070","","","417478","3696072","GW","true","Take Three Rivers road to eastern end at mountains - Go to USFS Campground. Well is 50 ft north of camp hosts site. Well house is locked, Jon has key." +"NM-26178","","","671486","4028690","GW","false","" +"NM-18577","","","674642","3809970","GW","false","" +"NM-23024","","","356392","3894700","GW","false","" +"NM-27912","","","572941","3826920","GW","false","" +"NM-23541","","","370499","3908140","GW","false","" +"NM-00632","","","293733","3676730","GW","false","" +"NM-15329","","","620457","3739670","GW","false","" +"NM-24053","","","645654","3926200","GW","false","" +"NM-02458","","","200146","3605140","GW","false","" +"SD-0327","13N.5E.32.334","","369112","3907880","GW","true","" +"QU-001","Q-22","Moly #2","447569","4064856","GW","true","From main road, right to high school after VFW; past town center 1 mile; turn right into high school and go right at ""T"", stopping for pictured building on left." +"NM-04940","","","267979","3559420","GW","false","" +"NM-25179","","","215811","3964080","GW","false","" +"NM-21220","","","539316","3867190","GW","false","" +"NM-10933","","","641795","3650630","GW","false","" +"NM-09002","","","407296","3625250","GW","false","" +"NM-27977","","","345384","3873300","GW","false","" +"NM-07690","","","670839","3607620","GW","false","" +"NM-25036","","","600096","3951340","GW","false","" +"NM-08322","","","270479","3618190","GW","false","" +"NM-03997","","","254911","3528380","GW","false","" +"SB-0898","25.18.35.330","","492469","3549425","GW","true","" +"NM-18013","","","670702","3800560","GW","false","" +"NM-10893","","","408065","3649200","GW","false","" +"NM-01424","","","477601","3935510","GW","false","" +"NM-13106","","","560199","3686160","GW","false","" +"NM-24767","","","413337","3944720","GW","false","" +"NM-22322","","","346763","3886320","GW","false","" +"SA-0220","","","248481","3711305","GW","true","" +"NM-17513","","","640807","3789430","GW","false","" +"TB-0133","","","404968","3706621","GW","true","County Road 002 just east of gate 0.3 mi to north to windmills. Keep going to north, stay left. Back south to windmill and metal tank." +"NM-22311","","","678054","3886690","GW","false","" +"NM-06665","","","339647","3587220","GW","false","" +"NM-06146","","","588067","3576270","GW","false","" +"NM-20281","","","590792","3841000","GW","false","" +"NM-04896","","","676094","3557710","GW","false","" +"TO-0246","6N10E25.344","","422954","3841490","GW","true","" +"NM-06172","","","235421","3579970","GW","false","" +"MI-0242","","","483721","3946689","GW","true","Topographic situation: Plateau" +"DE-0273","","","663112","3634556","GW","false","" +"NM-04865","","","132860","3562360","GW","false","" +"NM-11630","","","617746","3662170","GW","false","" +"SB-0605","TWDB 4863902","","487220","3430964","GW","false","" +"NM-03091","","","591726","3805580","GW","false","" +"NM-26493","","","460154","4062670","GW","false","" +"NM-03330","S182","","349271","3877220","GW","false","" +"NM-00027","26.18.30.213","","486599","3542400","GW","false","" +"NM-23099","","","611340","3895880","GW","false","" +"QY-0346","11.34.6.314","","647432","3897090","GW","true","" +"NM-27114","DM-51","","442491","4042440","GW","false","" +"NM-21367","","","379791","3871560","GW","false","" +"SO-0076","3N2W14.332","","313950","3817120","GW","true","" +"NM-23507","","","228251","3910880","GW","false","" +"TC-211","WG-28","","430411","4086025","GW","true","" +"NM-04372","","","271825","3547340","GW","false","" +"NM-02511","","","278768","3615850","GW","false","" +"NM-10680","","","661713","3647240","GW","false","" +"NM-06153","","","671457","3577560","GW","false","" +"NM-00539","","","619352","3654680","GW","false","" +"NM-05870","","","248576","3573220","GW","false","" +"NM-10758","","","623391","3648320","GW","false","" +"NM-23598","","","188459","3913770","GW","false","" +"NM-03858","","","250784","3522010","GW","false","" +"NM-06644","","","556766","3585690","GW","false","" +"NM-18914","","","658736","3814940","GW","false","" +"NM-04155","","","230398","3539600","GW","false","" +"NM-03243","","","567434","3835530","GW","false","" +"SD-0225","10N.7E.23.212","","394000","3882770","GW","true","" +"TB-1001","","","422190","3652705","SP","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end trailer. Look for spring pond. Walk up canyon from it, follow piping up to spring. Likely goes with OSE well record T-2581" +"TO-0022","2N10E10.111","","418215","3809030","GW","true","" +"NM-02625","","","558266","3632780","GW","false","" +"PC-051","PW-081","","372598","3911171","GW","true","" +"NM-06918","","","674137","3591960","GW","false","" +"NM-03044","","","345904","3791440","GW","false","" +"NM-21446","","","344340","3873510","GW","false","" +"NM-09282","","","560008","3628480","GW","false","" +"NM-08138","","","230151","3616520","GW","false","" +"NM-21341","","","400755","3870820","GW","false","" +"NM-25559","","","470797","3980830","GW","false","" +"NM-05588","","","332788","3568060","GW","false","" +"NM-16605","","","206388","3778720","GW","false","" +"NM-22413","","","378044","3886900","GW","false","" +"NM-25596","","","641007","3983700","GW","false","" +"NM-05390","","","287553","3566380","GW","false","" +"NM-08119","","","585166","3612860","GW","false","" +"NM-01568","","","404913","3988700","GW","false","" +"NM-21527","","","355274","3876910","GW","false","" +"TC-217","WG-23","","420318","4077925","GW","true","" +"NM-26590","","","595924","4069190","GW","false","" +"NM-09006","","","559118","3625050","GW","false","" +"NM-04830","","","267865","3557880","GW","false","" +"NM-26553","","","583675","4066630","GW","false","" +"NM-12191","","","554652","3670050","GW","false","" +"NM-28204","","","164191","4061300","GW","false","" +"QU-137","MMW-45A","","450615","4061660","GW","true","" +"SB-0618","TWDB 4864902","","498356","3430495","GW","false","" +"TV-276","","","444199","4027480","GW","true","(Per Paul Drakos, this well is the one to the SE on Blackstone Ranch, next to the guest house.)" +"NM-13553","","","664536","3693870","GW","false","" +"NM-02628","","","229390","3637350","GW","false","" +"NM-20779","","","534221","3852660","GW","false","" +"NM-12598","","","553783","3677250","GW","false","" +"NM-03926","","","203344","3526690","GW","false","" +"NM-19110","","","543328","3817640","GW","false","" +"NM-20741","","","523172","3851790","GW","false","" +"SM-3001","","","428814","3632479","S","true","Site visited and sampled by Jeremiah Morse" +"NM-04590","","","135755","3557410","GW","false","" +"NM-10673","","","647172","3646950","GW","false","" +"QY-0077","10.31.3.133","","623322","3887560","GW","true","" +"NM-17054","","","664697","3782950","GW","false","" +"NM-08209","","","642536","3615370","GW","false","" +"NM-21070","","","238637","3864860","GW","false","" +"NM-09778","","","153655","3639470","GW","false","" +"NM-28192","","","470618","4031510","GW","false","" +"NM-10591","","","669984","3646670","GW","false","" +"SB-0327","TWDB 4807619","","486583","3533363","GW","false","" +"NM-25104","","","412887","3955270","GW","false","" +"QY-0079","10.31.36.333","","626636","3878660","GW","true","" +"NM-19962","","","374813","3835640","GW","false","" +"NM-00700","","","632541","3693970","GW","false","" +"NM-14871","","","422074","3722290","GW","false","" +"TO-0116","4N14E9.422","","456788","3827360","GW","true","" +"SV-0064","04 Luna Azul","","378313","3901230","GW","false","Unit 3 Lot 117" +"NM-17785","","","190729","3798780","GW","false","" +"NM-10666","","","559226","3645970","GW","false","" +"NM-10121","","","408513","3638760","GW","false","" +"NM-20284","","","631749","3841590","GW","false","" +"NM-00600","","","679530","3665300","GW","false","" +"NM-12834","","","666980","3682510","GW","false","" +"NM-24719","","","406061","3944090","GW","false","" +"NM-19390","","","566227","3825260","GW","false","" +"NM-26290","","","472813","4040500","GW","false","" +"NM-20243","","","540907","3840150","GW","false","" +"NM-07101","","","358527","3595440","GW","false","" +"NM-00110","","","571817","3554650","GW","false","" +"RA-018","","","383728","4008373","GW","true","Just past large cottonwood tree, next to well house." +"NM-28129","","","678178","3945440","GW","false","" +"NM-13586","","","554396","3692660","GW","false","" +"NM-08508","","","680066","3620870","GW","false","" +"NM-03840","","","349857","3519780","GW","false","" +"EB-310","","","402100","3939571","GW","true","North side of Arroyo Hondo at Los Pinos Rd/SFC54 crossing; across from Santa Fe Downs" +"NM-16569","","","541740","3773530","GW","false","" +"NM-13048","","","553325","3685290","GW","false","" +"NM-16953","","","656225","3781050","GW","false","" +"NM-16040","","","197719","3761190","GW","false","" +"NM-26162","","","308989","4027220","GW","false","" +"SV-0020","06 Canada Vista","","381515","3898523","GW","false","Unit 1 Lot 76" +"NM-16203","","","665070","3763080","GW","false","" +"SV-0057","12 Lomita Linda","","376908","3899991","GW","false","Unit 3 Lot 76" +"NM-11691","","","604802","3662730","GW","false","" +"NM-02763","","","559032","3665300","GW","false","" +"SB-0702","TWDB 4915614","","390468","3522577","GW","false","" +"SM-1091","","","479003","3639529","SP","true","Hwy 82 between miles 55 and 56, pull over at Runyan Fruit Stand. Spring is down hill from restroom." +"NM-07883","","","231223","3612760","GW","false","" +"SA-0189","","","251747","3769591","GW","true","From Hwy 60, take turn off onto 52 at VLA. Drive south 4.5 miles to turnoff to W. Go 4.1 miles past Bruton Headquarters to Estafeta WM." +"NM-25641","","","416458","3984780","GW","false","" +"NM-09414","","","407548","3630050","GW","false","" +"NM-10847","","","277625","3650790","GW","false","" +"NM-06251","","","327959","3579690","GW","false","" +"NM-12577","","","655218","3678370","GW","false","" +"NM-04337","","","253814","3546190","GW","false","" +"NM-10934","","","658830","3650460","GW","false","" +"NM-00659","","","490989","3686620","GW","false","" +"NM-01268","S147","","344128","3898510","GW","false","" +"SB-0832","","","469670","3578554","GW","false","" +"NM-27899","","","550015","3821440","GW","false","" +"NM-05162","","","340511","3561340","GW","false","" +"TO-0510","5N8E19.111","","394968","3834980","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-20721","","","403624","3851840","GW","false","" +"NM-16996","","","632427","3781240","GW","false","" +"NM-14780","","","650018","3719730","GW","false","" +"NM-08666","","","555080","3621270","GW","false","" +"TO-0318","7N9E32.211","","407116","3850880","GW","true","" +"NM-11125","","","158139","3658320","GW","false","" +"SM-0205","","","469308","3626776","GW","true","Hwy 24 to Cuevo Canyon. To Jernigan Ranch house, well on west side of house by tank. 250 yards from SM-0206. Jeremiah Morse 1st site visit." +"NM-10159","","","663081","3639960","GW","false","" +"NM-12094","","","611085","3668780","GW","false","" +"NM-01928","","","341486","3541460","GW","false","" +"BW-0749","2.7.30.17.244","","611602","3855020","GW","true","" +"NM-13054","","","552497","3685350","GW","false","" +"NM-09429","","","210210","3634010","GW","false","" +"NM-21575","","","347334","3877430","GW","false","" +"NM-15091","","","151987","3736430","GW","false","" +"NM-00982","","","172368","3820440","GW","false","" +"NM-01640","","","305187","4035500","GW","false","" +"NM-07279","","","274744","3600440","GW","false","" +"NM-18974","","","662812","3816110","GW","false","" +"NM-15409","","","662034","3742450","GW","false","" +"NM-02196","","","335648","3566780","GW","false","" +"NM-04081","","","254670","3534800","GW","false","" +"NM-09024","","","201194","3629560","GW","false","" +"NM-10425","","","655218","3644020","GW","false","" +"NM-19064","","","454168","3816520","GW","false","" +"NM-17453","","","596688","3787640","GW","false","" +"NM-17638","","","652770","3791870","GW","false","" +"NM-00121","","","581651","3557370","GW","false","" +"NM-27681","","","619977","3795520","GW","false","" +"NM-03334","","","348614","3877330","GW","false","" +"NM-06935","","","675119","3592600","GW","false","" +"NM-20543","","","569274","3847070","GW","false","" +"DE-0316","","","650280","3590761","GW","false","" +"AB-0211","S267","","345603","3886620","GW","true","" +"NM-00071","","","576285","3546990","GW","false","" +"NM-27691","","","627055","3795920","GW","false","" +"NM-20017","","","583102","3836090","GW","false","" +"NM-05403","","","224212","3568280","GW","false","" +"NM-06831","","","572777","3589640","GW","false","" +"NM-19606","","","600863","3829710","GW","false","" +"NM-07349","","","620676","3600360","GW","false","" +"NM-03410","","","645690","3892770","GW","false","" +"QY-0583","5.29.17.332","","600981","3834830","GW","true","" +"NM-15435","","","647939","3742460","GW","false","" +"NM-04917","","","134016","3563120","GW","false","" +"NM-21193","","","241041","3869880","GW","false","" +"SD-0108","9N.7E.15.132","","391582","3874390","GW","true","" +"NM-04394","","","289890","3547660","GW","false","" +"SB-0674","TWDB 4915511","","388153","3520046","GW","false","" +"NM-23387","","","294920","3903560","GW","false","" +"NM-19100","","","171683","3823070","GW","false","" +"QU-040","","","440812","4065243","GW","true","Following ""Wild Rivers"" highway, find TR-244 on left immediately before cattleguard @ sheep crossing. Follow this road south and east to parking at base of Rocky Hill (UTM NAD83 440632, 4065727). Hike up road, passing thru two fences until it joins Vistas de Questa trail. Go another 400 m up to find well." +"NM-27571","","","644976","3792890","GW","false","" +"NM-08533","","","328998","3620500","GW","false","" +"NM-16990","","","649970","3781380","GW","false","" +"NM-11423","","","609045","3658900","GW","false","" +"NM-06575","","","340919","3585550","GW","false","" +"AB-0027","S030","","357864","3885310","GW","true","" +"NM-21686","","","393848","3878810","GW","false","" +"NM-13951","","","549496","3695710","GW","false","" +"NM-12351","","","651997","3674100","GW","false","" +"NM-18744","","","656751","3812300","GW","false","" +"NM-19416","","","546399","3825670","GW","false","" +"NM-26447","","","457797","4061660","GW","false","" +"NM-25136","","","416492","3956650","GW","false","" +"NM-27350","","","657528","3598340","GW","false","" +"NM-28131","","","180839","3953910","GW","false","" +"SB-0662","TWDB 4915410","","382920","3520104","GW","false","" +"NM-18996","","","211190","3819470","GW","false","" +"NM-08308","","","561832","3615370","GW","false","" +"NM-08884","","","558318","3623820","GW","false","" +"SB-0330","TWDB 4807622","","487636","3535640","GW","false","" +"NM-11531","","","667542","3661820","GW","false","" +"NM-20662","","","627218","3850950","GW","false","" +"NM-27699","","","622373","3796080","GW","false","" +"NM-11623","","","676425","3662620","GW","false","" +"NM-07383","","","210737","3604640","GW","false","" +"NM-04164","","","250109","3539650","GW","false","" +"NM-19246","","","338840","3822920","GW","false","" +"NM-28031","","","266816","3884760","GW","false","" +"NM-07683","","","649435","3607120","GW","false","" +"AR-0515","","","224359","4075680","PS","true","Access via field behind Rutledge Skin Care Clinic." +"QY-0907","8.32.29.42","","630679","3861400","GW","true","" +"NM-16422","","","639023","3771630","GW","false","" +"NM-15870","","","212942","3755380","GW","false","" +"NM-20010","","","594989","3836110","GW","false","" +"NM-12406","","","680492","3675510","GW","false","" +"NM-07106","","","225008","3598350","GW","false","" +"SV-0120","65 Via Entrada","","377498","3900986","GW","false","Unit 3 Lot 100" +"NM-00705","","","440212","3693570","GW","false","" +"TO-0070","4N7E3.143","","389656","3829720","GW","true","" +"SD-0229","10N.7E.25.211","","395498","3881200","GW","true","" +"SV-0080","22 Prado Vista","","377547","3898112","GW","false","Unit 3 Lot 3" +"TO-0047","3N10E15.342","","418731","3815870","GW","true","" +"NM-12838","","","637423","3682670","GW","false","" +"NM-22988","","","275535","3895980","GW","false","" +"NM-05913","","","333538","3572270","GW","false","" +"NM-10118","","","674749","3640160","GW","false","" +"NM-19079","","","568378","3816930","GW","false","" +"NM-10230","","","553805","3640210","GW","false","" +"NM-20439","","","568913","3844350","GW","false","" +"AS-037","ES-129","","451682","4042830","GW","true","" +"NM-25398","","","405309","3972470","GW","false","" +"NM-01649","","","476805","4035740","GW","false","" +"MI-0043","","","567907","3900075","GW","true","Topographic situation: Mesa" +"UC-0211","","","584483","4063262","GW","false","" +"NM-26986","","","326554","3771770","GW","true","" +"SM-1024","","","429469","3651650","SP","true","1.2 Miles west up La Luz Canyon from SM-1023. Has concrete water tank in fenced area." +"HS-037","TC-037","","290053","3667623","GW","true","Down alley behind the riverbend spa on the banks of the Rio Grande" +"NM-03394","S124","","348221","3890210","GW","false","" +"SB-0446","TWDB 4816501","","492716","3517962","GW","false","" +"NM-20938","","","637644","3857480","GW","false","" +"NM-21703","","","191861","3883630","GW","false","" +"PP-020","PW-18","","438319","4003485","GW","true","" +"BW-0750","2.8.21.1.333","","529980","3866590","GW","true","" +"NM-22574","","","375056","3888730","GW","false","" +"NM-17215","","","642924","3784840","GW","false","" +"NM-04542","M-058","","212978","3553640","GW","false","" +"NM-12047","","","655789","3668550","GW","false","" +"NM-27251","","","534256","3568220","GW","false","" +"CP-0018","","","661005","3803865","GW","true","From Hwy 60, east of Cannon AFB, go south on 467, east on Rt 8, south on Curry Rd M (also called Wheaton St) to address (711). 1.9 mi south of Brady Rd. House w/nice landscaping, green roof, porch on front. Well in field to north of house under plastic barrel. Spigot in under ground tank." +"NM-11679","","","561980","3662180","GW","false","" +"SM-0213","","","471837","3592572","GW","true","Hwy 24 to Cornucopia Rd., take south for 13.6 mi to signpost without the sign, turn left. Take for 7.8 mi along dirt road to convergence of roads and pipeline. Bear left (west) across cattle guard, go past tank at top of saddle (1.1 mi), along fence to turnoff (1.7 mi), left for 0.7 mi. Well at base of well scafold?" +"NM-26446","","","671023","4063240","GW","false","" +"NM-28219","","","171523","4074290","GW","false","" +"NM-17411","","","645619","3787750","GW","false","" +"NM-11617","","","405743","3661510","GW","false","" +"NM-28404","S-2014-019","","634784","3591565","GW","true","" +"NM-09811","","","673920","3635620","GW","false","" +"DE-0372","","","569008","3626617","GW","false","" +"NM-04466","","","232777","3551130","GW","false","" +"SB-0836","","","496078","3563888","GW","false","" +"NM-01306","","","342749","3907770","GW","false","" +"TC-365","","","433891","4076027","GW","true","" +"NM-17867","","","547852","3795980","GW","false","" +"SB-0645","TWDB 4915204","","388477","3523245","GW","false","" +"QY-0211","11.30.20.423","","611567","3891810","GW","true","" +"NM-18416","","","659015","3806790","GW","false","" +"NM-13249","","","578153","3688350","GW","false","" +"NM-13526","","","551842","3691780","GW","false","" +"QU-513","","","440622","4059038","SP","true","Along Red River downstream from fish hatchery. Base of massive cliff along river's edge." +"TB-0062","","","406106","3689433","GW","true","Take Three Rivers campground road, east of headquarters. Turn R on road across from Petroglyph campground (approx.) pass shed with old campground well in brick shed. Left turn towards trees? Keep wire gate closed." +"NM-22995","","","349787","3894570","GW","false","" +"NM-04437","","","128860","3553490","GW","false","" +"MI-0309","","","531107","3908561","SP","true","Topographic situation: Valley" +"NM-01834","","","366978","3525670","GW","false","" +"NM-16651","","","668957","3776770","GW","false","" +"NM-26993","","","324879","3741940","GW","true","" +"TC-430","COS-11","","451149","4089454","GW","true","Well is located south east of double wide barn, and south of driveway. The well has an old bucket on top, and propane poles nearby. The property is located a few miles south of Costilla on the west side of highway 522." +"DE-0048","","","660204","3543935","GW","false","" +"QU-071","MW-29","","444481","4061284","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road area. MW-27 & MW-29 near each other in junkyard with lots of cars, refrigerators, trailers (lots of CFCs)." +"NM-17756","","","664419","3794380","GW","false","" +"NM-07459","","","242617","3605340","GW","false","" +"NM-08597","","","646672","3621130","GW","false","" +"QY-0997","9.35.15.411","","662748","3875020","GW","true","" +"NM-00254","","","569072","3589750","GW","false","" +"BW-0781","2.22.33.1.422","","646865","4003410","GW","true","" +"SB-0080","TWDB 4717309","","507975","3508511","GW","false","" +"NM-16421","","","321519","3771830","GW","false","" +"EB-263","","","395004","3966182","GW","true","~700-800 ft from end of Buckman Rd; center of arroyo" +"NM-27113","COS-04","","461021","4084590","GW","false","" +"NM-06423","","","570823","3581710","GW","false","" +"NM-02524","","","296951","3616620","GW","false","" +"NM-08416","","","556612","3617310","GW","false","" +"NM-08202","","","229941","3617420","GW","false","" +"NM-05432","","","675707","3566360","GW","false","" +"NM-08126","","","650404","3613790","GW","false","" +"BC-0111","96","","377235","3885180","GW","true","" +"NM-16562","","","327680","3774950","GW","false","" +"NM-00675","","","486923","3689800","GW","false","" +"NM-14319","","","548876","3700880","GW","false","" +"TO-0275","7N8E3.300a","","400171","3857910","GW","true","" +"NM-08928","","","284787","3626500","GW","false","" +"NM-04901","","","163535","3561910","GW","false","" +"NM-09296","","","632370","3629400","GW","false","" +"NM-07111","","","321610","3596260","GW","false","" +"SD-0152","10N.5E.12.444a","","377107","3884920","GW","true","" +"NM-01882","","","121106","3541960","GW","false","" +"SO-0204","SAC-W05A","","324989","3791010","GW","true","" +"CP-0002","","","672553","3750387","GW","true","From Portales, south on NM 206, east on NM 114 @ Dora to Causey. Look for white water tower to east. West on S. Roosevelt Rd 26. Look for blue/white tank, north side of road across from 3 trailer houses. Well in locked gate. Need City permission to access." +"NM-17044","","","620504","3782310","GW","false","" +"NM-00267","","","564928","3594990","GW","false","" +"NM-19760","","","620160","3832680","GW","false","" +"NM-25992","","","643087","4009620","GW","false","" +"NM-12848","","","139376","3688160","GW","false","" +"NM-00917","","","638829","3798330","GW","false","" +"NM-17550","","","663028","3790530","GW","false","" +"NM-07994","","","659662","3611780","GW","false","" +"NM-12576","","","663917","3678450","GW","false","" +"NM-08606","","","195058","3624940","GW","false","" +"NM-24345","","","435648","3934610","GW","false","" +"NM-15239","","","622782","3736900","GW","false","" +"NM-20455","","","604637","3845060","GW","false","" +"NM-14123","","","648200","3698810","GW","false","" +"NM-16523","","","643446","3774130","GW","false","" +"NM-06164","","","583069","3576720","GW","false","" +"WL-0229","","","398077","3989476","GW","true","From the Hernandez Community Center (19418 U.S. 84), drive north about 300 feet, turn west (left) just past Moore Lumber. Drive through locked green gate, then drive straight about ยผ mile; road curves gently left. Drive on road (many locked gates) that runs next to power lines about 1.0 miles to Agua Sana Well 1. Well is in building." +"NM-21088","","","270036","3864660","GW","false","" +"NM-00810","","","447908","3711670","GW","false","" +"NM-12419","","","558852","3673710","GW","false","" +"DE-0305","","","650111","3633125","GW","false","" +"NM-16433","","","654936","3772180","GW","false","" +"NM-11898","","","555042","3665250","GW","false","" +"NM-15131","","","651299","3733300","GW","false","" +"NM-03228","","","394742","3835510","GW","false","" +"UC-0042","","","666374","4026459","GW","true","elv 4842 acc to USGS" +"NM-09327","","","630985","3629840","GW","false","" +"NM-16805","","","674030","3779670","GW","false","" +"NM-19188","","","651773","3821650","GW","false","" +"NM-17558","","","189192","3794140","GW","false","" +"QY-0293","11.32.10.333","","632741","3894780","GW","true","" +"NM-22343","","","373704","3886160","GW","false","" +"NM-18483","","","295207","3808330","GW","false","" +"NM-03231","","","399580","3835860","GW","false","" +"TO-0298","7N8E24.433","","403970","3852830","GW","true","" +"NM-24221","","","643620","3931990","GW","false","" +"NM-23871","","","637910","3918250","GW","false","" +"NM-19556","","","263767","3831180","GW","false","" +"NM-13629","","","548269","3693080","GW","false","" +"NM-16686","","","308170","3777480","GW","false","" +"NM-17139","","","623120","3783950","GW","false","" +"NM-15256","","","493802","3736390","GW","false","" +"NM-22742","","","376120","3890620","GW","false","" +"NM-18380","","","557435","3804660","GW","false","" +"NM-20140","","","638646","3839870","GW","false","" +"NM-16264","","","206817","3769390","GW","false","" +"NM-11796","","","656596","3665120","GW","false","" +"SM-0081","","","448735","3650458","GW","true","776 Sixteen Springs Rd., just east of VFD. Well record under Philip Dunham." +"NM-27897","","","312571","3815430","GW","false","" +"NM-05927","","","250588","3574100","GW","false","" +"BW-0794","1.21.6.3.200","","279137","3995910","GW","true","" +"SO-0213","SBB-E01A","","322849","3732903","GW","true","" +"NM-25288","","","227713","3970090","GW","false","" +"NM-21119","","","579480","3863320","GW","false","" +"NM-17600","","","640787","3790790","GW","false","" +"NM-16149","","","663530","3761580","GW","false","" +"NM-07284","","","211786","3602050","GW","false","" +"NM-03757","","","170740","3511610","GW","false","" +"NM-14736","","","546810","3716820","GW","false","" +"NM-24504","","","404998","3938710","GW","false","" +"NM-06233","","","362778","3578640","GW","false","" +"NM-27880","","","595953","3814340","GW","false","" +"TO-0073","4N7E17.1","","386088","3826610","GW","true","" +"NM-06859","","","639076","3590710","GW","false","" +"NM-16027","","","580116","3756370","GW","false","" +"ED-0035","17S31E34","","606990","3628700","GW","true","" +"NM-19059","","","569783","3816570","GW","false","" +"NM-01150","","","194923","3869220","GW","false","" +"NM-02250","","","249731","3573320","GW","false","" +"NM-18893","","","644690","3814630","GW","false","" +"NM-16905","","","632670","3780350","GW","false","" +"SB-0683","TWDB 4915520","","388124","3519830","GW","false","" +"NM-05617","","","677319","3568510","GW","false","" +"SD-0192","10N.6E.8.212a","","379515","3885700","GW","true","" +"CX-0023","28N26E14.43","","576893","4057120","GW","true","" +"NM-27324","","","365703","3590120","GW","false","" +"NM-17729","","","625074","3792940","GW","false","" +"HS-050","TC-050","","289918","3667668","GW","true","200 Austin St.: Back Yard, not truck accesible, under white wooden box" +"NM-07561","","","342824","3605360","GW","false","" +"NM-22835","","","422106","3891400","GW","false","" +"NM-21764","","","382488","3880120","GW","false","" +"DE-0255","","","663114","3634608","GW","false","" +"NM-16956","","","568624","3779940","GW","false","" +"NM-20656","","","604625","3850570","GW","false","" +"NM-12684","","","662602","3681210","GW","false","" +"NM-18113","","","615840","3801290","GW","false","" +"NM-22160","","","621589","3884120","GW","false","" +"NM-12467","","","552218","3674630","GW","false","" +"NM-28097","","","229265","3906770","GW","false","" +"NM-18172","","","568314","3801310","GW","false","" +"NM-16191","","","650751","3762900","GW","false","" +"NM-11424","","","558840","3658530","GW","false","" +"SM-1042","","","437028","3631753","SP","true","Take Wills Canyon Road, off of Upper Rio Penasco Rd. Go about 3.5 miles and spring is on north side road, up on steel hill slope. Travertine mound is visible from road, climb to top and find spring source." +"NM-13108","","","552260","3686150","GW","false","" +"NM-09843","","","552901","3634410","GW","false","" +"NM-05848","","","239129","3573530","GW","false","" +"NM-00647","","","663422","3665820","GW","false","" +"SD-0259","11N.6E.19.124","","377890","3892540","GW","true","" +"NM-24631","","","411647","3941720","GW","false","" +"NM-08503","","","558010","3618770","GW","false","" +"NM-27227","","","549851","3547100","GW","false","" +"TV-259","SW-53","","441837","4023142","GW","true","" +"NM-13575","","","614784","3693370","GW","false","" +"NM-23809","","","671708","3916680","GW","false","" +"NM-11078","","","622714","3652590","GW","false","" +"NM-04275","","","130783","3547800","GW","false","" +"NM-10623","","","640762","3646580","GW","false","" +"NM-19883","","","337049","3835170","GW","false","" +"TO-0145","5N8E8.331","","396593","3836890","GW","true","" +"SO-0019","2N1E4.444","","331141","3810280","GW","true","" +"MG-008","","","293715","3771765","GW","true","230 Hop Canyon Road" +"NM-03578","","","615452","3982280","GW","false","" +"NM-23209","","","391823","3898000","GW","false","" +"NM-22652","","","303649","3890950","GW","false","" +"NM-03616","","","600901","4005920","GW","false","" +"NM-20542","","","572578","3847090","GW","false","" +"SD-0159","10N.5E.22.141","","372801","3882950","GW","true","" +"NM-01894","","","348105","3536430","GW","false","" +"NM-09671","","","225028","3635870","GW","false","" +"SO-0039","2N4E28.432a","","359729","3803520","GW","true","" +"QY-0957","9.30.28.422","","613337","3871070","GW","true","" +"EM-0004","","","194267","3882670","GW","true","Approximately 20' from pool and 5' from cliff." +"TO-0441","10N7E23.212","","394260","3882820","GW","true","" +"NM-09764","","","553349","3633340","GW","false","" +"NM-16804","","","299245","3779700","GW","false","" +"MB-1001","","","251047","3594833","SP","false","" +"NM-07727","","","661487","3608570","GW","false","" +"NM-15359","","","678745","3741570","GW","false","" +"NM-16088","","","329400","3759420","GW","false","" +"NM-03843","","","350174","3519830","GW","false","" +"NM-16739","","","545544","3776440","GW","false","" +"NM-17594","","","638741","3790730","GW","false","" +"NM-09796","","","211493","3637830","GW","false","" +"NM-28367","","","477905","3537390","GW","false","" +"WS-018","","","381327","3632408","GW","true","" +"NM-07388","","","276997","3603070","GW","false","" +"NM-24050","","","672854","3926620","GW","false","" +"NM-17479","","","164593","3793570","GW","false","" +"SM-0230","","","473937","3654063","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles. At the junction with the Lincoln canyon road at 14.9 miles, continue on the Felix Canyon road, re-crossing the Rio Felix. Follow this road as it passes close to an unnamed ranch headquaters, and terminates at the Vanderwart's gate. Gate is electric, and is opened by pushing the button (it will close automatically behind you). Teel well is located up the canyon some 1.9 miles past the gate, on the left. Look for windmill and storage tank. Well has been used to irrigate small field to west of well. SM-0239 Skeen HQ Well + From the junction of Lincoln Canyon Road (County Rd E030; Picacho Rd?) and County Rd E028, go south on County Rd E028 for 7.5 miles, and turn right to Skeen Ranch Headquaters 0.7 miles. Well located to north of Ranch headquaters, in a small well shed (see photo) located in the middle of a pasture. Will need to go through fence/corral to access well head." +"NM-00204","","","443676","3688440","GW","false","" +"NM-06911","","","633579","3591620","GW","false","" +"AB-0167","S217","","349074","3924530","GW","true","" +"NM-23425","","","646977","3904590","GW","false","" +"NM-16722","","","589757","3776510","GW","false","" +"NM-11238","","","635645","3655640","GW","false","" +"NM-20835","","","198397","3858690","GW","false","" +"NM-06206","","","559977","3577270","GW","false","" +"NM-17289","","","645906","3785780","GW","false","" +"NM-24027","","","671307","3925760","GW","false","" +"NM-06805","","","360134","3589730","GW","false","" +"NM-20590","","","403921","3848630","GW","false","" +"AB-0143","S190","","347922","3899590","GW","true","" +"CX-0001","31N25E22.21","","565377","4085530","GW","true","" +"NM-24460","","","435796","3937600","GW","false","" +"NM-01055","","","454979","3841900","GW","false","" +"NM-15949","","","328371","3755060","GW","false","" +"NM-09051","","","201670","3629800","GW","false","" +"AR-0510","","","243325","4093928","PS","true","" +"EB-289","","","408320","3956006","GW","true","La Tierra Lot 82, #200 Estrada Redondo, SE corner of Estrada Redondo and Vuelta Yucca" +"NM-19247","","","586440","3822070","GW","false","" +"NM-27654","","","621547","3794740","GW","false","" +"NM-05116","","","241050","3562630","GW","false","" +"NM-19968","","","615361","3835670","GW","false","" +"UC-0163","","","617007","4091523","GW","false","" +"NM-13784","","","546038","3694920","GW","false","" +"NM-17404","","","670977","3788300","GW","false","" +"NM-03111","","","650407","3809920","GW","false","" +"NM-27867","","","546570","3811900","GW","false","" +"NM-15939","","","673272","3755310","GW","false","" +"NM-24721","","","413029","3944080","GW","false","" +"NM-14029","","","547296","3696590","GW","false","" +"RA-076","","","379576","4007981","GW","true","Next to building." +"NM-04427","","","134490","3552920","GW","false","" +"NM-20043","","","603941","3836860","GW","false","" +"NM-02629","","","560703","3633900","GW","false","" +"NM-23927","","","403032","3919900","GW","false","" +"NM-13198","","","139284","3694060","GW","false","" +"SM-0176","","","517552","3632746","GW","true","West of Hope on Hwy 82, south side of Hwy. Turn right at big tree at Eddy Cty Rt 1 (Flat Valley Rd). Go over bridge and keep right. Go to fork on Low Valley Rd., after about 1/2 mi right turn." +"NM-26343","","","155294","4054820","GW","false","" +"NM-03505","","","631095","3933900","GW","false","" +"NM-16467","","","564277","3771410","GW","false","" +"NM-18016","","","641722","3800020","GW","false","" +"CX-0161","79","","520293","4021430","GW","true","1 1/2 miles southeast of Miami" +"NM-03407","","","389836","3890600","GW","false","" +"NM-22405","","","399591","3886470","GW","false","" +"NM-00727","","","470581","3695930","GW","false","" +"NM-26971","","","321224","3769510","GW","true","" +"NM-11596","","","564373","3661000","GW","false","" +"NM-22712","","","349976","3890740","GW","false","" +"NM-18959","","","668884","3816240","GW","false","" +"NM-14450","","","673565","3706480","GW","false","" +"NM-26456","","","458454","4061870","GW","false","" +"NM-12889","","","139216","3688760","GW","false","" +"SD-0044","7N.8E.6.224","","396546","3858890","GW","true","" +"BW-0306","16S9E3.422","","406536","3646420","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DA-0187","22S1E35.443","","330114","3579990","GW","true","" +"NM-17315","","","324003","3786670","GW","false","" +"NM-03664","","","446117","4075260","GW","false","" +"SM-1018","","","426205","3634031","SP","true","At confluence of Atkinson Canyon and Rio Penasco Canyon. Along Sunspot Hwy, turn east onto Upper Rio Penasco Rd. Spring comes out in boggy area on south side of road. Park along Upper Rio Penasco and walk to southernmost edge of swampy meadow." +"QY-0606","5.29.27.112","","604209","3832910","GW","true","" +"EB-265","","","395131","3966203","GW","true","~700-800 ft from end of Buckman Rd; off north bank of arroyo" +"NM-10522","","","618574","3645150","GW","false","" +"NM-04978","","","359323","3558480","GW","false","" +"NM-13492","","","672849","3693060","GW","false","" +"NM-19826","","","404245","3833320","GW","false","" +"NM-26465","","","223661","4066550","GW","false","" +"AR-0517","","","219984","4072580","PS","true","Access via public parking lot" +"SB-0492","TWDB 4834901","","427149","3471447","GW","false","" +"NM-10465","","","319367","3645160","GW","false","" +"NM-09183","","","227259","3630880","GW","false","" +"NM-27464","","","549640","3717940","GW","false","" +"NM-24174","","","405435","3930110","GW","false","" +"NM-17337","","","654645","3786790","GW","false","" +"NM-26761","","","156905","4097870","GW","false","" +"NM-04809","","","236008","3558320","GW","false","" +"BW-0464","25S8E1.22","","398254","3558700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00665","","","445460","3688050","GW","false","" +"NM-07429","","","186055","3606500","GW","false","" +"NM-01909","","","345632","3537890","GW","false","" +"NM-11845","","","672446","3666180","GW","false","" +"NM-07002","","","675359","3593800","GW","false","" +"NM-07652","","","554879","3605750","GW","false","" +"NM-22502","","","347750","3888260","GW","false","" +"TB-0159","","","406629","3716393","GW","true","Between Mile 116-115 on hwy 54. On west side of road, thru gate at McDonald Ranch. Combo is 2912 (sesame lock). Well in white shed east of water tank, east of house." +"NM-24959","","","407717","3948510","GW","false","" +"TB-2003","","","406072","3689916","M","true","Hwy 54 at Three Rivers, turn east on road toward petroglyph park. Station is at Camp hosts place." +"NM-19080","","","672086","3818340","GW","false","" +"EB-549","","","415940","3943619","GW","true","SEE ALSO EB-469" +"NM-12500","","","555425","3675260","GW","false","" +"NM-09649","","","557386","3632070","GW","false","" +"DE-0007","","","622748","3569232","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep." +"NM-08340","","","646759","3617060","GW","false","" +"BC-0280","278","","366899","3880360","GW","true","" +"NM-13504","","","564171","3691540","GW","false","" +"NM-10133","","","439277","3638240","GW","false","" +"NM-01084","","","560491","3847380","GW","false","" +"NM-23437","","","228260","3907820","GW","false","" +"NM-01186","","","193617","3882270","GW","false","" +"NM-22422","","","410901","3886580","GW","false","" +"NM-08634","M-192","","195292","3625550","GW","false","Take NM 90 S from SIlver City, left on Ridge Road at Chevron Station. Go 1.5 miles, left on Lance Road, go 1 mile, right onto Tabor, go 0.3 miles, left onto Camino Serna, go 0.3 miles, right on Railroad, go 0.3 miles. Well at inside corner of Broken Arrow and Railroad Roads. Casing in field next to slightly burned power pole." +"NM-09918","","","552662","3635430","GW","false","" +"NM-16300","","","581030","3766580","GW","false","" +"NM-04875","","","563876","3556140","GW","false","" +"NM-05831","","","246686","3573060","GW","false","" +"NM-09468","","","634688","3631090","GW","false","" +"SD-0164","10N.5E.22.424a","","373708","3882330","GW","true","" +"SO-0170","HWY-E03A","","329312","3755371","GW","true","" +"NM-06523","","","260849","3586090","GW","false","" +"TB-0054","","","407522","3651024","GW","true","Well at McGinn's Pistachio Ranch, along Hwy 54 at big pistachio. Go around back of store, take gravel road through orchards toward the south. Well at junction of power lines." +"NM-18435","","","671428","3806980","GW","false","" +"PC-018","PW-032","","369719","3909931","GW","true","" +"NM-17156","","","625856","3784230","GW","false","" +"BW-0444","18S10E28.141","","413611","3620330","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11890","","","285625","3667350","GW","false","" +"NM-19999","","","396431","3835870","GW","false","" +"NM-28106","","","359190","3909270","GW","false","" +"NM-13889","","","147827","3701680","GW","false","" +"SO-0003","1N1E2.13","","332898","3801380","GW","true","" +"NM-04266","","","347163","3541900","GW","false","" +"TO-0148","5N8E9.423","","399301","3837170","GW","true","" +"NM-07759","","","659714","3608510","GW","false","" +"NM-24895","","","406370","3947100","GW","false","" +"SV-0101","07 Via Alcalde","","380029","3900591","GW","false","Unit 1 Lot 38" +"NM-09738","","","646659","3634280","GW","false","" +"NM-20311","","","601087","3841780","GW","false","" +"NM-12704","","","677618","3681130","GW","false","" +"NM-16692","","","308096","3777670","GW","false","" +"EB-209","","","405025","3923149","GW","true","South side of Galisteo Rd near Southern Exposure" +"BW-0520","16S9E5.2","","403089","3646980","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0428","4S13W30.444","","201358","3758580","GW","true","" +"TB-1059","","","427083","3700097","SP","true","Site visit by Fraser and Cathy Goff. NPW10-2" +"SB-0346","TWDB 4807705","","477722","3527220","GW","false","" +"NM-25764","","","403552","3995200","GW","false","" +"NM-16939","","","673048","3781500","GW","false","" +"NM-11914","","","642475","3666320","GW","false","" +"NM-25027","","","207294","3955130","GW","false","" +"NM-23393","","","239643","3905200","GW","false","" +"QY-0620","5.29.5.411","","601523","3838620","GW","true","" +"NM-20406","","","592952","3843760","GW","false","" +"NM-02293","","","665090","3574990","GW","false","" +"WL-0205","","","602123","3684758","GW","true","Contact Mike McGee at BLM Roswell office for escort/access to well. Padlock combo 2112." +"NM-05963","","","250703","3574530","GW","false","" +"NM-19149","","","567600","3818680","GW","false","" +"NM-18640","","","657652","3810820","GW","false","" +"EB-147","","","410031","3945993","GW","true","Off NW corner of Goodwill Store @ 3060 Cerrillos" +"NM-16007","","","648079","3756550","GW","false","" +"NM-06044","","","242247","3576650","GW","false","" +"NM-23117","","","350923","3896590","GW","false","" +"NM-09921","","","569868","3635600","GW","false","" +"NM-21066","","","259810","3864160","GW","false","" +"NM-17669","","","529157","3790700","GW","false","" +"NM-24007","","","397929","3923600","GW","false","" +"NM-20191","","","544499","3839340","GW","false","" +"NM-18300","","","612129","3803830","GW","false","" +"SB-0367","TWDB 4807811","","481846","3526874","GW","false","" +"NM-12335","","","556243","3672520","GW","false","" +"NM-08022","","","607825","3611330","GW","false","" +"NM-17399","","","534825","3786410","GW","false","" +"NM-27132","WG-02","","431752","4043980","GW","false","" +"NM-27216","","","546859","3542000","GW","false","" +"NM-18473","","","399984","3806370","GW","false","" +"NM-26564","","","589573","4067120","GW","false","" +"MI-0037","","","546233","3899954","GW","true","Topographic situation: Plains" +"NM-06667","","","344081","3587230","GW","false","" +"NM-18782","","","647942","3812380","GW","false","" +"NM-16382","","","679351","3770710","GW","false","" +"SV-0037","07 La Aguapa","","377791","3901474","GW","false","Unit 3 Lot 103" +"NM-10859","","","280536","3650850","GW","false","" +"NM-07875","","","677097","3610650","GW","false","" +"NM-24750","","","406619","3944480","GW","false","" +"NM-13499","","","558460","3691420","GW","false","" +"NM-26710","","","585191","4081190","GW","false","" +"AB-0094","S106","","337709","3823890","GW","true","" +"NM-09979","","","616231","3636770","GW","false","" +"NM-24523","","","677021","3940330","GW","false","" +"NM-14936","","","663401","3725650","GW","false","" +"NM-05720","","","642913","3568800","GW","false","" +"NM-26909","PW-003","","372056","3907534","GW","true","" +"SV-0033","25 Canon Escondi","","376713","3898851","GW","false","Unit 3 Lot 28" +"NM-09461","","","554977","3630300","GW","false","" +"MI-0208","","","514761","3940318","GW","true","Topographic situation: Plateau" +"NM-17917","","","676869","3798950","GW","false","" +"NM-09681","","","554966","3632330","GW","false","" +"EB-383","","","404020","3936245","GW","true","NM State Penitentiary, north end, central well in line" +"NM-08991","","","190378","3629520","GW","false","" +"NM-15361","","","661487","3741300","GW","false","" +"NM-16649","","","669914","3776290","GW","false","" +"NM-20698","","","673740","3852450","GW","false","" +"TO-0446","10N7E27.331","","391620","3880030","GW","true","" +"NM-01130","","","678860","3861580","GW","false","" +"NM-13651","","","549017","3693430","GW","false","" +"NM-10961","","","284538","3652050","GW","false","" +"NM-19322","","","671622","3825480","GW","false","" +"TB-0123","","","419855","3721903","GW","true","From golf course S of Hwy 380 east of Carrizozo, turn S on Water Canyon Rd. Go around curve to W and S to water plant on right, across to old house to windmill" +"NM-00660","","","283501","3689620","GW","false","" +"NM-20538","","","613967","3847450","GW","false","" +"NM-10689","","","406428","3646350","GW","false","" +"WL-0278","","","118296","3535597","GW","true","From I-10, take exit 5, go south on NM-80 for ~26 miles to Night Hawk Road on left. Turn east (left) on Night Hawk Rd to address immediately on left. Well is behind Lodge next to pump house on north side." +"NM-17555","","","326558","3790560","GW","false","" +"NM-14935","","","647533","3725420","GW","false","" +"NM-26154","","","430248","4024690","GW","false","" +"NM-22531","","","374872","3888200","GW","false","" +"NM-18943","","","595034","3814330","GW","false","" +"QY-0151","11.29.13.133a","","607052","3893510","GW","true","" +"NM-22372","","","600294","3886110","GW","false","" +"NM-12534","","","559640","3676120","GW","false","" +"NM-03011","","","638874","3783680","GW","false","" +"TO-0117","4N14E19.412","","453055","3824070","GW","true","" +"NM-27745","","","608263","3782500","GW","false","" +"NM-28323","RL-08","","435226","4005271","GW","false","" +"NM-06081","","","586905","3574630","GW","false","" +"NM-25957","","","202363","4010840","GW","false","" +"NM-15032","","","197983","3732990","GW","false","" +"NM-21813","","","359445","3881100","GW","false","" +"NM-25237","","","476260","3963470","GW","false","" +"QY-0189","11.30.14.221","","616050","3894270","GW","true","" +"NM-09832","","","222818","3637850","GW","false","" +"NM-09022","","","195023","3629720","GW","false","" +"NM-25620","","","478768","3983450","GW","false","" +"NM-04157","","","345653","3537550","GW","false","" +"BW-0779","2.16.17.22.400","","488694","3937950","GW","true","" +"NM-09294","","","231144","3632000","GW","false","" +"NM-26639","","","194152","4077530","GW","false","" +"NM-08549","","","563264","3619660","GW","false","" +"NM-28266","ICP-WS-02","","656463","3568762","GW","false","" +"NM-01651","","","310556","4038410","GW","false","" +"NM-28007","","","347016","3868930","GW","false","" +"NM-03579","","","406042","3982420","GW","false","" +"NM-22205","","","650548","3885200","GW","false","" +"BC-0141","124","","358638","3895800","GW","true","" +"NM-04207","","","246816","3541430","GW","false","" +"NM-18168","","","631906","3801870","GW","false","" +"QU-094","MW-32","","446026","4062515","GW","true","See Chevron map of monitoring wells. MW-33 and MW-36 next to each other. MW-36 is north of MW-33." +"TO-0130","5N7E6.331","","385424","3838690","GW","true","" +"NM-05675","","","273798","3569890","GW","false","" +"NM-16877","","","677990","3780270","GW","false","" +"NM-03712","","","164048","3490640","GW","false","" +"NM-11250","","","626457","3655840","GW","false","" +"NM-24449","","","436524","3937380","GW","false","" +"NM-25930","","","404513","4005240","GW","false","" +"NM-27695","","","642647","3796360","GW","false","" +"BW-0438","18S10E6.224","","410624","3626190","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18786","","","593096","3811660","GW","false","" +"NM-02875","","","681294","3722460","GW","false","" +"AB-0212","S268","","345603","3886620","GW","true","" +"NM-24907","","","408687","3947450","GW","false","" +"NM-06020","","","561728","3573090","GW","false","" +"EB-158","","","400343","3956715","GW","true","Old corral and windmill at confluence of Buckman Rd and Canada Ancha" +"NM-11510","","","620954","3660610","GW","false","" +"SB-0908","26.18.33.111","","489126","3541085","GW","true","" +"SD-0121","10N.4.5E.24.344","","367202","3881530","GW","true","" +"NM-17312","","","651452","3786360","GW","false","" +"NM-01912","","","344307","3538800","GW","false","" +"NM-16654","","","649587","3776470","GW","false","" +"NM-21916","","","361661","3881800","GW","false","" +"MG-044","","","294306","3771030","GW","false","" +"NM-09114","","","286667","3628970","GW","false","" +"OG-0093","","","655675","3811196","GW","true","From int of SR 311 and US 60, west of Clovis, drive 2 miles north on SR 311. Turn right east on SR 245. Drive 1 mile east. Turn right south on dirt. Drive 0.25 miles south to well. Well is on west side of road." +"NM-09795","","","398565","3634230","GW","false","" +"QY-0096","10.33.12.422","","647097","3885900","GW","true","" +"NM-24231","","","436432","3931470","GW","false","" +"NM-23221","","","414249","3897980","GW","false","" +"NM-02551","","","412214","3619350","GW","false","" +"TO-0046","3N9E33.433","","407862","3811020","GW","true","" +"NM-12638","","","635586","3678940","GW","false","" +"NM-20593","","","340577","3849630","GW","false","" +"PC-134","","","361485","3911696","GW","true","" +"NM-02529","","","561987","3615590","GW","false","" +"RA-066","","","425207","4004172","GW","true","Next to driveway" +"NM-22249","","","376096","3885170","GW","false","" +"BC-0089","76","","375211","3888430","GW","true","" +"NM-12561","","","558628","3676510","GW","false","" +"CX-0099","23N24E10a","","555392","4011030","GW","true","" +"NM-02525","","","673269","3616350","GW","false","" +"BW-0156","13S9E20.234a","","397026","3671070","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01826","M-011","","257494","3526380","GW","false","From NM-01819, continue west another 1.1 miles. Go north on San Diego/B005 for 0.8 miles. Large locked gate labeled ""Gomez Farms"". Unable to access well." +"TO-0482","1S13E5.213","","444683","3790980","GW","true","" +"NM-10899","","","658830","3650460","GW","false","" +"DE-0254","","","663134","3634547","GW","false","" +"NM-14173","","","621094","3699330","GW","false","" +"QY-0066","10.31.17.244","","621339","3884190","GW","true","" +"QU-074","MW-9B","","444658","4061371","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road area near/above Duran property (QU-526?). MW-9A & MW-9B in same well box next to each other. Recovery well ? In shed near these wells." +"SD-0023","7N.7E.4.313","","389398","3858510","GW","true","" +"BW-0017","22S4E1.431","","360215","3587810","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24428","","","398640","3937360","GW","false","" +"NM-24495","","","419517","3938320","GW","false","" +"TS-036j","","","436166","4042588","SP","true","Small spring on east side." +"NM-25306","","","240316","3970700","GW","false","" +"NM-09666","","","553329","3632170","GW","false","" +"NM-06304","","","574498","3579520","GW","false","" +"AB-0222","S278","","345523","3921880","GW","true","" +"NM-13001","","","656752","3686040","GW","false","" +"NM-22790","","","613675","3891170","GW","false","" +"NM-05443","","","584132","3565310","GW","false","" +"NM-28054","","","239896","3893750","GW","false","" +"NM-11761","","","554143","3663640","GW","false","" +"NM-01315","","","370683","3908310","GW","false","" +"MG-046","","","294830","3770801","GW","true","Heading west on Hwy 60 from Socorro, turn left (south) on Kelly Road after the USGS Magdalena Ranger Station. Drive 2 miles and stay right at split in road to Hop Canyon Rd, drive 3.1 miles and look for Lucky Signs on left of road. Make right thru Celestial View gate, drive past barn on left to smaller bldgs ahead. Well is in trees ~75-100 ft west of house with black bucket over casing." +"NM-23899","","","401837","3918960","GW","false","" +"NM-09756","","","222089","3636910","GW","false","" +"NM-24635","","","405761","3941870","GW","false","" +"NM-04423","","","134017","3552930","GW","false","" +"NM-08015","","","558760","3610860","GW","false","" +"NM-10045","","","542153","3637130","GW","false","" +"NM-20205","","","628129","3840270","GW","false","" +"SM-0238","","","452628","3635613","GW","true","1914 Rio Penasco Rd. - South of Mayhill near Curtis Canyon. Got to 3rd driveway on left, well in doghouse structure in between several sheds. 25 meters on left." +"NM-17405","","","669722","3788310","GW","false","" +"NM-01409","","","170352","3938680","GW","false","" +"NM-08280","","","675613","3616420","GW","false","" +"RA-042","","","389263","4006352","GW","true","" +"NM-27991","","","351495","3879190","GW","false","" +"NM-28182","","","663878","4010450","GW","false","" +"NM-20554","","","674932","3848590","GW","false","" +"NM-24796","","","408713","3945140","GW","false","" +"NM-14277","","","543355","3699930","GW","false","" +"NM-04387","","","346603","3546590","GW","false","" +"NM-11781","","","400636","3664180","GW","false","" +"PC-070","PW-125","","368755","3907578","GW","true","" +"CX-0126","33","","532900","4046680","GW","true","5 1/2 miles northwest of Maxwell" +"CX-0074","24N21E35.41","","529193","4013670","GW","true","" +"DA-0201","23S2E6.1","","332444","3579620","GW","true","" +"NM-13512","","","553548","3691630","GW","false","" +"NM-07274","","","366601","3598730","GW","false","" +"HS-051","TC-051","","290048","3667712","GW","true","101 Austin: Riverbend North; directly north across the street fromm the riverbend spa on Austin St. North of parking lot between lot and bungalow with painting on it" +"NM-10257","","","279189","3642900","GW","false","" +"NM-08942","","","557482","3624430","GW","false","" +"NM-24162","","","404600","3929710","GW","false","" +"SB-0715","TWDB 4915904","","391014","3517089","GW","false","" +"NM-26592","","","585287","4069110","GW","false","" +"NM-10508","","","628650","3645240","GW","false","" +"NM-27392","","","668891","3631620","GW","false","" +"TB-0314","","","403872","3656609","GW","true","Going S on Hwy 54 from Tularosa (St Francis Dr.), turn right (west) onto Radio Rd, then left (south) onto Riata Rd. Continue along Riata Rd across railroad and proceed to address on W side of road. Well is in pump house north of house and next to stable." +"NM-25283","","","149754","3972410","GW","false","" +"NM-06518","","","260953","3586050","GW","false","" +"NM-15625","","","652401","3746480","GW","false","" +"EB-575","","","417400","3961020","GW","true","" +"TO-0225","6N8E11.42","","402753","3846820","GW","true","" +"NM-24499","","","667894","3939630","GW","false","" +"BW-0428","18S9E11.144","","407209","3625530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19081","","","641782","3817890","GW","false","" +"NM-25162","","","296483","3960930","GW","false","" +"NM-02453","NH-018","","276912","3600450","GW","false","" +"NM-16039","","","677554","3758500","GW","false","" +"NM-08062","","","649814","3613170","GW","false","" +"SD-0079","9N.6E.9.222","","381694","3876760","GW","true","" +"NM-15722","","","566315","3747580","GW","false","" +"DE-0268","","","663128","3634500","GW","false","" +"NM-05954","","","239971","3574710","GW","false","" +"NM-23191","","","188549","3902440","GW","false","" +"NM-15412","","","340120","3741880","GW","false","" +"NM-22850","","","377100","3892000","GW","false","" +"MI-0042","","","565022","3901078","GW","true","Topographic situation: Valley" +"UC-0008","","","659005","4007732","GW","false","" +"NM-00080","","","361204","3551460","GW","false","" +"TO-0049","3N11E5.444","","426159","3819020","GW","true","" +"NM-13906","","","546940","3695450","GW","false","" +"NM-06440","","","573513","3581950","GW","false","" +"QY-0198","11.30.15.224","","614739","3894160","GW","true","" +"NM-20491","","","638065","3846330","GW","false","" +"SB-0553","TWDB 4854403","","465672","3450161","GW","false","" +"NM-05145","","","237156","3563130","GW","false","" +"NM-24698","","","401553","3943580","GW","false","" +"NM-24039","","","473888","3924560","GW","false","" +"NM-22627","","","349605","3889730","GW","false","" +"SO-0266","NRCS 5","","327972","3764152","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Turn left (west) on Busquceito, then left before old home to locked gate. Will need access. Follow to next left (Hickox Rd?) to well on left hand (east) side of road. Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"SV-0140","14 Via Alcalde","","380660","3901000","GW","false","" +"SD-0174","10N.5E.30.342","","368470","3880350","GW","true","" +"NM-11540","","","560074","3660260","GW","false","" +"NM-24912","","","245821","3950740","GW","false","" +"NM-21827","","","348457","3881560","GW","false","" +"NM-09400","","","407705","3630110","GW","false","" +"NM-02892","","","653895","3727120","GW","false","" +"NM-15668","","","644933","3747350","GW","false","" +"TV-114","","","442752","4021868","GW","true","From Hwy 68 to Camino de Golondrina. Nice stucco house, second from end of road. Well to east of house under black trash can. Very cooperative, nice people." +"NM-26324","","","472753","4045190","GW","false","" +"NM-22550","","","433744","3887830","GW","false","" +"NM-24353","","","397030","3935310","GW","false","" +"NM-22906","","","388545","3892590","GW","false","" +"NM-21749","","","368046","3880170","GW","false","" +"NM-08050","","","660144","3612590","GW","false","" +"NM-21364","","","379359","3871510","GW","false","" +"NM-06047","","","218383","3577320","GW","false","" +"SD-0053","8N.6E.12.444","","385361","3865760","GW","true","" +"NM-15857","","","665153","3752390","GW","false","" +"NM-04005","","","256112","3529120","GW","false","" +"NM-14969","","","150484","3732010","GW","false","" +"NM-25486","","","647711","3976780","GW","false","" +"NM-09645","","","211622","3636010","GW","false","" +"EB-517","","","417838","3934614","GW","true","" +"BC-0154","135","","379804","3891190","GW","true","" +"NM-18313","","","657690","3804580","GW","false","" +"NM-25779","","","456344","3995520","GW","false","" +"NM-20574","","","595500","3848230","GW","false","" +"NM-09397","","","406975","3629930","GW","false","" +"QU-529","","","447808","4061653","SP","true","House is located at 35 Red River Road before the bridge." +"SO-0042","2N5E7.14","","365555","3808990","GW","true","" +"OG-0034","","","642453","3817926","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2 miles on CR 17. Turn left south on CR X. Drive 1 mile. Turn right west onto dirt. Drive 0.3 miles to well." +"NM-03135","","","575709","3812400","GW","false","" +"NM-19082","","","639665","3817850","GW","false","" +"NM-11140","","","480673","3652760","GW","false","" +"NM-16659","","","675974","3777080","GW","false","" +"NM-14566","","","627381","3710280","GW","false","" +"NM-03396","S126","","348221","3890210","GW","false","" +"NM-09935","","","410229","3635940","GW","false","" +"NM-17514","","","637941","3789450","GW","false","" +"NM-26047","","","165088","4022140","GW","false","" +"QY-0999","9.35.22.144a","","662614","3873720","GW","true","" +"NM-12753","","","545179","3679730","GW","false","" +"SB-0920","","","469654","3579721","GW","true","From Pinon, NM, take NM-24/NM-506 east for 2.9 mi, turn S (right) onto Cornucopia Canyon Rd/E038/NM-506 and continue for 19.3 mi. Look for large grey/blue tank and turn right. Well is through gate. From Ellett property, go south on Cornucopia Canyon Rd/E038/NM-506 for 4 mi." +"TC-240","CER-24","","439515","4066221","GW","true","From Hwy 522, go west on Rt. 378 towards Wild Rivers. Go east on 2-track across from Chiflo Rec. area. Proceed thru gate and go ~1/8 mile to adobe well house. Well on north side of well house inside fenced area." +"NM-07847","","","674027","3610230","GW","false","" +"NM-23061","","","288691","3896740","GW","false","" +"SM-2016","","","444202","3640849","M","true","" +"UC-0167","","","597555","4077349","GW","false","" +"NM-09959","","","656102","3637440","GW","false","" +"NM-10651","","","546141","3645770","GW","false","" +"NM-18551","","","649806","3808530","GW","false","" +"NM-12503","","","555425","3675320","GW","false","" +"NM-09153","","","669828","3628550","GW","false","" +"NM-02193","","","266543","3567650","GW","false","" +"NM-01833","","","368581","3525620","GW","false","" +"NM-27529","","","679475","3776290","GW","false","" +"NM-12101","","","538496","3668370","GW","false","" +"NM-01122","","","178247","3862550","GW","false","" +"ED-0269","23S22E24.222","","532907","3573240","GW","true","" +"ED-0293","23S27E24.342","","580422","3572380","GW","true","" +"NM-13850","","","546114","3695230","GW","false","" +"NM-17838","","","649344","3796560","GW","false","" +"NM-05157","","","672753","3561440","GW","false","" +"NM-06981","","","176335","3596750","GW","false","" +"NM-28276","ER-7","","449863","4074550","GW","false","" +"NM-04791","","","234818","3557950","GW","false","" +"NM-13962","","","545570","3695660","GW","false","" +"NM-28243","","","193341","4079080","GW","false","" +"NM-10571","","","556479","3645150","GW","false","" +"NM-12868","","","609843","3682440","GW","false","" +"NM-12830","","","138946","3687750","GW","false","" +"NM-27149","","","316904","3849900","GW","true","" +"QY-0101","10.34.10.233","","652945","3886370","GW","true","" +"NM-00654","","","440917","3686030","GW","false","" +"MI-0211","","","532447","3945016","GW","true","Topographic situation: Plateau" +"NM-15467","","","672956","3742980","GW","false","" +"NM-15031","","","150835","3734560","GW","false","" +"NM-22486","","","374713","3887710","GW","false","" +"NM-18774","","","653150","3812370","GW","false","" +"SO-0251","SMC-W05B","","314798","3728409","GW","true","" +"NM-06374","","","256573","3583380","GW","false","" +"NM-01056","","","554822","3839700","GW","false","" +"NM-00052","","","668570","3545110","GW","false","" +"NM-18631","","","368946","3809590","GW","false","" +"NM-12165","","","558668","3669830","GW","false","" +"TO-0221","6N8E2.333","","401557","3848040","GW","true","" +"NM-16172","","","328624","3761960","GW","false","" +"DE-0064","","","540571","3592145","GW","false","" +"NM-04223","","","343723","3540100","GW","false","" +"NM-08792","","","555123","3622910","GW","false","" +"NM-13191","","","670494","3688770","GW","false","" +"NM-06829","","","569749","3589560","GW","false","" +"NM-26593","","","583254","4069090","GW","false","" +"NM-09393","","","554175","3629610","GW","false","" +"NM-07579","","","552043","3604570","GW","false","" +"NM-23880","","","640878","3918910","GW","false","" +"NM-15615","","","328904","3746150","GW","true","" +"NM-16022","","","621500","3756630","GW","false","" +"ED-0331","24S26E24.11","","570576","3563830","GW","true","" +"NM-07394","","","661488","3602040","GW","false","" +"SA-0471","6S14W28.330a","","194989","3739670","GW","true","" +"NM-11226","","","560497","3654690","GW","false","" +"QY-0715","6.30.28.333","","612238","3841410","GW","true","" +"NM-21319","","","640489","3870650","GW","false","" +"NM-08017","","","650329","3611850","GW","false","" +"NM-23840","","","417908","3916550","GW","false","" +"NM-25183","","","234130","3963790","GW","false","" +"QY-0635","5.29.8.433","","601620","3836430","GW","true","" +"PC-029","PW-052","","372266","3906835","GW","true","From I-25, take NM-165 east (through Placitas) about 9 miles. NM-165 curves to the south. Turn east (left) onto Perdiz Canyon Road. Follow the road about 0.6 miles, as it winds through homes and turns north, then turn left (west) into driveway at 59 Perdiz Canyon. Well is in front yard near road and barn." +"NM-10740","","","667333","3648230","GW","false","" +"NM-24870","","","408551","3946530","GW","false","" +"NM-03387","S129","","350180","3889740","GW","false","" +"SO-0021","2N1E31.44","","327830","3802440","GW","true","" +"NM-02411","","","280235","3591220","GW","false","" +"NM-22431","","","346606","3887530","GW","false","" +"BW-0839","4.7.4.23.312","","360367","3728110","GW","true","" +"EB-426","","","413332","3934357","GW","true","6 Azul Way" +"NM-24281","","","477110","3932780","GW","false","" +"SO-0023","2N2E9.33","","339628","3808630","GW","true","" +"SM-0198","","","497691","3643521","GW","true","Site visit by Jeremiah Morse in June 2007" +"ED-0322","24S21E23.34","","521032","3562970","GW","true","" +"NM-12322","","","292983","3674370","GW","false","" +"NM-15034","","","332044","3729840","GW","false","" +"SD-0276","11N.6E.28.232","","381371","3890640","GW","true","" +"NM-25890","","","413128","4002500","GW","false","" +"TO-0325","7N11E14.213","","431201","3855370","GW","true","" +"TV-238","COR-17","","441602","4026232","GW","true","Follow Los Cordovas Rd towards the treatment plant. On the right, find address; large gravel drive abutted by a house and open face steel garage. Well is in a vault to the right as you drive in." +"NM-16561","","","396691","3773940","GW","false","" +"NM-18675","","","613020","3810440","GW","false","" +"PP-068","PW-73","","436793","4003860","GW","true","" +"NM-03474","","","677301","3914690","GW","false","" +"TV-155","COR-20","","440968","4026311","GW","true","Take SR 68 to SR 96 and turn left (west). Go 2 miles to Los Cordovas Rd and turn right (north). Go 2 miles past sewer plant onto pavement. At top of rise turn left into driveway. House @ back. Well vault in circle of driveway." +"NM-02835","","","544408","3701010","GW","false","" +"NM-20380","","","599672","3843250","GW","false","" +"NM-13546","","","629440","3693340","GW","false","" +"TO-0096","4N8E14.433","","401599","3825630","GW","true","" +"NM-19233","","","566330","3821510","GW","false","" +"TV-201","TAL-27","","445909","4020976","GW","true","In Talpa, near refrigerator graveyard just east of Tplq hill. Big house w/red room on Talpa ridge. Well located in vault. Gate code=3369" +"NM-18823","","","668936","3813380","GW","false","" +"BC-0407","410","","","","GW","false","" +"NM-20280","","","602392","3841120","GW","false","" +"NM-26221","","","145471","4038850","GW","false","" +"UC-0116","","","641732","4057153","GW","false","From NESWCD database, not visited by NMBGMR" +"BW-0068","6S9E2.134","","409513","3742320","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13865","","","553037","3695330","GW","false","" +"NM-14638","","","412738","3712760","GW","false","" +"NM-01944","","","239645","3545620","GW","false","" +"NM-15683","","","673374","3748320","GW","false","" +"NM-10411","","","542129","3642890","GW","false","" +"PP-030","PW-32","","438254","4002089","GW","true","" +"NM-15445","","","344269","3742340","GW","false","" +"TO-0421","9N9E33.131","","409254","3869340","GW","true","" +"DE-0206","","","639570","3628425","GW","false","" +"NM-04461","","","533462","3547370","GW","false","" +"NM-02329","","","575830","3576900","GW","false","" +"NM-13933","","","556911","3695600","GW","false","" +"NM-20266","","","542229","3840490","GW","false","" +"NM-25212","","","467020","3962050","GW","false","" +"SB-0919","","","464478","3557814","GW","true","~25 mi south of Alamogordo on Hwy 54, take Rt 506 east ~22 miles. At fork take F052 south. Somewhere along the way F052 turns into F037; continue south. At intersection with F001, turn south (right) on F001. Go past Hat Ranch on right to F021 (aka Dell City Road), follow until it joins with F018 and stay on F018 to residence off of F018, south of Cornudas Mtn and just before intersection of F011. Drive 8.4 mi W on F018 to F001 and take a right, go ~300 m and turn right on F026, go 12.5 mi E and look for gravel 2-track on N side of road that leads to cattle pasture. Enter fence from E side and go to N gate. Well head is buried under pile of dirt, under old WM tower." +"NM-16941","","","671434","3781500","GW","false","" +"NM-06779","","","671982","3589680","GW","false","" +"NM-14636","","","545465","3712440","GW","false","" +"ED-0002","16S23E15.323","","529739","3642250","GW","true","" +"AB-0030","S035","","373965","3944330","GW","true","" +"NM-06503","","","366141","3583770","GW","false","" +"NM-16252","","","562530","3764440","GW","false","" +"TS-036k","","","436161","4042578","SP","true","Small spring on east side." +"NM-21010","","","636190","3859550","GW","false","" +"MG-042","","","293446","3776345","GW","true","" +"DA-0085","23S2E7.412","","333127","3577530","GW","true","" +"NM-17277","","","660344","3785860","GW","false","" +"NM-19471","","","603588","3827550","GW","false","" +"SA-0441","5S12W9.430","","213861","3753240","GW","true","" +"NM-13898","","","555594","3695500","GW","false","" +"QY-0594","5.29.19.244","","600588","3834020","GW","true","" +"NM-20713","","","645576","3852300","GW","false","" +"WL-0187","","","203748","3885630","GW","true","From west I-40 out of ABQ, exit @ Grants to Hwy 53 south. Drive 34.5 miles to El Morro Fire Department. Just west of the Fire Department is a road going north, which is El Morro Way (no sign but dirt road starts on west side of El Morro fire station). Go north on El Morro Way through gate (combo 3876# on 2/28/2024), then drive ~0.3 mi, El Morro Way turns west. Stay on El Morro Way for ~0.25 mi, turn north, which is still El Morro Way. Drive about ~1.0 mi, then turn west onto Road to Ruins. Drive about 0.2 miles then bear right to stay on Road to Ruins. Look for sign for Beeflower Lane but donโ€™t turn; drive 045 miles past Beeflower Lane, the Sanchez driveway is on the right. Turn onto Sanchez driveway and follow for 0.3 miles to Sanchez home. The well is on the east side of the house, only a few feet from the east wall." +"NM-18754","","","324433","3812270","GW","false","" +"NM-14274","","","546531","3699910","GW","false","" +"NM-17151","","","650257","3784250","GW","false","" +"NM-09614","","","559182","3631650","GW","false","" +"NM-25017","","","415076","3950310","GW","false","" +"NM-28345","163904","","169118","3630570","SP","false","" +"NM-12012","","","303572","3668760","GW","false","" +"NM-00196","","","580693","3576330","GW","false","" +"NM-11325","","","633050","3657930","GW","false","" +"NM-05249","","","673664","3563370","GW","false","" +"BW-0271","15S10E7.412","","405019","3654380","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09279","","","447202","3628400","GW","false","" +"NM-09823","","","558986","3634050","GW","false","" +"NM-05811","","","670863","3570930","GW","false","" +"NM-05013","","","342835","3559150","GW","false","" +"NM-02600","","","332803","3629890","GW","false","" +"NM-25668","","","401608","3986870","GW","false","" +"NM-22003","","","652711","3883110","GW","false","" +"SM-4067","","","479626","3652907","PS","true","Stream flow measurement by Patrick Walsh" +"NM-21089","","","672846","3863440","GW","false","" +"NM-07364","","","556762","3600160","GW","false","" +"SO-0229","SBB-W07B","","322377","3733198","GW","true","" +"NM-27011","","","255306","3791000","GW","true","" +"NM-14889","","","545520","3722570","GW","false","" +"EB-421","","","419688","3937594","GW","true","42 Woods Loop" +"NM-07123","","","679933","3596500","GW","false","" +"NM-21452","","","413812","3873120","GW","false","" +"NM-24061","","","483115","3925650","GW","false","" +"ED-0096","21S25E26.233","","559921","3590640","GW","true","" +"CX-0026","28N26E25.4","","578531","4053930","GW","true","" +"NM-20085","","","608079","3837830","GW","false","" +"TB-0197","","","404296","3702847","GW","true","From Oscuro - west on Grand Ave (Orr) thru Hefker-Vega gate. Cross cement crossing and take road to SE. Keep straight and bear SW to circle to WM. Return to main road on same." +"NM-03983","","","252088","3528050","GW","false","" +"NM-05238","","","168077","3566760","GW","false","" +"NM-21768","","","609279","3880050","GW","false","" +"NM-01579","","","531802","3993820","GW","false","" +"NM-01739","","","167410","3485040","GW","false","" +"NM-08808","","","559598","3623060","GW","false","" +"NM-05951","","","243215","3574560","GW","false","" +"WL-0208","","","186570","3894424","GW","true","From Ramah, drive southeast 1 mile to Canyon/Timberlake Road, drive east 3.5 miles to 338 Timberlake Road. Well is 100 ft west of house." +"NM-23371","","","383042","3901440","GW","false","" +"NM-24141","","","663406","3930330","GW","false","" +"NM-25413","","","412709","3972830","GW","false","" +"NM-08161","","","208552","3617440","GW","false","" +"NM-06854","","","571417","3589970","GW","false","" +"EB-192","","","415018","3959199","GW","true","225A Tesuque Village Rd; Last drive on L past P.O. (Rt 4, Box 56); irrigation well by highway at front of drive just behind ""Stedmans"" sign" +"NM-14995","","","624134","3727920","GW","false","" +"NM-25760","","","404850","3994940","GW","false","" +"NM-22162","","","385325","3884060","GW","false","" +"MI-0319","","","471259","3958759","SP","true","Topographic situation: Valley" +"NM-03447","","","652132","3899440","GW","false","" +"NM-11956","","","570247","3666150","GW","false","" +"NM-16498","","","587952","3772310","GW","false","" +"NM-25515","","","250939","3982240","GW","false","" +"TO-0462","10N8E35.411","","403556","3878680","GW","true","" +"NM-04558","","","641927","3551380","GW","false","" +"OG-0049","","","646346","3814433","GW","true","" +"NM-18112","","","605365","3801110","GW","false","" +"NM-25246","","","165686","3970190","GW","false","" +"NM-04975","","","129510","3564110","GW","false","" +"NM-20364","","","534895","3842340","GW","false","" +"NM-22066","","","626438","3883320","GW","false","" +"NM-10851","","","608532","3648940","GW","false","" +"ED-0170","22S25E9.241","","556986","3586140","GW","true","" +"NM-22618","","","187945","3893730","GW","false","" +"NM-25565","","","403452","3981490","GW","false","" +"NM-01926","","","347491","3541060","GW","false","" +"NM-20974","","","641283","3858680","GW","false","" +"NM-04217","","","242783","3541960","GW","false","" +"NM-18554","","","136071","3814390","GW","false","" +"NM-07221","","","557721","3596680","GW","false","" +"PC-056","PW-092","","372087","3909353","GW","true","" +"WL-0182","","","368590","3911137","GW","true","From north on I-25 out of ABQ, take Bernalillo exit, then take Hwy 165 east. Drive 6.7 miles through Placitas then turn north (left) on Camino de las Huertas (a very curvy road). Stay on this for 2.3 miles then turn left onto Windmill Trail and drive 0.1 miles to house on right (north side). Well is in yard west of house." +"NM-02824","","","458259","3696850","GW","false","" +"NM-08575","","","206293","3623980","GW","false","" +"NM-21349","","","344440","3871810","GW","false","" +"NM-14372","","","267402","3704570","GW","false","" +"NM-17700","","","215365","3795500","GW","false","" +"NM-02890","","","149038","3731610","GW","false","" +"NM-12375","","","560358","3672980","GW","false","" +"NM-21148","","","655216","3865400","GW","false","" +"SV-0007","09 Calle Lomita","","377227","3900148","GW","false","Unit 3 Lot 81" +"EB-458","","","401229","3943500","O","true","" +"WL-0039","","","290172","3767481","GW","true","From West on HWY 60 out of Magdelena, turn left on HWY 107 for about 7.5 miles. Turn left on Rt. 234, just past MM 34. Within 0.5 mile, bear left at fork in road to FR 46 for ~2 miles. At gate in road, turn left into ~0.25 mile to house. Well is north of garden and east of solar array next to shed in covered box. Dogs are Sky (orange cattle dog) and Ani (smaller black)." +"NM-03320","","","415253","3870850","GW","false","" +"NM-21942","","","351525","3882130","GW","false","" +"NM-08145","","","303646","3614960","GW","false","" +"QY-0212","11.30.20.423a","","611567","3891810","GW","true","" +"MI-0049","","","611169","3902209","GW","true","Topographic situation: Plains" +"TO-0084","4N8E9.343","","397947","3827270","GW","true","" +"NM-19588","","","402956","3829390","GW","false","" +"NM-02109","","","134289","3565580","GW","false","" +"SV-0083","32 Prado Vista","","377223","3898866","GW","false","Unit 3 Lot 8" +"PC-010","PW-022","","368948","3910621","GW","true","" +"NM-21920","","","249158","3884200","GW","false","" +"NM-14749","","","429253","3717520","GW","false","" +"NM-22002","","","611834","3882490","GW","false","" +"NM-02602","","","173337","3634360","GW","false","" +"OG-0075","","","652014","3808320","GW","true","" +"BW-0085","8S9E29.414","","404841","3716380","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"JM-059","","","296489","3653186","GW","true","" +"NM-04028","","","311715","3530040","GW","false","" +"NM-12188","","","559754","3670080","GW","false","" +"TS-107","","","436927","4044148","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"QY-0632","5.29.8.232","","601716","3837360","GW","true","" +"NM-08596","","","191117","3624810","GW","false","" +"NM-22822","","","349418","3892170","GW","false","" +"SB-0298","TWDB 4807515","","482698","3533738","GW","false","" +"EB-127","","","405159","3940950","GW","true","" +"NM-17635","","","654898","3791600","GW","false","" +"NM-01967","","","135956","3552030","GW","false","" +"BW-0595","19S6E12.1","","379330","3616100","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01205","","","339857","3882370","GW","false","" +"NM-00444","","","675421","3638940","GW","false","" +"ED-0148","21S27E32.112","","573813","3589700","GW","true","" +"NM-03106","","","574803","3805790","GW","false","" +"QY-0575","5.29.14.321","","606008","3835420","GW","true","" +"NM-02390","NH-012","","277560","3586928","GW","false","Three miles SW from Jim Hyatt house, turn SW at cattleguard just before entering house yard. Follow 2-track towards Florida Mtns. on the skyline." +"NM-02910","","","669690","3740080","GW","false","" +"AB-0121","CRL-W2","","344793","3897020","GW","true","" +"NM-00994","","","662366","3819480","GW","false","" +"AR-0229","","","242531","4091734","GW","true","Heading north on Hwy 550 from Aztec, turn right (east) on Rd 2350 (1/4 mile after Hwy 550 crosses Animas River). House is on northeast corner of Hwy 550 & Rd 2350. Sign outside reads ""Antiques and General Store"". Well is on north side of house." +"NM-13169","","","623513","3687870","GW","false","" +"ED-0348","25S26E19.111","","562521","3554110","GW","true","" +"NM-07637","","","658622","3606680","GW","false","" +"NM-19156","","","666018","3820940","GW","false","" +"NM-03124","","","590838","3811190","GW","false","" +"NM-09253","","","406856","3628300","GW","false","" +"NM-08237","","","300986","3616240","GW","false","" +"NM-16540","","","671098","3774590","GW","false","" +"NM-02830","","","556684","3698950","GW","false","" +"NM-17943","","","626313","3797820","GW","false","" +"NM-28373","CN-2016-014","","605067","3610265","GW","true","" +"NM-06848","","","573690","3589890","GW","false","" +"QY-0731","6.31.6.111","","618564","3849240","GW","true","" +"NM-21159","","","382272","3865340","GW","false","" +"NM-22323","","","373878","3885940","GW","false","" +"NM-00168","","","584525","3571440","GW","false","" +"NM-02491","","","202796","3612520","GW","false","" +"NM-14300","","","542913","3700450","GW","false","" +"NM-27025","","","325704","3762390","GW","true","" +"NM-07814","","","675627","3609740","GW","false","" +"SB-0804","TWDB 5008101","","491486","3427697","GW","false","" +"TB-0210","","","421234","3738617","GW","true","Hwy 54 north from Carrizozo to MM 133, look for green gate on W side of Hwy. Go NW from gate 1 mile to WM w/ solar wind generator." +"NM-13765","","","544257","3694700","GW","false","" +"NM-06046","","","604802","3573940","GW","false","" +"NM-25354","","","386227","3970570","GW","false","" +"NM-23089","","","374801","3895880","GW","false","" +"NM-25368","","","417279","3970910","GW","false","" +"NM-27278","","","338478","3578410","GW","false","" +"NM-21897","","","393826","3881180","GW","false","" +"NM-10544","","","429787","3644800","GW","false","" +"TS-012","","","437853","4062971","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"QY-0681","6.28.23.312","","595961","3843650","GW","true","" +"NM-24566","","","627727","3940440","GW","false","" +"NM-12923","","","642502","3683940","GW","false","" +"SM-0224","","","480751","3671992","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Continue on the county road for 4 miles, at which point the road crosses Monument Canyon arroy. Take road on right, leading to the Wright ranch headquaters. Well located 2 miles past the ranch headquaters, down Monument canyon." +"NM-21448","","","351999","3873480","GW","false","" +"NM-24096","","","403394","3927720","GW","false","" +"NM-00611","","","670253","3668360","GW","false","" +"NM-13306","","","548857","3689180","GW","false","" +"BW-0456","22S6E8.414","","373147","3586390","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TO-0490","6N5E24.224","","375339","3844880","SP","true","" +"NM-01646","","","660829","3543410","GW","false","" +"NM-13541","","","477933","3691850","GW","false","" +"ED-0263","22S30E7.244","","602083","3586240","GW","true","" +"NM-25994","","","667904","4010220","GW","false","" +"EB-160","SF-35","","405066","3959311","GW","true","Windmill; 2 mi north of Santa Fe Ranch entrance; down dirt track to right" +"NM-22025","","","645844","3883220","GW","false","" +"QY-0097","10.33.23.441","","645371","3882380","GW","true","" +"NM-23600","PW-313","","361881","3909470","GW","false","" +"NM-12093","","","670716","3670220","GW","false","" +"NM-26606","","","443806","4070380","GW","false","" +"PC-052","PW-083","","371662","3905971","GW","true","" +"NM-03818","","","225586","3521810","GW","false","" +"NM-28096","","","371854","3905670","GW","false","" +"NM-21226","","","345729","3868650","GW","false","" +"NM-17556","","","643584","3790250","GW","false","" +"NM-22836","","","377678","3891910","GW","false","" +"ED-0162","22S24E7.112","","543069","3586160","GW","true","" +"NM-18967","","","509261","3814440","GW","false","" +"NM-22633","","","381747","3889340","GW","false","" +"NM-25234","","","397534","3963720","GW","false","" +"TV-190","","","440376","4024691","GW","true","Located on Grainger property. Well at old windmill ~10 m from RG-91705." +"NM-01279","","","238605","3903420","GW","false","" +"NM-19559","","","657321","3829880","GW","false","" +"NM-16865","","","660885","3779710","GW","false","" +"NM-13976","","","544536","3695720","GW","false","" +"NM-22367","","","381403","3886300","GW","false","" +"NM-13245","","","552947","3688150","GW","false","" +"NM-02134","","","310926","3562590","GW","false","" +"WL-0171","","","540566","3660013","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well next to dirt road and square, concrete stock tank." +"WL-0022","NM3552728","","330664","3802027","GW","true","Exit 175 (Bernardo) off of I-25, go east on Hwy 60 to Hwy 304. Go south on Hwy 304 for ~6 miles. Well house and tank on hill on right before bend in 304 to La Joya." +"NM-17201","","","537958","3783590","GW","false","" +"BW-0941","","","408296","3639340","GW","true","Shari Kelley visited wells USBR WW01 and USBR WW02 at this facility, but not this well." +"NM-23487","","","391344","3906570","GW","false","" +"MI-0027","","","467467","3902730","GW","true","Topographic situation: Valley" +"RA-007","","","388975","4009742","GW","true","About 100 ft uphill from house." +"QY-0170","11.29.36.131","","607142","3889130","GW","true","" +"AS-036","ES-128","","451527","4041740","GW","true","" +"NM-12822","","","552132","3681000","GW","false","" +"NM-06078","","","350019","3575340","GW","false","" +"NM-02690","","","279610","3650310","GW","false","" +"SB-0254","TWDB 4807313","","485961","3538875","GW","false","" +"NM-02592","","","673721","3627660","GW","false","" +"NM-09202","","","410747","3627090","GW","false","" +"NM-12359","","","143750","3678740","GW","false","" +"NM-00439","","","301268","3638130","GW","false","" +"NM-06094","","","223043","3578240","GW","false","" +"NM-20571","","","671148","3849660","GW","false","" +"NM-08847","","","559518","3623490","GW","false","" +"NM-22202","","","380344","3884710","GW","false","" +"NM-15206","","","664111","3736810","GW","false","" +"NM-20234","","","676584","3842030","GW","false","" +"NM-15738","","","613715","3748560","GW","false","" +"NM-16376","","","294368","3771150","GW","false","" +"NM-23588","","","244285","3911890","GW","false","" +"NM-23755","","","184062","3918920","GW","false","" +"DE-0275","","","663141","3634473","GW","false","" +"NM-18829","","","598013","3812520","GW","false","" +"NM-00345","","","300106","3624340","GW","false","" +"NM-26046","","","251087","4019060","GW","false","" +"BW-0265","15S9E24.242a","","403785","3651560","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00086","","","368630","3551920","GW","false","" +"EB-141","","","413528","3949830","GW","true","North side of Santa Fe River park; south side of W. Alameda, across from Gonzales Elementary Sch" +"NM-23091","","","655472","3896380","GW","false","" +"NM-22399","","","671074","3887480","GW","false","" +"NM-17942","","","645888","3798420","GW","false","" +"UC-0234","","","592107","4017570","GW","false","" +"BC-0251","251","","374444","3886910","GW","true","" +"QU-005","","","449135","4065254","GW","true","21 Camino Sin Salida is the last left on Cabresto Road before entering National Forest. 21 Camino Sin Salida is first house on left at fork at the entrance. Call before visiting and honk horn lightly to announce presence." +"NM-14363","","","678890","3703340","GW","false","" +"NM-20944","","","637793","3857670","GW","false","" +"QY-0975","9.32.13.334","","636406","3874060","GW","true","" +"NM-12450","","","555430","3674340","GW","false","" +"NM-06234","","","221931","3581570","GW","false","" +"NM-08152","","","208653","3617340","GW","false","" +"NM-10777","","","653120","3648640","GW","false","" +"NM-08902","","","235813","3627380","GW","false","" +"TB-0232","","","423690","3718317","GW","true","From east of Carrizozo on Hwy. 380 go through locked metal gate (get combo from Omar) with adobe entry on south side of Hwy. South on road several miles to cattle pens. Cross cattle guard and go east on road 0.7 miles to shed on south side of road." +"DA-0009","19S1W22.122","","318708","3613780","GW","true","" +"NM-23035","","","647174","3894890","GW","false","" +"NM-03798","","","234064","3520820","GW","false","" +"NM-06190","","","568214","3577140","GW","false","" +"NM-15667","","","678188","3747970","GW","false","" +"NM-16903","","","654392","3780370","GW","false","" +"NM-14953","","","149044","3731450","GW","false","" +"NM-18344","","","600960","3804320","GW","false","" +"NM-06536","","","297576","3585500","GW","false","" +"NM-00004","","","283888","3519460","GW","false","" +"NM-05159","","","674901","3561510","GW","false","" +"NM-25811","","","654547","3998570","GW","false","" +"PB-0026","","","379183","3938500","GW","true","Heading north on Hwy 22 from Pena Blanca post office, turn left on Carro de Caballos to address on right." +"NM-04084","","","184257","3536970","GW","false","" +"QU-536","","","444191","4060860","SP","true","" +"NM-26998","","","326604","3752870","GW","true","" +"NM-23264","","","383137","3898970","GW","false","" +"NM-09688","","","554186","3632360","GW","false","" +"NM-20294","","","599005","3841420","GW","false","" +"BW-0221","14S9E34.242","","400555","3658090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0058","","","670601","3987212","GW","true","elv 4425 acc to USGS" +"NM-23339","","","389323","3900370","GW","false","" +"MI-0006","","","466888","3879165","GW","true","Topographic situation: Valley" +"NM-00279","","","284219","3604660","GW","false","" +"NM-04420","","","676060","3547540","GW","false","" +"NM-27353","","","557538","3596810","GW","false","" +"NM-25199","","","217601","3965780","GW","false","" +"NM-15868","","","324060","3752580","GW","false","" +"EB-430","","","412342","3934904","GW","true","5 Encantado Circle" +"RA-049","","","417489","4007878","GW","true","In field below house." +"QY-0279","11.31.23.33","","624871","3891610","GW","true","" +"AH-028","HM-05","","437007","4042267","GW","true","" +"NM-05138","","","235792","3563100","GW","false","" +"SB-0190","TWDB 4757901","","511163","3430624","GW","false","" +"NM-19492","","","352369","3828090","GW","false","" +"NM-06121","","","579261","3575520","GW","false","" +"NM-12114","","","558674","3668810","GW","false","" +"NM-00819","","","451619","3713510","GW","false","" +"NM-17777","","","655205","3794710","GW","false","" +"NM-07885","","","230180","3612790","GW","false","" +"NM-09439","","","283117","3632300","GW","false","" +"NM-05018","","","648237","3559210","GW","false","" +"AR-0030","","","220865","4073910","GW","true","From Hwy 516 out of Farmington, turn right on Pryor Lane across 516 from 505 Motorsports and Distil wine shop. At fork in road, stay left on Pryor Lane to right (south) on Samantha Lane to address at end of road house with shiny copper roof. Well is west of house behind decorative fence." +"PB-0024","","","377918","3936408","GW","true","South end of Hwy 22 in Pena Blanca, somewhere just south of Lewis Drive. Well in small grey stucco well house." +"NM-00288","","","679073","3608950","GW","false","" +"HS-512","TC-512","","289826","3667714","SP","true","In block 9 in Hot Springs, NM" +"NM-19847","","","599420","3833600","GW","false","" +"NM-11518","","","668431","3661430","GW","false","" +"NM-00327","","","411959","3618420","GW","false","" +"NM-03373","","","350084","3885010","GW","false","" +"NM-28238","","","193700","4077840","GW","false","" +"SB-0865","Mayer 26","","454340","3584720","GW","false","" +"NM-17045","","","534025","3781260","GW","false","" +"NM-08803","","","218574","3626800","GW","false","" +"NM-04481","","","131344","3554600","GW","false","" +"NM-20262","","","600893","3840920","GW","false","" +"NM-20415","","","620390","3844360","GW","false","" +"GT-034","","","357309","3973270","GW","true","" +"NM-02021","","","134654","3557480","GW","false","" +"NM-14718","","","548490","3715910","GW","false","" +"NM-13632","","","629708","3694510","GW","false","" +"NM-25241","","","627681","3964600","GW","false","" +"NM-12891","","","677285","3683770","GW","false","" +"NM-14550","","","545742","3708380","GW","false","" +"SO-0195","SAC-E03B","","325499","3790980","GW","true","" +"NM-24674","","","411734","3942890","GW","false","" +"ED-0201","22S26E24.224","","571503","3583170","GW","true","" +"NM-04273","","","393033","3541500","GW","false","" +"NM-28020","","","357355","3881530","GW","false","" +"NM-03361","","","361634","3881740","GW","false","" +"NM-26921","PW-112","","370244","3907227","GW","true","" +"NM-15591","","","614095","3744680","GW","false","" +"NM-16643","","","674368","3776620","GW","false","" +"NM-27332","","","559584","3590600","GW","false","" +"NM-16852","","","667109","3779820","GW","false","" +"NM-21091","","","671615","3864090","GW","false","" +"UC-0063","","","661923","4038896","GW","true","elv 4932 acc to USGS" +"NM-25541","","","216120","3984590","GW","false","" +"NM-21064","","","571451","3861250","GW","false","" +"NM-20125","","","601352","3838490","GW","false","" +"SB-0536","TWDB 4853401","","452866","3451195","GW","false","" +"QY-0794","7.31.25.221","","627563","3852520","GW","true","" +"SV-0117","43 Via Entrada","","378734","3899372","GW","false","Unit 2 Lot 52" +"NM-19386","","","675134","3827210","GW","false","" +"NM-16758","","","663039","3778110","GW","false","" +"NM-06097","","","566426","3574720","GW","false","" +"NM-06317","","","674014","3580990","GW","false","" +"QY-0667","6.27.34.144","","585175","3840320","GW","true","" +"SB-0409","TWDB 4812801","","446817","3515388","GW","false","" +"NM-21837","","","266094","3883270","GW","false","" +"SB-0527","TWDB 4846301","","472729","3466888","GW","false","" +"TS-049","","","435544","4040995","SP","true","Spring on east side." +"NM-00589","","","674974","3663560","GW","false","" +"NM-07044","NH-015","","281530","3595510","GW","false","" +"NM-15822","","","660367","3751290","GW","false","" +"NM-01333","","","365272","3910960","GW","false","" +"NM-06360","","","540774","3580310","GW","false","" +"NM-07436","","","560664","3601880","GW","false","" +"PP-040","PW-45","","437790","4002990","GW","true","" +"NM-03692","","","166174","3473630","GW","false","" +"NM-22340","","","379020","3886080","GW","false","" +"NM-14162","","","547313","3698280","GW","false","" +"AR-0503","","","215135","4069500","PS","true","Animas River behind Red Lion Hotel in Farmington. From parking lot at northeast corner of building, walk to river at two cottonwood trees." +"NM-01653","","","296947","4040010","GW","false","" +"AR-0126","B004","","239472","4087670","GW","true","From Farmington, take Hwy 516 toward Aztec. Turn S onto Hwy 550 (S Main Avenue). Turn right onto Rd 3000, then right on Rd 3008. Turn right on Rd 3020 and continue straight to address on right." +"NM-00234","","","374809","3585100","GW","false","" +"NM-25433","","","408200","3973280","GW","false","" +"AB-0220","S276","","350487","3935140","GW","true","" +"NM-23690","","","672444","3912530","GW","false","" +"NM-25259","","","416419","3964880","GW","false","" +"TV-302","RP-2000a","","440324","4026228","GW","true","" +"EB-696","","","403679","3937857","GW","true","Will need escort to site. In area south of Valle Vista neighborhood. From Hwy 14, take Valle Vista Blvd west, make first left on Ramada Way East. Just before intersection with Sierra Place South, make left onto dirt road, thru locked chain-link fence, past brown stucco shed, thru another locked chain-link fence. Well is down gravel road, then left across field on 2-track." +"NM-21125","","","532354","3863310","GW","false","" +"TS-036b","","","436194","4042669","SP","true","Large spring east side of river." +"NM-21065","","","663103","3863010","GW","false","" +"NM-21757","","","383272","3880050","GW","false","" +"SV-0078","05 Prado Vista","","378620","3898570","GW","false","Unit 2 Lot 33" +"BC-0226","226","","376216","3896930","GW","true","" +"SB-0910","","","485317","3592996","GW","true","From junction of Hwys 1437 (Main) & 2249 (Broadway), go E on 2249 for 3 mi, turn N (left) on Hwy 1576 (hwy alternates between north & east) and go 3 mi, east 1 mi, north 1 mi, east 1.4 mi, then turn N on G-005 for 2.3 mi. Road ends at NM-506, turn E (right) on NM-506 and go 5.6 miles (numerous curves); at this intersection, turn E (right) which is still NM-506 but not clearly marked. Continue on NM-506 for 0.5 mi, NM-506 turns N (left), stay on NM-506 for addl. 9 mi. At intersection, go W (left) which is still NM-506. Drive NM-506 thru several bends 8.8 mi to Pinon Creek Rd. Turn N (right) on Pinon Creek Rd for 12.3 mi to well, E of road under WM tower & next to large tank." +"MI-0159","","","560061","3928638","GW","true","Topographic situation: Plains" +"EB-435","","","419872","3933658","GW","true","Country Store." +"NM-19378","","","603687","3825490","GW","false","" +"NM-00001","","","307591","3518520","GW","false","" +"SA-0233","","","240334","3782372","GW","true","Heading W on Hwy 60, after mile 79, take next dirt road to N. Go to end of road (note Pittman sign on fenceline). Well to NE of white house. Look for steel storage tank. Well is east of the house in a pasture surrounded by a fence." +"NM-06086","","","262624","3577050","GW","false","" +"NM-11504","","","549965","3659620","GW","false","" +"NM-22183","","","261114","3886760","GW","false","" +"NM-27652","","","664711","3795280","GW","false","" +"NM-04761","","","677364","3555510","GW","false","" +"SA-0245","","","261349","3772264","GW","true","From Socorro, take Hwy 60 west past Magdalena and turn left (south) on SR52 @ the entrance to the VLA. Drive 2 miles, cross the VLA track and immediately turn left (east) on dirt road. Drive 0.6 miles, follow road south to wood windmill tower. Well is at tower now equipped with submersible pump." +"AR-0202","PWSA002","","225500","4076250","GW","true","" +"NM-20850","","","631146","3855320","GW","false","" +"NM-07317","","","546594","3598970","GW","false","" +"NM-22741","","","375917","3890590","GW","false","" +"NM-17730","","","340863","3793450","GW","false","" +"NM-06720","","","225247","3590850","GW","false","" +"MI-0255","","","543955","3951218","GW","true","Topographic situation: Plateau" +"NM-20183","","","592792","3839450","GW","false","" +"NM-22060","","","629351","3883340","GW","false","" +"NM-13200","","","138974","3694070","GW","false","" +"NM-04399","M-050","","224365","3549380","GW","false","" +"NM-06662","","","677612","3587530","GW","false","" +"NM-18762","","","591211","3811310","GW","false","" +"NM-11218","","","655937","3656020","GW","false","" +"SR-0006","","","520061","3546560","SP","true","Gualadule Mtns; no trail, descend from FR 201" +"NM-23539","","","370344","3908400","GW","false","" +"NM-02130","","","234662","3564020","GW","false","" +"ED-0219","22S27E20.111","","573498","3583180","GW","true","" +"NM-19074","","","626961","3817800","GW","false","" +"NM-04489","","","391219","3548570","GW","false","" +"NM-01535","","","484006","3972300","GW","false","" +"NM-22991","","","349494","3894430","GW","false","" +"NM-16098","","","660144","3759950","GW","false","" +"NM-21704","","","634297","3879430","GW","false","" +"NM-00881","","","292291","3776960","GW","false","" +"NM-06960","","","195342","3595780","GW","false","" +"NM-01601","","","661529","4011070","GW","false","" +"NM-21116","","","316470","3864680","GW","false","" +"NM-08016","","","669953","3612160","GW","false","" +"NM-24435","","","473798","3936980","GW","false","" +"EB-228","SF-12","","408760","3944275","GW","true","Off side street, south of Rodeo Rd, 0.5 mi east of Cerrillos, behind new Credit Union" +"NM-16922","","","236599","3782910","GW","false","" +"BC-0088","75","","376883","3892730","GW","true","" +"NM-15723","","","566341","3747610","GW","false","" +"EW-0002","","","418244","4004938","SP","false","From intersection of Hwy 75 and CR67 west of Dixon, take CR67 south ~0.7 mi to gate across road. Park and hike another 0.3 mi down road to wetland on left side. There is a GPS coordinate at the road where you need to hike to the spring. Spring is a wet spot on the ground, pretty much in the hiking trail." +"NM-18466","","","315326","3807580","GW","false","" +"AH-011","AH-29","","438414","4042633","GW","true","" +"NM-16000","","","234334","3758890","GW","false","" +"NM-13539","","","546078","3691900","GW","false","" +"OG-0044","","","647168","3813046","GW","true","" +"NM-18397","","","656536","3805980","GW","false","" +"BC-0003","3","","373153","3883460","GW","true","" +"NM-25961","","","419162","4006450","GW","false","" +"NM-19832","","","554637","3833010","GW","false","" +"TB-0258","","","411424","3627305","GW","true","" +"NM-05128","","","634257","3560340","GW","false","" +"RA-061","","","424526","4004389","GW","true","Just at gated entrance, next to irrigation ditch." +"NM-08014","","","559046","3610860","GW","false","" +"NM-06916","","","559532","3590600","GW","false","" +"JM-033","","","301844","3656239","GW","true","" +"NM-12507","","","564381","3675440","GW","false","" +"QY-0504","16.36.11.144","","673143","3944670","GW","true","" +"NM-03574","","","407273","3980430","GW","false","" +"NM-05990","","","339051","3573320","GW","false","" +"NM-00985","","","653889","3816790","GW","false","" +"NM-01012","","","610797","3825480","GW","false","" +"NM-10546","","","541316","3644670","GW","false","" +"NM-21878","","","348630","3881700","GW","false","" +"NM-07542","","","606387","3604450","GW","false","" +"NM-15102","","","628693","3731680","GW","false","" +"NM-06357","","","257069","3583340","GW","false","" +"NM-24813","","","406100","3945410","GW","false","" +"NM-22044","","","401341","3882790","GW","false","" +"NM-15914","","","678601","3754430","GW","false","" +"TO-0245","6N10E15.143","","419542","3845430","GW","true","" +"NM-06383","","","674150","3582200","GW","false","" +"NM-20654","","","651972","3851330","GW","false","" +"NM-27742","","","605192","3782310","GW","false","" +"NM-07066","","","131186","3600500","GW","false","" +"NM-04030","","","233250","3532030","GW","false","" +"NM-24771","","","413564","3944780","GW","false","" +"NM-18615","","","578012","3808630","GW","false","" +"NM-08711","","","204379","3626260","GW","false","" +"NM-09452","","","210296","3634290","GW","false","" +"NM-05741","","","231222","3571700","GW","false","" +"NM-07689","","","195744","3610700","GW","false","" +"TB-0195","","","402693","3697204","GW","true","From HQ southwest to main road. Look for two track going south before cement water crossing or from Hwy. 54 in Oscuro east on Grand Avenue through Hefker Vega gate across cement water crossing. Go south through locked gate and continue south to past windmill on west side of road and follow road to east. Stay on main road to south at first Y in sight of Twin Windmill, left at fork and south down through the canyon to the windmill. Rough road through draw to WM (E). Exit through arroyo going west, through pipe (locked) gate past next windmill on south side of road to next windmill by corrals. Exit through gate to south and stay west to highway at Mile Marker 103." +"NM-22913","","","379198","3892800","GW","false","" +"NM-28117","","","467757","3915770","GW","false","" +"PP-074","PS-79","","439813","4006520","SP","true","" +"NM-27015","","","324784","3769690","GW","true","" +"NM-15539","","","156590","3748920","GW","false","" +"NM-19235","","","631102","3822630","GW","false","" +"NM-14063","","","543730","3696850","GW","false","" +"SV-0087","11 Punta Linda","","378533","3900750","GW","false","Unit 3 Lot 129" +"SB-0852","Mayer 8","","450387","3547863","GW","false","" +"NM-23015","","","652262","3894750","GW","false","" +"NM-10124","","","625141","3639340","GW","false","" +"NM-18413","","","596683","3805480","GW","false","" +"NM-14870","","","428824","3722240","GW","false","" +"DE-0312","","","650259","3590869","GW","false","" +"NM-06377","","","574305","3580810","GW","false","" +"MI-0189","","","487805","3939080","GW","true","Topographic situation: Plateau" +"NM-16910","","","659150","3780760","GW","false","" +"SB-0437","TWDB 4815307","","484365","3524745","GW","false","" +"NM-15571","","","623303","3744330","GW","false","" +"NM-05267","","","227681","3565720","GW","false","" +"NM-14105","","","548221","3697460","GW","false","" +"NM-16658","","","674367","3776650","GW","false","" +"HS-101","TC-101","","289756","3667667","GW","true","In block 41 in Hot Springs, NM" +"NM-06703","","","344249","3587930","GW","false","" +"NM-13015","","","664723","3685860","GW","false","" +"BW-0854","4.26.3.9.100","","381928","3542420","GW","true","" +"NM-23797","","","644056","3915790","GW","false","" +"NM-17150","","","655429","3784270","GW","false","" +"NM-10619","","","555775","3645700","GW","false","" +"TO-0545","8N9E32.13","","406501","3859950","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"TO-0469","10N9E29.13","","407972","3880580","GW","true","" +"NM-10775","","","614877","3648090","GW","false","" +"NM-26103","","","472850","4020660","GW","false","" +"QU-138","MMW-45B","","450612","4061661","GW","true","" +"TC-284","CO-31","","412036","4105514","GW","true","" +"NM-04292","","","342926","3542920","GW","false","" +"NM-20648","","","637160","3850730","GW","false","" +"NM-27429","","","558668","3669830","GW","false","" +"QU-105","","","449227","4067190","GW","true","Take Hwy 522 north out of Questa. Make right on Cabresto Road, then left on Llano Road. Take Lower Pinabete left and north 0.8 miles to T; go east 0.4 miles; uphill at right bend find driveway. Well is clockwise around the house." +"NM-00714","","","442575","3695080","GW","false","" +"NM-05219","","","215137","3565290","GW","false","" +"NM-08177","","","621057","3614130","GW","false","" +"NM-11479","","","560002","3659340","GW","false","" +"NM-27407","","","199190","3641620","GW","false","" +"NM-26516","","","586953","4063760","GW","false","" +"NM-17231","","","662189","3785800","GW","false","" +"AB-0182","S233","","362271","3908540","GW","true","" +"BC-0012","176","","374656","3887650","GW","true","" +"NM-15638","","","608633","3745720","GW","false","" +"TB-0185","","","418915","3717435","GW","true","From Water Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. (Brake does not hold and cannot attain measure while pumping)" +"BC-0317","334","","377872","3888800","GW","true","" +"NM-28423","S-2017-001","","620163","3549272","GW","true","" +"NM-11132","","","558667","3652770","GW","false","" +"BW-0816","1.5.3.34.200","","304069","3832920","GW","true","" +"SB-0523","TWDB 4845603","","462171","3462826","GW","false","" +"NM-03694","","","159422","3477680","GW","false","" +"MI-0095","","","478548","3917731","GW","true","Topographic situation: Valley" +"SM-0110","","","448308","3629017","GW","true","Well may be Pat Scott." +"NM-07327","","","240220","3602540","GW","false","" +"TV-252","SO-17","","440890","4019767","GW","true","" +"NM-06226","","","153982","3583430","GW","false","" +"EB-024","","","416592","3947264","GW","true","3730 Old Santa Fe Trail: Old SF Trail toward NPS Bldg, 0.3 mi past NPS around hard curve to S, 3rd drive past curve, adobe walls along drive; well is behind house w/access through house" +"ED-0107","21S26E24.424","","571392","3591980","GW","true","" +"NM-23853","","","653539","3917800","GW","false","" +"NM-21447","","","640702","3873330","GW","false","" +"NM-01153","","","446293","3865630","GW","false","" +"NM-02060","","","364871","3556400","GW","false","" +"NM-17618","","","655958","3790940","GW","false","" +"NM-09617","","","551356","3631630","GW","false","" +"SM-0164","","","490429","3620743","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-22556","","","381026","3888430","GW","false","" +"BW-0155","13S9E20.234","","397026","3671070","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04102","M-028","","255511","3536006","GW","false","From San Diego Rd and B005 intersection, go 1 mile west. Go through gate on the north side of the road. Go north on dirt road to gate at mile 1, continue north along power line another 0.8 miles. Well located at windmill near holding tank." +"NM-25636","","","418559","3984510","GW","false","" +"NM-23496","","","671397","3907830","GW","false","" +"NM-02091","","","267003","3560300","GW","false","" +"NM-22078","","","389519","3883240","GW","false","" +"BW-0292","15S10E32.131","","405820","3648310","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12975","","","674229","3685320","GW","false","" +"NM-26380","","","649495","4056370","GW","false","" +"SD-0262","11N.6E.19.311","","377189","3891870","GW","true","" +"NM-01711","","","317492","4074080","GW","false","" +"NM-26966","PW-108","","369725","3910367","GW","true","" +"NM-14545","","","321564","3709610","GW","false","" +"NM-23013","","","629775","3894370","GW","false","" +"SA-0114","","","244063","3767560","GW","true","Drive west on Highway 60 about 0.3 miles past MM 81, turn south (left) on unmarked road at the cattle guard; this road is not marked but is CR 152 or Hand Ranch Road on a GPS. Stay south bearing SW past the house on the main track at 6.8 miles. Continue 2.2 miles and before the large gate to the Kiehne ranch turn west (right) to the windmill." +"NM-11292","","","619240","3656580","GW","false","" +"NM-06971","","","672862","3593210","GW","false","" +"NM-11141","","","472167","3654480","GW","false","" +"MI-0276","","","473661","3962564","GW","true","Topographic situation: Hill" +"NM-08216","","","645929","3615050","GW","false","" +"UC-0189","","","626388","4047447","GW","false","" +"NM-04835","","","187080","3560350","GW","false","" +"NM-26868","","","330348","4012950","GW","true","" +"BC-0229","229","","366874","3881690","GW","true","" +"NM-00689","","","438753","3691340","GW","false","" +"SB-0182","TWDB 4757502","","504320","3435514","GW","false","" +"BC-0441","444","","","","GW","false","" +"QY-1009","9.36.29.344a","","669016","3871330","GW","true","" +"SD-0295","11N.6E.26.333","","383621","3889630","GW","true","" +"NM-26641","","","245958","4076130","GW","false","" +"NM-11682","","","558195","3662220","GW","false","" +"NM-13472","","","548357","3691020","GW","false","" +"NM-12709","","","673407","3680650","GW","false","" +"NM-07878","","","310293","3610880","GW","false","" +"NM-02204","","","261218","3568510","GW","false","" +"NM-03905","","","252554","3524460","GW","false","" +"QY-0518","16.36.35.133","","672625","3937860","GW","true","" +"NM-11725","","","631616","3664290","GW","false","" +"NM-23856","","","642108","3917670","GW","false","" +"NM-27188","","","327054","3764373","D","true","" +"NM-27456","","","217311","3706370","GW","false","" +"NM-19632","","","618581","3830750","GW","false","" +"AS-024","ES-4","","450925","4042280","GW","true","" +"SB-0430","TWDB 4815209","","481870","3525581","GW","false","" +"NM-12555","","","552365","3676350","GW","false","" +"QY-0208","11.30.19.111","","608710","3892700","GW","true","" +"BW-0809","1.25.5.29.200","","286605","4028140","GW","true","" +"QY-0197","11.30.15.131","","613489","3893840","GW","true","" +"NM-08474","","","549837","3618230","GW","false","" +"NM-02090","M-080","","265797","3560300","GW","false","" +"SO-0215","SBB-E02A","","322882","3732842","GW","true","" +"AS-500","","","451894","4041890","SP","true","" +"NM-17881","","","551966","3796250","GW","false","" +"TV-256","SW-46","","440619","4024247","GW","true","From Hwy 68, turn on SR 96 past UNM Taos campus, right on Los Cordovas Road to address. Long driveway." +"NM-27020","","","325854","3762590","GW","true","" +"NM-06736","","","204380","3591910","GW","false","" +"NM-03765","","","175178","3513510","GW","false","" +"SD-0029","7N.7E.9.112","","390092","3856240","GW","true","" +"NM-04008","","","240370","3529660","GW","false","" +"NM-23398","","","648030","3902850","GW","false","" +"EB-692","","","396174","3932871","GW","true","" +"NM-21385","","","346188","3872460","GW","false","" +"ED-0007","16S25E10.333","","548733","3643770","GW","true","" +"QY-0771","7.30.17.242","","611618","3855280","GW","true","" +"NM-27000","","","324764","3770670","GW","true","" +"NM-04392","","","677250","3547040","GW","false","" +"NM-09606","","","208877","3635630","GW","false","" +"NM-22054","","","663870","3883860","GW","false","" +"OG-0028","","","642976","3818890","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2 miles on CR 17. Turn left south on CR X. Drive 0.4 miles to well. Well is on E side of road." +"NM-22500","","","374715","3887870","GW","false","" +"NM-26645","","","194215","4078030","GW","false","" +"NM-17931","","","218990","3801100","GW","false","" +"NM-18643","","","649456","3810300","GW","false","" +"ED-0352","25S28E15.23","","587546","3555460","GW","true","" +"SB-0380","TWDB 4807907","","485973","3528561","GW","false","" +"NM-16749","","","638293","3777690","GW","false","" +"SD-0315","12N.5E.9.222","","371817","3906050","GW","true","" +"NM-15058","","","633083","3730040","GW","false","" +"NM-16866","","","651050","3779490","GW","false","" +"NM-25971","","","404610","4007330","GW","false","" +"NM-26207","","","595458","4030660","GW","false","" +"NM-05687","","","256497","3570440","GW","false","" +"NM-12707","","","633004","3680290","GW","false","" +"NM-09069","","","206941","3630040","GW","false","" +"NM-12572","","","630786","3677770","GW","false","" +"TV-205","","","444949","4020549","GW","true","From SR 382 (LQ road to Ponce de Leon), turn left onto dirt road just past abandoned dump. Two well casings on left several hundred yards. Well closest to the road. Well is 8"" steel-cased w/out cap." +"SV-0011","03 Camino Real","","380703","3898275","GW","false","Unit 1 Lot 5" +"NM-25986","","","185767","4013400","GW","false","" +"HS-099","TC-099","","289859","3667916","GW","true","In block 103 in Hot Springs, NM" +"NM-00060","","","474171","3545100","GW","false","" +"NM-23123","","","658350","3896770","GW","false","" +"WL-0042","NM3533814","","436314","3697648","GW","true","From Hwy 48 in Alto, NM, go west at Sun Valley Road just south of post office. Follow Sun Valley Road until you get to Snowflake and make a right. Make a left on Elk Horn then right on Mogul Drive. From Mogul Dr. pass Well #5 on right, cross wash, Well #2 is on right, outside of pump house." +"NM-09713","","","554834","3632670","GW","false","" +"NM-10099","","","553427","3638140","GW","false","" +"NM-15283","","","558592","3737550","GW","false","" +"TS-127","","","425865","4012253","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"NM-01541","","","526439","3976970","GW","false","" +"EB-513","","","406845","3944203","GW","true","" +"NM-14996","","","577450","3727460","GW","false","" +"SB-0056","TWDB 4717205","","506131","3510234","GW","false","" +"TB-0131","","","408071","3706050","GW","true","3.5 Mi East on County Road 002 to Vega/Hefker gate. Go to bunkhouse with corrals on south. Go to windmill." +"NM-00910","","","542220","3793370","GW","false","" +"NM-20150","","","581982","3838950","GW","false","" +"HS-007","TC-007","","286314","3666773","GW","true","S. Broadway near Williamsburg city line east of conoco station, in fenced in area on dirt road. Easting is 15' to the south because of pour reception due to building" +"EB-155","","","401411","3949249","GW","true","South obs well; left on dirt track from powerline ~ 0.15 mi; contact facility manager Randall Kippenbrock, 424-1850 (780-0607 cell)" +"NM-25734","","","402302","3992970","GW","false","" +"NM-17236","","","664568","3785910","GW","false","" +"NM-24108","","","402567","3928100","GW","false","" +"NM-12864","","","598305","3682280","GW","false","" +"NM-08780","","","287642","3624870","GW","false","" +"SM-0052","","","437633","3645998","GW","true","Hyw 82, turn South on Young Canyon Road between mi 21 and 22, head southward on main road. Owner will likely meet you. Need 4WD. Turn L onto Big Dipper; follow to end and turn L down steep road. Well is covered by bucket at bottom of hill. This well is not equipped" +"NM-03822","","","250260","3521030","GW","false","" +"NM-17439","","","633151","3787970","GW","false","" +"AB-0183","S234","","356132","3891070","GW","true","" +"SD-0245","11N.5E.24.441","","376850","3891600","GW","true","" +"NM-09076","","","556719","3625960","GW","false","" +"SO-0172","HWY-W02A","","328294","3755503","GW","true","" +"NM-00440","","","453326","3636380","GW","false","" +"NM-24564","","","398620","3940040","GW","false","" +"NM-20963","","","404878","3857590","GW","false","" +"NM-26589","","","159547","4075310","GW","false","" +"NM-15175","","","657241","3735190","GW","false","" +"NM-27985","","","358060","3876770","GW","false","" +"NM-09569","","","673084","3632860","GW","false","" +"NM-25787","","","480623","3995810","GW","false","" +"NM-18272","","","619285","3803610","GW","false","" +"DA-0072","23S4W19.12","","284143","3575890","GW","true","" +"NM-28076","","","237915","3903030","GW","false","" +"NM-25537","","","408048","3980300","GW","false","" +"NM-24559","","","294430","3941680","GW","false","" +"NM-26132","","","333688","4024120","GW","false","" +"NM-25394","","","410196","3972300","GW","false","" +"NM-25910","","","412736","4003270","GW","false","" +"NM-05529","","","245249","3569020","GW","false","" +"NM-00048","","","487702","3543500","GW","false","" +"NM-08300","","","295559","3617210","GW","false","" +"NM-17230","","","672589","3785560","GW","false","" +"WL-0009","NM3515310","","448700","3839477","GW","false","" +"NM-04672","","","678437","3554120","GW","false","" +"QY-0707","6.29.33.242","","603785","3840710","GW","true","" +"NM-27418","","","140821","3655490","GW","false","" +"NM-27642","","","658984","3795090","GW","false","" +"BW-0316","16S9E26.332","","406895","3639540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04374","","","346802","3545970","GW","false","" +"NM-24211","","","676649","3932400","GW","false","" +"NM-18171","","","619587","3802020","GW","false","" +"NM-14043","","","544971","3696670","GW","false","" +"SO-0064","2N1W30.33","","317356","3804310","GW","true","" +"NM-03265","","","505887","3843000","GW","false","" +"NM-11224","","","563714","3654710","GW","false","" +"NM-06613","","","575265","3585250","GW","false","" +"AH-004","AH-04","","438807","4044181","GW","true","" +"NM-09594","","","407642","3631680","GW","false","" +"NM-16241","","","539039","3763690","GW","false","" +"ED-0064","20S24E1.1","","542621","3607770","GW","true","" +"QY-0037","10.29.9.234","","603251","3885670","GW","true","" +"NM-28371","CN-2016-005 ","","585161","3612791","GW","true","" +"NM-25157","","","415582","3958630","GW","false","" +"NM-26444","","","223492","4065940","GW","false","" +"NM-23211","","","664737","3898890","GW","false","" +"NM-26474","","","459343","4062270","GW","false","" +"NM-00508","","","282390","3650460","GW","false","" +"NM-25444","","","391735","3973890","GW","false","" +"NM-07165","","","668407","3597200","GW","false","" +"NM-26633","","","193631","4076480","GW","false","" +"SV-0045","15 La Cantera","","379889","3899379","GW","false","Unit 2 Lot 69" +"NM-22537","","","361585","3888490","GW","false","" +"NM-08692","","","231793","3625170","GW","false","" +"SO-0055","3N3E32.24","","348735","3812520","GW","true","" +"NM-22818","","","336563","3892330","GW","false","" +"EB-131","","","403262","3939063","GW","true","" +"NM-01692","","","576160","4060790","GW","false","" +"EB-595","","","401950","3944200","ES","true","West on Airport Rd. just past wastewater treatment plant, take right turn after crossing over SF river. Follow 2 track road upstream." +"NM-18896","","","598587","3813750","GW","false","" +"AB-0193","S246","","352921","3837630","GW","true","" +"TC-334","","","421545","4032078","GW","true","" +"NM-02110","","","131143","3565690","GW","false","" +"NM-24665","","","407128","3942630","GW","false","" +"SA-0215","","","252557","3725141","GW","true","From Hwy 60 at VLA, head south on HWY 52 to just north of MM 52. Take road west towar house, cross cattle guard and take metal gate to west. Look for well under WM tower with solar panel." +"NM-27207","","","428283","3889074","GW","false","" +"NM-09563","","","555779","3631100","GW","false","" +"NM-11730","","","553938","3663210","GW","false","" +"EB-592","","","411191","3954720","GW","true","Older house at #10 Heartstone; south off Tano Rd. Continue to Plano Arbolito, turn left. Well on right side between two homes." +"BC-0281","274","","368195","3881070","GW","true","" +"NM-03203","","","570185","3827080","GW","false","" +"NM-24160","","","224795","3933410","GW","false","" +"BW-0447","18S10E35.313","","412345","3621580","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BC-0110","95","","382224","3877350","GW","true","" +"NM-15594","","","667822","3745350","GW","false","" +"NM-26537","","","446700","4065400","GW","false","" +"NM-20092","","","533591","3837470","GW","false","" +"NM-04993","","","240404","3560950","GW","false","" +"UC-0100","","","674022","3970564","GW","false","From NESWCD database, not visited by NMBGMR" +"QY-0503","16.35.9.314","","659758","3944000","GW","true","" +"NM-06183","","","573496","3577080","GW","false","" +"NM-26873","","","434815","4003771","GW","true","" +"DE-0194","","","611802","3599877","GW","false","" +"NM-20286","","","226016","3844750","GW","false","" +"NM-17110","","","596481","3782830","GW","false","" +"NM-14855","","","419932","3721880","GW","false","" +"MI-0231","","","599770","3936350","GW","true","Topographic situation: Edge of valley" +"AR-0064","A003","","234812","4083020","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2896 thru sharp left turn towards river, then right after a sharp right turn, make left on Rd 2892 to address on right. Well is in small shed near southern property line." +"NM-18321","","","618055","3803940","GW","false","" +"ED-0070","20S26E36.411","","562499","3599430","GW","true","" +"RA-009","","","378676","4007065","GW","true","Behind locked gate; beyond the pump house, before concrete acequia pit." +"NM-12090","","","663342","3669480","GW","false","" +"NM-05283","","","129376","3569060","GW","false","" +"TO-0207","6N6E22.431","","381268","3843850","GW","true","" +"NM-08419","","","678931","3618820","GW","false","" +"NM-21723","","","346331","3880100","GW","false","" +"NM-20703","","","559713","3851190","GW","false","" +"TC-234","TP-02","","412641","4069187","GW","true","" +"NM-04598","","","344854","3552340","GW","false","" +"NM-23680","","","396650","3911070","GW","false","" +"NM-01983","","","135754","3554440","GW","false","" +"SO-0186","HWY-W09B","","328808","3755361","GW","true","" +"NM-02151","","","140843","3569040","GW","false","" +"NM-03739","","","163336","3503740","GW","false","" +"NM-25035","","","606882","3951420","GW","false","" +"SD-0271","11N.6E.26.344","","384254","3889680","GW","true","" +"BC-0304","330","","374493","3885910","GW","true","" +"NM-05672","","","221329","3571160","GW","false","" +"NM-01004","","","661880","3824170","GW","false","" +"NM-22520","","","401066","3887760","GW","false","" +"NM-15758","","","674943","3749640","GW","false","" +"SM-1058","","","442075","3640901","SP","true","" +"EB-523","","","410571","3966997","GW","true","" +"BW-0747","1.13.11.8.210","","225318","3918870","GW","true","" +"TO-0231","6N8E27.134","","400116","3842360","GW","true","" +"TB-0116","","","401698","3705198","GW","true","Oscuro Range Rd west approx .3 mile, old trailer on left (S) side of road. Well is small well house SW of trailer." +"NM-27950","","","568912","3844380","GW","false","" +"SD-0312","12N.5E.6.131","","367316","3907240","GW","true","" +"NM-07626","","","277229","3607650","GW","false","" +"NM-03468","","","356292","3909070","GW","false","" +"QY-0803","7.31.36.342","","627037","3849830","GW","true","" +"TC-437","","","441647","4072658","GW","true","Well is located on a ranch north of Questa. There is access from 2-tracks, but there are many gates. No detailed directions because Lupe and Gilbert (hired hand) do not want people visiting the well unless they are also there." +"QY-0443","13.34.8.333","","648813","3914430","GW","true","" +"NM-02537","","","277252","3619150","GW","false","" +"SA-0042","SA-42_R00","","240481","3765024","GW","true","From Datil go E on Hwy 60 for 3.5 mi, turn S on county road, go 10 mi then W. Look for WM on top of hill behind ranch HQ (combo 5771 in 2016). Well head beneath broken WM. [From OSE Notes: From Sanchez well (?) go about 4.2 mi east to locked gate. Then 1.5 miles to section 06.000. Well sits on hill behind Kiehne Ranch house. Unused WM. New well drilled for stock and domestic use. Rock tank 5 ft east of well, large metal storage tank 20 ft NNE of well. New well in concrete pit 15 ft NW of this well.]" +"NM-17786","","","667960","3795240","GW","false","" +"TB-0056","","","400771","3686941","GW","true","Off of Three Rivers Campground road, turn R just after railroad tracks. Follow good road, past first well come to, cross drainage, well is by big center pivot." +"NM-14859","","","415939","3721940","GW","false","" +"NM-09194","","","663574","3629000","GW","false","" +"NM-12194","","","553046","3670040","GW","false","" +"NM-22588","","","655972","3889390","GW","false","" +"SM-1100","","","450386","3634263","SP","true","House at 1712 Rio Penasco, can sample at spigot at RV slab. Brick house. Spring located uphill from here, piped and developed. White gate." +"NM-12159","","","557865","3669760","GW","false","" +"NM-00570","","","402385","3658710","GW","false","" +"NM-04226","","","246074","3542220","GW","false","" +"NM-19978","","","396861","3835650","GW","false","" +"NM-23167","","","236966","3900160","GW","false","" +"NM-21667","","","632987","3878920","GW","false","" +"NM-20088","","","616756","3838030","GW","false","" +"NM-13601","","","563955","3692900","GW","false","" +"SO-0083","4N1W36.14","","325785","3822480","GW","true","Benchmark at well." +"SD-0374","10N.5E.21.412","","371974","3882560","SP","true","" +"NM-03187","","","653422","3826820","GW","false","" +"NM-03499","","","643069","3930200","GW","false","" +"NM-05204","","","678133","3562490","GW","false","" +"NM-25457","","","286131","3976530","GW","false","" +"NM-10224","","","662352","3641580","GW","false","" +"NM-02587","","","568897","3625760","GW","false","" +"EB-337","","","403199","3944575","GW","true","599 to CR62, south on frontage road 2.3 mi to locked gate #424 (says transfer station closed) on right; around to left just behind hill, 300' from 599 and just north of Santa Fe River" +"NM-02052","","","130811","3560890","GW","false","" +"NM-02547","","","180062","3622970","GW","false","" +"DA-0094","23S2E21.241","","336454","3574560","GW","true","" +"WL-0215","","","343179","4057547","GW","true","From Hwy 95 & Hwy 64 in town of Los Ojos, drive west on Hwy 95 for 13.3 miles to Stone House Lodge on south (left) side of road. Road turns to dirt. Continue for 0.15 mile to Pinon Ridge sign on north (right) side of road, but continu straight (road now 322) for 0.4 miles. Well house on south (left) side of road. Well is behind well house." +"NM-10866","","","656420","3650170","GW","false","" +"NM-24785","","","412333","3944950","GW","false","" +"NM-13981","","","545130","3695750","GW","false","" +"NM-02278","","","245121","3576420","GW","false","" +"QU-158","","","444027","4051147","GW","true","From 522 north, take second turn off to San Cristobal. Tak a left on Camino del Medio. At 1.6 miles turn into driveway marked 144, 146, 148. Take a left fork and find well vault in artificial berm next to garage in arroyo. Mike Allen will arrange visit and contact owner." +"NM-25901","","","445736","4002670","GW","false","" +"QY-0082","10.32.17.212","","630597","3884900","GW","true","" +"NM-02251","","","258526","3573140","GW","false","" +"NM-01483","","","139467","3845690","GW","false","" +"NM-18912","","","663216","3814910","GW","false","" +"PP-073","PS-78","","439852","4006479","SP","true","" +"ED-0336","24S28E25.123","","590430","3562090","GW","true","" +"NM-12762","","","680822","3681460","GW","false","" +"SV-0093","23 Punta Linda","","379102","3901134","GW","false","Unit 3 Lot 135" +"SM-4002","","","441191","3632982","PS","true","Stream flow measurement by Patrick Walsh" +"NM-08421","","","672055","3618700","GW","false","" +"NM-10280","","","648596","3642100","GW","false","" +"NM-22285","","","345794","3885970","GW","false","" +"NM-21158","","","668450","3866120","GW","false","" +"NM-16985","","","657015","3781280","GW","false","" +"NM-10703","","","546944","3646210","GW","false","" +"NM-03896","","","345499","3522090","GW","false","" +"SD-0300","11N.7E.21.144","","390729","3891660","GW","true","" +"NM-08732","","","195971","3626640","GW","false","" +"NM-14881","","","419140","3722680","GW","false","" +"NM-25634","","","414226","3984400","GW","false","" +"TB-0156","","","406319","3695334","GW","true","From Middle well head east on east fork. Up though arroyos, rough but accessible. East of Rd at rock tank to WM tower." +"NM-15589","","","649150","3745560","GW","false","" +"NM-18412","","","356583","3805990","GW","false","" +"NM-18228","","","651266","3803420","GW","false","" +"NM-01987","","","346436","3549150","GW","false","" +"CX-0050","26N25E14","","567296","4038000","GW","true","" +"NM-02740","","","668283","3661000","GW","false","" +"NM-05131","","","231937","3563080","GW","false","" +"TB-0105","","","431057","3710039","GW","true","Hwy 37 to nogal. Dry Gulch Rd. on W side of Hwy across from rock house. West to locked gate 1/4 mile. Go 4 miles west on gravel road, past cabin, uphill , left fork to well. Cathie has lock combo." +"DE-0249","","","629074","3622712","GW","false","" +"NM-14045","","","414145","3696950","GW","false","" +"NM-02254","","","322091","3572030","GW","false","" +"NM-28005","","","357499","3881400","GW","false","" +"NM-26907","","","389403","3884920","GW","true","" +"NM-07925","","","649876","3610760","GW","false","" +"OG-0045","","","651194","3810485","GW","true","" +"NM-04790","","","677618","3555950","GW","false","" +"NM-17137","","","663496","3784220","GW","false","" +"NM-24047","","","399059","3925430","GW","false","" +"NM-20631","","","403982","3849590","GW","false","" +"NM-06349","","","576766","3580310","GW","false","" +"NM-05446","","","240828","3568300","GW","false","" +"TS-036i","","","436170","4042598","SP","true","Small spring on east side." +"NM-09755","","","409868","3633420","GW","false","" +"AH-069","AH-27","","442255","4044807","GW","true","" +"NM-27314","","","362942","3586860","GW","false","" +"NM-05023","","","674880","3559660","GW","false","" +"NM-25814","","","230011","4001490","GW","false","" +"NM-19849","","","571489","3833530","GW","false","" +"SO-0267","NRCS 6 (Shallow)","","327676","3764175","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Turn left (west) on Busquceito, then left before old home to locked gate. Will need access. Gate combo to Brown Arroyo transect is 7218 (10/2019). Follow road southwest past road to left Hickox Rd), continue to well on left hand (south) side of road before bend in road. SO-0267 is ~3 ft. north of SO-0268." +"NM-19682","","","566544","3830690","GW","false","" +"AB-0111","S135","","348271","3890210","GW","true","" +"NM-04146","","","346030","3536400","GW","false","" +"NM-08157","","","233417","3616710","GW","false","" +"NM-05064","","","339993","3560030","GW","false","" +"SM-0202","","","483899","3628361","GW","true","Off Hwy 24, 1.5 miles south of Dunken. Head east on dirt rd at gate that says Sam and Jeannie Elkins for about 1.5 mi to their house. Well is north of house under old windmill. Site visit by Jeremiah Morse." +"NM-06637","","","573485","3585730","GW","false","" +"BW-0576","20S5E36.3","","369473","3599070","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03913","","","116963","3529210","GW","false","" +"SM-0190","","","505823","3646768","GW","true","Site visit by Jeremiah Morse in June 2007" +"AH-010","AH-21","","442136","4043382","GW","true","" +"QY-0143","11.28.27.344","","594752","3889580","GW","true","" +"NM-26774","","","126453","3692630","GW","false","" +"NM-06371","","","673396","3581940","GW","false","" +"NM-05903","","","235662","3574170","GW","false","" +"NM-20495","","","672992","3847630","GW","false","" +"NM-11351","","","402306","3657450","GW","false","" +"NM-12688","","","556181","3678810","GW","false","" +"NM-06674","","","650248","3587760","GW","false","" +"NM-04750","","","670371","3555090","GW","false","" +"SM-1015","","","436272","3639606","SP","true","Along Russian Canyon Rd about .25 mi from Cox Canyon in private land by road." +"NM-17923","","","619718","3797770","GW","false","" +"NM-05616","","","677372","3568510","GW","false","" +"NM-09624","","","192621","3636300","GW","false","" +"NM-18999","","","659564","3816480","GW","false","" +"NM-19990","","","399256","3835770","GW","false","" +"NM-26377","","","582520","4055240","GW","false","" +"NM-25103","","","670668","3956450","GW","false","" +"NM-12978","","","552195","3683870","GW","false","" +"NM-04708","","","671298","3554520","GW","false","" +"NM-13554","","","552925","3692250","GW","false","" +"EB-652","","","398177","3973787","GW","true","" +"NM-23781","","","392354","3914970","GW","false","" +"NM-14298","","","331650","3701790","GW","false","" +"NM-18328","","","604641","3804120","GW","false","" +"TV-183","LQ-1","","444800","4022144","GW","true","From SR 68, take Hwy 382 east to intersection of Llano Quemado. Inside chainlink fence. Look for old casing in cement block in front of entrance to pump house (adjacent to RG-03894-S)." +"TB-1008","","","415647","3648346","SP","true","From junction of Labrocita Canyon and Fresnal Canyon, turn south into Fresnal Canyon. Drive 0.6 mi." +"NM-18415","","","615477","3805850","GW","false","" +"EB-533","","","416651","3944076","GW","true","" +"NM-25028","","","675303","3952100","GW","false","" +"NM-24722","","","409130","3944120","GW","false","" +"NM-13290","","","624447","3689640","GW","false","" +"EB-428","","","417533","3938878","GW","true","27A Apache Plume Drive" +"NM-13847","","","543841","3695160","GW","false","" +"SA-0044","SA-44_R00","","231391","3764079","GW","true","From Datil go south on NM 12 for 7.7 miles, half way between MM 67 & 66 (Gutierrezville) Look for the Harriet Ranch sign on the east side of the highway. Go east on the county road bearing to the southeast (right) at the fork. Go 5.6 miles and look for the windmill on the south (right) side of the road. Watch out for big black bull" +"NM-02781","","","555458","3674030","GW","false","" +"NM-16106","","","668325","3760460","GW","false","" +"BW-0512","18S5E34.3","","366550","3618540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-01312","","","147631","3913980","GW","false","" +"NM-07753","","","285122","3609450","GW","false","" +"CX-0134","45","","516821","4033800","GW","true","7 miles southeast of Cimarron" +"NM-11439","","","283928","3660940","GW","false","" +"NM-03784","","","230837","3520230","GW","false","" +"NM-02265","","","366303","3572400","GW","false","" +"NM-11659","","","405852","3662070","GW","false","" +"NM-11701","","","564777","3662660","GW","false","" +"PP-089","PSW-8","","433930","4006146","PS","true","" +"NM-24486","","","403886","3938320","GW","false","" +"NM-24818","","","405774","3945480","GW","false","" +"NM-22654","","","641356","3889950","GW","false","" +"NM-15866","","","675114","3752910","GW","false","" +"NM-09914","","","281126","3637610","GW","false","" +"NM-00009","","","339732","3522980","GW","false","" +"NM-00537","","","404737","3654040","GW","false","" +"NM-26326","","","472554","4045280","GW","false","" +"NM-07849","","","411342","3609100","GW","false","" +"NM-24724","","","649224","3944940","GW","false","" +"NM-08131","","","260199","3615660","GW","false","" +"NM-01786","","","117053","3525940","GW","false","" +"NM-27184","","","327350","3767779","D","true","" +"NM-18635","","","338875","3810220","GW","false","" +"NM-20009","","","539222","3835680","GW","false","" +"AR-0070","","","234425","4082180","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2930. At fork in the road is where address is located (1 Rd. 2929). Their backyard wood fence butts up against row of mailboxes at intersection of Rd. 2929 and 2930. Well is in 15' x 10' wooden shed in backyard." +"NM-01099","","","550675","3852670","GW","false","" +"NM-13046","","","672668","3687260","GW","false","" +"NM-17141","","","635744","3783900","GW","false","" +"NM-19409","","","589998","3825830","GW","false","" +"NM-05120","","","237431","3562600","GW","false","" +"NM-12877","","","677081","3683580","GW","false","" +"NM-06039","","","328240","3574700","GW","false","" +"NM-12130","","","667647","3670820","GW","false","" +"TB-0029","","","401118","3681715","GW","true","Well location is due east of mile marker 93, but access is turn off to east between mi 95-96. Directly across from OLD stucco house and old windmill on west side of road, take dirt road over cattle guard, heading towards and then parallel RR tracks. Road goes under RR bridge, gate combo there is 1011? Or 7491, keep locked. Follow 2 track thru drainage then generally head south. Pass thru corral, cross 2 arroyos, and go to end of irrigation pivot. Head right-ish at water tank (nw) to fence, then travel south (2 mi) thru alley to left on road. Back right across draw (watch drop off). Well is very nearby spool along east-west fence. Well is about 1/2 mi east of well TB-025" +"ED-0234","22S27E29.133","","573509","3581150","GW","true","" +"NM-15236","","","680022","3737990","GW","false","" +"NM-01064","","","531694","3841880","GW","false","" +"NM-20717","","","629361","3852180","GW","false","" +"NM-24323","","","477063","3934200","GW","false","" +"NM-01627","","","294166","4024660","GW","false","" +"NM-07300","","","313667","3600220","GW","false","" +"NM-20449","","","576437","3844690","GW","false","" +"NM-01369","","","191528","3927050","GW","false","" +"NM-04112","","","138656","3539930","GW","false","" +"NM-18725","","","501175","3810210","GW","false","" +"NM-01313","","","152309","3913950","GW","false","" +"NM-19993","","","395921","3835810","GW","false","" +"NM-11063","","","675712","3653210","GW","false","" +"BW-0928","1.8.2.30.430","","309093","3863010","SP","true","" +"NM-25829","","","453635","3998590","GW","false","" +"NM-24682","","","211266","3947230","GW","false","" +"TC-308","","","446534","4084300","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Right (north) on State Line past red barn, then right @ T through gate, left @ gate, past the first solar well (South Solar well aka Bull Pen well) to North Solar well w/black tire stock tanks." +"NM-13828","","","548156","3695090","GW","false","" +"EB-593","","","409015","3948118","GW","true","1080 Chicoma Vista. Off of Alameda." +"NM-01238","","","677662","3892080","GW","false","" +"NM-01654","","","270988","4040690","GW","false","" +"NM-11487","","","565006","3659400","GW","false","" +"SM-1020","","","422920","3651967","SP","true","Spring box feeds Alamogordo pipelines, no access." +"MB-1002","","","247144","3603070","SP","false","" +"AR-0057","","","232064","4080490","GW","true","From Aztec take Hwy 516 west toward Farmington. Just across the river turn right on Rd 2900 (Ruins Rd), turn left on Kin Kaai St., then right on Rio Pecos Rd, then left on Graceland Dr to address on left. Well is on E side of driveway near house in vicinity of basketball post amidst sunflowers." +"EB-679","","","419337","3932541","GW","true","Hwy 285" +"NM-17288","","","655197","3785930","GW","false","" +"AS-053","","","449639","4043940","GW","true","" +"NM-06376","","","557317","3580670","GW","false","" +"EM-9002","","","194210","3882650","M","true","" +"NM-03463","","","225467","3909970","GW","false","" +"NM-22626","","","375495","3889340","GW","false","" +"UC-0060","","","662651","4062216","GW","true","elv 5082 to USGS" +"NM-09636","","","162945","3637490","GW","false","" +"NM-23202","","","235044","3901080","GW","false","" +"SB-0575","TWDB 4856803","","494890","3446781","GW","false","" +"NM-18118","","","607434","3801190","GW","false","" +"NM-26702","","","444534","4079340","GW","false","" +"NM-11235","","","610226","3655280","GW","false","" +"NM-23500","","","371651","3907390","GW","false","" +"NM-24332","","","435573","3934650","GW","false","" +"MI-0192","","","487309","3939312","GW","true","Topographic situation: Draw in plateau" +"NM-01032","","","146140","3839510","GW","false","" +"NM-00143","","","487788","3561710","GW","false","" +"TV-222","","","443726","4016447","GW","true","NOTE: There are two wells at this site: (TV-210) 5.6"" steel casing w/padlock (lock replaced by TPL lock); (TV-222) 5"" PVC in steel surface casing set in concrete culvert pad. Get key from Roy Cunningham for Miranda canyon gate." +"NM-07936","","","310332","3611560","GW","false","" +"NM-16616","","","232282","3778070","GW","false","" +"NM-19385","","","403705","3825470","GW","false","" +"NM-10526","","","429941","3644590","GW","false","" +"WL-0194","","","441724","4049714","GW","true","Drive north from Taos on Hwy 522 ~4.5 miles. Turn east (right) on FR 493 (sign for San Cristobal post office). Drive ~0.4 miles, turn right on Schreiber Rd (middle road, other two are driveways). Drive 0.4 miles to address. Well in in SE part of property below horse corral on east fenceline." +"NM-01931","","","365032","3541550","GW","false","" +"NM-01776","","","235879","3520740","GW","false","" +"NM-16035","","","265129","3759160","GW","false","" +"NM-08740","","","287109","3624290","GW","false","" +"NM-25133","","","676344","3957920","GW","false","" +"NM-27126","PEN-03","","438712","4003160","GW","false","" +"SA-0457","5S14W28.310","","193800","3749530","GW","true","" +"NM-16385","","","542682","3769250","GW","false","" +"SV-0119","56 Via Entrada","","377851","3900238","GW","false","Unit 3 Lot 69" +"NM-19450","","","609379","3826970","GW","false","" +"QY-0264","11.30.8.444","","611533","3894510","GW","true","" +"NM-26744","","","243331","4091850","GW","false","" +"NM-27466","","","541570","3718520","GW","false","" +"QY-1028","11.33.29.211","","640172","3891440","SP","true","" +"SA-0303","","","245390","3755314","GW","true","" +"NM-21513","","","376833","3876010","GW","false","" +"NM-07157","","","234793","3598790","GW","false","" +"NM-09256","","","643271","3629400","GW","false","" +"NM-07336","","","184731","3604290","GW","false","" +"NM-05968","","","612409","3572110","GW","false","" +"NM-13580","","","554396","3692590","GW","false","" +"NM-11446","","","663908","3660460","GW","false","" +"NM-08555","","","653867","3620710","GW","false","" +"NM-25380","","","405378","3971980","GW","false","" +"NM-04494","","","578084","3548420","GW","false","" +"NM-24657","","","413943","3942340","GW","false","" +"NM-16273","","","315551","3766980","GW","false","" +"NM-13930","","","660972","3696770","GW","false","" +"QY-0729","6.31.25.224","","627958","3842770","GW","true","" +"ED-0102","21S26E19.423","","563281","3591920","GW","true","" +"NM-07704","","","592336","3606770","GW","false","" +"NM-13408","","","556528","3690360","GW","false","" +"NM-19286","","","638069","3823960","GW","false","" +"NM-01002","","","667141","3823060","GW","false","" +"SO-0075","3N2W14.331","","314116","3817110","GW","true","" +"TB-1071","","","418255","3646393","PS","true","Fresnal Canyon upstream crossing" +"NM-13520","","","550214","3691680","GW","false","" +"DE-0270","","","663049","3634631","GW","false","" +"NM-08139","","","659701","3614240","GW","false","" +"WL-0251","","","304253","3727233","GW","true","From I-25 take exit 115. Head north on Hwy 1 for 2.3 miles. Take road west under interstate, drive ~2 miles. Take road east of Gillard's driveway, past old truck ~0.2 miles to well under large wood frame." +"NM-06768","","","587960","3588470","GW","false","" +"NM-07428","","","210065","3605770","GW","false","" +"SB-0796","TWDB 5007302","","487240","3426069","GW","false","" +"NM-24561","","","417038","3939760","GW","false","" +"NM-19550","","","169259","3833900","GW","false","" +"NM-10002","","","462838","3636400","GW","false","" +"NM-12843","","","638203","3682370","GW","false","" +"NM-11277","","","522569","3655420","GW","false","" +"NM-09228","","","425088","3627810","GW","false","" +"NM-06052","","","583093","3573830","GW","false","" +"NM-27411","","","613136","3650470","GW","false","" +"NM-05706","","","221943","3571550","GW","false","" +"ED-0211","22S27E9.433","","575916","3585250","GW","true","" +"NM-25903","","","414657","4002950","GW","false","" +"NM-12699","","","668769","3680880","GW","false","" +"ED-0175","22S26E1.313","","570263","3587220","GW","true","" +"NM-07430","","","655031","3602800","GW","false","" +"NM-00014","","","489090","3540480","GW","false","" +"NM-23529","","","366132","3908300","GW","false","" +"QY-0760","7.29.15.442","","605152","3854290","GW","true","" +"QU-135","MMW-44A","","452195","4060297","GW","true","" +"SA-0415","4S12W31.400","","210836","3757040","GW","true","" +"NM-19321","","","568938","3823870","GW","false","" +"NM-28264","","","274371","3746933","SP","false","" +"BW-0228","14S9E35.442","","402185","3657250","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"JM-011","JSAI Exp Well 9","","316022","3647102","GW","true","" +"NM-10246","","","553466","3640450","GW","false","" +"NM-11073","","","631149","3652640","GW","false","" +"NM-13371","","","473354","3689950","GW","false","" +"TB-0002","","","422350","3652484","GW","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end. South of trailer, well is south of spring fed pond towards smaller hill, vague trail , look for bucket on top of well." +"NM-19036","","","616439","3816670","GW","false","" +"SB-0141","TWDB 4734301","","522670","3480454","GW","false","" +"EB-665","","","407622","3939532","GW","true","" +"NM-21316","","","466755","3869440","GW","false","" +"SD-0220","10N.7E.12.434","","395901","3884690","GW","true","" +"NM-02030","","","234528","3555860","GW","false","" +"TO-0357","8N8E28.311","","398309","3861360","GW","true","" +"NM-03062","","","569726","3796950","GW","false","" +"NM-27657","","","679000","3795790","GW","false","" +"NM-27165","HM-42","","435202","4040600","SP","false","" +"NM-27843","","","615567","3779880","GW","false","" +"NM-26925","PW-186","","370177","3910103","GW","true","" +"NM-12657","","","638116","3679380","GW","false","" +"NM-04396","","","635307","3546430","GW","false","" +"NM-07496","","","197602","3607370","GW","false","" +"NM-12234","","","630738","3671760","GW","false","" +"SB-0038","TWDB 4709904","","508890","3515069","GW","false","" +"SB-0875","Mayer 36","","441859","3551227","GW","false","" +"NM-09277","","","447566","3628370","GW","false","" +"NM-28014","","","357664","3881520","GW","false","" +"NM-14468","","","618220","3706160","GW","false","" +"NM-03952","","","344119","3524700","GW","false","" +"NM-07859","","","667039","3610240","GW","false","" +"DA-0177","29S3W13.3","","300735","3518460","GW","true","" +"NM-26666","","","193852","4079080","GW","false","" +"NM-10712","","","403393","3646690","GW","false","" +"NM-19985","","","600645","3835710","GW","false","" +"AR-0226","","","232088","4080470","GW","true","From Aztec, go east on NM 516, turn right (south) on Main Street, turn left on E. Blanco Street, turn right on Graceland Blvd. House is on left. Well is in back yard." +"NM-14359","","","543038","3701530","GW","false","" +"NM-12835","","","628448","3682360","GW","false","" +"NM-14981","","","290740","3728600","GW","false","" +"SB-0199","TWDB 4758506","","516036","3434632","GW","false","" +"NM-00152","","","673592","3569070","GW","false","" +"NM-07930","","","230925","3613330","GW","false","" +"WL-0268","","","327976","3569033","GW","true","Heading south on I-25 from Las Cruces, take I-10 west for ~3.7 mi to exit 140 for NM-28/Ave de Mesilla. Turn left onto NM-28/Ave de Mesilla and continue for 1 mi. Turn right onto Calle del Norte and follow for 2 mi to S. Fair Acres Rd for another 0.5 mi. Turn left onto Mesilla Hills Dr for 2.3 mi then right onto Desert Star Rd. to address on right. Well next to garage." +"NM-07326","","","651747","3600900","GW","false","" +"NM-18399","","","132472","3812040","GW","false","" +"SB-0509","TWDB 4838703","","467251","3472568","GW","false","" +"NM-06903","","","647426","3591320","GW","false","" +"SR-0032","","","442099","3954470","SP","true","Pecos Canyon area. From SR 63, climb Santa Fe NF 646 ~3 miles to southern-most switchback overlooking Davis Cr, take logging road a mile or more to swampy valley bottom (Davis Cr.), take second logging road on right, climb to pink tape, walk south through large aspen grove to next real stream, follow uphill to spring." +"NM-21097","","","577990","3862450","GW","false","" +"EB-457","","","400236","3937629","SP","true","" +"BW-0787","1.6.20.14","","141707","3852060","GW","true","" +"NM-20943","","","562496","3856780","GW","false","" +"NM-21752","","","640264","3880350","GW","false","" +"NM-25348","","","390110","3970250","GW","false","" +"UC-0114","","","621781","4037987","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-16214","","","276444","3765050","GW","false","" +"NM-10871","","","404689","3649050","GW","false","" +"NM-14674","","","646452","3715180","GW","false","" +"NM-02739","","","561193","3659590","GW","false","" +"NM-17693","","","325012","3792750","GW","false","" +"NM-22024","","","237310","3885810","GW","false","" +"SB-0726","TWDB 4923502","","387191","3506660","GW","false","" +"NM-10722","","","641842","3647360","GW","false","" +"NM-13132","","","635488","3687810","GW","false","" +"NM-05363","","","241687","3567050","GW","false","" +"NM-27129","TP-13","","429934","4052410","GW","false","" +"NM-24236","","","473732","3931340","GW","false","" +"DE-0226","","","639305","3628663","GW","false","" +"NM-00007","","","296881","3522970","GW","false","" +"NM-17474","","","650799","3788760","GW","false","" +"NM-28047","","","275042","3890410","GW","false","" +"NM-00490","","","442573","3644850","GW","false","" +"NM-10892","","","540468","3648860","GW","false","" +"PC-079","PW-140","","369168","3907284","GW","true","" +"SA-1002","","","256780","3757709","ES","true","Hwy 60 to CR 52, turn south at VLA. Follow back to first sign toward Sargent Canyon on East side of road (left turn). Go back to GPS coords, where stream crosses road." +"NM-21098","","","560376","3862380","GW","false","" +"NM-26321","","","472230","4045000","GW","false","" +"NM-07640","","","575528","3605770","GW","false","" +"NM-08222","","","300043","3616010","GW","false","" +"RA-045","","","416886","4008066","GW","true","In vault in backyard" +"NM-20624","","","621844","3849770","GW","false","" +"SB-0113","TWDB 4718706","","512324","3503004","GW","false","" +"NM-27864","","","554102","3811320","GW","false","" +"NM-17087","","","656317","3783210","GW","false","" +"NM-11358","","","567535","3657350","GW","false","" +"NM-17504","","","659537","3789830","GW","false","" +"NM-06553","","","638765","3584850","GW","false","" +"NM-03378","","","347151","3886840","GW","false","" +"NM-14484","","","464366","3705810","GW","false","" +"NM-25170","","","418278","3959560","GW","false","" +"NM-26936","PW-205","","363209","3910740","GW","true","" +"MI-0084","","","459348","3917156","GW","true","Topographic situation: Valley" +"NM-12215","","","561903","3670250","GW","false","" +"NM-08488","","","665032","3619630","GW","false","" +"SO-0012","1N4E11.244","","363195","3799310","GW","true","" +"NM-22527","","","242449","3890910","GW","false","" +"SB-0934","","","456680","3624600","GW","false","" +"NM-10140","","","556697","3638810","GW","false","" +"NM-15261","","","674811","3738640","GW","false","" +"NM-11433","","","636966","3659860","GW","false","" +"WL-0200","","","234488","3555883","GW","true","From main intersection in Deming (Pine and Gold), go south on NM 11 for 9.1 miles. Go west on Sunshine Rd SW for 4 miles, go south on Hermanas for 4.6 miles. Meet Tony at the trees and tan workshop. From there, go north on Hermanas Rd for 2.7 miles. Go east on C034 for 0.2 miles. Well located near red bldg w/blue pipes." +"NM-13463","","","548280","3690990","GW","false","" +"NM-14879","","","573677","3722600","GW","false","" +"WL-0145","","","371411","3909895","GW","true","From I-25, take NM-165 east thru Placitas ~7.1 miles. Turn left (north) onto Camino de Tecolote. Drive ~0.8 miles to Camino de la Rosa Castilla, turn left (west). Drive ~0.65 miles to address on the left (south) side of the road, drive about 0.1 miles to house. Well is in front yard." +"NM-09016","","","556671","3625160","GW","false","" +"NM-09540","","","552556","3630870","GW","false","" +"TO-0290","7N8E16.422","","399764","3855050","GW","true","" +"DA-0062","22S2E28.333","","335381","3581680","GW","true","" +"ED-0303","23S28E13.142","","590109","3574910","GW","true","" +"NM-22174","","","357903","3884570","GW","false","" +"NM-11015","","","282996","3652830","GW","false","" +"NM-22208","","","674907","3885670","GW","false","" +"NM-09247","","","189771","3632630","GW","false","" +"NM-22899","","","385508","3892560","GW","false","" +"NM-16154","","","677850","3761870","GW","false","" +"NM-19609","","","532016","3829240","GW","false","" +"NM-01256","","","641861","3896110","GW","false","" +"NM-21509","","","345933","3876380","GW","false","" +"NM-15473","","","135167","3748580","GW","false","" +"NM-25229","","","260735","3966140","GW","false","" +"NM-21494","","","273328","3877500","GW","false","" +"NM-22483","","","374613","3887780","GW","false","" +"NM-15818","","","171430","3755000","GW","false","" +"NM-05466","","","233582","3568800","GW","false","" +"NM-14565","","","660453","3710870","GW","false","" +"HS-031","TC-031","","289239","3667842","GW","true","Poplar and Main on the NE Corner" +"NM-25126","","","395010","3956170","GW","false","" +"NM-04469","","","343359","3548920","GW","false","" +"NM-15602","","","630184","3745040","GW","false","" +"NM-27197","","","382025","3879945","GW","false","" +"SM-1047","","","439520","3626817","SP","true","" +"PP-039","PW-44","","436841","4003959","GW","true","" +"TO-0186","5N8E36.341","","403312","3830400","GW","true","" +"NM-09082","","","200705","3630630","GW","false","" +"NM-16123","","","326083","3760620","GW","false","" +"NM-23171","","","234312","3900300","GW","false","" +"TO-0409","9N8E26.121","","403230","3871500","GW","true","" +"NM-11762","","","559664","3663710","GW","false","" +"NM-20479","","","626703","3845860","GW","false","" +"NM-07483","","","225961","3606430","GW","false","" +"NM-09181","","","409632","3627540","GW","false","" +"SD-0355","9N.6E.36.312","","385133","3869390","SP","true","" +"QY-0636","5.29.9.421","","603575","3836940","GW","true","" +"NM-23304","","","350309","3900130","GW","false","" +"NM-04919","","","665526","3557990","GW","false","" +"LC-006","","","397628","3939546","GW","true","From I-25, take 599 west. Go south on Airport Rd.; veer right on Los Via de Los Romero (dirt road w/357 on post); keep right @ fork in road; keep right past orange stucco house; turn left into 86. Located at base of basalt cliffs, well is on west side of house under old windmill stand in vault." +"NM-22260","","","661833","3885860","GW","false","" +"NM-12501","","","558635","3675310","GW","false","" +"NM-14086","","","469164","3697110","GW","false","" +"NM-28331","TC-10","","459072","4024568","GW","false","" +"NM-15952","","","671724","3755650","GW","false","" +"SD-0256","11N.5E.35.234","","374997","3889020","GW","true","" +"NM-23261","","","349412","3899440","GW","false","" +"NM-01895","","","348132","3536460","GW","false","" +"NM-17239","","","323089","3785730","GW","false","" +"NM-23249","","","632667","3899040","GW","false","" +"NM-17542","","","667078","3790170","GW","false","" +"NM-17241","","","649419","3785380","GW","false","" +"NM-28364","","","476831","3526620","GW","false","" +"NM-03333","S176","","346256","3877330","GW","false","" +"NM-13393","","","543192","3690170","GW","false","" +"BW-0593","17S5E26.2","","369123","3630630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BC-0347","339","","374657","3882650","GW","true","" +"NM-11330","","","644150","3658150","GW","false","" +"TB-0088","","","403115","3642807","GW","true"," From entrance main office, south thru yard to end of yard. Follow road. Bear right (W) thru cattle guard about 1 mi to HQ. From barn follow drive to SE side to well head south of silver horizontal fuel tank. Before windmill, in line with it." +"NM-07033","","","570298","3593190","GW","false","" +"NM-13317","","","622993","3690080","GW","false","" +"TO-0336","8N6E22.11","","381337","3863780","GW","true","" +"AR-0009","","","226908","4076480","GW","true","From Hwy 516, take Hwy 350 south across river. Make left on Road 3000; make another left on Road 3302. House is on corner w/gate and ""Beware of Dogs"" sign but there are no dogs. Well in field on NE side of property in horse pasture inside chicken wire fence." +"DE-0203","","","611977","3600163","GW","false","" +"NM-19470","","","653294","3828360","GW","false","" +"NM-11368","","","612040","3657790","GW","false","" +"NM-21670","","","360148","3879020","GW","false","" +"NM-04128","","","232882","3538080","GW","false","" +"NM-25321","","","159797","3974640","GW","false","" +"NM-05591","","","262238","3569530","GW","false","" +"NM-12287","","","553943","3671680","GW","false","" +"NM-03345","","","402655","3878460","GW","false","" +"NM-12977","","","560549","3683910","GW","false","" +"AH-068","AH-26","","442499","4044243","GW","true","" +"NM-11878","","","286658","3667140","GW","false","" +"NM-24867","","","408952","3946400","GW","false","" +"AR-0130","B008","","242543","4091160","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn right onto Rd 2390 then left onto Rd 2380. Take left turn in Rd 2380 and proceed to address on right." +"QY-0309","11.32.22.21","","633510","3892790","GW","true","" +"NM-27519","","","675462","3772390","GW","false","" +"NM-27628","","","642599","3794450","GW","false","" +"NM-06977","","","675394","3593280","GW","false","" +"NM-21947","","","262768","3884090","GW","false","" +"QU-009","Q-23","","452112","4064658","GW","true","From north on 522, make right (east) on Route 38, then left (north) on Cabresto Road. Up Forest Road (Cabresto Creek) to #445; cross bridge and proceed up driveway and hill to top. Well is on disused ramp over driveway." +"QY-1004","9.36.19.334a","","667049","3873100","GW","true","" +"TC-294","","","450186","4044202","PS","true","50m above gaging station at mouth of Hondo Canyon." +"NM-17859","","","340337","3797130","GW","false","" +"BW-0548","10S7E10.4","","388592","3702090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"OG-0083","","","653216","3809550","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile west on US 60. Turn right north on CR R. Drive 0.65 miles. Turn right east into field. Drive 0.25 miles to well." +"NM-00102","","","574272","3554020","GW","false","" +"ED-0163","22S24E24.211","","551876","3582990","GW","true","" +"TO-0540","8N8E33.2","","399389","3860290","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-20798","","","567145","3853090","GW","false","" +"NM-25261","","","418227","3964980","GW","false","" +"NM-24252","","","407751","3932300","GW","false","" +"NM-21298","","","385672","3869390","GW","false","" +"NM-14612","","","666922","3712830","GW","false","" +"TO-0307","7N8E33.424","","399707","3849970","GW","true","" +"DE-0360","","","569195","3626586","GW","false","" +"TB-0047","","","405254","3661391","GW","true","At junction of hwy 54 and Bookout NW, turn east on Bookout. Go 0.8 mi to corner of alfalfa field. Turn Right (south) at Abercrombie sign, follow to back (~200 ft). Go past mobile home on Right, stop by haybarn. Well 100 ft west by SW corner of white metal barn/shed." +"NM-04579","","","233883","3554300","GW","false","" +"NM-06502","","","673381","3584340","GW","false","" +"TO-0349","8N8E12.212","","404487","3867000","GW","true","" +"NM-28187","","","158257","4026420","GW","false","" +"NM-26199","","","312730","4031820","GW","false","" +"NM-03002","","","654932","3792380","GW","false","" +"NM-23884","","","471195","3917980","GW","false","" +"QY-0292","11.31.8.14","","620381","3895540","GW","true","" +"NM-23072","","","275035","3897250","GW","false","" +"NM-09695","","","566718","3632520","GW","false","" +"SR-0015","","","138989","3735590","SP","true","Apache N.F.; from US 180 N of intersection with rt 12, left onto FR 4040K, 4180Q ascending toward Leggett Peak" +"NM-05479","","","610172","3566110","GW","false","" +"CP-0001","","","655844","3745295","GW","true","At Dora, NM head south on Rt. 206, 7 miles to Pep. Go left (East) on S. Roosevelt Rd 29. Go ~1 mile to fenced area w/power poles on North side of road. Well is in fenced enclosure." +"MI-0136","","","474931","3928211","GW","true","Topographic situation: Hilly" +"AB-0090","S102","","356677","3888720","GW","true","" +"NM-00313","","","651780","3613860","GW","false","" +"ED-0100","21S26E17.412","","564805","3593940","GW","true","" +"AH-031","HM-22","","438151","4041736","GW","true","" +"AH-037","KOND","","440221","4040584","GW","true","" +"NM-12056","","","549821","3667620","GW","false","" +"QY-0018","10.28.27.122","","594812","3881130","GW","true","" +"NM-19493","","","232616","3830770","GW","false","" +"NM-03596","","","674919","3991740","GW","false","" +"NM-11467","","","405904","3659450","GW","false","" +"TO-0065","4N6E9.331","","378336","3827630","GW","true","" +"NM-12703","","","625656","3680100","GW","false","" +"NM-26036","","","305735","4016620","GW","false","" +"UC-0125","","","667463","3979681","GW","false","USGS, not in NESWCD network, not visited by NMBGMR" +"NM-09437","","","634791","3631190","GW","false","" +"UC-0153","","","641635","4045220","GW","false","" +"NM-24263","","","396297","3932920","GW","false","" +"NM-17899","","","557433","3796620","GW","false","" +"BC-0086","71","","375219","3890010","GW","true","" +"NM-15009","","","665921","3728930","GW","false","" +"PC-121","PW-208","","371074","3907163","GW","true","From Placitas Post Office, go east on HWY 165 ~300 feet, turn south (right) on first road east of Post Office, which is Camino del Campo Santo. Drive southeast ~0.2 miles and turn west (right) on Paseo de San Antonio. Drive ~0.15 miles and turn south (left) on Camino de la Ciruela. Drive ~0.2 miles, the road abruptly turns left and becomes Camino Los Altos. Drive for 0.1 mile, turn right thru the gate (you need an escort to open the gate for you). Drive ~0.2 miles, park at the start of a very rough road on the north (left) side of the road. Start walking north on this road (it is too rough to drive), but the road soon does a 180-degree turn to the south. Road leads directly to the well, which is about a ยฝ mile walk in total." +"NM-27567","","","657025","3792960","GW","false","" +"NM-23454","","","638333","3905530","GW","false","" +"NM-16671","","","293457","3777580","GW","false","" +"SD-0205","10N.6E.16.432","","381164","3884040","GW","true","" +"NM-18477","","","260110","3809050","GW","false","" +"NM-04753","","","677708","3555340","GW","false","" +"NM-19846","","","674940","3834790","GW","false","" +"NM-13386","","","550196","3690200","GW","false","" +"NM-05326","","","666545","3564510","GW","false","" +"NM-11567","","","678909","3661560","GW","false","" +"BC-0099","85","","375334","3892700","GW","true","" +"NM-24234","","","476477","3931330","GW","false","" +"NM-16589","","","651908","3775560","GW","false","" +"TB-0179","","","405225","3706244","GW","true","Oscuro County Road A0002, approx 3 miles to 300 Grand Ave. Two-story house. Past driveway at 2-story to ranch house on north side of road. Past garage to the west behind pumphouse. Behind garage." +"EB-416","","","395864","3964520","GW","true","15 Miles NW of Santa Fe Nr. Buckman" +"NM-06131","","","560981","3575580","GW","false","" +"QY-0165","11.29.31.143","","599464","3888760","GW","true","" +"NM-04885","","","325144","3557530","GW","false","" +"EB-519","","","415880","3932394","GW","true","" +"OG-0022","","","639394","3821637","GW","true","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1.5 miles south. Turn right west onto dirt. Drive 0.2 miles west, turn left south into field. Drive 0.1 miles to well." +"NM-03100","","","572237","3806120","GW","false","" +"EB-294","","","403660","3938852","GW","true","E. Frontage Rd, just south of 599 bypass; in wellhouse northside of commercial building" +"SV-0134","18y Camino Real","","380579","3899471","GW","false","Unit 1 Lot 86A" +"NM-21588","","","347309","3877580","GW","false","" +"NM-06490","","","150053","3588720","GW","false","" +"NM-20801","","","636325","3853920","GW","false","" +"NM-13940","","","544640","3695560","GW","false","" +"EB-405","","","404458","3931024","GW","true","" +"NM-00940","","","578531","3804630","GW","false","" +"NM-20876","","","596924","3855420","GW","false","" +"NM-17174","","","651840","3784550","GW","false","" +"NM-00674","","","472345","3689580","GW","false","" +"NM-11145","","","640758","3654100","GW","false","" +"NM-05467","","","221403","3569100","GW","false","" +"NM-07302","","","658523","3599780","GW","false","" +"NM-15077","","","404813","3730180","GW","false","" +"NM-20073","","","624722","3838160","GW","false","" +"NM-24512","","","673727","3940080","GW","false","" +"NM-14341","","","131322","3708160","GW","false","" +"NM-13297","","","551469","3689010","GW","false","" +"QY-0228","11.30.24.221","","617785","3892700","GW","true","" +"NM-24443","","","402443","3937600","GW","false","" +"NM-13627","","","552636","3693080","GW","false","" +"NM-24574","","","670656","3941350","GW","false","" +"NM-05919","","","250953","3574030","GW","false","" +"SB-0435","TWDB 4815305","","485179","3524867","GW","false","" +"NM-18824","","","666486","3813340","GW","false","" +"NM-28000","","","269102","3881880","GW","false","" +"NM-09720","","","218541","3636640","GW","false","" +"NM-06597","","","671310","3586220","GW","false","" +"NM-14602","","","547126","3710200","GW","false","" +"NM-08975","","","228565","3628160","GW","false","" +"SR-0005","","","521146","3546780","SP","true","Gualadule Mtns; no trail, descend from FR 201" +"NM-27071","","","327504","3756490","GW","true","" +"NM-20740","","","541465","3851860","GW","false","" +"NM-18211","","","654859","3803510","GW","false","" +"MB-0007","","","268711","3573103","GW","true","Follow directions to MB-0003. Well is just N of abandoned ranch house under old windmill approximately 0.75 mi N of railroad tracks." +"NM-23593","","","360743","3909430","GW","false","" +"AR-0514","","","226839","4077020","PS","true","" +"QY-0414","12.35.35.424","","664468","3898850","GW","true","" +"AS-001","AS-1","","448389","4041400","GW","true","" +"NM-27059","","","325804","3781150","GW","true","" +"NM-20435","","","671417","3846150","GW","false","" +"NM-21462","","","653340","3874340","GW","false","" +"NM-06456","","","676532","3583560","GW","false","" +"EM-9008","","","194260","3882640","M","true","In alcove just south of the pool" +"TV-234","","","445805","4020855","GW","true","In Talpa, near refrigerator graveyard just east of Tplq hill. Big house w/red room on Talpa ridge. Gate code=3369 to house. Gate code=2020 to county road that leads to deep well. Straight south thru gate; around side of knob, then descends, in saddle 0.15 mile from gate." +"NM-09802","","","673609","3635520","GW","false","" +"SA-0143","","","262870","3715057","GW","true","From the Monticello plaza, continue about 17 miles up the road that runs up and through Alamosa Creek. Rough going, crossing the creek back and forth! Look for another creek crossing with a sign on the east (L) side saying Main Road with an arrow pointing up stream. Ignore the sign and cross over the creek one last time. Go through the green gate and continue past the ranch manager's house. Then a second house with tent platforms around it is the Maytag house (with a sign saying 'Maytag' above the door). Follow the driveway for another 200 ft, to a small barn to the east (R). Turn R at the barn, and follow the 2-track for another 100 ft. Well is to the east (R), near the fence and irrigation ditch. The casing is visible sticking up through the scrub." +"QY-0498","16.34.33.433","","650913","3936970","GW","true","" +"NM-14281","","","550403","3700020","GW","false","" +"NM-03895","","","227843","3524500","GW","false","" +"OG-0058","","","643871","3815911","GW","true","" +"NM-20817","","","591809","3853730","GW","false","" +"NM-19034","","","642917","3817070","GW","false","" +"HS-048","TC-048","","289951","3667745","GW","true","Just north of 400 Mims, in the space between the buildings on mims. It has a green cover, west of metal fence. " +"TC-206","WG-12","","433132","4061619","GW","true","" +"NM-11146","","","478675","3652860","GW","false","" +"EB-544","","","406140","3944272","GW","true","" +"NM-17500","","","622417","3789050","GW","false","" +"NM-12979","","","552195","3683870","GW","false","" +"SA-0010","SA-10_R00","","257321","3784316","GW","true","From Hwy 60, turn north at Rocky Mountain elk Foundation sign. Go 2 miles to intersection. Take Co Rd E.20. Northeast for 3 miles to WM. Located south of earthen tank, steel tower." +"NM-25336","","","405805","3969580","GW","false","" +"MI-0141","","","484531","3932360","GW","true","Topographic situation: Plateau" +"NM-06626","","","361705","3586200","GW","false","" +"NM-09803","","","620469","3634600","GW","false","" +"NM-19776","","","247665","3835460","GW","false","" +"MG-018","WF-A","","294166","3781447","GW","true","North Road 2.5 miles up Riley Road; well in horse pasture southwest of house." +"NM-19490","","","565143","3827110","GW","false","" +"NM-06550","","","662963","3585180","GW","false","" +"NM-04605","","","584454","3551790","GW","false","" +"PP-048","PW-53","","433683","4002869","GW","true","" +"SB-0520","TWDB 4845301","","463829","3468423","GW","false","" +"NM-10841","","","665255","3649760","GW","false","" +"SV-0008","11 Calle Lomita","","377183","3900343","GW","false","Unit 3 Lot 80" +"NM-20087","","","397140","3837830","GW","false","" +"NM-21738","","","396012","3879650","GW","false","" +"NM-18090","","","611968","3800940","GW","false","" +"NM-06129","","","674550","3577250","GW","false","" +"NM-12228","","","660912","3672240","GW","false","" +"NM-08737","","","409093","3622550","GW","false","" +"NM-03494","","","650373","3926000","GW","false","" +"TO-0177","5N8E21.111","","398161","3834950","GW","true","" +"NM-24906","","","409039","3947450","GW","false","" +"NM-10515","","","554977","3644430","GW","false","" +"NM-19088","","","472661","3817000","GW","false","" +"NM-02804","","","543121","3688530","GW","false","" +"NM-14931","","","641817","3725180","GW","false","" +"NM-04573","","","548260","3550850","GW","false","" +"SO-0098","1S1W2.12","","323506","3792380","GW","true","" +"NM-02042","","","343606","3554740","GW","false","" +"WL-0232","","","400226","3993394","GW","true","From the Hernandez Community Center (19418 US 84), go north ~1.5 miles, then turn east (right) on HWY 74. Drive 1.2 miles to T-intersection, turn left onto HWY 55. Drive 1.5 miles, then turn right into Chamita Community Center (the fire station is here). Drive around track, well is on north corner of track outside building." +"NM-13503","","","550629","3691430","GW","false","" +"NM-00063","","","664033","3547620","GW","false","" +"NM-03039","","","641927","3790300","GW","false","" +"NM-04499","","","641034","3549970","GW","false","" +"NM-15712","","","219220","3751090","GW","false","" +"NM-03802","","","248038","3520560","GW","false","" +"NM-14260","","","365441","3700430","GW","false","" +"NM-21796","","","378542","3880570","GW","false","" +"WL-0108","CN-2014-010","","620971","3614520","GW","true","" +"NM-11539","","","644524","3660960","GW","false","" +"NM-01629","","","428181","4024700","GW","false","" +"NM-22004","","","406933","3882300","GW","false","" +"NM-24009","","","396774","3924010","GW","false","" +"NM-16878","","","677146","3780190","GW","false","" +"NM-24882","","","408881","3946800","GW","false","" +"BW-0828","3.1.1.2.120","","323443","3791620","GW","true","" +"QU-506","","","439655","4057344","SP","true","Along lower portion of Red River, before confluence with Rio Grande. Seep about 50 vertical feet above river." +"NM-26218","","","469894","4030960","GW","false","" +"NM-19873","","","631462","3834960","GW","false","" +"NM-04854","","","239726","3559050","GW","false","" +"NM-21515","","","237494","3879020","GW","false","" +"NM-14376","","","445404","3702020","GW","false","" +"NM-00039","","","486446","3542771","GW","true","Behind house between house and barn in back yard." +"NM-03392","","","344978","3890050","GW","false","" +"NM-27062","","","293905","3775560","GW","true","" +"NM-19554","","","564727","3828370","GW","false","" +"SM-0225","","","478066","3672646","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. 4 miles past the Leonard headquaters, the road crosses Monument Canyon arroyo. Shearing barn well is to the right, behind the shearing barn visible from the road. Follow electric wires to well/pump. Well enclosed in metal box with hinged lid." +"NM-23299","","","381234","3899600","GW","false","" +"BW-0555","17S9E2.3","","407048","3636510","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22940","","","317011","3894330","GW","false","" +"NM-21332","","","348508","3870980","GW","false","" +"NM-07351","","","216744","3603670","GW","false","" +"NM-21894","","","348949","3881770","GW","false","" +"NM-08815","","","668824","3624840","GW","false","" +"NM-23494","","","406577","3906620","GW","false","" +"NM-15167","","","564228","3733180","GW","false","" +"NM-24034","","","404547","3924790","GW","false","" +"NM-02623","","","545267","3632400","GW","false","" +"NM-05622","","","236218","3570400","GW","false","" +"NM-05033","","","264818","3561060","GW","false","" +"NM-19340","","","306134","3826220","GW","false","" +"NM-14605","","","680425","3712420","GW","false","" +"HS-110","TC-110","","289142","3668608","GW","true","" +"NM-20829","","","527866","3853720","GW","false","" +"NM-00392","","","406724","3629690","GW","false","" +"SD-0337","7N5E35.234","","373300","3850890","SP","true","" +"NM-11852","","","285848","3666880","GW","false","" +"AR-0139","B019","","227706","4076900","GW","true","" +"NM-25643","","","417585","3984860","GW","false","" +"NM-03908","","","117507","3528940","GW","false","" +"SA-0116","","","247254","3773254","GW","true","From Highway 60 west of MM 80 at the crossroads with cattle guards turn south (left) on county road. Take the road south for 4.5 miles and after crossing the section line, just south of the cattle guard take the two track to the east (left) along the fence line for two miles. Go thru the gate and look for the water tank, casing is under a five gallon bucket." +"NM-10830","","","641320","3649360","GW","false","" +"NM-14600","","","566290","3710310","GW","false","" +"NM-16246","","","602031","3764470","GW","false","" +"NM-15715","","","627447","3747870","GW","false","" +"NM-04014","","","345302","3528220","GW","false","" +"NM-08156","","","208654","3617380","GW","false","" +"DE-0135","","","614920","3631167","GW","false","" +"NM-27328","","","366570","3590470","GW","false","" +"NM-17857","","","604319","3796320","GW","false","" +"EB-678","","","418273","3934350","GW","true","" +"NM-07556","","","660756","3605360","GW","false","" +"NM-22338","","","580349","3885600","GW","false","" +"NM-09830","","","553475","3634080","GW","false","" +"NM-03570","","","641878","3979370","GW","false","" +"BC-0174","154","","378487","3885280","GW","true","" +"NM-26611","","","194301","4075720","GW","false","" +"NM-15252","","","419310","3736630","GW","false","" +"TB-0165","","","434414","3711061","GW","true","#156 B Nogal Canyon Rd. North side of road. Cabin. Cross bridge take trail back west. Look for well on left. Or cross on west edge of pond for closest access. White PVC." +"NM-08411","","","648174","3618220","GW","false","" +"TS-031a","","","436991","4044179","SP","true","Zone of springs and seeps north of Dunn Bridge, on East side. Northernmost spring, and largest discharge in zone. This is probably same as NMED Station DBN Spring." +"NM-23250","","","392969","3898760","GW","false","" +"NM-27660","","","646448","3795310","GW","false","" +"NM-18639","","","648329","3810530","GW","false","" +"NM-03709","","","167272","3487320","GW","false","" +"NM-21207","","","404217","3867170","GW","false","" +"NM-28291","148884","","157211","3738887","SP","false","Gila National Forest" +"BW-0870","2.9.28.23.212","","596911","3873120","GW","true","" +"NM-24126","","","414468","3928840","GW","false","" +"NM-16531","","","596400","3773280","GW","false","" +"NM-02798","","","138452","3693290","GW","false","" +"NM-15743","","","649227","3748860","GW","false","" +"TO-0132","5N7E11.411","","392517","3837360","GW","true","" +"JM-047","","","304614","3639134","GW","true","" +"NM-21697","","","351311","3879530","GW","false","" +"NM-14594","","","254364","3713120","GW","false","" +"NM-24421","","","435991","3936830","GW","false","" +"NM-23499","","","371651","3907390","GW","false","" +"QY-0540","17.36.21.12","","669749","3950980","GW","true","" +"TO-0296","7N8E23.334","","401758","3852860","GW","true","" +"NM-02638","","","335727","3638310","GW","false","" +"ED-0139","21S27E30.442a","","573055","3590060","GW","true","" +"NM-07597","","","662858","3606040","GW","false","" +"PC-007","PW-019","","367909","3907979","GW","true","" +"NM-04817","","","664084","3556400","GW","false","" +"NM-21597","","","360633","3877570","GW","false","" +"JM-053","","","313077","3652498","GW","true","" +"NM-10193","","","555497","3639600","GW","false","" +"NM-06245","","","534849","3578230","GW","false","" +"QY-0307","11.32.21.112","","631308","3892950","GW","true","" +"NM-27055","","","324204","3768790","GW","true","" +"NM-02684","","","557322","3647460","GW","false","" +"TB-0041","","","427730","3719457","GW","true","Hwy 380 east of Carrizozo. Just west of Jose Vega loop and subdivision, turn south on dirt road with green gate with yellow stripe. Combo lock - 27-8-32" +"NM-02243","","","247855","3572660","GW","false","" +"NM-02150","M-095","","281226","3564934","GW","false","Take I-10 east from Deming. Exit Akela. Go east on the frontage road on the south side of I-10 for 5.8 miles. Go south through the green gate for 1.3 miles. Well located on southwest side of holding tank under windmill." +"NM-01499","","","158494","3960940","GW","false","" +"SB-0114","TWDB 4718707","","512350","3503466","GW","false","" +"NM-00953","","","618189","3810210","GW","false","" +"QY-0345","11.34.5.433","","649474","3896720","GW","true","" +"PC-065","PW-115","","373564","3912403","GW","true","" +"NM-04462","","","135998","3553940","GW","false","" +"NM-03742","","","159323","3506120","GW","false","" +"BC-0450","453","","350734","3895631","GW","false","" +"NM-01527","","","457889","3968150","GW","false","" +"SO-0118","2N2W12.11","","315740","3810380","SP","true","" +"NM-10977","","","560084","3650100","GW","false","" +"NM-27402","","","675209","3637700","GW","false","" +"NM-00862","","","326959","3752760","GW","false","" +"NM-10009","","","198781","3641020","GW","false","" +"NM-25075","","","207951","3957520","GW","false","" +"NM-08345","","","661655","3617480","GW","false","" +"NM-20869","","","566089","3854990","GW","false","" +"NM-09149","","","187422","3631680","GW","false","" +"LC-011","","","399265","3937311","GW","true","From I-25 take La Cienega exit west. Right at first stop sign and keep taking right hand turns until on County Road 54. Make right onto Los Pinos Road and El Rancho de Los Golondrinas is on right. New well is outside main entrance wall - to north. Has protective casing over stick up. Well is just to right of gate as facing entrance to walk into Golondrinas through main visitor entrance." +"NM-24474","","","430210","3937920","GW","false","" +"NM-01678","","","317198","4050970","GW","false","" +"SM-2015","","","444040","3640703","M","true","" +"NM-27135","LL-04","","441606","4000180","GW","false","" +"TS-001","","","439353","4066997","SP","true","East bank, down stream from Sheep Crossing" +"NM-08325","","","296788","3617720","GW","false","" +"UC-0176","","","616903","4076461","GW","false","" +"NM-02142","","","222116","3565470","GW","false","" +"SB-0826","","","472488","3607510","GW","false","" +"NM-11370","","","564085","3657510","GW","false","" +"NM-26016","","","634587","4013430","GW","false","" +"NM-27791","","","615738","3788840","GW","false","" +"BW-0455","19S10E32.113","","411517","3609320","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"UC-0039","","","660207","4014360","GW","true","" +"SR-0017","","","299440","3763490","SP","true","Magdalena Ridge; Water Canyon Rd. 11.5 mi to TR 11, descend NORTH 300 m turn right, traverse 400 m, descend 200 m to piped seep" +"NM-27618","","","668716","3794450","GW","false","" +"NM-03559","","","609024","3973410","GW","false","" +"NM-00337","","","645943","3622160","GW","false","" +"NM-12247","","","651332","3671840","GW","false","" +"NM-28260","","","323704","3787614","GW","false","" +"NM-11380","","","285358","3659900","GW","false","" +"NM-27675","","","676000","3796190","GW","false","" +"NM-09894","","","654322","3636550","GW","false","" +"NM-24573","","","398974","3940250","GW","false","" +"NM-11313","","","658739","3657700","GW","false","" +"NM-14349","","","553572","3701460","GW","false","" +"SB-0202","TWDB 4806301","","474466","3538497","GW","false","" +"NM-02982","","","664784","3775060","GW","false","" +"NM-25275","","","216622","3969760","GW","false","" +"NM-25163","","","663513","3960140","GW","false","" +"NM-08694","","","230908","3625230","GW","false","" +"NM-02357","","","665151","3580850","GW","false","" +"NM-02317","","","152402","3581660","GW","false","" +"NM-16648","","","679079","3776930","GW","false","" +"WL-0337","","","414934","3901737","GW","true","From Stanley, NM, drive north on HWY 41 about 7.5 miles to Pine Ranch Road on east side of the highway, go east on Pine Ranch Road. Gate code on March 25, 2024 was 1813#. Drive east on Pine Ranch Road about 0.9 miles to large decorative pillars on north side of road; this road goes to the owners home. Just beyond the is a road going south; go south about 400 feet, the well is on the east side of the road. On March 25, 2024, a large red dumpster was on the west side of the road. " +"NM-13274","","","551342","3688600","GW","false","" +"NM-18011","","","667158","3800030","GW","false","" +"NM-15475","","","160671","3747790","GW","false","" +"NM-10495","","","672365","3645660","GW","false","" +"TS-007","","","438044","4063330","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"NM-00054","","","667323","3545660","GW","false","" +"NM-06100","","","589753","3574960","GW","false","" +"NM-10268","","","672009","3642270","GW","false","" +"NM-00730","","","431363","3696200","GW","false","" +"NM-04788","","","180854","3559310","GW","false","" +"NM-14418","","","415060","3704080","GW","false","" +"NM-11493","","","612171","3659950","GW","false","" +"SD-0154","10N.5E.15.223","","373646","3884600","GW","true","" +"NM-06871","","","572904","3590130","GW","false","" +"NM-25990","","","577199","4008450","GW","false","" +"NM-04519","","","546327","3549330","GW","false","" +"PC-144","PS-22","","373475","3912420","SP","true","" +"NM-15880","","","668063","3753490","GW","false","" +"QU-525","","","444769","4061037","SP","true","" +"NM-00482","","","613094","3645110","GW","false","" +"SD-0196","10N.6E.10.341","","382730","3885540","GW","true","" +"BW-0785","2.25.24.5.300","","552323","4031250","GW","true","" +"NM-19563","","","649287","3830330","GW","false","" +"NM-24706","","","405755","3943690","GW","false","" +"NM-27851","","","551637","3809400","GW","false","" +"NM-11509","","","283094","3661980","GW","false","" +"NM-03498","","","647590","3929590","GW","false","" +"NM-17180","","","660160","3784630","GW","false","" +"QY-0719","6.30.5.122","","610908","3849110","GW","true","" +"NM-27090","","","291905","3776990","GW","true","" +"NM-15788","","","635440","3749670","GW","false","" +"NM-23769","","","413597","3914340","GW","false","" +"NM-12190","","","558744","3670080","GW","false","" +"SB-0410","TWDB 4812901","","451261","3515088","GW","false","" +"DE-0368","","","569498","3626369","GW","false","" +"NM-03874","","","331971","3521470","GW","false","" +"QY-0981","9.33.6.112","","637953","3878400","GW","true","" +"NM-26972","","","323479","3786900","GW","true","" +"CP-0016","","","679184","3807229","GW","true","Across Griffin Street from Town Hall in park, two big towers in locked fenced area." +"NM-12331","","","553784","3672450","GW","false","" +"NM-21353","","","345049","3871930","GW","false","" +"SB-0716","TWDB 4916101","","396076","3523473","GW","false","" +"NM-12318","","","658341","3674230","GW","false","" +"NM-26787","","","651020","3911500","GW","false","" +"NM-20513","","","390807","3846840","GW","false","" +"NM-19626","","","473997","3829560","GW","false","" +"NM-09749","","","551608","3633080","GW","false","" +"NM-01227","","","677017","3890370","GW","false","" +"NM-23650","","","433552","3909860","GW","false","" +"NM-11435","","","558865","3658650","GW","false","" +"NM-09127","","","659573","3628630","GW","false","" +"NM-00108","","","571817","3554670","GW","false","" +"NM-23564","","","359346","3908920","GW","false","" +"NM-05478","","","205590","3569730","GW","false","" +"NM-17462","","","629027","3788250","GW","false","" +"NM-18278","","","640024","3804120","GW","false","" +"QY-0274","11.31.19.333","","618318","3891450","GW","true","" +"NM-08892","","","551864","3623870","GW","false","" +"NM-17817","","","139492","3800920","GW","false","" +"NM-02568","","","557909","3622550","GW","false","" +"NM-24513","","","405982","3938910","GW","false","" +"NM-13007","","","533261","3684340","GW","false","" +"NM-28063","","","238870","3901060","GW","false","" +"NM-12518","","","555526","3675750","GW","false","" +"DA-0155","26S3E22.344","","346599","3544430","GW","true","" +"NM-15600","","","595201","3744620","GW","false","" +"TB-0307","","","399636","3661989","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Railroad Ave. Turn W onto Derbyshire Rd and proceed to address with rattle snake fence on N side of road. Well is located behind pumphouse." +"NM-12823","","","673270","3682500","GW","false","" +"NM-12540","","","196056","3680670","GW","false","" +"WL-0249","","","207378","3802030","GW","true","Head west on Hwy 60 from Pie Town. Turn right at Top of the World store onto Wagon Wheel Trail, cross cattle guard and drive to first intersection in road. Take right on Old Stage Rd and drive ~0.7 mi to green sign that says ""39 Old Stage Rd Lot 87"" on left. Turn left into driveway to end of road. Well is ~60 ft west of house and is blue pvc with white pvc cap." +"EB-414","","","409790","3944508","GW","true","near County Fairgrounds. Turn North off of Rodeo Rd., at light at Pueblos Rd. Well site is surrounded by 4 steel pipes, and located along ""exit"" road in front of mobile homes. Altitude from 30-m DEM." +"NM-23362","","","379991","3901200","GW","false","" +"NM-25887","","","273443","4004910","GW","false","" +"NM-11656","","","666685","3663400","GW","false","" +"SV-0144","09 Via Alcalde","","380080","3900645","GW","false","" +"NM-22288","","","355619","3885840","GW","false","" +"NM-24843","","","406207","3945970","GW","false","" +"TB-0241","","","433000","3715731","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west to house on left and look for windmill south of pond. Casing is directly under the windmill tower." +"NM-20820","","","585838","3853830","GW","false","" +"NM-06953","","","550258","3591470","GW","false","" +"NM-02793","","","556158","3682870","GW","false","" +"NM-00993","","","152891","3823900","GW","false","" +"NM-02105","","","178740","3563850","GW","false","" +"NM-18672","","","634082","3810470","GW","false","" +"TB-1065","","","425154","3695526","SP","true","Site visit by Fraser and Cathy Goff. NPW10-8" +"NM-15883","","","663491","3753410","GW","false","" +"NM-16002","","","635654","3756240","GW","false","" +"NM-02006","","","341946","3550820","GW","false","" +"NM-00750","","","463891","3697770","GW","false","" +"NM-04436","","","135576","3553150","GW","false","" +"NM-01706","","","301997","4072150","GW","false","" +"NM-16091","","","563572","3758190","GW","false","" +"NM-07989","","","232327","3614030","GW","false","" +"NM-02832","","","551875","3700120","GW","false","" +"NM-03287","","","360185","3853230","GW","false","" +"NM-13066","","","627101","3686410","GW","false","" +"NM-12244","","","553922","3670790","GW","false","" +"NM-17852","","","604346","3796260","GW","false","" +"NM-16462","","","656132","3772790","GW","false","" +"BW-0521","16S9E35.1","","407095","3638930","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16778","","","651804","3778850","GW","false","" +"SM-0059","","","444892","3650434","GW","true","Well is near confluence of 16 Springs Canyon with Poison Spring Canyon. Need Walker's permission first. Thru gate at Walters, fork at 29 stay left. Thru gate at 41, take left at satellite dish, going towards steel shed. Thru gate. Old well is by power pole, at paddock with concrete block." +"NM-18486","","","566438","3806350","GW","false","" +"NM-03441","","","351932","3898870","GW","false","" +"TV-243","LQ-11","","443811","4023222","GW","true","From Ranchos de Taos post office, take 64 west to the end of town. Descending a small rise at the trading post, find W. Romero Rd. on the right. #7 is third driveway on the right; follow it all the way back." +"UC-0191","","","632245","4043138","GW","false","" +"NM-14698","","","246490","3718110","GW","false","" +"NM-13654","","","547079","3693420","GW","false","" +"AR-0119","A006","NMED 276","226942","4077210","GW","true","From Hwy 516, turn S onto Rd 3050. Turn left on Rd 3050, then right on Rd 3333 then left on Rd 3334 to address on right." +"NM-23101","","","350829","3896430","GW","false","" +"NM-22443","","","400703","3886980","GW","false","" +"NM-03659","","","188319","4073870","GW","false","" +"NM-25317","","","671070","3969500","GW","false","" +"NM-16153","","","643598","3760790","GW","false","" +"NM-06090","","","235521","3577780","GW","false","" +"NM-19779","","","573255","3832340","GW","false","" +"NM-14897","","","544669","3722760","GW","false","" +"NM-05646","","","625622","3567960","GW","false","" +"NM-00802","","","452903","3710190","GW","false","" +"RA-003","","","379827","4007662","GW","true","In pit east of house." +"NM-26686","","","660759","4078330","GW","false","" +"NM-17511","","","645004","3789470","GW","false","" +"BW-0257","15S9E1.222","","403202","3656230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-15133","","","465337","3731740","GW","false","" +"NM-05352","","","259258","3566490","GW","false","" +"SB-0580","TWDB 4861104","","453334","3443127","GW","false","" +"NM-17795","","","615913","3794740","GW","false","" +"NM-27326","","","571307","3589740","GW","false","" +"NM-18814","","","597861","3812390","GW","false","" +"SB-0467","TWDB 4824204","","494079","3510203","GW","false","" +"NM-27432","","","663696","3676170","GW","false","" +"LC-040","","","407004","3944472","GW","false","Heading east on Airport Rd towards Cerrillos Rd, turn (north) left onto Zepol Rd, make next left onto Nueva Vista Rd, at end of block before road turns right, take gravel road to left into parcel that runs behind the homes. Approach well from the north. Well is by power pole at center of vacant lot." +"GT-020","LV14-3","","262904","3637119","SP","true","Water is emerging about 1300' east of the mapped location of Oak Spring" +"NM-21291","","","382675","3869060","GW","false","" +"UC-0062","","","666698","4058409","GW","true","elv 4965 acc to USGS" +"SM-0172","","","465240","3648556","GW","true","Site visit by Jeremiah Morse in June 2007. Well is uphill from corral, southwest about 250m. Follow cable and piping." +"DA-0036","21S1W20.231","","315514","3594190","GW","true","" +"NM-20273","","","598145","3840980","GW","false","" +"DE-0323","","","674261","3589942","GW","false","" +"NM-22211","","","630847","3884960","GW","false","" +"MG-039","","","290982","3776833","GW","true","From west on Hwy 60, take NM 169 towards Alamo Reservation. Look for well sign on left side about 0.5 mile down road. Well below residence on hill. Concrete block well house." +"NM-08449","","","408244","3618000","GW","false","" +"NM-10785","","","680455","3649380","GW","false","" +"NM-00406","","","649299","3633070","GW","false","" +"NM-24864","","","408399","3946340","GW","false","" +"NM-18757","","","588277","3811220","GW","false","" +"SB-0686","TWDB 4915523","","387586","3518727","GW","false","" +"QU-079","MW-7B","","444515","4061712","GW","true","See Chevron map of monitoring wells. Upslope from MW-A & MW-B. Three wells in well box (MW-7A (shallow), MW-7B (mid-depth) & MW-7C (deep))." +"NM-17659","","","658188","3792240","GW","false","" +"SD-0369","10N.5E.15.142","","372993","3884540","SP","true","" +"NM-17976","","","560851","3797840","GW","false","" +"NM-13676","","","476180","3693580","GW","false","" +"NM-10217","","","561029","3639940","GW","false","" +"NM-19522","","","524991","3827560","GW","false","" +"NM-10793","","","547741","3647780","GW","false","" +"NM-18487","","","656326","3807470","GW","false","" +"NM-24313","","","420235","3934180","GW","false","" +"TB-0260","","","410429","3631192","GW","true","" +"NM-07474","","","184303","3607260","GW","false","" +"NM-21175","","","539805","3865530","GW","false","" +"NM-24247","","","173752","3937540","GW","false","" +"NM-16071","","","671350","3759310","GW","false","" +"SV-0049","02 La Quinta","","378591","3899163","GW","false","Unit 2 Lot 43" +"NM-04734","","","674333","3554940","GW","false","" +"NM-22508","","","376286","3887940","GW","false","" +"TO-0508","5N8E13","","403562","3835830","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"TV-204","","","444945","4020556","GW","true","From SR 382 (LQ road to Ponce de Leon), turn left onto dirt road just past abandoned dump. Two well casings on left several hundred yards. Well farthest from the road. **NOT USING SITE IN INVENTORY.**" +"NM-17535","","","631848","3789640","GW","false","" +"NM-15199","","","636287","3735390","GW","false","" +"NM-21861","","","351851","3881570","GW","false","" +"NM-10212","","","553417","3639870","GW","false","" +"NM-16965","","","676275","3781560","GW","false","" +"NM-26271","","","175325","4043790","GW","false","" +"NM-10229","","","619742","3640880","GW","false","" +"NM-25788","","","407192","3996430","GW","false","" +"QY-0806","7.32.11.111","","634437","3857450","GW","true","" +"MI-0122","","","590750","3919112","GW","true","Topographic situation: Valley" +"NM-10431","","","398635","3643570","GW","false","" +"NM-10548","","","553780","3644790","GW","false","" +"NM-14344","","","632907","3702440","GW","false","" +"NM-02026","","","548958","3551760","GW","false","" +"MI-0254","","","542339","3953602","GW","true","Topographic situation: Plateau" +"NM-15493","","","652032","3743880","GW","false","" +"NM-16275","","","314500","3767030","GW","false","" +"NM-03305","","","368155","3859610","GW","false","" +"NM-21693","","","402971","3878860","GW","false","" +"NM-15727","","","673197","3749550","GW","false","" +"NM-21264","","","185690","3873220","GW","false","" +"NM-06658","","","359153","3586820","GW","false","" +"NM-05473","","","243247","3568610","GW","false","" +"NM-20107","","","402336","3838170","GW","false","" +"SA-0036","SA-36_R00","","217900","3770570","GW","true","From Hwy 12, take Green Gap Rd west 5.5 miles to gate on left for McMasters Ranch HQ. Follow road and bear right to Ranch HQ." +"NM-19591","","","563906","3829160","GW","false","" +"NM-05058","","","269857","3561280","GW","false","" +"NM-15716","","","219276","3751280","GW","false","" +"NM-08895","","","561024","3623960","GW","false","" +"NM-18151","","","611569","3801580","GW","false","" +"AB-0151","S199","","358030","3865030","GW","true","" +"PC-159","PSW-06","","373121","3914135","PS","true","" +"SD-0021","7N.7E.1.233","","394186","3858610","GW","true","" +"NM-02082","M-079","","221460","3561111","GW","false","~0.1 miles further up dirt road from NM-04961. Inside locked fencing." +"NM-07531","","","656407","3604920","GW","false","" +"TB-0034","","","431023","3720187","GW","true","Off hwy 380, turn north on Snell Road, east of Carrizozo. Go about 1 mi north, look on left side for empty horse barn. Walk thru gate, well is by power line north of dry pond." +"NM-03754","","","165942","3511670","GW","false","" +"SV-0077","03 Prado Vista","","378026","3898666","GW","false","Unit 2 Lot 34" +"NM-10868","","","361465","3649500","GW","false","" +"QU-177","","","447062","4069336","GW","true","Well is located at physical address: 2790 Hwy 520, Questa. Land is well marked by a metal arch on the left at a driveway 1/2 mile past the old port of entry ""2790."" Well is along fence west side of property, look for old buried steel vault." +"NM-21522","","","360365","3876610","GW","false","" +"NM-11062","","","403883","3651670","GW","false","" +"NM-05563","","","262621","3569120","GW","false","" +"NM-01094","S155","","347266","3852640","GW","false","" +"NM-01452","","","171908","3947770","GW","false","" +"SM-1004","","","447551","3650506","SP","true","On south side of 16 Springs Canyon, in Walker private property accessed on 2 track across from house. Do not access without prior arrangement with Walker." +"NM-13128","","","138471","3693100","GW","false","" +"MG-025","WF-W","","289917","3776257","GW","true","11120 Highway 60; West of Magdalena on Highway 60 @ 65 mph sign north side of highway. Well in well house south of house." +"NM-20816","","","593994","3853720","GW","false","" +"NM-23140","","","233780","3899420","GW","false","" +"NM-22032","","","237415","3885960","GW","false","" +"NM-09772","","","550644","3633480","GW","false","" +"NM-20381","","","598579","3843240","GW","false","" +"NM-01308","","","559575","3906770","GW","false","" +"NM-02106","","","236217","3562290","GW","false","" +"WS-011","","","389406","3626568","GW","true","0.7 mile SW of admin. bldg." +"NM-23485","","","370869","3908010","GW","false","" +"NM-22373","COL-W1","","341151","3886950","GW","false","" +"NM-04327","","","344049","3544260","GW","false","" +"EB-094","","","410460","3956610","GW","true","Tano Rd Assoc" +"NM-17657","","","638366","3791830","GW","false","" +"QY-0549","18.36.31.442","","667672","3956870","GW","true","" +"NM-22946","","","355871","3893730","GW","false","" +"NM-15211","","","674814","3737060","GW","false","" +"NM-19603","","","156326","3835510","GW","false","" +"MI-0112","","","558883","3919145","GW","true","Topographic situation: Valley" +"SB-0044","TWDB 4709910","","508890","3515100","GW","false","" +"NM-02012","","","232763","3553590","GW","false","" +"NM-17968","","","639950","3798850","GW","false","" +"NM-04803","","","243557","3558060","GW","false","" +"NM-17246","","","324729","3785820","GW","false","" +"BW-0563","9S9E31.4","","403404","3704960","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0353","TWDB 4807714","","477596","3529992","GW","false","" +"NM-04465","","","233613","3550980","GW","false","" +"BC-0339","357","","368292","3881510","GW","true","" +"NM-05838","","","248363","3573110","GW","false","" +"NM-17260","","","651719","3785660","GW","false","" +"BC-0039","30","","379980","3890240","GW","true","" +"NM-11692","","","641424","3663690","GW","false","" +"NM-07998","","","184563","3615490","GW","false","" +"NM-21563","","","393622","3876810","GW","false","" +"NM-22147","","","346541","3884470","GW","false","" +"NM-25627","","","410818","3984160","GW","false","" +"NM-27051","","","370203","3803600","GW","true","" +"NM-16333","","","327441","3768880","GW","false","" +"NM-26129","","","669311","4023900","GW","false","" +"NM-03814","","","232479","3521630","GW","false","" +"NM-23599","PW-120","","374759","3909280","GW","false","" +"QY-0441","13.34.23.432","","654772","3911490","GW","true","" +"TO-0330","7N12E30.2","","435903","3852150","GW","true","" +"DE-0257","","","663161","3634544","GW","false","" +"NM-17663","","","652769","3791960","GW","false","" +"DE-0299","","","675820","3591673","GW","false","" +"NM-04300","","","258276","3545000","GW","false","" +"NM-06340","","","673327","3581380","GW","false","" +"QY-0114","10.34.6.444","","648585","3886960","GW","true","" +"NM-17750","","","448094","3792740","GW","false","" +"QY-0277","11.31.23.224","","626094","3892640","GW","true","" +"NM-21394","","","383803","3871970","GW","false","" +"NM-04162","","","346547","3537720","GW","false","" +"NM-11055","","","271433","3653740","GW","false","" +"SB-0228","TWDB 4807112","","479447","3535930","GW","false","" +"NM-15247","","","240648","3739660","GW","false","" +"TC-231","","","425330","4096284","GW","true","" +"NM-14034","","","550860","3696670","GW","false","" +"NM-09773","","","680432","3635050","GW","false","" +"NM-28126","","","671503","3943120","GW","false","" +"MI-0186","","","476598","3936069","GW","true","Topographic situation: Valley" +"NM-10254","","","281631","3642810","GW","false","" +"NM-24207","","","404538","3931010","GW","false","" +"NM-00215","","","579858","3580680","GW","false","" +"NM-03936","","","254458","3525950","GW","false","" +"EB-333","","","399807","3935592","GW","true","Address: 17 Pajaro Blanco. Take East Frontage Road and go east on Corral Blanco, then south on Pajaro Blanco to address. Well east of house in vault in field under plywood." +"NM-02645","","","169892","3644440","GW","false","" +"NM-12782","","","551490","3680170","GW","false","" +"NM-17262","","","345287","3785580","GW","false","" +"ED-0238","22S27E30.133","","572069","3581110","GW","true","" +"NM-19583","","","576159","3829100","GW","false","" +"NM-11443","","","555648","3658820","GW","false","" +"NM-10318","","","666408","3643070","GW","false","" +"NM-15536","","","674578","3744330","GW","false","" +"NM-24076","","","410062","3926670","GW","false","" +"ED-0323","24S24E12.123","","551393","3566650","GW","true","" +"QY-0891","8.31.25.414","","627334","3861220","GW","true","" +"NM-17069","","","197042","3786510","GW","false","" +"NM-14997","","","575931","3727450","GW","false","" +"AB-0244","","","592349","3762606","GW","true","" +"SD-0093","9N.6E.26.333","","383349","3870380","GW","true","" +"NM-00296","","","310585","3611660","GW","false","" +"NM-15876","","","655432","3752940","GW","false","" +"NM-27501","","","163772","3748790","GW","false","" +"NM-22344","","","664526","3886800","GW","false","" +"NM-12725","","","662628","3681210","GW","false","" +"NM-20146","","","576003","3838800","GW","false","" +"NM-01514","","","641705","3963300","GW","false","" +"NM-04556","","","223297","3553940","GW","false","" +"NM-27545","","","646906","3792180","GW","false","" +"SD-0008","6N.7E.5.322","","387497","3848860","GW","true","" +"NM-26438","","","588562","4061780","GW","false","" +"EB-220","SF-52","","403153","3938661","GW","true","On west Frontage Road just south of Los Pinos Road and Wild West store on corner. Big metal box." +"EB-190","","","416775","3959371","GW","true","On left of road before #13 Blue Tesuque Rd" +"NM-03473","","","366090","3915750","GW","false","" +"NM-08248","","","674839","3615980","GW","false","" +"NM-24213","","","174820","3936570","GW","false","" +"NM-15242","","","561018","3736240","GW","false","" +"AR-0160","D007","NMED 379","227075","4077290","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Continue around left bend in Rd, and follow to address on right. Address is next to River." +"NM-18109","","","648212","3801780","GW","false","" +"NM-13342","","","557566","3689660","GW","false","" +"NM-27690","","","669216","3796500","GW","false","" +"NM-13140","","","536356","3686530","GW","false","" +"CX-0049","26N24E24.1","","558509","4036940","GW","true","" +"NM-01537","","","566247","3975180","GW","false","" +"NM-13955","","","544072","3695620","GW","false","" +"BW-0861","1.10.9.17.113","","243286","3887900","GW","true","" +"NM-11299","","","634667","3657310","GW","false","" +"NM-19227","","","571123","3821480","GW","false","" +"NM-09107","","","205158","3630520","GW","false","" +"NM-09072","","","411103","3626170","GW","false","" +"NM-03199","","","668589","3829610","GW","false","" +"NM-25124","","","319675","3957320","GW","false","" +"NM-25768","","","599844","3995670","GW","false","" +"NM-00172","","","588125","3572280","GW","false","" +"TS-026","","","437884","4077663","SP","true","East bank, just upstream from Sunshine Trail." +"NM-01788","","","350285","3520200","GW","false","" +"SA-0401","3S11W35.311","","226773","3766260","GW","true","" +"NM-09441","","","226137","3633620","GW","false","" +"NM-01865","","","254731","3534080","GW","false","" +"NM-12434","","","561879","3674040","GW","false","" +"NM-02191","","","275314","3567420","GW","false","" +"NM-09817","","","554021","3633960","GW","false","" +"MI-0199","","","493232","3940463","GW","true","Topographic situation: Plateau" +"NM-21568","","","347244","3877430","GW","false","" +"NM-19311","","","257730","3826560","GW","false","" +"TO-0010","1N13E35.432","","449685","3791610","GW","true","" +"NM-17928","","","667562","3798870","GW","false","" +"SA-0234","","","274984","3773812","GW","true","Heading west on Hwy 60 from Magdalena, look for gate on right after mile marker 101. Solar powered gate with combo lock (2559 enter). Proceed to house and barns to north. Well is under old windmill on right hand side of road." +"NM-25370","","","409082","3971230","GW","false","" +"SM-1079","","","454763","3638504","SP","true","Spring pond is along Hwy 130 south of Mayhill, big pond, east side of road. Gates usually locked, must get owner to open." +"AB-0208","WKR-W1","","360850","3893400","GW","true","" +"WS-002","","","388670","3625509","GW","true","East side of dirt road" +"NM-05803","","","240313","3572720","GW","false","" +"BW-0059","25S5E27.33","","365432","3552230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07096","","","233353","3597690","GW","false","" +"TO-0190","5N9E32.211","","406936","3831640","GW","true","" +"NM-26274","","","424137","4038360","GW","false","" +"AR-0528","","","265514","4187478","PS","true","Turn right on 10th street to location. Site located in narrow, fast moving stream." +"NM-00981","","","159419","3820780","GW","false","" +"NM-07985","","","677360","3611980","GW","false","" +"NM-14658","","","548865","3713070","GW","false","" +"NM-23955","","","399109","3920930","GW","false","" +"NM-11000","","","668514","3652100","GW","false","" +"NM-20181","","","679183","3840570","GW","false","" +"NM-08561","","","559957","3619730","GW","false","" +"PC-041","PW-066","","371477","3907241","GW","true","" +"NM-26263","","","628388","4037500","GW","false","" +"NM-01593","","","576842","4003640","GW","false","" +"NM-17229","","","635647","3785290","GW","false","" +"SB-0846","Mayer 2","","446260","3604087","GW","false","" +"NM-07325","","","197332","3603650","GW","false","" +"NM-04866","M-072","","209741","3559990","GW","false","" +"MI-0150","","","527861","3932176","GW","true","Topographic situation: Arroyo" +"NM-08651","","","632602","3621760","GW","false","" +"NM-16253","","","562530","3764440","GW","false","" +"SB-0819","TWDB 4702701","","514608","3526806","SP","false","" +"NM-13370","","","623682","3690830","GW","false","" +"BC-0416","419","","","","GW","false","" +"NM-13587","","","554396","3692660","GW","false","" +"NM-21692","LEA-W2","","342316","3879620","GW","false","" +"NM-05124","","","240847","3562880","GW","false","" +"AR-0210","","","224986","4076268","GW","true","Well located behind house, along fence by garden." +"NM-16762","","","662679","3778170","GW","false","" +"NM-26933","PW-130","","367737","3910823","GW","true","" +"EB-136","","","411150","3954500","GW","true","" +"NM-04124","","","346056","3535580","GW","false","" +"SB-0749","TWDB 4924407","","395535","3506357","GW","false","" +"NM-09946","","","668803","3636730","GW","false","" +"DA-0142","26S4E24.244","","360112","3545100","GW","true","" +"SA-0130","","","240000","3782263","GW","true","Heading W on Hwy 60, after mile 79, take next dirt road to N. Go to end of road (note Pittman sign on fenceline). Well to NE of white house. Look for steel storage tank." +"NM-17074","","","665254","3783300","GW","false","" +"SD-0235","11N.5E.24.124","","376168","3892460","GW","true","" +"NM-11830","","","286775","3666580","GW","false","" +"NM-09952","","","666034","3637480","GW","false","" +"NM-27850","","","613123","3780710","GW","false","" +"NM-22592","","","374907","3888940","GW","false","" +"WL-0276","","","368338","3907391","GW","true","From the junction of I-25 and HWY 165, drive east on HWY 165 toward Placitas. Drive 5.0 miles to Tunnel Springs Road and turn south (right). Drive 0.5 miles and turn east (left) into Paul Fish's driveway. Drive to the parking area in front of his house, the wells are located at the north end of the parking area. This well is in orchard just past the end of the driveway." +"MI-0191","","","487789","3939064","GW","true","Topographic situation: Plateau" +"NM-28440","","","252677","3521217","GW","false","From Columbus go 1.5 miles south on NM 11, turn east at cattle guard onto Black Hill Road. Go 1 mile E toward house on hill, but before hill go south at intersection on dirt road to corrals and old adobe house, look for well house. Locked gate into corrals, must contact Sanders for access." +"NM-18558","","","676599","3809110","GW","false","" +"PP-046","PW-51","","433602","4002921","GW","true","" +"NM-14024","","","402959","3696900","GW","false","" +"NM-08371","","","673448","3617980","GW","false","" +"NM-22696","","","642892","3890470","GW","false","" +"NM-05618","","","614943","3567680","GW","false","" +"SO-0136","BRN-E06B","","328325","3763681","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-04417","","","232081","3549630","GW","false","" +"AB-1009","SXXXJS","","347087","3960010","SP","true","" +"NM-16661","","","671984","3776640","GW","false","" +"NM-00218","","","575113","3581130","GW","false","" +"NM-24445","","","436876","3937320","GW","false","" +"NM-07273","","","647105","3598920","GW","false","" +"NM-16265","","","655670","3766590","GW","false","" +"WL-0282","","","203982","3659350","GW","true","From I-25, take Rt. 152 west, go north on Hwy 35 towards Mimbres. Stay on Hwy 35 to Lake Roberts. From Lake Roberts, turn south at general store on Chestnut Street. Turn right on Cottonwood to the end of the road. Well is on north side of road next to pump house." +"NM-23957","","","639171","3921570","GW","false","" +"NM-17108","","","556778","3782480","GW","false","" +"SD-0351","8N.7E.30.444","","391488","3863710","SP","true","" +"NM-12352","","","272087","3675140","GW","false","" +"NM-13208","","","496564","3687480","GW","false","" +"QU-153","TPZ-7L","","446183","4061682","GW","true","" +"NM-24137","","","415630","3929140","GW","false","" +"NM-17446","","","644127","3788250","GW","false","" +"NM-04450","","","238112","3550370","GW","false","" +"NM-12626","","","665334","3678850","GW","false","" +"BW-0091","8S10E13.133a","","419956","3719740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13070","","","557745","3685680","GW","false","" +"SB-0263","TWDB 4807403","","479733","3534791","GW","false","" +"NM-18428","","","664152","3806700","GW","false","" +"NM-25242","","","338491","3965250","GW","false","" +"BC-0080","65","","375583","3890660","GW","true","" +"NM-11683","","","563975","3662290","GW","false","" +"NM-24481","","","464061","3937780","GW","false","" +"NM-23314","","","239045","3902910","GW","false","" +"NM-21886","","","348866","3881760","GW","false","" +"EB-262","","","395004","3966182","GW","true","~700-800 ft from end of Buckman Rd; center of arroyo" +"NM-26949","PW-143","","370500","3912057","GW","true","" +"NM-12098","","","672297","3670220","GW","false","" +"NM-01663","","","266561","4043680","GW","false","" +"NM-03734","","","169566","3498790","GW","false","" +"NM-13263","","","552945","3688490","GW","false","" +"WL-0184","","","440953","3927801","GW","true","From Pecos, NM drive south on Hwy 63 for 5 miles, turn left (east) into Forked Lightning Ranch, drive 0.6 miles (past Hacienda house), turn right (south) onto dirt road. Follow dirt road 2 miles to River House. Well is at River House behind tennis court." +"NM-09526","","","681524","3632270","GW","false","" +"TB-0018","","","418499","3670756","GW","true","Just west of Bent, turn north on Gato Mountain Rd. Turn off left at east end of road (key locked gate). Make arrangements with Stallings to have gate open. Follow two track - uphill, through arroyo, sharp left after arroyo. Thru unlocked red gate. Well on left by dog house." +"NM-04699","","","667055","3554260","GW","false","" +"NM-10399","","","554155","3642760","GW","false","" +"TS-092","","","437958","4055587","SP","true","One of many springs/seeps in a long, nearly continuous zone of small discharges that emerge from under basalt talus just above river on east side." +"NM-15847","","","613479","3751050","GW","false","" +"NM-07010","","","675358","3593860","GW","false","" +"SM-4063","","","432009","3630313","PS","true","Stream flow measurement by Patrick Walsh" +"NM-26143","","","447936","4023670","GW","false","" +"TB-0229","","","433446","3715960","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Look for well house to the furthest south by fence. Casing is to south of building." +"NM-10661","","","651614","3646920","GW","false","" +"NM-15642","","","659694","3747000","GW","false","" +"NM-00346","","","630365","3623610","GW","false","" +"NM-23307","20 Canada Vista","","381139","3899727","GW","true","20 Canada Vista; Unit 1 Lot 70" +"NM-07426","","","561969","3601760","GW","false","" +"NM-14980","","","584179","3726630","GW","false","" +"NM-22791","","","379899","3891250","GW","false","" +"DE-0216","","","639550","3628583","GW","false","" +"NM-07802","","","678030","3609470","GW","false","" +"NM-13800","","","549009","3695030","GW","false","" +"NM-20766","","","296990","3854500","GW","false","" +"NM-09307","","","676847","3630430","GW","false","" +"NM-14809","","","139222","3726290","GW","false","" +"PC-060","PW-104","","368711","3910528","GW","true","" +"TS-035","","","436274","4043027","SP","true","Small spring across from Black Rock Hot Spring (on east side of Rio Grande)." +"NM-24280","","","476858","3932720","GW","false","" +"PC-117","PW-201","","362212","3909213","GW","true","" +"NM-12019","","","292302","3669150","GW","false","" +"NM-22240","","","397186","3884870","GW","false","" +"SD-0063","8N.7E.13.423a","","391488","3863710","GW","true","" +"BW-0757","2.12.22.22.110","","537230","3901500","GW","true","" +"NM-06846","","","671227","3591080","GW","false","" +"NM-16479","","","658029","3772760","GW","false","" +"DE-0248","","","670360","3570125","GW","false","" +"BW-0855","4.26.7.32.122","","381476","3541880","GW","true","" +"NM-26825","","","146806","3701820","GW","true","" +"NM-03531","","","661340","3955290","GW","false","" +"SO-0062","2N1W19.11","","317308","3806920","GW","true","" +"NM-15577","","","677483","3745800","GW","false","" +"BC-0442","445","","","","GW","false","" +"NM-04741","","","669902","3554920","GW","false","" +"NM-08734","","","409770","3622580","GW","false","" +"NM-18188","","","601905","3802050","GW","false","" +"NM-25530","","","407945","3980030","GW","false","" +"NM-00285","","","655344","3606710","GW","false","" +"NM-16269","","","321859","3766710","GW","false","" +"NM-04735","","","670139","3554870","GW","false","" +"CP-0012","NM3528522","","654127","3788099","GW","true","From north on Hwy 70 in Portales, go left (west) on E. Lime St., then right (north) on Boston. Boston turns into S. Roosevelt Rd R @ Spruce St. Continue north and cross S. Roosevelt Rd 3. Turn right (east) at brown house (#237), follow 2-track along fence to locked gate (need Public Works to open), then bear right at Well S2. Well S4 at fenced area near 2 power poles." +"CX-0024","28N26E22.4","","575391","4055450","GW","true","" +"NM-10419","","","260486","3645800","GW","false","" +"NM-18138","","","656112","3801920","GW","false","" +"NM-22867","","","362253","3892490","GW","false","" +"NM-19804","","","601923","3832950","GW","false","" +"BC-0266","282","","366394","3880270","GW","true","" +"SA-0181","","","250310","3738284","GW","true","At Jctn of Hwy 52 and CR E-13 (at MM 61), go west 1.4 miles. Look for wooden WM and corral on left." +"NM-28222","","","171268","4074950","GW","false","" +"TB-0024","","","401667","3681938","GW","true","Well is out in field east of Hwy 54, turn off to east between mi 95-96. Directly across from OLD stucco house and old windmill on west side of road, take dirt road over cattle guard, heading towards and then parallel RR tracks. Road goes under RR bridge, gate combo there is 7491, keep locked. Follow 2 track thru drainage then generally head south. Pass thru corral, cross 2 arroyos, and go to end of irrigation pivot. Head right-ish at water tank (nw) to fence, then travel south (2 mi) thru alley to left on road. Back right across draw (watch drop off). Follow around curve to east and to white tank." +"NM-14083","","","458367","3697060","GW","false","" +"NM-08726","","","558328","3622160","GW","false","" +"NM-17442","","","563223","3787170","GW","false","" +"NM-06873","","","340981","3591120","GW","false","" +"NM-21669","","","377681","3878770","GW","false","" +"NM-25630","","","416127","3984260","GW","false","" +"NM-27964","","","553174","3857060","GW","false","" +"NM-25806","","","395702","3997510","GW","false","" +"EB-362","","","401318","3943215","GW","true","Must check-in at main WWTP office. Will be escorted to all sites. ~ 500 ft south of Airport Rd across from Plant; west from small, N-S road" +"NM-27634","","","628126","3794240","GW","false","" +"NM-12326","","","553033","3672410","GW","false","" +"NM-24887","","","410492","3946910","GW","false","" +"NM-00864","","","550175","3752740","GW","false","" +"NM-18555","","","339538","3808700","GW","false","" +"NM-04826","","","682295","3556860","GW","false","" +"NM-00047","","","489164","3543060","GW","false","" +"NM-07601","","","206193","3609090","GW","false","" +"NM-00499","","","416999","3647420","GW","false","" +"NM-16524","","","669714","3774600","GW","false","" +"NM-24811","","","408439","3945390","GW","false","" +"BC-0128","112","","380688","3883880","GW","true","" +"NM-14478","","","464108","3705720","GW","false","" +"NM-12937","","","343945","3684080","GW","false","" +"NM-25057","","","660046","3953170","GW","false","" +"RA-026","","","350168","4082149","GW","true","In the middle of field." +"NM-26397","","","142068","4065000","GW","false","" +"NM-27666","","","645782","3795360","GW","false","" +"NM-21378","","","404009","3871550","GW","false","" +"NM-26395","","","257169","4060260","GW","false","" +"NM-17645","","","645329","3791570","GW","false","" +"NM-12999","","","676541","3686250","GW","false","" +"NM-07048","","","277223","3595670","GW","false","" +"PP-031","PW-33","","438362","4002163","GW","true","" +"NM-14540","","","562152","3708040","GW","false","" +"EB-014","SF-14","","412216","3943495","GW","true","1844 Galisteo St.: from Rodeo Rd, S on Galisteo Rd 0.25 mi past end of pavement, R fork to 1st house on left, well 30 ft NE of NE corner of house next to shed & parking area; enter well through gap between casing and well cap on east side" +"MI-0007","","","473281","3879133","GW","true","Topographic situation: Valley" +"NM-05713","","","234459","3571240","GW","false","" +"NM-21237","","","644401","3868710","GW","false","" +"NM-18518","","","638253","3808130","GW","false","" +"NM-20341","","","319404","3843710","GW","false","" +"NM-11860","","","641261","3666020","GW","false","" +"NM-25158","","","216253","3962960","GW","false","" +"NM-23632","","","360302","3910300","GW","false","" +"NM-19872","","","572657","3833910","GW","false","" +"TV-278","","","439290","4020567","GW","true","From north on Hwy 68, turn east on Stake Out Drive, make right into El Mirador subdivision, right at first intersection to well on left side." +"TV-300","","","449979","4026738","GW","true","" +"CX-0087","24N26E21","","574261","4017410","GW","true","" +"BW-0573","17S9E4.3","","403786","3636530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"WL-0140","","","369003","3911575","GW","true","From I-25, take NM-165 east thru Plactias ~6.8 miles. Turn left (north) on Camino de las Huertas for 2.7 miles (twisty road). Camino de las Huertas turns right (east) at Palomino Road. Stay on Camino del las Huertas 0.2 miles and turn left (north) onto Llano del Norte and drive 0.2 miles to Vista Linda Court. Well is on NE corner of two Llano del Norte & Vista Linda." +"NM-17155","","","669592","3784950","GW","false","" +"NM-00331","","","412991","3618910","GW","false","" +"ED-0022","17S25E24.433","","552895","3630920","GW","true","" +"NM-11533","","","671587","3661920","GW","false","" +"NM-01553","","","563278","3983470","GW","false","" +"MI-0313","","","472967","3933168","SP","true","Topographic situation: Valley" +"NM-22814","","","379373","3891630","GW","false","" +"NM-20871","","","665711","3856400","GW","false","" +"NM-18170","","","657787","3802730","GW","false","" +"NM-21733","","","355689","3880050","GW","false","" +"NM-26287","","","160775","4046640","GW","false","" +"NM-07733","","","281021","3609230","GW","false","" +"NM-01580","","","405026","3994630","GW","false","" +"NM-01340","","","208179","3915890","GW","false","" +"NM-13400","","","618249","3691130","GW","false","" +"PC-102","PW-180","","365603","3907806","GW","true","" +"QU-159","","","444891","4069870","GW","true","From Cerro Road, take crb039 north from the north side of Guadalupe Mtn. Turn left on ""middle road"" and travel 0.5 miles to Cerro Vista Farm." +"NM-11092","","","580597","3652310","GW","false","" +"NM-03833","","","118564","3525470","GW","false","" +"NM-15588","","","328042","3745390","GW","false","" +"NM-10906","","","554069","3649020","GW","false","" +"NM-16819","","","669602","3779400","GW","false","" +"NM-07475","","","550985","3602470","GW","false","" +"NM-25082","","","414986","3954100","GW","false","" +"TC-360","","","446846","4065801","GW","true","" +"QY-0252","11.30.35.231","","615906","3889110","GW","true","" +"NM-10128","","","559869","3638580","GW","false","" +"NM-26834","","","548537","3685372","GW","true","" +"AH-034","HM-29","","438261","4041455","GW","true","" +"NM-00504","","","270067","3650550","GW","false","" +"NM-21156","","","527453","3864530","GW","false","" +"NM-17516","","","630814","3788550","GW","false","" +"NM-28099","","","228993","3907440","GW","false","" +"NM-20312","","","376529","3842060","GW","false","" +"NM-18864","","","571674","3812830","GW","false","" +"QY-0105","10.34.19.211","","648147","3883500","GW","true","" +"NM-20651","","","253772","3853150","GW","false","" +"NM-11237","","","645762","3656170","GW","false","" +"NM-28236","","","194119","4076710","GW","false","" +"NM-01417","","","435284","3936570","GW","false","" +"NM-12844","","","560175","3681540","GW","false","" +"DE-0208","","","639573","3628517","GW","false","" +"NM-20319","","","608894","3842120","GW","false","" +"SD-0344","8N.5E.12.432","","375316","3866150","SP","true","" +"NM-12464","","","652899","3676030","GW","false","" +"NM-08623","","","631567","3621290","GW","false","" +"NM-14591","","","484809","3709910","GW","false","" +"WS-003","","","388657","3625517","GW","true","Near cottonwood" +"NM-27626","","","627005","3793950","GW","false","" +"NM-01868","","","343242","3532690","GW","false","" +"EB-686","SF-3","","406424","3922511","GW","true","" +"NM-15128","","","561613","3731750","GW","false","" +"NM-15491","","","347037","3743310","GW","false","" +"SB-0697","TWDB 4915609","","390588","3519065","GW","false","" +"NM-10779","","","651432","3648620","GW","false","" +"WL-0272","","","335402","3566355","GW","true","Heading south on I-25, take Exit 1, turn right on E. University for 1.3 mi, turn left on E. Union Ave. for 0.7 mi, turn left on S. Main Street for 4.2 mi, turn right on Salopek Rd for 0.8 mi to address on the right. Well is located in shed, 100 ft south of the house." +"NM-06367","","","199694","3584770","GW","false","" +"EB-006","","","412245","3938199","GW","true","" +"TS-022a","","","437977","4077592","SP","true","East bank, just upstream from Sunshine Trail." +"NM-22797","","","323373","3892240","GW","false","" +"TB-0027","","","400863","3683836","GW","true","From pens to south end of pivot before tanks." +"NM-26060","","","315051","4019160","GW","false","" +"NM-22493","","","362514","3887950","GW","false","" +"BC-0125","109","","366777","3881930","GW","true","" +"SB-0491","TWDB 4834802","","422048","3474532","GW","false","" +"NM-21282","","","379757","3868970","GW","false","" +"NM-19153","","","626807","3819730","GW","false","" +"NM-17066","","","664337","3783040","GW","false","" +"NM-10272","","","279323","3643050","GW","false","" +"NM-03161","","","573781","3817500","GW","false","" +"NM-15906","","","667538","3754130","GW","false","" +"NM-16205","","","220152","3766120","GW","false","" +"NM-28144","","","654721","3609330","GW","false","" +"NM-12892","","","618734","3683190","GW","false","" +"AR-0138","B018","","238149","4086950","GW","true","" +"NM-28328","SC-20","","442024","4050229","GW","false","" +"NM-18694","","","433208","3810210","GW","false","" +"NM-02216","","","223726","3570670","GW","false","" +"NM-22041","","","389996","3882890","GW","false","" +"NM-04827","","","682205","3557480","GW","false","" +"NM-26856","","","485846","4065350","GW","true","" +"BW-0535","17S9E1.311","","408481","3636700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TO-0517","6N8E13.2","","404167","3845840","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"DA-0144","25S2E4.132","","335183","3560120","GW","true","" +"NM-23495","","","292683","3908550","GW","false","" +"BC-0278","276","","367021","3880670","GW","true","" +"SB-0126","TWDB 4726501","","517081","3492912","GW","false","" +"HS-013","TC-013","","289772","3667577","GW","true","Pershing, South to Marr, turn West on corner, 312 Marr St. This is the well out the front door." +"NM-23688","","","369137","3911700","GW","true","" +"SB-0540","TWDB 4853502","","459455","3450891","GW","false","" +"NM-00394","","","281259","3632340","GW","false","" +"NM-01125","","","658393","3859070","GW","false","" +"NM-06760","","","575791","3588310","GW","false","" +"NM-11115","","","556074","3652410","GW","false","" +"NM-25491","","","231288","3980260","GW","false","" +"SB-0084","TWDB 4717313","","509815","3510698","GW","false","" +"NM-07616","","","678813","3606560","GW","false","" +"NM-10512","","","129785","3651200","GW","false","" +"NM-06850","","","673080","3591140","GW","false","" +"NM-17299","","","656065","3786070","GW","false","" +"NM-13083","","","534807","3685730","GW","false","" +"CX-0040","27N26E1.21","","578692","4051810","GW","true","" +"NM-04253","","","332931","3541630","GW","false","" +"NM-15671","","","357558","3746940","GW","false","" +"NM-03486","","","643973","3922320","GW","false","" +"NM-12537","","","557232","3676100","GW","false","" +"NM-24028","","","670475","3925750","GW","false","" +"NM-14880","","","573677","3722600","GW","false","" +"QY-0242","11.30.30.314","","608913","3889820","GW","true","" +"NM-25360","","","405581","3970680","GW","false","" +"NM-09524","","","283235","3632950","GW","false","" +"NM-00186","","","577332","3574680","GW","false","" +"NM-15044","","","503735","3728530","GW","false","" +"NM-22477","","","374610","3887590","GW","false","" +"PP-050","PW-55","","433798","4002406","GW","true","" +"NM-02720","","","557518","3653870","GW","false","" +"TB-0148","","","410966","3698730","GW","true","SE from Candelaria WM. Road cuts off to E from road prior to gate to WM." +"NM-06482","","","672969","3583960","GW","false","" +"NM-24306","","","476382","3933520","GW","false","" +"NM-03832","","","232564","3521850","GW","false","" +"NM-08201","","","679307","3615320","GW","false","" +"SB-0688","TWDB 4915525","","387897","3518293","GW","false","" +"NM-12487","","","649637","3675980","GW","false","" +"NM-05222","","","231932","3564870","GW","false","" +"NM-25479","","","349295","3976090","GW","false","" +"NM-02573","","","544030","3624180","GW","false","" +"NM-13551","","","619596","3693060","GW","false","" +"EB-628","","","399250","3959720","GW","true","" +"SV-0143","06y La Canada Pl","","380387","3900093","GW","false","" +"NM-20180","","","340644","3840300","GW","false","" +"NM-23490","","","389527","3906690","GW","false","" +"AR-0228","","","238619","4087126","GW","true","Heading north on Hwy 550 out of Aztec ~ 6 miles, turn left (west) on Rd 2755, drive 0.2 miles, turn right (north) on Rd 2645, drive 0.2 miles. House is on right side of road. White house with red roof. Well in well house behind home." +"NM-07781","","","657859","3608760","GW","false","" +"NM-10931","","","550874","3649370","GW","false","" +"WL-0150","","","395009","3918090","GW","true","From I-40 east, take NM-14 north toward Madrid. Before entering the town of Madrid, there is a water tower on the west (left) side of NM14. Park at the gate for the water tower and cross NM-14, across the arroyo, about 300 feet to the building. Well is ~60 ft. north of the building." +"SB-0429","TWDB 4815206","","483709","3525300","GW","false","" +"AR-0194","H005","","239320","4087809","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left onto Rd 2619, then take right in Rd 2620. Follow to address on left." +"NM-10452","","","554566","3643470","GW","false","" +"SV-0125","04 Vista de Jeme","","378913","3897968","GW","false","Unit 2 Lot 25" +"NM-07250","M-163","","210069","3601390","GW","false","" +"NM-19001","","","624815","3816130","GW","false","" +"NM-11270","","","653822","3656880","GW","false","" +"TO-0364","8N9E6.431","","405773","3867480","GW","true","" +"QY-0256","11.30.5.213","","610894","3897340","GW","true","" +"NM-12912","","","637381","3683800","GW","false","" +"NM-12628","","","558776","3677710","GW","false","" +"NM-09674","","","587182","3632470","GW","false","" +"NM-07747","","","310723","3608770","GW","false","" +"NM-25046","","","464644","3951430","GW","false","" +"NM-10713","","","639766","3647240","GW","false","" +"NM-03788","","","339025","3518430","GW","false","" +"NM-07353","","","541138","3599810","GW","false","" +"NM-06096","","","536797","3574540","GW","false","" +"SM-4079","","","434720","3620641","PS","true","Stream flow measurement by Patrick Walsh" +"NM-09750","","","224194","3636790","GW","false","" +"NM-24704","","","409151","3943660","GW","false","" +"NM-19477","","","404870","3827180","GW","false","" +"NM-10862","","","278720","3650920","GW","false","" +"NM-23571","","","410308","3908400","GW","false","" +"EB-194","","","415356","3957181","GW","true","#77 CR73; 1/2 mi on CR73, 2nd drive on L w/chain link gate; well past house on R before circular drive and across from carport" +"ED-0385","26S24E11.122","","550116","3547660","SP","true","" +"NM-14534","","","652684","3709330","GW","false","" +"NM-26699","","","184827","4084440","GW","false","" +"NM-19531","","","626120","3828940","GW","false","" +"NM-14068","","","545357","3696950","GW","false","" +"EB-213","","","394099","3929901","GW","true","0.3 mi up gypsum mine road, off CR-57 (exit 267 from I-25)" +"AH-020","DM-53","","442145","4042577","GW","true","" +"NM-22767","","","379109","3890860","GW","false","" +"NM-06429","","","676095","3583090","GW","false","" +"NM-25558","","","403925","3981240","GW","false","" +"NM-18145","","","609024","3801310","GW","false","" +"SB-0455","TWDB 4821401","","454403","3505991","GW","false","" +"NM-15414","","","668038","3742600","GW","false","" +"NM-03624","","","651710","4012890","GW","false","" +"SM-0038","","","436976","3645436","GW","true","Hyw 82, turn South on Young Canyon Road between mi 21 and 22, head southward on main road. Owner will likely meet you. Need 4WD. Turn L onto Big Dipper. Turn L on well access road after ~1mi. Wells are down in valley on R." +"NM-13644","","","545451","3693380","GW","false","" +"NM-21254","","","346272","3868870","GW","false","" +"NM-15796","","","620949","3749540","GW","false","" +"PB-0012","","","375279","3937132","GW","true","From the junction of HWY 22 and I-25, drive north on Hwy 22 (toward Pena Blanca) 4 miles. Exit and drive under the overpass, which is Indian Service Rt 88. Drive 0.8 mile into Santa Domingo/Kewa Pueblo and turn right at intersection (about a 45-degree turn), which keeps you on Indian Service Rt 88. Drive through the pueblo for 1.6 miles, road crosses the Rio Grande and ends at T junction. Turn right (north) onto Indian Service Route 85, which becomes Sile Road; drive about 4.7 miles to T junction, turn left (west) and drive 0.25 miles, well is on left (south) side of road. GPX file available at: \\agustin\amp\data\OnXFiles\Scott" +"NM-00712","","","474014","3695060","GW","false","" +"NM-01838","","","339449","3527050","GW","false","" +"TO-0554","9N8E14","","403380","3874030","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-13605","","","135965","3699530","GW","false","" +"DE-0373","","","569173","3626535","GW","false","" +"NM-21735","","","392584","3879660","GW","false","" +"NM-06288","","","676848","3580460","GW","false","" +"NM-15882","","","192089","3756470","GW","false","" +"NM-10890","","","557288","3648940","GW","false","" +"NM-13882","","","543866","3695340","GW","false","" +"NM-13964","","","545337","3695660","GW","false","" +"QY-0301","11.32.15.444","","634062","3893290","GW","true","" +"AB-0156","S204","","370992","3917840","GW","true","" +"ED-0048","19S26E20.21","","556207","3612810","GW","true","" +"NM-10320","","","651025","3642970","GW","false","" +"NM-09851","","","541281","3634450","GW","false","" +"NM-26636","","","603168","4072570","GW","false","" +"NM-23933","","","637649","3920500","GW","false","" +"NM-17670","","","643891","3791940","GW","false","" +"SM-0070","","","444737","3607529","GW","true","Heading SE on Sacramento River Rd (South from Timberon), about 1.5 mi past Phillips place (Ben Williams Canyon), gate is on left side. Key is on 3rd fence post. Well is at end of power lines by water tank." +"NM-22209","","","650623","3885270","GW","false","" +"NM-23345","","","386451","3900550","GW","false","" +"WL-0269","","","343535","3549391","GW","true","Heading south on I-10 from Las Cruces, take exit 155 and turn right at roundabout onto Vado Road. At end of Vado Rd turn left onto Hwy 478, drive ~ 4 mi and turn right on W. Berino Rd. to address and gate on right. Well is ~50 ft north of house in vault under large metal lid." +"NM-02508","","","645379","3613440","GW","false","" +"NM-22355","","","346085","3886710","GW","false","" +"NM-17476","","","647063","3788730","GW","false","" +"NM-08320","","","294004","3617650","GW","false","" +"NM-04576","","","238839","3554140","GW","false","" +"BW-0179","14S9E15.343","","399781","3662140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"PP-028","PW-29","","438358","4001952","GW","true","" +"NM-06480","","","169843","3587830","GW","false","" +"WL-0168","","","548892","3720884","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Well under metal windmill next to tall metal tank." +"NM-27375","","","583216","3615500","GW","false","" +"SB-0200","TWDB 4758703","","512779","3431672","GW","false","" +"SB-0204","TWDB 4806303","","475173","3538033","GW","false","" +"NM-20767","","","550812","3852430","GW","false","" +"NM-09188","","","654546","3628920","GW","false","" +"SM-3019","","","522216","3625791","S","true","Site visited and sampled by Jeremiah Morse" +"NM-03645","","","558044","4039630","GW","false","" +"NM-13407","","","400828","3690670","GW","false","" +"NM-01968","","","118434","3552580","GW","false","" +"NM-26235","","","655908","4035580","GW","false","" +"QY-0379","12.32.24.211","","636638","3902660","GW","true","" +"NM-05049","","","269565","3561140","GW","false","" +"NM-11563","","","563987","3660560","GW","false","" +"NM-07452","","","182020","3606930","GW","false","" +"NM-12802","","","139131","3687150","GW","false","" +"NM-05966","","","248658","3574420","GW","false","" +"NM-04795","","","343674","3555750","GW","false","" +"NM-02249","M-120","","248411","3573291","GW","false","From east side of Deming, go east on NM549 for 1.7 miles. Turn left onto NM-377 and go east for 0.9 miles to the driveway of house #6249. Pull into the driveway of 6249 NM 549 (south side of the road). The well is located at the base of the trees about 100 feet up the driveway, on the east side. Well is under white hubcap and plywood." +"NM-20339","","","555499","3842040","GW","false","" +"NM-10955","","","641841","3651030","GW","false","" +"AB-0034","S039","","315132","3829890","GW","true","" +"NM-24886","","","415369","3946830","GW","false","" +"NM-01795","","","120987","3526870","GW","false","" +"NM-10935","","","626297","3650510","GW","false","" +"BW-0225","14S9E35.342","","401358","3657270","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"ED-0300","23S28E11.114","","588285","3576630","GW","true","" +"SO-0086","1S1E9.41","","330465","3789850","GW","true","Benchmark at well." +"NM-10168","","","438475","3638710","GW","false","" +"GT-026","CFW14-04","","351761","3978510","SP","true","" +"NM-15101","","","585169","3731040","GW","false","" +"NM-18057","","","553991","3799530","GW","false","" +"NM-11771","","","559637","3663770","GW","false","" +"AS-049","DM-43","","446351","4040460","GW","true","" +"NM-17849","","","594734","3796090","GW","false","" +"BW-0625","8S6E27","","378322","3717750","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QU-123","","","439530","4067189","GW","true","Hole drilled in river bed." +"NM-08933","","","407446","3624630","GW","false","" +"NM-10760","","","557374","3647460","GW","false","" +"NM-25657","","","167592","3992000","GW","false","" +"NM-23862","","","403888","3917370","GW","false","" +"NM-15260","","","664958","3738460","GW","false","" +"UC-0059","","","668437","3986400","GW","true","elv 4515 acc to USGS" +"SV-0053","09 La Quinta","","378300","3898546","GW","false","Unit 2 Lot 39" +"QU-060","","","446715","4063219","GW","true","From Hwy 522, take hairpin left past town hall and volunteer fire dept. Well house is ~200m down the road on right." +"NM-03770","","","160528","3517090","GW","false","" +"NM-27364","","","583121","3711790","GW","false","" +"NM-05555","","","244051","3569330","GW","false","" +"NM-20229","","","602731","3840350","GW","false","" +"TS-128","","","425639","4012046","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"QY-0726","6.31.21.133","","621793","3843950","GW","true","" +"AH-063","AH-17","","439666","4043906","GW","true","" +"NM-02661","","","409753","3643640","GW","false","" +"NM-17557","","","407299","3789450","GW","false","" +"NM-05289","","","676693","3563910","GW","false","" +"NM-15442","","","664337","3743130","GW","false","" +"NM-05567","","","663770","3567700","GW","false","" +"NM-07970","","","557199","3610350","GW","false","" +"NM-21294","","","395562","3869090","GW","false","" +"ED-0066","20S25E16.3","","547492","3603730","GW","true","" +"NM-15981","","","628988","3755500","GW","false","" +"NM-03527","","","564525","3949790","GW","false","" +"QY-0737","6.32.22.113","","633042","3844470","GW","true","" +"NM-11427","","","284572","3660750","GW","false","" +"NM-25447","","","408959","3973850","GW","false","" +"NM-17536","","","557328","3788800","GW","false","" +"NM-10383","","","623009","3643540","GW","false","" +"NM-19887","","","607533","3834430","GW","false","" +"SB-0203","TWDB 4806302","","474434","3536373","GW","false","" +"NM-24149","","","343981","3930350","GW","false","" +"NM-20456","","","604637","3845060","GW","false","" +"UC-0150","","","654056","4047263","GW","false","" +"NM-11002","","","172790","3655630","GW","false","" +"NM-16997","","","646589","3781390","GW","false","" +"NM-27311","","","358489","3586030","GW","false","" +"NM-16972","","","656778","3781670","GW","false","" +"AS-062","DM-42","","446242","4040590","GW","true","" +"NM-16077","","","658536","3759370","GW","false","" +"NM-22800","","","376712","3891380","GW","false","" +"NM-00476","","","649372","3644560","GW","false","" +"SB-0051","TWDB 4717101","","503815","3511187","GW","false","" +"EB-021","","","418227","3947752","GW","true","707 Joaquin Ln: from Cam. Cabra turn L/E on Cam Cruz Blanca, 0.2 mi to Joaquin Ln, L, 1st house on L; well is 8' from W side of Joaquin Ln and 25' from Cam Cruz Blanca" +"NM-05921","","","240353","3574300","GW","false","" +"NM-23794","","","389052","3915260","GW","false","" +"NM-10270","","","561414","3640710","GW","false","" +"NM-27119","LLC-08","","442782","4032070","GW","false","" +"SA-0224","","","242854","3756339","GW","true","" +"NM-16774","","","652964","3778380","GW","false","" +"SB-0724","TWDB 4923301","","393295","3511276","GW","false","" +"QU-149","TPZ-4B","","444488","4061288","GW","true","" +"EB-612","","","401530","3928480","GW","true","See EB-468" +"NM-21333","","","356372","3870940","GW","false","" +"NM-15762","","","171800","3753820","GW","false","" +"TV-102","","","442027","4021635","GW","true","From Hwy 68, south of mile marker 40, just south of junction w/Taos Cty Rd 110 (UNM/NM National Guard). East 0.8 miles on Blue Sage Rd to address. Well is south of house in front of propane tank." +"NM-20263","","","600257","3840910","GW","false","" +"NM-03152","","","561040","3815650","GW","false","" +"BW-0874","2.13.33.11.312","","644172","3914790","GW","true","" +"UC-0028","","","664988","4004687","GW","true","South from Clayton on 402 to Vandiver Road. Go east 1.1. miles to old homestead on souh side. Well is beyond gate amongst abandonded buildings." +"NM-10486","","","643874","3645180","GW","false","" +"NM-00225","NH-004","","284431","3584412","GW","false","From well NM-02390, go east on 2-track 2.1 miles to pipeline road, go south on pipeline road to gate at 0.9, go east on track past gate, turns south and goes 2.9 miles to to well at corrals and old stone house at junction of two county roads (in Dona Ana County). Can follow county road south all the way to I-10. Do not drive thru Wilmeth ranch house yard. Look for dog leg around house and corrals." +"NM-12292","","","558630","3671740","GW","false","" +"NM-25838","","","409451","3999640","GW","false","" +"NM-26908","PW-094","","372189","3908815","GW","true","" +"RA-1000","","","","","","false","" +"NM-09424","","","226056","3633530","GW","false","" +"NM-26981","","","324434","3770630","GW","true","" +"ED-0010","16S26E5.331","","555127","3645460","GW","true","" +"DA-0031","20S3E30.333","","342207","3600770","GW","true","" +"NM-04354","","","234414","3547480","GW","false","" +"NM-05597","","","223592","3570550","GW","false","" +"NM-11340","","","679451","3658850","GW","false","" +"MI-0250","","","537882","3949887","GW","true","Topographic situation: Valley" +"NM-05546","","","654324","3567270","GW","false","" +"QY-0963","9.31.11.244","","626223","3876160","GW","true","" +"NM-01298","","","640345","3905930","GW","false","" +"NM-12984","","","555246","3684070","GW","false","" +"SM-0201","","","434130","3612313","GW","true","Sacramento River Rd in Timberon, turn west onto Sauk, and right onto Pawnee. Well in fenced area right side of Rd by green building. Well head is green." +"NM-15543","","","215289","3747020","GW","false","" +"NM-12903","","","552384","3682420","GW","false","" +"NM-20757","","","626604","3853040","GW","false","" +"EB-111","","","414112","3940815","GW","true","" +"NM-00201","","","663439","3578420","GW","false","" +"NM-17984","","","529135","3797810","GW","false","" +"NM-22080","","","347355","3883880","GW","false","" +"NM-10102","","","617610","3638850","GW","false","" +"NM-20617","","","625000","3849530","GW","false","" +"NM-19112","","","494543","3817610","GW","false","" +"ED-0012","16S26E31.413","","554301","3637630","GW","true","" +"NM-12691","","","673407","3680650","GW","false","" +"NM-08112","","","675411","3614540","GW","false","" +"ED-0241","22S27E32.224","","574731","3579810","GW","true","" +"AR-0094","E014","NMED 1","238533","4086880","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left onto Rd 2755 and continue on Rd 2650. Address is on N side of Rd just past turn to Rd 2645. Well is in shed in back of the house." +"NM-16365","","","222012","3772570","GW","false","" +"UC-0160","","","627099","4028150","GW","false","" +"TV-296","K2-5","","446675","4030626","GW","true","" +"NM-17682","","","628823","3791910","GW","false","" +"NM-00879","","","340639","3773930","GW","false","" +"NM-27928","","","571206","3833900","GW","false","" +"BC-0322","314","","376062","3900590","GW","true","" +"NM-17616","","","646257","3791150","GW","false","" +"TO-0081","4N7E32.414","","386786","3821270","GW","true","" +"TB-1068","","","419245","3712507","SP","true","Spring discharges from very well rounded conglomerate unit in Upper Crevasse Canyon Fm. Discharges to pipe. Outlet location unknown, possibly stock tank?" +"NM-07991","","","658438","3611730","GW","false","" +"SM-0257","","","441071","3640880","GW","true","Monitoring well near big house on Coleman Ranch." +"NM-17772","","","642573","3794450","GW","false","" +"NM-06106","","","582847","3575150","GW","false","" +"ED-0009","16S25E24.212","","552705","3641740","GW","true","" +"NM-05615","","","127922","3573770","GW","false","" +"NM-03032","","","638041","3788580","GW","false","" +"NM-20639","","","623365","3850130","GW","false","" +"NM-00132","","","488141","3559820","GW","false","" +"TO-0037","3N6E23.112","","381359","3815710","GW","true","" +"TO-0133","5N7E15.212","","391159","3836630","GW","true","" +"NM-18410","","","677837","3807200","GW","false","" +"PP-007","PW-09","","434376","4003100","GW","true","" +"SB-0668","TWDB 4915505","","385628","3520012","GW","false","" +"NM-11869","","","565151","3664880","GW","false","" +"NM-13444","","","660504","3692200","GW","false","" +"NM-07460","","","183906","3607120","GW","false","" +"NM-10481","","","548644","3643750","GW","false","" +"NM-23003","","","349372","3894550","GW","false","" +"NM-09208","","","556684","3627530","GW","false","" +"NM-18582","","","650555","3809450","GW","false","" +"NM-00311","","","374550","3612420","GW","false","" +"NM-11136","","","656406","3654270","GW","false","" +"NM-08388","","","667321","3618250","GW","false","" +"TO-0055","3N15E20.311","","463342","3814320","GW","true","" +"NM-08203","","","681285","3615440","GW","false","" +"NM-10240","","","612648","3640950","GW","false","" +"PC-003","PW-013","","369710","3909229","GW","true","" +"QU-126","","","440552","4065543","GW","true","" +"BW-0849","4.23.5.34.300","","365857","3570180","GW","true","" +"NM-09487","","","662692","3632040","GW","false","" +"SM-1060","","","440886","3647604","SP","true","Take Hwy 82 to 16 Springs Rd. Take this to small dirt road on left just before? Hairpin turn to right. It is old logging road? Use GPS to get close to spring then hike to it (down hill slope to bottom). Not accessible by road? Spring coming from pipe." +"ED-0183","22S26E3.214","","567618","3587400","GW","true","" +"NM-18174","","","636728","3802410","GW","false","" +"NM-01430","","","659645","3938960","GW","false","" +"SM-0002","","","433898","3613605","GW","true","Follow Sunspot road towards Timberon. A few miles from Timberon, canโ€™t miss Circle Cross ranch entrance on right, go thru large white gate (always seems to be open) go up paved drive, well is in bend to left in road with nice ponderosa and oak trees adjacent." +"NM-05497","","","258521","3568540","GW","false","" +"NM-20544","","","348103","3848060","GW","false","" +"NM-00957","","","624788","3811160","GW","false","" +"NM-27672","","","571840","3784550","GW","false","" +"NM-27379","","","575283","3617880","GW","false","" +"NM-20448","","","318968","3846120","GW","false","" +"NM-05901","","","262746","3573310","GW","false","" +"NM-06650","","","677330","3587180","GW","false","" +"NM-26918","PW-087","","373601","3912482","GW","true","" +"NM-21440","","","397732","3872640","GW","false","" +"NM-00868","","","317236","3650720","GW","false","" +"NM-03229","","","563736","3835380","GW","false","" +"NM-02454","M-165","","210229","3602400","GW","false","" +"NM-05692","","","670162","3569040","GW","false","" +"NM-04222","","","309677","3540620","GW","false","" +"NM-23772","","","384124","3914800","GW","false","" +"NM-17526","","","634076","3789520","GW","false","" +"NM-25803","","","396000","3997390","GW","false","" +"SD-0242","11N.5E.24.232","","376545","3892290","GW","true","" +"NM-15704","","","663118","3748200","GW","false","" +"NM-12573","","","619169","3677280","GW","false","" +"NM-17684","","","549973","3791250","GW","false","" +"NM-20909","","","527225","3855930","GW","false","" +"NM-06286","","","545354","3578980","GW","false","" +"NM-02473","","","211547","3608260","GW","false","" +"SV-0094","27 Punta Linda","","379225","3901296","GW","false","Unit 3 Lot 137" +"NM-17340","","","658617","3786570","GW","false","" +"NM-25892","","","433742","4002380","GW","false","" +"BC-0254","254","","376448","3890370","GW","true","" +"NM-02098","","","242226","3561420","GW","false","" +"AB-0241","","","591253","3873499","GW","true","lorem" +"NM-18652","","","637885","3810590","GW","false","" +"NM-11251","","","642773","3656560","GW","false","" +"NM-24482","","","378742","3938560","GW","false","" +"NM-20438","","","661676","3845980","GW","false","" +"SB-0794","TWDB 5007202","","483687","3426567","GW","false","" +"NM-24986","","","413932","3949000","GW","false","" +"AB-0021","S024","","351017","3817380","GW","true","" +"NM-19831","","","571288","3833130","GW","false","" +"NM-19189","","","651773","3821650","GW","false","" +"NM-02539","M-187","","196278","3621310","GW","false","" +"NM-25178","","","417100","3959880","GW","false","" +"NM-01660","","","318329","4042090","GW","false","" +"AR-1001","","","230097","4078620","OT","false","" +"EB-651","","","410181","3968387","GW","true","" +"NM-06350","","","674292","3581550","GW","false","" +"QY-0429","13.32.14.211","","635263","3913980","GW","true","" +"UC-0087","","","609093","4038357","GW","true","From the west edge of Clayton, NM, proceed 17.8 miles west on Hwy. 64/87 to the town of Mt. Dora and Loop Road intersection. +17.8 miles From intersection of U.S. Hwy. 64/87 and Loop Road, proceed 0.7 miles weston Loop Road to T in road, which is the junction with Sofia Road. +18.5/0.0 miles Turn left onto Sofia Road and proceed west and south for another 9.8 miles to a stop sign at the intersection of Sofia Road and Hwy. 453. +9.8 miles From junction of Sofia Rd. and Hwy. 453, proceed straight through the stop sign on Sofia Road for another 10.2 miles west of Hwy. 453 to the junction with Jones Road. This is also 2.0 miles west of Atchley Road. + 20.0 miles From the intersection of Sofia Road and Jones Road, turn right and proceed north 3.0 miles on Jones Road where it turns sharply east. The road continues east for 2.5 miles, then turns sharply north again (total of 5.5 miles from Sofia Road junction). +23.0 miles At the sharp corner where Jones Road turns from eastbound to northbound, a gravel lane continues straight (east) towards farm house, turn right (south) on dirt trail towards a windmill. Stay on right fork at 0.1 mile and at 0.4 mile you come to a fence corner. Go through the gate here to enter the pasture on the west side of the fence-line, then continue south along fence-line for another 0.3 mile to the first windmill. Turn east here th ough gate south of windmill and go 0.25 mile east along north side of fence. Park and go under fence, walk 0.25 mile to windmill. Gates asscess this pasture from north are extremely tight and rarely used, easier to walk to windmill." +"NM-24071","","","419483","3926180","GW","false","" +"NM-20296","","","678751","3843150","GW","false","" +"SM-0146","","","469340","3640957","GW","true","Miller Flats area. Site visit by Jeremiah Morse in May 2007" +"NM-21943","","","351525","3882130","GW","false","" +"NM-10396","","","554233","3642730","GW","false","" +"NM-19582","","","644954","3830380","GW","false","" +"NM-20691","","","629930","3851510","GW","false","" +"NM-19400","","","555345","3825350","GW","false","" +"SM-0207","","","468471","3626452","GW","true","Hwy 24 to Cuevo Canyon rd to junction of Angel and Chimney canyons. Aldin Elkins house, well behind stone building, to SE of main house. Well in old refrigerator. Jeremiah Morse 1st site visit." +"NM-14245","","","550200","3699410","GW","false","" +"EB-444","","","421128","3931895","GW","true","126 Vaquero Road." +"NM-27847","","","649964","3809940","GW","false","" +"NM-13980","","","549031","3695770","GW","false","" +"NM-09215","","","553380","3627580","GW","false","" +"AR-0150","C006","NMED 169","234401","4082650","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn left onto Rd 2930, then right onto Rd 2929. Continue around loop to address on inside of loop." +"NM-20208","","","331288","3840930","GW","false","" +"DA-0082","23S2E6.311","","332135","3579120","GW","true","" +"NM-06313","","","574576","3579580","GW","false","" +"NM-04209","","","244084","3541470","GW","false","" +"NM-15476","","","134120","3748830","GW","false","" +"NM-10650","","","546920","3645780","GW","false","" +"NM-00457","","","667233","3641590","GW","false","" +"NM-01161","","","606723","3868770","GW","false","" +"SM-0145","","","466026","3638777","GW","true","Access through Mule Canyon, taking right turn off about .5 mi off of Hwy 82. Passes through private property, do not stop there, continues down Aqua Chiquita drainage to old Windmill well." +"NM-20267","","","612392","3841110","GW","false","" +"NM-04603","","","133064","3557840","GW","false","" +"WL-0177","","","135258","3707837","GW","true","Heading north on Rt 180 out of Silver City travel thru Glenwood continuing north. Approx. ~6.8 miles past the turn off to Rt 159 to Mogollon, look for a dirt road turn off to Wild Horse Rd on the right. Follow road at it goes east then turns south. House is on the right before house at deadend. Well in wellhouse south of main residence." +"BC-0299","309","","376122","3891170","GW","true","" +"EB-496","","","428529","3960120","PS","true","Tesuque Creek near Ski Area; Location very approximate" +"NM-02964","","","560703","3757340","GW","false","" +"NM-21940","","","347225","3882190","GW","false","" +"NM-05213","","","542659","3561140","GW","false","" +"ED-0195","22S26E12.111","","570254","3586430","GW","true","" +"AR-0176","E011","NMED 145","230632","4078630","GW","true","From Hwy 550/ S Main Ave. in Aztec turn west onto Rd 3000. Turn right onto Rd 3009 then right on Rd 3008. Turn right on Rd 3020 and continue straight to address on right." +"NM-00372","","","677843","3628720","GW","false","" +"NM-07493","","","632577","3604140","GW","false","" +"SA-0301","","","243616","3764924","GW","true","" +"QU-051","","","446805","4065137","GW","true","Young ranch is ~1 mile north of town offices on Hwy. 522. On the left you will see a cluster of houses; a blue house, a brick house, a quonset hut, and a metal gate that says ""Young"". As you drive in, well is on left (south) just past gate. Look for large, red oil drum on a stand; there is a tree in front of it, and well is next to the tree with a blue top." +"NM-04688","","","670045","3554220","GW","false","" +"NM-08333","","","255398","3618710","GW","false","" +"WL-0239","","","201220","3677350","GW","true","From Silver City, head north on Rt 15, past the intersection with Rt 35 (that goes towards Lake Roberts). Make a right (go east) on Access Road that goes to the Gila Hot Springs & Campground. At the 90 degree turn to the north in Access Rd and before the campground, cross the Gila River to 128 West Fork Rd. Well is next to box ~50 ft west of the trailer." +"NM-22880","","","237031","3895440","GW","false","" +"AS-028","ES-10","","451583","4042730","GW","true","" +"MI-0045","","","589111","3899610","GW","true","Topographic situation: Mesa Rica" +"NM-06171","","","549287","3576590","GW","false","" +"NM-15171","","","562502","3733480","GW","false","" +"NM-07757","","","210098","3611410","GW","false","" +"NM-07129","","","218961","3598920","GW","false","" +"AB-0194","S247","","358408","3821830","GW","true","" +"SB-0828","","","465825","3606007","GW","false","" +"NM-13360","","","613500","3690460","GW","false","" +"NM-18593","","","677828","3810310","GW","false","" +"WL-0213","","","343343","4058246","GW","true","From Hwy 95 & Hwy 64 in town of Los Ojos, drive west on Hwy 95 for 13.3 miles to Stone House Lodge on south (left) side of road. Road turns to dirt. Continue for 0.15 mile to Pinon Ridge sign on north (right) side of road, turn north (right), thru gate onto Leaning Pine Rd for 0.1 mile, past Christy Lane on left for 100 ft. Well is on west (left) side of road. " +"NM-22217","","","379612","3884840","GW","false","" +"NM-05714","","","234040","3571250","GW","false","" +"EB-239","SF-30","","407377","3947719","GW","true","31 Entrada" +"NM-21391","","","346055","3872480","GW","false","" +"NM-20995","","","551999","3858200","GW","false","" +"NM-20664","","","585971","3850470","GW","false","" +"NM-18520","","","524945","3806800","GW","false","" +"NM-25740","","","399334","3993710","GW","false","" +"QY-0526","17.34.20.422","","650017","3950750","GW","true","" +"NM-13819","","","544152","3695040","GW","false","" +"NM-22145","","","615159","3883910","GW","false","" +"NM-15055","","","151639","3735370","GW","false","" +"NM-02929","","","411832","3743140","GW","false","" +"NM-15836","","","664803","3751860","GW","false","" +"QY-0214","11.30.20.434a","","611168","3891400","GW","true","" +"NM-19649","","","615551","3830620","GW","false","" +"NM-03903","","","342723","3522810","GW","false","" +"NM-15719","","","649047","3748860","GW","false","" +"NM-17826","","","642447","3796020","GW","false","" +"NM-06813","","","671368","3590470","GW","false","" +"NM-07268","","","203845","3602130","GW","false","" +"NM-05855","","","326593","3571710","GW","false","" +"BW-0121","10S9E13.212","","411016","3701150","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16305","","","251758","3769580","GW","false","" +"NM-00871","","","282553","3766720","GW","false","" +"NM-13739","","","546273","3694430","GW","false","" +"AB-0252","","","499999","3983948","GW","true","" +"CX-0089","24N27E15.11","","584338","4019620","GW","true","" +"NM-01801","","","307835","3522210","GW","false","" +"NM-23142","","","616646","3896290","GW","false","" +"NM-21165","","","656928","3866230","GW","false","" +"EB-475","","","412514","3950333","GW","true","In Frank Ortiz Park, used for monitoring Landfill site" +"NM-17886","","","628343","3797080","GW","false","" +"SD-0149","10N.5E.12.121","","376009","3886370","GW","true","" +"NM-11646","","","407067","3661710","GW","false","" +"NM-12871","","","673892","3683930","GW","false","" +"NM-21483","","","377705","3874860","GW","false","" +"NM-22895","","","385963","3892530","GW","false","" +"BW-0683","2.12.12.4.110","","438914","3906090","GW","true","" +"NM-26393","","","611999","4057400","GW","false","" +"NM-15428","","","327890","3742710","GW","false","" +"NM-02455","M-166","","208906","3603650","GW","false","" +"NM-05286","","","245576","3565350","GW","false","" +"NM-21956","","","368251","3882070","GW","false","" +"NM-04221","","","230050","3542350","GW","false","" +"NM-00946","","","672271","3808100","GW","false","" +"NM-01351","","","652235","3909420","GW","false","" +"TV-113","","","445324","4020219","GW","true","Miranda Canyon near Ponce de Leon. Ponce de Leon neighborhood. Abandoned casing now located under porch of Frank & Jonell Wilson." +"NM-25209","","","470508","3961760","GW","false","" +"NM-16909","","","634847","3780380","GW","false","" +"BW-0592","16S9E35.2","","407906","3638930","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02844","","","551929","3704340","GW","false","" +"EB-207","SF-27","","412401","3947801","GW","true","Indian School, 1501 Cerrillos, in pumphouse across from gymnasium; get permission from Utilities Dept., Eloy Romero 989-6313" +"TC-441","","","447604","4073766","GW","true","The well is located on the west side of highway 522, north of Questa, roughly 0.5 mile south of the ""Airport Property"" There is a big metal gate made out of pipes with the number 2740 on it and a bunch of tires around the well. This is Lupe's son's property, and eventually there will be a house built here." +"WL-0147","","","364416","3908000","GW","true","From I-25, take NM-165 east toward Placitas ~5.6 miles. Turn right (south) onto Apache Mesa Road (just past the Placitas Cafรฉ). Drive 0.1 mile, turn right onto Whispering Winds Trail. Lindsley home is on the southwest corner of Apache Mesa and Whispering Winds. Well in front yard." +"NM-26375","","","651919","4055610","GW","false","" +"NM-25438","","","285302","3975470","GW","false","" +"NM-15627","","","667745","3746800","GW","false","" +"NM-04137","","","141047","3541330","GW","false","" +"NM-06729","","","566967","3587630","GW","false","" +"ED-0271","23S23E9.344","","537072","3575190","GW","true","" +"NM-24364","","","652566","3936360","GW","false","" +"NM-25724","","","249071","3994970","GW","false","" +"NM-03082","","","580652","3802680","GW","false","" +"NM-04479","","","133206","3554470","GW","false","" +"NM-22250","","","375666","3885170","GW","false","" +"SB-0909","26.18.33.133","","489123","3540877","GW","true","" +"NM-05912","","","333538","3572270","GW","false","" +"NM-07907","","","678522","3611140","GW","false","" +"SB-0001","TWDB 4701201","","504934","3537266","GW","false","" +"NM-13253","","","621221","3689130","GW","false","" +"NM-03004","","","645654","3782200","GW","false","" +"NM-07077","","","216865","3597810","GW","false","" +"NM-15157","","","564205","3732850","GW","false","" +"NM-07488","NH-022","","283331","3605050","GW","false","" +"DE-0038","","","601159","3557596","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep" +"NM-27435","","","207528","3687140","GW","false","" +"BW-0020","22S4E13.223","","360599","3585600","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-26522","","","576852","4064100","GW","false","" +"NM-28416","S-2016-050","","581311","3573959","GW","true","" +"NM-20055","","","660640","3838320","GW","false","" +"SM-0001","","","425532","3617549","GW","true","Take Bug Scuffle Rd west off of Sunspot Rd. Call at hill top. Facing Bug Scuffle Gate - gate to well is 170 degrees behind you. Well is through 1st gate on right, go up and over hill to well on concrete pad next to small shack. Gate combo 1860 (Dec. 2020)." +"SB-0356","TWDB 4807717","","479359","3531189","GW","false","" +"NM-17182","","","477553","3783290","GW","false","" +"TO-0346","8N8E1.434","","404416","3867360","GW","true","" +"NM-00131","","","488173","3559650","GW","false","" +"AB-0095","S108","","339189","3854590","GW","true","" +"SB-0454","TWDB 4820601","","452194","3506555","GW","false","" +"NM-13851","","","545055","3695220","GW","false","" +"NM-17342","","","651726","3786830","GW","false","" +"NM-03576","","","645112","3982350","GW","false","" +"DA-0007","19S4W29.13","","286066","3612460","GW","true","" +"NM-16777","","","664774","3778550","GW","false","" +"AR-0179","E014","NMED 1","231672","4079630","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn left onto Rd 2755 and proceed to address on right." +"NM-16586","","","645195","3775450","GW","false","" +"SR-0016","","","298841","3763620","SP","true","Magdalena Ridge; Water Canyon Rd. 11.5 mi to TR 11, descend NORTH 300 m turn left descend draw to seep" +"NM-26233","","","230619","4038000","GW","false","" +"BW-0245","14S10E29.411","","406686","3659230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12150","","","669899","3670980","GW","false","" +"NM-05000","","","583302","3558030","GW","false","" +"SB-0082","TWDB 4717311","","509896","3508728","GW","false","" +"SA-0230","","","218780","3754600","GW","true","From Datil, take Hwy 12 southwest. Between mile markers 53 and 52, turn left (south) at the ""Crawford"" sign. Drive 3.6 mi, cross cattleguard, turn left and follow 2-track along fence line for 2.6 miles to windmill. Casing under windmill by metal tank." +"NM-10328","","","449716","3641970","GW","false","" +"NM-19519","","","654095","3829270","GW","false","" +"WL-0254","","","303898","3727382","GW","true","" +"NM-21598","","","358708","3877660","GW","false","" +"NM-03526","","","161103","3955950","GW","false","" +"SB-0869","Mayer 30","","425162","3562250","GW","false","" +"NM-16184","","","614252","3761560","GW","false","" +"NM-13349","","","557591","3689750","GW","false","" +"NM-08402","","","294555","3619110","GW","false","" +"NM-17570","","","354295","3790310","GW","false","" +"EB-473","SF-24","","412158","3950630","GW","true","West of Frank Ortiz Park; USGS location ID 17N.09E.15.4431" +"NM-20805","","","396426","3853550","GW","false","" +"WL-0032","","","394768","3917819","GW","true","From I-40, go north on Hwy 14 towards Madrid. Before you get to Madrid, look for workshop on left with metal buffalo, across from Tipple Way. Address 2785 North Hwy 14. Well on south side of workshop near blue frost-free hydrant to right of house driveway." +"NM-07149","","","357091","3596170","GW","false","" +"NM-21253","","","346538","3869030","GW","false","" +"NM-15389","","","655719","3741690","GW","false","" +"NM-18195","","","679750","3803350","GW","false","" +"NM-22675","","","347388","3890400","GW","false","" +"QY-0343","11.34.31.442","","648606","3888740","GW","true","" +"SA-0035","SA-35_R00","","226033","3767909","GW","true","(Contact Mr. Wellborn in advance to open gate) From Datil go south on NM 12 south 10 miles. Just north of MM 64 look for County Road to the west (Green Gap Road @ Sugarloaf sign) Continue 100 yards further south and look for gate on the east side of the highway. Go south through the gate and follow two track for 1.7 miles, bearing to Se at 0.9 miles. Well is to the east (right) next to two track, look for water tank on stilts." +"NM-27265","","","542266","3573700","GW","false","" +"NM-04571","","","593871","3551100","GW","false","" +"NM-13888","","","554432","3695430","GW","false","" +"SM-4028","","","441901","3627483","PS","true","Stream flow measurement by Patrick Walsh" +"NM-09221","","","194395","3632180","GW","false","" +"NM-15323","","","650139","3739910","GW","false","" +"AH-043","MICE","","437452","4041565","GW","true","" +"CX-0010","29N27E11.1","","585898","4069240","GW","true","" +"NM-02925","","","664577","3744120","GW","false","" +"NM-08893","","","284361","3626080","GW","false","" +"NM-10219","","","671006","3641630","GW","false","" +"NM-08224","","","306141","3615920","GW","false","" +"MI-0210","","","526097","3944388","GW","true","Topographic situation: Plateau" +"CX-0112","12","","535767","4063710","GW","true","1 mile southeast of Koehler" +"CP-0003","","","631051","3746226","GW","true","From Portales, take Hwy 70 southwest to Elida. Take NM 114 east (south at first) to bend in road. NM 114 will continue east, but bear right (continue south) onto S. Roosevelt Rd Ak towards water tanks w/town name. Turn left (east) on Roosevelt Rd 26 (dirt road), turn right (south) on S. Roosevelt Rd Ag (dirt road), turn right (west) on S. Roosevelt Rd 28 thru fence to two tanks & building." +"NM-10186","","","312299","3641040","GW","false","" +"NM-13092","","","559864","3685970","GW","false","" +"NM-08297","","","234224","3618630","GW","false","" +"TO-0068","4N6E26.242","","382986","3823530","GW","true","" +"NM-21134","","","163730","3869680","GW","false","" +"NM-01203","","","660160","3882100","GW","false","" +"NM-22313","","","608782","3885620","GW","false","" +"SB-0050","TWDB 4710701","","512573","3515196","GW","false","" +"NM-21606","","","322622","3878410","GW","false","" +"NM-00836","","","447788","3718020","GW","false","" +"AH-104","HM-36","","438169","4042514","GW","true","" +"NM-12132","","","644069","3670720","GW","false","" +"QU-170","","","444571","4061469","GW","true","" +"NM-13842","","","544642","3695160","GW","false","" +"NM-10477","","","548955","3643720","GW","false","" +"SO-0107","4N2E35.22","","344237","3822710","GW","true","" +"NM-14965","","","416798","3725940","GW","false","" +"NM-21320","","","602778","3870180","GW","false","" +"ED-0220","22S27E20.313","","573501","3582370","GW","true","" +"SA-0078","SA-11_R02","","258151","3779639","GW","true","Where Hwy 60 crosses north track of VLA, go north along service road 1.7 miles. WM to right (east). Cross over track." +"NM-05442","","","263269","3567690","GW","false","" +"NM-12253","","","537191","3671020","GW","false","" +"NM-10822","","","553269","3648150","GW","false","" +"NM-15004","","","670533","3728880","GW","false","" +"NM-22451","","","182181","3892050","GW","false","" +"NM-14976","","","639988","3726790","GW","false","" +"NM-02300","","","311384","3577310","GW","false","" +"NM-04006","","","256191","3529150","GW","false","" +"EB-644","","","391446","3936773","GW","true","Take Airport Rd west, at 2nd horse park road turn right and head uphill and eventually southwest direction. Well is about 4.5 miles down this FR, just after intersection with FR 24, well is on south side of road by paddock. Equipped with pumpjack." +"NM-06398","","","363476","3581860","GW","false","" +"NM-24638","","","659829","3942870","GW","false","" +"NM-25521","","","311888","3980920","GW","false","" +"NM-18985","","","386177","3815590","GW","false","" +"NM-10164","","","665540","3640590","GW","false","" +"QU-524","","","444836","4060952","PS","true","Red River location just above beaver dam, just upstream of Spring 17 and east." +"NM-17305","","","665040","3786720","GW","false","" +"AB-0229","S285","","342989","3929870","GW","true","" +"NM-14174","","","552039","3698430","GW","false","" +"NM-26821","","","174776","3753580","GW","true","" +"NM-17465","","","644632","3788660","GW","false","" +"NM-24693","","","404822","3943450","GW","false","" +"NM-08721","","","674758","3623490","GW","false","" +"NM-03944","","","218039","3526950","GW","false","" +"NM-28262","NMSO0545","","277263","3742927","L","false","" +"SA-0173","","","255219","3710982","GW","true","From Winston NM, take rd 52 north, past the Beaverhead rd (59) turnoff. Road turns to dirt at this point. Follow 52 north for another 2.3 miles. Look for mailbox and driveway heading off to east (R) to the Phelps ranch HQ. Go through gate/cattle guard, and follow driveway up Havil Canyon for another 1.8 miles to ranch HQ (newer house with corral and outbuildings). Well is located on hillside to South (R) of house. Walk up hillside to get to white PVC casing." +"NM-07940","","","231841","3613390","GW","false","" +"RA-036","","","359503","4084077","GW","true","" +"NM-09924","","","284784","3637730","GW","false","" +"NM-27669","","","589656","3784460","GW","false","" +"DE-0220","","","639540","3628319","GW","false","" +"NM-23391","","","225938","3905520","GW","false","" +"NM-09479","","","219462","3634240","GW","false","" +"TO-0179","5N8E25.212","","403859","3833250","GW","true","" +"SR-0025","","","301543","3761630","SP","true","Magdalena Ridge; " +"NM-23423","","","466752","3903050","GW","false","" +"NM-00884","","","147333","3784320","GW","false","" +"NM-11628","","","679940","3663300","GW","false","" +"BW-0530","17S9E26.2","","407801","3630810","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0070","TWDB 4717219","","507868","3509988","GW","false","" +"NM-03743","","","172269","3508260","GW","false","" +"QU-090","MW-31","","445593","4062794","GW","true","See Chevron map of monitoring wells. Well on berm to east of East Diversion Channel." +"NM-18241","","","533974","3802390","GW","false","" +"DA-0152","26S3E4.434","","345465","3549220","GW","true","" +"NM-14866","","","428849","3722210","GW","false","" +"NM-11800","","","278863","3666480","GW","false","" +"BC-0069","53","","378755","3892670","GW","true","" +"NM-09541","","","653684","3632450","GW","false","" +"NM-14103","","","546440","3697420","GW","false","" +"NM-11995","","","404087","3667190","GW","false","" +"BC-0323","320","","378935","3885180","GW","true","" +"NM-07778","","","676023","3609020","GW","false","" +"NM-21558","","","347504","3877420","GW","false","" +"NM-17982","","","656123","3799470","GW","false","" +"NM-02214","","","167440","3572110","GW","false","" +"NM-00737","","","470014","3696550","GW","false","" +"NM-28377","CN-2016-019","","587080","3624771","GW","true","" +"NM-25900","","","355242","4003670","GW","false","" +"JM-027","","","306977","3665051","GW","true","" +"NM-05840","","","240800","3573330","GW","false","" +"NM-18439","","","570377","3805580","GW","false","" +"NM-09191","","","285321","3629540","GW","false","" +"NM-13778","","","544566","3694850","GW","false","" +"NM-27646","","","655045","3795110","GW","false","" +"NM-21672","","","626474","3878890","GW","false","" +"AS-054","DM-06","","446469","4041760","GW","true","" +"NM-28288","148728","","183056","3790404","SP","false","Gila National Forest" +"NM-17582","","","664889","3790930","GW","false","" +"SB-0607","TWDB 4864301","","499550","3441547","GW","false","" +"TO-0232","6N8E27.331","","399887","3841760","GW","true","" +"NM-06629","","","675611","3586880","GW","false","" +"NM-24699","","","411740","3943510","GW","false","" +"OG-0087","","","655176","3809966","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile north on SR 311. Turn right east on CR 11. Drive 0.5 miles to well. Well is on S side of road." +"BW-0384","17S10E6.132","","410099","3635670","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TC-416","TP-14","","426368","4051700","GW","true","" +"NM-09344","","","453604","3629050","GW","false","" +"NM-14091","","","546544","3697260","GW","false","" +"PB-0013","","","378709","3937354","GW","true","Heading south on Hwy 22 from post office in Pena Blanca, make right on El Callejon (not marked) after Arroyo Abajo and across from Keros Rd. to address. Well is in orange stucco well house to east of home." +"NM-21379","","","402792","3871560","GW","false","" +"NM-01408","","","170349","3938620","GW","false","" +"NM-03346","","","671047","3879490","GW","false","" +"NM-27785","","","607866","3788040","GW","false","" +"NM-22919","","","411642","3892490","GW","false","" +"TS-088a","","","437974","4055939","PS","true","Rio Grande below confluence with Red River." +"DE-0192","","","611760","3599891","GW","false","" +"NM-01029","","","647527","3833490","GW","false","" +"DE-0383","","","569038","3626527","GW","false","" +"QY-0362","12.30.32.24","","611453","3898660","GW","true","" +"NM-23235","","","392841","3898600","GW","false","" +"NM-11986","","","558766","3666500","GW","false","" +"BW-0392","17S10E18.442","","411257","3631630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00210","","","458573","3578900","GW","false","" +"DE-0199","","","611768","3599874","GW","false","" +"NM-02103","","","262963","3561350","GW","false","" +"WL-0224","","","251420","3572035","GW","true","From McSherry Farm HQ, take dirt road in SW corner past trees, turn left, follow trees 250 yards. Well on left under trees." +"NM-19617","","","379070","3830190","GW","false","" +"NM-14050","","","135518","3703460","GW","false","" +"NM-15455","","","679339","3742820","GW","false","" +"DE-0083","","","639380","3568959","GW","false","" +"NM-20283","","","580539","3840970","GW","false","" +"NM-27831","","","602232","3806400","GW","false","" +"NM-13135","","","560066","3686620","GW","false","" +"AR-0029","","","220655","4074210","GW","true","From Hwy 516 out of Farmington, turn right on Pryor Lane across 516 from 505 Motorsports and Distil wine shop. At fork in road, stay left on Pryor Lane to right (south) on Linda Lane to address. Well is in back yard in shed." +"CX-0151","69","","519300","4022590","GW","true","1/2 mile east of Miami" +"NM-14327","","","536224","3700980","GW","false","" +"TO-0158","5N8E15.131","","399757","3836170","GW","true","" +"NM-15400","","","668108","3742240","GW","false","" +"NM-22829","","","377957","3891770","GW","false","" +"NM-20418","","","659302","3844980","GW","false","" +"NM-05206","","","336029","3562260","GW","false","" +"BW-0770","4.24.37.10.123","","674022","3568240","GW","true","" +"NM-27794","","","587883","3798830","GW","false","" +"NM-24392","","","484393","3935720","GW","false","" +"TS-032","","","436794","4043419","SP","true","Spring along Rio Hondo, just upstream from small bridge, on north side (east side of Rio Grande)" +"QY-0327","11.33.23.242","","645386","3892710","GW","true","" +"CX-0183","23N24E21.4","","554905","4007160","SP","true","(3 miles south of Jaritas Ranch)" +"NM-08076","","","649504","3612950","GW","false","" +"SM-0063","","","445996","3650435","GW","true","16 Springs Canyon turn northwest on Poison Springs Road. Well is on east side of fence by bridge over the fence. Owner lives there part time in motor home on property. #5 Poison Springs Rd." +"SO-0113","2N5E10.332","","370141","3808360","GW","true","" +"NM-27486","","","563899","3728530","GW","false","" +"NM-12201","","","558666","3670170","GW","false","" +"SA-0512","5S14W9.412","","194451","3754350","SP","true","" +"NM-01282","","","233979","3904450","GW","false","" +"NM-15339","","","326945","3740230","GW","false","" +"NM-15587","","","193435","3748740","GW","false","" +"NM-00205","","","444060","3688410","GW","false","" +"NM-27940","","","552486","3839590","GW","false","" +"NM-08960","","","287993","3626680","GW","false","" +"NM-01024","","","652433","3831820","GW","false","" +"NM-11911","","","285216","3667600","GW","false","" +"NM-00382","","","409958","3628910","GW","false","" +"NM-11343","","","529749","3656890","GW","false","" +"NM-15823","","","631242","3750350","GW","false","" +"PC-037","PW-060","","369159","3908026","GW","true","" +"SB-0283","TWDB 4807426","","479811","3534482","GW","false","" +"NM-07660","","","226228","3609480","GW","false","" +"UC-0236","","","596062","4008854","GW","false","" +"QY-1040","15.36.24.23","","675130","3931660","SP","true","" +"NM-14840","","","407043","3721250","GW","false","" +"TO-0415","9N9E12.111","","414177","3876130","GW","true","" +"NM-26709","","","177750","4086060","GW","false","" +"NM-18863","","","575297","3812860","GW","false","" +"SA-0005","SA-5_R00","","244577","3797466","GW","true","US60 MM 74, right on FR-100 (zero mileage); 0.3 mi - gate left along fence; 2.2 mi - thru gate; 3.8 mi - left @ ""Y""; 5.0 mi - cattle guard then right @ fork (FR-14); 6.3 mi - right @ cattle tank (FR-14A); 8.3 mi - right at ""Y""; 11.3 mi - Antelope Well sign. WM steel tower. Large metal steel tank about 5' ESE and smaller tank south of well." +"AR-0124","B001","NMED 13","231044","4078990","GW","true","From Farmington, take Hwy 516 toward Aztec. Turn S onto Hwy 550 (S Main Avenue). Turn right onto Rd 3000, then right onto Rd 3009 and follow N toward river. Take left turn in Rd 3009 onto portion called Montgomery Rd. Take right bend in Rd and proceed to address on left." +"ED-0286","23S27E6.213","","572703","3578070","GW","true","" +"NM-21824","","","344072","3881530","GW","false","" +"QY-0822","7.32.29.311","","629736","3851820","GW","true","" +"NM-19661","","","609130","3830720","GW","false","" +"DE-0017","","","632292","3559772","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. Well is at old windmill. Watch out for sharp remains of pump jack." +"NM-24637","","","675932","3943170","GW","false","" +"NM-27801","","","651310","3800830","GW","false","" +"NM-17531","","","630084","3789560","GW","false","" +"SV-0115","28 Via Entrada","","379405","3898713","GW","false","Unit 2 Lot 10. Owner decided he did not want to share his data. So I deleted the two water levels supplied by San Pedro Homeowners Assn. and left the information from the drill log on file at the Office of the State Engineer." +"SM-0150","","","467259","3632518","GW","true","Miller Flats area. Site visit by Jeremiah Morse in May 2007. NEED DIRECTIONS! Need first site visit info here. Near SM-0142, use GPS coordinates and topo sheet to find it. Old windmill toppled over near well." +"TB-0261","","","411422","3631643","GW","true","" +"NM-04145","M-034","","257043","3538109","GW","false","9.6 miles N of Columbus, @ intersection of NM 11 & CR B011, go 2.8 mi east on CR B011. Turn left north onto 2-track which will bend and go straight east over low hill. Go 4.1 miles turn right south on 2-track in sandy wash to old windmill corrals, tank. Well appears to be on BLM land." +"NM-15902","","","636395","3752950","GW","false","" +"ED-0249","22S27E35.233","","579183","3579610","GW","true","" +"NM-11770","","","559689","3663770","GW","false","" +"NM-23741","","","183089","3918590","GW","false","" +"NM-03654","","","223646","4067440","GW","false","" +"NM-18408","","","649577","3806120","GW","false","" +"NM-27376","","","198868","3620750","GW","false","" +"NM-05972","","","254103","3574350","GW","false","" +"NM-19498","","","405970","3827600","GW","false","" +"NM-18767","","","591670","3811370","GW","false","" +"NM-19524","","","243822","3831100","GW","false","" +"NM-03006","","","627256","3792590","GW","false","" +"NM-24563","","","404080","3939980","GW","false","" +"NM-24342","","","414022","3934920","GW","false","" +"NM-11293","","","619240","3656580","GW","false","" +"TB-0038","","","426625","3721348","GW","true","Off hwy 380, east of Carrizozo, take Basin Street ~1 mi. Past property with lots of junk equipment. Got to wire gate on left (north side of road) - drive slow, easy to miss! Go thru gate, then back track along fence line toward property with junk. Windmill is visible toward south west from junk property." +"AB-0042","S048","","345977","3886310","GW","true","" +"NM-21011","","","562990","3858760","GW","false","" +"NM-09775","","","667530","3635140","GW","false","" +"AR-0529","","","265669","4196484","PS","true","Located at Silverton Mountain Ski Area." +"AR-0096","","","239376","4087870","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2620 to address on right. Well is to left of double carport behind silver shed." +"TB-1014","","","406629","3716393","SP","true","Between Mile 116-115 on hwy 54. On west side of road, thru gate at McDonald Ranch. Combo is 2912. From house go west, bear south on road to spring (w)" +"NM-06704","","","342593","3587930","GW","false","" +"NM-07476","","","221491","3606250","GW","false","" +"TO-0338","8N7E2.443","","393249","3867400","GW","true","" +"NM-25717","","","244294","3994340","GW","false","" +"NM-13935","","","544769","3695530","GW","false","" +"SB-0629","TWDB 4907803","","386592","3531118","GW","false","" +"AB-0060","S069","","331357","3833560","GW","true","" +"PC-017","PW-031","","367807","3907462","GW","true","" +"NM-17036","","","645859","3782210","GW","false","" +"NM-01248","","","614561","3893700","GW","false","" +"NM-27973","","","662555","3870990","GW","false","" +"NM-07024","","","209022","3596860","GW","false","" +"BW-0684","4.1.5.33","","368636","3785310","GW","true","" +"NM-16711","","","145819","3782530","GW","false","" +"NM-21014","","","406229","3859100","GW","false","" +"DE-0071","","","541542","3592838","GW","false","" +"NM-07709","","","676890","3608640","GW","false","" +"NM-19179","","","595560","3820250","GW","false","" +"NM-05635","","","252246","3570140","GW","false","" +"NM-14121","","","643778","3699050","GW","false","" +"NM-06483","","","341649","3583750","GW","false","" +"NM-05992","","","237372","3575480","GW","false","" +"AH-095","HM-18","","441221","4039535","GW","true","" +"NM-21326","","","346935","3870940","GW","false","" +"SB-0045","TWDB 4710201","","516032","3523391","GW","false","" +"TV-175","","","442836","4023939","GW","true","13 Calle Del Sol. From Hwy 68, take west Romero, around curves and trailers about 1 mile. Take 1st road into subdivision Calle Del Sol. Well under heavy cover w/blue clay tiles, ~600 yds. to se from ""House"" well; in line of sight. **NOT USING SITE IN INVENTORY.**" +"SD-0012","6N.7E.17.131","","387019","3846140","GW","true","" +"NM-16535","","","637449","3774070","GW","false","" +"NM-08747","","","204491","3626500","GW","false","" +"NM-14119","","","467021","3697520","GW","false","" +"NM-24880","","","409182","3946710","GW","false","" +"NM-16261","","","270574","3767530","GW","false","" +"DE-0023","","","660572","3555150","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep." +"NM-07065","","","321459","3595120","GW","false","" +"NM-23347","","","378437","3900710","GW","false","" +"NM-08687","","","667763","3622910","GW","false","" +"NM-15188","","","324824","3735400","GW","false","" +"NM-16226","","","278743","3765610","GW","false","" +"NM-27109","CH-25","","434173","3996840","GW","false","" +"NM-01981","","","124096","3554740","GW","false","" +"NM-06028","","","343959","3574260","GW","false","" +"NM-20144","","","396365","3839040","GW","false","" +"NM-03089","","","655842","3806200","GW","false","" +"NM-04793","","","315579","3556190","GW","false","" +"SO-0160","ESC-W02A","","325699","3777082","GW","true","" +"NM-10173","","","556617","3639210","GW","false","" +"LC-018","","","399212","3935682","SP","true","Along walking trail, just before spring LC-001 which is bigger. North of big pond for Las Lagunitas. (formerly LL2)" +"AB-0018","S021","","359852","3814100","GW","true","" +"TV-264","TAL-12","","445853","4022032","GW","true","" +"SB-0251","TWDB 4807308","","485984","3537028","GW","false","" +"NM-27986","","","670680","3877420","GW","false","" +"NM-02641","","","407082","3638550","GW","false","" +"NM-23357","","","233943","3904110","GW","false","" +"CX-0039","28N27E35","","585888","4052560","GW","true","" +"NM-23292","14 Canada Vista","","381538","3899531","GW","true","Having a hand-held GPS is very useful for this well. + +Navigation app will get you to the house; park in the driveway. With the owner's permission, walk around to the back of the house and follow the very faint track to the well (a hand-held GPS is very useful for finding this well on your first visit). The well is flush with the ground surface and covered by a rock; not a fake rock, one of several chunks of Madera limestone in the vicinity of the well." +"NM-26896","PW-095","","373988","3912440","GW","true","" +"NM-20581","","","170558","3853790","GW","false","" +"NM-09690","","","553432","3632350","GW","false","" +"NM-20954","","","389056","3857640","GW","false","" +"NM-27173","","","480780","4069320","ES","true","" +"NM-06492","","","673175","3584150","GW","false","" +"QY-0013","10.28.12.321","","597905","3885260","GW","true","" +"NM-15053","","","595404","3729500","GW","false","" +"NM-13680","","","633688","3694530","GW","false","" +"NM-02637","","","554992","3637100","GW","false","" +"NM-21602","","","394210","3877240","GW","false","" +"NM-16194","","","653238","3763070","GW","false","" +"NM-16379","","","324932","3770560","GW","true","" +"NM-08502","","","672109","3620090","GW","false","" +"NM-13377","","","619905","3691000","GW","false","" +"NM-00706","","","475638","3693640","GW","false","" +"NM-23406","","","673189","3903950","GW","false","" +"SA-0040","SA-40_R00","","271879","3762473","GW","true","From Hwy 60, go south 6.7 mi on Mt. Withington Rd, east 1.1 mi to fence. South 0.6 mi along fence line on old 2 track to gate. Then 0.5 mi east to homestead/well. Well is about 25 ft NW of large metal stock tank. Well has WM over it and currently equipped with pump jack." +"TB-0094","","","434613","3709464","GW","true","Hwy 37 between mile 7 and 8. Turn west on Pfingsten Rd. Go approx 1 mi to 108 Sunset Mesa on E side NW of 1st house near fence." +"NM-20978","","","594329","3858230","GW","false","" +"NM-16182","","","369483","3761680","GW","false","" +"NM-04460","","","636489","3548230","GW","false","" +"BW-0653","17S8E6.2","","391735","3637420","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11674","","","560606","3662140","GW","false","" +"NM-17757","","","628004","3793780","GW","false","" +"SB-0019","TWDB 4709207","","504258","3523287","GW","false","" +"NM-17140","","","671935","3784900","GW","false","" +"NM-00785","","","437455","3706500","GW","false","" +"NM-23320","09VistaDeSandia","","378826","3900126","GW","true","09 Vista de Sandia; Unit 1 Lot 20" +"SA-0420","4S13W22.330","","205366","3760090","GW","true","" +"NM-17293","","","648259","3785910","GW","false","" +"NM-11785","","","670234","3665130","GW","false","" +"NM-11465","","","660308","3660120","GW","false","" +"TB-0063","","","407162","3690118","GW","true","Take Three Rivers campground road past petroglyph place. Cross drainage and powerline?, turn right at pond. Go 500 ft past pond. Well is light blue by telephone pole." +"TO-0474","10N10E32.333","","417409","3877940","GW","true","" +"NM-11990","","","556148","3666550","GW","false","" +"NM-15995","","","623949","3755890","GW","false","" +"TV-288","","","440231","4020074","GW","true","From north on State Road 68, make right (east) on Stakeout Drive, left into subdivision on Entrada Atalaya, then right on Calle Milagro Sur. Follow road as it bends around to the north. Well is on right in bare dirt area between Lots 35 & 36." +"NM-12442","","","556260","3674160","GW","false","" +"NM-08243","","","233629","3617850","GW","false","" +"RA-028","","","358334","4085397","GW","true","Near end of Chamita Dr. Well located to right of house (when facing from the street), near corner of fencing (outside the fence, though)." +"NM-06174","","","251379","3579630","GW","false","" +"NM-03580","","","416239","3982840","GW","false","" +"MI-0239","","","488959","3950208","GW","true","Topographic situation: Plateau" +"NM-24922","","","297504","3949530","GW","false","" +"BW-0853","4.25.6.4.100","","373750","3559520","GW","true","" +"NM-11933","","","671515","3667520","GW","false","" +"NM-14258","","","548624","3699620","GW","false","" +"NM-19621","","","613085","3830190","GW","false","" +"NM-03281","","","401068","3849520","GW","false","" +"NM-15897","","","554034","3752060","GW","false","" +"NM-25712","","","403700","3990430","GW","false","" +"TO-0372","8N9E30.111","","404992","3862190","GW","true","" +"SR-0011","","","374749","3974470","SP","true","Pajarito Mtn. From ski parking lot, follow Camp May Rd 50m, take right on ski trail, keep to ski trail 1.2 mi, descend to draw 100m north of ski trail." +"NM-20659","","","610597","3850710","GW","false","" +"NM-24426","","","435036","3936990","GW","false","" +"NM-08423","","","233265","3620790","GW","false","" +"NM-03290","","","345489","3854420","GW","false","" +"SA-0423","4S13W30.140a","","200974","3759560","GW","true","" +"NM-18478","","","556123","3806160","GW","false","" +"TB-0121","","","419377","3721954","GW","true","#123 17th Street. From Hwy 380 to Water Canyon Rd at golf course, follow road around (well in white dome). Curve W/S to right past cemetary approx 2 blocks to #123 on S side of road." +"NM-21273","","","346102","3868980","GW","false","" +"NM-19177","","","214806","3824080","GW","false","" +"NM-03862","","","117200","3526360","GW","false","" +"NM-02172","","","317764","3565460","GW","false","" +"NM-22692","","","346941","3890640","GW","false","" +"NM-10616","","","660395","3646820","GW","false","" +"BC-0290","301","","381175","3889310","GW","true","" +"NM-00768","","","443627","3700820","GW","false","" +"NM-23532","","","366312","3908510","GW","false","" +"NM-03951","","","251995","3526380","GW","false","" +"NM-11082","","","613633","3652390","GW","false","" +"NM-26005","","","216683","4015860","GW","false","" +"SM-0155","","","510533","3634413","GW","true","Along Hwy 82, east of Hope. Site visit by Jeremiah Morse in June 2007" +"NM-04614","","","681117","3553850","GW","false","" +"UC-0026","","","671094","3986999","GW","true","511 Speer Road Follow directions to UC-0024 (Atchley Irrigation Well). From Cowan Scott int, go 1 mile west on Scott, 3.1 miles south on Speer, turn in driveway on east. Well is beyond buildings and trees in NW corner of prop." +"NM-00404","","","623609","3632360","GW","false","" +"MI-0128","","","472078","3933317","GW","true","Topographic situation: Edge of valley" +"TB-0208","","","428019","3731876","GW","true","Hwy 54 North from Carrizozo to White Oaks turnoff. Head east about 54 miles to gate on North to windmill with generator. IDed as T-2965 by SNL." +"DE-0189","","","611877","3600156","GW","false","" +"NM-24212","","","437133","3930880","GW","false","" +"NM-16375","","","555757","3768980","GW","false","" +"SD-0181","10N.6E.5.443","","380138","3886500","GW","true","" +"NM-20357","","","605401","3842760","GW","false","" +"NM-22579","","","181699","3893480","GW","false","" +"NM-11054","","","296483","3653190","GW","false","" +"QU-154","","","445867","4067593","GW","true","Take Cerro Road west to Wild Rivers, slowing as you round the corner at the reservoir berm. Pull into #79 on the left, finding a small well house on the right near acequia." +"NM-24944","","","410177","3948140","GW","false","" +"NM-26007","","","612139","4012030","GW","false","" +"NM-09741","","","308563","3634730","GW","false","" +"NM-14838","","","416731","3721130","GW","false","" +"SB-0907","26.18.32.122","","488119","3541088","GW","true","" +"NM-01479","","","599619","3949490","GW","false","" +"SO-0080","3N2W32.223","","310059","3813390","GW","true","" +"NM-04831","","","267051","3557830","GW","false","" +"NM-09470","","","409973","3630610","GW","false","" +"NM-19970","","","603396","3835560","GW","false","" +"NM-26649","","","578829","4073020","GW","false","" +"NM-23418","","","382817","3903600","GW","false","" +"NM-10640","","","553775","3645810","GW","false","" +"NM-26189","","","447270","4028940","GW","false","" +"NM-17077","","","637217","3782940","GW","false","" +"QY-0912","8.33.2.422","","645243","3868110","GW","true","" +"NM-18183","","","668692","3802870","GW","false","" +"NM-17648","","","671213","3792220","GW","false","" +"SM-3015","","","483336","3638149","PS","true","Just under bridge" +"NM-23230","","","382297","3898550","GW","false","" +"NM-20989","","","400468","3858430","GW","false","" +"NM-02256","","","327306","3572100","GW","false","" +"NM-18198","","","607242","3802300","GW","false","" +"NM-08843","","","650555","3624420","GW","false","" +"MI-0170","","","602125","3934445","GW","true","Topographic situation: Atarque Canyon" +"NM-25213","","","677028","3963940","GW","false","" +"SO-0001","","","323549","3771638","GW","true","On NMT campus near golf course. In middle of #1 fairway." +"NM-07037","","","362090","3593950","GW","false","" +"NM-14941","","","671488","3725910","GW","false","" +"NM-04997","","","267502","3560320","GW","false","" +"SO-0263","NRCS 2 (Shallow)","","328478","3764002","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Wells on west side of road. SO-0262 well A is to the north of SO-0262 well B" +"NM-00531","","","306029","3654010","GW","false","" +"NM-09578","","","209778","3635260","GW","false","" +"NM-27901","","","558442","3823180","GW","false","" +"NM-02522","","","548448","3614590","GW","false","" +"SM-4057","","","437072","3631725","PS","true","Stream flow measurement by Patrick Walsh" +"NM-24760","","","415147","3944580","GW","false","" +"NM-07707","","","625209","3607160","GW","false","" +"NM-03568","","","602837","3977190","GW","false","" +"NM-16513","","","641685","3773640","GW","false","" +"MI-0117","","","587376","3924906","GW","true","Topographic situation: Plains" +"NM-15735","","","636305","3748480","GW","false","" +"CX-0078","24N24E15.1","","555377","4019440","GW","true","" +"NM-13984","","","543477","3695740","GW","false","" +"SM-4056","","","436966","3631698","PS","true","Stream flow measurement by Patrick Walsh" +"NM-03034","","","664545","3788860","GW","false","" +"NM-10687","","","543310","3646010","GW","false","" +"NM-17428","","","191704","3791840","GW","false","" +"NM-05704","","","259382","3570590","GW","false","" +"SD-0333","6N.5E.2.142","","373004","3849530","SP","true","" +"NM-21792","","","334994","3881230","GW","false","" +"AB-0092","S104","","346634","3902630","GW","true","" +"SR-0001","","","519626","3543300","SP","true","Gualadule Mtns; no trail, descend from tank" +"NM-25958","","","434195","4006170","GW","false","" +"NM-27568","","","633828","3792530","GW","false","" +"NM-27852","","","596279","3809880","GW","false","" +"NM-02888","","","660543","3743900","GW","false","" +"NM-13221","","","552148","3687780","GW","false","" +"NM-03397","","","348676","3890210","GW","false","" +"NM-09465","","","264879","3632660","GW","false","" +"NM-23472","","","241771","3908840","GW","false","" +"NM-15120","","","671290","3733220","GW","false","" +"NM-10699","","","645014","3647100","GW","false","" +"NM-23691","","","396378","3911530","GW","false","" +"NM-23240","","","349586","3899250","GW","false","" +"NM-23537","","","372045","3907940","GW","false","" +"NM-25681","","","673340","3989270","GW","false","" +"TC-293","","","449698","4061947","PS","true","Above Ranger Station and gaging station at pullout where tailings pipes cross river at headgate." +"NM-15317","","","643972","3739480","GW","false","" +"NM-07566","","","555669","3604310","GW","false","" +"NM-07993","","","224663","3614270","GW","false","" +"SA-0145","","","259784","3715106","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south past MM 45 to the Cupit Ranch HQ on the west side of the road. Look for road to the east (left) just north of the HQ and go thru the gate. Go 0.4 miles and bear to the north (left) across the first arroyo, go 0.6 miles and thru the gate and then take the trail up the second arroyo (Mike Springs Canyon) At 0.4 miles just past the arroyo on the right stay left taking the road to the north uphill 0.1 miles. Stay east (right) at the fork over the ridge and go 0.8 miles to the gate. Road is passable to the top of the ridge (6825 ft elev.!), park and walk down hill to the windmill from there. Mr. Cupit said he will be repairing the road." +"NM-08356","","","655453","3617530","GW","false","" +"NM-27797","","","606652","3789800","GW","false","" +"HS-021","TC-021","","289439","3667679","GW","true","SE corner of Austin and Clancy inside of lot under white bucket, next to white building." +"NM-23048","","","350910","3895190","GW","false","" +"NM-22996","","","349787","3894570","GW","false","" +"NM-21221","","","540356","3867220","GW","false","" +"NM-24952","","","408872","3948370","GW","false","" +"NM-16285","","","303862","3767590","GW","false","" +"NM-26622","","","195144","4076000","GW","false","" +"AH-045","ORT2","","439950","4043666","GW","true","" +"NM-06843","","","183197","3594590","GW","false","" +"NM-11369","","","564110","3657510","GW","false","" +"NM-14752","","","547940","3717600","GW","false","" +"NM-27212","","","311626","3525180","GW","false","" +"NM-16580","","","666610","3776170","GW","false","" +"NM-09265","","","624933","3629090","GW","false","" +"NM-02994","","","676931","3790100","GW","false","" +"NM-02238","M-114","","223877","3572330","GW","false","" +"ED-0149","21S27E32.112a","","573796","3589620","GW","true","" +"NM-21984","","","382162","3882310","GW","false","" +"ED-0296","23S28E6.131","","581563","3578260","GW","true","" +"NM-22095","","","346549","3884070","GW","false","" +"NM-07900","","","231334","3613010","GW","false","" +"NM-18678","","","165485","3815580","GW","false","" +"NM-06162","","","612067","3577000","GW","false","" +"BW-0159","13S9E25.413","","403505","3668960","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BC-0414","417","","335385","3894254","GW","false","" +"NM-10611","","","546947","3645560","GW","false","" +"NM-27975","","","344642","3871900","GW","false","" +"NM-03341","","","347559","3877400","GW","false","" +"NM-04132","","","343346","3536070","GW","false","" +"NM-01713","","","199845","4077660","GW","false","" +"NM-03928","","","346155","3523710","GW","false","" +"NM-02706","","","555312","3649510","GW","false","" +"NM-10624","","","637516","3646530","GW","false","" +"NM-05175","","","678247","3561970","GW","false","" +"NM-18180","","","676357","3803040","GW","false","" +"NM-03471","","","668794","3910520","GW","false","" +"TV-233","","","440656","4023366","GW","true","From SR 68, west on SR 96. Right (north) on Golf Course Road @ Country Club Estates. Left on Los Cordovas. First house on left @ bottom of hill. Well around east (left) side of house, on small berm outside of driveway and ring of pine trees." +"NM-06639","","","569358","3585700","GW","false","" +"NM-24083","","","407417","3926880","GW","false","" +"NM-03744","","","171452","3508290","GW","false","" +"NM-07360","NH-019","","275511","3602490","GW","false","" +"NM-03608","","","578498","4000050","GW","false","" +"NM-08458","","","411291","3618040","GW","false","" +"BW-0195","14S9E25.422","","403843","3659260","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-0230","","","433003","3715742","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west to house on left and look for windmill south of pond. Casing is 18โ€™ to the north of the windmill well casing." +"AB-0210","S266","","345603","3886620","GW","true","" +"NM-00679","","","486852","3690070","GW","false","" +"NM-02662","","","162986","3649260","GW","false","" +"NM-06529","","","627114","3584450","GW","false","" +"NM-19840","","","373006","3833850","GW","false","" +"TV-105","","","443044","4023239","GW","true","Physical address: 24 Laguardia Rd, Ranchos de Taos From Hwy 68 SW of mile marker 40, 0.2 miles on TC 110 (Hwy 96 on map) to Laguardia then north across drainage. Look for power box #12983. Well to east in cement vault in vacant lot." +"NM-24121","","","477854","3928130","GW","false","" +"NM-19200","","","578294","3820610","GW","false","" +"TS-054","TJ-1","","433924","4021264","SP","true","Spring along road, just upstream from Rio Grande Spring, east side. Runs under culvert to river." +"NM-05147","","","234406","3563230","GW","false","" +"TC-419","WG-04","","432932","4043950","GW","true","" +"NM-18908","","","544215","3813430","GW","false","" +"PB-0028","","","377990","3936106","GW","true","Heading south on Hwy 22 from post office in Pena Blanca, turn right (west) on Arroyo Leyba to address." +"TB-0012","","","434100","3716936","GW","true","7567 Hwy 380. Just east of turn off for Nogal, house and WM on north side." +"NM-04063","","","251130","3534080","GW","false","" +"NM-14433","","","560290","3704640","GW","false","" +"NM-09890","","","649982","3636430","GW","false","" +"SM-1097","","","444431","3641046","SP","true","Sample location at 444520 E, 3641169 N. Turn left across from Ricardo's house, passing pond, go up and over hill. Turn left at first fork after 4-way intersection. Head down into valley, taking next left to follow dirt road to pond on left side." +"NM-04786","","","679761","3556390","GW","false","" +"BW-0202","14S9E26.242b","","402207","3659680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-00295","","","647553","3610650","GW","false","" +"BC-0180","160","","379286","3885380","GW","true","" +"NM-20688","","","403997","3851060","GW","false","" +"NM-08630","","","669263","3622010","GW","false","" +"SO-0022","2N2E6.11","","336420","3811500","GW","true","" +"NM-26719","","","182496","4087800","GW","false","" +"NM-20238","","","141859","3846870","GW","false","" +"NM-14248","","","140970","3705980","GW","false","" +"NM-24650","","","402470","3942280","GW","false","" +"NM-03113","","","660098","3809970","GW","false","" +"NM-10824","","","549842","3648130","GW","false","" +"NM-20489","","","622505","3845990","GW","false","" +"EB-335","","","402763","3937837","GW","true","From East Frontage Road, take Otto Rd. @ Santa Fe Bronze shop. Turn right on Emily, and left on Carlson to address. Well on side of house next to stucco wall and gate under some roofing." +"NM-08681","","","413276","3621680","GW","false","" +"TO-0254","6N14E17.11","","455750","3845710","GW","true","" +"ED-0054","19S28E13.21","","581790","3614330","GW","true","" +"SB-0777","TWDB 4924803","","397978","3500389","GW","false","" +"NM-23866","","","637637","3918000","GW","false","" +"NM-23656","","","322156","3911400","GW","false","" +"AR-0059","B026","NMED225/228","233406","4081960","GW","true","From Aztec take Hwy 516 west toward Farmington. Just across river, turn right on Ruins Rd (Rd 2900). Rd 2900 turns right and travels thru Natl. Monument along river. Proceed to address on right. Well is in large grassy area between wood house to S and small shed to N under faux rock cover. (Tenants are Eric's parents)." +"BW-0890","4.2.35.11.313","","661665","3779940","GW","true","" +"NM-20253","","","609494","3840890","GW","false","" +"NM-26721","","","675398","4084700","GW","false","" +"NM-09456","","","555082","3630240","GW","false","" +"NM-22997","","","349678","3894560","GW","false","" +"TB-0004","","","422310","3652166","GW","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end, house is toward the right. Brick? Past his house, head into pasture, through 3-4 gates (walking towards lone tree in meadow?). Well is north one, in cattle fence area. Green septic plastic casing." +"NM-15771","","","663932","3750210","GW","false","" +"NM-04545","","","678541","3551190","GW","false","" +"QY-0909","8.32.4.244","","632343","3868230","GW","true","" +"NM-18775","","","651950","3812350","GW","false","" +"NM-08287","","","209385","3619170","GW","false","" +"NM-21352","","","377253","3871440","GW","false","" +"NM-02861","","","414299","3717180","GW","false","" +"NM-18942","","","665471","3815840","GW","false","" +"PP-053","PW-58","","433797","4002155","GW","true","" +"NM-05790","","","267631","3571690","GW","false","" +"NM-05154","","","678150","3561470","GW","false","" +"NM-13168","","","623512","3687900","GW","false","" +"NM-07809","","","405002","3608480","GW","false","" +"NM-24276","","","224874","3936800","GW","false","" +"DE-0094","","","639303","3569020","GW","false","" +"RA-091","","","391093","4024142","GW","false","" +"TV-220","","","444376","4015734","GW","true","NOTE: There are three wells at this site: 5"" PVC in steel case (Joe Thomas well) (TV-211); PVC in steel case set in cement culvert pad (TV-220); 6-5/8"" steel casing (TV-221). Get key from Roy Cunningham for Miranda canyon gate." +"NM-25654","","","413589","3985890","GW","false","" +"SA-0186","","","267467","3733852","GW","true","Take 52 to FR 478, go east 12.8 miles on FR 478. Well near old corral on N (left) side of creek." +"NM-11934","","","289838","3667870","GW","false","" +"SV-0067","04 Osito","","378273","3899226","GW","false","Unit 2 Lot 45" +"DE-0116","","","672758","3616154","GW","false","" +"QY-0223","11.30.22.333b","","613529","3891430","GW","true","" +"NM-25770","","","303279","3997350","GW","false","" +"NM-20343","","","599680","3842510","GW","false","" +"NM-24728","","","398795","3944350","GW","false","" +"NM-23342","","","186948","3905210","GW","false","" +"NM-17660","","","655119","3792150","GW","false","" +"NM-16703","","","651774","3777530","GW","false","" +"EB-474","","","412476","3950974","GW","true","North end of landfill" +"NM-08715","","","648337","3623000","GW","false","" +"QY-0717","6.30.31.444","","610233","3839770","GW","true","" +"NM-27462","","","542999","3716000","GW","false","" +"QY-0342","11.34.26.113","","653681","3891490","GW","true","" +"NM-27215","","","325234","3541360","GW","false","" +"NM-22229","","","600942","3884760","GW","false","" +"NM-11464","","","283963","3661340","GW","false","" +"BW-0572","15S10E31.1","","404380","3648520","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TS-029b","","","440126","4068642","SP","true","East side of river." +"BW-0105","9S6E24.221","","382182","3710150","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07167","","","277587","3597940","GW","false","" +"NM-06914","","","359374","3591370","GW","false","" +"NM-08845","","","671735","3625130","GW","false","" +"NM-13466","","","403248","3692210","GW","false","" +"QU-070","MW-27","","444491","4061293","GW","true","See Chevron map of monitoring wells. Off Lower Embargo Road area. MW-27 & MW-29 near each other in junkyard with lots of cars, refrigerators, trailers (lots of CFCs)." +"NM-26414","","","577307","4060400","GW","false","" +"NM-08846","","","561131","3623500","GW","false","" +"NM-09034","","","679324","3627300","GW","false","" +"NM-25316","","","671446","3969500","GW","false","" +"NM-21709","","","350864","3879800","GW","false","" +"NM-12932","","","530369","3682820","GW","false","" +"NM-16890","","","653859","3780060","GW","false","" +"NM-02969","","","667068","3760410","GW","false","" +"TC-273","CO-21","","413420","4105178","GW","true","" +"NM-19478","","","678670","3828940","GW","false","" +"NM-16663","","","309824","3776900","GW","false","" +"NM-11318","","","566970","3656610","GW","false","" +"SB-0703","TWDB 4915615","","389859","3522183","GW","false","" +"EB-200","","","416884","3959330","GW","true","Across from driveway fr #13 Blue Tesuque Rd; south side of arroyo, ~10 ft East of road" +"NM-23942","","","401043","3920170","GW","false","" +"NM-23634","","","360681","3910320","GW","false","" +"NM-25233","","","473850","3963130","GW","false","" +"NM-06574","","","671494","3586160","GW","false","" +"NM-22287","","","345794","3885970","GW","false","" +"NM-24526","","","287669","3941190","GW","false","" +"TO-0321","7N10E19.112","","414628","3853980","GW","true","" +"NM-11417","","","671568","3660070","GW","false","" +"NM-17495","","","680958","3789780","GW","false","" +"BW-0885","3.27.16.8.111","","168762","3543410","GW","true","" +"TB-0319","","","405128","3647922","GW","true","Going S on Hwy 54 from Tularosa, turn W onto La Luz Gate Rd then N onto Moondale Rd. Take right turn in Moondale Rd and then turn W onto dirt road. Proceed to address on N side of road. Well is on W side of the house." +"MI-0312","","","446867","3935616","SP","true","Topographic situation: Valley" +"NM-25032","","","410157","3951130","GW","false","" +"DE-0089","","","639310","3569004","GW","false","" +"SB-0109","TWDB 4718401","","513402","3504329","GW","false","" +"NM-16240","","","241138","3767060","GW","false","" +"NM-19647","","","258715","3833010","GW","false","" +"NM-14235","","","550795","3699230","GW","false","" +"BW-0145","11S10E7.234a","","412470","3692700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-25888","","","411904","4002480","GW","false","" +"NM-17206","","","638934","3784630","GW","false","" +"NM-21560","","","347747","3877400","GW","false","" +"NM-09369","","","451732","3629310","GW","false","" +"NM-04840","","","227665","3559250","GW","false","" +"NM-18841","","","675352","3814300","GW","false","" +"NM-11551","","","560384","3660380","GW","false","" +"NM-08836","","","229208","3626910","GW","false","" +"SM-3052","","","441071","3640880","R","true","From depth of 30-50 ft Yeso Formation red Mudstone/siltstone" +"NM-03683","","","662589","4092840","GW","false","" +"SM-3051","","","444543","3642783","R","true","From depth of 240-260 ft Yeso Formation yellow Mudstone." +"NM-05953","","","233636","3574840","GW","false","" +"NM-26748","","","243362","4092070","GW","false","" +"NM-05423","","","665184","3566090","GW","false","" +"NM-15929","","","630862","3753700","GW","false","" +"NM-05240","","","639675","3562560","GW","false","" +"NM-21696","","","368641","3879230","GW","false","" +"NM-16871","","","237625","3782020","GW","false","" +"TO-0059","3N15E29.31","","463396","3812580","GW","true","" +"SM-1083","","","447725","3638038","SP","true","" +"NM-08517","","","680283","3620420","GW","false","" +"SM-1005","","","447612","3650484","SP","true","On south side of 16 Springs Canyon, in Walker private property accessed on 2 track across from house. Do not access without prior arrangement with Walker. Small ammo can spring box." +"NM-11609","","","403954","3661560","GW","false","" +"NM-19364","","","600938","3825210","GW","false","" +"NM-19168","","","662338","3821340","GW","false","" +"SO-0142","BRN-W04A","","327164","3763807","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"NM-10504","","","430381","3644340","GW","false","" +"EB-681","","","417899","3932127","GW","true","" +"NM-09548","","","226736","3634560","GW","false","" +"UC-0132","","","654396","4058998","GW","false","USGS, not in NESWCD network, not visited by NMBGMR" +"NM-13396","","","642130","3691640","GW","false","" +"NM-21157","","","678567","3866940","GW","false","" +"BW-0786","1.2.21.2","","131494","3816760","GW","true","" +"NM-11559","","","561991","3660490","GW","false","" +"NM-18311","","","674319","3805400","GW","false","" +"NM-11712","","","555626","3662790","GW","false","" +"NM-08110","","","645352","3613470","GW","false","" +"TC-300","","","445854","4081757","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Right (north) on State Line towards red barn. Right @ large brown house at 49 State Line Road. Well is located on north side of home in yard. House to be RC Knox's home." +"NM-18548","","","521625","3807220","GW","false","" +"TC-255","CO-03","","417671","4102019","GW","true","" +"TO-0122","5N6E3.141","","380858","3839900","GW","true","" +"NM-11221","","","646805","3655850","GW","false","" +"NM-00151","","","586954","3565950","GW","false","" +"NM-19241","","","625671","3822580","GW","false","" +"NM-02618","","","313810","3633150","GW","false","" +"NM-16439","","","639939","3772100","GW","false","" +"DA-0133","26S2W17.21","","305046","3548120","GW","true","" +"NM-18916","","","649529","3814610","GW","false","" +"NM-04550","","","176832","3555000","GW","false","" +"NM-07415","","","185499","3606270","GW","false","" +"NM-02656","","","553430","3642360","GW","false","" +"NM-12116","","","667442","3670720","GW","false","" +"NM-04004","","","256847","3529070","GW","false","" +"TO-0520","6N9E11","","411713","3847010","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-06710","","","672527","3588390","GW","false","" +"NM-07934","","","206990","3614030","GW","false","" +"NM-24346","","","435624","3934800","GW","false","" +"NM-05165","","","674427","3561620","GW","false","" +"NM-10103","","","410849","3638460","GW","false","" +"NM-21812","","","367298","3880980","GW","false","" +"NM-27104","CAR-03","","427326","4022870","GW","false","" +"BW-0868","2.7.2.11.210","","343193","3859230","GW","true","" +"NM-15979","","","200718","3759280","GW","false","" +"NM-03426","","","357046","3894480","GW","false","" +"NM-19838","","","261826","3836010","GW","false","" +"NM-22980","","","349316","3894410","GW","false","" +"NM-03102","","","675157","3808380","GW","false","" +"NM-19733","","","579067","3831590","GW","false","" +"BW-0643","13S2E12.311","","341753","3673550","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17136","","","671527","3784830","GW","false","" +"ED-0020","17S25E12.211","","552813","3635160","GW","true","" +"NM-16201","","","216161","3765800","GW","false","" +"NM-05430","","","259417","3567660","GW","false","" +"NM-25832","","","241303","4002480","GW","false","" +"NM-27056","","","323948","3772206","GW","true","" +"NM-20600","","","131221","3855680","GW","false","" +"NM-18400","","","673889","3806510","GW","false","" +"TV-121","","","439039","4024722","GW","true","From the junction of NM 68, and CR 110), drive 1.6 miles west (past UNM Taos and golf course) to Los Cordovas Rd, turn right (north) and drive 0.8 mile to Anadarko Road; turn left (west). Drive about 0.9 miles, look for 2-track before masonry gate, where road curves to the north. Follow 2-track about 0.1 mile west, then turn left (south) on another 2-track. Drive about 120 feet; well is difficult to spot to the west of 2-track but is near a pile of gravel. Really helps to have the well coordinates programmed into GPS. " +"NM-11035","","","679329","3652750","GW","false","" +"NM-19444","","","616741","3827120","GW","false","" +"NM-21075","","","406267","3861790","GW","false","" +"NM-13521","","","413174","3692370","GW","false","" +"TC-336","","","414855","4059730","GW","true","" +"QY-0499","16.35.4.321","","659971","3945770","GW","true","" +"TO-0394","9N7E16.443","","391172","3873630","GW","true","" +"TO-0331","7N13E23.133","","450967","3853360","GW","true","" +"NM-10232","","","336559","3641470","GW","false","" +"NM-19030","","","268530","3818700","GW","false","" +"NM-18746","","","318355","3812260","GW","false","" +"QY-0825","7.32.31.231","","628865","3850580","GW","true","" +"NM-19041","","","649491","3817640","GW","false","" +"NM-00497","","","314394","3648250","GW","false","" +"NM-15098","","","563524","3730810","GW","false","" +"NM-03216","","","569515","3831910","GW","false","" +"NM-02534","","","263478","3618660","GW","false","" +"NM-21875","","","348442","3881670","GW","false","" +"NM-04038","","","343920","3530610","GW","false","" +"NM-21713","","","368434","3880720","GW","false","" +"NM-17735","","","635128","3792890","GW","false","" +"QY-0828","7.32.33.443","","632431","3849680","GW","true","" +"NM-15837","","","670454","3752020","GW","false","" +"NM-07877","","","647538","3610170","GW","false","" +"NM-18586","","","568545","3808090","GW","false","" +"NM-12447","","","614434","3674820","GW","false","" +"NM-02499","","","282719","3612890","GW","false","" +"BC-0268","292","","374519","3888710","GW","true","" +"NM-08528","","","151557","3625010","GW","false","" +"NM-24723","","","402868","3944180","GW","false","" +"BC-0287","298","","378233","3888750","GW","true","" +"SD-0278","11N.6E.28.341","","380776","3889880","GW","true","" +"NM-13921","","","543866","3695430","GW","false","" +"NM-20209","","","254917","3842640","GW","false","" +"NM-01999","","","135410","3555840","GW","false","" +"QY-0404","12.34.36.444","","656481","3898520","GW","true","" +"NM-11838","","","559840","3664570","GW","false","" +"NM-13998","","","543734","3695960","GW","false","" +"NM-16363","","","324971","3769850","GW","false","" +"NM-27405","","","531750","3639770","GW","false","" +"NM-24189","","","344675","3931140","GW","false","" +"NM-11263","","","655570","3656290","GW","false","" +"NM-17420","","","650094","3788010","GW","false","" +"NM-07495","","","214745","3606870","GW","false","" +"NM-13097","","","660528","3687640","GW","false","" +"NM-18324","","","673917","3805030","GW","false","" +"BC-0190","170","","375766","3889830","GW","true","" +"DE-0043","","","612452","3565847","GW","true","From Carlsbad, drive toward Jal, eventually on the Jal Highway (NM 128). From the junction of NM 128 and Twin Wells Road (CR 787; UTM zone 13, easting 612487 northing 3574200), drive south (right) on CR 787. Drive 5.7 miles to residence; this residence is the home of the ranch manager, Jesus Hernandez, and these 2 wells supply his home. Well is 1,100 ft north of house." +"NM-05134","","","675615","3561120","GW","false","" +"NM-10537","","","649448","3645910","GW","false","" +"TB-1063","","","424253","3695649","SP","true","Site visit by Fraser and Cathy Goff. NPW10-6" +"QY-0516","16.36.26.333","","672573","3938960","GW","true","" +"NM-22769","","","342572","3891480","GW","false","" +"NM-25353","","","393122","3970430","GW","false","" +"NM-07199","","","318740","3597820","GW","false","" +"NM-09663","","","639261","3633310","GW","false","" +"NM-21475","","","292798","3875960","GW","false","" +"NM-17965","","","618639","3798150","GW","false","" +"NM-28421","S-2016-098","","584145","3553363","GW","true","" +"SB-0714","TWDB 4915903","","390172","3517098","GW","false","" +"EB-099","","","416630","3962185","GW","true","Rancho Encantado, 198 State Rd 592" +"NM-17416","","","643314","3787810","GW","false","" +"NM-23179","","","225316","3900880","GW","false","" +"NM-13756","","","547667","3694650","GW","false","" +"NM-21492","","","385240","3875340","GW","false","" +"NM-08211","","","209980","3618110","GW","false","" +"NM-05525","","","238832","3569160","GW","false","" +"TO-0002","1N8E4.222","","398374","3801100","GW","true","" +"NM-19653","","","639872","3831140","GW","false","" +"QY-0809","7.32.12.434","","636928","3856130","GW","true","" +"NM-24045","","","398378","3925380","GW","false","" +"NM-24675","","","407005","3942940","GW","false","" +"TB-0235","","","431373","3716986","GW","true","From Hwy. 37 south of Hwy 380 intersection to west thru Vista Del Valle gateway (use locked gate to south, Omar has combos) Continue to the west and take the road going north across the cattle guard in front of the HQ. Follow road to west 2 miles and at crossroads turn north and go 0.2 miles and turn to east before cattle guard. Follow road to east and look for pens to north. Well is north of windmill across fence in cement pad." +"NM-00044","26.18.21.411","","489984","3543410","GW","false","" +"NM-24001","","","666922","3924260","GW","false","" +"EW-0006","","","418804","4004638","SP","false","" +"NM-01191","","","201264","3883100","GW","false","" +"NM-13331","","","654970","3690660","GW","false","" +"NM-12895","","","623002","3683300","GW","false","" +"CX-0109","6","","541059","4071580","GW","true","1 mile east of Van Houten" +"NM-00212","","","564673","3579850","GW","false","" +"NM-04529","","","678047","3550970","GW","false","" +"NM-25185","","","153881","3967370","GW","false","" +"NM-23298","13CanonEscondido","","377060","3899617","GW","true","13 Canon Escondido; Unit 3 Lot 34" +"NM-26001","","","217868","4014620","GW","false","" +"NM-00385","","","647223","3629790","GW","false","" +"NM-25520","","","407788","3979410","GW","false","" +"NM-11357","","","621997","3658060","GW","false","" +"QY-0456","14.34.5.422","","650009","3926260","GW","true","" +"TO-0312","7N9E5.211","","407198","3858910","GW","true","" +"NM-23217","","","371219","3898360","GW","false","" +"NM-26404","","","576924","4058860","GW","false","" +"NM-08578","","","552666","3619840","GW","false","" +"NM-14688","","","544707","3714560","GW","false","" +"NM-05593","","","258916","3569740","GW","false","" +"NM-14533","","","411560","3708060","GW","false","" +"SB-0249","TWDB 4807306","","487638","3536964","GW","false","" +"NM-19316","","","588258","3823880","GW","false","" +"NM-01854","M-018","","253830","3532392","GW","false","From NM-04044, continue east on B005 for another 2.0 miles to old fence on south side of the road. Go south along the east side of the fence in open grassland for 0.4 miles. Look for rail road tie with tire at the base. Well located ~150 yards southeast of pole with tire, near bushes and planks." +"NM-03748","","","171481","3509180","GW","false","" +"NM-14570","","","642959","3710780","GW","false","" +"NM-27543","","","574534","3780540","GW","false","" +"QY-0007","10.27.22.332","","584792","3881450","GW","true","" +"NM-26416","","","224142","4064530","GW","false","" +"NM-20742","","","614031","3852500","GW","false","" +"NM-27342","","","372575","3594400","GW","false","" +"DA-0188","23S1E9.344","","326184","3576980","GW","true","" +"NM-14092","","","546053","3697260","GW","false","" +"NM-01151","","","626907","3865980","GW","false","" +"NM-11713","","","634082","3664010","GW","false","" +"NM-07552","","","606386","3604540","GW","false","" +"NM-13834","","","544642","3695130","GW","false","" +"NM-25916","","","434050","4003550","GW","false","" +"NM-14126","","","412630","3698010","GW","false","" +"NM-15674","","","646883","3747530","GW","false","" +"NM-26708","","","445282","4080230","GW","false","" +"NM-12483","","","553874","3674850","GW","false","" +"NM-14407","","","677073","3705240","GW","false","" +"NM-06181","","","567797","3577010","GW","false","" +"NM-09071","","","202985","3630190","GW","false","" +"NM-17567","","","567583","3789360","GW","false","" +"SD-0214","10N.6E.30.424","","378597","3880660","GW","true","" +"DE-0205","","","639579","3628395","GW","false","" +"EB-308","","","399358","3938016","GW","true","From main entrance to El Rancho de las Golondrinas (334 Los Pinos Rd), proceed west on Los Pinos Rd ~0.1 mile, then turn right (north) on Paseo Real (Santa Fe County Rd 56). Drive north on Paseo Real ~0.45 miles, then turn right (east) just past cattle guard (water tower on west side of road) thru green gate. Follow dirt road ~0.1 mile to well on right." +"NM-24942","","","410579","3948110","GW","false","" +"PC-048","PW-076","","372439","3909257","GW","true","" +"NM-23867","","","421826","3917410","GW","false","" +"NM-06009","","","257853","3575650","GW","false","" +"NM-02421","","","215482","3595130","GW","false","" +"DA-0109","24S1W22.123","","317823","3565510","GW","true","" +"NM-11661","","","562786","3661850","GW","false","" +"NM-14249","","","629782","3700550","GW","false","" +"NM-16564","","","391259","3774030","GW","false","" +"NM-09402","","","631078","3630700","GW","false","" +"QY-0235","11.30.28.222","","613179","3891020","GW","true","" +"BW-0679","2.9.10.18.233","","415215","3872680","GW","true","" +"NM-23341","","","374134","3900660","GW","false","" +"BC-0432","435","","347098","3879071","GW","false","" +"NM-27496","","","384447","3846580","GW","false","" +"NM-17734","","","655251","3793450","GW","false","" +"NM-15913","","","245709","3755590","GW","false","" +"NM-17576","","","676066","3791290","GW","false","" +"UC-0012","","","673019","4025294","GW","false","" +"NM-03190","","","402252","3826350","GW","false","" +"NM-26322","","","233904","4049130","GW","false","" +"NM-24196","","","401334","3930610","GW","false","" +"TV-180","SWS-23","","440513","4023235","GW","true","From SR 68, take SR 96 west ~1.5 miles to Los Cordovas Rd. and turn right (north). First house on right. Well located in vault near road." +"NM-23059","","","611150","3894890","GW","false","" +"TC-224","WG-31","","417086","4084584","GW","true","" +"NM-20046","","","602312","3836870","GW","false","" +"NM-20929","","","140311","3863320","GW","false","" +"NM-21953","","","409864","3881540","GW","false","" +"NM-01469","","","666885","3947550","GW","false","" +"NM-06253","","","583288","3578670","GW","false","" +"NM-07040","","","676381","3595110","GW","false","" +"AH-025","HM-01","","436665","4041396","GW","true","" +"NM-09375","","","409236","3629700","GW","false","" +"NM-03263","","","649256","3843240","GW","false","" +"SA-0170","","","258026","3719193","GW","true","From the town of Dusty, take 52 south for 4.4 miles. Do not cross Alamosa creek, but take the road to the south (L) just before 52 crosses the creek. Take this branch for 0.3 miles, then take the first road branching to the north (L), which leads to the Aber ranch HQ. Drive up and through the ranch HQ (watch out for 'some young dogs, some old dogs, and some really stupid dogs'!). Well located under windmill tower on R, by corral and shed." +"NM-12904","","","640337","3683320","GW","false","" +"ED-0374","26S31E8.31a","","612638","3547220","GW","true","" +"NM-13023","","","591113","3684950","GW","false","" +"SM-1074","","","449277","3630294","SP","true","" +"NM-15537","","","659897","3744070","GW","false","" +"RA-083","","","395289","4019981","GW","true","In covered workshop/shed in underground vault." +"NM-18664","","","660860","3810890","GW","false","" +"QY-0248","11.30.30.443","","609882","3889690","GW","true","" +"NM-27890","","","555612","3819070","GW","false","" +"PB-0014","","","378739","3937519","GW","true","Going south on Hwy 22, turn left at post office in Pena Blanca on Calle Escuela Vieja to address after crossing irrigation ditch. Well is in vault near front door of home." +"CX-0051","26N26E32","","572073","4033820","GW","true","" +"PP-016","PW-14","","433821","4003143","GW","true","" +"NM-02808","","","569909","3691460","GW","false","" +"NM-25674","","","427069","3987210","GW","false","" +"NM-01754","","","169487","3493790","GW","false","" +"NM-12696","","","138833","3685410","GW","false","" +"NM-10169","","","675271","3640050","GW","false","" +"NM-16061","","","657059","3758630","GW","false","" +"NM-09444","","","260770","3632850","GW","false","" +"NM-17019","","","673946","3782810","GW","false","" +"NM-09685","","","561024","3632400","GW","false","" +"WL-0284","","","370166","3910547","GW","false","" +"SR-0030","","","343472","3989460","SP","true","San Pedro Ridge region. From Galline, Santa Fe NF Road 103 ~15 miles to Fr 70, about three miles walk left down into field, look for white outcrop." +"AS-058","DM-29","","444741","4042390","GW","true","" +"NM-11272","","","556445","3655560","GW","false","" +"NM-04350","","","146740","3549980","GW","false","" +"NM-05832","","","674624","3571420","GW","false","" +"NM-07945","","","310585","3611660","GW","false","" +"TO-0143","5N8E6.431","","395671","3838590","GW","true","" +"NM-20113","","","432568","3837930","GW","false","" +"NM-01717","","","196993","4078830","GW","false","" +"NM-20769","","","403812","3852820","GW","false","" +"DE-0006","","","582043","3574825","GW","false","North of filtered water building near fence and road." +"NM-08837","","","667128","3625090","GW","false","" +"QU-532","","","438420","4060096","SP","true","" +"NM-13178","","","441106","3687260","GW","false","" +"NM-01437","","","650935","3939920","GW","false","" +"QY-0091","10.32.34.434","","633920","3878880","GW","true","" +"NM-03435","","","233780","3899420","GW","false","" +"NM-14853","","","429619","3721800","GW","false","" +"NM-14074","","","546855","3697050","GW","false","" +"NM-07615","","","205387","3609240","GW","false","" +"AR-0044","D018","NMED 429","221393","4073400","GW","true","From Farmington take Hwy 516 toward Aztec. Turn right on Rd. 350 S across river. Turn right on Rd 3000 and proceed to address on left. Well is approximately 50 yards N of house among items." +"NM-13034","","","649809","3686640","GW","false","" +"NM-01775","M-002","","225724","3521040","GW","false","" +"NM-17195","","","626055","3784690","GW","false","" +"AS-003","AS-4","","447353","4041790","GW","true","" +"NM-06520","","","560646","3583430","GW","false","" +"NM-22460","","","237923","3890360","GW","false","" +"SD-0258","11N.6E.7.124","","377898","3895830","GW","true","" +"NM-04395","","","659359","3546780","GW","false","" +"NM-22701","","","238182","3893190","GW","false","" +"SO-0030","2N4E3.34","","361221","3809930","GW","true","" +"NM-23765","","","624890","3914610","GW","false","" +"NM-24340","","","476435","3934540","GW","false","" +"NM-01602","","","662279","4011150","GW","false","" +"TB-0308","","","400797","3662010","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Railroad Ave. Turn W onto Derbyshire Rd, then W onto Hurshel White Rd. Address is on corner of Derbyshire Rd and Hurshel White Rd. Well is located in backyard on W side of house." +"OG-0057","","","643846","3815436","GW","true","" +"QY-0581","5.29.17.133","","600885","3835620","GW","true","" +"NM-06785","","","676290","3589880","GW","false","" +"NM-19844","","","180979","3838510","GW","false","" +"SA-2001","","","257989","3726252","M","true","From Hwy 60, take county road 52 south past Dusy (about 30 miles). At mile 51, look for FR 478 to E. Turn E on 478, go 4 miles. Look for mailbox to N, with name? Electric gate - use button. Weather station is SW of main house." +"NM-26849","","","546183","3685603","GW","true","" +"NM-05126","","","235837","3562820","GW","false","" +"SD-0317","12N.5E.9.244","","371904","3905490","GW","true","" +"NM-00448","","","673662","3639580","GW","false","" +"NM-23509","","","372061","3907840","GW","false","" +"NM-16960","","","541149","3779810","GW","false","" +"NM-22848","","","377176","3891960","GW","false","" +"NM-01418","","","432503","3934820","GW","false","" +"NM-07554","","","570924","3604250","GW","false","" +"NM-05536","","","671421","3567400","GW","false","" +"NM-07987","","","228442","3614100","GW","false","" +"NM-25220","","","478190","3962440","GW","false","" +"SO-0127","BRN-E01C","","327331","3764066","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"PC-046","PW-074","","368262","3907314","GW","true","" +"DA-0029","20S3E15.422","","348333","3604390","GW","true","" +"TO-0340","8N7E9.142","","389092","3866740","GW","true","" +"NM-03277","","","398407","3847920","GW","false","" +"NM-16195","","","239283","3764980","GW","false","" +"NM-10815","","","545040","3648080","GW","false","" +"TB-0150","","","413719","3699796","GW","true","North - NE on road from New Brownfield well. Left at fork into arroyo to left. Around rock to north about 1/8 mi to 2 track N to WM." +"NM-02699","","","166145","3654440","GW","false","" +"QY-0942","9.28.9.111","","592855","3876290","GW","true","" +"EB-633","","","401300","3956280","GW","true","" +"QY-0373","12.32.1.422b","","637224","3906670","GW","true","About 2 ft south of well .422a" +"NM-19938","","","559337","3834670","GW","false","" +"SB-0833","","","487620","3571455","GW","false","" +"NM-14921","","","631987","3724330","GW","false","" +"TO-0354","8N8E19.112","","395329","3863820","GW","true","" +"NM-17021","","","541861","3780890","GW","false","" +"NM-22510","","","375476","3887950","GW","false","" +"NM-14415","","","540060","3703730","GW","false","" +"NM-21807","","","265425","3882910","GW","false","" +"NM-11991","","","562910","3666650","GW","false","" +"NM-01434","","","675753","3939990","GW","false","" +"NM-08007","","","675531","3612170","GW","false","" +"NM-25792","","","405569","3996630","GW","false","" +"NM-04706","","","669884","3554430","GW","false","" +"NM-27267","","","568366","3574000","GW","false","" +"NM-21268","","","346218","3869000","GW","false","" +"NM-03971","","","252156","3527580","GW","false","" +"NM-23063","","","616864","3895090","GW","false","" +"NM-13327","","","623948","3690220","GW","false","" +"NM-08383","","","148797","3622950","GW","false","" +"NM-22189","","","357252","3884740","GW","false","" +"NM-16888","","","677681","3780350","GW","false","" +"NM-25161","","","323229","3960360","GW","false","" +"MI-0067","","","557331","3910284","GW","true","Topographic situation: Plains" +"EB-268","","","395376","3966090","GW","true","~ 0.1 mi East of Buckman #1, south side of Buckman Rd." +"NM-23913","","","430517","3919060","GW","false","" +"NM-10597","","","559853","3645450","GW","false","" +"OG-0068","","","650057","3808521","GW","true","" +"NM-26670","","","576857","4074640","GW","false","" +"NM-22485","","","380459","3887640","GW","false","" +"NM-15295","","","192305","3742460","GW","false","" +"SB-0398","TWDB 4808408","","490363","3531912","GW","false","" +"NM-03123","","","577024","3810840","GW","false","" +"NM-13564","","","611353","3692830","GW","false","" +"MI-0157","","","554567","3933374","GW","true","Topographic situation: Plains" +"NM-00423","","","452749","3635150","GW","false","" +"WL-0202","","","232579","3553588","GW","true","From main intersection in Deming (Pine and Gold), go south on NM 11 for 9.1 miles. Go west on Sunshine Rd SW for 4 miles, go south on Hermanas for 4.6 miles. Meet Tony at the trees and tan workshop. From there go north on Hermanas Rd for 1.5 miles, go west on B015 (between a red building and red pipe fence) for 0.8 miles. Go south on dirt road for 0.5 miles. Well is located near little red building with the blue pipes." +"BW-0608","22S9E22.3","","404567","3582420","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TB-0016","","","417110","3669776","GW","true","Just west of Bent, turn north on Gato Mountain Rd. Look for tall pipe gate entrance. Make arrangements with Stallings to have gate open. Well is located past house, uphill, past horse barn. Look for old windmill." +"TV-176","COR-68","","440594","4025959","GW","true","Physical Address: 182 Los Cordovas Road" +"NM-08252","","","296796","3616540","GW","false","" +"NM-26847","","","546135","3684942","GW","true","" +"BW-0135","11S9.5E13.244","","411420","3692090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TC-285","CO-32","","408729","4098648","GW","true","" +"NM-24985","","","414811","3948990","GW","false","" +"EB-467","","","414102","3944226","GW","true","South side of Rodeo Road, exact well location uncertain" +"NM-14023","","","654850","3698150","GW","false","" +"NM-07813","","","652270","3609320","GW","false","" +"NM-14564","","","207779","3713440","GW","false","" +"NM-21616","","","357524","3878110","GW","false","" +"OG-0059","","","647968","3808632","GW","true","" +"NM-13235","","","559282","3688000","GW","false","" +"QY-0316","11.32.3.424","","634044","3896870","GW","true","" +"NM-27403","","","373903","3625060","GW","false","" +"DA-0148","25S3E21.312","","344725","3554690","GW","true","" +"NM-21191","","","524556","3866090","GW","false","" +"ED-0077","20S30E3.424","","598302","3607510","GW","true","" +"NM-15487","","","659234","3743760","GW","false","" +"NM-07931","","","678753","3611330","GW","false","" +"NM-17385","","","659210","3787820","GW","false","" +"NM-26146","","","648742","4025070","GW","false","" +"OG-0031","","","642982","3816247","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 2 miles on CR 17. Turn left south on CR X. Drive 2 miles to int with CR 15. Well is less than 0.1 miles west on CR 15 on south side next to old railrod car." +"ED-0090","21S25E9.331","","555804","3594990","GW","true","" +"NM-06319","","","667759","3581290","GW","false","" +"NM-02271","","","234511","3575220","GW","false","" +"NM-15343","","","329391","3740310","GW","false","" +"SM-0069","","","454116","3649582","GW","true","Well on north side of 16 Springs Canyon Rd, between Walker Canyon and Forest Rd. 607. 2.1 miles east of Walker Canyon. In fenced area, casing is painted blue; by big beige water tank. Close fence around well after measuring. Well is Forest Service well - AKA Bud's Well (Cleve)" +"NM-16974","","","639571","3781340","GW","false","" +"NM-25539","","","260469","3983150","GW","false","" +"NM-23045","","","353235","3895060","GW","false","" +"NM-25064","","","660391","3953580","GW","false","" +"NM-10190","","","283949","3641770","GW","false","" +"SA-0034","SA-34_R00","","225036","3772612","GW","true","From Datil go south on NM 12 south 10 miles. Just north of MM 64 look for County Road to the west (Green Gap Road @ Sugarloaf sign) Take county road for 1.4 miles and look for two track to north (right). Go through fence and follow two track for 1 mile past Broken Well to the top of the rise. Down through gully and back up on rise. Watch rocks in gully. Look for old corral on hill, through that gate and west to well." +"NM-01671","","","449051","4043470","GW","false","" +"NM-13917","","","544253","3695440","GW","false","" +"NM-17630","","","640110","3791550","GW","false","" +"EB-159","","","405295","3956594","GW","true","Inside locked gate; up drive, left/NW at corral; 50 yds; inside gate on right; below ground completion" +"NM-08055","","","199061","3615900","GW","false","" +"TO-0259","7N6E36.122","","384230","3851260","GW","true","" +"BW-0345","17S9E2.331","","406837","3636300","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"HS-056","TC-056","","289558","3667652","GW","true","From Austin, take Daniels St south. Turn west at alley at sign that reads ""Dave's Cloverleaf Massage and Colonics"". Well is by back door, in tan little well shed. Front of house is on Austin, just east of Hoosier." +"NM-15241","","","647659","3737250","GW","false","" +"NM-25669","","","228300","3990710","GW","false","" +"NM-17924","","","617852","3797710","GW","false","" +"NM-09936","","","198363","3640130","GW","false","" +"NM-01213","","","328058","3884690","GW","false","" +"NM-23783","","","382816","3915120","GW","false","" +"CP-0031","","","634606","3783769","GW","true","East of Portales and south of Hwy 60/84. From Portales, take NM 267 west (aka Floyd Highway) ~11-12 miles to address (1156 NM 267). Alternately, take NM 267 south from Melrose, take dog-legs east thru Floyd and south and east again to address. Well is next to driveway." +"NM-03285","","","403354","3852700","GW","false","" +"UC-0151","","","631514","4022900","GW","false","" +"NM-23698","","","373538","3912230","GW","false","" +"NM-11119","","","476884","3652310","GW","false","" +"NM-26580","","","445205","4068150","GW","false","" +"NM-03946","","","345194","3524500","GW","false","" +"NM-02284","","","328345","3574700","GW","false","" +"BC-0427","430","","379894","3886577","GW","false","" +"NM-11731","","","279099","3665570","GW","false","" +"NM-21740","","","674799","3880770","GW","false","" +"NM-23672","","","382584","3910870","GW","false","" +"SM-0017","","","429728","3642664","GW","true","Take NM130 down Cox canyon a few miles, turn right on Pierce Canyon road (can also access from Sunspot Rd). Follow to end at Baptist camp. Go to Managerโ€™s house (look for sign) and say hello. Well is just across valley in brown wooden enclosure with a green top next to small wooden shack. Well is close to SM-019" +"NM-01994","","","316076","3550330","GW","false","" +"NM-20259","","","609900","3840990","GW","false","" +"EB-019","","","400304","3935932","GW","true","From I-25 take La Cienega exit east. Take east Frontage Road to Corral Blanco and go east to address on north side of road. Long driveway goes around house. Well on northwest side of house." +"BW-0294","15S10E33.221","","408683","3648690","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-047","","","415833","3941630","GW","true","Sebastian De Vargas Grant" +"NM-10444","","","546932","3643280","GW","false","" +"NM-26052","","","311556","4017940","GW","false","" +"NM-27185","","","326273","3770099","D","true","" +"NM-20240","","","226401","3844000","GW","false","" +"NM-21251","","","346624","3869040","GW","false","" +"NM-11233","","","554037","3654710","GW","false","" +"WL-0154","","","356682","3964353","GW","true","From San Ysidro drive north on Hwy 4 for 33.3 miles. Turn right on Forest Road 10 and follow for 0.2 miles, then turn right on Hovenweep. Follow about 0.2 miles, well house visible on left off Hovenweep. Well is in well house." +"NM-16798","","","673145","3779030","GW","false","" +"NM-15797","","","663564","3750700","GW","false","" +"NM-20316","","","389758","3842040","GW","false","" +"NM-23821","","","644345","3916660","GW","false","" +"NM-09421","","","195270","3634370","GW","false","" +"TS-001a","","","439330","4066915","SP","true","East side of river, downstream from Sheep Crossing." +"NM-03191","","","667753","3827930","GW","false","" +"NM-28333","TR-01","","445845","4002300","GW","false","" +"QY-0868","8.30.13.311","","616586","3864420","GW","true","" +"EB-411","","","406530","3931790","GW","true","" +"UC-0196","","","627977","4082651","GW","false","" +"BC-0067","192","","382340","3889830","GW","true","" +"PP-049","PW-54","","433127","4003494","GW","true","" +"NM-04572","M-060","","275321","3553093","GW","false","Located southeast of Deming. Access gate from Franklin to Palo Alto Rd. Gate located at 13S, 270296 m E, 3552222 m N. Follow dirt tracks north then east. Second gate located at mile 1.7 (13S, 272715 m E, 3552647 m N). Continue east on tracks to the large holding take (mile 3.4). Well located west of holding tank and corral, under solar panels." +"NM-09128","","","287100","3628730","GW","false","" +"NM-24268","","","463208","3932360","GW","false","" +"NM-25049","","","608508","3952080","GW","false","" +"AH-105","HM-37","","437712","4042693","GW","true","" +"BC-0314","284","","379769","3873200","GW","true","" +"SV-0042","05 La Canada Pl","","380497","3900361","GW","false","Unit 1 Lot 52" +"HS-098","TC-098","","289863","3667626","GW","true","In block 42 in Hot Springs, NM" +"NM-12052","","","660789","3668730","GW","false","" +"SB-0159","TWDB 4742203","","516275","3468374","GW","false","" +"NM-21329","","","377215","3870520","GW","false","" +"DE-0286","","","663249","3634464","GW","false","" +"NM-05196","","","678294","3562280","GW","false","" +"WL-0199","","","553378","3641294","GW","true","Heading north on Hwy 285 out of Artesia, road bends to northwest. Look for North 26th Street on right side of road and take it north. Well is at the intersection of Crook Drive & N. 26th St behind well house." +"NM-04149","","","347082","3536510","GW","false","" +"NM-01980","","","238078","3551080","GW","false","" +"NM-08010","","","209754","3614850","GW","false","" +"NM-04305","","","142745","3548490","GW","false","" +"NM-04291","","","348776","3542710","GW","false","" +"NM-25946","","","435016","4005760","GW","false","" +"NM-07959","","","231220","3613600","GW","false","" +"TV-247","LR-01","","445170","4028179","GW","true","Ambrosio to sharp left at rise adjoining pair of houses" +"NM-16166","","","325747","3761860","GW","false","" +"NM-06166","","","154908","3582160","GW","false","" +"DE-0181","","","611991","3600239","GW","false","" +"SB-0841","","","490284","3544143","GW","false","" +"SB-0105","TWDB 4717904","","511534","3503434","GW","false","" +"NM-08798","","","658492","3624610","GW","false","" +"QY-0988","9.34.22.424","","653685","3873100","GW","true","" +"NM-27404","","","544666","3638870","GW","false","" +"RA-008","","","392020","4009898","GW","true","Next to propane tank." +"BW-0644","13S9E5.411","","397093","3675490","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DE-0265","","","663104","3634636","GW","false","" +"NM-23465","","","653988","3906280","GW","false","" +"NM-27189","","","326942","3764530","D","true","" +"TV-271","","","446929","4026830","GW","true","**NOT USING SITE IN INVENTORY.**" +"NM-24051","","","399892","3925510","GW","false","" +"BW-0251","14S10E31.144","","404646","3658040","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0176","HWY-W04B","","328712","3755345","GW","true","" +"NM-08028","","","607668","3611450","GW","false","" +"NM-19912","","","600400","3834780","GW","false","" +"MI-0164","","","566253","3927765","GW","true","Topographic situation: Plains" +"NM-07535","","","546988","3603830","GW","false","" +"NM-11039","","","650492","3652330","GW","false","" +"SM-4030","","","440948","3623503","PS","true","Stream flow measurement by Patrick Walsh" +"NM-19182","","","609758","3820720","GW","false","" +"NM-10602","","","648062","3646470","GW","false","" +"ED-0305","23S28E15.323","","586872","3574460","GW","true","" +"BW-0048","23S5E5.321","","362997","3578570","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21712","","","242026","3882250","GW","false","" +"TB-1070","","","417512","3668201","PS","true","Tularosa Creek at bridge/Hwy 52. Access from west side of bridge right off highway. Access from highway; turn onto little gravel road just past Round Mountain sign. Go in south of guard rail. Use little pass thru on fence and follow trail down." +"BC-0049","40","","378897","3892580","GW","true","" +"NM-05993","","","539971","3572210","GW","false","" +"NM-21423","","","345696","3872740","GW","false","" +"NM-08848","","","407438","3623740","GW","false","" +"NM-03516","","","677101","3943880","GW","false","" +"BW-0487","1S8E11.322","","401009","3788830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06391","","","573989","3581120","GW","false","" +"NM-17823","","","552101","3794930","GW","false","" +"SD-0303","11N.7E.31.434","","387769","3887990","GW","true","" +"NM-07465","","","680975","3603850","GW","false","" +"NM-15396","","","678421","3742370","GW","false","" +"QY-0628","5.29.7.143","","599659","3837410","GW","true","" +"WL-0220","","","407880","3940410","GW","false","From I-25 exit on NM-14 south for 0.6 miles, turn south (left) onto Rancho Viejo Blvd for 0.1 miles, turn left onto Dinosaur Trail for 1.8 miles, turn right (essentially straight) onto Old Dinosaur Trail for 0.8 miles, turn south (right) onto Arroyo Viejo for 0.3 miles, turn left on Paseo del Caballo for 0.1 mile, turn right on Coyote Junction for 0.1 mile, turn right on Rabbit run to address. Well in front of house." +"NM-02801","","","554479","3687050","GW","false","" +"TB-0049","","","408249","3652508","GW","true","Head east at the Alamorosa Truck Stop (between Alamogordo and Tularoasa). Turn on Mountain Meadows Road, look for #58." +"NM-15147","","","579545","3732530","GW","false","" +"NM-08700","","","674736","3623280","GW","false","" +"NM-17051","","","653764","3782730","GW","false","" +"NM-05918","","","252261","3574000","GW","false","" +"NM-10582","","","543729","3645180","GW","false","" +"NM-21907","","","357237","3881830","GW","false","" +"PC-050","PW-080","","369755","3910041","GW","true","" +"NM-13000","","","658512","3685940","GW","false","" +"NM-08757","","","675449","3624150","GW","false","" +"NM-26249","","","180142","4041240","GW","false","" +"NM-19807","","","568542","3832670","GW","false","" +"NM-26442","","","223812","4065830","GW","false","" +"AB-0217","S273","","315587","3810470","GW","true","" +"NM-28178","","","673298","3776260","GW","false","" +"NM-14455","","","621524","3706140","GW","false","" +"NM-13344","","","669929","3691500","GW","false","" +"SB-0720","TWDB 4916701","","395062","3516801","GW","false","" +"NM-23512","","","369031","3907890","GW","false","" +"NM-23604","","","369710","3909480","GW","false","" +"SM-0244","","","483373","3637853","GW","true","Take hwy 82 to Dunken Turnoff (at Penasco School house). Head south on Hwy 24, over river and in bend to left look for gate in fence. Go through gate (west side of 24), follow to houses. Newer mobile home is hooked up to well, well is located west of house about 150 ft." +"AR-0015","C003","","226741","4077060","GW","true","From Hwy 516, take Rd. 3050, turn south on Rd. 3333 towards the river to end of road. Well is currently in vault in dilapitated shed under a bunch of insulation to the east of the house. Owner in process of tearing down sheds. Will rebuild new shed for well." +"NM-03857","","","263174","3521740","GW","false","" +"SA-0487","4S10W34.241","","235757","3756690","GW","true","" +"QY-0188","11.30.14.211","","616045","3894370","GW","true","" +"NM-26758","","","397741","4090810","GW","false","" +"NM-10770","","","619782","3648270","GW","false","" +"NM-23369","","","378438","3901330","GW","false","" +"NM-03153","","","569685","3816080","GW","false","" +"NM-21261","","","346736","3869050","GW","false","" +"NM-14356","","","552771","3701550","GW","false","" +"NM-20346","","","608226","3842640","GW","false","" +"BW-0823","2.6.9.1.300","","412927","3848210","GW","true","" +"NM-12793","","","394646","3680810","GW","false","" +"NM-24856","","","407718","3946140","GW","false","" +"NM-02077","","","240574","3559846","GW","false","8.8 miles S of Pine St & NM 11 intersection in Deming on NM 11, well on east side of road in open area next to concrete block building." +"ED-0264","22S30E7.311","","600899","3586100","GW","true","" +"NM-16976","","","622775","3780980","GW","false","" +"NM-10584","","","638691","3646090","GW","false","" +"NM-16555","","","642156","3774730","GW","false","" +"NM-16308","","","319654","3768140","GW","false","" +"NM-10327","","","457169","3641630","GW","false","" +"NM-26477","","","223640","4066670","GW","false","" +"NM-22624","","","606209","3889100","GW","false","" +"TO-0322","7N10E23.141","","421294","3853600","GW","true","" +"NM-22676","","","347336","3890410","GW","false","" +"NM-05647","","","252326","3570230","GW","false","" +"NM-01733","","","213799","4094730","GW","false","" +"NM-27583","","","640522","3793130","GW","false","" +"AR-0089","NMED 214?","","238494","4086880","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 and continue on to Rd 2650. Address is on right side of road. Well is under insulation on NE corner of lot near white pump house and white gas tank. Well has no top." +"NM-08567","","","558238","3619750","GW","false","" +"NM-16140","","","328685","3761060","GW","false","" +"NM-02232","M-112","","230349","3571366","GW","false","From NM418 and Spruce intersection, go west on NM418 for 6.1 miles. Go north at Hartman Farms sign (Amado Rd) to main house. Well located around the house on the other side of the red cargo box." +"TC-340","","","452560","4092988","GW","true","" +"WS-402","","","381253","3632512","OT","true","" +"NM-06018","","","642780","3574500","GW","false","" +"NM-03458","","","624770","3905090","GW","false","" +"NM-13351","","","670237","3691600","GW","false","" +"NM-05002","M-082","","288570","3559890","GW","false","" +"NM-01440","","","169736","3945370","GW","false","" +"NM-12602","","","650706","3678800","GW","false","" +"NM-01942","","","233738","3545710","GW","false","" +"TB-0109","","","431148","3720440","GW","true","Hwy 380 Nogal to Snell (west of 37/380 intersection). One mile to gate #211 and back west to house. Well is in front yard." +"NM-10818","","","629430","3649130","GW","false","" +"NM-09273","","","283208","3630540","GW","false","" +"NM-25012","","","437542","3949700","GW","false","" +"NM-12557","","","197438","3680940","GW","false","" +"NM-16511","","","671010","3773820","GW","false","" +"NM-09835","","","213928","3638280","GW","false","" +"NM-09362","M-200","","191481","3634300","GW","false","US180 W from Silver City, turn north on Alabama Street, zero. Go thru several stop signs continue straight, becomes Cottage San Road, go 2.0 miles. Look for white shed with blue roof on right, next to road, address is 2176. Under oak tree about 20 yards east of shed, with rock on top." +"NM-25598","","","647434","3983840","GW","false","" +"TO-0102","4N9E6.444","","405331","3828850","GW","true","" +"SB-0259","TWDB 4807318","","487325","3538658","GW","false","" +"NM-24011","","","404287","3924020","GW","false","" +"NM-24620","","","414411","3941320","GW","false","" +"NM-07433","","","608472","3602220","GW","false","" +"SA-0237","","","283031","3777396","GW","true","" +"NM-14539","","","202425","3712400","GW","false","" +"NM-08682","","","640061","3622760","GW","false","" +"TC-422","","","452812","4092054","GW","true","From Hwy 522, go East on Hwy 196 ~0.25 mile, south side of road to well house. Well behind well house inside chain-link fence. Yellow concrete block house w/red trim." +"NM-13820","","","544048","3695040","GW","false","" +"DE-0062","","","540701","3591763","GW","false","" +"NM-02475","","","217397","3608300","GW","false","" +"NM-17744","","","675238","3794540","GW","false","" +"QY-0159","11.29.24.121","","607412","3892580","GW","true","" +"DE-0051","","","590065","3559039","GW","false","" +"NM-09938","","","620390","3636790","GW","false","" +"NM-21499","","","387827","3875460","GW","false","" +"NM-22013","","","381939","3882720","GW","false","" +"BW-0323","16S10E5.313","","411170","3644940","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06540","","","149458","3589660","GW","false","" +"NM-12887","","","663123","3684080","GW","false","" +"NM-24610","","","404421","3941240","GW","false","" +"SO-0223","SBB-W03A","","322556","3733134","GW","true","" +"NM-17565","","","195106","3794010","GW","false","" +"NM-19124","","","595579","3818400","GW","false","" +"AH-084","DM-40","","441681","4042351","GW","true","" +"NM-18868","","","647575","3813870","GW","false","" +"NM-21037","","","406606","3860190","GW","false","" +"NM-15817","","","174667","3754830","GW","false","" +"QY-0898","8.31.8.444","","621103","3865590","GW","true","" +"NM-19404","","","624905","3826490","GW","false","" +"NM-16087","","","624349","3758700","GW","false","" +"NM-19869","","","635434","3834990","GW","false","" +"NM-18665","","","274651","3812140","GW","false","" +"NM-03154","","","564073","3816040","GW","false","" +"NM-03850","","","118501","3525910","GW","false","" +"WL-0107","S-2016-044","","604295","3548250","GW","true","" +"NM-13308","","","614931","3689770","GW","false","" +"WL-0085","NM3523402","","151891","3736060","GW","true","Heading south on Hwy 435 through town, make left on Orchid/Plant Road, next left on Blue Owl Road. Follow dirt road to end at pumphouse. Well is west of pumphouse in enclosure." +"NM-27027","","","324604","3791700","GW","true","" +"EB-083","","","406180","3961580","GW","true","" +"EB-423","","","412739","3933335","GW","true","4 Casa del Oro Court" +"AS-055","DM-07","","446408","4041860","GW","true","" +"NM-02416","","","195536","3594420","GW","false","" +"NM-22273","","","406328","3885020","GW","false","" +"NM-18930","","","659431","3814980","GW","false","" +"TV-211","","","444378","4015730","GW","true","NOTE: There are three wells at this site: 5"" PVC in steel case (Joe Thomas well) (TV-211); PVC in steel case set in cement culvert pad (TV-220); 6-5/8"" steel casing (TV-221). Get key from Roy Cunningham for Miranda Canyon gate." +"WS-015","","","379874","3637725","GW","true","Northern Whitesands boundary" +"NM-18214","","","617222","3802840","GW","false","" +"NM-04631","","","632940","3552860","GW","false","" +"NM-05608","","","223071","3570650","GW","false","" +"NM-04972","","","242204","3560590","GW","false","" +"NM-06211","","","328700","3578630","GW","false","" +"NM-15495","","","136091","3749160","GW","false","" +"NM-13641","","","547854","3693330","GW","false","" +"NM-11717","","","612260","3663490","GW","false","" +"NM-12968","","","558170","3683750","GW","false","" +"NM-01210","","","635792","3883270","GW","false","" +"MI-0126","","","438301","3927388","GW","true","Topographic situation: " +"NM-21005","","","348356","3859810","GW","false","" +"NM-16402","","","673508","3771800","GW","false","" +"NM-08864","","","190520","3628260","GW","false","" +"DE-0036","","","641970","3552006","GW","true","From junction of Battle Axe Rd & HWY 128 (UTM zone 13, easting 649,917 northing 3,562,074), go south on Battle Axe Rd. Follow for 9.6 miles to curve (road curves from north-south to east-west). Well is inside the curve on the right (north and west sides of curve) under windmill tower." +"NM-16551","","","672419","3775290","GW","false","" +"NM-22665","","","238171","3892820","GW","false","" +"NM-05060","","","675211","3560220","GW","false","" +"BC-0040","31","","382626","3888980","GW","true","" +"NM-19024","","","542215","3815640","GW","false","" +"SA-0177","","","251473","3755596","GW","true","From Hwy 60, south on 52 at VLA. South of MM 73 turn left to NE to WM with tank and corral." +"NM-16355","","","647904","3769360","GW","false","" +"MG-032","","","297872","3779303","GW","true","" +"RA-019","","","384285","4010812","GW","true","Hose bib at base of pressure tank." +"NM-14182","","","547415","3698590","GW","false","" +"SA-0228","","","198011","3733720","GW","true","From SR12, turn left (south) on Bursum Rd, go 9.7 mi to Y, go left on CR B19 past Haugh Ranch HQ, turn left @ 7.5 mi from Y, cross gate/cattleguard @ 1.5 mi, go 0.6 mi to corral. At left corner of pen, take 2-track to NW 0.4 mi to casing in barbed wire pen near fence line." +"NM-20887","","","280846","3857800","GW","false","" +"NM-04328","","","135474","3549580","GW","false","" +"NM-16457","","","232700","3774730","GW","false","" +"NM-12908","","","560376","3682530","GW","false","" +"NM-07678","","","187469","3610770","GW","false","" +"NM-18752","","","583710","3810990","GW","false","" +"NM-01115","","","582765","3856170","GW","false","" +"NM-27389","","","673862","3631490","GW","false","" +"NM-00741","","","454519","3696980","GW","false","" +"NM-13733","","","553714","3694350","GW","false","" +"SB-0433","TWDB 4815303","","484340","3525546","GW","false","" +"NM-23758","","","366603","3914520","GW","false","" +"NM-12073","","","681409","3669400","GW","false","" +"EB-090","","","412070","3957085","GW","true","Tano Rd Assoc" +"NM-07805","","","596935","3608350","GW","false","" +"NM-02094","","","263099","3560420","GW","false","" +"NM-19446","","","649276","3827800","GW","false","" +"NM-14873","","","645868","3723050","GW","false","" +"ED-0166","22S24E31.142","","543479","3579470","GW","true","" +"ED-0209","22S27E8.333","","573486","3585220","GW","true","" +"DA-0033","21S2W6.214","","304601","3599480","GW","true","" +"NM-20213","","","564189","3839730","GW","false","" +"NM-06578","","","186088","3589190","GW","false","" +"DA-0185","22S1E33.324","","326344","3580510","GW","true","" +"NM-15854","","","676597","3751950","GW","false","" +"SB-0252","TWDB 4807309","","487585","3536656","GW","false","" +"NM-08257","","","200748","3619090","GW","false","" +"NM-14202","","","547389","3698750","GW","false","" +"BW-0073","6S10E6.113","","412693","3742220","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"OG-0021","","","637219","3824656","GW","true","" +"BC-0104","90","","384986","3872860","GW","true","" +"WL-0016","NM3524730","","405105","3829160","GW","true","Drive to Willard, NM on Highway 60. Drive to Dailes Ave. (street just east of water tower), go North on Dailes for 1/4 mile. Well is on East side of road, South of well house." +"SA-0333","","","240566","3703454","GW","true","" +"NM-19853","","","677982","3835520","GW","false","" +"NM-15346","","","264213","3741890","GW","false","" +"TO-0334","8N6E12.444","","385187","3865740","GW","true","" +"SB-0436","TWDB 4815306","","484389","3523606","GW","false","" +"NM-24697","","","406709","3943530","GW","false","" +"QY-0979","9.32.27.13","","633204","3871610","GW","true","" +"NM-04954","","","675448","3558650","GW","false","" +"NM-08414","","","230084","3620780","GW","false","" +"NM-05194","","","674078","3562140","GW","false","" +"NM-15717","","","611718","3747920","GW","false","" +"EB-382","","","404931","3939843","GW","true","South corner of fire department yard; north side of Fire Place, between PNM and Wolf Creek; under blue drum" +"SB-0260","TWDB 4807320","","487138","3536380","GW","false","" +"NM-10829","","","655135","3649290","GW","false","" +"NM-16876","","","636827","3779820","GW","false","" +"NM-20291","","","645685","3842170","GW","false","" +"NM-07864","","","664641","3610230","GW","false","" +"NM-24855","","","409151","3946120","GW","false","" +"WL-0075","","","482119","4013549","GW","false","Well in round about of driveway." +"NM-05239","","","670473","3563040","GW","false","" +"SO-0122","3N4E14.14","","362471","3817040","SP","true","" +"EB-537","","","407010","3946081","GW","true","" +"SB-0115","TWDB 4718801","","515960","3501439","GW","false","" +"NM-24614","","","207507","3945560","GW","false","" +"BC-0377","380","","","","GW","false","" +"NM-07872","","","676472","3610580","GW","false","" +"NM-03831","","","350484","3519460","GW","false","" +"NM-03147","","","603884","3814740","GW","false","" +"NM-06600","","","569701","3585090","GW","false","" +"NM-14552","","","542362","3708520","GW","false","" +"NM-12096","","","403402","3668650","GW","false","" +"NM-22108","","","346607","3884150","GW","false","" +"NM-23653","PW-310","","360915","3910720","GW","false","" +"MI-0125","","","620200","3919073","GW","true","Topographic situation: Plains" +"NM-22128","","","355060","3884190","GW","false","" +"NM-01383","","","667877","3927130","GW","false","" +"BW-0760","2.15.24.27.210","","556402","3929160","GW","true","" +"NM-14325","","","544951","3701010","GW","false","" +"AR-0093","NMED 203","","238302","4087607","GW","true","From Aztec take Hwy 550 toward Farmington. Just across bridge, turn right at light on Ruins Rd and continue on Rd 2900. Turn right on road (not well marked) just S of Rd 2633. House is down hill on left. Well is in cinderblock pumphouse through house in backyard. Home sold over summer. Don't know new owners. (1/28/16)." +"EB-680","","","417570","3932881","GW","true","" +"NM-20986","","","287514","3860330","GW","false","" +"SB-0374","TWDB 4807818","","481741","3526843","GW","false","" +"TO-0075","4N7E22","","389802","3824690","GW","true","" +"BW-0912","1.6.3.35.430","","307008","3842110","SP","true","" +"NM-05053","","","342400","3559810","GW","false","" +"NM-23383","","","294538","3903450","GW","false","" +"OG-0082","","","652839","3809574","GW","true","From int of SR 311 and US 60, west of Clovis, drive 1 mile west on US 60. Turn right north on CR R. Drive 0.7 miles to well. Well is on E side of road." +"NM-19146","","","662339","3819800","GW","false","" +"BW-0714","4.9.24.11.300","","548234","3711780","GW","true","" +"QY-1005","9.36.20.343","","668836","3872990","GW","true","" +"NM-05016","","","678367","3559600","GW","false","" +"NM-18447","","","650458","3806650","GW","false","" +"NM-11909","","","556155","3665320","GW","false","" +"NM-14900","","","648278","3723860","GW","false","" +"NM-21714","","","350075","3879860","GW","false","" +"NM-09411","","","630298","3630630","GW","false","" +"NM-21035","","","424680","3859900","GW","false","" +"NM-06769","","","580569","3588410","GW","false","" +"PC-047","PW-075","","368338","3907379","GW","true","" +"NM-02799","","","553290","3686980","GW","false","" +"NM-02743","","","559268","3660560","GW","false","" +"NM-25527","","","299791","3981580","GW","false","" +"SM-4072","","","439953","3632487","PS","true","Stream flow measurement by Patrick Walsh" +"NM-19816","","","609202","3833250","GW","false","" +"CX-0093","23N22E3.2","","537761","4012640","GW","true","" +"NM-12505","","","555425","3675350","GW","false","" +"NM-08862","","","204895","3627820","GW","false","" +"NM-25587","","","404641","3982560","GW","false","" +"TO-0021","2N9E18.333","","403643","3806210","GW","true","" +"NM-20441","","","401158","3844630","GW","false","" +"QU-039","GM-4","","442762","4065048","GW","true","From Hwy 522, go west on Rt. 378 to ""Wild Rivers"", @ ~4 mi take TP247 on left just past BLM cattleguard. Road steepens onto sharp & rocky road. Proceed straight thru all diversions along the obvious road for ~0.3 miles until coming to a 4-way intersection in saddle of mtn. peak. Take left & proceed ~0.3 miles looking for 10 ft. of steel pipe sticking out of ground. GM-4 is ~50 m north of this pipe (old well)." +"NM-07228","","","637439","3597680","GW","false","" +"NM-00114","25.18.8.242","","488976","3556770","GW","false","" +"NM-12640","","","558620","3677840","GW","false","" +"NM-09726","","","637432","3633960","GW","false","" +"TO-0514","6N10E32.2","","416995","3840920","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-08140","","","232890","3616540","GW","false","" +"NM-11708","","","279582","3665050","GW","false","" +"NM-03767","","","173786","3513700","GW","false","" +"NM-17406","","","668569","3788380","GW","false","" +"NM-14497","","","347778","3707340","GW","false","" +"NM-06677","","","601664","3586750","GW","false","" +"QU-018","CER-26","","446918","4068566","GW","true","" +"DA-0005","18S1E7.223","","324572","3626560","GW","true","" +"NM-03469","","","649138","3909220","GW","false","" +"NM-24135","","","674824","3930330","GW","false","" +"NM-08908","","","673803","3625970","GW","false","" +"NM-26388","","","554921","4056560","GW","false","" +"SO-0058","1N1W34.33","","321837","3793000","GW","true","" +"NM-19347","","","591793","3824740","GW","false","" +"NM-10726","","","166065","3652100","GW","false","" +"SV-0146","06 Calle Lomita","","377463","3900099","GW","false","" +"NM-17834","","","676590","3797430","GW","false","" +"BW-0082","8S9E9.243","","406718","3721510","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-10459","","","555787","3643570","GW","false","" +"NM-12313","","","680449","3673630","GW","false","" +"NM-12778","","","533948","3680030","GW","false","" +"NM-19543","","","165736","3833900","GW","false","" +"NM-01562","","","404203","3986080","GW","false","" +"NM-14155","","","546952","3698220","GW","false","" +"QY-0431","13.32.2.122","","644555","3917340","GW","true","" +"NM-01951","","","265761","3546220","GW","false","" +"NM-23715","","","398104","3912380","GW","false","" +"NM-10235","","","336170","3641510","GW","false","" +"QY-0191","11.30.14.221b","","616056","3894120","GW","true","" +"NM-19959","","","601133","3835280","GW","false","" +"NM-07990","","","680564","3612100","GW","false","" +"NM-08688","","","558539","3621690","GW","false","" +"NM-19214","","","263705","3823760","GW","false","" +"NM-15523","","","660638","3744360","GW","false","" +"NM-01425","","","465238","3936360","GW","false","" +"BW-0167","14S7E4.234","","378959","3666140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17086","","","665022","3783420","GW","false","" +"NM-17807","","","671839","3795740","GW","false","" +"NM-00990","","","673743","3818340","GW","false","" +"SA-0225","","","241736","3759119","GW","true","" +"NM-18199","","","605479","3802280","GW","false","" +"NM-13529","","","553883","3691820","GW","false","" +"NM-05496","","","259254","3568530","GW","false","" +"NM-08585","","","662635","3621220","GW","false","" +"AB-0251","","","499999","3983948","GW","true","" +"DE-0049","","","590046","3559078","GW","false","" +"NM-22005","","","398652","3882390","GW","false","" +"NM-13600","","","564550","3692900","GW","false","" +"NM-27993","","","352810","3879880","GW","false","" +"SD-0210","10N.6E.24.221","","386364","3883000","GW","true","" +"NM-14084","","","547138","3697140","GW","false","" +"NM-24604","","","398934","3941090","GW","false","" +"TO-0452","10N8E17.424","","399443","3883380","GW","true","" +"NM-03830","","","252610","3521310","GW","false","" +"QY-0564","5.28.19.422","","591018","3833720","GW","true","" +"NM-20537","","","614781","3847460","GW","false","" +"NM-24491","","","655462","3939250","GW","false","" +"NM-06421","","","332692","3582790","GW","false","" +"NM-06511","","","672427","3585060","GW","false","" +"NM-18110","","","675632","3802160","GW","false","" +"NM-24203","","","413629","3930730","GW","false","" +"NM-20095","","","533514","3837560","GW","false","" +"PP-062","PW-67","","440266","4004553","GW","true","" +"AR-0180","E015","","225153","4076710","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Turn left onto Rd 2755, then right onto Rd 2645. Proceed to address at end of Rd near river." +"NM-26546","","","663353","4067070","GW","false","" +"NM-18871","","","625461","3813650","GW","false","" +"NM-12488","","","554728","3674950","GW","false","" +"NM-13340","","","550277","3689580","GW","false","" +"SD-0118","10N.4E.25.431","","365933","3881320","GW","true","" +"BW-0865","2.1.32.20.111","","627387","3796440","GW","true","" +"TO-0197","5N13E28.133","","447714","3832470","GW","true","" +"TB-0205","","","419510","3730312","GW","true","SNL called this well House well T-1758-S. From Carrizozo take Hwy 54 north to HQ entrance just south of Mile marker 128. Go west 1.5 mi to HQ. Power pole on N side before barn/gate. South side of road look for pump house - well head is inside." +"NM-23669","","","379200","3910890","GW","false","" +"NM-05329","","","668404","3564570","GW","false","" +"NM-20454","","","609037","3845110","GW","false","" +"NM-16924","","","250305","3782570","GW","false","" +"NM-18367","","","657118","3806040","GW","false","" +"NM-19600","","","603920","3829710","GW","false","" +"AB-0257","","","499999","3983948","GW","true","dev test again" +"NM-09000","","","555866","3624970","GW","false","" +"QU-052","","","446790","4065206","GW","true","Young ranch is ~1 mile north of town offices on Hwy. 522. On the left you will see a cluster of houses; a blue house, a brick house, a quonset hut, and a metal gate that says ""Young""." +"BW-0893","4.10.8.18.131","","393157","3700660","GW","true","" +"NM-13677","","","476180","3693580","GW","false","" +"NM-20825","","","623715","3854350","GW","false","" +"MI-0314","","","473115","3933317","SP","true","Topographic situation: Valley" +"NM-28357","148869","","177583","3682597","SP","false","Gila National Forest" +"SM-0173","","","466939","3648254","GW","true","Site visit by Jeremiah Morse in June 2007. 2.2 mi north on Elk Canyon Rd., over cattlegaurd, right on 2 track, follow to well. Well is small shed with power pole." +"NM-22242","","","381969","3885060","GW","false","" +"NM-04204","","","246289","3541380","GW","false","" +"SA-1007","","","258564","3717892","SP","true","North of wetlands about 1/4 mile N of entry to Box, on east (north?) side of drainage. Follow flowing stream to fenced area and head of spring." +"MI-0003","","","471333","3881197","GW","true","Topographic situation: Valley" +"NM-14792","","","547418","3719040","GW","false","" +"NM-07891","","","662732","3610560","GW","false","" +"NM-06861","","","220486","3593630","GW","false","" +"NM-13487","","","552517","3691230","GW","false","" +"NM-24748","","","413736","3944380","GW","false","" +"NM-11344","","","405313","3657300","GW","false","" +"NM-25617","","","657901","3984570","GW","false","" +"WL-0204","","","462966","3963415","GW","true","From Las Vegas, drive north on Hwy 518 ~12.5 miles, turn left on Hwy 94, go 8.7 mi to jxn w/Hwy 105, get on Hwy 105 by driving straight (Hwy 94 is a right turn). Follow Hwy 105 ~2.8 mi to entrance of Pendaries Village on the south (left). Follow Pendaries Village Lane, which makes several turns, ~0.6 miles to 4-way intersection w/Cumbre & Patron, go right to stay on Pendaries Village Lane, go ~1 mi, just past the kiosk/guard shack (never occupied) turn left onto CR-A34, go ~0.6 miles (it curves quite a bit) to Forest Road, turn left (east) for less than 0.1 mile, turn right onto Golf Drive for 0.3 miles to 19th Hole Restaurant. Well 6 is due east of restaurant ~100 ft from Golf Drive." +"NM-03331","S174","","346256","3877330","GW","false","" +"NM-26130","","","446408","4022480","GW","false","" +"NM-14282","","","628819","3701090","GW","false","" +"ED-0361","26S24E9.331","","546277","3546580","GW","true","" +"NM-26138","","","316474","4025080","GW","false","" +"NM-03491","","","629145","3923910","GW","false","" +"NM-25763","","","606576","3995320","GW","false","" +"DE-0326","","","674288","3589947","GW","false","" +"NM-20430","","","678794","3846200","GW","false","" +"NM-19013","","","672902","3817000","GW","false","" +"NM-00725","","","431434","3696070","GW","false","" +"NM-28298","SC-03","","441648","4050132","GW","false","" +"NM-04930","","","675638","3558260","GW","false","" +"NM-26554","","","590123","4066750","GW","false","" +"NM-12178","","","677535","3671450","GW","false","" +"NM-15482","","","670574","3743890","GW","false","" +"NM-19573","","","672162","3830760","GW","false","" +"NM-01974","","","265425","3549860","GW","false","" +"NM-23923","","","188150","3924520","GW","false","" +"NM-04402","","","669191","3547240","GW","false","" +"NM-21688","","","670204","3879820","GW","false","" +"NM-22809","","","380130","3891520","GW","false","" +"NM-21142","","","677550","3865750","GW","false","" +"NM-07136","","","357429","3596100","GW","false","" +"BC-0042","33","","381561","3889410","GW","true","" +"BW-0735","4.25.26.24.140","","570897","3553680","GW","true","" +"NM-19530","","","635546","3829100","GW","false","" +"AR-0206","A002","NMED 20","239874","4088770","GW","true","From Aztec, Take Hwy 550 toward Cedar Hill. Turn left onto Rd 2930 then right onto Rd 2929. Follow around loop to address on outside of loop." +"NM-14650","","","577335","3713080","GW","false","" +"BW-0913","2.2.4.12.210","","364450","3809390","SP","true","" +"BW-0939","USBR WW02","","408475","3638739","GW","true","Site visited by Shari Kelley (WW01 and WW02), but wells not inventoried." +"NM-25459","","","408213","3974480","GW","false","" +"NM-05230","","","243120","3564640","GW","false","" +"PC-118","PW-203","","369171","3911661","GW","true","" +"EB-589","","","407442","3946750","GW","true","East/north of Aguq Fria Park, in wood fenced area with two wells. Take road that goes around Agua Fria park. Call for access." +"QY-0552","5.27.15.424","","586035","3835090","GW","true","" +"NM-10241","","","561078","3640430","GW","false","" +"AB-0103","S118","","351073","3801700","GW","true","" +"NM-05140","","","385425","3560340","GW","false","" +"QY-0445","13.35.27.343","","662247","3909740","GW","true","" +"SA-0465","6S13W20.122b","","203253","3742460","GW","true","" +"NM-13214","","","556827","3687770","GW","false","" +"TO-0240","6N9E33.333","","407823","3840000","GW","true","" +"QY-0054","10.30.34.444","","614949","3878560","GW","true","" +"NM-03859","","","349496","3520240","GW","false","" +"AR-0535","","","238647","4086817","D","true","" +"NM-03049","","","624083","3793380","GW","false","" +"NM-00943","","","662977","3806840","GW","false","" +"NM-19487","","","625189","3828090","GW","false","" +"NM-23401","","","467505","3901880","GW","false","" +"NM-08768","","","408288","3622810","GW","false","" +"NM-18799","","","598273","3812060","GW","false","" +"NM-16145","","","622402","3760370","GW","false","" +"NM-28161","","","182725","3976960","GW","false","" +"EB-407","","","405069","3941697","GW","true","In burned foundation of old house, open field, north of Arroyo de los Chamisos and behind #27 Ridgeline Rd. From 599, take Hwy 14 north, left on Herrera @ Walmart. Go west on Herrera and around round-about just past Nina Otero Community School so heading east again. Just east of round-about take gravel round south (over sidewalk) at school speed limit sign. ~0.25 mi to two-track to right. Follow to well north of road." +"NM-12612","","","555387","3677390","GW","false","" +"NM-12651","","","433286","3678130","GW","false","" +"NM-20857","","","582703","3854940","GW","false","" +"NM-24254","","","476957","3931920","GW","false","" +"BW-0805","4.4.2.23.344","","342189","3756980","GW","true","" +"NM-05489","","","262603","3568350","GW","false","" +"NM-01159","","","459317","3867750","GW","false","" +"SO-0262","NRCS 2 (Deep)","","328478","3764002","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Wells on west side of road. SO-0262 well A is to the north of SO-0262 well B" +"NM-13231","","","555457","3687860","GW","false","" +"SA-0033","SA-33_R00","","231320","3770339","GW","true","From Datil take 12 south for 7 miles, turn E onto county road. Head S 2.3 miles, turn sharp NW (hard left) onto 2 track. Go 0.8 mi to well and tank." +"NM-20469","","","625207","3845530","GW","false","" +"NM-26357","","","672447","4052940","GW","false","" +"QY-0041","10.30.10.121","","613848","3886220","GW","true","" +"NM-23766","","","643237","3914910","GW","false","" +"NM-12260","","","557053","3671330","GW","false","" +"UC-0075","","","619020","4071522","GW","true","From major intersection in Clayton (First St. and Main St.) go north-west on 1st street toward US 64 turn right on NM-370. Proceed approx. 35.8 miles to intersection with NM 370 and Weatherly Road, approx 2.3 miles south of Guy NM. +35.8 / 0.0 mi. From the corner of NM 370 and Weatherly Rd. go West 18.3 miles to Waterhole Rd. Turn right / North on Waterhole for 3 miles. This intersection is 10.6 miles east from 64/87 on Weatherly Road. +21.3 mi. Road turns West for 2 miles and then North for 1 mile. +24.3 mi. Just before the road turns west again go through the west side fence and go south southwest0.25 miles to the well near a large dirt berm" +"NM-27828","","","616000","3835120","GW","false","" +"NM-17647","","","325304","3791940","GW","false","" +"NM-13748","","","547176","3694620","GW","false","" +"NM-02345","","","577118","3578740","GW","false","" +"NM-04151","","","231600","3539320","GW","false","" +"NM-24305","","","628595","3934380","GW","false","" +"NM-03519","","","413838","3944470","GW","false","" +"BW-0812","4.21.33.2.422a","","637446","3597470","GW","true","" +"NM-11256","","","657131","3656010","GW","false","" +"NM-19413","","","575524","3825830","GW","false","" +"BW-0619","7S6E9.143","","376682","3732750","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TV-160","","","445094","4022051","GW","true","From Rt. 68, take Rt. 382 south to end of pavement at Lebya & Vista del Valle. Stay on Vista del Valle toward north; middle fork around curve to #21 to north. Well located SE of house by woodpile." +"NM-15340","","","622021","3740030","GW","false","" +"NM-17803","","","673425","3795740","GW","false","" +"NM-23184","","","234706","3900780","GW","false","" +"NM-24595","","","329658","3941920","GW","false","" +"NM-09812","","","559792","3633990","GW","false","" +"NM-01392","","","438895","3928740","GW","false","" +"NM-05669","","","294635","3569410","GW","false","" +"NM-03133","","","665873","3813320","GW","false","" +"NM-08849","","","229237","3627000","GW","false","" +"NM-26170","","","320598","4027900","GW","false","" +"BC-0189","169","","379215","3873590","GW","true","" +"QY-1014","9.37.7.142","","676875","3876950","GW","true","" +"TB-0172","","","417650","3721966","GW","true","Hwy 54 between mile 122-123 (almost 123), on west side. Prior to old service station in beige stucco building on driveway." +"NM-23844","","","649732","3917520","GW","false","" +"NM-15767","","","662029","3750150","GW","false","" +"PC-130","PW-217","","369012","3911970","GW","true","" +"NM-20399","","","673963","3844690","GW","false","" +"NM-23374","","","382311","3901570","GW","false","" +"NM-17941","","","580459","3797280","GW","false","" +"NM-00562","","","677515","3658840","GW","false","" +"NM-16005","","","184275","3760520","GW","false","" +"SV-0091","20 Punta Linda","","378987","3900837","GW","false","Unit 3 Lot 159" +"NM-09577","","","225076","3634820","GW","false","" +"SM-0166","","","487257","3617285","GW","true","Site visit by Jeremiah Morse in June 2007" +"NM-08106","","","641158","3613350","GW","false","" +"TB-0199","","","406653","3699724","GW","true","From HQ southwest to main road. Look for two track going south before cement water crossing or from Hwy. 380 in Oscuro east on Grand Avenue through Hefker Vega gate across cement water crossing. Go south through locked gate and continue south to past windmill on west side of road and follow road to east. Stay on main road to south at first Y in sight of Twin Windmill, left at fork and south down through the canyon to the windmill. Rough road through draw to WM (E). Exit through arroyo going west, through pipe (locked) gate past two more windmills through gate to south and stay west to highway at Mile Marker 103." +"NM-11486","","","565161","3659400","GW","false","" +"NM-25545","","","304094","3982310","GW","false","" +"NM-11929","","","678055","3667120","GW","false","" +"NM-25416","","","374125","3973300","GW","false","" +"CX-0055","25N24E5.3","","552545","4031540","GW","true","" +"NM-03379","","","651431","3886940","GW","false","" +"NM-06595","","","225391","3588470","GW","false","" +"NM-04988","","","648140","3558710","GW","false","" +"HS-006","TC-006","","285743","3666878","GW","true","Ridge Road, Williamsburg, west of intersection of central and ridge on ridge. On the dirt road in a small barbed wire fence enclosure. Adjacent to steel shack on the east side" +"NM-21210","","","577773","3867070","GW","false","" +"NM-09964","","","661821","3637540","GW","false","" +"NM-00386","","","410143","3629320","GW","false","" +"NM-23439","","","241302","3907470","GW","false","" +"NM-08181","","","305138","3615300","GW","false","" +"SB-0543","TWDB 4853801","","457898","3445417","GW","false","" +"SB-0879","Mayer 40","","463957","3584709","GW","false","" +"NM-16801","","","236421","3781160","GW","false","" +"NM-08857","","","190597","3628190","GW","false","" +"NM-26587","","","602300","4068930","GW","false","" +"SV-0065","08 Ojo Chimal","","380164","3901234","GW","false","Unit 3 Lot 150" +"NM-06747","","","303645","3589660","GW","false","" +"NM-07721","","","228779","3610210","GW","false","" +"EB-210","SF-2","","405809","3922492","GW","true","Galisteo Rd to end of pavement; large WM w/ 2 storage tanks ~200 ft south of rd" +"NM-01587","","","558624","3998620","GW","false","" +"NM-07667","","","555921","3605940","GW","false","" +"NM-01419","","","495567","3934590","GW","false","" +"BC-0145","128","","357642","3895990","GW","true","" +"SA-0450","5S13W27.420a","","206131","3749190","GW","true","" +"NM-06170","","","671556","3577900","GW","false","" +"NM-09193","","","674530","3629060","GW","false","" +"NM-00602","","","401670","3663710","GW","false","" +"DE-0288","","","663258","3634407","GW","false","" +"NM-14787","","","443077","3718970","GW","false","" +"NM-05436","","","224090","3568620","GW","false","" +"TS-010","","","438033","4063504","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"MB-0005","","","242236","3561406","GW","false","From int of Gold and Pine st in Deming go south on NM 11,7.6 miles. Left on Durango road, go 1 mile to Simmons house" +"NM-03890","","","232887","3524150","GW","false","" +"ED-0087","21S24E20.44","","545692","3591470","GW","true","" +"NM-12225","","","558068","3670560","GW","false","" +"NM-01522","","","606416","3967160","GW","false","" +"NM-01355","","","212914","3921050","GW","false","" +"NM-08871","","","615726","3624410","GW","false","" +"NM-01891","","","348236","3536430","GW","false","" +"NM-21967","","","368330","3882260","GW","false","" +"NM-21395","","","345909","3872540","GW","false","" +"NM-08777","","","407300","3622970","GW","false","" +"NM-27441","","","595427","3690790","GW","false","" +"NM-27454","","","147214","3701920","GW","false","" +"NM-15747","","","326264","3749460","GW","false","" +"NM-28432","S-2017-013","","608123","3574646","GW","true","" +"NM-15105","","","624934","3731690","GW","false","" +"EB-249","","","415906","3948418","GW","true","635-1/2 West Garcia" +"QY-0548","18.34.15.442","","653121","3961450","GW","true","" +"NM-17889","","","655130","3797670","GW","false","" +"NM-18685","","","668965","3811780","GW","false","" +"TB-0194","","","411513","3706535","GW","true"," Canyon Road south through locked gate (Cathie has key) south to fork and follow road west along fence to first windmill on north side of road. Continue past Harkey Windmill on road west and then north to Jim Ham Windmill. Stay on road south west past pond and West Windmill, stay south, left at fork past Nagel Windmill to northeast (watch the mudhole!) along fence down canyon into arroyo. Stay east through two gates past windmill on left. From McClain Windmill east, stay left (North) at fork, through arroyo to silver tank. Go through gate to north and bear southeast and continue south, right fork to west at house and south through gate, past Hogback Windmill. Bear right (West) at fork to gate going south at water tank. Go SW around field towards HQ and look for fork before gate to HQ that goes SW to white tank to turbine well by water tank on northeast side. Road circles back to road to HQ." +"NM-05651","","","221221","3571040","GW","false","" +"NM-00907","","","152821","3797630","GW","false","" +"DA-0134","26S1W16.33","","315451","3546690","GW","true","" +"NM-24910","","","408587","3947540","GW","false","" +"WL-0259","","","375033","3883226","GW","true","From the junction of HWYs 333 and North 14 in Tijeras, drive east on HWY 333 for 0.1 mile and turn south (right) on Primera Aqua Rd. Drive 0.15 mile and turn east (left) on Los Vallecitos Rd. Drive east on Vallecitos for 0.35 miles, then south (right) on Calle Conejos. Drive on Calle Conejos for 0.1 mile, driveway on eastern (left) side of road is 28 Calle Conejos. Well located behind home." +"NM-05777","","","235844","3572130","GW","false","" +"NM-27108","CAR-08","","426921","4019140","GW","false","" +"NM-17685","","","325012","3792750","GW","false","" +"NM-05260","","","658969","3563280","GW","false","" +"SB-0078","TWDB 4717307","","509341","3511036","GW","false","" +"NM-17303","","","625960","3786020","GW","false","" +"NM-00969","","","667284","3814980","GW","false","" +"NM-11614","","","631176","3662280","GW","false","" +"NM-25716","","","405932","3990930","GW","false","" +"NM-26293","","","152194","4047750","GW","false","" +"NM-20841","","","563123","3854260","GW","false","" +"NM-25590","","","416263","3982720","GW","false","" +"SM-1022","","","423236","3651989","SP","true","Along fenceline near Maruche Lake" +"NM-16301","","","575389","3766530","GW","false","" +"NM-21272","","","346322","3869020","GW","false","" +"NM-19060","","","487656","3816320","GW","false","" +"NM-07815","","","649559","3609310","GW","false","" +"NM-17861","","","615872","3796580","GW","false","" +"NM-04247","","","346204","3540990","GW","false","" +"NM-16794","","","548023","3777470","GW","false","" +"NM-07720","","","228962","3610200","GW","false","" +"NM-09379","","","558311","3629520","GW","false","" +"SM-0153","","","430114","3642574","GW","true","Take NM130 down Cox canyon a few miles, turn right on Pierce Canyon road (can also access from Sunspot Rd). Follow to end at Baptist camp. Go to Managerโ€™s house (look for sign) and say hello. Well is under doghouse structure, by well house, in front of building called SPRUCE CABIN." +"NM-01676","","","672515","4050590","GW","false","" +"BC-0428","431","","379897","3886583","GW","false","" +"NM-10561","","","556194","3644990","GW","false","" +"HS-061","TC-061","","289996","3667633","GW","true","Austin Rd, south on Mims, east on Dead End Alley. This well is about 20 south of TC-038, near driveway in open lot on SOUTH side of Dead End Alley. White PVC stick up." +"NM-23995","","","403796","3922910","GW","false","" +"NM-00745","","","458308","3696710","GW","false","" +"BW-0172","14S9E11.422","","402265","3664120","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0090","1S2E29.34","","337598","3784550","GW","true","" +"BW-0086","8S9E34.333","","407163","3714320","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"AR-0061","C013","","233148","4081590","GW","true","From Aztec take Hwy 516 west toward Farmington. Just across river, turn right on Ruins Rd (Rd 2900). Rd 2900 turns right and travels thru Natl. Monument along river. Proceed to address on right. Well house is located in arroyo bottom in mule pen shed." +"NM-21063","","","646157","3862080","GW","false","" +"NM-00782","","","464416","3705920","GW","false","" +"NM-03892","","","142834","3526920","GW","false","" +"NM-27161","PS-007","","372856","3909448","SP","true","" +"NM-18149","","","607072","3801490","GW","false","" +"NM-15729","","","645831","3749060","GW","false","" +"EB-229","","","412330","3943457","GW","true","southbound lane of I-25, 0.9 mi from St. Francis on-ramp (just past asphalt change and before powerline) up shoulder bank ~30 ft under plywood cover" +"NM-13427","","","486976","3690420","GW","false","" +"NM-14920","","","645899","3724410","GW","false","" +"NM-10462","","","614995","3644670","GW","false","" +"NM-24501","","","404644","3938620","GW","false","" +"WL-0226","","","250793","3571385","GW","true","From McSherry Farm HQ, take dirt road in SW corner, past trees and turn left, cross Mimbres River to open ag fields. Continue past first field, turn right, well in open to the left." +"NM-03556","","","619965","3972780","GW","false","" +"NM-13569","","","611353","3692870","GW","false","" +"SM-1064","","","431843","3637259","SP","true","" +"NM-18545","","","368133","3808030","GW","false","" +"NM-23426","","","659930","3904660","GW","false","" +"EB-315","","","400028","3937110","GW","true","NE section of museum property between 2 houses on right/east side of dirt track" +"NM-10784","","","543251","3647610","GW","false","" +"NM-21308","","","343983","3870440","GW","false","" +"SM-0061","","","445985","3650473","GW","true","16 Springs Canyon turn northwest on Poison Springs Road. Home owner can open gate or can go over bridge over fence at north end of fence. Well is outside of shed, on east side of shed." +"PC-001","PW-010","","368487","3907077","GW","true","" +"NM-04630","","","676901","3553500","GW","false","" +"SB-0465","TWDB 4824202","","494105","3510110","GW","false","" +"NM-23946","","","397766","3920360","GW","false","" +"NM-03977","","","255653","3527530","GW","false","" +"TC-254","CO-02","","415459","4102046","GW","true","" +"SB-0177","TWDB 4749702","","502251","3443579","GW","false","" +"NM-13579","","","550313","3692540","GW","false","" +"SA-0417","4S13W20.330","","202087","3760240","GW","true","" +"NM-24367","","","464932","3935220","GW","false","" +"NM-06788","","","609007","3588980","GW","false","" +"NM-18682","","","478995","3809620","GW","false","" +"AR-1000","","","324246","3771377","OT","true","" +"NM-02992","","","676356","3778600","GW","false","" +"BW-0709","2.10.21.32.230","","524025","3878180","GW","true","" +"TV-265","TAL-24","","446695","4020868","GW","true","Taking SR518 south towards US Hill, observe a power station on your right. Make a right turn at green gate after power station. Proceed downhill across the river. Well is in a vault on the left, adjacent to green house." +"NM-22391","","","374977","3886630","GW","false","" +"AB-0084","S096","","361105","3878580","GW","true","" +"SB-0733","TWDB 4923509","","388559","3506553","GW","false","" +"NM-15624","","","663710","3746700","GW","false","" +"NM-21466","","","416455","3873830","GW","false","" +"NM-13992","","","545543","3695870","GW","false","" +"NM-18542","","","169406","3812940","GW","false","" +"NM-11391","","","673891","3659250","GW","false","" +"NM-08617","","","566486","3620570","GW","false","" +"NM-27151","PS-010","","373409","3913608","SP","true","" +"NM-23040","","","361656","3894810","GW","false","" +"NM-09844","","","198429","3638870","GW","false","" +"NM-13746","","","544387","3694510","GW","false","" +"CX-0149","65","","517276","4030320","GW","true","5 miles north of Miami" +"QU-102","","","446336","4063507","GW","true","Going north on Hwy 522 @ mile marker 21, make a left at Ortega's Gravel Pit. Will see Chevron solar panels off to left. Follow road past cut in hillside to green gate (Chevron gate, not locked). Thru gate & follow road in U curve thru gate to next pasture. Follow fenceline to NE corner of field (west of cell phone tower) and well casing. Pasture might be mushy in wet weather!" +"UC-0175","","","620565","4075311","GW","false","" +"NM-12939","","","556985","3683030","GW","false","" +"NM-23268","","","289694","3900690","GW","false","" +"NM-22354","","","346085","3886710","GW","false","" +"BW-0541","19S5E5.1","","363321","3617700","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14519","","","470460","3707300","GW","false","" +"NM-12996","","","550951","3684230","GW","false","" +"NM-19654","","","611297","3830630","GW","false","" +"NM-19538","","","537574","3827850","GW","false","" +"NM-22774","","","402314","3890760","GW","false","" +"NM-25357","","","414065","3970440","GW","false","" +"NM-05367","","","234353","3567240","GW","false","" +"NM-19068","","","472736","3816510","GW","false","" +"NM-28019","","","357355","3881530","GW","false","" +"NM-03993","","","257748","3528250","GW","false","" +"NM-19995","","","395514","3835850","GW","false","" +"TC-345","","","452772","4092985","GW","true","" +"NM-11349","","","403914","3657400","GW","false","" +"NM-01630","","","299813","4028320","GW","false","" +"NM-07726","","","536157","3606680","GW","false","" +"TB-0141","","","411403","3623795","GW","true","South Hwy 54, Turn east on Oliver Lee Rd., left on Taylor Ranch Road. Well is south of mfg homes, by old barn and power pole." +"NM-27406","","","609354","3640420","GW","false","" +"NM-12974","","","674333","3685320","GW","false","" +"NM-04483","","","344280","3549090","GW","false","" +"TB-0104","","","430939","3710057","GW","true","From Nogal on Hwy 37 go west on Dry Gulch Road thru locked gate (get combo from Omar) and stay on main road thru other gate (several miles), go past the cabin and up the hill to the road to the left heading west. Watch for spring on left and take next two track on left down hill to open case. (If you miss it look to the south by the boilers for open casing down in the canyon.)" +"NM-09538","","","217678","3634690","GW","false","" +"QY-0366","12.30.34.23","","614273","3898680","GW","true","" +"EB-559","","","408940","3945353","GW","true","" +"TC-222","WG-25","","412989","4088493","GW","true","" +"NM-28154","","","394070","3856350","GW","false","" +"NM-18690","","","586677","3810280","GW","false","" +"NM-22292","","","647370","3885950","GW","false","" +"MB-2001","","","220521","3609091","M","false","" +"NM-09394","","","451526","3629580","GW","false","" +"EB-358","","","409367","3939823","GW","true","Off SE corner of Richards Ave and Avenida del Sur; DEEP PIEZOMETER" +"NM-00620","","","671294","3671220","GW","false","" +"NM-23107","","","350807","3896450","GW","false","" +"EB-331","","","398988","3936088","GW","true","Lot 75: Frontage Rd to Cam Lagunitas, R at Rito Guicu, to Calle Capulin, 2nd lot/house from end on Left. Entry gate code: #4110" +"NM-10357","","","399040","3642480","GW","false","" +"NM-18189","","","262088","3804400","GW","false","" +"NM-24714","","","407117","3943980","GW","false","" +"NM-26835","","","548532","3685877","GW","true","" +"NM-18852","","","575275","3812520","GW","false","" +"NM-26727","","","145228","4091280","GW","false","" +"BW-0266","15S10E5.414","","406665","3655990","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11784","","","669871","3665120","GW","false","" +"NM-23046","","","181555","3899480","GW","false","" +"AR-0105","C001","NMED7a/b","240605","4088952","GW","true","On Hwy 550 between Aztec and Cedar Hill. Mailbox with number on highway. Follow driveway. Well is in shed between highway and house." +"NM-05668","","","295053","3569400","GW","false","" +"BW-0897","4.16.25.11.133","","550256","3644660","GW","true","" +"NM-15054","","","193475","3733930","GW","false","" +"AH-074","AH-37","","440816","4041841","GW","true","" +"NM-25505","","","403265","3978170","GW","false","" +"NM-16881","","","307370","3780580","GW","false","" +"NM-04314","","","597933","3543140","GW","false","" +"NM-21121","","","576434","3863360","GW","false","" +"NM-25101","","","304333","3956840","GW","false","" +"SM-1008","","","438147","3644969","SP","true","Hwy 82 to Sullivan Canyon Rd, turn south and follow to end of road. At red gate, hop over and get key from backside of tree that has ""howdy"" sign on it. Go thru gate across meadow, towards bermed pond (turn left away from house). Spring is near USFS fenceline, in vegetated area." +"NM-17864","","","628118","3796710","GW","false","" +"NM-21057","","","658487","3862690","GW","false","" +"NM-20461","","","569367","3844850","GW","false","" +"NM-22301","","","345797","3886130","GW","false","" +"NM-13464","","","404075","3692200","GW","false","" +"EM-9010","","","194279","3882710","M","true","On top of cliff in a soil-filled depression" +"NM-24565","","","398092","3940080","GW","false","" +"SB-0210","TWDB 4806605","","472986","3534467","GW","false","" +"NM-21927","","","346590","3882110","GW","false","" +"NM-07629","","","526151","3605240","GW","false","" +"NM-16202","","","676273","3763840","GW","false","" +"NM-10950","","","627047","3650740","GW","false","" +"NM-26073","","","619603","4019340","GW","false","" +"QY-0816","7.32.20.222","","630924","3854140","GW","true","" +"NM-12639","","","580644","3677990","GW","false","" +"NM-13042","","","628296","3686020","GW","false","" +"NM-26612","","","194017","4075750","GW","false","" +"NM-04850","","","674660","3557220","GW","false","" +"SD-0148","10N.5E.11.433","","374843","3885120","GW","true","" +"NM-01701","","","589196","4066890","GW","false","" +"NM-20863","","","626570","3855530","GW","false","" +"NM-20362","","","617304","3842960","GW","false","" +"BC-0385","388","","349527","3875889","GW","false","" +"NM-14460","","","619923","3706240","GW","false","" +"NM-24655","","","411829","3942300","GW","false","" +"NM-14032","","","543060","3696600","GW","false","" +"TC-399","","","445396","4067934","GW","true","" +"NM-11266","","","558054","3655470","GW","false","" +"SD-0041","7N.7E.34.144","","390693","3850640","GW","true","" +"NM-22246","","","403136","3884840","GW","false","" +"NM-09250","","","192375","3632580","GW","false","" +"NM-27886","","","566334","3817350","GW","false","" +"NM-09987","","","653266","3637620","GW","false","" +"NM-02074","","","236461","3559570","GW","false","" +"NM-09870","","","359580","3635600","GW","false","" +"NM-13950","","","633507","3696440","GW","false","" +"NM-25889","","","174312","4008110","GW","false","" +"NM-01287","","","467754","3901890","GW","false","" +"SO-0218","SBB-E03B","","322994","3732623","GW","true","" +"NM-02588","","","407745","3626010","GW","false","" +"NM-03778","","","161433","3521530","GW","false","" +"NM-02734","","","403203","3658980","GW","false","" +"WL-0301","","","348480","3792146","GW","false","Will be escorted to well. Well is ~0.4 miles south of road." +"BC-0096","191","","377198","3892600","GW","true","" +"UC-0112","","","670355","4031808","GW","false","From NESWCD database, not visited by NMBGMR" +"DA-0191","23S2E8.443","","334872","3576770","GW","true","" +"NM-04882","","","267883","3558650","GW","false","" +"NM-15001","","","403990","3727690","GW","false","" +"NM-04984","","","349275","3558720","GW","false","" +"NM-28235","","","194739","4076180","GW","false","" +"NM-06252","","","330548","3579680","GW","false","" +"NM-13220","","","555741","3687800","GW","false","" +"NM-18667","","","650693","3811160","GW","false","" +"SA-0196","","","268649","3701845","GW","true","Canyon subject to flooding in summer, be sure to call ahead and watch for storms even if they are not in canyon!! Approximately 2.9 miles from cattle guard north of Monticello just before the cattle guard to north look for turbine well with generator on the west side of the road." +"NM-24789","","","409819","3945070","GW","false","" +"NM-05867","","","251482","3573180","GW","false","" +"NM-16180","","","562578","3760960","GW","false","" +"BW-0482","15S5E19.134","","355955","3651550","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QU-136","MMW-44B","","452196","4060295","GW","true","" +"NM-05093","","","264261","3561910","GW","false","" +"NM-19380","","","198904","3829770","GW","false","" +"NM-26467","","","232523","4066300","GW","false","" +"SD-0010","6N.7E.9.424","","389880","3846960","GW","true","" +"NM-05974","","","647201","3572740","GW","false","" +"NM-04321","","","262021","3545720","GW","false","" +"NM-13694","","","549454","3693860","GW","false","" +"AB-0170","SBA-W1","","353507","3886800","GW","true","" +"NM-25243","","","304835","3965920","GW","false","" +"SB-0915","","","416937","3544004","GW","true","From Hwy 62 (aka Hwy 180, road runs east/west south of Dell City), go N on Hueco Ranch Rd (which turns into Loma Linda Rd and then F002) for 14.75 mi to well on east side of road just past Cambalachie Camp bunkhouse and just north of tanks." +"SM-1012","","","436749","3629299","SP","true","Access Hay Canyon by Prestridge Hill Road or Agua Chiquita." +"PC-103","PW-181","","368778","3908259","GW","true","" +"NM-07595","","","676915","3606220","GW","false","" +"NM-15278","","","679788","3739470","GW","false","" +"NM-27294","","","364711","3582370","GW","false","" +"NM-06712","","","672004","3588420","GW","false","" +"NM-15910","","","334947","3753590","GW","false","" +"NM-16847","","","151722","3784560","GW","false","" +"SO-0078","3N2W22.234","","313334","3816220","GW","true","" +"NM-18770","","","591771","3811400","GW","false","" +"NM-16727","","","645441","3777730","GW","false","" +"NM-03699","","","161747","3481350","GW","false","" +"NM-05780","","","254200","3571850","GW","false","" +"NM-06325","","","334100","3580950","GW","false","" +"NM-19974","","","678515","3836950","GW","false","" +"NM-09251","","","565187","3628050","GW","false","" +"NM-02828","","","661213","3699500","GW","false","" +"NM-18833","","","598013","3812520","GW","false","" +"NM-10204","","","678624","3641520","GW","false","" +"NM-12277","","","653288","3672670","GW","false","" +"NM-25945","","","181661","4011240","GW","false","" +"NM-10543","","","542459","3644650","GW","false","" +"ED-0243","22S27E33.131","","575137","3579550","GW","true","" +"NM-19759","","","569132","3831970","GW","false","" +"AR-0076","NMED 62","","234795","4082090","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Address is second house S of Rd 2930. Well is in pumphouse, N of main house." +"NM-13262","","","587328","3688740","GW","false","" +"TV-285","","","440965","4020450","GW","true","" +"NM-17410","","","666854","3788380","GW","false","" +"NM-03028","","","626381","3786980","GW","false","" +"NM-17055","","","649326","3783220","GW","false","" +"NM-06333","","","299932","3581660","GW","false","" +"DE-0306","","","650199","3633026","GW","false","" +"NM-15119","","","575745","3731450","GW","false","" +"NM-07977","","","231776","3613890","GW","false","" +"QY-0102","10.34.10.233a","","652935","3886230","GW","true","" +"UC-0105","","","651922","4009736","GW","false","From NESWCD database, not visited by NMBGMR" +"EB-465","","","403278","3928112","GW","true","Poor map location" +"NM-05998","","","336598","3573760","GW","false","" +"NM-23044","","","614695","3894600","GW","false","" +"QY-0287","11.31.36.111","","626520","3889640","GW","true","" +"NM-18148","","","669153","3802810","GW","false","" +"NM-06291","","","576696","3579200","GW","false","" +"EB-586","","","406741","3948514","GW","true","Off of 599 take Entrada, left onto Camino Peralta. House at #69, well is south of house outside of fence, climb bank along road." +"NM-16812","","","133531","3784790","GW","false","" +"NM-21204","","","265996","3869580","GW","false","" +"NM-19781","","","610838","3832750","GW","false","" +"NM-22872","","","664920","3893030","GW","false","" +"NM-05021","","","234992","3561580","GW","false","" +"ED-0105","21S26E23.311","","568609","3592160","GW","true","" +"NM-07699","","","640274","3607640","GW","false","" +"EB-364","","","402532","3943573","GW","true","Must check-in at main WWTP office. Will be escorted to all sites. ~40 ft south of Airport Rd on east side of dirt track" +"NM-06780","","","569077","3588440","GW","false","" +"EB-450","","","403493","3928020","GW","true","3810 State Road 14" +"NM-27966","","","578202","3855520","GW","false","" +"AB-0099","S113","","349433","3825080","GW","true","" +"NM-26526","","","571763","4064420","GW","false","" +"NM-10636","","","301642","3647630","GW","false","" +"NM-24577","","","404663","3940310","GW","false","" +"NM-20329","","","637154","3842620","GW","false","" +"NM-17217","","","629147","3785110","GW","false","" +"OG-0001","","","639749","3822231","GW","false","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1.3 miles south. Well is on left east side of road." +"NM-27883","","","556213","3816640","GW","false","" +"NM-04105","M-029","","274511","3535820","GW","false","" +"NM-09558","","","579027","3631200","GW","false","" +"NM-27249","","","540909","3566550","GW","false","" +"NM-04810","","","235666","3558260","GW","false","" +"NM-08950","","","406407","3624790","GW","false","" +"NM-12245","","","275445","3673280","GW","false","" +"NM-01078","","","661124","3849780","GW","false","" +"NM-08974","","","553447","3624680","GW","false","" +"NM-04673","","","670940","3553990","GW","false","" +"NM-04612","","","671165","3553100","GW","false","" +"NM-11012","","","563013","3650640","GW","false","" +"NM-11711","","","555626","3662790","GW","false","" +"NM-01471","","","218509","3950630","GW","false","" +"QY-0998","9.35.21.241","","661623","3873840","GW","true","" +"SO-0063","2N1W22.44","","322910","3805760","GW","true","" +"SB-0224","TWDB 4807108","","477823","3537750","GW","false","" +"SM-0232","","","449738","3635161","GW","true","Hwy 130 - Rio Penasco Rd south of Mayhill, just before turnoff to Weed. Well is between brick house and turnoff, at red gate. Has up-side-down bucket." +"NM-18356","","","606039","3804750","GW","false","" +"SV-0090","19 Punta Linda","","378878","3900959","GW","false","Unit 3 Lot 133" +"NM-04747","","","658001","3554830","GW","false","" +"NM-13077","","","611739","3686280","GW","false","" +"NM-22854","","","657131","3892650","GW","false","" +"NM-27044","","","324654","3773770","GW","true","" +"DE-0222","","","639476","3628510","GW","false","" +"NM-05638","M-106","","216524","3571117","GW","false","From I10 and 418 exit, go north over railroad tracks and cattle guard for 0.1 miles. Go west on the dirt road for 0.9 miles. Well located at windmill near tank." +"NM-06672","","","264681","3588890","GW","false","" +"NM-15713","","","637830","3747950","GW","false","" +"NM-06139","","","247141","3578690","GW","false","" +"NM-13411","","","548050","3690340","GW","false","" +"AB-0236","","","362928","3880150","GW","true","" +"SD-0372","10N.5E.15.331","","372490","3883770","SP","true","" +"NM-23181","","","234904","3900650","GW","false","" +"NM-19004","","","571961","3815360","GW","false","" +"NM-10483","","","556201","3643820","GW","false","" +"DE-0137","","","615177","3631364","GW","false","" +"NM-16843","","","306965","3780010","GW","false","" +"NM-24355","","","435248","3935020","GW","false","" +"NM-08580","","","228644","3623440","GW","false","" +"NM-19960","","","600828","3835280","GW","false","" +"NM-05864","","","589686","3570680","GW","false","" +"NM-12218","","","289469","3672440","GW","false","" +"NM-06215","","","574356","3577490","GW","false","" +"TS-019","","","436199","4042675","SP","true","Small spring south of Dunn Bridge, on east side. Aka Dunn Bridge South. Probably included in the TS-36 series." +"NM-16693","","","633126","3777090","GW","false","" +"BW-0894","4.10.25.31.100","","551412","3696380","GW","true","" +"NM-27310","","","359194","3586020","GW","false","" +"NM-26330","","","473052","4045400","GW","false","" +"QY-0879","8.30.6.341","","608855","3867220","GW","true","" +"NM-07708","","","555448","3606530","GW","false","" +"NM-05726","","","259883","3570760","GW","false","" +"SD-0027","7N.7E.7.424","","386752","3856650","GW","true","" +"NM-01877","M-031","","253909","3537060","GW","false","" +"NM-03751","","","171000","3510650","GW","false","" +"NM-27795","","","660582","3800000","GW","false","" +"NM-15148","","","568737","3732450","GW","false","" +"TO-0012","1N14E28.41","","455950","3793650","GW","true","" +"NM-17759","","","622787","3793770","GW","false","" +"NM-08125","","","189271","3617470","GW","false","" +"NM-23550","","","369521","3908590","GW","false","" +"SM-0251","","","419142","3653239","GW","true","Take Laborcita Canyon Rd northward, turn left on Ocotillo Trail, and veer right onto Sierra Roja. House is at 20 Sierra Roja. Well is first one on right side of driveway, under sheet metal box." +"SD-0371","10N.5E.15.223","","373687","3884750","SP","true","" +"NM-14676","","","548989","3714180","GW","false","" +"NM-00923","","","671337","3800530","GW","false","" +"NM-00677","","","447845","3690300","GW","false","" +"AB-0199","S252","","320270","3831980","GW","true","" +"NM-11514","","","666725","3661060","GW","false","" +"NM-26163","","","304105","4027360","GW","false","" +"NM-14642","","","554489","3712740","GW","false","" +"NM-08839","","","234755","3626790","GW","false","" +"NM-03901","","","250266","3524220","GW","false","" +"EB-072","","","417490","3954215","GW","true","" +"NM-23833","","","413161","3916230","GW","false","" +"NM-10417","M-204","","218910","3646870","GW","false","" +"NM-25625","","","416200","3984040","GW","false","" +"NM-16304","","","548541","3766390","GW","false","" +"NM-20704","","","559459","3851190","GW","false","" +"NM-21405","","","346139","3872620","GW","false","" +"NM-04721","","","233187","3556760","GW","false","" +"SV-0105","08 Via Entrada","","380978","3898094","GW","false","Unit 2 Lot 1" +"SO-0184","HWY-W08EX","","328807","3755373","GW","true","" +"QY-0894","8.31.29.332","","619932","3860970","GW","true","" +"NM-19928","","","570461","3834690","GW","false","" +"QY-0173","11.30.10.14","","613965","3895340","GW","true","" +"NM-02509","","","556427","3613180","GW","false","" +"NM-26613","","","194016","4075750","GW","false","" +"NM-12157","","","558746","3669740","GW","false","" +"NM-00464","","","274835","3643280","GW","false","" +"NM-18440","","","679216","3807190","GW","false","" +"NM-01743","","","167696","3487370","GW","false","" +"NM-20868","","","338427","3856080","GW","false","" +"SM-1102","","","444030","3635594","SP","true","At the Upper Rio Penasco turnoff from Cox Canyon. On north side, along Cox canyon. Spring comes from base of limestone Yeso cliff." +"NM-15562","","","629710","3743950","GW","false","" +"TV-262","SW-56","","442983","4024240","GW","true","" +"SB-0764","TWDB 4924422","","394200","3507110","GW","false","" +"NM-00578","","","628991","3660300","GW","false","" +"NM-19984","","","600721","3835710","GW","false","" +"NM-02313","","","334737","3576750","GW","false","" +"NM-17064","","","655018","3782820","GW","false","" +"NM-25697","","","214927","3993420","GW","false","" +"SA-0326","","","245935","3700108","GW","true","" +"NM-14351","","","516060","3701320","GW","false","" +"NM-21390","","","381926","3871960","GW","false","" +"NM-10744","","","401322","3647330","GW","false","" +"BW-0361","17S9E24.343","","408839","3631410","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0089","10.32.34.243","","634186","3879510","GW","true","" +"NM-18315","","","676728","3805020","GW","false","" +"NM-23883","","","411592","3918340","GW","false","" +"NM-10014","","","559022","3636760","GW","false","" +"NM-27138","COS-01","","448129","4082470","GW","false","" +"NM-03504","","","412756","3932720","GW","false","" +"BW-0394","17S10E18.443","","411257","3631630","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03599","","","611653","3993410","GW","false","" +"SB-0837","","","494591","3559387","GW","false","" +"NM-18714","","","671339","3811820","GW","false","" +"NM-27351","","","367862","3597360","GW","false","" +"SM-4006","","","431440","3629437","PS","true","Stream flow measurement by Patrick Walsh" +"NM-25665","","","414397","3986530","GW","false","" +"NM-21904","","","395422","3881260","GW","false","" +"NM-15289","","","680196","3739690","GW","false","" +"NM-09703","","","556265","3632550","GW","false","" +"NM-18332","","","655510","3804690","GW","false","" +"NM-13038","","","400180","3685440","GW","false","" +"NM-04763","","","261912","3556750","GW","false","" +"NM-28332","TC-11","","463010","4025301","GW","false","" +"NM-07563","","","657182","3605390","GW","false","" +"NM-08464","","","661157","3619230","GW","false","" +"NM-20705","","","676113","3853300","GW","false","" +"NM-19338","","","663884","3826230","GW","false","" +"AB-0051","S059","","320564","3836200","GW","true","" +"NM-01185","","","601224","3877390","GW","false","" +"NM-21463","","","599847","3873780","GW","false","" +"TO-0213","6N7E15.433","","390968","3844970","GW","true","" +"NM-26884","PW-103","","369866","3909578","GW","true","" +"NM-06784","","","324708","3589760","GW","false","" +"NM-17640","","","662902","3791920","GW","false","" +"NM-16297","","","326484","3767760","GW","false","" +"TO-0154","5N8E11.221","","402307","3838130","GW","true","" +"NM-11176","","","660368","3654830","GW","false","" +"NM-21954","","","372836","3882040","GW","false","" +"NM-10139","","","412621","3639000","GW","false","" +"NM-23546","","","369521","3908590","GW","false","" +"AH-102","HM-30","","437621","4041348","GW","true","" +"NM-15532","","","675393","3744750","GW","false","" +"SA-1013","","","259274","3717891","SP","true","Just west of the Box, north of Alamosa Creek drainage about 0.2 mile along trail. This is site for small seep east of main pool." +"NM-15634","","","674836","3747080","GW","false","" +"NM-08867","","","234969","3627000","GW","false","" +"NM-14494","","","569131","3706330","GW","false","" +"NM-09384","","","665127","3631090","GW","false","" +"TS-120","","","427093","4012893","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"NM-11727","","","557178","3663200","GW","false","" +"NM-24844","","","660309","3946950","GW","false","" +"NM-02990","","","661535","3777660","GW","false","" +"NM-01070","","","455704","3845240","GW","false","" +"NM-13550","","","656472","3693740","GW","false","" +"NM-23360","","","227145","3904430","GW","false","" +"QY-0780","7.30.36.423","","618014","3849890","GW","true","" +"NM-13489","","","550139","3691220","GW","false","" +"NM-10211","","","650170","3641140","GW","false","" +"AR-0102","D001","","243793","4092680","GW","true","From Hwy 550 in Cedar Hill, turn right on right on Rd 2350 then left on Rd 2335. Follow to Rd 2337 to address. Address is last house before the river. Well is near blue handle water faucet behind rocks across from the garage." +"NM-16714","","","234737","3779640","GW","false","" +"NM-14085","","","544013","3697160","GW","false","" +"TO-0030","2N15E6.112","","462079","3810270","GW","true","" +"NM-28125","","","407984","3873510","GW","false","" +"BW-0696","4.26.18.29.113","","488045","3542180","GW","true","" +"NM-08697","","","613538","3622260","GW","false","" +"NM-23409","","","354408","3903490","GW","false","" +"NM-01509","","","625698","3961350","GW","false","" +"NM-04602","","","549253","3551530","GW","false","" +"TO-0086","4N8E11.433","","401528","3827270","GW","true","" +"QY-0741","6.32.28.313","","631503","3842000","GW","true","" +"NM-14386","","","656183","3703650","GW","false","" +"NM-18607","","","645761","3809780","GW","false","" +"NM-05333","","","672620","3564670","GW","false","" +"EB-479","","","395525","3965621","GW","true","" +"NM-22047","","","406432","3882800","GW","false","" +"NM-24533","","","283519","3941450","GW","false","" +"SM-4049","","","437445","3619298","PS","true","Stream flow measurement by Patrick Walsh" +"NM-08456","","","669754","3619180","GW","false","" +"NM-15139","","","618821","3732660","GW","false","" +"NM-07844","","","289378","3610870","GW","false","" +"NM-22136","","","385443","3883810","GW","false","" +"QY-0127","10.36.13.211","","675560","3885540","GW","true","" +"NM-11342","","","651463","3658410","GW","false","" +"NM-01558","","","402963","3984860","GW","false","" +"NM-20386","","","585378","3843170","GW","false","" +"NM-23582","PW-315","","362634","3909180","GW","false","" +"NM-21977","","","394089","3882080","GW","false","" +"QY-0142","11.28.27.212","","595144","3890790","GW","true","" +"NM-13884","","","271871","3697930","GW","false","" +"NM-20747","","","356166","3852980","GW","false","" +"NM-00061","","","441916","3545910","GW","false","" +"NM-22487","","","374511","3887720","GW","false","" +"NM-00318","","","635225","3616470","GW","false","" +"TV-268","","","446589","4022531","GW","true","Take Rt. 518 south out of Talpa. Take Ortiz Road left at intersection sign plus 100 meters. Hook left around latilla fence, crossing acequia at grey steel gates. This is a driveway, not a road, and faces #30 (a green steel gate). Fork left through the decorative fence (#30A) and proceed to the house + 300 meters down driveway. Well not in vault w/pressure tank. Well outside 40 meters to south of vault." +"NM-05455","","","242536","3568480","GW","false","" +"NM-00090","","","495392","3552150","GW","false","" +"NM-11942","","","289554","3667940","GW","false","" +"EB-292","","","408163","3956965","GW","true","Lot 93, on Estrada Redondo, 0.5 mi N from Estr Calabasa on left" +"NM-00849","","","298970","3733810","GW","false","" +"SO-0180","HWY-W06B","","328824","3755362","GW","true","" +"NM-19963","","","604467","3835410","GW","false","" +"NM-06051","","","279611","3575860","GW","false","" +"NM-23066","","","289275","3896820","GW","false","" +"WL-0203","","","200643","3618910","GW","true","From Hwy 180, go west on Airport Rd 3.7 miles, go past airport and 0.5 mile past drainage on right. Look for lone tree and well beneath. Call Jim McCauley for access." +"NM-05227","","","238404","3564730","GW","false","" +"NM-09036","","","554641","3625310","GW","false","" +"NM-10304","","","455998","3641140","GW","false","" +"NM-15838","","","629643","3750790","GW","false","" +"SB-0027","TWDB 4709801","","505681","3516114","GW","false","" +"NM-13453","","","555103","3690970","GW","false","" +"NM-19379","","","521787","3824870","GW","false","" +"UC-0205","","","647768","4073675","GW","false","" +"NM-10370","","","648624","3643710","GW","false","" +"NM-23986","","","488780","3921390","GW","false","" +"NM-04889","","","268277","3558700","GW","false","" +"NM-16160","","","278848","3762440","GW","false","" +"NM-13614","","","639818","3694220","GW","false","" +"NM-05069","","","609171","3559390","GW","false","" +"QY-0048","10.30.21.233","","612764","3882490","GW","true","" +"QY-0486","15.37.18.124","","676525","3933670","GW","true","" +"NM-18424","","","572191","3805380","GW","false","" +"EB-535","","","414143","3945086","GW","true","" +"NM-05577","","","200172","3570910","GW","false","" +"NM-15663","","","653988","3746900","GW","false","" +"NM-16139","","","623763","3760360","GW","false","" +"NM-15926","","","680172","3754480","GW","false","" +"NM-10391","","","400214","3642990","GW","false","" +"NM-09957","","","556558","3635940","GW","false","" +"TO-0297","7N8E24.431","","404133","3852990","GW","true","" +"NM-21974","","","248998","3884890","GW","false","" +"NM-09644","","","557984","3631980","GW","false","" +"NM-09427","","","556592","3629940","GW","false","" +"NM-06668","","","201068","3590490","GW","false","" +"NM-14271","","","537261","3699810","GW","false","" +"NM-15923","","","660133","3754490","GW","false","" +"NM-27106","CAR-49","","427941","4021550","GW","false","" +"NM-09177","","","553512","3627240","GW","false","" +"SV-0062","09 Los Cedros","","379432","3898138","GW","false","Unit 2 Lot 17." +"NM-17602","","","585229","3789930","GW","false","" +"SD-0104","9N.7E.2.342","","393877","3877290","GW","true","" +"QY-0147","11.28.32.212","","591948","3889150","GW","true","" +"NM-16919","","","590317","3779600","GW","false","" +"NM-13435","","","486795","3690510","GW","false","" +"TO-0503","5N12E27.23","","439632","3831920","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-20051","","","399574","3836970","GW","false","" +"CX-0128","35","","541051","4042790","GW","true","1/2 mile south of Maxwell" +"NM-03215","","","568548","3831870","GW","false","" +"NM-23016","","","395444","3894080","GW","false","" +"AB-0077","S089","","344737","3868520","GW","true","" +"TB-0044","","","405667","3661103","GW","true","From Tularosa, take Bookout Road north (at Lowe's grocery). Cross Tulie creek, first house on left (trailer) @ 1721 N. Bookout Road." +"NM-00695","","","477805","3692560","GW","false","" +"NM-28285","237588","","220305","3643082","SP","false","Private US Landowner NM" +"NM-20578","","","415875","3848410","GW","false","" +"NM-03261","","","337943","3842990","GW","false","" +"NM-05854","","","563864","3570420","GW","false","" +"OG-0024","","","638919","3821807","GW","true","From int of SR 311 and US 60, west of Clovis, drive 19 miles north and west on SR 311. Turn left south on CR Z. Drive 1.5 miles south. Turn right west onto dirt. Drive 0.5 miles to well." +"UC-0228","","","598863","4050607","GW","false","" +"NM-03018","","","656565","3785280","GW","false","" +"NM-07946","","","605255","3610410","GW","false","" +"EB-350","","","416977","3935963","GW","true","2-track E from Dove Well (EB-349) across RR grade, turn Rt/S to corral" +"NM-16392","","","293839","3771590","GW","false","" +"EB-590","","","406448","3950465","GW","true","Off of Cam Las Campana (S from La Tierra), turn left into Los Suenos. Follow Los Suenos Trail south, left onto Camino Los Suenos to end at #28" +"NM-21004","","","403697","3858770","GW","false","" +"RA-063","","","418339","4007080","GW","true","Large Culvert in side yard." +"NM-22581","","","355417","3889080","GW","false","" +"NM-14575","","","325305","3710930","GW","false","" +"NM-08507","","","188260","3623510","GW","false","" +"NM-03572","","","581238","3979460","GW","false","" +"NM-14136","","","465989","3697860","GW","false","" +"NM-24982","","","412700","3948980","GW","false","" +"WL-0332","","","386028","3872941","GW","true","The property is on the southeast corner at the intersection of Nez Perce and Chief Joseph Roads" +"NM-00487","","","646483","3646140","GW","false","" +"EB-185","","","416417","3956212","GW","true","Palo Duro Dr, house across from Via Vecino (1st hse on left from BLRd); across drive from SW corner of house" +"NM-07306","","","208648","3602850","GW","false","" +"ED-0260","22S30E6.344","","601259","3587040","GW","true","" +"NM-06517","","","329064","3584670","GW","false","" +"NM-10554","","","668430","3646370","GW","false","" +"NM-06538","","","233592","3587020","GW","false","" +"NM-11413","","","403095","3658580","GW","false","" +"NM-16332","","","648577","3768970","GW","false","" +"NM-22010","","","348412","3883000","GW","false","" +"TC-364","","","431777","4076289","GW","true","" +"NM-06060","","","579116","3573950","GW","false","" +"BC-0398","401","","344739","3868540","GW","false","" +"NM-06201","","","676279","3578570","GW","false","" +"NM-09374","","","668900","3631060","GW","false","" +"NM-09576","","","227314","3634760","GW","false","" +"SB-0442","TWDB 4815903","","487661","3512733","GW","false","" +"NM-10087","","","555818","3637970","GW","false","" +"NM-08233","","","414672","3614560","GW","false","" +"NM-14405","","","548503","3703190","GW","false","" +"AR-0154","C014","NMED360/370","235245","4084410","GW","true","" +"NM-10963","","","542800","3649820","GW","false","" +"NM-19417","","","672654","3827590","GW","false","" +"NM-07283","","","343566","3599100","GW","false","" +"NM-02405","M-145","","240206","3590660","GW","false","2.3 miles N on US180 from US180 & NM26 intersection, go right north on CR A008 Keeler Road, 2.9 miles on pavement, 1.5 miles on gravel to Y, go right at Y. Go 5 miles, look for faint 2-track east of road. Well is at end of 2-track. Heavily gullied, must cross on foot to get to well. Wellhead covered w/blue plastic drum. Stock tank 50 yds west is visible form road." +"NM-17358","","","639617","3786890","GW","false","" +"NM-08531","","","281991","3621350","GW","false","" +"SD-0270","11N.6E.26.244","","385107","3890400","GW","true","" +"AB-0049","S055","","365974","3892520","GW","true","" +"SB-0729","TWDB 4923505","","388565","3507046","GW","false","" +"NM-23093","","","236729","3898970","GW","false","" +"NM-03386","S128","","350212","3889720","GW","false","" +"NM-19442","","","657153","3827750","GW","false","" +"NM-23156","","","627871","3896660","GW","false","" +"NM-13965","","","544175","3695650","GW","false","" +"NM-27704","","","673659","3796920","GW","false","" +"NM-15551","","","624621","3743720","GW","false","" +"NM-25978","","","417600","4007660","GW","false","" +"SO-0099","3N3E10.43","","351883","3818180","GW","true","Benchmark near well." +"NM-26401","","","575712","4058390","GW","false","" +"NM-19979","","","628999","3836310","GW","false","" +"NM-23645","","","369548","3910470","GW","false","" +"MI-0275","","","471755","3955948","GW","true","Topographic situation: Valley" +"NM-23848","","","389628","3917010","GW","false","" +"TC-319","","","445275","4080273","GW","true","" +"NM-21628","","","355019","3878420","GW","false","" +"NM-13120","","","560145","3686410","GW","false","" +"NM-13491","","","140716","3697740","GW","false","" +"CX-0090","24N27E23.24","","587180","4017580","GW","true","" +"NM-06196","","","610723","3577790","GW","false","" +"NM-24541","","","652097","3940210","GW","false","" +"NM-02796","","","552962","3685500","GW","false","" +"TO-0464","10N9E5.111","","407633","3887530","GW","true","" +"PB-0002","","","378057","3936808","GW","true","Baptist Church on south side of Pena Blanca off of Hwy 22, ~15 m west of church on concrete pad." +"AR-0199","J005","","242353","4091410","GW","true","" +"NM-17392","","","642271","3787390","GW","false","" +"AS-031","ES-21","","450694","4042780","GW","true","" +"NM-15764","","","673325","3749580","GW","false","" +"NM-13799","","","549448","3695030","GW","false","" +"NM-10945","","","546849","3649690","GW","false","" +"TS-029c","","","440099","4068497","SP","true","East side of river. South end of zone of springs and seeps below Desawaui Trail." +"SM-0013","","","440025","3646288","GW","true","Take US82 east of Cloudcroft several miles. Look for Trimble Rd/ Sullivan Canyon Rd turnoff on the right (south) side. Take immediate left onto Sullivan Canyon rd. go around right angle bend in road, well is windmill beyond first gate on the right." +"BC-0225","225","","375398","3892720","GW","true","" +"NM-15421","","","324899","3742310","GW","false","" +"NM-07752","","","650722","3608250","GW","false","" +"NM-02965","","","663368","3759080","GW","false","" +"NM-28146","","","173619","3971220","GW","false","" +"NM-28118","","","631426","3659110","GW","false","" +"NM-28115","","","449314","3800960","GW","false","" +"NM-16653","","","546653","3774940","GW","false","" +"NM-14543","","","674973","3709980","GW","false","" +"SB-0304","TWDB 4807522","","481019","3534203","GW","false","" +"NM-22401","","","405836","3886350","GW","false","" +"NM-01982","","","231864","3551370","GW","false","" +"NM-17998","","","674806","3799840","GW","false","" +"NM-17654","","","640878","3791530","GW","false","" +"NM-02663","","","678426","3645310","GW","false","" +"NM-06071","","","235541","3577560","GW","false","" +"NM-26886","PW-107","","368891","3907715","GW","true","" +"SO-0216","SBB-E02B","","322882","3732842","GW","true","" +"NM-14427","","","549013","3704360","GW","false","" +"TS-129","","","425614","4011951","SP","true","Series of spring-fed cienegas on west gorge wall between Pilar and Souse Hole rapid." +"NM-27307","","","367053","3595400","GW","false","" +"NM-21340","","","397560","3870820","GW","false","" +"PP-025","PW-24","","435346","4005650","GW","true","" +"NM-07880","","","678790","3610720","GW","false","" +"NM-09426","","","558204","3629950","GW","false","" +"NM-13338","","","631777","3690660","GW","false","" +"NM-18062","","","666015","3801030","GW","false","" +"NM-05488","","","262682","3568350","GW","false","" +"NM-22831","","","229040","3895030","GW","false","" +"NM-22834","","","361362","3892100","GW","false","" +"NM-05716","","","232783","3571290","GW","false","" +"NM-16554","","","631137","3774600","GW","false","" +"ED-0339","25S23E34.444","","539407","3549510","GW","true","" +"NM-22881","","","389326","3892330","GW","false","" +"NM-16096","","","562545","3758210","GW","false","" +"NM-15585","","","618184","3744540","GW","false","" +"CP-0028","","","656032","3808476","GW","true","East of Cannon AFB and NM 311 on north side of Hwy 60, well is in locked enclosure in grassy field. Gary Blair must access enclosure for you." +"SB-0582","TWDB 4861301","","463626","3439977","GW","false","" +"DA-0003","18S2W35.112","","310357","3620390","GW","true","" +"NM-01559","","","526300","3984760","GW","false","" +"NM-26027","","","429040","4014100","GW","false","" +"NM-24866","","","412648","3946330","GW","false","" +"NM-01269","","","234956","3901090","GW","false","" +"TV-178","COR-75","","440395","4026185","GW","true","" +"NM-23189","","","288855","3899450","GW","false","" +"SB-0013","TWDB 4709201","","505440","3524365","GW","false","" +"NM-08425","","","657782","3618490","GW","false","" +"UC-0052","","","668132","4022985","GW","true","elv 4774 acc to USGS" +"NM-14962","","","341595","3726850","GW","false","" +"TB-0176","","","416757","3721547","GW","true","12191 Hwy 54, on west side. Well is south of house in cement vault." +"SD-0287","11N.6E.33.442","","381867","3888300","GW","true","" +"NM-07570","","","215672","3608230","GW","false","" +"SD-0216","10N.7E.4.311","","390714","3887080","GW","true","" +"NM-02669","","","550061","3645220","GW","false","" +"NM-20614","","","617731","3849350","GW","false","" +"NM-14033","","","469653","3696550","GW","false","" +"SB-0097","TWDB 4717601","","509610","3505095","GW","false","" +"NM-05911","","","246501","3574050","GW","false","" +"BC-0206","206","","377611","3877770","GW","true","" +"NM-14411","","","659628","3704570","GW","false","" +"NM-02173","","","164945","3569640","GW","false","" +"NM-23944","","","639661","3920870","GW","false","" +"PP-026","PW-25","","434739","4006094","GW","true","" +"NM-17430","","","653466","3788460","GW","false","" +"NM-08918","","","637888","3625470","GW","false","" +"SB-0792","TWDB 5007101","","477377","3428333","GW","false","" +"TB-0320","","","399636","3661989","GW","true","Going N on Hwy 54 from Tularosa, turn W on Railroad Ave. Turn W onto Derbyshire Rd and proceed to address on N side of Rd. Well is behind pumphouse." +"NM-02786","","","551320","3678070","GW","false","" +"NM-25698","","","625716","3989720","GW","false","" +"NM-27774","","","604915","3786530","GW","false","" +"TB-0198","","","407556","3702193","GW","true","From HQ southwest to main road. Look for two track going south before cement water crossing or from Hwy. 380 in Oscuro east on Grand Avenue through Hefker Vega gate across cement water crossing. Go south through locked gate and continue south to past windmill on west side of road and follow road to east to windmill." +"SB-0810","TWDB 5008901","","498142","3419936","GW","false","" +"NM-27951","","","399628","3841960","GW","false","" +"NM-17244","","","546248","3784270","GW","false","" +"SD-0161","10N.5E.22.344","","372961","3881940","GW","true","" +"NM-04773","","","237508","3557480","GW","false","" +"NM-27995","","","355754","3879850","GW","false","" +"NM-01144","","","449475","3862960","GW","false","" +"NM-12616","","","558777","3677530","GW","false","" +"NM-04491","","","345856","3549160","GW","false","" +"NM-21279","","","541620","3868150","GW","false","" +"NM-16670","","","608519","3775790","GW","false","" +"NM-27524","","","594429","3773020","GW","false","" +"ED-0044","19S23E27.11","","529486","3611100","GW","true","" +"NM-16920","","","672233","3781240","GW","false","" +"NM-21753","","","608901","3879920","GW","false","" +"NM-01280","","","159358","3906270","GW","false","" +"NM-17672","","","533095","3790740","GW","false","" +"NM-02880","","","422486","3722250","GW","false","" +"NM-03202","","","565437","3828740","GW","false","" +"TO-0399","9N8E3.312","","401477","3877050","GW","true","" +"SD-0024","7N.7E.4.343","","389408","3858400","GW","true","" +"NM-20251","","","617177","3840990","GW","false","" +"NM-14914","","","422367","3723490","GW","false","" +"MI-0279","","","479059","3956730","GW","true","Topographic situation: Plateau" +"NM-27976","","","381774","3871970","GW","false","" +"NM-19805","","","567727","3832640","GW","false","" +"EB-293","","","402450","3939520","GW","true","North side of CR54, south bank of Arroyo Hondo, across road from barns" +"TB-0042","","","434463","3712825","GW","true","Take Hwy 37 toward Nogal, marker 1080 on east side of hwy. House is ~1/2 mi south of post office. Well is on east side of driveway, east of first house across orchard. PVC stick up." +"NM-08351","","","663815","3617610","GW","false","" +"HS-514","TC-514","","289959","3667530","SP","true","" +"NM-02697","","","554952","3648800","GW","false","" +"SD-0202","10N.6E.15.111","","382019","3884750","GW","true","" +"TC-246","TP-03","","412397","4066506","GW","true","" +"NM-23256","","","347844","3899400","GW","false","" +"BC-0073","57","","375760","3890480","GW","true","" +"NM-27527","","","590970","3775600","GW","false","" +"NM-23515","","","358046","3907990","GW","false","" +"HS-059","TC-059","","289688","3667756","GW","true","Foch Street, to alley on west behind Little Sprout building. Inside fence. " +"WL-0195","","","490295","3544144","GW","true","From junction of TX 1576 & 2249, head north on 1576 ~ 3 miles, bear right for 1 mile to Snodgrass Rd., then go left 1 mile to NM/TX state line, then right 1.5 mile to CR 9005, left 2.25 miles. Well to right (east) 0.3 miles. Open casing covered by metal sheet in cement pad." +"NM-03197","","","674629","3829630","GW","false","" +"NM-07841","","","676818","3610190","GW","false","" +"QY-0182","11.30.14.144","","615557","3893850","GW","true","" +"NM-14726","","","634563","3717000","GW","false","" +"NM-13369","","","395453","3690850","GW","false","" +"NM-25861","","","410363","4000830","GW","false","" +"SB-0487","TWDB 4832301","","498867","3496962","GW","false","" +"NM-06681","","","196006","3590920","GW","false","" +"NM-18216","","","132614","3809160","GW","false","" +"NM-17481","","","607377","3788280","GW","false","" +"NM-18875","","","676945","3815130","GW","false","" +"NM-27343","","","591252","3594130","GW","false","" +"NM-11746","","","557177","3663410","GW","false","" +"NM-06249","","","333319","3579570","GW","false","" +"SB-0784","TWDB 4932504","","398426","3492410","GW","false","" +"NM-06774","","","675823","3589710","GW","false","" +"MI-0033","","","536400","3901713","GW","true","Topographic situation: Plains" +"QY-0258","11.30.5.434","","611154","3896130","GW","true","" +"QU-131","MMW-46B","","453595","4059873","GW","true","" +"NM-27388","","","654537","3646050","GW","false","" +"NM-21012","","","650586","3859840","GW","false","" +"NM-15893","","","192871","3756780","GW","false","" +"NM-14288","","","540177","3700220","GW","false","" +"QY-0420","12.36.29.132","","668092","3901110","GW","true","" +"NM-21662","","","274800","3880640","GW","false","" +"NM-12264","","","639688","3672660","GW","false","" +"PC-119","PW-206","","373042","3912013","GW","true","" +"NM-02334","","","156745","3583020","GW","false","" +"NM-19880","","","607458","3834340","GW","false","" +"NM-09416","","","657786","3631310","GW","false","" +"NM-25079","","","658434","3954740","GW","false","" +"NM-00393","","","407470","3629990","GW","false","" +"NM-26891","PW-045","","368982","3907551","GW","true","" +"SA-0188","","","256227","3770172","GW","true","From Hwy 60 take turn off to 52 at VLA. GO south 4.54 miles, then take road to West. Go 1.5 mi to WM to north. Visible from top of hill. Go past cattle guard, take 2 track." +"NM-11231","","","556917","3654700","GW","false","" +"NM-08159","","","552362","3613310","GW","false","" +"NM-27989","","","342962","3878870","GW","false","" +"NM-23731","","","323226","3914430","GW","false","" +"SA-0185","","","264187","3741836","GW","true","At Intersection of Hwy 52 and FR 549, take FR549 to FR 73 (white water canyon area). Go 8.8 Miles down into then up out of big pigeon canyon. Follow road east across mesa toward hills. Well at end of road in well house." +"NM-07635","","","567394","3605610","GW","false","" +"NM-12207","","","290605","3672230","GW","false","" +"NM-04874","","","675181","3557450","GW","false","" +"NM-05050","","","674769","3560060","GW","false","" +"NM-21151","","","344482","3865470","GW","false","" +"NM-27720","","","633366","3787260","GW","false","" +"NM-04056","","","325052","3532240","GW","false","" +"NM-13542","","","549644","3692010","GW","false","" +"NM-07625","","","659617","3606450","GW","false","" +"NM-09879","","","675202","3636620","GW","false","" +"NM-10789","","","550078","3647730","GW","false","" +"NM-14861","","","653166","3722800","GW","false","" +"PC-063","PW-111","","373619","3912297","GW","true","" +"TS-065","","","432944","4020988","SP","true","One of a series of small seeps with vegetative signatures that are located on west gorge wall between TJ Campground and the gaging station, a distance of one mile. " +"UC-0122","","","637625","4084902","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-23826","","","412833","3916170","GW","false","" +"SA-0413","4S12W30.420","","211086","3758560","GW","true","" +"NM-19666","","","240481","3833810","GW","false","" +"NM-21594","","","347263","3877580","GW","false","" +"SB-0786","TWDB 4932901","","404837","3487084","GW","false","" +"NM-21043","","","238144","3863640","GW","false","" +"NM-08244","","","300036","3616370","GW","false","" +"NM-05055","","","262598","3561420","GW","false","" +"SM-0054","","","445004","3650365","GW","true","Well is near confluence of 16 Springs Canyon with Poison Spring Canyon. Need Walker's permission first. Thru gate at Walters, fork at 29 stay left. Thru gate at 41, take left at satellite dish, going towards steel shed. Thru gate. See well on S side of valley, walk over embankment. MAKE ARRANGEMENTS WITH WALKERS TO GET THRU 2 LOCKED GATES." +"NM-27807","","","606624","3791510","GW","false","" +"NM-21498","","","412748","3875110","GW","false","" +"NM-07582","","","324602","3606030","GW","false","" +"NM-22858","","","377381","3892150","GW","false","" +"NM-25112","","","409974","3955420","GW","false","" +"NM-00310","","","374550","3612390","GW","false","" +"NM-27987","","","349727","3877220","GW","false","" +"NM-27938","","","564786","3838130","GW","false","" +"BW-0382","17S9E36.414","","409223","3628560","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-17148","","","513772","3782930","GW","false","" +"AB-0054","S062","","349528","3887380","GW","true","" +"BW-0264","15S9E24.242","","403785","3651560","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"ED-0290","23S27E14.124","","579022","3574890","GW","true","" +"NM-03854","","","250721","3521588","GW","false","" +"QU-059","","","451901","4064778","GW","true","Take Cabresto Canyon Rd 1.8 miles from cattleguard; park on road near the crest of a curve; find small driveway on the right. Residence is #443 (marked on house but not at the road). It is easy to miss this driveway. Trees constrict beginning of driveway. Well at right curve in driveway concealed in stone boundary." +"NM-09126","","","202300","3630820","GW","false","" +"NM-25328","","","389293","3969060","GW","false","" +"TV-149","SW-66","","437854","4022511","GW","true","From SR 68, turn left (west) on SR 96; go ~3 miles; past golf course look for Spirit Dog Rd on right (west). House up to right, first house. Well located between garage and studio." +"TB-0152","","","415342","3699003","GW","true","North then NW of Brownfield Well. To WM on right (W) side of road." +"NM-14781","","","547857","3718740","GW","false","" +"DE-0170","","","673111","3618889","GW","false","" +"NM-07164","","","265368","3598160","GW","false","" +"NM-00405","","","668824","3633200","GW","false","" +"DE-0164","","","672743","3618756","GW","false","" +"NM-27230","","","543285","3549650","GW","false","" +"NM-08751","","","645799","3623830","GW","false","" +"NM-25719","","","399106","3991310","GW","false","" +"NM-26720","Garrabrant #164","","443506","4082210","GW","false","" +"SB-0048","TWDB 4710403","","512541","3519845","GW","false","" +"NM-02236","","","132094","3575220","GW","false","" +"NM-10189","","","392439","3639970","GW","false","" +"SB-0162","TWDB 4742701","","515467","3461476","GW","false","" +"SR-0010","","","373612","3973630","SP","true","Pajarito Mtn.; from Camp May Rd. high point, ascend draw 300 m " +"NM-27621","","","620026","3793700","GW","false","" +"NM-17528","","","446664","3788650","GW","false","" +"NM-19412","","","670256","3827670","GW","false","" +"NM-09186","","","409685","3627570","GW","false","" +"NM-11958","","","560375","3666110","GW","false","" +"SM-1076","","","438399","3615789","SP","true","" +"QY-0640","5.30.18.314","","609073","3835320","GW","true","" +"NM-07911","","","202213","3613990","GW","false","" +"NM-03592","","","508389","3989260","GW","false","" +"NM-16954","","","656225","3781050","GW","false","" +"NM-04540","M-057","","268024","3552124","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 miles. Go south on B047/Marana Rd for 6.0 miles (road jogs to the left and continues south at mile 6.0) -- continue east on the dirt road for 1.6 miles. Well located about 100 yards south of the dirt road." +"NM-16445","","","327118","3772280","GW","false","" +"NM-09154","","","410410","3627250","GW","false","" +"UC-0037","","","669960","4004829","GW","true","elv 4611 acc to USGS" +"NM-10672","","","655066","3647070","GW","false","" +"NM-06645","","","360377","3586490","GW","false","" +"NM-08605","","","216494","3624240","GW","false","" +"NM-23999","","","447866","3922770","GW","false","" +"NM-03350","","","619927","3879600","GW","false","" +"NM-02406","M-146","","261046","3590580","GW","false","17.1 miles on NM26 NE from Deming, right on Barksdale road go 0.3 miles, turn south on 2-track go 1.5 miles to obvious windmill with 2 steel stock tanks." +"JM-500","","","295452","3666275","SP","true","Site located on Nelson Ranch. From CRA8, drive 2.7 miles to powerline, turn right, follow powerline 3 miles to fence line. Spring is 0.6 miles west in canyon bottom." +"QY-0230","11.30.25.113","","616739","3891030","GW","true","" +"NM-07374","","","616914","3600840","GW","false","" +"NM-19302","","","218430","3827360","GW","false","" +"NM-04782","","","666981","3555580","GW","false","" +"SV-0089","17 Punta Linda","","378714","3901088","GW","false","Unit 3 Lot 132" +"NM-02829","","","549326","3698600","GW","false","" +"NM-08118","","","659578","3613780","GW","false","" +"NM-18135","","","398369","3801120","GW","false","" +"NM-11926","","","657819","3666460","GW","false","" +"SB-0125","TWDB 4726102","","514913","3497188","GW","false","" +"NM-14731","","","621309","3717100","GW","false","" +"AR-0159","D006","NMED 66","221906","4074570","GW","true","From Farmington, take Hwy 516 toward Aztec. Turn right on Old Aztec Hwy, then turn right on Robert's Rd. Take left bend in Rd, then take right turn on Robert's Rd. Proceed to address at end of Rd." +"QY-0593","5.29.19.211","","599997","3834470","GW","true","" +"NM-20403","","","665838","3845160","GW","false","" +"BC-0415","418","","347572","3879970","GW","false","" +"NM-03522","","","408839","3946640","GW","false","" +"NM-14243","","","268529","3701980","GW","false","" +"NM-17472","","","631916","3788470","GW","false","" +"NM-08817","","","411339","3623420","GW","false","" +"NM-15479","","","327904","3743450","GW","true","" +"NM-26048","","","605295","4016450","GW","false","" +"NM-25863","","","202963","4005700","GW","false","" +"NM-10386","","","631323","3643490","GW","false","" +"NM-08590","","","670263","3621410","GW","false","" +"NM-22435","","","359442","3887410","GW","false","" +"NM-00573","","","297510","3660580","GW","false","" +"NM-14950","","","646470","3725870","GW","false","" +"NM-17235","","","627455","3785270","GW","false","" +"SB-0189","TWDB 4757803","","507716","3430621","GW","false","" +"NM-04382","","","230220","3548760","GW","false","" +"NM-08446","","","409754","3618050","GW","false","" +"NM-23349","","","240128","3903590","GW","false","" +"QY-0200","11.30.15.434","","614362","3893030","GW","true","" +"TO-0185","5N8E32.333","","396460","3830400","GW","true","" +"NM-02264","M-124","","234200","3574913","GW","false","From the freeway underpass on US180 N from Deming, turn left on Gold Street/CR D011 go 3 miles, end of pavement go 0.9 miles northwest and west around fields to well at north side of field with remains of huge cottonwood tree," +"NM-04931","","","604242","3557270","GW","false","" +"NM-22762","","","281505","3892660","GW","false","" +"NM-09650","","","550053","3632030","GW","false","" +"NM-05022","","","679098","3559730","GW","false","" +"NM-11710","","","562754","3662830","GW","false","" +"SA-0334","","","258023","3688915","GW","true","" +"NM-19102","","","602469","3818050","GW","false","" +"NM-01137","","","644809","3861960","GW","false","" +"NM-24259","","","477663","3932160","GW","false","" +"NM-02937","","","419383","3745290","GW","false","" +"BW-0138","11S9.5E28.214","","406162","3689330","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0716","6.30.30.344","","609412","3841360","GW","true","" +"NM-05270","","","291858","3564260","GW","false","" +"NM-08273","","","670404","3616270","GW","false","" +"NM-27246","","","335440","3567080","GW","false","" +"QY-0711","6.30.15.343","","614101","3844620","GW","true","" +"HS-077","TC-077","","288581","3667721","GW","true","North on Morgan Street, bear right onto dirt road, right onto another road." +"NM-22412","","","594163","3886570","GW","false","" +"NM-10884","","","617896","3649640","GW","false","" +"QY-0257","11.30.5.242","","611549","3897140","GW","true","" +"NM-02644","","","557424","3638960","GW","false","" +"NM-01215","","","345710","3884610","GW","false","" +"NM-24951","","","404723","3948350","GW","false","" +"DE-0362","","","569160","3626556","GW","false","" +"NM-19965","","","396706","3835430","GW","false","" +"NM-06738","","","663608","3588920","GW","false","" +"NM-21028","","","663121","3860580","GW","false","" +"NM-08168","","","197346","3617870","GW","false","" +"EB-346","","","407590","3932255","GW","true","At Rancho Viejo crossroads west side of Gallina Arroyo; SEE EB-411, EB-412" +"NM-19317","","","239988","3827170","GW","false","" +"NM-11260","","","667624","3657040","GW","false","" +"NM-17997","","","679196","3800260","GW","false","" +"NM-24666","","","405569","3942740","GW","false","" +"NM-04307","","","286176","3544500","GW","false","" +"NM-22321","","","676356","3886750","GW","false","" +"UC-0020","","","677888","4043207","GW","true","11 miles east of Clayton on US56, gate on S side of road, go thru and turn sw around crop circle for 1/10th mile, well is ~ 100 feet back from edge of circle in corn." +"NM-14492","","","405559","3706510","GW","false","" +"NM-02084","","","357692","3558260","GW","false","" +"NM-07016","","","661048","3593720","GW","false","" +"NM-05960","","","673054","3572940","GW","false","" +"SD-0401","13N.5E.32.123","","369264","3909180","SP","true","" +"DE-0319","","","650203","3590791","GW","false","" +"EB-689","","","406889","3954249","GW","true","" +"NM-20201","","","589226","3839780","GW","false","" +"NM-26150","","","465509","4024260","GW","false","" +"NM-17489","","","640377","3789090","GW","false","" +"DE-0338","","","569369","3626794","GW","false","" +"BW-0648","15S8E10.4","","390573","3654330","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-28394","N-2016-093","","560141","3627010","GW","true","" +"NM-16441","","","660982","3772500","GW","false","" +"NM-04474","","","239183","3551180","GW","false","" +"NM-08551","","","187348","3624380","GW","false","" +"NM-12751","","","611860","3680270","GW","false","" +"NM-15978","","","200718","3759280","GW","false","" +"NM-09291","","","286152","3630660","GW","false","" +"NM-26381","","","622103","4055930","GW","false","" +"NM-21627","","","383880","3878010","GW","false","" +"NM-01400","","","177914","3936390","GW","false","" +"AH-070","AH-30","","438287","4042705","GW","true","" +"QY-0399","12.34.24.131","","655131","3902630","GW","true","" +"NM-01924","","","119296","3546810","GW","false","" +"NM-07448","","","183818","3606810","GW","false","" +"NM-07736","","","664882","3608260","GW","false","" +"NM-22022","","","268343","3884970","GW","false","" +"NM-13359","","","661989","3691550","GW","false","" +"NM-27805","","","651016","3801020","GW","false","" +"BW-0258","15S9E1.422","","403812","3656020","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"DE-0148","","","615391","3631475","GW","false","" +"NM-15730","","","673839","3749590","GW","false","" +"NM-00652","","","641547","3687030","GW","false","" +"SD-0136","10N.5E.10.242","","373939","3886060","GW","true","" +"NM-20933","","","601327","3856910","GW","false","" +"EB-040","","","416887","3942685","GW","true","" +"NM-08947","","","194641","3629180","GW","false","" +"NM-04295","","","286665","3544060","GW","false","" +"TB-0064","","","411355","3692175","GW","true","Bad directions - Three rivers Campground road 3-4 miles in? At shed right along road (on right side) head straight (main road to campground goes left I think). From the shed, look straight east for smaller shed. USE GPS location!" +"NM-06140","","","658651","3576830","GW","false","" +"NM-28382","N-2016-074","","559072","3619557","GW","true","" +"NM-22175","","","677323","3885220","GW","false","" +"QY-0090","10.32.32.42","","630988","3879160","GW","true","" +"QY-0433","13.33.11.144","","644570","3915200","GW","true","" +"NM-24349","","","435096","3934830","GW","false","" +"NM-05348","","","218318","3567490","GW","false","" +"NM-14185","","","297806","3700620","GW","false","" +"TV-237","SW-30","","439727","4018783","GW","true","From Stakeout Road, take left onto Brazelton. Well is at 0.9 miles between two driveways at crest of knob." +"NM-28057","","","664885","3893560","GW","false","" +"TO-0495","7N8E23.410","","402436","3853280","SP","true","" +"BC-0011","175","","374845","3887660","GW","true","" +"NM-27856","","","581905","3810170","GW","false","" +"NM-14558","","","138715","3715540","GW","false","" +"NM-22105","","","352449","3884040","GW","false","" +"NM-07072","","","629936","3594620","GW","false","" +"NM-26212","","","652686","4031920","GW","false","" +"NM-26608","","","193761","4075720","GW","false","" +"SO-0203","SAC-W04B","","324943","3791015","GW","true","" +"NM-05905","","","291224","3572900","GW","false","" +"NM-02918","","","666951","3742190","GW","false","" +"NM-12989","","","559952","3684160","GW","false","" +"TB-0076","","","403862","3678689","GW","true","Take Snake Tank Rd. off of Hwy 54 (just south of mile 89 on east side). Go through single green gate on north side of road before headquarters. From green gate, travel 2.4 mi north, for is 0.2 mi north of gravel pit on west side. Take fork to NW uphill to green tank on ridge." +"NM-26878","","","435833","4004547","GW","true","" +"NM-23252","","","347945","3899310","GW","false","" +"NM-08191","","","550355","3613670","GW","false","" +"NM-15640","","","655686","3746810","GW","false","" +"NM-11797","","","654704","3665090","GW","false","" +"NM-07773","","","559170","3607590","GW","false","" +"NM-03939","","","251197","3526030","GW","false","" +"NM-13432","","","473924","3690500","GW","false","" +"NM-04622","M-062","","219852","3555600","GW","false","" +"NM-27391","","","284798","3631830","GW","false","" +"NM-25097","","","307113","3956410","GW","false","" +"NM-02412","M-148","","222192","3592596","GW","false","10.3 mi N of US180 & NM26 intersection N of Deming between mile markers 153 and 154, turn left west on CR D017, go 2 miles west to Salopek ranch white gate (combo is 1951). Go north thru house yard to west of boxcar turn west across RR tracks thru gates to three way jxn of 2-tracks. Take north track 2 miles to N and W to tank w solar well. Go thru gate on W, loop around corrals get on two track parallel to RR, continue N on 2-track 0.7 miles past NM-02407 to old windmill now solar." +"NM-20165","","","599079","3839300","GW","false","" +"PP-013","PW-12","","439679","4005302","GW","true","" +"NM-02323","","","155545","3581650","GW","false","" +"NM-19808","","","590133","3832890","GW","false","" +"UC-0169","","","596541","4077943","GW","false","" +"NM-15556","","","677941","3744640","GW","false","" +"NM-09664","","","555383","3632150","GW","false","" +"TV-148","","","444389","4025434","GW","true","From SR 240, turn left (southwest) onto Tom Holder Road. Take first left into driveway (10 m) past turn to south. Follow driveway across bridge to house." +"NM-23722","","","667646","3913830","GW","false","" +"NM-04191","","","243124","3540900","GW","false","" +"NM-15569","","","677434","3745650","GW","false","" +"NM-16217","","","648037","3764160","GW","false","" +"ED-0133","21S27E29.343","","573862","3590080","GW","true","" +"NM-26282","","","474351","4039300","GW","false","" +"TV-167","","","442917","4022252","GW","true","From SR 68, go south on Golondrina Road to well on right, across from adobe home w/blue garage doors. Stick-up in field." +"NM-22596","","","616083","3888890","GW","false","" +"SB-0894","25.18.25.230","","494883","3551833","GW","true","" +"BW-0163","13S9E36.213","","403495","3668160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SO-0036","2N4E19.2","","356641","3806110","GW","true","" +"NM-20583","","","637816","3849350","GW","false","" +"QY-0989","9.34.22.432","","653355","3872860","GW","true","" +"NM-19885","","","653868","3835240","GW","false","" +"NM-20762","","","324507","3853870","GW","false","" +"NM-21053","","","639611","3861760","GW","false","" +"NM-10625","","","542506","3645660","GW","false","" +"NM-14795","","","170616","3724670","GW","false","" +"DE-0343","","","569328","3626690","GW","false","" +"NM-17742","","","553597","3792660","GW","false","" +"NM-05224","","","243145","3564610","GW","false","" +"NM-02033","","","678831","3554090","GW","false","" +"NM-22146","","","346541","3884470","GW","false","" +"ED-0182","22S26E3.133","","567013","3587600","GW","true","" +"NM-19825","","","395155","3833380","GW","false","" +"NM-21815","","","367248","3881010","GW","false","" +"NM-23132","","","453297","3895530","GW","false","" +"NM-10883","","","657275","3650280","GW","false","" +"NM-08761","","","287310","3624630","GW","false","" +"NM-11040","","","557743","3651010","GW","false","" +"NM-12063","","","131416","3674480","GW","false","" +"NM-04525","","","242681","3552470","GW","false","" +"NM-18705","","","679700","3812560","GW","false","" +"BC-0447","450","","380902","3869715","GW","false","" +"BC-0162","143","","376568","3891830","GW","true","" +"QU-179","","","443375","4062542","GW","true","Tailing facility, Dam 4 impoundment" +"WL-0179","","","433963","3938678","GW","true","From north on I-25 past Santa Fe, take Exit 299 onto NM-50 towards Pecos. Drive 2 miles, turn left (north) onto La Cueva Road. Drive 2 miles past ends of large spools, turn right into 208 A,B,C,D. Take 2 right turns to 208A. Well is behind garage." +"DE-0235","","","671031","3570005","GW","false","" +"BW-0562","16S9E25.3","","408721","3639740","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05676","","","241282","3570670","GW","false","" +"NM-13483","","","477053","3691080","GW","false","" +"AS-066","VAL-1","","447897","4043730","GW","true","" +"NM-18392","","","656533","3805990","GW","false","" +"WL-0129","","","252517","3774586","GW","true","From Hwy 60, ~5.5 miles west of turn off to VLA, turn south on country road, just across Hwy 60 from gate to Double H Ranch. Go south for 2 miles to house on left side of road. Well in steel vault just north of house. NEED LADDER TO ENTER VAULT." +"NM-18282","","","596348","3803230","GW","false","" +"NM-06345","","","582883","3580290","GW","false","" +"NM-06472","","","208146","3586490","GW","false","" +"NM-06982","","","674582","3593420","GW","false","" +"NM-06199","","","580685","3577320","GW","false","" +"NM-21416","","","345844","3872680","GW","false","" +"NM-09556","","","627264","3631920","GW","false","" +"NM-10384","","","655819","3643850","GW","false","" +"NM-02993","","","671486","3778670","GW","false","" +"NM-00703","","","633422","3694380","GW","false","" +"NM-07047","","","321479","3594780","GW","false","" +"QY-0972","9.32.10.242","","634384","3876580","GW","true","" +"BW-0101","8S11E6.444","","422483","3722150","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24356","","","300622","3937070","GW","false","" +"NM-06466","","","676188","3583770","GW","false","" +"SM-3007","","","447629","3641908","R","true","Site visited and sampled by Jeremiah Morse" +"NM-26547","","","633686","4066580","GW","false","" +"NM-16117","","","676765","3760860","GW","false","" +"NM-11657","","","670760","3663230","GW","false","" +"NM-02855","","","560631","3711970","GW","false","" +"NM-27290","","","364862","3581930","GW","false","" +"NM-13043","","","620202","3685860","GW","false","" +"NM-22181","","","631992","3884570","GW","false","" +"NM-14745","","","678480","3718520","GW","false","" +"BW-0484","1S8E3.121","","399619","3790680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-21650","","","355304","3878790","GW","false","" +"NM-24646","","","412480","3942020","GW","false","" +"NM-26898","PW-091","","373700","3912880","GW","true","" +"NM-20040","","","158194","3842540","GW","false","" +"NM-18913","","","660511","3814860","GW","false","" +"ED-0189","22S26E9.12","","566075","3586410","GW","true","" +"NM-18553","","","609294","3808110","GW","false","" +"NM-10207","","","678755","3641490","GW","false","" +"NM-14445","","","403972","3705330","GW","false","" +"NM-04116","","","342620","3534950","GW","false","" +"NM-23706","","","372935","3912450","GW","false","" +"NM-27105","CAR-35","","428093","4024150","GW","false","" +"SD-0064","8N.7E.22.332","","391488","3863710","GW","true","" +"NM-22628","","","642550","3889660","GW","false","" +"NM-07281","","","222044","3601730","GW","false","" +"NM-08557","","","658917","3620820","GW","false","" +"NM-06621","","","647311","3586670","GW","false","" +"NM-18088","","","677615","3801820","GW","false","" +"WL-0126","","","307370","3780576","GW","true","From US 60, just east of Magdalena, take La Hinca Rd on north side of road and follow for 5.5 miles to ranch HQ at end of road. From ranch headquarters, take faint 2-track to northeast 1/2 mile to windmill along section fence. Well under windmill." +"NM-08716","","","598386","3622380","GW","false","" +"TO-0509","5N8E18.341","","395367","3835440","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-27624","","","639690","3783720","GW","false","" +"NM-09165","","","639124","3628320","GW","false","" +"NM-04345","","","225850","3547360","GW","false","" +"NM-27285","","","364166","3580680","GW","false","" +"NM-28092","","","277210","3904350","GW","false","" +"NM-09018","","","555864","3625190","GW","false","" +"NM-25540","","","576471","3980280","GW","false","" +"NM-26503","","","572146","4063190","GW","false","" +"NM-06696","","","561330","3586850","GW","false","" +"NM-02286","","","328240","3574700","GW","false","" +"NM-01521","","","610330","3967170","GW","false","" +"NM-22765","","","380754","3890840","GW","false","" +"NM-22558","","","601815","3888250","GW","false","" +"NM-10172","","","553473","3639160","GW","false","" +"NM-01618","","","284668","4020910","GW","false","" +"NM-12168","","","626967","3670910","GW","false","" +"BW-0820","2.3.9.3.122","","409364","3819740","GW","true","" +"NM-02003","","","678506","3551710","GW","false","" +"NM-07777","","","677151","3609050","GW","false","" +"NM-09377","","","678314","3631350","GW","false","" +"NM-23377","","","630983","3901790","GW","false","" +"NM-20553","","","610380","3847590","GW","false","" +"NM-17627","","","666767","3791830","GW","false","" +"NM-05545","","","209169","3570210","GW","false","" +"NM-24087","","","346891","3928080","GW","false","" +"AR-0032","A005","NMED 32","208636","4070270","GW","true","From Hwy 64 heading west out of Farmington (aka W. Main St), make left (south) on Kerney Drive (after Troy Kng Rd on right), take first left (east), take second right (south). Just before ditch make left, follow down then across ditch and straight to property on river. Well is in middle part of circular driveway." +"BC-0238","238","","377859","3892090","GW","true","" +"NM-24863","","","410561","3946290","GW","false","" +"NM-19163","","","608876","3819880","GW","false","" +"NM-05787","","","330131","3570420","GW","false","" +"NM-01817","","","346605","3523470","GW","false","" +"NM-08876","","","288106","3625840","GW","false","" +"QY-0233","11.30.27.111","","613487","3891100","GW","true","" +"NM-13227","","","139192","3694370","GW","false","" +"NM-08739","","","409093","3622550","GW","false","" +"NM-23694","","","396454","3911600","GW","false","" +"NM-24716","","","459230","3943660","GW","false","" +"NM-00347","","","409070","3622980","GW","false","" +"NM-14205","","","544548","3698790","GW","false","" +"EB-466","","","412797","3954172","GW","true","" +"NM-03867","","","238486","3522840","GW","false","" +"NM-13482","","","550036","3691180","GW","false","" +"NM-25809","","","395153","3997610","GW","false","" +"NM-21017","","","638041","3859770","GW","false","" +"NM-00115","","","438357","3555780","GW","false","" +"NM-19889","","","628023","3835060","GW","false","" +"NM-17868","","","152331","3802350","GW","false","" +"NM-15233","","","578924","3736040","GW","false","" +"NM-07414","","","185499","3606270","GW","false","" +"NM-20605","","","611354","3849080","GW","false","" +"NM-16638","","","679526","3776290","GW","false","" +"NM-23115","","","649828","3896590","GW","false","" +"SV-0084","34 Prado Vista","","377318","3898842","GW","false","Unit 3 Lot 9" +"AH-080","DM-09","","443831","4042801","GW","true","" +"SA-1011","","","259260","3717900","SP","true","Just west of the Box, north of Alamosa Creek drainage about 0.2 mile along trail. This is site for small seep just west of main pool." +"NM-26050","","","592447","4016390","GW","false","" +"NM-12029","","","679443","3669210","GW","false","" +"NM-20748","","","342124","3853220","GW","false","" +"NM-20340","","","631654","3842880","GW","false","" +"TO-0323","7N10E30.411","","415199","3851540","GW","true","" +"BW-0405","17S10E19.142","","410459","3630830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-24548","","","397784","3939590","GW","false","" +"TS-056","","","433641","4021102","SP","true","South of TJ bridge on east side. Piped at road. Source is in arroyo about 100' above road." +"NM-15471","","","329542","3742990","GW","false","" +"NM-02123","","","265511","3562680","GW","false","" +"NM-09673","","","652468","3633690","GW","false","" +"NM-16752","","","679845","3778420","GW","false","" +"QY-0422","12.37.18.424","","677429","3903980","GW","true","" +"BC-0224","224","","375513","3891950","GW","true","" +"NM-20815","","","342848","3854560","GW","false","" +"NM-06124","","","564512","3575450","GW","false","" +"QY-0360","12.29.26.213","","606296","3900320","GW","true","" +"BW-0920","4.2.25.18","","559293","3777250","SP","true","" +"NM-00723","","","431434","3695940","GW","false","" +"NM-20184","","","171690","3844830","GW","false","" +"NM-24100","","","401582","3927930","GW","false","" +"NM-26136","","","318291","4024890","GW","false","" +"AB-0102","S116","","361321","3886830","GW","true","" +"NM-15394","","","671839","3742190","GW","false","" +"NM-05034","","","342292","3559590","GW","false","" +"NM-00184","","","586698","3574630","GW","false","" +"CX-0121","25","","553593","4068270","GW","true","3 1/2 miles northeast of Hebron" +"NM-09398","","","284772","3631830","GW","false","" +"NM-17926","","","617443","3797740","GW","false","" +"NM-04589","","","136783","3557520","GW","false","" +"BC-0112","97","","381302","3870470","GW","true","" +"SM-3032","","","427648","3621902","PS","true","about 1.2 mi north of site SM-3023, upstream." +"BC-0097","190","","377307","3892580","GW","true","" +"SO-0027","2N3E18.24","","347314","3807800","GW","true","" +"NM-27508","","","400326","3651520","GW","false","" +"NM-09728","","","632775","3634050","GW","false","" +"NM-18993","","","613234","3815890","GW","false","" +"PC-082","PW-146","","370480","3911916","GW","true","" +"NM-05663","","","203783","3571570","GW","false","" +"NM-09031","","","189402","3629990","GW","false","" +"NM-18866","","","599230","3813240","GW","false","" +"NM-04476","","","675399","3549380","GW","false","" +"QY-0928","9.27.13.344","","588629","3873400","GW","true","" +"NM-05118","","","240683","3562640","GW","false","" +"TV-215","","","443658","4012416","GW","true","On ridge. Well is welded shut." +"NM-12851","","","139069","3688270","GW","false","" +"NM-17992","","","643703","3799150","GW","false","" +"AB-0245","","","592349","3762606","GW","true","" +"QY-0303","11.32.19.424","","629301","3892130","GW","true","" +"NM-05747","","","256122","3571190","GW","false","" +"NM-15486","","","645941","3743600","GW","false","" +"NM-14463","","","677609","3707010","GW","false","" +"NM-12163","","","677037","3671780","GW","false","" +"NM-25815","","","426182","3997850","GW","false","" +"SV-0038","13 La Aguapa","","378232","3901631","GW","false","Unit 3 Lot 106" +"NM-12119","","","678580","3671010","GW","false","" +"NM-09477","","","646697","3631790","GW","false","" +"NM-18140","","","610523","3801380","GW","false","" +"NM-05978","","","588888","3572250","GW","false","" +"NM-23555","","","369521","3908590","GW","false","" +"NM-24317","","","412532","3934410","GW","false","" +"TO-0210","6N7E7.244","","386680","3847280","GW","true","" +"NM-24928","","","224326","3951660","GW","false","" +"NM-22018","","","600764","3882540","GW","false","" +"NM-12416","","","213985","3677690","GW","false","" +"NM-00560","","","664371","3658530","GW","false","" +"SB-0762","TWDB 4924420","","395035","3506362","GW","false","" +"NM-03489","","","668111","3924070","GW","false","" +"NM-05528","","","206909","3570030","GW","false","" +"NM-16602","","","632867","3775480","GW","false","" +"NM-06975","","","571403","3591970","GW","false","" +"NM-13335","","","549864","3689490","GW","false","" +"UC-0103","","","653523","4001352","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-19278","","","571495","3822780","GW","false","" +"NM-00542","","","667644","3655870","GW","false","" +"NM-22796","","","351258","3891740","GW","false","" +"SV-0092","22 Punta Linda","","379212","3900792","GW","false","Unit 3 Lot 158" +"RA-015","","","394967","4001875","GW","true","20 ft from cement house." +"NM-08636","","","557217","3620820","GW","false","" +"NM-12907","","","545787","3682420","GW","false","" +"UC-0174","","","674038","4081849","GW","false","" +"NM-17104","","","655586","3784060","GW","false","" +"NM-27904","","","257730","3826560","GW","false","" +"NM-08179","","","560723","3613580","GW","false","" +"SD-0025","7N.7E.5.444","","388350","3857880","GW","true","" +"HS-065","TC-065","","290782","3671749","GW","true","Exit 79, highway 181, left near bridge at office. On west side of road, north of bridge. Well is in the mine." +"NM-26850","","","550072","3685615","GW","true","" +"SD-0049","7N.8E.31.333","","395709","3850380","GW","true","" +"NM-00996","","","328108","3819910","GW","false","" +"NM-26009","","","216670","4016200","GW","false","" +"NM-05828","","","239719","3573080","GW","false","" +"NM-25652","","","293586","3987390","GW","false","" +"NM-03968","","","338139","3525620","GW","false","" +"NM-25855","","","194898","4005550","GW","false","" +"NM-12747","","","657267","3681360","GW","false","" +"NM-23402","","","407821","3902290","GW","false","" +"NM-26045","","","480517","4015370","GW","false","" +"NM-21140","","","403704","3864310","GW","false","" +"BW-0471","26S8E2.131","","395906","3549230","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-03012","","","650615","3783190","GW","false","" +"NM-06022","","","278607","3575420","GW","false","" +"NM-01881","","","132767","3541560","GW","false","" +"NM-13006","","","556951","3684420","GW","false","" +"QY-0419","12.36.18.242","","667647","3904410","GW","true","" +"SB-0730","TWDB 4923506","","388948","3505964","GW","false","" +"NM-25427","","","282213","3975330","GW","false","" +"NM-16440","","","563589","3770880","GW","false","" +"DA-0074","23S3W20.432","","295769","3574380","GW","true","" +"BW-0600","25S4E11","","358078","3557810","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20587","","","404404","3848600","GW","false","" +"NM-13752","","","539968","3694590","GW","false","" +"LC-022","","","397721","3939493","SP","true","Spring discharges to pond on east side of house, just above Santa Fe River drainage" +"NM-26491","","","460444","4062650","GW","false","" +"NM-18811","","","573800","3811890","GW","false","" +"NM-06055","","","581759","3573850","GW","false","" +"BC-0094","81","","375334","3892700","GW","true","" +"NM-01851","","","120808","3535880","GW","false","" +"NM-25382","","","405906","3972040","GW","false","" +"NM-19166","","","663919","3821330","GW","false","" +"NM-14178","","","134471","3705230","GW","false","" +"NM-24408","","","440042","3936460","GW","false","" +"NM-25240","","","510966","3963660","GW","false","" +"NM-07586","","","663043","3605890","GW","false","" +"NM-18533","","","659949","3808360","GW","false","" +"NM-11663","","","678123","3663360","GW","false","" +"QY-0011","10.27.7.123","","580242","3885720","GW","true","" +"NM-06976","","","358922","3592700","GW","false","" +"NM-28175","","","196542","3997370","GW","false","" +"NM-19969","","","607698","3835610","GW","false","" +"NM-16584","","","651882","3775560","GW","false","" +"NM-24762","","","405338","3944680","GW","false","" +"NM-15861","","","631176","3751400","GW","false","" +"QY-0062","10.30.9.412","","612860","3885370","GW","true","" +"NM-22506","","","374675","3887900","GW","false","" +"NM-28089","","","229227","3904650","GW","false","" +"SD-0272","11N.6E.27.322","","382541","3890040","GW","true","" +"TO-0187","5N9E6.311","","404679","3838900","GW","true","" +"NM-20157","","","570047","3838970","GW","false","" +"NM-23683","","","336721","3912080","GW","false","" +"NM-18981","","","571249","3815040","GW","false","" +"NM-01874","","","253123","3536070","GW","false","" +"WL-0008","NM3512714","","433188","3783347","GW","true","East on Hwy 60 from I-25. At Willard go south on Rt 42 to Corona. Right on Rt 54 at Corona south ~9.5 miles. Turn left (west) on Gallinas Station Rd (aka A019), then right (north) on A022 and left on A023. Well is ~2.1 miles up the road on the left in fenced enclosure." +"BC-0081","66","","375584","3890660","GW","true","" +"NM-02233","","","230611","3571380","GW","false","" +"SA-0133","","","224926","3771132","GW","true","From Datil, take rt 12 south 10 miles, look for county road (Green Gap Road) off to the West (R). Take county road for 1.4 miles, looking for 2-track heading to N (R). Go through fence, follow 2-track for 0.3 miles to Broken Well. Look for windmill and corral. Well visible from county road." +"NM-03704","","","159332","3485450","GW","false","" +"NM-12847","","","650380","3683130","GW","false","" +"NM-27832","","","570245","3806100","GW","false","" +"NM-21318","","","343991","3870870","GW","false","" +"ED-0229","22S27E28.133","","575129","3581180","GW","true","" +"NM-11627","","","559574","3661330","GW","false","" +"NM-14657","","","548865","3713070","GW","false","" +"SM-0222","","","478576","3672168","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Continue on this road for 9.6 miles, at which point you will pass close to the Clements Ranch headquaters at 24.5 miles. The Leonard Ranch headquaters will be on right side of road at 27.2 miles. Continue on the county road for 4 miles, at which point the road crosses Monument Canyon arroyo. Take road on right for 1/2 mile, leading to the Wright ranch headquaters. Rock house well located to the right, on slope above the arroyo and ranch complex. Multiple wells/windmills found in area, check photo to be sure." +"NM-16374","","","598236","3769270","GW","false","" +"BW-0060","25S5E31.21","","361408","3551920","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"AR-0235","","","244333","4100678","GW","true","Heading north on Hwy 550 into Colorado 1.2 miles, turn right (east) at cattle guard w/4 black mailboxes. Cross cattle guard and turn left (north). Follow gravel drive (turns right or east again) to well on left (north) side of road. Well is in small white stucco building." +"NM-04674","","","670154","3553970","GW","false","" +"NM-00144","","","488484","3561950","GW","false","" +"NM-08256","","","676581","3616160","GW","false","" +"NM-14949","","","150428","3731180","GW","false","" +"NM-21864","","","348976","3881630","GW","false","" +"NM-02562","","","154444","3626940","GW","false","" +"NM-08018","","","308140","3612620","GW","false","" +"NM-18095","","","595685","3800600","GW","false","" +"NM-27198","","","426891","3889513","GW","false","" +"NM-05923","","","252158","3574030","GW","false","" +"NM-10287","","","675043","3642630","GW","false","" +"NM-11245","","","405035","3655360","GW","false","" +"NM-13392","","","543967","3690170","GW","false","" +"NM-04464","","","127232","3554260","GW","false","" +"WL-0104","S-2016-055","","599292","3542000","GW","true","" +"NM-22713","","","349976","3890740","GW","false","" +"NM-03597","","","567265","3990230","GW","false","" +"NM-26127","","","204282","4026800","GW","false","" +"NM-06275","","","362766","3579680","GW","false","" +"SV-0079","07 Prado Vista","","377615","3898456","GW","false","Unit 2 Lot 32" +"NM-26919","","","375597","3889970","GW","true","" +"NM-10715","","","544918","3646350","GW","false","" +"BW-0866","2.2.26.10","","573332","3808160","GW","true","" +"NM-06625","","","673784","3586750","GW","false","" +"NM-21651","","","417152","3878050","GW","false","" +"NM-23266","","","379011","3899030","GW","false","" +"NM-18686","","","505437","3809780","GW","false","" +"NM-24664","","","406649","3942600","GW","false","" +"NM-09195","","","559910","3627460","GW","false","" +"NM-08395","","","673311","3618410","GW","false","" +"SO-0085","1S1E1.43","","335240","3790970","GW","true","Benchmark at well." +"NM-27497","","","564117","3734450","GW","false","" +"NM-08296","","","543132","3615180","GW","false","" +"NM-04343","","","681480","3545270","GW","false","" +"NM-10047","","","408112","3637500","GW","false","" +"NM-15405","","","636577","3742080","GW","false","" +"NM-13355","","","630352","3690820","GW","false","" +"NM-09550","","","640193","3631820","GW","false","" +"NM-24980","","","650626","3949800","GW","false","" +"NM-07408","","","664193","3602610","GW","false","" +"SD-0057","8N.6E.35.444","","383643","3859490","GW","true","" +"NM-20102","","","558222","3837780","GW","false","" +"NM-20937","","","644806","3857590","GW","false","" +"SB-0638","TWDB 4914302","","381159","3526961","GW","false","" +"WL-0003","NM3503821","","351674","4081368","GW","true","North on Rt 84/64 towards Chama, left on Rt 64 west, after mile marker 156 turn left (south) on Elk Drive. Approx. 0.5 mile turn left after fence post marked 47 (and no trespassing sign) uphill on dirt road to green well house. Well located under large metal green case on concrete pad to west of green well house.Wellntel combo 314" +"NM-13341","","","549269","3689580","GW","false","" +"NM-19714","","","582253","3831280","GW","false","" +"NM-02944","","","417847","3746070","GW","false","" +"NM-13409","","","556502","3690360","GW","false","" +"NM-13902","","","553631","3695480","GW","false","" +"SB-0386","TWDB 4807916","","486944","3527851","GW","false","" +"NM-08382","","","276629","3619250","GW","false","" +"MI-0198","","","499132","3941706","GW","true","Topographic situation: Plateau" +"NM-20842","","","532412","3854100","GW","false","" +"NM-19399","","","571959","3825460","GW","false","" +"NM-09693","","","561024","3632460","GW","false","" +"NM-09141","","","637958","3627930","GW","false","" +"WL-0034","","","465012","3550258","GW","true","Go N to Dell City on 1437 from Hwy 62. Make left on Rt 2249 (Broadway Dr) in Dell City. When pavement ends take dirt road for 2 miles and make right on Lynch Road (right before cattle guard). Go 2.1 mile then make left on Jones Ranch Rd (cross cattle guard). Go 5.2 mi to state line, then another 7.4 mi to Bennett Ranch (you will be on F017. Bobby will meet you at Bennett Ranch." +"NM-04985","","","269832","3560210","GW","false","" +"TO-0548","8N9E34.44","","410973","3859220","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"HS-043","TC-043","","289826","3667777","GW","true","SW Corner of Pershing and Broadway in the parking lot, the one closer to the corner" +"OG-0070","","","650408","3807575","GW","true","" +"NM-11053","","","614784","3651630","GW","false","" +"NM-27961","","","137181","3860140","GW","false","" +"NM-19630","","","407880","3830110","GW","false","" +"HS-005","TC-005","","286422","3677031","GW","true","Continue down on dirt road from production well #6. East of Well #6, west of mesquite rd" +"DA-0196","24S2E1.441","","341158","3568870","GW","true","" +"NM-03479","","","371113","3919260","GW","false","" +"NM-02398","","","573824","3585770","GW","false","" +"NM-12565","","","555418","3676550","GW","false","" +"NM-16632","","","232929","3778270","GW","false","" +"NM-15282","","","672248","3739480","GW","false","" +"NM-20444","","","666669","3845640","GW","false","" +"CX-0082","24N25E25.42","","569564","4015570","GW","true","" +"QY-0800","7.31.34.133","","623339","3850380","GW","true","" +"NM-02242","M-116","","251330","3572688","GW","false","From east side of Deming, go east on NM549 for 2.6 miles (0.9 miles from NM-02249). Go east on dirt track next to trees for 0.5 miles. Well located at edge of trees." +"TB-0178","","","404895","3706179","GW","true","Oscuro County Road A0002, approx 3 miles to 300 Grand Ave. Two-story house. Past driveway at 2-story to ranch house on north side of road. West of ranch house well on 2-track to old cement tank and well house. Southwest of west well, look for 4 posts and open hole." +"TS-039","","","435691","4041303","SP","true","Small seep on east side." +"NM-04680","","","667635","3554060","GW","false","" +"DA-0156","26S3E22.443","","347206","3544420","GW","true","" +"NM-14595","","","667119","3711910","GW","false","" +"NM-17198","","","678223","3785570","GW","false","" +"SB-0625","TWDB 4907401","","382000","3536128","GW","false","" +"TO-0226","6N8E11.433","","401987","3846450","GW","true","" +"NM-08465","","","313873","3619660","GW","false","" +"NM-14474","","","477267","3705550","GW","false","" +"NM-10251","","","636672","3641840","GW","false","" +"NM-26715","","","450068","4081460","GW","false","" +"NM-05110","","","269583","3561910","GW","false","" +"CP-0032","","","670784","3812976","GW","true","North on Curry County Road G on east side of Clovis. Heads north from 70 near Cooks Truck Stop. House is on east side of road. Look for ""Hankins Road"" sign. Well is at end of driveway in pasture at NE corner." +"TO-0424","9N10E18.411","","416586","3873660","GW","true","" +"NM-09660","","","409418","3632560","GW","false","" +"NM-01008","","","656068","3824840","GW","false","" +"QU-118","","","446124","4061091","GW","true","From north on Hwy 522, find Lower Embargo Road on the right just past the Mustang station. Proceed ~500 m to #15 on the left." +"SM-0260","","","444758","3641358","GW","true","" +"NM-02200","","","263755","3568330","GW","false","" +"NM-09895","","","161201","3640750","GW","false","" +"NM-14491","","","545856","3706040","GW","false","" +"NM-01299","","","371896","3905980","GW","false","" +"NM-01903","","","121115","3543110","GW","false","" +"NM-16800","","","645421","3779030","GW","false","" +"SM-5001","","","478441","3639628","M","true","Hwy 82 between miles 55 and 56. 4839 Rio Penasco (20 mi east of Mayhill). Precip station is NW of house ~200 yards, up on slight hill near juniper trees and well. If gate is locked, they are out of town, and key is available from someone at Fruit Stand (just east of house). If no one at fruit stand, contact Camille (lives in stone house by stand) 505-687-3330 or 505-703-3348. HAS WEATHER STATION INSTALLED in addition to PRECIP COLLECTOR. See SM-2008" +"NM-05229","","","251031","3564440","GW","false","" +"NM-00055","26.18.21.223","","490326","3544180","GW","false","" +"PC-053","PW-086","","367047","3907438","GW","true","" +"NM-25473","","","389244","3975130","GW","false","" +"NM-13728","","","547850","3694250","GW","false","" +"NM-26922","PW-166","","365637","3909472","GW","true","" +"NM-15026","","","562820","3728250","GW","false","" +"NM-23625","","","360678","3910140","GW","false","" +"NM-04928","","","266038","3559400","GW","false","" +"QY-0663","6.27.17.432","","582310","3844480","GW","true","" +"NM-00609","","","675413","3668300","GW","false","" +"NM-21162","","","582662","3865080","GW","false","" +"NM-11319","","","403078","3656890","GW","false","" +"NM-15809","","","671754","3751180","GW","false","" +"NM-14066","","","627258","3698080","GW","false","" +"NM-15782","","","628788","3749430","GW","false","" +"NM-23118","","","350923","3896590","GW","false","" +"QY-0356","11.36.15.424","","672614","3894060","GW","true","" +"QY-0837","7.33.18.311","","637765","3855210","GW","true","" +"UC-0178","","","612907","4074363","GW","false","" +"AS-016","DM-102","","445771","4041830","GW","true","" +"NM-14839","","","604221","3721370","GW","false","" +"NM-23008","","","349944","3894610","GW","false","" +"NM-15501","","","674347","3744330","GW","false","" +"NM-05690","","","237123","3570960","GW","false","" +"NM-04683","","","677245","3554830","GW","false","" +"NM-02197","","","335648","3566780","GW","false","" +"CX-0162","80","","519631","4021170","GW","true","1 mile southeast of Miami" +"NM-07666","","","206041","3610140","GW","false","" +"NM-07032","","","647882","3594010","GW","false","" +"NM-23430","","","215231","3907820","GW","false","" +"NM-09977","","","580442","3636260","GW","false","" +"NM-22070","","","373386","3883330","GW","false","" +"NM-04821","","","664109","3556460","GW","false","" +"NM-21600","","","343098","3877940","GW","false","" +"NM-16713","","","636429","3777230","GW","false","" +"NM-18156","","","593660","3801260","GW","false","" +"NM-11870","","","561238","3664860","GW","false","" +"NM-08992","","","674553","3626260","GW","false","" +"NM-22856","","","377532","3892110","GW","false","" +"SO-0254","SMC-W07A","","314808","3728401","GW","true","" +"NM-02504","","","559589","3611600","GW","false","" +"NM-17344","","","648937","3786750","GW","false","" +"NM-27542","","","584499","3780130","GW","false","" +"NM-02043","","","343974","3554790","GW","false","" +"NM-26415","","","588153","4060540","GW","false","" +"TS-105","","","436940","4044179","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"NM-09557","","","636262","3632040","GW","false","" +"NM-27450","","","413313","3693470","GW","false","" +"NM-01655","","","270744","4040850","GW","false","" +"NM-14164","","","546926","3698280","GW","false","" +"NM-14210","","","552501","3698930","GW","false","" +"NM-18036","","","548347","3799030","GW","false","" +"NM-15028","","","542481","3728200","GW","false","" +"SA-0248","","","234665","3779672","GW","true","From mile marker 72 on Hwy 12, go 0.3 ? Mile south and east thru gate to WM. Walraven Ranch, houses, corrals. Very near SA-0021 metal windmill. Do not confuse!" +"NM-25395","","","412277","3972310","GW","false","" +"SO-0182","HWY-W07B","","328803","3755363","GW","true","" +"SB-0274","TWDB 4807417","","476871","3534458","GW","false","" +"NM-00882","","","385247","3777060","GW","false","" +"QY-0133","10.36.3.224","","672795","3888530","GW","true","" +"QY-0742","6.32.4.211","","631959","3849370","GW","true","" +"NM-12585","","","629182","3677690","GW","false","" +"SM-0156","","","510643","3627514","GW","true","South of Hwy 82, east of Hope. Turn south on Cauhape Ranch Rd (0 mi), go 1.5 mi to bridge, at 3.6 mi turn left. Windmill at 5.5 mi." +"NM-00898","","","537464","3786950","GW","false","" +"NM-03791","","","352337","3518410","GW","false","" +"QY-0134","10.36.3.422","","672766","3887920","GW","true","" +"NM-20155","","","546511","3838760","GW","false","" +"TC-238","","","411370","4098418","GW","true","" +"NM-19473","","","387319","3827240","GW","false","" +"NM-03632","","","669136","4022520","GW","false","" +"SV-0151","08 Vista la Madera","","377134","3900763","GW","false","" +"NM-07413","","","185604","3606260","GW","false","" +"NM-25968","","","571494","4006890","GW","false","" +"NM-09017","","","646201","3626600","GW","false","" +"SA-0510","8S16W2.434","","179093","3727440","GW","true","" +"NM-04041","","","255460","3532680","GW","false","" +"NM-06727","","","569345","3587580","GW","false","" +"NM-11495","","","563553","3659510","GW","false","" +"NM-13187","","","668245","3688700","GW","false","" +"NM-10077","","","622837","3638610","GW","false","" +"NM-18578","","","671434","3809420","GW","false","" +"NM-16237","","","226532","3767320","GW","false","" +"SM-0149","","","468585","3634585","GW","true","Miller Flats area. Site visit by Jeremiah Morse in May 2007" +"NM-26017","","","201221","4017670","GW","false","" +"NM-26387","","","413398","4056730","GW","false","" +"SA-0129","","","243088","3782937","GW","true","From Highway 60 west of MM 81 at the crossroads with cattle guards turn north (right) on county road (aka Kennedy Hall Road). After ยพ of a mile road turns into a two track as you pass the gate to the Kennedy Ranch. Stay on road for one mile and go thru gate to the well east of the well house." +"NM-10243","","","650212","3641790","GW","false","" +"NM-08963","","","658622","3626240","GW","false","" +"NM-11684","","","560269","3662260","GW","false","" +"NM-21985","","","346021","3882900","GW","false","" +"NM-16428","","","672756","3772250","GW","false","" +"NM-00639","","","652380","3677710","GW","false","" +"NM-13219","","","556052","3687800","GW","false","" +"NM-17456","","","647038","3788670","GW","false","" +"RA-501","","","394342","4003069","D","false","" +"NM-01899","","","347579","3536410","GW","false","" +"NM-22634","","","376787","3889460","GW","false","" +"NM-21424","","","378532","3872290","GW","false","" +"NM-09490","","","408700","3630780","GW","false","" +"NM-24544","","","630629","3939930","GW","false","" +"NM-17584","","","597049","3789830","GW","false","" +"NM-21177","","","568270","3865760","GW","false","" +"NM-05299","","","245772","3565870","GW","false","" +"NM-13810","","","550145","3695070","GW","false","" +"SM-0048","","","442640","3635045","GW","true","Hwy 24 to 96 Upper Rio Penasco Rd. House is on south side of road, well is on north side, by water tank. Right turn up steep little road gets you there. Big silver turbine pump." +"NM-05748","","","670020","3569710","GW","false","" +"BC-0215","215","","381975","3879950","GW","true","" +"NM-26155","","","465910","4024630","GW","false","" +"NM-05280","","","211467","3566260","GW","false","" +"NM-10297","","","553462","3641160","GW","false","" +"TO-0328","7N11E34.311","","428808","3850010","GW","true","" +"TO-0401","9N8E9.443","","400575","3875010","GW","true","" +"NM-02681","","","554965","3646590","GW","false","" +"NM-18703","","","676206","3812370","GW","false","" +"NM-08748","","","204361","3626540","GW","false","" +"NM-09044","","","671961","3627140","GW","false","" +"SO-0015","1N4E29.413","","357816","3794240","GW","true","" +"NM-01539","","","277436","3978470","GW","false","" +"NM-13422","","","624036","3691450","GW","false","" +"DA-0200","23S2E1.33","","340264","3578480","GW","true","" +"BC-0220","220","","373410","3882430","GW","true","" +"NM-13699","","","632549","3694700","GW","false","" +"NM-22328","","","513999","3885140","GW","false","" +"TO-0342","8N7E23.144","","392482","3863190","GW","true","" +"NM-25691","","","428007","3988650","GW","false","" +"QY-0792","7.31.24.212","","627371","3854120","GW","true","" +"NM-25563","","","650177","3982120","GW","false","" +"PC-084","PW-151","","370616","3912701","GW","true","" +"NM-16676","","","547418","3775500","GW","false","" +"QY-0371","12.32.1.422","","637008","3906790","GW","true","" +"NM-13832","","","546166","3695140","GW","false","" +"NM-25132","","","404482","3956280","GW","false","" +"NM-16723","","","552666","3776230","GW","false","" +"NM-01997","","","680613","3551200","GW","false","" +"NM-15327","","","680310","3740460","GW","false","" +"NM-00491","","","659388","3646130","GW","false","" +"NM-06836","","","672979","3590960","GW","false","" +"NM-23569","","","410787","3908360","GW","false","" +"QY-0893","8.31.26.431","","625454","3860950","GW","true","" +"NM-26869","PW-40","","435547","4004769","GW","true","" +"NM-09616","","","559000","3631670","GW","false","" +"NM-01100","","","596789","3853780","GW","false","" +"NM-12607","","","553783","3677350","GW","false","" +"NM-09948","","","619456","3636590","GW","false","" +"NM-00454","","","648260","3641290","GW","false","" +"NM-26418","","","223324","4064580","GW","false","" +"NM-12608","","","553757","3677350","GW","false","" +"NM-21624","","","355347","3878330","GW","false","" +"NM-23732","","","412980","3913150","GW","false","" +"NM-18931","","","509146","3813640","GW","false","" +"NM-14542","","","633176","3709160","GW","false","" +"NM-01180","S153","","354485","3876270","GW","false","" +"NM-17671","","","623914","3791690","GW","false","" +"NM-07275","","","225881","3601590","GW","false","" +"NM-13455","","","636124","3692200","GW","false","" +"NM-26426","","","283486","4063220","GW","false","" +"NM-11030","","","611596","3651190","GW","false","" +"NM-20518","","","570751","3846650","GW","false","" +"NM-15633","","","679744","3747260","GW","false","" +"NM-04121","M-032","","253942","3537340","GW","false","" +"NM-14073","","","270127","3699630","GW","false","" +"EB-154","","","411920","3950119","GW","true","East of landfill off Paseo de Vista; down track just S of refrigs, through chain gate" +"CX-0100","23N26E4.4","","574483","4012170","GW","true","" +"NM-10160","","","455079","3638930","GW","false","" +"NM-18073","","","663483","3801140","GW","false","" +"NM-01679","","","491875","4049580","GW","false","" +"NM-00486","","","651760","3646230","GW","false","" +"NM-13353","","","551362","3689770","GW","false","" +"NM-15362","","","631580","3740780","GW","false","" +"NM-17099","","","651368","3783650","GW","false","" +"NM-22275","","","677504","3886310","GW","false","" +"NM-27413","","","609130","3651230","GW","false","" +"NM-20249","","","549455","3840280","GW","false","" +"NM-18417","","","656074","3806290","GW","false","" +"NM-02198","","","335648","3566780","GW","false","" +"NM-06878","","","660090","3591580","GW","false","" +"NM-20744","","","527720","3851870","GW","false","" +"NM-27306","","","529550","3584550","GW","false","" +"NM-27994","","","356884","3879870","GW","false","" +"SB-0331","TWDB 4807623","","487659","3532592","GW","false","" +"NM-23834","","","366662","3916830","GW","false","" +"NM-25407","","","411203","3972660","GW","false","" +"NM-27835","","","647037","3780560","GW","false","" +"NM-20924","","","630130","3857090","GW","false","" +"NM-12772","","","654366","3681470","GW","false","" +"NM-15858","","","327545","3752030","GW","false","" +"TV-107","","","440249","4019644","GW","true","Near intersection of Stakeout Dr and Tierra Blanca. Well just west of Stakeout restaurant. Consisting of large vault and 12"" steel casing. Located ~50 yds. from concrete vault w/pressure tank and plumbing." +"NM-26473","","","459343","4062270","GW","false","" +"NM-11820","","","286801","3666550","GW","false","" +"AB-0068","S078","","348099","3896530","GW","true","" +"NM-03402","","","408099","3890140","GW","false","" +"BC-0452","","","229578","3988111","GW","true","" +"NM-15691","","","246406","3749930","GW","false","" +"NM-06620","","","339273","3586400","GW","false","" +"NM-08781","","","560745","3622820","GW","false","" +"NM-03074","","","572077","3800360","GW","false","" +"NM-12108","","","629490","3669370","GW","false","" +"NM-02362","","","574309","3580290","GW","false","" +"NM-07198","M-162","","189256","3600670","GW","false","From the junction of Hwy 90 and White Water Road (mile marker 26), go east on White Water Road for 0.8 miles. Go right at the fork and go another 0.1 miles. Go left at the second fork and go 1.0 miles. Go right at the third fork and go 8.0 miles. Go right onto a very faint two-track (north). Follow faint tracks for 1.0 miles to the well (4-wheel drive required). Well located at windmill near stock tank." +"BC-0083","68","","375866","3890560","GW","true","" +"NM-15201","","","148078","3740960","GW","false","" +"NM-08369","","","283342","3618770","GW","false","" +"NM-17085","","","637063","3783000","GW","false","" +"NM-09217","","","649183","3629050","GW","false","" +"NM-19438","","","407207","3826480","GW","false","" +"PC-129","PW-216","","372940","3910906","GW","true","" +"NM-04299","","","348964","3543040","GW","false","" +"QY-0157","11.29.19.231a","","599816","3892050","GW","true","" +"TO-0023","2N11E21.312","","426417","3805190","GW","true","" +"NM-07627","","","206126","3609490","GW","false","" +"SB-0086","TWDB 4717315","","508314","3512298","GW","false","" +"NM-22934","","","243381","3896060","GW","false","" +"NM-22601","","","374934","3889040","GW","false","" +"QY-0541","17.36.27.44","","672653","3948890","GW","true","" +"NM-10406","","","260351","3645620","GW","false","" +"HS-035","TC-035","Theis 2","289398","3667845","GW","true","601 N Broadway, wells are in a room to the west of the main entrance in a utility room" +"NM-21951","","","357502","3882170","GW","false","" +"BW-0039","22S5E20.111","","362629","3584080","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"TC-302","","","446096","4082116","GW","true","Heading North on 522 out of Questa, past El Rito. Left at mile marker 31, San de Cristol Rd or B049. Then right (north) on State Line towards red barn. Well located east of red barn in field. Many cows in area. Well has pipe fencing around it." +"NM-08314","","","561987","3615620","GW","false","" +"NM-06414","","","363868","3582210","GW","false","" +"WL-0298","","","340604","3792824","GW","false","Will be escorted to wells." +"SA-0103","","","256696","3713347","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south to the Cupit Ranch HQ on the west side of the road. South of MM 45 take two track to the east up the arroyo and follow the tracks in the arroyo approx. 1.5 miles and look for tank and well to the south east." +"NM-07860","","","667039","3610240","GW","false","" +"NM-06708","","","676864","3588440","GW","false","" +"NM-17351","","","653536","3787260","GW","false","" +"SM-3041","","","451625","3710699","R","true","Off of hwy 380, east of Capitan. Located on BLM side of fence line. Sampled anhydrite from 710 to 770 ft depth." +"QU-181","","","447983","4064438","GW","true","" +"NM-12197","","","560712","3670120","GW","false","" +"BW-0821","2.4.10.2.143","","420471","3829520","GW","true","" +"NM-26478","","","223417","4066680","GW","false","" +"NM-26394","","","626921","4057670","GW","false","" +"NM-07478","","","679561","3604110","GW","false","" +"NM-20409","","","671288","3844890","GW","false","" +"NM-06328","","","673777","3581110","GW","false","" +"NM-18622","","","601469","3809260","GW","false","" +"SB-0272","TWDB 4807414","","476892","3531933","GW","false","" +"NM-23065","","","616307","3895110","GW","false","" +"NM-25160","","","640864","3959620","GW","false","" +"NM-02604","","","556597","3629100","GW","false","" +"NM-12678","","","565757","3678650","GW","false","" +"NM-19956","","","574812","3834970","GW","false","" +"AR-0031","NMED 567","","219294","4072630","GW","true","From Hwy 516 out of Farmington, make right (south) on English Road just past Animas Valley Mall. Make left (east) on Largo St. Follow until it turns southwest and turns into Railroad Street. Make right onto Criterion Street to address." +"NM-02208","","","334475","3567110","GW","false","" +"NM-26673","","","445350","4075420","GW","false","" +"NM-15170","","","655699","3735010","GW","false","" +"NM-04455","","","549247","3547340","GW","false","" +"NM-20700","","","669685","3853120","GW","false","" +"QY-0266","11.31.1.424","","627724","3896780","GW","true","" +"NM-00384","","","673758","3630260","GW","false","" +"NM-28221","","","171652","4074710","GW","false","" +"NM-25207","","","223084","3965890","GW","false","" +"NM-07776","","","554478","3607600","GW","false","" +"NM-09534","","","217677","3634660","GW","false","" +"SB-0408","TWDB 4812701","","441475","3514955","GW","false","" +"PP-002","PW-02","","436320","4006257","GW","true","" +"NM-08505","","","675546","3620180","GW","false","" +"NM-04031","","","232597","3532200","GW","false","" +"NM-15604","","","652229","3745980","GW","false","" +"NM-26677","","","443620","4076020","GW","false","" +"NM-04044","M-020","","250649","3533245","GW","false","From the Columbus intersection of NM11 and NM9, go north on NM11 for 5.7 miles. Go east on Whirlwind/B005 for 1.4 miles. Go through gate on the south side of the road down a dirt road. Well located to the south of the road near power lines." +"NM-03732","","","169167","3497870","GW","false","" +"NM-08988","","","232710","3628260","GW","false","" +"SD-0386","11N.5E.35.131","","374018","3889190","SP","true","" +"NM-04178","","","273651","3539720","GW","false","" +"NM-21482","","","252292","3877370","GW","false","" +"SM-1082","","","451034","3636417","SP","true","" +"NM-14944","","","636400","3725660","GW","false","" +"NM-21375","","","641863","3872030","GW","false","" +"MI-0172","","","608052","3931190","GW","true","Topographic situation: Valley" +"QY-0538","17.35.9.334","","660085","3953510","GW","true","" +"NM-01567","","","573563","3988050","GW","false","" +"NM-24496","","","399761","3938550","GW","false","" +"NM-14385","","","267045","3704760","GW","false","" +"NM-23627","","","360528","3910230","GW","false","" +"QU-116","Q-11","","447360","4061287","GW","true","Driving south on Old Red River Road, look on left for a red house 0.1 miles past the bridge. Follow driveway to the end. Well is beneath shed at rear of house." +"NM-12170","","","289718","3671940","GW","false","" +"NM-01309","","","367024","3907810","GW","false","" +"NM-20952","","","665461","3858990","GW","false","" +"TC-292","","","449551","4065042","PS","true","On Cabresto Creek, in canyon, at headgate near road" +"NM-23542","","","370636","3908680","GW","false","" +"RA-1003","","","421825","4005539","SP","false","" +"NM-25361","","","404476","3970710","GW","false","" +"SA-0419","4S13W21.222b","","204752","3761290","GW","true","" +"WL-0048","","","441331","4049716","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, go past Lawrence Ranch Rd which is the first turn off to San Cristobal. At second turn off (FR 493) make a right. Make right on Spotted Owl Road. Driveway is ~0.4 miles up where road curves to left. Well is west of house & north of carport underneath pine." +"NM-20969","","","667253","3859610","GW","false","" +"SA-1012","","","259237","3717915","SP","true","Just west of the Box, north of Alamosa Creek drainage about 0.2 mile along trail. This is site for small seep just southeast of main pool." +"NM-20788","","","624894","3853570","GW","false","" +"SA-0339","","","253423","3693061","GW","true","" +"NM-05744","","","262926","3570940","GW","false","" +"NM-21599","","","381134","3877340","GW","false","" +"NM-06811","","","250040","3592080","GW","false","" +"NM-16282","","","565804","3765660","GW","false","" +"NM-12268","","","294129","3673420","GW","false","" +"SB-0867","Mayer 28","","449898","3569166","GW","false","" +"NM-08601","","","645968","3621210","GW","false","" +"SV-0019","02 Canada Vista","","381465","3898114","GW","false","Unit 1 Lot 78" +"SD-0336","6N.6E.5.34","","377861","3848650","SP","true","" +"SO-0270","","","328640","3763988","SP","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Look for steel structure (spring box) on west side of road." +"NM-06155","","","611782","3576720","GW","false","" +"NM-00200","","","578208","3576690","GW","false","" +"SD-0022","7N.7E.2.211","","392693","3859160","GW","true","" +"NM-10996","","","547651","3650280","GW","false","" +"NM-08863","","","204608","3627830","GW","false","" +"NM-09503","","","407947","3630910","GW","false","" +"ED-0076","20S30E3.223","","598149","3608240","GW","true","" +"NM-08924","","","627011","3625290","GW","false","" +"SD-0095","9N.6E.29.123","","379081","3871700","GW","true","" +"EB-076","","","419090","3947350","GW","true","" +"NM-09572","","","555779","3631130","GW","false","" +"EB-018","","","397937","3936210","GW","true","from I-25, W at LaCienega exit on LaCienega Entrada 0.9 mi (past CR50), house after bridge/arroyo on L; well inside shed 20' N of NW corner of house" +"CX-0119","23","","541026","4063580","GW","true","4 miles southeast of Koehler" +"NM-08556","","","673473","3621070","GW","false","" +"NM-05629","","","677318","3568580","GW","false","" +"NM-17107","","","622999","3783450","GW","false","" +"NM-11686","","","673631","3663680","GW","false","" +"NM-18204","","","270553","3804440","GW","false","" +"NM-20025","","","653624","3837640","GW","false","" +"NM-09722","","","284397","3634980","GW","false","" +"NM-15356","","","673165","3741410","GW","false","" +"NM-10137","","","558230","3638780","GW","false","" +"NM-08323","","","614336","3616240","GW","false","" +"NM-23990","","","655736","3923510","GW","false","" +"NM-01536","","","644523","3975490","GW","false","" +"NM-15415","","","565437","3740800","GW","false","" +"NM-18161","","","336457","3803840","GW","false","" +"NM-22459","","","357851","3887690","GW","false","" +"NM-19662","","","173717","3835840","GW","false","" +"NM-23708","","","370867","3912600","GW","false","" +"NM-00468","","","408048","3641840","GW","false","" +"NM-03219","","","574111","3833550","GW","false","" +"NM-08511","","","665822","3620660","GW","false","" +"NM-25284","","","600331","3966070","GW","false","" +"NM-22631","","","237144","3892350","GW","false","" +"NM-25976","","","302475","4009390","GW","false","" +"QY-0646","5.30.19.313","","608953","3833710","GW","true","" +"NM-02589","","","559971","3625980","GW","false","" +"AB-0128","S162","","356706","3828880","GW","true","" +"NM-02561","","","554743","3620870","GW","false","" +"NM-14894","","","665776","3723930","GW","false","" +"WL-0078","","","282312","3898321","GW","true","From I-40 west from ABQ, take exit 114 at Laguna onto Hwy NM 124 west. After 2.5 miles, turn north onto Hwy NM 279. Drive about 12 miles, thru Bibo and Seboyeta. Turn west (left) about 0.1 miles onto dirt road. Follow dirt road which goes uphill to left (south) past old well. New well is at two water towers." +"SD-0069","8N.7E.29.323","","391488","3863710","GW","true","" +"NM-27154","PS-001","","370982","3907381","SP","true","Met Mayordomo Rory Eastman at Placitas Post Office. From there, go east on 165, then right on Camino del Campo Santo, then left of Paseo de San Antonio. The first right dead ends at dirt road to springs." +"NM-17259","","","641302","3785470","GW","false","" +"NM-25182","","","661508","3961270","GW","false","" +"NM-25802","","","479150","3996790","GW","false","" +"NM-17713","","","398221","3792250","GW","false","" +"NM-01126","","","663220","3859460","GW","false","" +"SD-0137","10N.5E.10.424","","373907","3885500","GW","true","" +"DE-0039","","","607772","3563416","GW","true","This well is accessed by following a series of unmarked ranch roads, making written directions almost impossible. Accessing the well requires an escort from someone familiar with the ranch or by following the track shown on a kml or kmz file stored in the following location on the NMBGMR server: W:\regional\3d_delaware_basin\ db_data\field_prep" +"DE-0212","","","639624","3628356","GW","false","" +"RA-056","","","423938","4005374","GW","true","Next to shed." +"NM-09052","","","640654","3626830","GW","false","" +"NM-17444","","","654691","3788670","GW","false","" +"NM-26494","","","223602","4067040","GW","false","" +"NM-03374","","","626416","3884930","GW","false","" +"NM-05480","","","239192","3568870","GW","false","" +"NM-18232","","","659780","3803630","GW","false","" +"NM-20044","","","632977","3837600","GW","false","" +"TS-099","","","436980","4044404","SP","true","Zone of small to medium springs that emerge from 30-50 ft above river from under talus slope on east side of river." +"NM-10130","","","679557","3640280","GW","false","" +"NM-12734","","","621534","3680640","GW","false","" +"NM-21888","","","348816","3881750","GW","false","" +"NM-06500","","","361306","3583770","GW","false","" +"EM-1001","","","194252","3882670","L","true","" +"SB-0090","TWDB 4717319","","509419","3511714","GW","false","" +"ED-0226","22S27E27.113","","576729","3581350","GW","true","" +"NM-27067","","","325154","3758290","GW","true","" +"TC-220","","","424450","4091963","GW","true","" +"NM-23841","","","475125","3916240","GW","false","" +"NM-02576","","","561542","3624450","GW","false","" +"NM-20699","","","405602","3851390","GW","false","" +"NM-03149","","","570868","3814830","GW","false","" +"NM-02230","","","562545","3567920","GW","false","" +"SM-0196","","","500835","3644455","GW","true","Site visit by Jeremiah Morse in June 2007" +"EB-177","","","403117","3949436","GW","true","Across from drive @ #06 Avenida Mercedes, west side of road" +"NM-18287","","","657697","3804160","GW","false","" +"NM-18414","","","656081","3806290","GW","false","" +"NM-23578","","","189811","3913350","GW","false","" +"NM-12781","","","552939","3680140","GW","false","" +"NM-20075","","","600471","3837680","GW","false","" +"NM-12285","","","556352","3671690","GW","false","" +"NM-20395","","","624875","3843740","GW","false","" +"NM-14220","","","550124","3699100","GW","false","" +"NM-02967","","","665354","3760040","GW","false","" +"NM-00596","","","401744","3663550","GW","false","" +"NM-00305","","","375399","3611490","GW","false","" +"NM-19901","","","617409","3834770","GW","false","" +"NM-07604","","","670184","3606280","GW","false","" +"BW-0753","2.10.15.27.330","","468848","3879530","GW","true","" +"SB-0334","TWDB 4807626","","487634","3533577","GW","false","" +"TB-0003","","","422227","3652640","GW","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end. Behind trailer, well is east of spring fed pond. Upsidedown bucket on well." +"NM-07212","","","588592","3596730","GW","false","" +"NM-24687","","","407913","3943140","GW","false","" +"NM-28341","148774","","189084","3644133","SP","false","Gila National Forest" +"NM-25386","","","479191","3971680","GW","false","" +"QY-0908","8.32.3.441","","633769","3867660","GW","true","" +"NM-04210","","","345000","3539530","GW","false","" +"NM-26739","","","444038","4086890","GW","false","" +"NM-04233","M-040","","267003","3541963","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 1.0 mile. Go south on B047/Marana Rd for 12.1 miles (road jogs to the left and continues south at mile 6.0), to the end of the road. Go east to end of the road (1.0 miles), to the gate. Follow the dirt road from the gate along the fence perimeter to the holding tank (~0.5 miles). Well located north of large holding tank." +"NM-21756","","","631599","3880260","GW","false","" +"NM-05719","","","229772","3571370","GW","false","" +"NM-18650","","","667478","3810670","GW","false","" +"NM-10538","","","643838","3645850","GW","false","" +"NM-07521","","","585739","3603850","GW","false","" +"DE-0332","","","674509","3589658","GW","false","" +"NM-07906","","","678522","3611110","GW","false","" +"ED-0050","19S27E13.31","","571351","3613800","GW","true","" +"NM-01175","","","447865","3874370","GW","false","" +"SA-1017","","","246481","3712786","ES","true","First stream crossing directly south along the raod from SA-0104 (Uncle Sam well), 50 m from SA-0104 where raod last crosses the stream" +"NM-03681","","","447322","4089740","GW","false","" +"NM-26385","","","635326","4056990","GW","false","" +"NM-23673","","","259845","3913340","GW","false","" +"NM-15470","","","645596","3742580","GW","false","" +"NM-24656","","","414647","3942340","GW","false","" +"NM-20100","","","601942","3838130","GW","false","" +"NM-24427","","","402188","3937290","GW","false","" +"PC-101","PW-178","","365119","3907767","GW","true","" +"NM-15565","","","675227","3745390","GW","false","" +"NM-20534","","","588494","3847110","GW","false","" +"NM-03176","","","443797","3823410","GW","false","" +"NM-07420","","","319721","3603040","GW","false","" +"NM-05315","","","222937","3566710","GW","false","" +"BW-0569","15S10E9.3","","407686","3654170","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0723","6.31.15.433","","624132","3844800","GW","true","" +"NM-13288","","","657277","3690360","GW","false","" +"PP-059","PW-64","","438874","4004913","GW","true","" +"AB-0016","S019","","335328","3836230","GW","true","" +"EB-487","","","399250","3959720","GW","true","" +"NM-27778","","","611456","3787440","GW","false","" +"SB-0414","TWDB 4814101","","465840","3525160","GW","false","" +"NM-23597","","","369936","3909320","GW","false","" +"NM-26808","","","146656","3701830","GW","true","" +"NM-04643","","","170825","3557660","GW","false","" +"NM-13381","","","575785","3690340","GW","false","" +"NM-18616","","","364754","3809280","GW","false","" +"BC-0345","360","","375252","3889092","GW","true","" +"NM-05316","","","239152","3566310","GW","false","" +"NM-22610","","","344312","3889600","GW","false","" +"NM-12504","","","557107","3675360","GW","false","" +"MI-0195","","","484597","3935905","GW","true","Topographic situation: Gentle slope" +"TV-115","SW-48","SWS-20","438728","4022238","GW","true","From SR 68, turn left (north) on SR 96 and go 2.5 miles. Driveway on left. House up hill at end of road. Well past house in arroyo near green houses." +"NM-14567","","","641360","3710720","GW","false","" +"NM-27743","","","605346","3782340","GW","false","" +"NM-25834","","","409673","3999420","GW","false","" +"NM-09404","","","556593","3629720","GW","false","" +"NM-23936","","","636766","3920480","GW","false","" +"TC-331","","","452563","4094394","GW","true","" +"NM-16248","","","521212","3764070","GW","false","" +"NM-23764","","","644374","3914870","GW","false","" +"NM-27097","","","326814","3777290","GW","true","" +"NM-16023","","","648809","3757480","GW","false","" +"AB-0108","S123","","352181","3889350","GW","true","" +"NM-02319","","","159074","3581400","GW","false","" +"NM-25078","","","406766","3953730","GW","false","" +"SO-0222","SBB-W02A","","322383","3733193","GW","true","" +"NM-10084","","","556260","3637970","GW","false","" +"NM-27394","","","226511","3633980","GW","false","" +"NM-19141","","","594632","3818760","GW","false","" +"NM-27485","","","559348","3727610","GW","false","" +"NM-13053","","","553997","3685350","GW","false","" +"MI-0202","","","510411","3943560","GW","true","Topographic situation: Plateau" +"NM-08268","","","293728","3616910","GW","false","" +"NM-28040","","","237509","3888330","GW","false","" +"BW-0336","16S10E33.34","","413132","3636440","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-19282","","","667073","3824690","GW","false","" +"PB-0018","","","379156","3938142","GW","true","Heading north on Hwy 22 from post office in Pena Blanca, veer left on Carro de Caballos. Less than 1/4 mile, make right on Los Luceros (looks more like a driveway). Home is directly in front of you, but enter thru gate to well house (vault) on south side of home." +"NM-03675","","","443977","4085110","GW","false","" +"NM-26303","","","619454","4042770","GW","false","" +"SM-1043","","","440191","3627605","SP","true","" +"HS-106","TC-106","","290150","3668389","GW","true","" +"NM-19913","","","600400","3834780","GW","false","" +"BW-0701","2.11.17.36.420","","492160","3887060","GW","true","" +"NM-15494","","","620004","3742960","GW","false","" +"NM-21314","","","270453","3872150","GW","false","" +"SO-0154","ESC-E04C","","326035","3777108","GW","true","" +"NM-08299","","","553550","3615260","GW","false","" +"NM-16144","","","663581","3760770","GW","false","" +"NM-27277","","","338466","3577640","GW","false","" +"AR-0220","","","221725","4074714","GW","true","From Hwy 516 heading east out of Farmington, take right onto Old Aztec Hwy, then first right onto Roberts Rd. At curve at end of block bear right onto driveway. House is among trees at base of hill. Well located by shed west of house on west side." +"NM-08704","","","656460","3623030","GW","false","" +"NM-06024","","","273530","3575470","GW","false","" +"NM-21643","","","355657","3878690","GW","false","" +"NM-26664","","","193702","4078950","GW","false","" +"TO-0196","5N13E17.243","","447201","3835680","GW","true","" +"NM-23329","","","656710","3900900","GW","false","" +"NM-27362","","","578951","3601510","GW","false","" +"NM-03066","","","665003","3800460","GW","false","" +"NM-26336","","","164998","4052650","GW","false","" +"NM-22577","","","375582","3888690","GW","false","" +"NM-10136","","","563063","3638810","GW","false","" +"NM-02773","","","290135","3672090","GW","false","" +"AR-0511","","","244709","4097170","PS","true","" +"QY-0278","11.31.23.31","","624865","3892010","GW","true","" +"AB-0186","S237","","323550","3820910","GW","true","" +"NM-18880","","","672665","3814650","GW","false","" +"NM-11850","","","285848","3666880","GW","false","" +"NM-12296","","","290794","3673800","GW","false","" +"AR-0022","NMED 435","","231982","4080100","GW","true","From Hwy 516 on west side of river, take Rd. 2900 at light, make left on Gila Road to address. Well is below ground in grey well house next to carport behind home in vacant lot. Easiest to access from vacant lot behind house off Heiland Rd." +"NM-23176","","","351662","3897830","GW","false","" +"SB-0211","TWDB 4806606","","474458","3535295","GW","false","" +"NM-01041","","","611923","3837360","GW","false","" +"NM-05531","","","672025","3567310","GW","false","" +"SM-4029","","","441598","3625771","PS","true","Stream flow measurement by Patrick Walsh" +"NM-26852","","","489692","4064920","GW","true","" +"NM-19199","","","326960","3821810","GW","false","" +"BW-0726","4.21.24.20.410","","545256","3591860","GW","true","" +"TB-0090","","","404977","3639283","GW","true","From new well #1 south on new road to left (E) at intersection. 1st road to windmill at pens." +"NM-01940","","","136205","3548690","GW","false","" +"NM-13698","","","136730","3700580","GW","false","" +"TO-0135","5N7E29.433","","387663","3832180","GW","true","" +"NM-22608","","","358206","3889340","GW","false","" +"NM-24731","","","407095","3944290","GW","false","" +"NM-16464","","","268626","3773960","GW","false","" +"DE-0234","","","670638","3570187","GW","false","" +"NM-01460","","","156576","3950340","GW","false","" +"RA-006","","","390415","4009971","GW","true","Well down slope from house." +"NM-05337","","","677856","3564800","GW","false","" +"SB-0388","TWDB 4808101","","489111","3540195","GW","false","" +"TO-0138","5N8E2.333","","401478","3838400","GW","true","" +"NM-13075","","","599585","3686120","GW","false","" +"NM-03117","","","595748","3809440","GW","false","" +"NM-15863","","","665176","3752580","GW","false","" +"NM-24850","","","409075","3946060","GW","false","" +"NM-25076","","","635979","3953880","GW","false","" +"NM-04369","","","659424","3545980","GW","false","" +"SB-0329","TWDB 4807621","","487662","3535332","GW","false","" +"NM-26333","","","489957","4045460","GW","false","" +"NM-12667","","","611877","3678760","GW","false","" +"NM-17634","","","352008","3791270","GW","false","" +"MI-0081","","","455231","3918540","GW","true","Topographic situation: " +"NM-21909","","","357237","3881830","GW","false","" +"NM-05177","","","210029","3564540","GW","false","" +"DE-0134","","","614979","3631121","GW","false","" +"AR-0187","G003","NMED 41","241481","4091550","GW","true","From junction of Hwy 550 & Rd 2900 in Cedar Hill, drive 0.9 miles to address. Schulter home is on east side of road. Well is in front yard under fake rock. Ms. Schluter is very nice and cooperative about the study. Well is ~65 ft from flowing irrigation ditch." +"NM-02180","","","334612","3565870","GW","false","" +"NM-11673","","","667491","3663330","GW","false","" +"NM-09258","","","194825","3632630","GW","false","" +"NM-04844","","","674661","3557160","GW","false","" +"NM-27152","PS-011","","373574","3913597","SP","true","" +"NM-04035","","","344228","3530150","GW","false","" +"NM-13610","","","633281","3694040","GW","false","" +"BC-0399","402","","344739","3868540","GW","false","" +"SB-0130","TWDB 4726902","","522100","3487534","GW","false","" +"NM-21093","","","563855","3862120","GW","false","" +"NM-02314","","","326315","3576860","GW","false","" +"SD-0345","8N.5E.14.434","","373953","3864420","SP","true","" +"NM-03151","","","572701","3815360","GW","false","" +"NM-12328","","","557046","3672470","GW","false","" +"NM-14261","","","141158","3706150","GW","false","" +"NM-02137","","","167222","3566290","GW","false","" +"NM-15656","","","664390","3747510","GW","false","" +"BW-0103","8S13E30.441","","433882","3715520","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-12412","","","559163","3673560","GW","false","" +"NM-18184","","","628472","3802570","GW","false","" +"NM-04895","M-074","","245084","3559380","GW","false","From main Deming intersection at Pine and Gold, go south on NM-11 for 9.3 miles. Go east on Sunshine/B017 for 2.8 miles. Black mailbox for 9710 Maverick on north side of road. Go north on driveway for 0.2 miles, around a corral to the carport. Well located at base of tall water tank, under metal lid and old insulation." +"NM-00738","","","441448","3696800","GW","false","" +"NM-02806","","","551332","3690420","GW","false","" +"TV-216","","","444087","4013519","GW","true","" +"NM-14441","","","544829","3704890","GW","false","" +"PP-032","PW-35","","436652","4004241","GW","true","" +"NM-27661","","","653249","3795450","GW","false","" +"QY-0203","11.30.15.443b","","614762","3893030","GW","true","" +"NM-00378","","","668894","3629540","GW","false","" +"NM-05861","","","252663","3573280","GW","false","" +"NM-17354","","","576205","3786000","GW","false","" +"NM-26887","PW-099","","367039","3907490","GW","true","" +"NM-23178","","","656456","3898030","GW","false","" +"NM-27468","","","548903","3720900","GW","false","" +"PC-023","PW-037","","371622","3907690","GW","true","" +"NM-00528","","","310708","3652980","GW","false","" +"NM-21944","","","266820","3883930","GW","false","" +"NM-23195","","","653742","3898480","GW","false","" +"NM-26521","","","579655","4064120","GW","false","" +"NM-15528","","","674391","3744700","GW","false","" +"NM-00037","","","489218","3542926","GW","true","Well at base of hill to west of two large pivot fields. Look for cement box and trailer." +"SM-0229","","","455020","3644318","GW","true","Take Karr Gap Rd 3.2 mi to ridge top , well is north 100' beyond 2 storage tanks." +"NM-12067","","","556245","3667780","GW","false","" +"EB-306","","","399537","3937647","GW","true","From Los Pinos Road, well is in field ~1/4 mile north of El Ranchos de Los Golondrinas OR 0.2 miles south of drive @ 286 Los Pinos Road. Green gates into pasture on east side of Los Pinos Rd." +"NM-17544","","","627369","3789730","GW","false","" +"NM-14120","","","459842","3697540","GW","false","" +"NM-05448","","","669593","3567090","GW","false","" +"NM-13867","","","141463","3701820","GW","false","" +"UC-0054","","","672835","4054615","GW","true","elv 4879 acc to USGS" +"TB-1004","","","434476","3712150","SP","true","Hwy 37 N at base of Nogal Hill on west side Henely Ave. Bear left (S) at fire station to end of road. East of gate through fence. Path to creek bed." +"QY-0179","11.30.14.143","","615557","3893850","GW","true","" +"NM-23803","","","388878","3915480","GW","false","" +"DA-0090","23S2E16.121","","335674","3576560","GW","true","" +"NM-15777","","","659896","3750240","GW","false","" +"NM-27400","","","308769","3634640","GW","false","" +"NM-06227","","","671930","3578990","GW","false","" +"BW-0072","6S9E33.143","","406020","3734380","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11111","","","552753","3652300","GW","false","" +"DE-0109","","","672788","3616192","GW","false","" +"DA-0006","18S1E27.432","","328895","3620440","GW","true","" +"ED-0033","17S29E22.11","","587130","3632330","GW","true","" +"NM-21554","","","378620","3876940","GW","false","" +"NM-11979","","","558533","3666440","GW","false","" +"TB-0168","","","434487","3711342","GW","true","#156 B Nogal Canyon Rd. North side of road. Cabin. From house, east to apple shed. Well is in orchard to SE of shed towards road. White PVC." +"NM-04122","","","250843","3537410","GW","false","" +"AR-0201","PWSA001","","225497","4076210","GW","true","" +"ED-0284","23S27E5.333","","573543","3577110","GW","true","" +"SD-0077","9N.6E.6.144","","377672","3877710","GW","true","" +"NM-21881","","","368495","3881420","GW","false","" +"NM-00592","","","400854","3662700","GW","false","" +"CX-0063","25N26E14.13","","576259","4028860","GW","true","" +"GT-025","CFW14-03","","347635","3962157","SP","true","" +"BW-0534","14S9E8.4","","397141","3664000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-04877","","","164123","3561430","GW","false","" +"NM-17247","","","671989","3786160","GW","false","" +"NM-07559","","","216034","3608130","GW","false","" +"ED-0346","25S25E24.222","","562078","3554100","GW","true","" +"NM-04131","","","334523","3536150","GW","false","" +"NM-27279","","","369072","3580000","GW","false","" +"BW-0838","4.5.3.28.320","","348468","3746000","GW","true","" +"SD-0266","11N.6E.20.334","","379028","3891430","GW","true","" +"SD-0162","10N.5E.22.433","","373278","3881900","GW","true","" +"NM-08868","","","203333","3627890","GW","false","" +"NM-03752","","","137087","3512020","GW","false","" +"NM-26741","","","448122","4087332","GW","true","Well is located at physical address (3870 Hwy 522, Costilla). House is Ute Mountains ranch house. Go north on 2-track from house, east on 2-track at dounle gates. Well is before gate on side of 2-track." +"NM-09358","","","409988","3629470","GW","false","" +"NM-23192","","","397862","3897680","GW","false","" +"BW-0700","2.10.10.32.333","","417331","3878200","GW","true","" +"NM-15270","","","662256","3738480","GW","false","" +"NM-15685","","","664697","3747580","GW","false","" +"QU-063","","","460985","4062586","GW","true","From Hwy 522 going north, go east on Rt. 38 toward Red River. June Bug Campground is third campground on the right. Well is behind the main bulletin board." +"QY-0773","7.30.2.421","","616140","3858080","GW","true","" +"NM-26870","PW-08","","434360","4004790","GW","true","" +"NM-03442","","","351932","3898870","GW","false","" +"NM-08187","","","208378","3617750","GW","false","" +"TS-094","","","437779","4048969","PS","true","San Cristobal Creek just above confluence." +"TC-368","","","442235","4077869","GW","true","" +"NM-08788","","","204873","3627110","GW","false","" +"PB-0001","","","379214","3938580","GW","true","North on Hwy 22 from Pena Blanca, turn left (west) on Calle La Morada to address on right. Well in covered well house w/vault (has ladder)." +"NM-11252","","","542750","3655210","GW","false","" +"NM-19406","","","571754","3825610","GW","false","" +"NM-14312","","","548308","3700750","GW","false","" +"NM-08663","","","558724","3621300","GW","false","" +"SO-0158","ESC-W01A","","325560","3777048","GW","true","" +"GT-030","","","358410","3973600","GW","true","" +"BW-0412","17S10E29.314","","411644","3628810","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16496","","","207033","3776350","GW","false","" +"NM-05384","","","178383","3569140","GW","false","" +"NM-23820","","","408919","3915930","GW","false","" +"NM-09568","","","211311","3635150","GW","false","" +"NM-21412","","","345982","3872660","GW","false","" +"BC-0209","209","","376682","3887500","GW","true","" +"NM-08958","","","560734","3624600","GW","false","" +"NM-22153","","","389248","3883920","GW","false","" +"EB-656","","","414963","3927474","GW","true","" +"NM-09505","","","640119","3631540","GW","false","" +"MG-028","WF-Z","","294668","3780974","GW","true","Riley Road" +"NM-08231","","","302131","3616100","GW","false","" +"NM-03557","","","407898","3973090","GW","false","" +"NM-09338","","","408062","3629310","GW","false","" +"NM-11580","","","665025","3661900","GW","false","" +"NM-10648","","","546998","3645780","GW","false","" +"NM-03994","","","258564","3528260","GW","false","" +"BW-0207","14S9E26.412a","","401794","3659280","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06925","","","680574","3592820","GW","false","" +"NM-25092","","","652817","3955450","GW","false","" +"NM-21228","","","528205","3867460","GW","false","" +"NM-19422","","","537327","3825870","GW","false","" +"PC-124","PW-211","","364759","3909269","GW","true","" +"DE-0277","","","663222","3634496","GW","false","" +"WS-005","","","381265","3632567","GW","true","On dune near tensiometers" +"NM-22731","","","379838","3890450","GW","false","" +"MI-0197","","","501945","3941146","GW","true","Topographic situation: Plateau" +"NM-22362","","","379403","3886290","GW","false","" +"EB-028","","","419753","3931683","GW","true","" +"SM-1081","","","447577","3633503","SP","true","" +"NM-04505","","","622811","3549350","GW","false","" +"NM-23227","","","289630","3900140","GW","false","" +"NM-02912","","","663287","3739880","GW","false","" +"NM-09963","","","554140","3635960","GW","false","" +"NM-27532","","","592140","3776510","GW","false","" +"NM-19590","","","168935","3834830","GW","false","" +"NM-14292","","","546916","3700320","GW","false","" +"NM-08959","","","557481","3624580","GW","false","" +"NM-07537","M-174","","229171","3607476","GW","false","From the junction of 180 and Dwyer road, go north 11.2 miles. Well is visible on left side of road. About 250 feet under windmill tower and solar panels." +"NM-03056","","","322904","3797630","GW","false","" +"NM-00597","","","400864","3663690","GW","false","" +"NM-10259","","","279189","3642900","GW","false","" +"SA-0086","","","252647","3735085","GW","true","Hwy 52, Mile marker 59, Winston, NM? Well NE of Welty Ranch House. Gate entrance has sign over it ""Limestone outfitters""" +"BW-0320","16S10E5.232","","411783","3645800","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07345","","","620652","3600260","GW","false","" +"NM-11875","","","652299","3666310","GW","false","" +"NM-16517","","","638964","3773880","GW","false","" +"NM-22196","","","629052","3884750","GW","false","" +"NM-18949","","","578858","3814300","GW","false","" +"NM-16406","","","657722","3771180","GW","false","" +"NM-02053","","","354053","3555660","GW","false","" +"NM-05705","","","222100","3571540","GW","false","" +"NM-09300","","","207203","3632740","GW","false","" +"NM-23056","","","353063","3895340","GW","false","" +"NM-18418","","","479189","3805000","GW","false","" +"NM-16419","","","569975","3770310","GW","false","" +"NM-22519","","","606705","3887820","GW","false","" +"NM-27656","","","646448","3795310","GW","false","" +"SV-0013","18 Camino Real","","380583","3899467","GW","false","Unit 1 Lot 86A" +"EB-341","SF-13","","409239","3943630","GW","true","3508 Cam. Jalisco; SE corner of Durango Dr. and Jalisco, W of Richards; down drive to right of house/right of drive at end of wire fence" +"NM-08331","","","292497","3617860","GW","false","" +"NM-16629","","","327110","3776040","GW","false","" +"NM-00276","NH-006","","290443","3603559","GW","false","8 miles west on NM 26 from right angle turn in Hatch. South on Uvas Springs Road 0.8 miles. Left on CR002, take immediate right on rough dirt road to south. Take right fork at 1.7 miles, 2.2 add'l miles to well on rough road. Windmill w/solar panel, old rock house and tank near well." +"NM-24319","","","410745","3934550","GW","false","" +"NM-11765","","","614999","3664230","GW","false","" +"NM-07412","","","187325","3606180","GW","false","" +"NM-09792","","","555634","3633750","GW","false","" +"NM-06930","","","569138","3591000","GW","false","" +"NM-01841","","","366179","3526910","GW","false","" +"BW-0088","8S10E1.423","","421191","3722540","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22161","","","389224","3883980","GW","false","" +"SD-0234","11N.5E.24.114","","375864","3892680","GW","true","" +"NM-04088","","","319379","3533880","GW","false","" +"BC-0029","20","","381067","3889970","GW","true","" +"ED-0333","24S27E8.12","","574182","3566970","GW","true","" +"SD-0405","13N.5E.33.434","","371539","3907850","SP","true","" +"QY-0775","7.30.22.133","","613563","3853460","GW","true","" +"NM-19829","","","400070","3833360","GW","false","" +"DA-0091","23S2E16.133","","335277","3575970","GW","true","" +"NM-25873","","","412695","4001670","GW","false","" +"BW-0664","2.1.4.14.113","","360829","3796940","GW","true","" +"NM-14117","","","546206","3697570","GW","false","" +"NM-24469","","","435872","3937790","GW","false","" +"NM-04597","","","677744","3553300","GW","false","" +"NM-17573","","","657930","3790880","GW","false","" +"NM-05943","","","322947","3572790","GW","false","" +"BW-0223","14S9E34.424","","400550","3657680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0072","10.31.25.313","","626648","3880780","GW","true","About 300 ft north of well .331" +"SO-0264","NRCS 4 (Shallow)","","328237","3764094","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Wells on west side of road. SO-0264 well A is ~2.5 ft. north of SO-0265 well B" +"NM-13252","","","650149","3689750","GW","false","" +"NM-07011","","","320994","3593930","GW","false","" +"NM-15259","","","547562","3736570","GW","false","" +"NM-10225","","","626913","3640970","GW","false","" +"NM-07908","","","656133","3610770","GW","false","" +"NM-04015","","","345302","3528220","GW","false","" +"NM-20570","","","135998","3854720","GW","false","" +"NM-10838","","","280894","3650560","GW","false","" +"NM-20026","","","655074","3837700","GW","false","" +"NM-25709","","","474529","3989630","GW","false","" +"NM-11476","","","406059","3659380","GW","false","" +"NM-27072","","","328714","3756150","GW","true","" +"NM-14767","","","651318","3719010","GW","false","" +"AB-0097","S110","","360578","3883880","GW","true","" +"NM-01923","","","343673","3540260","GW","false","" +"NM-16298","","","646441","3767800","GW","false","" +"NM-25174","","","476576","3959310","GW","false","" +"NM-20019","","","219862","3840090","GW","false","" +"DE-0097","","","639331","3568963","GW","false","" +"NM-24269","","","399521","3932880","GW","false","" +"NM-15325","","","660867","3739960","GW","false","" +"QY-0852","8.28.20.232","","591772","3862970","GW","true","" +"MG-024","WF-12","","294465","3770788","GW","true","Inside stone wall structure in vault." +"NM-09015","","","190542","3629800","GW","false","" +"NM-10874","","","667711","3650450","GW","false","" +"NM-23242","","","391628","3898680","GW","false","" +"NM-18122","","","330661","3802020","GW","false","" +"TC-207","WG-14","","434292","4067094","GW","true","" +"NM-00436","","","656762","3637450","GW","false","" +"NM-19491","","","468936","3827060","GW","false","" +"NM-03009","","","660716","3783300","GW","false","" +"NM-09348","","","555790","3629130","GW","false","" +"NM-12815","","","626305","3681930","GW","false","" +"NM-07657","","","277555","3608200","GW","false","" +"NM-06919","","","360367","3591420","GW","false","" +"NM-26043","","","318949","4016990","GW","false","" +"NM-05736","","","159341","3573770","GW","false","" +"TO-0208","6N6E30.433","","376493","3842040","GW","true","" +"NM-04025","","","159368","3533790","GW","false","" +"NM-06762","","","572970","3588290","GW","false","" +"NM-06593","","","671493","3586190","GW","false","" +"NM-00104","","","562401","3554010","GW","false","" +"NM-11032","","","640193","3651870","GW","false","" +"NM-18306","","","571492","3803340","GW","false","" +"CX-0173","S19","","558698","4095700","SP","true","West slope Barilla Mesa" +"SB-0241","TWDB 4807218","","481397","3540422","GW","false","" +"NM-05900","","","243277","3573940","GW","false","" +"SB-0537","TWDB 4853402","","453048","3450333","GW","false","" +"NM-09574","","","668170","3632680","GW","false","" +"NM-18155","","","675232","3803020","GW","false","" +"NM-03466","","","654672","3907680","GW","false","" +"NM-06773","","","569705","3588390","GW","false","" +"NM-03413","","","648970","3893370","GW","false","" +"NM-14498","","","400709","3706720","GW","false","" +"NM-12139","","","290692","3671460","GW","false","" +"NM-06872","","","572904","3590130","GW","false","" +"NM-02223","","","170670","3572290","GW","false","" +"QY-0783","7.31.11.221","","625865","3857330","GW","true","" +"NM-22269","","","374453","3885380","GW","false","" +"BC-0348","346","","378653","3871333","GW","true","" +"NM-19281","","","677576","3824850","GW","false","" +"NM-13505","","","553265","3691480","GW","false","" +"SB-0172","TWDB 4743504","","530470","3466035","GW","false","" +"NM-00064","","","592183","3546500","GW","false","" +"NM-27416","","","612322","3653510","GW","false","" +"NM-15364","","","676120","3741620","GW","false","" +"NM-00478","","","659151","3644900","GW","false","" +"MI-0146","","","511701","3930556","GW","true","Topographic situation: Small valley" +"SA-0502","6S14W28.314","","194705","3740130","GW","true","" +"NM-01575","","","576220","3992440","GW","false","" +"NM-00931","","","650114","3801820","GW","false","" +"NM-27263","","","362104","3573350","GW","false","" +"TO-0355","8N8E24.131","","403303","3863460","GW","true","" +"NM-13736","","","544362","3694330","GW","false","" +"NM-06105","","","589123","3575200","GW","false","" +"TO-0281","7N8E9.112","","398649","3857440","GW","true","" +"SO-0109","4N1W12.343","","325930","3828240","GW","true","" +"TO-0426","9N10E30.311","","415792","3870570","GW","true","" +"NM-21570","","","345093","3877510","GW","false","" +"NM-25006","","","669969","3950950","GW","false","" +"BC-0408","411","","","","GW","false","" +"NM-27658","","","678797","3795720","GW","false","" +"NM-08042","","","529445","3611160","GW","false","" +"NM-25564","","","401772","3981390","GW","false","" +"NM-00224","","","575865","3581960","GW","false","" +"NM-04593","","","179178","3556130","GW","false","" +"NM-26275","","","639811","4039250","GW","false","" +"NM-23090","","","288835","3897480","GW","false","" +"EB-461","","","419374","3929736","GW","true","Off of Ranch Road, 1/4 mi east of Hwy 285" +"NM-13206","","","612623","3688140","GW","false","" +"NM-23735","","","643503","3914090","GW","false","" +"AB-0080","S092","","350386","3881800","GW","true","" +"NM-12214","","","621393","3671180","GW","false","" +"NM-12755","","","561324","3679850","GW","false","" +"NM-23450","","","381319","3904940","GW","false","" +"NM-25629","","","405236","3984340","GW","false","" +"NM-15121","","","595819","3731760","GW","false","" +"NM-00258","","","377555","3591720","GW","false","" +"NM-27369","","","545558","3608790","GW","false","" +"NM-06869","","","674435","3591350","GW","false","" +"NM-11142","","","661955","3654640","GW","false","" +"BW-0884","4.19.3.10.330","","347315","3615300","GW","true","" +"NM-21313","","","558859","3869450","GW","false","" +"SO-0159","ESC-W01B","","325560","3777048","GW","true","" +"NM-06029","","","332057","3574450","GW","false","" +"NM-21123","","","402276","3863680","GW","false","" +"NM-04532","M-056","","197586","3553910","GW","false","" +"NM-22009","","","390929","3882540","GW","false","" +"NM-19244","","","173235","3827240","GW","false","" +"NM-02722","","","643659","3654850","GW","false","" +"NM-21450","","","201248","3877390","GW","false","" +"NM-10294","","","554268","3641160","GW","false","" +"NM-20148","","","578522","3838850","GW","false","" +"NM-03524","","","675798","3948720","GW","false","" +"NM-20255","","","641670","3841800","GW","false","" +"NM-15285","","","655171","3739000","GW","false","" +"NM-21721","","","387472","3879500","GW","false","" +"NM-21910","","","243318","3884330","GW","false","" +"NM-13999","","","544948","3695990","GW","false","" +"NM-03687","","","440089","4095210","GW","false","" +"NM-23255","","","290070","3900530","GW","false","" +"NM-07538","","","186854","3608660","GW","false","" +"NM-05351","","","264102","3566350","GW","false","" +"CP-0039","","","315290","3763959","GW","true","" +"NM-18105","","","655766","3801530","GW","false","" +"NM-25726","","","226212","3996090","GW","false","" +"NM-12252","","","679381","3672530","GW","false","" +"NM-12700","","","656374","3680580","GW","false","" +"NM-10641","","","552243","3645800","GW","false","" +"NM-13618","","","552326","3693040","GW","false","" +"NM-03719","","","169803","3492950","GW","false","" +"NM-10911","","","550071","3649020","GW","false","" +"TO-0274","7N8E3.3","","400197","3857980","GW","true","" +"SA-0146","","","258489","3711428","GW","true","Well/spring box is located near the Monticello Box. From Socorro, access from north (datil) same distance as from south (winston). Where rt 52 crosses Alamosa Creek, go south 4 miles, past the the Cupit ranch HQ (directly on the road to the west (R)) to a 2-track heading east (L) up Havil Canyon. Go through gate/cattle guard, and follow driveway up Havil Canyon past the Phelps ranch HQ for 2.6 miles to Teague House (white house with corrals and outbuildings). Turn east (L), go through gate (combo 3006) by corral, up the steep hill. Follow the 2-track across the top of the ridge for 1.25 miles, past the Gathering Tank well (on the Left), follow 2-track as it winds down off of the ridge. Follow 2-track as it crosses arroyo, bearing north (L) for Mirty Well 0.6 miles. Go past Mirty well, and follow 2-track. Take branch to south (R) that goes down arroyo toward Strickland well (cistern), about 0.8 miles downstream. Cistern is in center of arroyo, on small knob." +"CX-0155","73","","535738","4029170","GW","true","3 1/3 miles north of Springer" +"NM-05322","","","566554","3563270","GW","false","" +"NM-02611","","","264618","3632870","GW","false","" +"NM-14485","","","399130","3706330","GW","false","" +"NM-09356","","","679700","3630970","GW","false","" +"NM-05799","","","241541","3572600","GW","false","" +"NM-20689","","","400795","3851100","GW","false","" +"NM-19529","","","638858","3829120","GW","false","" +"NM-10606","","","548219","3645540","GW","false","" +"DA-0179","29S2W15.2","","307921","3518820","GW","true","" +"BW-0605","2S12E11.4","","440036","3778610","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"EB-542","","","408408","3944710","GW","true","" +"NM-01686","","","281612","4057900","GW","false","" +"NM-17891","","","622485","3797310","GW","false","" +"NM-14373","","","656495","3703500","GW","false","" +"NM-22392","","","347863","3887010","GW","false","" +"NM-18779","","","332049","3812620","GW","false","" +"BW-0918","2.9.21.35.131","","528401","3869080","SP","true","" +"NM-27992","","","269218","3881580","GW","false","" +"SM-4011","","","432101","3630444","PS","true","Stream flow measurement by Patrick Walsh" +"NM-07497","","","660802","3604160","GW","false","" +"NM-00088","","","490756","3551680","GW","false","" +"NM-05072","","","337688","3560100","GW","false","" +"NM-07767","","","539647","3607370","GW","false","" +"NM-08454","","","232234","3621250","GW","false","" +"NM-17441","","","350166","3788120","GW","false","" +"QY-0529","17.34.26.234","","654513","3949370","GW","true","" +"NM-13260","","","673571","3690300","GW","false","" +"PP-004","PW-04","","434212","4006337","GW","true","" +"NM-15697","","","674137","3748760","GW","false","" +"QY-0517","16.36.30.244","","667470","3939590","GW","true","" +"NM-18832","","","669771","3812380","GW","false","" +"SB-0052","TWDB 4717201","","507656","3511866","GW","false","" +"NM-10837","","","280894","3650560","GW","false","" +"NM-08080","","","362073","3612900","GW","false","" +"AR-0147","B500","","240122","4087870","GW","true","" +"NM-05743","","","547627","3568270","GW","false","" +"BW-0218","14S9E28.121","","398128","3660140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02378","","","151312","3588760","GW","false","" +"NM-05395","","","537620","3564290","GW","false","" +"TS-090","","","437940","4055627","SP","true","Just below launch site near base of Cebolla Trail. Emerges from under basalt boulders just above river level, west side of river" +"NM-12803","","","675866","3682110","GW","false","" +"NM-02115","M-086/M-087","","270440","3561841","GW","false","Take NM549 east of Deming to B046/Franklin Rd, about 12.7 miles. Go south on B046 for 4.5 miles. Go east on B044/Coyote Rd (lots of trees to the west) for 4.0 miles (3 mi east of NM-02116). Well located ~90 ft south of dirt road." +"NM-16660","","","674776","3776720","GW","false","" +"NM-01362","","","450825","3919820","GW","false","" +"NM-18620","","","627481","3809610","GW","false","" +"NM-13225","","","537101","3687740","GW","false","" +"NM-10155","","","557424","3638960","GW","false","" +"TO-0032","2N15E10.141","","467002","3808150","GW","true","" +"OG-0060","","","647798","3808646","GW","true","" +"UC-0067","","","669707","3998446","GW","true","elv 4529 acc to USGS" +"SO-0140","BRN-W03A","","327113","3763810","GW","true","Gate combo to Brown Arroyo transect is 7218 (10/2019)." +"MI-0030","","","501283","3901465","GW","true","Topographic situation: Plains" +"NM-25146","","","225319","3961780","GW","false","" +"OG-0012","","","640201","3821050","GW","true","From int of SR 311 and US 60, west of Clovis, drive 12 miles north and west on SR 311. Continue straight west 4 miles on CR 17. Turn right north on CR Z drive 1 mile. Turn right east on CR18 drive 0.28 miles to well. Well is on N side of road." +"WL-0240","","","215126","3907770","GW","true","From Albuquerque, drive west on I-40 about 95 miles to the Thoreau exit. Drive south on HWY 612 about 12 miles to the small village of Bluewater Acres. Turn west (right) on Perch Road. Drive about 0.4 miles on Perch to the blue water tower. Well is at 30 Perch Road. Well is in vault about 30 feet northeast of water tower." +"NM-27194","","","404245","3802102","GW","false","" +"EB-008","","","413323","3945747","GW","true","1786 Siringo at old adobe wall" +"TS-003","","","438930","4066136","SP","true","East side of river, downstream from Chiflo Trail." +"NM-15933","","","340921","3754350","GW","false","" +"NM-26355","","","677300","4052670","GW","false","" +"NM-23828","","","409427","3916200","GW","false","" +"NM-18279","","","660158","3804110","GW","false","" +"NM-21265","","","678363","3869590","GW","false","" +"NM-09535","","","640039","3631660","GW","false","" +"NM-15048","","","444088","3728850","GW","false","" +"TC-288","CO-35","","434733","4098143","GW","true","" +"NM-28363","TWDB 4815103","","480190","3524270","GW","false","" +"NM-11593","","","404779","3661090","GW","false","" +"NM-09527","","","640222","3631600","GW","false","" +"EB-480","","","396172","3965366","GW","true","" +"NM-02924","","","673952","3743690","GW","false","" +"AR-0239","","","241375","4090695","GW","true","From Aztec, drive 8.5 miles north on Hwy 550 to address. House is first house north of Burritos y Mas on west side of road. Look for windmill in front yard. Well is in pit on side of shed north of house." +"NM-23451","","","650387","3905510","GW","false","" +"NM-23954","","","640839","3921350","GW","false","" +"CP-0033","","","667259","3820199","GW","true","Contact City of Clovis Parks & Rec. Dept. for access to well." +"NM-11633","","","652535","3662840","GW","false","" +"NM-16949","","","168356","3785440","GW","false","" +"DA-0195","24S2E33.112","","335582","3562120","GW","true","" +"NM-21425","","","422573","3871840","GW","false","" +"DE-0069","","","541544","3592389","GW","false","" +"BC-0144","127","","358397","3895580","GW","true","" +"AB-0118","S143","","336427","3811900","GW","true","" +"NM-15008","","","627734","3728340","GW","false","" +"SM-3004","","","462674","3628744","S","true","Site visited and sampled by Jeremiah Morse" +"NM-26118","","","191247","4026820","GW","false","" +"NM-12884","","","664946","3683430","GW","false","" +"NM-05418","","","220153","3568420","GW","false","" +"BW-0465","25S8E32.333","","391093","3550140","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-20226","","","595278","3840180","GW","false","" +"TO-0368","8N9E26.332","","411546","3860860","GW","true","" +"TV-158","SW-41","","441180","4023644","GW","true","Take SR 68 to SR 96 and go left (west) to Golf Course Drive. Go right and it's the third house on left. Vault to right between house & road." +"NM-11582","","","402056","3660960","GW","false","" +"NM-16159","","","643796","3761220","GW","false","" +"NM-02344","","","240518","3581720","GW","false","" +"NM-23071","","","609654","3895120","GW","false","" +"SB-0591","TWDB 4862802","","471019","3430873","GW","false","" +"NM-06293","","","241159","3582230","GW","false","" +"DA-0168","27S1E33.2","","325865","3533010","GW","true","" +"NM-00575","","","656005","3660090","GW","false","" +"NM-17194","","","640496","3784590","GW","false","" +"NM-18366","","","660548","3805630","GW","false","" +"AH-058","AH-11","","440051","4044735","GW","true","" +"NM-28095","","","345259","3903550","GW","false","" +"NM-03988","","","340070","3526420","GW","false","" +"SV-0060","07 Los Cedros","","379331","3898282","GW","false","Unit 2 Lot 16" +"NM-21449","","","605636","3873050","GW","false","" +"SO-0268","NRCS 6 (Deep)","","327682","3764169","GW","true","From Hwy 380 in San Antonio, take Bosquecito Road north ~6.5 miles. Turn left (west) on Busquceito, then left before old home to locked gate. Will need access. Gate combo to Brown Arroyo transect is 7218 (10/2019). Gate combo to Brown Arroyo transect is 2005. Follow road southwest past road to left Hickox Rd, continue to well on left hand (south) side of road before bend in road. SO-0267 is ~3 ft. north of SO-0268." +"NM-23146","","","300811","3897790","GW","false","" +"NM-25790","","","640865","3997160","GW","false","" +"NM-27625","","","640690","3787030","GW","false","" +"NM-13858","","","552960","3695300","GW","false","" +"TC-382","","","441095","4072734","GW","true","" +"NM-13963","","","545363","3695660","GW","false","" +"SB-0496","TWDB 4835702","","431326","3475975","GW","false","" +"NM-24275","","","476757","3932500","GW","false","" +"QY-1029","11.36.30.412","","667579","3891270","SP","true","" +"TC-405","","","445931","4086391","GW","true","" +"NM-13417","","","487441","3690290","GW","false","" +"NM-02691","","","280404","3650380","GW","false","" +"NM-14094","","","143140","3703770","GW","false","" +"NM-02235","","","222959","3572290","GW","false","" +"NM-04883","","","678717","3557600","GW","false","" +"NM-16515","","","209355","3776750","GW","false","" +"TV-504","","","445363","4020171","SP","true","" +"NM-27969","","","301220","3865510","GW","false","" +"NM-08358","","","652249","3617520","GW","false","" +"NM-12171","","","670173","3671630","GW","false","" +"NM-00883","","","301920","3778430","GW","false","" +"NM-20103","","","402895","3838110","GW","false","" +"NM-24176","","","405435","3930110","GW","false","" +"NM-15829","","","667733","3751820","GW","false","" +"NM-05454","","","164997","3570410","GW","false","" +"EB-429","","","412116","3948691","GW","true","USGS Site ID from Anderholm, 1994 USGS WRI Report 94-4078" +"NM-12840","","","559659","3681410","GW","false","" +"SB-0132","TWDB 4727701","","526853","3485267","GW","false","" +"MG-037","","","296308","3778926","GW","true","" +"NM-12853","","","672680","3683690","GW","false","" +"NM-21284","","","344475","3869510","GW","false","" +"TO-0057","3N15E28.441","","466211","3812360","GW","true","" +"NM-18378","","","625596","3805510","GW","false","" +"QY-0528","17.34.21.333","","650228","3950090","GW","true","" +"SB-0377","TWDB 4807903","","486052","3528468","GW","false","" +"NM-21844","","","351195","3881540","GW","false","" +"NM-01628","","","537877","4024230","GW","false","" +"NM-09045","","","556748","3625410","GW","false","" +"NM-11249","","","626435","3655900","GW","false","" +"MI-0060","","","486708","3907134","GW","true","Topographic situation: Plains" +"BW-0422","17S10E32.113","","411640","3628000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-16720","","","235252","3779680","GW","false","" +"NM-27891","","","568971","3819490","GW","false","" +"NM-22339","","","348614","3886510","GW","false","" +"NM-22346","","","640423","3886430","GW","false","" +"NM-06743","","","584960","3588040","GW","false","" +"NM-25195","","","587353","3961590","GW","false","" +"NM-00231","","","662816","3585930","GW","false","" +"NM-23921","","","638512","3920170","GW","false","" +"TO-0121","5N5E36.411","","374070","3831350","GW","true","" +"BW-0198","14S9E26.224","","402210","3660090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-05438","","","237605","3568290","GW","false","" +"NM-28169","","","410001","3982660","GW","false","" +"NM-08881","","","627329","3624800","GW","false","" +"EB-574","","","403578","3929135","GW","true","" +"NM-11946","","","657215","3666940","GW","false","" +"NM-12456","","","294221","3676530","GW","false","" +"NM-10530","","","269225","3647100","GW","false","" +"TO-0538","8N8E18.433","","396371","3864140","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"AB-0031","S036","","380321","3938020","GW","true","" +"NM-03796","","","237326","3520710","GW","false","" +"NM-08539","","","659288","3620430","GW","false","" +"NM-09092","","","559111","3626130","GW","false","" +"DE-0020","","","639707","3562998","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. From Vaca Lane, look for 2-track due west of well, drive east thru one gate (unlocked), continue alone fence line, past a second gate, well is near old tank." +"NM-15019","","","562717","3728150","GW","false","" +"NM-05091","","","335727","3560480","GW","false","" +"TS-016b","","","438429","4059853","SP","true","East side of river. Largest spring zone in N Big Arsenic zone." +"SD-0006","6N.6E.14.113","","382680","3846980","GW","true","" +"SV-0058","01 Los Cedros","","379020","3898592","GW","false","Unit 2 Lot 13" +"NM-12213","","","621419","3671240","GW","false","" +"NM-26483","","","460229","4062560","GW","false","" +"OG-0008","","","637293","3823431","GW","true","" +"NM-12046","","","292467","3669570","GW","false","" +"NM-11300","","","673222","3657480","GW","false","" +"NM-02049","","","235175","3557540","GW","false","" +"NM-05130","","","254733","3562500","GW","false","" +"MI-0088","","","473140","3919871","GW","true","Topographic situation: Valley" +"EB-319","","","404105","3938254","GW","true","South side of arroyo at watertank; 3rd eastern well off corner of San Pedro Way" +"TO-0252","6N11ยฝE24.222","","434538","3844380","GW","true","" +"NM-25595","","","406900","3983030","GW","false","" +"NM-09234","","","634459","3628840","GW","false","" +"NM-23689","PW-185","","373253","3911740","GW","false","" +"NM-14350","","","553572","3701460","GW","false","" +"NM-10075","","","637727","3638900","GW","false","" +"BW-0192","14S9E24.412","","403449","3660880","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11282","","","561892","3655680","GW","false","" +"NM-04330","","","135664","3549730","GW","false","" +"MI-0259","","","567655","3952427","GW","true","Topographic situation: Arroyo" +"NM-28436","S-2017-017","","615253","3579309","GW","true","" +"BC-0137","120","","359709","3894660","GW","true","" +"NM-17718","","","649015","3793070","GW","false","" +"UC-0080","","","622163","4091813","GW","true","From Clayton central intersection, go 3.4 miles E on US 56/412. Turn north on NM 406, stay on NM 406 at junction with NM 410. At 35.7 miles turn left onto NM 456 (Dry Cimmaron Canyon Road). Go west on NM 456 for 34.9 miles to intersection with Long canyon Road. Long Canyon Road is 6.7 miles west of the intersection of NM 370 (Lake Highway) and NM 456. Well is at white A-frame building on Long Canyon Road on west side, 3.9 miles up Long Canyon Road from intersection with NM 456. Well is pvc pipe with old can on top." +"NM-27158","PS-002","","370998","3907718","SP","true","Spring located off of unnamed road to Ciruela spring." +"QU-544","","","444599","4060964","D","true","From Spring 17, proceed west to the ditch and uphill to a juniper tree." +"NM-12987","","","283195","3686360","GW","false","" +"NM-22793","","","639205","3891550","GW","false","" +"NM-13974","","","544769","3695720","GW","false","" +"NM-20494","","","345739","3846620","GW","false","" +"NM-04638","","","670239","3553570","GW","false","" +"NM-20903","","","275725","3858360","GW","false","" +"SB-0723","TWDB 4923201","","386473","3510764","GW","false","" +"NM-17075","","","654653","3783210","GW","false","" +"NM-15079","","","563993","3729950","GW","false","" +"NM-26826","","","139626","3700780","GW","true","" +"NM-09607","","","644054","3632800","GW","false","" +"ED-0291","23S27E23.211","","579181","3573500","GW","true","" +"NM-10490","","","646965","3645190","GW","false","" +"NM-27116","LLC-11","","444472","4033660","GW","false","" +"NM-09053","","","639121","3626630","GW","false","" +"SM-0086","","","442034","3640746","GW","true","Turn south off of Hwy 82, onto Coleman Ranch, well is fist one come to along main road (past ranch mgr house), on south side. Well is in fenced area along powerline." +"NM-11312","","","560954","3656290","GW","false","" +"NM-07549","","","670955","3605400","GW","false","" +"NM-15959","","","201442","3758580","GW","false","" +"NM-06532","M-138","","201544","3587840","GW","false","On I-10 west of Deming, take exit 62, Gage, go N across RR 0.6 miles on CR D004, go west at junction on CR D002, at 11.1 miles go straight (north). At 13.3 miles go east on 2-track thru gate another 0.5 miles to windmill at corrals." +"SO-0227","SBB-W06A","","322366","3733206","GW","true","" +"NM-03476","","","624426","3917160","GW","false","" +"NM-22255","","","402883","3884870","GW","false","" +"NM-13095","","","440917","3685970","GW","false","" +"NM-13744","","","136417","3701210","GW","false","" +"NM-27297","","","259692","3584700","GW","false","" +"NM-06248","","","572963","3578460","GW","false","" +"DA-0202","23S2E6.2","","333258","3579620","GW","true","" +"TC-245","","","435048","4064718","GW","true","" +"NM-09547","","","552633","3630930","GW","false","" +"NM-15745","","","673327","3749490","GW","false","" +"TC-445","","","447187","4077892","GW","true","Head N on Hwy 522 past Cerro. Well is located on left side of the Hwy, about 2.5 miles past the runway strip." +"NM-15846","","","621266","3750870","GW","false","" +"NM-01516","","","290194","3966490","GW","false","" +"NM-11974","","","602711","3666770","GW","false","" +"NM-07798","","","662990","3609120","GW","false","" +"NM-11253","","","201767","3659650","GW","false","" +"AH-006","AH-09","","439905","4044326","GW","true","" +"EB-546","","","406522","3942728","GW","true","" +"NM-20024","","","247900","3839370","GW","false","" +"NM-25741","","","600766","3993770","GW","false","" +"EB-231","SF-15","","411679","3942184","GW","true","#48 Old Galisteo Way; north bank of Arroyo Hondo" +"NM-16069","","","619069","3758050","GW","false","" +"NM-23922","","","481035","3919120","GW","false","" +"NM-25544","","","261727","3983330","GW","false","" +"NM-15701","","","204946","3751340","GW","false","" +"NM-05757","","","257122","3571410","GW","false","" +"NM-05779","","","667841","3570110","GW","false","" +"NM-00840","","","443273","3721790","GW","false","" +"NM-07055","","","215676","3597350","GW","false","" +"NM-13782","","","413328","3695140","GW","false","" +"NM-09321","","","557821","3628830","GW","false","" +"NM-04384","","","278079","3547670","GW","false","" +"NM-23641","","","668556","3911070","GW","false","" +"QY-0904","8.32.25.312","","636103","3861510","GW","true","" +"NM-18647","","","648530","3810690","GW","false","" +"NM-11920","","","289314","3667640","GW","false","" +"NM-26942","PW-004","","370931","3907688","GW","true","" +"DA-0069","22S3E11.321","","348709","3586830","GW","true","" +"DA-0030","20S3E16.233","","346323","3604840","GW","true","" +"NM-25755","","","403144","3994470","GW","false","" +"NM-27694","","","656890","3796410","GW","false","" +"NM-18008","","","659409","3800180","GW","false","" +"NM-12515","","","617417","3676520","GW","false","" +"NM-11910","","","289233","3667490","GW","false","" +"NM-06385","","","674019","3582230","GW","false","" +"NM-10377","","","549845","3642340","GW","false","" +"NM-11347","","","557266","3657040","GW","false","" +"NM-16223","","","162197","3768940","GW","false","" +"NM-03690","","","447320","4097500","GW","false","" +"NM-08677","","","616693","3621870","GW","false","" +"NM-21386","","","346110","3872470","GW","false","" +"NM-12455","","","559934","3674520","GW","false","" +"BW-0256","15S9E1.142","","403000","3656430","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-23929","","","396904","3919970","GW","false","" +"NM-03256","","","420362","3841440","GW","false","" +"BC-0127","111","","366798","3881820","GW","true","" +"NM-10682","","","651664","3647080","GW","false","" +"NM-15879","","","191956","3756320","GW","false","" +"NM-06411","","","150239","3587290","GW","false","" +"NM-18772","","","348815","3812180","GW","false","" +"NM-27777","","","613482","3787330","GW","false","" +"SD-0168","10N.5E.26.314","","374284","3880720","GW","true","" +"NM-23388","","","294845","3903600","GW","false","" +"NM-25440","","","411888","3973520","GW","false","" +"NM-21632","","","353779","3878500","GW","false","" +"SD-0054","8N.6E.14.311","","382238","3865060","GW","true","" +"NM-03595","","","676496","3991740","GW","false","" +"NM-27858","","","657143","3811610","GW","false","" +"NM-17631","","","627476","3791240","GW","false","" +"AR-0018","NMED 466","","230841","4078390","GW","true","From Hwy 544 in Aztec, take Rd. 3000 west, turn right on Rd. 3009 towards the river. Take first left on Rd. 3008 to address. Well (white PVC) is in field behind home beyond chain link fence. Home may be for sale in future. Planning to move." +"NM-06657","","","672651","3587260","GW","false","" +"SO-0173","HWY-W02B","","328294","3755503","GW","true","" +"NM-15462","","","190782","3746330","GW","false","" +"NM-01767","","","165544","3511590","GW","false","" +"NM-06913","","","573475","3590660","GW","false","" +"NM-04349","","","245064","3547020","GW","false","" +"NM-23665","PW-309","","361398","3910930","GW","false","" +"TS-051","","","435496","4040926","SP","true","Small spring on east side." +"NM-07233","","","137946","3603310","GW","false","" +"NM-03932","","","119566","3529760","GW","false","" +"NM-10612","","","543805","3645550","GW","false","" +"NM-13538","","","575151","3692090","GW","false","" +"NM-27170","","","299405","3761640","SP","true","" +"BC-0211","211","","377128","3891960","GW","true","" +"NM-10865","","","658078","3650420","GW","false","" +"CX-0092","24N27E30.22","","580739","4016440","GW","true","" +"NM-05582","","","234428","3570070","GW","false","" +"NM-04400","","","334672","3547020","GW","false","" +"NM-16619","","","668511","3775930","GW","false","" +"EB-415","","","409790","3944508","GW","true","near County Fairgrounds. Turn North off of Rodeo Rd., at light at Pueblos Rd. Well site is surrounded by 4 steel pipes, and located along ""exit"" road in front of mobile homes. Altitude from 30-m DEM." +"NM-27222","","","600072","3544450","GW","false","" +"AH-065","AH-22","","442168","4043619","GW","true","" +"NM-18716","","","632409","3811400","GW","false","" +"QY-0484","15.36.14.144","","673318","3933300","GW","true","" +"NM-04183","","","243747","3540580","GW","false","" +"NM-07078","","","345978","3595020","GW","false","" +"NM-15709","","","201966","3751530","GW","false","" +"BW-0763","4.3.31.30.300","","617015","3764220","GW","true","" +"NM-00319","","","677136","3617260","GW","false","" +"QY-0196","11.30.14.432","","615967","3893150","GW","true","" +"NM-01172","","","329308","3875170","GW","false","" +"NM-13516","","","555202","3691670","GW","false","" +"NM-08225","","","241389","3617400","GW","false","" +"NM-01584","","","566594","3997200","GW","false","" +"NM-10209","","","173140","3645040","GW","false","" +"NM-27606","","","619929","3793240","GW","false","" +"NM-05689","","","259251","3570620","GW","false","" +"NM-02559","","","408061","3620840","GW","false","" +"NM-06309","","","543575","3579370","GW","false","" +"NM-25673","","","475122","3986950","GW","false","" +"BC-0085","70","","377263","3892360","GW","true","" +"NM-20206","","","609020","3840030","GW","false","" +"NM-01524","","","470776","3966680","GW","false","" +"NM-12006","","","619207","3667820","GW","false","" +"NM-16399","","","291584","3771700","GW","false","" +"BW-0240","14S10E20.144","","406294","3661250","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SB-0820","TWDB 4702702","","512058","3527634","SP","false","" +"NM-19197","","","606265","3820740","GW","false","" +"NM-03605","","","666948","3998860","GW","false","" +"NM-25676","","","625740","3988060","GW","false","" +"BW-0150","11S10E19.132","","412250","3689310","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-08342","","","676322","3617570","GW","false","" +"UC-0177","","","611261","4075946","GW","false","" +"NM-17595","","","638537","3790690","GW","false","" +"BW-0364","17S9E25.123","","408834","3631000","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-02121","","","239785","3563091","GW","false","South from intersection of Pine St & NM 11 in Deming, go 11.5 miles on NM 11, W on dirt road between fields 0.5 miles to well. A lot of well-related debris around." +"NM-14884","","","428466","3722640","GW","false","" +"NM-11915","","","559549","3665460","GW","false","" +"DE-0160","","","672500","3618981","GW","false","" +"BW-0936","4.10.24.22.441","","547400","3698560","SP","true","" +"NM-25804","","","478950","3996830","GW","false","" +"NM-01815","","","117505","3529140","GW","false","" +"NM-19675","","","371925","3831180","GW","false","" +"NM-10116","","","625427","3639320","GW","false","" +"ED-0134","21S27E29.423","","574664","3590490","GW","true","" +"NM-10833","","","638410","3649470","GW","false","" +"NM-12115","","","635767","3669640","GW","false","" +"NM-16677","","","276292","3778090","GW","false","" +"NM-10942","","","552871","3649690","GW","false","" +"MI-0154","","","547885","3931703","GW","true","Topographic situation: Valley" +"MI-0253","","","536353","3946274","GW","true","Topographic situation: Plateau" +"NM-06092","","","335950","3575710","GW","false","" +"EB-119","","","413565","3940900","GW","true","" +"NM-21577","","","347306","3877430","GW","false","" +"NM-21950","","","345834","3882330","GW","false","" +"NM-02774","","","560298","3670150","GW","false","" +"NM-04711","","","325120","3554610","GW","false","" +"NM-04794","","","646140","3556180","GW","false","" +"NM-13815","","","546038","3695040","GW","false","" +"NM-01376","","","198919","3928360","GW","false","" +"DE-0269","","","663089","3634654","GW","false","" +"NM-17335","","","650245","3786590","GW","false","" +"BC-0026","17","","368570","3881370","GW","true","" +"NM-07095","","","358931","3595200","GW","false","" +"WL-0002","NM3511019","","437785","3647425","GW","true","Well in chain link fence" +"SA-0473","6S14W31.122","","192030","3739470","GW","true","" +"NM-08171","","","300140","3615310","GW","false","" +"NM-12976","","","632630","3684970","GW","false","" +"BW-0176","14S9E13.2","","403688","3663090","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-13020","","","558010","3684640","GW","false","" +"AR-0065","","","234946","4082450","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2926 to address on left. Well is in subsurface vault about 60 ft from SE corner of yellow double wide." +"NM-02041","","","235179","3556670","GW","false","" +"NM-23890","","","664735","3919690","GW","false","" +"NM-27247","","","589517","3566190","GW","false","" +"NM-23811","","","389260","3915810","GW","false","" +"HS-111","TC-111","","289018","3668743","GW","true","" +"NM-02521","","","182757","3619430","GW","false","" +"HS-052","TC-052","","289699","3667946","GW","true","In back of Jewelry Doctor in fenced yard near SE corner of building beneath man hole cover. On Foch St. south of Main." +"ED-0342","25S25E4.144","","556294","3558430","GW","true","" +"SM-1010","","","439748","3630463","SP","true","Access Hay Canyon by Prestridge Hill Road or Agua Chiquita. AKA Prestridge Spring on topo, at intersection of Hay Canyon and Prestridge Hill Rd." +"NM-23503","","","358316","3907650","GW","false","" +"NM-26760","","","175892","4096720","GW","false","" +"NM-10044","","","560890","3637230","GW","false","" +"NM-14624","","","408811","3712090","GW","false","" +"NM-01996","","","364827","3619160","GW","false","" +"NM-08961","","","206590","3628750","GW","false","" +"WL-0011","NM3515310","","448856","3840092","GW","false","" +"NM-05099","","","270446","3561830","GW","false","" +"NM-08927","","","286839","3626460","GW","false","" +"CX-0159","77","","537623","4023150","GW","true","1 mile southeast of Springer" +"NM-22700","","","347258","3890710","GW","false","" +"EB-157","","","396449","3965653","GW","true","""Behind"", north, of Buckman #3" +"NM-06152","","","199960","3580530","GW","false","" +"ED-0081","20S30E20.13","","593965","3602970","GW","true","" +"UC-0209","","","576174","4081507","GW","false","" +"WL-0040","NM3533814","","436333","3697263","GW","true","From Hwy 48 in Alto, NM, go west at Sun Valley Road just south of post office. Follow Sun Valley Road until you get to Snowflake and make a right. Make a left on Elk Horn then left on Mogul. Well is by blue well house in outside box." +"NM-27333","","","554986","3590970","GW","false","" +"NM-08752","","","562752","3622400","GW","false","" +"NM-12471","","","633867","3675900","GW","false","" +"SM-0071","","","439877","3608886","GW","true","Heading SE on Sacramento River Rd (South from Timberon), pass thru Southern Cross land holding, take L onto 2 track just past wooden paddock and fences on L. Well is in valley with pumpjack adjacent." +"EB-120","","","414240","3957390","GW","true","" +"WL-0023","","","330361","3801854","GW","true","I-25 north from Socorro, exit Hwy 60 east. Cross Rio Grande then turn south on Hwy 304 all the way into La Joya. House is on left side of road, almost directly across from La Joya Sevilleta historical marker. Well is on south side of house in small 4'x4' structure w/corrugated tan metal roof missing sides." +"NM-28403","S-2014-017","","634772","3591053","GW","true","" +"NM-24557","","","380725","3940050","GW","false","" +"SO-0014","1N4E26.424","","363186","3794020","GW","true","" +"NM-20373","","","626712","3843370","GW","false","" +"NM-09928","","","410254","3635850","GW","false","" +"DA-0145","25S2E23.221","","339318","3555600","GW","true","" +"BC-0305","331","","385458","3872890","GW","true","" +"NM-26296","","","618295","4041980","GW","false","" +"NM-04654","","","232378","3555950","GW","false","" +"TB-0120","","","419280","3722805","GW","true","East of Carrizozo - Hwy 380 heading west to Birch (south), before overpass at RR track. South on Birch to Agua (W) to Aspen. Turn right to 108 Aspen (W side). LS Vega on gate." +"NM-05930","","","589786","3571300","GW","false","" +"NM-18575","","","571457","3807930","GW","false","" +"NM-15736","","","168000","3753330","GW","false","" +"WL-0038","","","464153","3814008","GW","true","East on Hwy 60 from I-25 to Encino, NM, then south on Rt. 3 to Duran, NM. In Duran stay on Rt. 3 across railroad tracks and Hwy 54. When you come to a ""T"" make a left. House on right side of road. Streets are unnamed here! Well is under windmill to east of house." +"AB-0161","S210","","359661","3899920","GW","true","" +"TO-0146","5N8E8.341","","396932","3836900","GW","true","" +"DE-0096","","","639319","3568981","GW","false","" +"NM-22904","","","291620","3894270","GW","false","" +"NM-23806","","","646525","3916140","GW","false","" +"NM-26106","","","606857","4021340","GW","false","" +"NM-27321","","","672328","3607490","GW","false","" +"NM-22986","","","349435","3894430","GW","false","" +"NM-11790","","","278962","3666290","GW","false","" +"NM-25592","","","404670","3982930","GW","false","" +"UC-0192","","","632215","4044732","GW","false","" +"NM-09336","","","645293","3629920","GW","false","" +"NM-20793","","","271437","3855630","GW","false","" +"EB-622","","","401040","3924413","ES","true","only known location is ""San Marcos Creek"" surface water site." +"DE-0369","","","569215","3626962","GW","false","" +"TB-2001","","","422073","3652505","M","true","Take Labrocita Canyon Rd east, continue left at fork with La Luz Canyon. Turn R onto Cottonwood Canyon Rd, go to the end." +"NM-14915","","","148334","3729690","GW","false","" +"QU-501","","","441474","4059867","SP","true","Downstream from fish hatchery along Red River. First large riverside spring below foot bridge on north side." +"NM-09997","","","677828","3638090","GW","false","" +"NM-18181","","","630748","3802410","GW","false","" +"NM-09587","","","557416","3631360","GW","false","" +"NM-11311","","","656482","3657630","GW","false","" +"NM-05402","","","273339","3566970","GW","false","" +"QY-0980","9.33.12.222","","647217","3877030","GW","true","" +"NM-17345","","","630687","3786670","GW","false","" +"UC-0139","","","661146","3953298","GW","true","Drive 54 miles south from Clayton on NM 402 to Quay County line. 0.9 miles south of Quay County line, turn west on gravvel road QR101. Sign says ""Ione Ranch"" Go 6.1 miles west on QR 101, turn south on QR M. Go 1 mile south on QR M , turn east on gravel road past trailer house and barn 0.7 milies across gully and through junkyard of cars and equipment to well." +"NM-21459","","","543575","3873060","GW","false","" +"NM-06470","","","652247","3583410","GW","false","" +"BW-0338","17S8E13.113a","","398683","3634330","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07056","","","670295","3595160","GW","false","" +"QY-1001","9.35.33.231","","661290","3870590","GW","true","" +"NM-11799","","","286251","3666320","GW","false","" +"NM-24038","","","236147","3928320","GW","false","" +"NM-06202","","","674893","3578580","GW","false","" +"NM-10655","","","471779","3645730","GW","false","" +"BC-0233","233","","375725","3892400","GW","true","" +"NM-05083","","","678114","3560550","GW","false","" +"NM-11147","","","669948","3654710","GW","false","" +"NM-13382","","","557873","3690210","GW","false","" +"NM-03806","","","256573","3520820","GW","false","" +"NM-16934","","","652695","3780780","GW","false","" +"NM-14983","","","663391","3727740","GW","false","" +"NM-16754","","","665139","3778210","GW","false","" +"BW-0001","17S4E2.211","","359155","3636790","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-22813","","","672397","3892460","GW","false","" +"QY-0218","11.30.21.412","","612698","3892010","GW","true","" +"NM-23907","","","413896","3919150","GW","false","" +"WL-0163","","","614624","3702374","GW","true","Well on BLM land. Contact Mike McGee for escort to well. Reconstructed windmill at high topo." +"NM-17840","","","650186","3796630","GW","false","" +"NM-27820","","","560990","3803910","GW","false","" +"NM-21219","","","343568","3868380","GW","false","" +"NM-19802","","","561566","3832560","GW","false","" +"NM-12087","","","658880","3669780","GW","false","" +"NM-06264","","","250093","3581600","GW","false","" +"WL-0102","","","618704","3558490","GW","true","" +"NM-27888","","","584886","3819100","GW","false","" +"TO-0015","2N5E4.223","","369767","3810820","GW","true","" +"NM-06933","","","550730","3591070","GW","false","" +"TO-0516","6N10E8","","416525","3846970","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-10378","","","403146","3642690","GW","false","" +"NM-05117","","","240683","3562640","GW","false","" +"DE-0298","","","674834","3570845","GW","false","" +"NM-23947","","","638778","3920880","GW","false","" +"EB-378","","","400477","3933822","GW","true","North side of movie-set townsite" +"SV-0147","13y Camino Real","","380508","3899393","GW","false","" +"UC-0229","","","595529","4066621","GW","false","" +"NM-06592","","","672696","3586180","GW","false","" +"DE-0322","","","674220","3589955","GW","false","" +"NM-18708","","","610281","3811050","GW","false","" +"SB-0588","TWDB 4862502","","468360","3437499","GW","false","" +"NM-09259","","","409224","3628370","GW","false","" +"DA-0118","25S3W8.21","","295578","3559540","GW","true","" +"NM-06156","","","327349","3577670","GW","false","" +"NM-11485","","","645982","3660580","GW","false","" +"NM-25765","","","405255","3995340","GW","false","" +"NM-04445","","","615725","3547540","GW","false","" +"PC-146","PS-24","","368313","3906185","SP","true","" +"BW-0675","2.3.13.33.413","","445496","3810630","GW","true","" +"NM-06721","","","671347","3588620","GW","false","" +"QY-0568","5.28.33.421","","594024","3830420","GW","true","" +"DE-0103","","","659299","3557832","GW","false","" +"NM-16206","","","220281","3766140","GW","false","" +"NM-09872","","","618296","3635840","GW","false","" +"NM-28101","","","383560","3898440","GW","false","" +"QY-0601","5.29.20.433b","","601695","3833270","GW","true","" +"NM-18836","","","618990","3812700","GW","false","" +"NM-25326","","","314443","3970280","GW","false","" +"NM-16080","","","673961","3759760","GW","false","" +"NM-22808","","","349186","3891950","GW","false","" +"NM-06331","","","575697","3579900","GW","false","" +"NM-11365","","","659523","3658910","GW","false","" +"NM-13142","","","285140","3688840","GW","false","" +"QY-0490","15.37.30.121","","676486","3930580","GW","true","" +"NM-08141","","","208754","3617220","GW","false","" +"NM-16410","","","320642","3771570","GW","false","" +"NM-19391","","","665831","3827130","GW","false","" +"NM-10150","","","672041","3640450","GW","false","" +"NM-21155","","","583146","3864860","GW","false","" +"NM-04862","","","133388","3562430","GW","false","" +"NM-26540","","","446626","4065460","GW","false","" +"NM-01497","","","200504","3958870","GW","false","" +"NM-19650","","","580658","3830250","GW","false","" +"NM-05396","","","261842","3567170","GW","false","" +"NM-03839","","","143789","3524820","GW","false","" +"NM-09942","","","664061","3637300","GW","false","" +"NM-24198","","","622294","3930970","GW","false","" +"NM-15582","","","603868","3744280","GW","false","" +"TB-0315","","","403919","3654637","GW","true","Going S on Hwy 54 from Tularosa (St Francis Dr.), turn W onto Radio Rd, then S onto Riata Rd. Continue along Riata Rd across railroad and proceed to address at corner of Riata Rd and Gardner Ln. Address has lots of distinctive artwork. Well is in front yard near ""Lost Soles"" exhibit." +"NM-16231","","","595189","3763720","GW","false","" +"BW-0034","22S4E24.222a","","360768","3584160","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18784","","","625479","3812290","GW","false","" +"NM-22375","","","612774","3886290","GW","false","" +"NM-09137","","","637749","3627990","GW","false","" +"NM-09211","","","681157","3629580","GW","false","" +"NM-05076","","","678602","3561110","GW","false","" +"DE-0084","","","639388","3568980","GW","false","" +"CX-0144","60","","504485","4027390","GW","true","8 miles southwest of Cimarron" +"NM-06880","","","572956","3590190","GW","false","" +"DE-0171","","","673065","3618805","GW","false","" +"NM-25672","","","674157","3988480","GW","false","" +"NM-26803","","","376690","3890310","GW","true","" +"NM-03328","","","398090","3875660","GW","false","" +"NM-25483","","","633532","3976120","GW","false","" +"NM-11941","","","289917","3667930","GW","false","" +"NM-09654","","","408142","3632320","GW","false","" +"SM-0022","","","434266","3649821","GW","true","US 82 east to NM 244 north, take left onto La Luz Canyon Rd. Go up Silver Springs Canyon, go past cattle guard. On right coming down hill is driveway with white swinging gate with sign saying 1217 La Luz Canyon Road. Well is up hill near transformer pole on bench bladed into hillside. Gate will be locked, walk around it. Hold flashlight and shine into well, the other guides the tape into the inner pipe thru slots in welded plate on top of well casing. Ok to come by anytime, donโ€™t need to call." +"NM-27952","","","567724","3843480","GW","false","" +"NM-03297","","","678896","3856750","GW","false","" +"NM-13958","","","546422","3695660","GW","false","" +"NM-00125","","","557250","3557970","GW","false","" +"NM-02248","","","332794","3571570","GW","false","" +"NM-16372","","","217348","3772860","GW","false","" +"NM-07318","","","281212","3601250","GW","false","" +"SB-0864","Mayer 25","","458711","3578679","GW","false","" +"NM-14048","","","554088","3696750","GW","false","" +"NM-17363","","","642201","3786990","GW","false","" +"SB-0572","TWDB 4855903","","487822","3447711","GW","false","" +"NM-13623","","","547830","3693020","GW","false","" +"AB-0046","S052","","345977","3886310","GW","true","" +"NM-16938","","","673977","3781110","GW","false","" +"NM-19619","","","591869","3829890","GW","false","" +"NM-13597","","","552224","3692740","GW","false","" +"NM-21309","","","381291","3869910","GW","false","" +"NM-26117","","","407212","4021730","GW","false","" +"NM-18975","","","550025","3814750","GW","false","" +"NM-22416","","","610363","3886780","GW","false","" +"ED-0109","21S26E24.424b","","571275","3591860","GW","true","" +"NM-11825","","","285764","3666570","GW","false","" +"DE-0367","","","569379","3626805","GW","false","" +"BC-0159","140","","375704","3891940","GW","true","" +"NM-01599","","","319731","4010160","GW","false","" +"NM-07038","","","362308","3593980","GW","false","" +"NM-04768","","","677073","3555630","GW","false","" +"NM-06841","","","676260","3591570","GW","false","" +"NM-15262","","","655285","3738300","GW","false","" +"EB-380","","","403485","3932403","GW","true","Center of section 14, 0.4 mi east of 2-track/gate, south side of fence" +"NM-06695","","","566032","3586880","GW","false","" +"NM-20919","","","648639","3857780","GW","false","" +"NM-11288","","","284721","3658060","GW","false","" +"NM-05964","","","250622","3574410","GW","false","" +"NM-18060","","","662215","3800830","GW","false","" +"TV-901","","","436107","4022668","M","true","Located on vacant land near Rio Pueblo de Taos gorge. From US 68, turn onto NM 570 (aka County Rd 110), drive past armory, UNM Taos, and golf course. Continue west to near gorge, turn left (south) onto dirt road. Proceed ~1500 ft., park and walk west to small juniper." +"SV-0069","06 Osito","","378276","3899205","GW","false","Unit 2 Lot 46" +"DE-0315","","","650251","3590813","GW","false","" +"NM-18085","","","676372","3802240","GW","false","" +"QY-0934","9.27.5.122","","582038","3877750","GW","true","" +"EB-659","","","407763","3939516","GW","true","" +"NM-26969","","","375679","3890740","GW","true","" +"NM-20470","","","647228","3845920","GW","false","" +"NM-14293","","","556573","3700400","GW","false","" +"ED-0343","25S25E4.424","","557072","3558140","GW","true","" +"SA-0402","3S11W31.300","","220093","3766300","GW","true","" +"OG-0066","","","647342","3805843","GW","true","From int of SR 311 and US 60, west of Clovis, drive 4 miles west on US 60. Turn left south on CR U. Drive 1.3 miles south. Turn right west into field. Drive 0.5 miles west. Turn left south. Drive 0.5 miles. Turn left east. Drive 0.1 miles to well. Field may be very sandy." +"NM-12306","","","678190","3673930","GW","false","" +"SD-0366","10N.5E.10.432","","373509","3885310","SP","true","" +"PC-153","","","358458","3906632","M","true","" +"NM-12206","","","290786","3672230","GW","false","" +"NM-07659","","","227349","3609450","GW","false","" +"NM-23681","","","183281","3916140","GW","false","" +"NM-06530","","","360399","3584340","GW","false","" +"NM-15647","","","605547","3745870","GW","false","" +"NM-15692","","","633004","3747480","GW","false","" +"NM-20145","","","618421","3839250","GW","false","" +"NM-04845","","","674661","3557160","GW","false","" +"NM-11620","","","555583","3661250","GW","false","" +"NM-02147","","","236721","3565570","GW","false","" +"MI-0224","","","591683","3940388","GW","true","Topographic situation: Canyon" +"NM-20309","","","600274","3841680","GW","false","" +"NM-01941","","","239658","3545594","GW","true","1.31 mi south on NM11 from intersection at Pine & Gold in Deming, right on Brazil Rd CR C010, south 4.7 miles, Sweetser property on left east, house, several barns. Well is on north side of property north of small pump(?) house." +"BW-0437","18S9E36.222","","409586","3619470","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"AB-0221","S277","","360152","3936280","GW","true","" +"NM-18382","","","607334","3805380","GW","false","" +"NM-18794","","","151042","3817870","GW","false","" +"TC-241","","","411336","4066042","GW","true","" +"NM-21760","","","433278","3879580","GW","false","" +"AH-073","AH-36","","441285","4041594","GW","true","" +"NM-15127","","","595816","3732030","GW","false","" +"NM-08397","","","662866","3618270","GW","false","" +"NM-06089","","","311047","3576080","GW","false","" +"NM-04294","","","341458","3543030","GW","false","" +"NM-01311","","","367493","3907920","GW","false","" +"NM-11202","","","629379","3655020","GW","false","" +"NM-23567","","","654771","3909220","GW","false","" +"AB-0029","S034","","377281","3942190","GW","true","" +"SV-0076","21 Osito","","377829","3899389","GW","false","Unit 3 Lot 48" +"NM-02860","","","411847","3716800","GW","false","" +"NM-16854","","","670720","3779880","GW","false","" +"NM-16084","","","620193","3758520","GW","false","" +"NM-17608","","","640609","3790720","GW","false","" +"NM-07944","","","558973","3610000","GW","false","" +"SD-0084","9N.6E.21.213","","381077","3873270","GW","true","" +"NM-03003","","","657062","3781270","GW","false","" +"SV-0102","13 Via Alcalde","","380387","3900920","GW","false","Unit 1 Lot 41" +"BW-0934","4.7.10.26.420","","419613","3725770","SP","true","" +"CX-0185","S7","","557901","4096220","SP","true","East slope Fishers Peak Mesa" +"SB-0737","TWDB 4923901","","392024","3500450","GW","false","" +"NM-05809","","","605995","3570010","GW","false","" +"NM-15253","","","285762","3738760","GW","false","" +"NM-16485","","","672808","3773640","GW","false","" +"NM-17493","","","591793","3788390","GW","false","" +"NM-00126","","","370659","3558910","GW","false","" +"SM-0180","","","516871","3625427","GW","true","From Hwy 82, head south on Eddy County 12 at Hope. After 2.8 mi, turn R onto EC 13 (Side Kick Rd). Flat Valley (EC 1) head north, house at 2.6 mi?, road to right. Well behind house." +"NM-09510","","","560202","3630730","GW","false","" +"NM-14830","","","253657","3723840","GW","false","" +"NM-09611","","","666600","3633210","GW","false","" +"NM-25542","","","652018","3981420","GW","false","" +"TO-0356","8N8E26.222","","402925","3862190","GW","true","" +"SV-0132","04 Vista la Made","","377255","3900822","GW","false","Unit 3 Lot 87" +"NM-21442","","","288706","3874510","GW","false","" +"NM-20247","","","634708","3841140","GW","false","" +"NM-04796","","","136910","3561070","GW","false","" +"NM-13412","","","638047","3691550","GW","false","" +"NM-26346","","","211078","4053010","GW","false","" +"TC-404","","","448790","4087605","GW","true","" +"NM-05813","","","666274","3571470","GW","false","" +"NM-16623","","","302815","3776390","GW","false","" +"NM-01043","","","594283","3837700","GW","false","" +"NM-09730","","","559019","3632940","GW","false","" +"PB-0021","","","379149","3937735","GW","true","Measured from well in front of (south) of house. Well head is in garage/old gas station west of well stick-up. Old garage faces Hwy 22. Address is 852 or 854 Hwy 22." +"TO-0128","5N6E25.311","","383806","3832820","GW","true","" +"NM-26979","","","323704","3792100","GW","true","" +"NM-25611","","","466673","3983120","GW","false","" +"NM-24632","","","673015","3943030","GW","false","" +"NM-18890","","","580116","3813390","GW","false","" +"QU-054","CER-20?","","446470","4071775","GW","true","From north on Hwy. 522, take left on Buena Vista Rd; proceed 0.8 miles to a right turn w/a locked gate; #89 in faded stickers. Find well off southwest corner of a green metal garage." +"NM-22225","","","615679","3884880","GW","false","" +"NM-16427","","","655580","3772010","GW","false","" +"NM-24224","","","406985","3931380","GW","false","" +"EB-626","","","399250","3959720","GW","true","" +"MI-0185","","","480567","3939125","GW","true","Topographic situation: " +"AS-064","DM-45","","446297","4044800","GW","true","" +"NM-25393","","","469990","3971830","GW","false","" +"DE-0124","","","673041","3616160","GW","false","" +"NM-03080","","","665075","3803600","GW","false","" +"SA-0324","","","256432","3703718","GW","true","" +"MI-0085","","","470970","3925903","GW","true","Topographic situation: " +"SM-0124","","","477400","3639899","GW","true","" +"NM-16031","","","214560","3760420","GW","false","" +"NM-24344","","","463016","3934610","GW","false","" +"NM-06617","","","332231","3586490","GW","false","" +"NM-11748","","","556374","3663410","GW","false","" +"QY-0603","5.29.23.222","","607041","3834490","GW","true","" +"NM-06219","","","328623","3578730","GW","false","" +"NM-08940","","","562426","3624460","GW","false","" +"NM-11810","","","556369","3664270","GW","false","" +"NM-07014","","","568083","3592620","GW","false","" +"NM-06265","","","218290","3582440","GW","false","" +"NM-22216","","","380776","3884830","GW","false","" +"NM-11043","","","612086","3651510","GW","false","" +"NM-09174","","","558298","3627270","GW","false","" +"TV-239","SW-07","","441899","4023741","GW","true","" +"NM-06580","","","360491","3585350","GW","false","" +"NM-12031","","","672428","3668650","GW","false","" +"NM-25511","","","183394","3983700","GW","false","" +"NM-18125","","","633517","3801770","GW","false","" +"AB-0056","S064","","350775","3900800","GW","true","" +"NM-16673","","","632364","3776650","GW","false","" +"NM-18116","","","270881","3803230","GW","false","" +"NM-25843","","","238002","4003380","GW","false","" +"NM-06609","","","364000","3585830","GW","false","" +"AR-0191","H002","NMED 30","234995","4084110","GW","true","From Aztec take Hwy 550 toward Farmington. Just across river/bridge, turn right at light on Ruins Rd and continue on Rd 2900 through monument. Turn right at Rd 2845 and follow around loop to address on outside of loop." +"NM-17372","","","650133","3787210","GW","false","" +"NM-13068","","","287184","3687660","GW","false","" +"NM-01265","","","624556","3897630","GW","false","" +"NM-19236","","","633119","3822410","GW","false","" +"CX-0085","24N26E6.42","","571053","4022030","GW","true","" +"NM-19122","","","670422","3820060","GW","false","" +"NM-07331","","","620629","3599990","GW","false","" +"NM-16281","","","592064","3765880","GW","false","" +"NM-20901","","","533829","3855650","GW","false","" +"CX-0032","28N27E28.1","","582695","4055220","GW","true","" +"NM-20162","","","531092","3838790","GW","false","" +"NM-22291","","","394684","3885330","GW","false","" +"NM-21262","","","346345","3868880","GW","false","" +"NM-19018","","","570479","3815620","GW","false","" +"NM-00739","","","431141","3696990","GW","false","" +"NM-03827","","","253582","3521230","GW","false","" +"NM-08313","","","672269","3616890","GW","false","" +"BC-0028","19","","381202","3890240","GW","true","" +"NM-14681","","","288027","3716610","GW","false","" +"SM-4019","","","436992","3631698","PS","true","Stream flow measurement by Patrick Walsh" +"NM-14756","","","418301","3717950","GW","false","" +"NM-25926","","","360517","4005370","GW","false","" +"NM-21188","","","557332","3866210","GW","false","" +"EB-204","","","404659","3929658","GW","true","on south side of Gallina Arroyo (Rte 2, Box 305)" +"NM-00403","","","640534","3632670","GW","false","" +"SM-1099","","","473173","3645251","SP","true","Hwy 82 between mile marker 49-50. Stone house with green roof. Address is 5407 Rio Penasco. Spring is uphill from little cemetery with big white cross. Spring is dammed with concrete." +"SA-0325","","","246016","3701671","GW","true","" +"NM-13314","","","565400","3689370","GW","false","" +"NM-04524","","","233135","3552780","GW","false","" +"NM-04663","","","237176","3555790","GW","false","" +"NM-27935","","","571154","3837350","GW","false","" +"NM-01384","","","177923","3931400","GW","false","" +"NM-27598","","","626706","3793300","GW","false","" +"NM-20516","","","676293","3847940","GW","false","" +"NM-12274","","","663745","3673240","GW","false","" +"CX-0120","24","","553296","4068370","GW","true","3 1/2 miles northeast of Hebron" +"NM-13685","","","139235","3700390","GW","false","" +"NM-11038","","","281368","3653200","GW","false","" +"NM-01778","","","116836","3525080","GW","false","" +"NM-22753","","","379828","3890700","GW","false","" +"SD-0147","10N.5E.11.431","","374955","3885380","GW","true","" +"SR-0026","","","381911","4030350","SP","true","Mogote Ridge; " +"UC-0117","","","594969","4060228","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-05662","","","254003","3570220","GW","false","" +"NM-25281","","","575769","3965760","GW","false","" +"NM-19264","","","654214","3823630","GW","false","" +"NM-15957","","","653857","3755010","GW","false","" +"NM-22496","","","286798","3889450","GW","false","" +"NM-24122","","","415524","3928650","GW","false","" +"SB-0419","TWDB 4814901","","473514","3515192","GW","false","" +"NM-24365","","","475757","3935090","GW","false","" +"ED-0127","21S27E6.14","","572319","3597570","GW","true","" +"EB-252","","","412656","3963121","GW","true","Tesuque Pueblo, behind J.R. Clothing store, west side of Hwy 285" +"NM-12164","","","663232","3671420","GW","false","" +"NM-27505","","","556163","3743700","GW","false","" +"NM-14141","","","680190","3700130","GW","false","" +"SA-0031","SA-31_R00","","230214","3772756","GW","true","From Datil go south on NM 12 for 7.7 miles, halfway between MM 67 & 66 (Gutierrezville) Look for the Harriet Ranch sign on the east side of the highway and follow dirt road to the east. Stay north where the road forks and stay north to the second house. Look for well house underneath wooden tower. Remove roof to access casing." +"NM-17715","","","644976","3792890","GW","false","" +"NM-18179","","","612686","3802110","GW","false","" +"NM-20493","","","404426","3845790","GW","false","" +"NM-01276","","","663931","3900990","GW","false","" +"NM-10379","","","668212","3643930","GW","false","" +"DE-0126","","","672873","3616052","GW","false","" +"HS-030","TC-030","","289195","3667810","GW","true","Main and Poplar, in the monette Ford Lot, the most western well" +"NM-08622","","","662835","3621750","GW","false","" +"NM-28355","148875","","160660","3693589","SP","false","Gila National Forest" +"EB-301","","","396972","3935730","GW","true","In well house, in field across from #73A Cam. Capilla Viejo (0.6 mi south of intersection w/ Los Pinos Rd)" +"NM-25695","","","209467","3993510","GW","false","" +"NM-08292","","","186895","3619920","GW","false","" +"NM-17665","","","625653","3791710","GW","false","" +"NM-07581","","","641948","3605500","GW","false","" +"NM-14419","","","412686","3704100","GW","false","" +"NM-14038","","","546159","3696650","GW","false","" +"QU-042","","","446802","4067139","GW","true","Driving north on Hwy 522, 2 miles past road to Cerro, find address (#2766) on the left. Well in vault in wooden shed on property." +"SM-0228","","","456800","3645715","GW","true","Turnoff to right, 1.5 mi past junction with Walker Canyon Rd., Keep left following bladed road 0.5 mi to windmill on left." +"NM-15043","","","624297","3729250","GW","false","" +"NM-06901","M-150","","259586","3593054","GW","false","Take NM26 16.5 miles NE of intersection w/US 180, go left at dual gate on W, go thru red gate closed w/chain, go NE around field to old house w/two windmills. Well is under steel windmill frame" +"NM-24621","","","409077","3941380","GW","false","" +"NM-08339","","","258660","3618870","GW","false","" +"NM-13594","","","550261","3692690","GW","false","" +"NM-12323","","","646382","3673680","GW","false","" +"SB-0171","TWDB 4743503","","531263","3465976","GW","false","" +"NM-27033","","","328929","3761120","GW","true","" +"TS-036d","","","436185","4042659","SP","true","Good spring on east side of river." +"NM-19137","","","669558","3819860","GW","false","" +"TS-036e","","","436181","4042643","SP","true","Small spring on east side." +"NM-07539","","","671271","3605250","GW","false","" +"NM-05059","","","237417","3562070","GW","false","" +"QU-044","","","448200","4062125","GW","true","From Hwy 522, at light in town, take right and proceed one mile to Gonzales RV Park on the right side of road. Drive to the back of blue house. Well in shed." +"NM-25322","","","288825","3970640","GW","false","" +"SO-0243","SFC-W06A","","312877","3720965","GW","true","" +"SV-0142","21y Canada Vista","","380775","3899677","GW","false","" +"NM-12821","","","669149","3682830","GW","false","" +"NM-04019","","","265138","3530480","GW","false","" +"AR-0080","B023","","238130","4086890","GW","true","From Aztec take Hwy 550 toward Cedar Hill. Turn left on Rd 2755 continue to Rd 2650. Address in on left behind #51. Well is in small brown well house. House is rented and may be vacant." +"NM-22165","","","346684","3884630","GW","false","" +"SD-0007","6N.6E.15.224","","381347","3846170","GW","true","" +"NM-11448","","","658701","3660010","GW","false","" +"NM-06056","","","259362","3576380","GW","false","" +"NM-01730","","","203432","4087970","GW","false","" +"NM-20946","","","416276","3857040","GW","false","" +"NM-15370","","","191730","3744570","GW","false","" +"NM-21172","","","567586","3865540","GW","false","" +"NM-18606","","","655174","3809970","GW","false","" +"NM-15994","","","647411","3756600","GW","false","" +"NM-26088","","","664928","4020950","GW","false","" +"NM-15665","","","323141","3747390","GW","false","" +"NM-08392","","","293471","3619080","GW","false","" +"WL-0105","S-2016-082","","595420","3571090","GW","true","" +"SA-0167","","","245620","3715440","GW","true","From Hwy 60 take County Rd. 52 (By the VLA) south for approximately 32 miles to Dusty (Wahoo Ranch HQ which is the entire town) Continue south for approx. 2.9 miles (0.6 miles north of MM49) and look for gate to the west with archway and Wahoo Ranch sign. (combo1920 or 3081). Take road to west, across the creek and to the south past the bunkhouse (good digs here!) and barns and take two track to the west up Pole Canyon for 4.5 miles (road runs through creek bed in places) . At Ranch HQ watch for dogs, especially three legged one as they do bite. GPS helpful from this point on!!! Before the first house turn to the south and take the road up the hill. Where road forks bear to the west through gate and follow road to the west for several miles (approx 6.2). After crossing into the forest road forks, bear to the southwest (left) on Forest Road 913 and go 0.5 miles to windmill tower, corral and tank by well. ** FROM SA-0165 stay west before gate on way out across hills and bear north at cream colored steel storage rail tank. FOLLOW GPS. At T bear left and stay left on FR 913." +"NM-23583","","","410739","3908610","GW","false","" +"AR-0040","","","221341","4073530","GW","true","From Farmington take Hwy 516 towards Aztec. Turn right on Rd 350 south across river. Turn right on Rd 3000 to address on right." +"NM-13811","","","549344","3695060","GW","false","" +"DA-0055","22S2E13.411","","341096","3585320","GW","true","" +"NM-11283","","","677172","3657180","GW","false","" +"NM-07505","","","216004","3607050","GW","false","" +"EB-124","","","405446","3941316","GW","true","" +"NM-08543","","","293013","3621400","GW","false","" +"NM-11859","","","286056","3666910","GW","false","" +"NM-02922","","","132433","3748580","GW","false","" +"NM-15061","","","151644","3735520","GW","false","" +"MI-0058","","","474653","3909709","GW","true","Topographic situation: Mesa" +"NM-11719","","","285217","3665290","GW","false","" +"NM-04165","","","250241","3539680","GW","false","" +"NM-04040","","","239822","3532970","GW","false","" +"EB-477","","","412588","3946584","GW","true","" +"NM-18215","","","611605","3802780","GW","false","" +"NM-26344","","","678178","4049850","GW","false","" +"QY-0175","11.30.11.242","","616390","3895510","GW","true","" +"SM-0243","","","478076","3653597","GW","true","From US 82, take Picacho Rd north to Felix Canyon road at 9.3 miles. At 'Y' go left, and cross Rio Felix at 9.4 miles. Follow Felix Canyon Road for 5.5 miles, and before re-cross Rio Felix, turn Right to Lincoln Canyon Road at 14.9 miles. Head up Lincoln Canyon about 1/2 mile, crossing the drainage. The well will be visible on the left. Follow the two-track trail to the windmill." +"SA-0023","SA-23_R00","","210766","3776100","GW","true","From NM 12, go to green Gap Rd., west to Y. Stay on Green Gap to Right, past mailboxes and signs. 3.8 mi to mailboxes, then continue W. Turn S 1.1 mile NW of Walkabout Creek Ranch Rd, then go 0.3 mi on Old Well Road to WM. Steel pipe tower, metal tank on ground N of WM. Green overhead tank W of WM. Log house ~150 S. of WM" +"NM-17628","","","661573","3791830","GW","false","" +"NM-19793","","","188774","3837480","GW","false","" +"NM-08189","","","302352","3615470","GW","false","" +"NM-14902","","","543741","3722910","GW","false","" +"NM-14588","","","548597","3709990","GW","false","" +"PB-0023","","","378270","3937626","GW","true","Heading south on Hwy 22 from post office in Pena Blanca, turn right (west) on Abrevadero Rd, turn right (north) on Perla Lane (this is a somewhat rough road in passenger vehicle), follow thru 90 degree turn to east. House is second house on right after turn (16 Perla Lane). Well house is wood shed at intersection w/driveway." +"QY-0859","8.29.25.224","","608277","3861820","GW","true","" +"QU-080","MW-7C","","444515","4061712","GW","true","See Chevron map of monitoring wells. Upslope from MW-A & MW-B. Three wells in well box (MW-7A (shallow), MW-7B (mid-depth) & MW-7C (deep))." +"NM-12272","","","291438","3673600","GW","false","" +"NM-09361","","","642084","3630580","GW","false","" +"NM-22201","","","381559","3884690","GW","false","" +"NM-12567","","","557022","3676590","GW","false","" +"WL-0103","S-2016-043","","610320","3543440","GW","true","" +"NM-10249","","","392658","3640950","GW","false","" +"NM-00294","","","310786","3610100","GW","false","" +"BC-0139","122","","363531","3891870","GW","true","" +"BW-0398","17S10E19.113","","410065","3631240","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06825","","","358887","3590210","GW","false","" +"NM-25445","","","408656","3973730","GW","false","" +"NM-27409","","","406584","3646380","GW","false","" +"NM-24549","","","359734","3940110","GW","false","" +"NM-05749","","","257092","3571230","GW","false","" +"NM-07796","","","210244","3611930","GW","false","" +"TC-343","","","418695","4053787","GW","true","" +"NM-14375","","","548560","3701960","GW","false","" +"NM-15477","","","161524","3747880","GW","false","" +"NM-07333","","","662086","3600600","GW","false","" +"NM-15180","","","621913","3734390","GW","false","" +"NM-21266","","","345935","3869110","GW","false","" +"QU-507","","","439823","4057508","SP","true","Along lower portion of Red River. Several small seeps at river level." +"NM-18185","","","611894","3802170","GW","false","" +"NM-22681","","","347469","3890530","GW","false","" +"ED-0018","17S24E25.24","","543479","3630140","GW","true","" +"NM-07662","","","659634","3607030","GW","false","" +"NM-14691","","","659776","3715850","GW","false","" +"NM-26752","","","186194","4094570","GW","false","" +"NM-24328","","","399165","3934860","GW","false","" +"NM-04668","","","233977","3555870","GW","false","" +"NM-21689","","","403504","3878950","GW","false","" +"NM-10449","","","552697","3643400","GW","false","" +"NM-25878","","","412823","4001950","GW","false","" +"NM-18219","","","654477","3803290","GW","false","" +"QY-0042","10.30.11.341","","615448","3885160","GW","true","" +"NM-08877","","","228437","3627300","GW","false","" +"WL-0252","","","304243","3727245","GW","true","From I-25 take exit 115. Head north on Hwy 1 for 2.3 miles. Take road west under interstate, drive ~2 miles. Well is behind old school bus. Well is in box attached to shed." +"BW-0099","8S11E6.431a","","422079","3722150","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-14018","","","657977","3698170","GW","false","" +"WL-0005","NM3501529","","433086","4037432","GW","true","From Taos, take Rt. 64 west. Go 0.5 mile past Gorge Bridge, on left side of road take road to Ojo Caliente. Blue tank next to well." +"NM-02986","","","669634","3776200","GW","false","" +"NM-10315","","","673370","3643190","GW","false","" +"NM-09115","","","199799","3630840","GW","false","" +"NM-13946","","","543968","3695560","GW","false","" +"NM-03326","","","409858","3874060","GW","false","" +"NM-02015","","","331605","3551940","GW","false","" +"NM-09859","","","199424","3639050","GW","false","" +"ED-0124","21S26E35.441","","569897","3588560","GW","true","" +"NM-00787","","","481218","3706530","GW","false","" +"NM-14989","","","641881","3727770","GW","false","" +"NM-15525","","","637842","3743510","GW","false","" +"NM-21082","","","405230","3862110","GW","false","" +"ED-0298","23S28E7.333","","581623","3575590","GW","true","" +"NM-18124","","","667453","3802100","GW","false","" +"NM-19867","","","601069","3834140","GW","false","" +"NM-18296","","","677578","3804660","GW","false","" +"SV-0141","16 Via Alcalde","","380814","3901173","GW","false","Unit 1 Lot 46" +"NM-17913","","","621789","3797700","GW","false","" +"QY-0580","5.29.15.333","","604089","3834890","GW","true","" +"NM-07389","","","281615","3603000","GW","false","" +"NM-09809","","","560676","3633960","GW","false","" +"NM-18933","","","578707","3814000","GW","false","" +"NM-01148","","","563505","3864050","GW","false","" +"NM-18319","","","625331","3804310","GW","false","" +"NM-08328","","","662861","3616970","GW","false","" +"NM-02202","","","259647","3568520","GW","false","" +"NM-12146","","","636608","3670610","GW","false","" +"NM-05317","","","235118","3566420","GW","false","" +"NM-23131","","","614473","3896140","GW","false","" +"TB-0309","","","402194","3661967","GW","true","From Hwy 54 north of Tularosa, turn west on Railroad Ave. Follow to Derbyshire Road and and turn right (go west). Trailer on north side of Derbyshire Road. Well west of house." +"SO-0052","3N2E30.23","","337495","3814420","GW","true","" +"NM-07732","","","669733","3608220","GW","false","" +"NM-08385","","","525262","3616720","GW","false","" +"NM-20898","","","344335","3856810","GW","false","" +"SA-0217","","","246441","3710614","GW","true","" +"AR-0033","NMED 294","","224318","4065440","GW","true","On Hwy 64 heading east out of Farmington, location is along the San Juan River (not Animas). East of where Hwy 350 intersects Hwy 64, make right on Rd 5455 south towards river. Make first right (west) on Rd. 5457 and follow to address. Well is south of house." +"NM-13755","","","547719","3694650","GW","false","" +"NM-19568","","","668495","3830600","GW","false","" +"NM-16950","","","645342","3780840","GW","false","" +"NM-01134","","","653774","3861820","GW","false","" +"NM-05581","","","535989","3566620","GW","false","" +"NM-02425","","","279120","3593990","GW","false","" +"NM-10070","","","619565","3638380","GW","false","" +"WL-0288","","","431130","3935739","GW","true","From Santa Fe, drive north on I-25 and take exit 299 (Glorieta). Turn right (southwest) and drive 0.1 miles, then cross railroad tracks. Several roads converge here, turn left onto Avenida Ponderosa, which is clearly marked, and drive about 1.7 miles to address 169 Avenida Ponderosa. Well is inside the circle of the circular driveway." +"NM-04002","","","343812","3526980","GW","false","" +"NM-01755","","","169539","3495430","GW","false","" +"TC-400","","","453171","4091947","GW","true","" +"NM-24022","","","402629","3924530","GW","false","" +"NM-21531","","","345315","3877130","GW","false","" +"NM-14031","","","545255","3696610","GW","false","" +"NM-09744","","","193366","3637640","GW","false","" +"NM-10618","","","552971","3645650","GW","false","" +"NM-21841","","","383716","3881060","GW","false","" +"NM-07965","","","595194","3610520","GW","false","" +"QY-0160","11.29.24.122","","607730","3892560","GW","true","" +"SV-0118","45 Via Entrada","","378619","3899535","GW","false","Unit 2 Lot 51" +"SA-0060","SA-60_R00","","166735","3752890","GW","true","Well on rise about 300 yards W of NM 12 and small bridge. Old wooden tower and solar panel. Chadduck house about 0.4 mi north of well." +"NM-17884","","","156357","3802480","GW","false","" +"NM-10698","","","661607","3647360","GW","false","" +"NM-10457","","","552722","3643530","GW","false","" +"SD-0005","6N.6E.13.22","","384786","3846250","GW","true","" +"NM-02367","","","329526","3582630","GW","false","" +"NM-21324","","","646473","3870840","GW","false","" +"NM-25411","","","170618","3978370","GW","false","" +"NM-20731","","","131968","3859050","GW","false","" +"SM-2008","","","478441","3639628","M","true","Hwy 82 between miles 55 and 56. 4839 Rio Penasco (20 mi east of Mayhill). Precip station is NW of house ~200 yards, up on slight hill near juniper trees and well. If gate is locked, they are out of town, and key is available from someone at Fruit Stand (just east of house). If no one at fruit stand, contact Camille (lives in stone house by stand) 505-687-3330 or 505-703-3348. HAS WEATHER STATION INSTALLED in addition to PRECIP COLLECTOR See SM-5001" +"NM-12398","","","560563","3673380","GW","false","" +"NM-23652","","","369424","3910590","GW","false","" +"NM-13224","","","543875","3687740","GW","false","" +"NM-11444","","","555570","3658820","GW","false","" +"NM-17548","","","662640","3789320","GW","false","" +"NM-00671","","","446338","3689020","GW","false","" +"NM-23668","","","641554","3911190","GW","false","" +"NM-09143","","","200383","3631190","GW","false","" +"NM-06614","","","671619","3586500","GW","false","" +"NM-12298","","","560262","3671780","GW","false","" +"AH-024","HAYE","","439515","4044007","GW","true","" +"NM-08343","","","655014","3617280","GW","false","" +"DA-0066","22S3E1.132","","350147","3588810","GW","true","" +"NM-10185","","","407197","3639690","GW","false","" +"NM-13090","","","138008","3692500","GW","false","" +"SB-0332","TWDB 4807624","","485978","3532563","GW","false","" +"NM-08771","","","237467","3625880","GW","false","" +"MI-0162","","","561422","3930605","GW","true","Topographic situation: Plains" +"NM-04486","","","346117","3549120","GW","false","" +"NM-11161","","","659384","3654690","GW","false","" +"NM-25745","","","403038","3993950","GW","false","" +"NM-05630","","","260335","3569920","GW","false","" +"AR-0121","A008","NMED 12","243934","4092140","GW","true","From Aztec, take Hwy 550 toward Cedar Hill. Exit right onto Rd 2390/Michael Dr. Take right bend in Rd. and follow to address down dirt Rd on right." +"NM-10034","","","408760","3637310","GW","false","" +"EB-214","","","401221","3932354","GW","true","Only WM in section 15; ranch manager Steve Price 471-4248" +"NM-05014","","","262136","3560720","GW","false","" +"DE-0022","","","659280","3548985","GW","false","Use kml to location found on AMP server: W:\regional\3d_delaware_basin\db_data\field_prep. On NGL south ranch." +"NM-10721","","","266828","3649070","GW","false","" +"NM-04652","","","237151","3555820","GW","false","" +"NM-21388","","","346110","3872470","GW","false","" +"BW-0864","1.30.18.25","","170532","4077380","GW","true","" +"NM-18002","","","603397","3798800","GW","false","" +"BW-0613","16S9E26.2","","407911","3640550","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"QY-0609","5.29.33.443","","603693","3829990","GW","true","" +"NM-02766","","","529616","3666770","GW","false","" +"NM-15441","","","646391","3742750","GW","false","" +"NM-18372","","","671089","3805960","GW","false","" +"NM-02194","M-102","","222112","3569140","GW","false","" +"NM-13061","","","552109","3685370","GW","false","" +"NM-20002","","","647858","3836780","GW","false","" +"NM-14273","","","636825","3701170","GW","false","" +"UC-0019","","","661671","3993197","GW","true","27.4 miles south of Clayton on NM 402, west side of road in valley of Tramperos Creek. Go thru gate just south of bridge." +"NM-06792","","","215615","3592410","GW","false","" +"NM-12812","","","552909","3680850","GW","false","" +"NM-16124","","","218627","3763200","GW","false","" +"NM-15235","","","671346","3737830","GW","false","" +"NM-22350","","","346540","3886640","GW","false","" +"NM-03747","","","169843","3509110","GW","false","" +"NM-00966","","","326365","3813880","GW","false","" +"NM-05612","","","251141","3569990","GW","false","" +"NM-10117","","","284080","3640660","GW","false","" +"MI-0205","","","504491","3937078","GW","true","Topographic situation: Plateau" +"NM-09332","","","665524","3629160","GW","false","" +"NM-15251","","","419721","3736600","GW","false","" +"NM-06006","","","331867","3574080","GW","false","" +"NM-20460","","","634414","3845540","GW","false","" +"NM-11955","","","644558","3667400","GW","false","" +"NM-12658","","","631160","3678850","GW","false","" +"NM-16085","","","325574","3759430","GW","false","" +"NM-27495","","","562322","3733540","GW","false","" +"NM-18808","","","599905","3812230","GW","false","" +"NM-02787","","","546059","3679680","GW","false","" +"NM-04385","","","215658","3549220","GW","false","" +"NM-09589","","","409019","3631610","GW","false","" +"NM-00032","","","455067","3542670","GW","false","" +"NM-14211","","","545942","3698890","GW","false","" +"BC-0050","41","","377857","3890050","GW","true","" +"NM-11122","","","617023","3653200","GW","false","" +"NM-10247","","","553570","3640480","GW","false","" +"NM-10579","","","554972","3645230","GW","false","" +"TV-146","","","444153","4025875","GW","true","House 146 on State Road 240. Well in pump house to west of house." +"NM-09620","","","209246","3635770","GW","false","" +"NM-03693","","","158861","3477510","GW","false","" +"TO-0107","4N9E11.312","","410572","3827700","GW","true","" +"DA-0116","25S4W34.3","","288315","3552180","GW","true","" +"NM-23940","","","640950","3920730","GW","false","" +"NM-12123","","","560279","3669070","GW","false","" +"NM-12570","","","558523","3676630","GW","false","" +"NM-17381","","","193316","3790980","GW","false","" +"NM-07329","","","640737","3600740","GW","false","" +"NM-19356","","","600963","3825180","GW","false","" +"NM-11498","","","402744","3659790","GW","false","" +"NM-10809","","","666218","3649690","GW","false","" +"NM-12376","","","560617","3673010","GW","false","" +"MI-0156","","","553152","3933956","GW","true","Topographic situation: Plains" +"NM-01592","","","667184","4004770","GW","false","" +"NM-03083","","","679060","3804690","GW","false","" +"NM-11309","","","565364","3656290","GW","false","" +"NM-03015","","","675297","3799680","GW","false","" +"SB-0488","TWDB 4832601","","499157","3493945","GW","false","" +"NM-23269","","","646467","3899500","GW","false","" +"NM-17219","","","222619","3787940","GW","false","" +"NM-28147","","","439560","3928580","GW","false","" +"NM-20472","","","587011","3845250","GW","false","" +"QY-0121","10.35.4.333","","660245","3887270","GW","true","" +"PC-107","PW-188","","367472","3910348","GW","true","" +"BC-0007","59","","374881","3887740","GW","true","" +"NM-19242","","","639694","3822660","GW","false","" +"EB-453","","","421709","3935300","GW","true","42 San Sebastian Rd." +"NM-15726","","","678201","3747270","GW","false","" +"NM-17436","","","596588","3787390","GW","false","" +"NM-10175","","","668889","3640830","GW","false","" +"NM-05359","","","633440","3564610","GW","false","" +"NM-18563","","","558183","3807590","GW","false","" +"NM-00019","","","486285","3541660","GW","false","" +"NM-10350","","","551795","3642010","GW","false","" +"BC-0444","447","","","","GW","false","" +"NM-02163","","","332923","3565130","GW","false","" +"NM-26722","","","359312","4084140","GW","false","" +"NM-00185","","","327037","3575580","GW","false","" +"NM-22235","","","243230","3887860","GW","false","" +"NM-23108","","","350807","3896450","GW","false","" +"NM-01089","","","583663","3850710","GW","false","" +"NM-01131","","","349588","3860590","GW","false","" +"NM-05644","","","258477","3570020","GW","false","" +"DE-0325","","","674327","3589896","GW","false","" +"NM-03530","","","653242","3954160","GW","false","" +"NM-12760","","","557003","3679920","GW","false","" +"NM-18564","","","555987","3807580","GW","false","" +"NM-01861","","","121170","3537900","GW","false","" +"NM-01401","","","159294","3937900","GW","false","" +"BW-0418","17S10E31.432","","410830","3626800","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SD-0395","13N.4E.36.323","","366233","3908320","SP","true","" +"TV-279","","","442733","4026951","GW","true","54 Los Alamitos Road, Taos, NM **NOT USING SITE IN INVENTORY.**" +"TB-0073","","","408101","3674073","GW","true","Very remote well east of ranch headquarters." +"SA-0514","5S16W3.133","","176074","3757000","SP","true","" +"NM-02164","","","332923","3565130","GW","false","" +"BC-0194","174","","377593","3891220","GW","true","" +"BW-0793","1.20.10.30.300","","234333","3980240","GW","true","" +"LC-036","","","400055","3938426","GW","true","Sunrise Springs off of Los Pinos Road, north of Las Golondrinas. Well located in vault w/culvert top, along south perimeter wall of Sunrise Springs in parking lot area." +"NM-10491","","","652397","3645000","GW","false","" +"NM-02596","M-198","","219401","3631190","GW","false","" +"NM-14175","","","546616","3698400","GW","false","" +"NM-21363","","","559255","3870900","GW","false","" +"NM-19065","","","639613","3817920","GW","false","" +"NM-01532","","","521736","3969520","GW","false","" +"NM-09499","","","205416","3634830","GW","false","" +"NM-18679","","","606128","3810390","GW","false","" +"NM-16674","","","673514","3777070","GW","false","" +"NM-14095","","","678550","3699390","GW","false","" +"TO-0238","6N9E11.211","","411920","3847610","GW","true","" +"NM-15257","","","557929","3736590","GW","false","" +"NM-14004","","","552128","3696180","GW","false","" +"NM-22142","","","615185","3883880","GW","false","" +"NM-24801","","","397573","3945350","GW","false","" +"NM-10941","","","650462","3650940","GW","false","" +"OG-0047","","","646337","3814720","GW","true","" +"SA-0464","6S13W20.122a","","203055","3742390","GW","true","" +"NM-25449","","","471825","3973490","GW","false","" +"MI-0009","","","449897","3895289","GW","true","Topographic situation: Canyon Blanco" +"BW-0795","1.28.18.28.200","","163805","4061170","GW","true","" +"NM-15068","","","146141","3736000","GW","false","" +"NM-03717","","","164652","3492990","GW","false","" +"NM-27304","","","129792","3590370","GW","false","" +"NM-06027","","","240199","3576430","GW","false","" +"NM-05590","","","262631","3569530","GW","false","" +"DA-0057","22S2E15.143","","337489","3585790","GW","true","" +"NM-06133","","","237276","3578810","GW","false","" +"BW-0184","14S9E21.442","","398948","3660530","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-18493","","","195512","3811150","GW","false","" +"TB-0312","","","403230","3661516","GW","true","Going N on Hwy 54 from Tularosa, turn W onto Railroad Ave and proceed to address just S of Derbyshire Road on W side of Rd. Well is located outside of wood fence." +"NM-00473","","","680974","3643590","GW","false","" +"NM-05754","","","677555","3570030","GW","false","" +"NM-14188","","","666440","3700370","GW","false","" +"NM-11554","","","665937","3661670","GW","false","" +"NM-16070","","","565656","3757500","GW","false","" +"NM-04591","","","133609","3557640","GW","false","" +"NM-05276","","","543990","3562250","GW","false","" +"NM-10516","","","552847","3644450","GW","false","" +"NM-16545","","","587044","3773500","GW","false","" +"SD-0169","10N.5E.30.213","","368698","3881310","GW","true","" +"NM-18699","","","594716","3810480","GW","false","" +"NM-00580","","","678777","3661760","GW","false","" +"NM-15037","","","542274","3728410","GW","false","" +"NM-00208","","","578939","3578560","GW","false","" +"TC-235","","","430130","4097420","GW","true","" +"BW-0171","14S9E10.444","","400619","3663750","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"AB-0134","S170","","358367","3881910","GW","true","" +"NM-07067","","","357566","3594660","GW","false","" +"QY-0417","12.36.11.333","","672837","3905230","GW","true","" +"NM-22012","","","372340","3882820","GW","false","" +"SV-0043","07 La Canada Pl","","380743","3900460","GW","false","Unit 1 Lot 53" +"NM-00532","","","668081","3653830","GW","false","" +"NM-21653","","","400305","3878400","GW","false","" +"NM-25831","","","243676","4002310","GW","false","" +"NM-11943","","","289528","3667940","GW","false","" +"NM-26013","","","216736","4016690","GW","false","" +"NM-01322","","","356758","3909630","GW","false","" +"NM-01466","","","583079","3945590","GW","false","" +"NM-22094","","","650339","3884030","GW","false","" +"TO-0417","9N9E16.233","","410118","3874000","GW","true","" +"NM-27434","","","359706","3678850","GW","false","" +"NM-02308","","","678832","3576210","GW","false","" +"NM-07735","","","272077","3609430","GW","false","" +"BW-0699","2.7.10.35.111","","420785","3850770","GW","true","" +"NM-23458","","","232960","3908520","GW","false","" +"BW-0142","11S10E6.333","","412283","3694100","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"LC-004","","","398481","3935768","SP","true","Behind house with check gate (non functional) at south end. Formerly dammed by local home owner." +"NM-23104","","","471527","3895270","GW","false","" +"NM-09310","","","197968","3633150","GW","false","" +"NM-12604","","","552230","3677310","GW","false","" +"NM-02002","","","131792","3556070","GW","false","" +"TO-0042","3N8E1.113","","402201","3820340","GW","true","" +"NM-04584","","","549806","3551010","GW","false","" +"NM-07280","","","223611","3601690","GW","false","" +"NM-03420","S244","","348366","3894370","GW","false","" +"NM-00226","","","577786","3582460","GW","false","" +"NM-01342","","","339968","3913360","GW","false","" +"NM-18162","","","664603","3802860","GW","false","" +"NM-01586","","","599006","3998990","GW","false","" +"NM-18768","","","604887","3811790","GW","false","" +"SB-0043","TWDB 4709909","","508653","3515162","GW","false","" +"NM-16234","","","544196","3763380","GW","false","" +"NM-02415","","","225316","3593380","GW","false","" +"NM-00880","","","324971","3775410","GW","false","" +"NM-05896","","","586282","3571020","GW","false","" +"NM-02954","","","673275","3753710","GW","false","" +"NM-13750","","","544645","3694610","GW","false","" +"TO-0305","7N8E31.333","","395113","3849750","GW","true","" +"NM-21141","","","650296","3865170","GW","false","" +"SB-0042","TWDB 4709908","","508680","3515162","GW","false","" +"NM-03964","","","346546","3525280","GW","false","" +"MG-031","WF-V","","288873","3774921","GW","true","Mile marker 110 (Hwy 60?) turn south to address. Well under can by little shed." +"AR-0100","NMED 188","","244788","4105410","GW","true","From NM border take Hwy 550 toward Durango. Turn right on CR 310 toward Ignacio, left into driveway at 211 CR 310. Well is to left of driveway, behind shed with wood casing." +"NM-07068","","","675197","3595590","GW","false","" +"TO-0249","6N10E32.222","","417270","3841260","GW","true","" +"NM-10166","","","554227","3639070","GW","false","" +"NM-14970","","","584390","3726040","GW","false","" +"NM-26542","","","588520","4065840","GW","false","" +"LC-005","","","400922","3937561","SP","true","Use access to Simon property at mailboxes past Las Golandrinas Rd off frontage road west. Drive down Simon's ranch road, turn right on tiny 2-track just before/at fence. Sampled at first significant water. About 10 m south of this location." +"HS-058","TC-058","","289840","3667962","GW","true","211 Main Street, well is in front of building in poorly built shed" +"BW-0408","17S10E19.234","","410856","3630830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0200","14S9E26.242","","402207","3659680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-09847","","","629896","3635460","GW","false","" +"NM-18302","","","589730","3803380","GW","false","" +"NM-27920","","","559274","3828510","GW","false","" +"NM-00113","","","556157","3555240","GW","false","" +"NM-11843","","","561343","3664640","GW","false","" +"NM-13195","","","441857","3687470","GW","false","" +"NM-27210","","","161923","3512980","GW","false","" +"NM-07132","","","674162","3596550","GW","false","" +"NM-03974","","","258545","3527460","GW","false","" +"NM-07224","","","580840","3596880","GW","false","" +"NM-09973","","","654321","3636650","GW","false","" +"SB-0632","TWDB 4907806","","386480","3528102","GW","false","" +"NM-05346","","","235391","3566840","GW","false","" +"NM-27390","","","633840","3632280","GW","false","" +"NM-20568","","","547814","3847550","GW","false","" +"NM-09947","","","619458","3636500","GW","false","" +"TC-433","","","447270","4086567","GW","true","Well is located at owner's physical address (3870 Hwy 522 Costilla). Well is roughly 100 yards north west of the house, west of the concrete block garage in underground well house with sheet metal roof." +"NM-01071","","","338197","3846750","GW","false","" +"NM-28375","CN-2016-017","","587359","3617602","GW","true","" +"NM-22154","","","346603","3884530","GW","false","" +"NM-24147","","","660304","3930430","GW","false","" +"WL-0052","","","441286","4049399","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, take right turn on Lawrence Ranch Rd, take first left at ""Y"" in road (Old Hwy 3). Go ~0.5 miles to where two roads converge and make left on Carlitos Road. Go all the way to the end to address. Well in log wellhouse west of barn and NE of house." +"TO-0487","5N5E10.313","","370864","3837430","SP","true","" +"QY-0870","8.30.20.121","","610454","3863550","GW","true","" +"NM-09826","","","554749","3634020","GW","false","" +"TB-1010","","","411010","3674472","SP","true","Contact ranch foreman for visit - difficult access." +"NM-10362","","","542132","3642090","GW","false","" +"NM-14388","","","674926","3704030","GW","false","" +"NM-09387","","","666479","3631110","GW","false","" +"NM-07021","","","671567","3594080","GW","false","" +"NM-22807","","","349186","3891950","GW","false","" +"NM-05674","","","274583","3569870","GW","false","" +"NM-04805","","","230817","3558420","GW","false","" +"NM-13159","","","138746","3693530","GW","false","" +"NM-16625","","","670456","3776090","GW","false","" +"SM-0140","","","457216","3630304","GW","true","Off Hwy 24 (between Weed and Pinon) turn north on Miller Flats Road (about 1.5 mi out of Weed). Well is on right side of road about 1 mile down. By big steel rusty drums and houses. Across from very old graveyard in meadow." +"SA-0308","","","247000","3731323","GW","true","" +"NM-04924","","","262709","3559450","GW","false","" +"SM-1075","","","449241","3630263","SP","true","" +"NM-13376","","","624638","3690870","GW","false","" +"SB-0098","TWDB 4717602","","509189","3504694","GW","false","" +"MI-0094","","","475161","3916799","GW","true","Topographic situation: Valley" +"NM-27934","","","552856","3837160","GW","false","" +"NM-17168","","","640470","3784590","GW","false","" +"NM-03388","","","351327","3889790","GW","false","" +"NM-01060","","","584483","3842530","GW","false","" +"NM-19331","","","599518","3824520","GW","false","" +"NM-14669","","","531278","3713520","GW","false","" +"BW-0775","2.11.30.20.444","","610382","3892000","GW","true","" +"NM-26378","","","586195","4055310","GW","false","" +"NM-13708","","","614739","3695000","GW","false","" +"NM-03126","","","573226","3809190","GW","false","" +"NM-18976","","","573495","3814940","GW","false","" +"NM-21639","","","202729","3882310","GW","false","" +"NM-00149","","","625828","3566170","GW","false","" +"NM-11450","","","659246","3660020","GW","false","" +"NM-22889","VCL-W3","","342446","3892960","GW","false","" +"TC-346","","","452345","4092739","GW","true","" +"NM-05312","","","177560","3567990","GW","false","" +"UC-0188","","","626871","4041839","GW","false","" +"BC-0318","335","","342636","3874240","GW","true","" +"NM-01009","","","336519","3824650","GW","false","" +"NM-12221","","","289730","3672530","GW","false","" +"NM-08801","","","650424","3624480","GW","false","" +"NM-28286","148980","","136696","3728982","SP","false","Gila National Forest" +"NM-07425","","","319932","3603160","GW","false","" +"NM-14234","","","543126","3699160","GW","false","" +"NM-22837","","","390457","3891760","GW","false","" +"NM-04801","","","670666","3556230","GW","false","" +"NM-02931","","","676575","3744800","GW","false","" +"NM-04232","","","246602","3542330","GW","false","" +"NM-11102","","","637445","3653430","GW","false","" +"MG-034","","","296746","3780306","GW","true","Heading west on Hwy 60 from Socorro, 0.9 miles past MM 116, driveway is on right. Look for hill with tower on top. House is at the end of the road from Hwy 60 towards hill." +"NM-24542","","","430371","3939180","GW","false","" +"NM-22612","","","383793","3889040","GW","false","" +"TS-013","","","437820","4062922","SP","true","West side of river beneath boulder fields. From Upper Powerline downstream" +"NM-19566","","","160328","3834680","GW","false","" +"BW-0425","18S8E5.431","","392921","3626680","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"BW-0215","14S9E27.412","","400160","3659310","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SM-4024","","","450347","3630075","PS","true","Stream flow measurement by Patrick Walsh" +"NM-20159","","","163761","3844840","GW","false","" +"NM-13663","","","613872","3694030","GW","false","" +"NM-01635","","","323231","4029880","GW","false","" +"NM-05539","","","259444","3568800","GW","false","" +"NM-04783","","","677936","3555800","GW","false","" +"NM-19718","","","561244","3831180","GW","false","" +"NM-18771","","","591312","3811400","GW","false","" +"CX-0047","27N27E14.33","","585960","4047710","GW","true","" +"NM-10803","","","546131","3647900","GW","false","" +"NM-04530","","","678020","3551000","GW","false","" +"MG-011","WF-8A","","294920","3770223","GW","true","" +"NM-23857","","","638903","3917680","GW","false","" +"NM-24075","","","410818","3926660","GW","false","" +"TO-0337","8N6E36.313","","383591","3859850","GW","true","" +"NM-14521","","","642196","3708240","GW","false","" +"NM-21793","","","264053","3882790","GW","false","" +"NM-22100","","","381191","3883590","GW","false","" +"NM-23076","","","236863","3898380","GW","false","" +"BW-0076","7S10E28.414a","","416017","3725830","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"AB-0247","","","315290","3763959","GW","true","" +"NM-14089","","","547551","3697240","GW","false","" +"TB-0137","","","407096","3650150","GW","true","Off Hwy 54 north of Alamogordo, turn right (east) on La Luz Gate Rd (north of Bowlin's). Turn NW on Riata St (past Canary St). Well is south side of Riata St, just past creek crossing. House is double wide. Well is buried in dirt by well shed." +"SB-0514","TWDB 4843101","","431268","3467016","GW","false","" +"NM-05985","","","332352","3573340","GW","false","" +"NM-26460","","","223560","4066490","GW","false","" +"NM-17090","","","324562","3783730","GW","false","" +"NM-22657","","","382155","3889620","GW","false","" +"NM-22935","","","243381","3896060","GW","false","" +"NM-22059","","","637404","3883450","GW","false","" +"NM-20738","","","401621","3852260","GW","false","" +"NM-05928","","","247343","3574180","GW","false","" +"NM-24935","","","410754","3948010","GW","false","" +"NM-15630","","","419383","3745290","GW","false","" +"NM-18535","","","613691","3807700","GW","false","" +"BC-0057","48","","377903","3888790","GW","true","" +"DE-0228","","","639763","3628282","GW","false","" +"NM-04073","","","183792","3536410","GW","false","" +"NM-09718","","","558188","3632780","GW","false","" +"DE-0217","","","639722","3628591","GW","false","" +"NM-18528","","","677067","3808690","GW","false","" +"TB-0166","","","434371","3711404","GW","true","#156 B Nogal Canyon Rd. North side of road. Cabin. Go across creek to east to shed. Well in front of shed." +"NM-14501","","","663157","3708110","GW","false","" +"NM-03293","","","388433","3854480","GW","false","" +"NM-18169","","","609854","3801770","GW","false","" +"NM-15302","","","203150","3742450","GW","false","" +"NM-06467","","","361246","3583190","GW","false","" +"NM-06565","","","357744","3585140","GW","false","" +"NM-19220","","","556823","3821140","GW","false","" +"BW-0069","6S9E2.423","","410114","3741980","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11254","","","153899","3661220","GW","true","" +"BW-0815","1.4.2.11.211","","315166","3829710","GW","true","" +"NM-17302","","","625960","3786020","GW","false","" +"NM-19728","","","558900","3831350","GW","false","" +"SD-0111","9N.7E.32.132","","388296","3869690","GW","true","" +"NM-17130","","","350662","3783890","GW","false","" +"NM-19817","","","565714","3832840","GW","false","" +"NM-26424","","","570603","4060750","GW","false","" +"NM-27341","","","564943","3593740","GW","false","" +"TO-0074","4N7E20.112","","385998","3825330","GW","true","" +"QU-024","CER-36","","445580","4070595","GW","true","" +"NM-22930","","","661539","3893870","GW","false","" +"NM-14124","","","643907","3699090","GW","false","" +"QY-0651","5.30.22.333","","613821","3833320","GW","true","" +"NM-26301","","","635525","4042760","GW","false","" +"NM-02719","","","559698","3653880","GW","false","" +"TO-0078","4N7E27","","389851","3823030","GW","true","" +"NM-11699","","","647280","3663990","GW","false","" +"NM-00024","","","489328","3542390","GW","false","" +"NM-05020","","","235306","3561570","GW","false","" +"NM-21668","","","584265","3878340","GW","false","" +"NM-00800","","","446711","3709090","GW","false","" +"NM-24298","","","422520","3933490","GW","false","" +"DE-0076","","","639579","3568844","GW","false","" +"NM-25379","","","404977","3971920","GW","false","" +"NM-01331","","","367735","3910500","GW","false","" +"NM-08228","","","298951","3616130","GW","false","" +"NM-26635","","","444431","4071210","GW","false","" +"NM-06998","","","676143","3593760","GW","false","" +"NM-09866","","","551678","3634710","GW","false","" +"NM-04707","","","584231","3553390","GW","false","" +"EB-694","","","400771","3927810","GW","true","" +"NM-09353","","","196941","3633640","GW","false","" +"NM-20602","","","618904","3849110","GW","false","" +"NM-18059","","","593086","3799870","GW","false","" +"TO-0184","5N8E30.121","","395300","3833300","GW","true","" +"DA-0104","24S3W4.42","","297729","3569940","GW","true","" +"AR-0525","","","245534","4124730","PS","true","South Durango boat ramp near Humane Society." +"NM-08620","","","356801","3621410","GW","false","" +"SB-0266","TWDB 4807407","","479206","3533622","GW","false","" +"CP-0017","","","660901","3804756","GW","true","From Hwy 60, east of Cannon AFB, go south on 467, east on Rt 8, south on Curry Rd M. On west side of road, look for metal sign for Windrush Alpaca Farm. Mailbox says 770 Curry Rd M. Well next to silver tank w/pressure tank inside, next to driveway." +"NM-21307","","","376978","3869870","GW","false","" +"NM-23525","","","372344","3908150","GW","false","" +"NM-03771","","","168350","3516840","GW","false","" +"SV-0012","05 Camino Real","","380709","3898378","GW","false","Unit 1 Lot 6" +"NM-18283","","","573078","3803010","GW","false","" +"NM-15166","","","665931","3734320","GW","false","" +"NM-10921","","","276163","3651590","GW","false","" +"NM-20078","","","252692","3840420","GW","false","" +"AR-0534","","","238528","4087440","D","true","" +"SB-0500","TWDB 4836201","","446803","3481951","GW","false","" +"WL-0312","","","351790","3902537","GW","true","1737 Camino De La Tierra, Corrales, NM 87048" +"NM-11774","","","557953","3663760","GW","false","" +"NM-12393","","","669879","3675110","GW","false","" +"NM-22798","","","665216","3892050","GW","false","" +"NM-27385","","","286922","3626170","GW","false","" +"ED-0116","21S26E25.443","","571466","3589930","GW","true","" +"NM-22666","","","238171","3892820","GW","false","" +"NM-21507","","","639240","3876090","GW","false","" +"EB-422","","","411759","3935029","GW","true","44 Encantado Loop" +"NM-01802","M-006","","247958","3523593","GW","false","From the intersection of NM11 and NM9 in Columbus, go west on NM9 for 1.4 miles. Park on south side of the highway. Well located ~100 ft south of the road." +"NM-24745","","","409033","3944400","GW","false","" +"NM-11882","","","625941","3666090","GW","false","" +"NM-24829","","","410656","3945740","GW","false","" +"NM-15799","","","650590","3750450","GW","false","" +"NM-27163","","","321077","3768062","SP","true","" +"NM-11724","","","286229","3665330","GW","false","" +"PC-040","PW-064","","372091","3906341","GW","true","" +"NM-09813","","","558181","3633980","GW","false","" +"JM-508","","","303708","3672038","SP","true","" +"NM-14525","","","630449","3708540","GW","false","" +"NM-26098","","","598784","4020810","GW","false","" +"NM-02040","M-064","","230777","3556807","GW","false","From NM-02045, go west on CR20 for 0.6 miles. Go south on a vague dirt road along the power lines past a corral for 0.5 miles. Well located southeast of the road, next to the cattle tank." +"MI-0143","","","493126","3928022","GW","true","Topographic situation: Plateau" +"NM-01959","","","239012","3547951","GW","false","Approx. 18.2 miles S of Pine St & NM 11 intersection in Deming on NM 11, right on CR010 Bond Road, west 3.5 miles to State Road 517, north 1 mile, west on CR071, go 0.4 miles to well on south side, thru gate with two large tires on side. Well about 100 yds south in yard of old farm equipment." +"NM-23981","","","420455","3922070","GW","false","" +"NM-12459","","","664834","3676280","GW","false","" +"NM-21644","","","650755","3878830","GW","false","" +"PP-035","PW-38","","435973","4004233","GW","true","" +"NM-10025","","","639790","3638220","GW","false","" +"NM-20592","","","628488","3849150","GW","false","" +"NM-23802","","","389483","3915470","GW","false","" +"SB-0576","TWDB 4856804","","494229","3447952","GW","false","" +"SO-0054","3N3E20.13","","348232","3815540","GW","true","" +"SB-0054","TWDB 4717203","","507846","3510231","GW","false","" +"NM-26895","PW-014","","368012","3907823","GW","true","" +"NM-18815","","","550679","3811860","GW","false","" +"NM-17549","","","623681","3789960","GW","false","" +"ED-0001","16S21E33.2","","519203","3638020","GW","true","" +"PP-065","PW-70","","442767","4004575","GW","true","" +"NM-02780","","","544069","3673320","GW","false","" +"NM-01677","","","320597","4050590","GW","false","" +"NM-01916","","","119524","3545470","GW","false","" +"WL-0160","","","369495","3908452","GW","true","From I-25 north, take exit 242 for NM-165 east Placitas. Left on Camino de Los Pueblitos to address. House has blue sign w/arrow. Park next to vines on left. Well house near vineyard." +"CX-0052","26N26E33.41","","573744","4033540","GW","true","" +"NM-22330","","","673467","3886810","GW","false","" +"NM-16780","","","653475","3778480","GW","false","" +"NM-14285","","","546504","3700130","GW","false","" +"NM-24202","","","476524","3930320","GW","false","" +"NM-28227","","","170803","4075770","GW","false","" +"NM-03969","","","269664","3527140","GW","false","" +"NM-10428","","","655002","3644570","GW","false","" +"NM-17779","","","620644","3794290","GW","false","" +"NM-23489","","","372224","3906820","GW","false","" +"QY-0832","7.32.9.442","","632469","3856670","GW","true","" +"NM-15593","","","675173","3745550","GW","false","" +"DE-0317","","","650280","3590758","GW","false","" +"DA-0075","23S2W13.33","","311170","3575700","GW","true","" +"CX-0179","30N24E24.3","","577563","4084540","SP","true","South slope Johnson Mesa" +"SB-0550","TWDB 4854202","","470267","3455904","GW","false","" +"QY-0608","5.29.32.333","","600944","3830000","GW","true","" +"BW-0188","14S9E23.322","","401402","3660910","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-11819","","","287008","3666550","GW","false","" +"QY-0334","11.33.35.242","","645426","3889500","GW","true","" +"NM-05445","","","584158","3565340","GW","false","" +"NM-04982","","","659449","3559440","GW","false","" +"NM-03338","S178","","348031","3877340","GW","false","" +"NM-17892","","","623890","3797390","GW","false","" +"NM-09635","","","192783","3636480","GW","false","" +"NM-10371","","","397795","3642710","GW","false","" +"NM-19140","","","654280","3819660","GW","false","" +"BC-0381","384","","374885","3882068","GW","false","" +"NM-09993","","","198305","3640780","GW","false","" +"NM-20854","","","572899","3854800","GW","false","" +"NM-23381","","","294485","3903330","GW","false","" +"NM-15673","","","646883","3747530","GW","false","" +"AR-0165","D012","NMED 199","238420","4087580","GW","true","From Hwy 550 in Cedar Hill, take Rd 2900 west. Turn left onto Rd 2633 and proceed to address near end of Rd." +"SM-3040","","","432969","3646821","R","true","Just east of Sleepy Grass campground entrance off of Hwy 82 (east of Cloudcroft). SM-3040A = Well cuttings sampled from interval between 930 to 1030 ft depth (anhydrite). SM-3040B = 210 to 220 ft (mudstone). SM-3040C = 450 to 540 ft (shaley siltstone, dolomite)." +"NM-01472","","","609292","3947590","GW","false","" +"SM-0136","","","506277","3632043","GW","true","Drive east on highway 82 toward Artesia. Pass the state highway 13 intersection (from north) and drive another 2 or 3 miles. Look for Cuevo Canyon road on the south. It may or may not be marked, but itโ€™s the first decent gravel road without a gate youโ€™ll encounter that goes south. Turn on that road and drive ~1/4 mile past an abandoned ranch house on the right (you can see it from hiway 82). PVACD has right-of-access to the monitoring well, so if anyone asks tell them youโ€™re doing work for the Conservancy District. Youโ€™ll come to a closed but not locked gate on the far side of the property. Go through that gate and continue following the road, which will start getting rougher and will meander around quite a bit for the next couple of miles, and will require going through another gate. Itโ€™s in a little metal well house which is easily visible from a distance, located on a bluff overlooking the Cuevo Canyon tributary of the Rio Penasco. KEYS NEEDED, see Lewis or Geoff?" +"NM-24521","","","380086","3939320","GW","false","" +"NM-14623","","","409611","3712080","GW","false","" +"QY-0190","11.30.14.221a","","616056","3894210","GW","true","" +"NM-19864","","","676118","3835760","GW","false","" +"NM-21383","","","661990","3872760","GW","false","" +"SO-0115","2N4E1.43","","364048","3810170","SP","true","" +"TO-0277","7N8E4.211","","399284","3859010","GW","true","" +"NM-26026","","","321766","4015600","GW","false","" +"NM-00740","","","473578","3696810","GW","false","" +"NM-09283","","","197934","3632900","GW","false","" +"NM-25235","","","417864","3963660","GW","false","" +"SD-0135","10N.5E.10.223","","373706","3886270","GW","true","" +"NM-22407","","","374474","3886890","GW","false","" +"NM-16687","","","305890","3777560","GW","false","" +"NM-15341","","","676423","3741930","GW","false","" +"EB-096","","","409975","3957390","GW","true","Tano Rd Assoc" +"NM-18592","","","378766","3808750","GW","false","" +"NM-08417","","","551638","3617280","GW","false","" +"TO-0512","5N9E18.4","","405708","3835410","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"SM-1007","","","445659","3648848","SP","true","Along 16 Springs Road as first coming into Canyon, just past end of forest service land. On east side of road in large, corrugated steel drum. Do not access without prior arrangement with Walker." +"NM-15207","","","648418","3736460","GW","false","" +"NM-04798","","","677325","3556250","GW","false","" +"TC-225","WG-13","","434773","4064807","GW","true","" +"NM-23336","","","233370","3903570","GW","false","" +"NM-17888","","","640945","3797290","GW","false","" +"NM-14098","","","546181","3697390","GW","false","" +"NM-08906","","","615749","3624630","GW","false","" +"TO-0008","1N13E21.2","","446601","3795930","GW","true","" +"NM-19499","","","320270","3831980","GW","false","" +"NM-02190","","","237605","3568290","GW","false","" +"SA-0327","","","246714","3697251","GW","true","" +"NM-04246","","","346675","3540970","GW","false","" +"NM-24784","","","413943","3944930","GW","false","" +"NM-28070","","","239746","3902220","GW","false","" +"NM-25269","","","237019","3968790","GW","false","" +"NM-07173","","","189653","3600370","GW","false","" +"NM-09949","","","556558","3635820","GW","false","" +"NM-10114","","","680467","3640230","GW","false","" +"NM-09815","","","556569","3633970","GW","false","" +"NM-00771","","","443385","3701200","GW","false","" +"TB-0196","","","404296","3702847","GW","true","From HQ southwest to main road. Look for two track going south before cement water crossing or from Hwy. 380 in Oscuro east on Grand Avenue through Hefker Vega gate across cement water crossing. Go south through locked gate and continue south to windmill on west side of road." +"NM-06664","","","672700","3587440","GW","false","" +"PB-0006","","","378583","3937621","GW","true","Going N on Hwy 22 from Pena Blanca, turn W on Calle Esquella Vieja and proceed to address. Well is in well house in field and S of gate." +"NM-24919","","","409468","3947660","GW","false","" +"NM-04331","","","119509","3550160","GW","false","" +"EB-451","","","414242","3934684","GW","true","3 Encantado Place." +"AB-0253","","","499999","3983948","GW","true"," +Elevation data was obtained from the National Elevation Dataset (NED) provided by the U.S. Geological Survey (USGS). You can access more information and the data via the official site: https://epqs.nationalmap.gov. +" +"NM-26210","","","448028","4030630","GW","false","" +"QY-0453","13.36.27.334","","671750","3909840","GW","true","" +"NM-20082","","","547384","3837290","GW","false","" +"NM-21348","","","415464","3870820","GW","false","" +"QY-0243","11.30.30.323","","608980","3890220","GW","true","" +"NM-02101","","","340590","3559680","GW","false","" +"NM-04078","","","254746","3534700","GW","false","" +"NM-11988","","","654475","3668070","GW","false","" +"BC-0166","146","04 Canon Escondido","377953","3899697","GW","true","Use a GPS app to drive to the address: 04 Canon Escondido, Sandia Park, NM. Well is visible 50 feet north of house from the driveway." +"NM-21056","","","666484","3862800","GW","false","" +"NM-15066","","","146501","3735960","GW","false","" +"HS-044","TC-044","Theis 30","289887","3667822","GW","true","306 Pershing : In the purple closet next water heater near the office door " +"NM-15502","","","138150","3749110","GW","false","" +"AR-0004","NMED 331","","233702","4079960","GW","true","From Hwy 550 in Aztec, make right on Baird Circle (home is behind Dairy Queen on Hwy 550 in town) to address. Well is in backyard in front of shed. Has barrel around well head." +"NM-06915","","","215201","3594430","GW","false","" +"NM-17560","","","623014","3790110","GW","false","" +"NM-07932","","","605048","3610280","GW","false","" +"WL-0061","NM3510117","","217997","3911400","GW","true","Well located behind building." +"NM-16449","","","662985","3772320","GW","false","" +"AB-0141","S188","","335986","3905030","GW","true","" +"BW-0635","10S6E23.2","","380177","3699980","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"SA-0331","","","236470","3705912","GW","true","" +"NM-22241","","","382400","3885050","GW","false","" +"NM-05012","","","678369","3559510","GW","false","" +"NM-02456","","","275521","3602450","GW","false","" +"NM-09423","","","670610","3631490","GW","false","" +"NM-17948","","","636965","3798470","GW","false","" +"NM-02737","","","558730","3658850","GW","false","" +"NM-15753","","","169583","3753710","GW","false","" +"NM-23885","","","456818","3918040","GW","false","" +"TS-029a","","","440153","4068794","SP","true","East side of river. North end of zone of springs and seeps below Desawaui Trail." +"NM-06957","","","227898","3595060","GW","false","" +"NM-13139","","","563634","3686680","GW","false","" +"NM-25426","","","411859","3973080","GW","false","" +"TB-0048","","","408116","3652363","GW","true","Head east at the Alamorosa Truck Stop (between Alamogordo and Tularoasa). Turn on Mountain Meadows Road, look for #56, first right after pistachio trees. Well located behind garage and trailer on south side of property." +"NM-15424","","","376484","3741530","GW","false","" +"NM-19503","","","667025","3828720","GW","false","" +"NM-11669","","","406062","3662310","GW","false","" +"NM-23912","","","458865","3918890","GW","false","" +"NM-12333","","","552593","3672470","GW","false","" +"NM-09886","","","211763","3639060","GW","false","" +"NM-05052","","","222712","3562340","GW","false","" +"QY-0329","11.33.28.232","","641753","3891300","GW","true","" +"NM-25053","","","407603","3952050","GW","false","" +"NM-07783","","","211881","3611670","GW","false","" +"NM-21845","","","348636","3881580","GW","false","" +"QY-0028","10.29.4.313","","602427","3886860","GW","true","" +"DE-0239","","","670784","3569809","GW","false","" +"NM-05201","","","167529","3566030","GW","false","" +"NM-08626","","","671815","3622020","GW","false","" +"TB-0169","","","434388","3711689","GW","true","From Apple shed well [#156 B Nogal Canyon Rd. North side of road. Cabin. From house, east to apple shed. Well is in orchard to SE of shed towards road. White PVC.] head east thru north gate along fence to power pole. Well head under metal bucket. Walk from orchard gate." +"NM-01901","","","342997","3537280","GW","false","" +"NM-25588","","","409701","3982690","GW","false","" +"SA-0193","","","249274","3766482","GW","true","From junction of Hwy 60 and CR 78, go south on 78 for 4.8 miles. Take road to W (right) 4.7 miles to Estafeta well (SA-0189). Take double gates and follow train tracks 1.8 miles to corral well. Then follow 2 track 1 mile to well." +"DA-0098","23S3E21.312","","344950","3573980","GW","true","" +"NM-03092","","","655976","3806360","GW","false","" +"NM-06526","","","340247","3584520","GW","false","" +"NM-21905","","","391801","3881330","GW","false","" +"NM-26093","","","475067","4020010","GW","false","" +"NM-22714","","","347087","3890810","GW","false","" +"NM-05370","","","240043","3567340","GW","false","" +"TO-0350","8N8E13.311","","403238","3864660","GW","true","" +"SB-0623","TWDB 4907201","","386054","3537006","GW","false","" +"DA-0147","25S3E1.441","","350608","3559080","GW","true","" +"NM-25148","","","470946","3957660","GW","false","" +"NM-04913","","","137453","3563020","GW","false","" +"NM-24416","","","437023","3936730","GW","false","" +"NM-11426","","","640624","3659850","GW","false","" +"NM-28145","","","463668","3964770","GW","false","" +"NM-09003","","","201785","3629300","GW","false","" +"NM-04609","","","566997","3551720","GW","false","" +"NM-28077","","","377042","3900150","GW","false","" +"NM-04011","","","344719","3527890","GW","false","" +"WL-0201","","","232581","3554390","GW","true","From main intersection in Deming (Pine and Gold), go south on NM 11 for 9.1 miles. Go west on Sunshine Rd SW for 4 miles, go south on Hermanas for 4.6 miles. Meet Tony at the trees and tan workshop. From there, go north on Hermanas Rd 1.4 miles, go west on B015 (between red building and red pipe fence) for 0.8 miles. Well located near little red building w/the blue pipes." +"NM-00992","","","135311","3823930","GW","false","" +"NM-17733","","","470849","3792210","GW","false","" +"SB-0704","TWDB 4915701","","384439","3517192","GW","false","" +"QU-038","","","442736","4065046","GW","true","Following highway to ""Wild Rivers"", take TP247 left fork onto two-track ~0.4 miles past BLM cattleguard. Road steepens onto sharp & rocky road. Proceed straight thru all diversions along the obvious road for ~0.3 miles until coming to a 4-way intersection in saddle of mtn. peak. Take left & proceed ~0.3 miles looking for 10 ft. of steel pipe sticking out of ground." +"NM-09060","","","644113","3627000","GW","false","" +"NM-22331","","","631919","3886110","GW","false","" +"NM-20804","","","401228","3853500","GW","false","" +"NM-16955","","","590926","3780130","GW","false","" +"SA-0030","SA-30_R00","","248835","3774612","GW","true","The road to this well is at about mile 83.7 on HWY 60, opposite the Guin Ranch Loop road. Drive south from HWY 60 about 1.5 miles, go thru gate, and drive to the Lee double-wide mobile home. To get to the well from the Lee home, drive east on the dirt road, which turns slightly right (southeast), for about 1.25 miles (go through a fence), turn right (south) onto 2 track toward obvious windmill, drive 0.6 miles (through another fence) to well under windmill." +"TO-0174","5N8E18.312","","395145","3835800","GW","true","" +"NM-06949","","","325858","3592760","GW","false","" +"NM-16894","","","618667","3779760","GW","false","" +"NM-14656","","","416895","3713280","GW","false","" +"NM-19602","","","156326","3835510","GW","false","" +"SO-0033","2N4E14.232","","363042","3807860","GW","true","" +"MI-0252","","","540726","3949032","GW","true","Topographic situation: Plateau" +"NM-22233","","","374195","3885070","GW","false","" +"QY-0629","5.29.7.221","","600395","3837710","GW","true","" +"NM-27323","","","367041","3588530","GW","false","" +"NM-05695","","","331391","3569040","GW","false","" +"NM-12574","","","667308","3678480","GW","false","" +"NM-10213","","","531750","3639770","GW","false","" +"EB-272","","","413500","3954201","GW","true","#48 Calle San Martin; behind house in well pit" +"NM-10427","","","392635","3643570","GW","false","" +"NM-25369","","","403991","3971190","GW","false","" +"NM-17199","","","652118","3784740","GW","false","" +"NM-21532","","","635349","3876860","GW","false","" +"BC-0340","340","","366210","3880586","GW","true","" +"NM-23693","","","370705","3911870","GW","false","" +"NM-03348","","","631309","3879300","GW","false","" +"NM-20302","","","626783","3841890","GW","false","" +"NM-17283","","","620027","3785570","GW","false","" +"NM-22425","","","632613","3887170","GW","false","" +"NM-21321","","","553607","3869760","GW","false","" +"NM-09246","","","557020","3627940","GW","false","" +"NM-21572","","","384424","3876950","GW","false","" +"NM-08524","","","290945","3620950","GW","false","" +"NM-01779","","","116810","3525110","GW","false","" +"SB-0018","TWDB 4709206","","504468","3523379","GW","false","" +"NM-22824","","","349190","3892170","GW","false","" +"NM-07423","","","274514","3604110","GW","false","" +"NM-12634","","","615011","3678620","GW","false","" +"NM-18320","","","625331","3804310","GW","false","" +"NM-23787","","","642393","3915640","GW","false","" +"NM-20555","","","626650","3847860","GW","false","" +"NM-01456","","","141654","3949980","GW","false","" +"NM-12462","","","141370","3681050","GW","false","" +"SM-0084","","","435130","3611779","GW","true","Well is behind (north of) fire dept building in Timberon, access by dirt road that is just east of FD building. Old well has silver cap, and air line. New well is green." +"NM-11996","","","403647","3667260","GW","false","" +"SD-0377","11N.4E.1.313","","365622","3897100","SP","true","" +"NM-08242","","","276489","3616550","GW","false","" +"NM-08607","","","646696","3621310","GW","false","" +"NM-01216","","","605937","3884230","GW","false","" +"NM-18773","","","598915","3811660","GW","false","" +"AR-0021","NMED 207","","232008","4080090","GW","true","From Hwy 516 on west side of river, take Rd. 2900 at light, make left on Gila Road to address. Well is in front yard of home, next to driveway, in flower bed with rocks around it." +"NM-02262","","","233654","3574500","GW","false","" +"NM-23945","","","639636","3920870","GW","false","" +"NM-12769","","","647222","3681480","GW","false","" +"EB-033","","","419470","3929425","GW","true","" +"TO-0375","8N10E14.111","","422122","3865250","GW","true","" +"NM-28173","","","479112","3991400","GW","false","" +"NM-25319","","","470880","3968070","GW","false","" +"DA-0194","24S2E23.342","","338875","3564040","GW","true","" +"NM-10828","","","276684","3650540","GW","false","" +"NM-24308","","","651887","3934810","GW","false","" +"SM-4047","","","431671","3629875","PS","true","Stream flow measurement by Patrick Walsh" +"BC-0404","407","","364456","3893760","GW","false","" +"NM-27844","","","548808","3808520","GW","false","" +"NM-00668","","","469446","3688450","GW","false","" +"NM-27381","","","291219","3621350","GW","false","" +"AB-0240","","","499999","3873043","GW","true","" +"DE-0342","","","569239","3626752","GW","false","" +"NM-19430","","","403154","3826370","GW","false","" +"NM-01266","","","656366","3898310","GW","false","" +"NM-18454","","","548440","3805630","GW","false","" +"NM-01824","","","119685","3530580","GW","false","" +"NM-22874","","","376549","3892370","GW","false","" +"NM-02555","","","652061","3621240","GW","false","" +"NM-11114","","","657351","3653640","GW","false","" +"NM-02203","","","223667","3569440","GW","false","" +"NM-06826","","","675751","3590790","GW","false","" +"NM-21258","","","610434","3868390","GW","false","" +"TC-438","","","443339","4075123","GW","true","Well is located on a ranch north of Questa. There is access from 2-tracks, but there are many gates. No detailed directions because Lupe and Gilbert (hired hand) do not want people visiting the well unless they are also there." +"EB-251","SF-34","","399191","3961850","GW","true","Windmill in section 17, off Buckman Rd" +"NM-05209","","","234987","3564420","GW","false","" +"TV-200","","","442816","4025197","GW","true","Take West Romero to Coyote north. Jog left onto Cactus Flower." +"TB-0119","","","419375","3722756","GW","true","East of Carrizozo - Hwy 380 heading west to Birch (south), before overpass at RR track. 2nd house west side of road with white gate - Henry, Lucia, and John Vega on gate." +"NM-19415","","","326932","3827140","GW","false","" +"NM-14143","","","547444","3698070","GW","false","" +"NM-24031","","","623509","3925100","GW","false","" +"NM-06544","","","676189","3585220","GW","false","" +"NM-14741","","","649443","3717950","GW","false","" +"SB-0809","TWDB 5008202","","493979","3427202","GW","false","" +"NM-07612","","","285204","3607230","GW","false","" +"TC-218","","","420310","4077934","GW","true","" +"OG-0050","","","646797","3814260","GW","true","" +"NM-15693","","","679765","3748870","GW","false","" +"QU-163","CER-18","","445025","4068024","GW","true","Well located on road to Wild Rivers, ~0.2 miles past the dog-leg in road. Well is in a small shed." +"NM-25352","","","408269","3970190","GW","false","" +"NM-11158","","","475173","3653050","GW","false","" +"NM-18071","","","670680","3801760","GW","false","" +"SO-0006","1N2E34.13","","340915","3793320","GW","true","" +"NM-06801","","","304681","3590530","GW","false","" +"NM-09073","","","558489","3625730","GW","false","" +"NM-01857","","","121552","3537150","GW","false","" +"NM-24597","","","479042","3940350","GW","false","" +"NM-07160","","","357172","3596350","GW","false","" +"NM-09226","","","632847","3628700","GW","false","" +"NM-06692","","","257479","3589500","GW","false","" +"NM-03399","","","347192","3890790","GW","false","" +"SD-0061","8N.7E.11.214","","391488","3863710","GW","true","" +"NM-04781","","","670022","3555600","GW","false","" +"QY-1017","8.31.12.32","","626443","3866240","SP","true","" +"QY-0035","10.29.7.313a","","599202","3885030","GW","true","10 ft north of well .313" +"NM-28426","S-2017-007","","605192","3579000","GW","true","" +"UC-0111","","","621187","4028483","GW","false","From NESWCD database, not visited by NMBGMR" +"NM-00635","","","680712","3677340","GW","false","" +"NM-05917","","","652941","3572120","GW","false","" +"NM-25859","","","477909","4000340","GW","false","" +"NM-09511","","","559812","3630730","GW","false","" +"NM-10801","","","554879","3647940","GW","false","" +"EB-548","","","406504","3942758","GW","true","" +"NM-11107","","","556074","3652320","GW","false","" +"NM-26390","","","584937","4056900","GW","false","" +"NM-04334","","","347344","3544300","GW","false","" +"NM-11689","","","650973","3663210","GW","false","" +"NM-17876","","","678673","3798210","GW","false","" +"NM-01964","","","243605","3548519","GW","false","Approx. 16.5 miles S of Pine St & NM 11 intersection in Deming on NM 11, right on Whisper Rd 0.3 miles, left onto sandy track go SW to well approx. 0.2 miles around old corrals and abundant junk. Power pole, grey steel tank at well." +"NM-02512","","","305775","3615290","GW","false","" +"NM-03324","","","404107","3873680","GW","false","" +"NM-12954","","","640660","3684280","GW","false","" +"NM-17855","","","658509","3797480","GW","false","" +"NM-04119","","","249081","3537400","GW","false","" +"NM-04956","","","550272","3557290","GW","false","" +"NM-06896","","","582720","3590490","GW","false","" +"DA-0002","18S2W11.44","","311687","3625600","GW","true","" +"NM-22307","","","638988","3885910","GW","false","" +"NM-23724","","","645557","3913530","GW","false","" +"NM-12539","","","196082","3680670","GW","false","" +"SB-0759","TWDB 4924417","","394784","3507565","GW","false","" +"NM-18897","","","622314","3814220","GW","false","" +"NM-16475","","","572861","3771690","GW","false","" +"TO-0099","4N8E24.222","","403747","3825420","GW","true","" +"NM-04994","","","233983","3561110","GW","false","" +"UC-0124","","","673611","3978100","GW","false","USGS, not in NESWCD network, not visited by NMBGMR" +"NM-12024","","","662585","3668230","GW","false","" +"NM-16538","","","672277","3774610","GW","false","" +"NM-05988","","","166071","3577500","GW","false","" +"SV-0126","03 Vista de Sand","","379023","3899647","GW","false","Unit 1 Lot 17" +"NM-11466","","","658700","3660100","GW","false","" +"NM-19702","","","668457","3832690","GW","false","" +"NM-07754","","","204046","3611560","GW","false","" +"NM-26152","","","600557","4024900","GW","false","" +"NM-03245","","","574331","3837800","GW","false","" +"NM-14452","","","176283","3710470","GW","false","" +"MI-0263","","","561808","3947876","GW","true","Topographic situation: Plains" +"NM-01543","","","582846","3979010","GW","false","" +"NM-07988","","","336327","3609990","GW","false","" +"NM-07219","","","343437","3597650","GW","false","" +"NM-17737","","","555823","3792420","GW","false","" +"NM-21476","","","391388","3874310","GW","false","" +"NM-12346","","","560386","3672640","GW","false","" +"BW-0774","1.15.19.29.300","","148039","3935080","GW","true","" +"NM-13881","","","544357","3695340","GW","false","" +"NM-04813","","","664112","3556310","GW","false","" +"NM-19574","","","661337","3830470","GW","false","" +"NM-20848","","","641156","3855410","GW","false","" +"NM-04713","","","325200","3554630","GW","false","" +"NM-10952","","","556556","3649800","GW","false","" +"NM-02653","","","543410","3640920","GW","false","" +"SA-0436","4S15W32.120","","183017","3758660","GW","true","" +"NM-01746","","","166845","3489680","GW","false","" +"NM-05032","","","556684","3558500","GW","false","" +"NM-08970","","","559120","3624690","GW","false","" +"NM-15183","","","630686","3734690","GW","false","" +"NM-15614","","","641462","3745630","GW","false","" +"NM-08420","","","674061","3618730","GW","false","" +"QU-100","TPZ-6U","","445691","4061379","GW","true","Going north on Hwy 522, before entering Questa, make left on 2-track just past residence at 2338 (white trailer w/green trim) and directly across from Family Dollar parking lot. Follow 2-track back south towards trailer to red gate on right. Thru gate to west. Well is in 3' tall metal box in field ~25 m from gate. Combo code on padlock 0122." +"DE-0335","","","674138","3590034","GW","false","" +"NM-11335","","","616529","3657690","GW","false","" +"NM-01039","","","628160","3836660","GW","false","" +"NM-13019","","","558036","3684640","GW","false","" +"TO-0550","9N8E12.113","","404422","3876010","GW","true","There were no corresponding well site records to match with these chemistry records. Used the TRS site id to locate wells and enter data." +"NM-22949","","","185965","3898060","GW","false","" +"NM-26004","","","217458","4015830","GW","false","" +"TV-503","LQ-12","","445589","4020038","SP","true","Taos Pueblo (transferred ownership from Taos Land Trust to Taos Pueblo in 2012). Marcy Piersol is the Treasurer for the acequia assn. She asked for a copy of Ponce de Leon spg. Chemistry sampled in 2011. We sent it as it was before spring was transferred to the pueblo." +"NM-05439","","","237605","3568290","GW","false","" +"NM-04745","","","670426","3554960","GW","false","" +"NM-10446","","","543737","3643330","GW","false","" +"NM-06865","","","654353","3590960","GW","false","" +"NM-17419","","","635279","3787690","GW","false","" +"NM-19349","","","528261","3824390","GW","false","" +"PP-055","PW-60","","433920","4002139","GW","true","" +"NM-05844","","","243550","3573350","GW","false","" +"NM-00886","","","322025","3781210","GW","false","" +"NM-14499","","","488339","3706270","GW","false","" +"LC-009","","","399771","3936914","GW","true","From I-25 take La Cienega exit west.From I-25 take La Cienega exit west. Turn north on frontage road past Las Lagunitas development and north side road (Camino San Jose). Next left is Las Golondrinas Rd. Road is just south of JJ Gonzales rental property. Exit combo to gate on frontage road 4200. Left at bend to Torreon (LC-009). Newer of two wells in fenced junkyard area just off road." +"NM-13454","","","485994","3690820","GW","false","" +"LJ-003","","","313419","3774087","GW","true","Near Cottonwood Well" +"BW-0883","3.17.4.31.111","","287561","3631500","GW","true","" +"NM-02761","","","673036","3666500","GW","false","" +"SO-0031","2N4E12.223","","364642","3809270","GW","true","" +"NM-15786","","","643174","3749750","GW","false","" +"NM-04725","","","234000","3556770","GW","false","" +"NM-11207","","","403912","3654570","GW","false","" +"NM-13942","","","544356","3695560","GW","false","" +"MI-0001","","","438617","3877974","GW","true","Topographic situation: High area" +"NM-27443","","","413117","3691750","GW","false","" +"NM-04559","","","331498","3551820","GW","false","" +"NM-01234","","","603939","3890370","GW","false","" +"NM-01198","","","631006","3880730","GW","false","" +"SV-0024","24 Canada Vista","","380906","3899879","GW","false","Unit 1 Lot 68" +"NM-11170","","","631700","3654120","GW","false","" +"NM-22026","","","359173","3883130","GW","false","" +"NM-08670","","","553674","3621270","GW","false","" +"NM-22130","","","346456","3884320","GW","false","" +"NM-13002","","","409641","3684850","GW","false","" +"NM-11437","","","669261","3659940","GW","false","" +"NM-12876","","","139002","3688580","GW","false","" +"NM-14107","","","659019","3699200","GW","false","" +"NM-14655","","","548272","3713040","GW","false","" +"NM-16620","","","668407","3775990","GW","false","" +"NM-04024","","","261749","3530650","GW","false","" +"NM-11548","","","561188","3660390","GW","false","" +"NM-15546","","","674576","3744420","GW","false","" +"NM-02854","","","564293","3712000","GW","false","" +"SM-1063","","","433285","3637763","SP","true","" +"SB-0296","TWDB 4807513","","483693","3531704","GW","false","" +"TB-0013","","","413567","3663222","GW","true","Hwy east from Tularoasa, about 5 mi. Plain gate on R side of road just south of hills (before Virden road). Gate is dummie locked, road heads in east and north. Well is WM back about 1 mile, right off of dirt road." +"NM-26789","","","653622","3930620","GW","false","" +"NM-09500","","","654990","3632100","GW","false","" +"NM-13093","","","556864","3685960","GW","false","" +"NM-21899","","","359632","3881680","GW","false","" +"NM-02371","","","151045","3587880","GW","false","" +"BW-0632","9S9E10.343","","407465","3711090","SP","true","There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-07234","","","137235","3603550","GW","false","" +"NM-20808","","","398027","3853560","GW","false","" +"NM-16607","","","294842","3776440","GW","false","" +"NM-01667","","","291186","4043790","GW","false","" +"SD-0365","10N.5E.10.423","","373714","3885540","SP","true","" +"NM-20121","","","597868","3838330","GW","false","" +"SB-0338","TWDB 4807630","","485190","3531948","GW","false","" +"SB-0226","TWDB 4807110","","480184","3536976","GW","false","" +"NM-08658","","","632653","3621820","GW","false","" +"SB-0413","TWDB 4813901","","463998","3516945","GW","false","" +"TB-1053","","","425727","3710888","SP","true","" +"NM-02838","","","564026","3701770","GW","false","" +"NM-10710","","","400225","3646690","GW","false","" +"NM-05318","","","570193","3563230","GW","false","" +"NM-10010","","","552239","3636590","GW","false","" +"SM-0073","","","425461","3617548","GW","true","Take Bug Scuffle Rd west off of Sunspot Rd. Call at hill top. Bug Scuffle Gate (combo is 1950). Well is through 1st gate on right, go up and over hill to well down hill south from old well, has blue stickup." +"SO-0117","1N2W7.1","","307338","3800540","SP","true","" +"NM-26028","","","448203","4014050","GW","false","" +"QY-1026","10.36.8.233","","669010","3886690","SP","true","" +"NM-24770","","","459133","3944330","GW","false","" +"SA-0432","4S14W11.340","","197929","3763440","GW","true","" +"NM-08155","","","301814","3615140","GW","false","" +"NM-06294","","","210640","3583120","GW","false","" +"SA-0011","SA-11_R00","","248690","3789270","GW","true","One mile west of Otero/Socorro county line on US60, go north 5.2 miles to Olmstead HQ. Go north thru gate 1.3 miles to WM. Large dry metal stock tank about 10 yards east of well. Box car 50 yards NW of well and corrals about 40 yards SW of well." +"NM-06886","","","574888","3590300","GW","false","" +"SD-0140","10N.5E.11.231","","374785","3886200","GW","true","" +"NM-11521","","","656611","3660960","GW","false","" +"NM-18791","","","670544","3813410","GW","false","" +"NM-16013","","","661701","3757450","GW","false","" +"NM-20054","","","396419","3837040","GW","false","" +"NM-08102","","","306758","3614160","GW","false","" +"NM-21060","","","570894","3861100","GW","false","" +"QY-0446","13.35.31.444","","658381","3908150","GW","true","" +"NM-20374","","","604277","3843150","GW","false","" +"TB-0087","","","403505","3641487","GW","true","From Headquarters head south on new road to Y. Bear west (right) on two track. Bear north (right) at Y to well. Blue casing on Left (W)." +"NM-27754","","","595222","3793450","GW","false","" +"NM-14429","","","392997","3704830","GW","false","" +"NM-13903","","","553631","3695480","GW","false","" +"NM-22381","","","633077","3886590","GW","false","" +"NM-12966","","","621824","3684340","GW","false","" +"NM-12078","","","647251","3669350","GW","false","" +"NM-22606","","","375340","3889090","GW","false","" +"NM-09316","","","557821","3628800","GW","false","" +"NM-21782","","","346544","3880870","GW","false","" +"HS-003","TC-003","","287102","3666765","GW","true","S. off of Broadway, right on road after T or C service center. Continue to the south of pond, across from the rodeo . Adjacent to restroom facilities, surrounded by three yellow poles." +"BC-0355","364","","376623","3891551","GW","true","" +"NM-05045","","","268752","3561120","GW","false","" +"NM-20719","","","291707","3853630","GW","false","" +"NM-03222","","","572657","3833910","GW","false","" +"NM-28282","146530","","230863","3797152","SP","false","Cibola NF, Magdalena RD" +"NM-00643","","","554492","3679932","GW","true","Heading south on Hwy 285 out of Roswell, bear left to Hwy 2, turn left (east) on E. Orchard Park Rd (aka Rd 59), cross railroad and immediately turn north, drive north on dirt road to well in a field to the east of the road. The shallow well is the northern most of the two wells. No lock present. Duck through barbed wire fence for access." +"WL-0225","","","251298","3571600","GW","true","From McSherry Farm HQ, take dirt road in SW corner past trees, turn left, follow track through Mimbres River (approximately 1500 ft) to ag fields. Well head in open to left." +"NM-12918","","","550495","3682500","GW","false","" +"TB-1007","","","415428","3648573","SP","true","From junction of Labrocita Canyon and Fresnal Canyon, turn south into Fresnal Canyon. Drive 0.6 mi." +"SA-0421","4S13W27.314","","205258","3758780","GW","true","" +"NM-24605","","","405325","3941050","GW","false","" +"NM-10797","","","678923","3649350","GW","false","" +"CX-0030","28N27E23","","586528","4055710","GW","true","" +"NM-04580","","","233883","3554300","GW","false","" +"EB-445","","","404285","3923854","GW","true","57 Don Jose Loop" +"NM-21613","","","246135","3880440","GW","false","" +"QY-0347","11.35.1.114","","664957","3898050","GW","true","" +"SM-3030","","","471972","3645312","PS","true","At gate to Benard Cleve's property, close to new bridge" +"NM-07923","","","662882","3610970","GW","false","" +"NM-08269","","","293728","3616910","GW","false","" +"NM-05482","","","662265","3566840","GW","false","" +"NM-00646","","","400760","3683830","GW","false","" +"NM-07973","","","559648","3610430","GW","false","" +"QU-132","MMW-47A","","453074","4059975","GW","true","" +"QY-0543","17.36.3.142","","671706","3956260","GW","true","" +"EB-525","","","407619","3943764","GW","true","" +"DA-0045","22S4W30.12","","284313","3583960","GW","true","" +"NM-19888","","","606515","3834420","GW","false","" +"SV-0100","06 Via Alcalde","","380195","3900475","GW","false","Unit 1 Lot 50" +"NM-05046","","","265922","3561190","GW","false","" +"NM-06255","","","494409","3578320","GW","false","" +"QY-0614","5.29.5.231","","601445","3838970","GW","true","" +"NM-09048","","","672663","3627180","GW","false","" +"AB-0096","S109","","339853","3856240","GW","true","" +"DE-0336","","","674280","3589882","GW","false","" +"NM-26307","","","276699","4045750","GW","false","" +"NM-02955","","","680121","3754480","GW","false","" +"QY-0463","14.36.12.122","","674999","3925770","GW","true","" +"SB-0754","TWDB 4924412","","394587","3506367","GW","false","" +"NM-11080","","","559269","3651880","GW","false","" +"BW-0234","14S10E18.424","","405505","3662480","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-06585","","","192085","3589310","GW","false","" +"NM-00147","","","570220","3563860","GW","false","" +"NM-23253","","","391710","3898730","GW","false","" +"NM-24403","","","418644","3936420","GW","false","" +"SA-0131","","","235563","3775911","GW","true","From Datil, take rt 12 south 4.3 miles, look for gate in fence to east (L). Go through fence, take 2-track to east. Follow 2-track 1.3 miles, at which point road branches to N, uphill. Follow 2-track up hill, and over top of hill, bearing to SE (L). Windmill will be visible in bottom of arroyo, with old log cabin nearby." +"SD-0222","10N.7E.17.242","","389743","3884060","GW","true","" +"NM-06493","","","672783","3584150","GW","false","" +"TO-0457","10N8E31.421","","397541","3878770","GW","true","" +"NM-15132","","","642573","3733230","GW","false","" +"NM-12727","","","628756","3680540","GW","false","" +"NM-07749","NH-025","","281630","3609390","GW","false","I-25 south to Hatch. Right on NM26 (west). Go 11.3 miles and go through gate on south side of the road. From the gate, go east on first dirt road towards large structure. Well located on far side of structure." +"DA-0028","20S3E12.332","","350360","3605580","GW","true","" +"QY-0435","13.33.24.412","","646645","3911720","GW","true","" +"NM-19553","","","565517","3828370","GW","false","" +"QY-0475","15.34.32.241","","649804","3928270","GW","true","" +"SO-0209","SAC-W08EX","","324642","3791115","GW","true","" +"NM-14955","","","414013","3725560","GW","false","" +"NM-18224","","","622895","3803040","GW","false","" +"NM-03465","","","673140","3907860","GW","false","" +"NM-13611","","","552249","3692950","GW","false","" +"NM-28295","237638","","153728","3753957","SP","false","Gila National Forest" +"SB-0610","TWDB 4864502","","492077","3436901","GW","false","" +"NM-17732","","","627199","3792780","GW","false","" +"NM-07848","","","630966","3609570","GW","false","" +"NM-17001","","","305373","3782320","GW","false","" +"NM-06876","","","573818","3590170","GW","false","" +"NM-03225","","","570487","3834660","GW","false","" +"NM-20090","","","532598","3837380","GW","false","" +"NM-00400","","","676965","3632260","GW","false","" +"NM-24361","","","674348","3936670","GW","false","" +"TB-0100","","","416802","3724830","GW","true","6368 Hwy 380, Carrizozo. 2.5 Miles from light at 54 and 380 to the west. On south side of hwy 380, white gate to house. Well in well-house south of home." +"NM-08937","","","556051","3624390","GW","false","" +"EB-197","","","416044","3957527","GW","true","1530 Bishop's Lodge Rd, 4 driveways N of Shidoni in sculpture garden on W side of rd; ring at gate for access" +"NM-17366","","","678511","3787920","GW","false","" +"PB-0022","","","378976","3937170","GW","true","Heading south on Hwy 22 from Pena Blanca post office, make left turn on Keros to address (11 Keros). Residence is brown stucco home w/white trim. Well is in small wooden well house behind (east) of homes in corner of lot." +"SB-0761","TWDB 4924419","","394543","3507229","GW","false","" +"SB-0811","TWDB 5101301","","508302","3427912","GW","false","" +"NM-10127","","","663391","3640060","GW","false","" +"NM-14652","","","434532","3712990","GW","false","" +"NM-15205","","","343497","3736040","GW","false","" +"NM-22534","","","601286","3887970","GW","false","" +"SA-0119","","","232353","3759077","GW","true","From Datil go south on NM 12 for 7.7 miles, half way between MM 67 & 66 (Gutierrezville) Look for the Harriet Ranch sign on the east side of the highway. Go east on the county road bearing to the southeast (right) at the fork. Go south 8.9 miles and look for the well on the west side of the road." +"NM-16417","","","256598","3773130","GW","false","" +"QY-0762","7.29.25.122","","607649","3852340","GW","true","" +"NM-04665","","","235473","3555900","GW","false","" +"NM-06404","","","577280","3581420","GW","false","" +"NM-09705","","","656909","3634130","GW","false","" +"NM-15177","","","562322","3733540","GW","false","" +"NM-19448","","","613685","3827020","GW","false","" +"NM-21487","","","546052","3874370","GW","false","" +"NM-16503","","","632897","3773360","GW","false","" +"DE-0351","","","569248","3626568","GW","false","" +"NM-04000","","","242162","3528750","GW","false","" +"NM-03212","","","419835","3831140","GW","false","" +"NM-00419","","","640565","3635080","GW","false","" +"NM-15176","","","562347","3733540","GW","false","" +"SB-0079","TWDB 4717308","","509368","3510328","GW","false","" +"NM-27137","VAD-05","","438328","4005580","GW","false","" +"NM-16037","","","262203","3759290","GW","false","" +"NM-03307","","","401944","3859620","GW","false","" +"NM-26374","","","578926","4054440","GW","false","" +"NM-16384","","","674802","3771210","GW","false","" +"NM-04595","","","680324","3552730","GW","false","" +"NM-24326","","","344425","3935610","GW","false","" +"NM-12768","","","553846","3679960","GW","false","" +"BW-0260","15S9E2.422","","402181","3656030","GW","true"," There was no map of well or spring sites with this publication, so we could not verify locations. This is also the reason for the Data Reliability code of 'M'." +"NM-27142","OC-02","","406026","4018870","GW","false","" +"NM-25715","","","247491","3994030","GW","false","" +"SD-0130","10N.5E.2.242","","375563","3887650","GW","true","" +"AR-0132","B012","","243670","4091423","GW","true","From Aztec, take Hwy 550 to Cedar Hill. Turn right (east) on Rd 2350 ~1/4 mile after Hwy 550 crosses Animas River. Follow Rd 2350 thru few jogs in road, it turns to gravel, makes a 90 degree right, then takes slight left downhill, to address. Tan house, silver roof, white 3-rail fence. Well is between house and river; outside pumphouse under heavy cover." +"NM-22595","","","352180","3889320","GW","false","" +"NM-25462","","","419995","3974550","GW","false","" +"NM-27787","","","607377","3788250","GW","false","" +"NM-01374","","","456641","3923120","GW","false","" +"NM-07593","","","552043","3604720","GW","false","" +"NM-10252","","","552842","3640540","GW","false","" +"HS-503","TC-503","","289851","3667684","SP","true","218 Austin St." +"NM-12759","","","559409","3679930","GW","false","" +"NM-15732","","","665308","3749400","GW","false","" +"NM-10949","","","656409","3650820","GW","false","" +"NM-15465","","","671174","3743410","GW","false","" +"NM-22804","","","376814","3891440","GW","false","" +"NM-25273","","","461688","3965240","GW","false","" +"AB-0125","S152","","353753","3922230","GW","true","" +"NM-24274","","","343059","3933820","GW","false","" +"NM-13812","","","547252","3695050","GW","false","" +"SM-1078","","","444212","3645680","SP","true","" +"SB-0088","TWDB 4717317","","507919","3512021","GW","false","" +"NM-10860","","","677038","3650210","GW","false","" +"WL-0045","","","442747","4050037","GW","true","Heading north on Hwy 522 out of Taos and past Arroyo Hondo, go past Lawrence Ranch Rd which is the first turn off to San Cristobal. At second turn off (FR 493) make a right. Make a right on Old Hwy 3 and a left on Camino del Medio. Driveway is ~0.5 mile down road on right (46 Camino del Medio). Well is north of propane tank. Hard to see casing in weeds." +"NM-01738","","","166034","3484990","GW","false","" +"SM-3012","","","466974","3632607","R","true","Site visited and sampled by Jeremiah Morse" diff --git a/transfers/data/ownersdata.csv b/transfers/data/ownersdata.csv new file mode 100644 index 000000000..8ea12f7d4 --- /dev/null +++ b/transfers/data/ownersdata.csv @@ -0,0 +1,4 @@ +PointID,FirstName,LastName,OwnerKey,Company,Email,CellPhone,Phone,MailingAddress,MailCity,MailState,MailZipCode,PhysicalAddress,PhysicalCity,PhysicalState,PhysicalZipCode,SecondLastName,SecondFirstName,SecondCtctEmail,SecondCtctPhone +QU-047,John,Doe,OWN001,JD LLC,john.doe@example.com,555-1234,555-5678,123 Main St,Albuquerque,NM,87101,456 Elm St,Albuquerque,NM,87102,Smith,Jane,jane.smith@example.com,555-8765 +NM-11224,Alice,Johnson,OWN002,AJ LLC,alice.j@example.com,555-2345,555-6789,789 Oak St,Socorro,NM,87801,101 Pine St,Socorro,NM,87802,Brown,Bob,bob.brown@example.com,555-4321 +NM-21466,Maria,Gonzalez,OWN003,MG LLC,maria.g@example.com,555-3456,555-7890,234 Maple St,Las Cruces,NM,88001,567 Cedar St,Las Cruces,NM,88002,Lopez,Carlos,carlos.lopez@example.com,555-5432 \ No newline at end of file diff --git a/transfers/data/projects.csv b/transfers/data/projects.csv new file mode 100644 index 000000000..f0d207c02 --- /dev/null +++ b/transfers/data/projects.csv @@ -0,0 +1,56 @@ +"Project","PointIDPrefix" +"Questa Red River","QU, TC, TS" +"S.Taos Valley","TV, TS" +"La Cienega","LC, EB" +"San Agustin Plains Alamosa Creek","SA" +"Sacramento Mtns","SM" +"Espanola Basin","EB" +"Tularosa Basin","TB, SM" +"SM Watershed","SM" +"Union County","UC" +"White Sands","WS" +"Jornada Del Muerto","JM" +"La Jencia","LJ" +"Magdalena","MG" +"Truth or Consequences","HS" +"Geothermal","GT" +"Arroyo Seco","AS" +"Arroyo Hondo","AH" +"Taos Plateau","TC, TS" +"New Mexico","NM" +"Tiffany Fire Restoration","TF, SO" +"Bernalillo County","BC" +"Clovis-Portales","CP" +"El Morro","EM" +"Statewide Recharge","SR" +"San Miguel County","MI" +"Socorro","SO" +"Animas River","AR" +"Quay County","QY" +"Sandia and N. Manzano Mtns.","SD" +"Brackish Water","BW" +"Dona Ana County","DA" +"Eastern Tularosa Basin","TB" +"Colfax County","CX" +"Eddy County","ED" +"Torrance County","TO" +"Pena Blanca","PB" +"Sandoval County","SV" +"Taos Gorge Springs","TS" +"Water Level Network","WL" +"Rio Arriba","RA" +"Placitas","PC" +"Picuris Pueblo","PP" +"Sunshine Valley","TC" +"NGWMN","NGWMN" +"Rio Rancho","RR" +"Albuquerque Basin","AB" +"Tiffany Fire Recovery","TF, SO" +"Salt Basin","SB" +"Mimbres Basin","MB" +"MRGCD","SO" +"Delaware Basin","DE" +"ABCWUA","AB, BC, NM" +"Embudo Wetlands","EW" +"Ogallala Groundwater","OG" +"Not Assigned","000" diff --git a/transfers/data/water_levels.csv b/transfers/data/water_levels.csv new file mode 100644 index 000000000..fdb4b66b1 --- /dev/null +++ b/transfers/data/water_levels.csv @@ -0,0 +1,34117 @@ +"PointID","DepthToWater","DepthToWaterBGS","LevelStatus","DateMeasured","TimeMeasured","MPHeight" +"NM-23324","126.83000183105469","126.83000183105469","","1985-08-14T00:00:00Z","","0" +"NM-02198","19.270000457763672","19.270000457763672","","2010-04-12T00:00:00Z","","0" +"NM-19049","319.8999938964844","319.8999938964844","","1961-01-18T00:00:00Z","","0" +"NM-13330","71.3499984741211","71.3499984741211","","1996-02-15T00:00:00Z","","0" +"NM-03200","182.27999877929688","182.27999877929688","","1990-03-19T00:00:00Z","","0" +"NM-14307","-14.859999656677246","-14.859999656677246","","1906-06-21T00:00:00Z","","0" +"NM-02092","74.44000244140625","74.44000244140625","","1956-11-09T00:00:00Z","","0" +"DE-0128","44.65999984741211","44.65999984741211","","2015-11-20T00:00:00Z","","0" +"NM-02265","242.39999389648438","242.39999389648438","","1976-03-23T00:00:00Z","","0" +"NM-02895","261","261","","1996-08-15T00:00:00Z","","0" +"NM-02396","7","7","","1948-04-15T00:00:00Z","","0" +"NM-05420","19.110000610351562","19.110000610351562","","1957-01-25T00:00:00Z","","0" +"NM-13121","7.25","7.25","","1960-03-15T00:00:00Z","","0" +"NM-11298","46.84000015258789","46.84000015258789","","1968-01-16T00:00:00Z","","0" +"NM-18638","6.690000057220459","6.690000057220459","T","1985-09-17T00:00:00Z","","0" +"NM-23199","73.38999938964844","73.38999938964844","","1949-12-14T00:00:00Z","","0" +"NM-28256","148.99000549316406","148.99000549316406","","1992-03-25T00:00:00Z","","0" +"NM-03409","489.4100036621094","489.4100036621094","","2009-11-19T00:00:00Z","","0" +"NM-02314","8","8","","1950-09-15T00:00:00Z","","0" +"NM-17688","5.570000171661377","5.570000171661377","","1982-08-06T00:00:00Z","","0" +"NM-11017","52.36000061035156","52.36000061035156","","1955-07-18T00:00:00Z","","0" +"NM-05347","8.600000381469727","8.600000381469727","","1970-11-15T00:00:00Z","","0" +"NM-15414","97.81999969482422","97.81999969482422","R","1970-02-20T00:00:00Z","","0" +"NM-02794","65.69999694824219","65.69999694824219","","1993-01-27T00:00:00Z","","0" +"NM-02553","84.76000213623047","84.76000213623047","","1973-01-22T00:00:00Z","","0" +"NM-27499","104.6500015258789","104.6500015258789","","1959-06-03T00:00:00Z","","0" +"NM-28251","90.87999725341797","90.87999725341797","","1977-04-25T00:00:00Z","","0" +"NM-01990","10.0600004196167","10.0600004196167","","1991-02-18T00:00:00Z","","0" +"NM-02043","6.199999809265137","6.199999809265137","","1995-12-15T00:00:00Z","","0" +"NM-05340","75.06999969482422","75.06999969482422","","1949-03-18T00:00:00Z","","0" +"NM-13121","5.239999771118164","5.239999771118164","","1971-07-30T00:00:00Z","","0" +"SM-0074","160.39999389648438","159.9099884033203","","2008-03-12T00:00:00Z","","0.49000000953674316" +"NM-27474","83.47000122070312","83.47000122070312","R","1957-01-23T00:00:00Z","","0" +"NM-28250","104.55999755859375","104.55999755859375","","1981-10-25T00:00:00Z","","0" +"NM-25813","18.440000534057617","18.440000534057617","","1992-02-11T00:00:00Z","","0" +"NM-01892","11.579999923706055","11.579999923706055","","2000-01-20T00:00:00Z","","0" +"NM-17716","0.7699999809265137","0.7699999809265137","","1942-07-15T00:00:00Z","","0" +"NM-02527","8.899999618530273","8.899999618530273","","1996-03-15T00:00:00Z","","0" +"EB-276","136.3300018310547","136.3300018310547","","1958-01-06T00:00:00Z","","0" +"NM-22091","20.200000762939453","20.200000762939453","","1962-10-16T00:00:00Z","","0" +"NM-02101","8.100000381469727","8.100000381469727","","1946-02-15T00:00:00Z","","0" +"NM-02447","138.42999267578125","138.42999267578125","","1978-01-30T00:00:00Z","","0" +"NM-00229","55.459999084472656","55.459999084472656","","2007-02-02T00:00:00Z","","0" +"NM-10200","285","285","","1974-08-02T00:00:00Z","","0" +"NM-12799","80.88999938964844","80.88999938964844","","1947-01-31T00:00:00Z","","0" +"NM-21295","127.19999694824219","127.19999694824219","","1997-06-01T00:00:00Z","","0" +"EB-288","104","104","","1984-05-31T00:00:00Z","","0" +"AB-0005","394.07000732421875","394.07000732421875","","2004-11-17T00:00:00Z","","" +"NM-02772","159.63999938964844","159.63999938964844","","1977-08-01T00:00:00Z","","0" +"QY-0916","230","230","","1955-05-11T00:00:00Z","","0" +"NM-02396","7.699999809265137","7.699999809265137","","1951-10-15T00:00:00Z","","0" +"NM-09614","23.030000686645508","23.030000686645508","","1946-01-09T00:00:00Z","","0" +"NM-01948","5.199999809265137","5.199999809265137","","2000-04-15T00:00:00Z","","0" +"NM-17729","86.62000274658203","86.62000274658203","","1956-01-11T00:00:00Z","","0" +"NM-02948","112.77999877929688","112.77999877929688","","1965-04-28T00:00:00Z","","0" +"NM-05681","59.59000015258789","59.59000015258789","","1942-11-24T00:00:00Z","","0" +"NM-01872","9.5","9.5","","1969-01-15T00:00:00Z","","0" +"NM-11263","41.5099983215332","41.5099983215332","","1939-01-13T00:00:00Z","","0" +"SO-0202","14.739999771118164","14.40999984741211","","2021-08-19T00:00:00Z","0001-01-01T13:32:00Z","0.33000001311302185" +"NM-02017","9.899999618530273","9.899999618530273","","1975-02-15T00:00:00Z","","0" +"NM-14868","61.619998931884766","61.619998931884766","","1958-10-06T00:00:00Z","","0" +"NM-11176","51.369998931884766","51.369998931884766","","1958-01-18T00:00:00Z","","0" +"NM-00645","30.229999542236328","30.229999542236328","","1951-03-26T00:00:00Z","","0" +"NM-02902","166.5800018310547","166.5800018310547","","1990-02-01T00:00:00Z","","0" +"NM-13920","-7.059999942779541","-7.059999942779541","","1908-06-26T00:00:00Z","","0" +"NM-07708","101.31999969482422","101.31999969482422","","1982-05-28T00:00:00Z","","0" +"NM-28252","15.029999732971191","15.029999732971191","","1949-11-05T00:00:00Z","","0" +"NM-02790","121.3499984741211","121.3499984741211","","1958-09-16T00:00:00Z","","0" +"NM-11652","259.8299865722656","259.8299865722656","R","1966-03-30T00:00:00Z","","0" +"NM-01390","128.25","128.25","","2013-10-22T00:00:00Z","","0" +"EB-677","199","199","","1997-03-10T00:00:00Z","","0" +"NM-05347","15.699999809265137","15.699999809265137","","1956-10-15T00:00:00Z","","0" +"UC-0040","103.62000274658203","103.62000274658203","","1986-02-04T00:00:00Z","","0" +"NM-23720","95.4000015258789","95.4000015258789","","1960-04-26T00:00:00Z","","0" +"NM-05713","78.94999694824219","78.94999694824219","","1942-01-09T00:00:00Z","","0" +"NM-08071","7.199999809265137","7.199999809265137","","1972-03-15T00:00:00Z","","0" +"NM-02240","75.29000091552734","75.29000091552734","","2008-01-09T00:00:00Z","","0" +"NM-28256","216.88999938964844","216.88999938964844","","2009-04-15T00:00:00Z","","0" +"NM-02552","345.6600036621094","345.6600036621094","","1962-08-21T00:00:00Z","","0" +"NM-16689","37.279998779296875","37.279998779296875","","1961-03-17T00:00:00Z","","0" +"DE-0355","69","66.5199966430664","","2013-10-15T00:00:00Z","","2.4800000190734863" +"NM-01759","52.31999969482422","52.31999969482422","","2005-01-07T00:00:00Z","","0" +"EB-482","281","281","Z","1990-01-31T00:00:00Z","","0" +"NM-03720","58.41999816894531","58.41999816894531","","1950-12-01T00:00:00Z","","0" +"NM-01349","62.900001525878906","62.900001525878906","","1993-03-23T00:00:00Z","","0" +"NM-14118","161.9199981689453","161.9199981689453","","1955-01-07T00:00:00Z","","0" +"NM-02340","57.290000915527344","57.290000915527344","","2005-01-20T00:00:00Z","","0" +"DE-0280","84.19999694824219","84.19999694824219","","2018-09-24T00:00:00Z","","0" +"NM-07131","108.48999786376953","108.48999786376953","","1999-04-21T00:00:00Z","","0" +"NM-09506","4.289999961853027","4.289999961853027","","1973-01-26T00:00:00Z","","0" +"AB-0050","554.1900024414062","554.1900024414062","Z","1990-07-05T00:00:00Z","","" +"NM-00368","11.329999923706055","11.329999923706055","","2014-01-13T00:00:00Z","","0" +"NM-00362","155.02999877929688","155.02999877929688","","1991-02-20T00:00:00Z","","0" +"NM-11263","40.16999816894531","40.16999816894531","","1943-01-19T00:00:00Z","","0" +"NM-12807","27.299999237060547","27.299999237060547","","1958-08-26T00:00:00Z","","0" +"NM-06268","17.100000381469727","17.100000381469727","","1972-09-15T00:00:00Z","","0" +"NM-13234","3.75","3.75","","1958-06-16T00:00:00Z","","0" +"NM-11408","57.72999954223633","57.72999954223633","","1986-02-04T00:00:00Z","","0" +"BC-0219","","32.150001525878906","","2020-07-24T00:00:00Z","","2" +"NM-02843","38.70000076293945","38.70000076293945","","1963-07-24T00:00:00Z","","0" +"NM-26517","55.45000076293945","55.45000076293945","","2003-06-06T00:00:00Z","","0" +"NM-09513","-76.08000183105469","-76.08000183105469","","1910-02-14T00:00:00Z","","0" +"SB-0053","80.69999694824219","80.69999694824219","","2007-01-29T00:00:00Z","","0" +"NM-19428","356.5400085449219","356.5400085449219","","1967-02-01T00:00:00Z","","0" +"NM-12696","9","9","","1967-04-06T00:00:00Z","","0" +"NM-25204","-138.9499969482422","-138.9499969482422","","1985-08-14T00:00:00Z","","0" +"NM-08354","53.04999923706055","53.04999923706055","P","1961-03-03T00:00:00Z","","0" +"NM-01985","12.899999618530273","12.899999618530273","","1978-11-15T00:00:00Z","","0" +"NM-01887","76.0999984741211","76.0999984741211","","2010-11-18T00:00:00Z","","0" +"NM-12342","-35.119998931884766","-35.119998931884766","","1931-12-15T00:00:00Z","","0" +"NM-09754","-98.0199966430664","-98.0199966430664","","1908-08-26T00:00:00Z","","0" +"NM-18770","38.81999969482422","38.81999969482422","","1980-01-08T00:00:00Z","","0" +"EB-416","283","283","Z","1997-06-30T00:00:00Z","","0" +"NM-28255","20.3799991607666","20.3799991607666","","1959-12-25T00:00:00Z","","0" +"NM-05420","15.430000305175781","15.430000305175781","P","1948-07-27T00:00:00Z","","0" +"NM-23396","33.20000076293945","33.20000076293945","","1963-01-15T00:00:00Z","","0" +"NM-02569","131.38999938964844","131.38999938964844","","2007-02-09T00:00:00Z","","0" +"NM-02005","9.300000190734863","9.300000190734863","","1982-12-15T00:00:00Z","","0" +"EB-220","128.25","128.25","","1983-05-23T00:00:00Z","","0" +"NM-25675","29.049999237060547","29.049999237060547","","1986-02-06T00:00:00Z","","0" +"NM-28255","-2","-2","","1992-02-15T00:00:00Z","","0" +"NM-14793","49.81999969482422","49.81999969482422","","1958-07-16T00:00:00Z","","0" +"NM-18007","221.9499969482422","221.9499969482422","","1986-01-13T00:00:00Z","","0" +"QY-0255","4.5","4.5","","1953-07-25T00:00:00Z","","0" +"NM-11624","67.94000244140625","67.94000244140625","","1965-02-18T00:00:00Z","","0" +"NM-22015","26.049999237060547","26.049999237060547","R","1992-04-16T00:00:00Z","","0" +"NM-06150","68.55000305175781","68.55000305175781","","1996-02-21T00:00:00Z","","0" +"NM-08497","85.2699966430664","85.2699966430664","","1971-01-14T00:00:00Z","","0" +"NM-02427","77.94000244140625","77.94000244140625","","1967-06-26T00:00:00Z","","0" +"NM-03401","8.699999809265137","8.699999809265137","","1992-10-02T00:00:00Z","","0" +"NM-14802","106.11000061035156","106.11000061035156","","1982-06-25T00:00:00Z","","0" +"SA-0042","302.79998779296875","302.6999816894531","S","2011-01-13T00:00:00Z","","0.10000000149011612" +"NM-03460","177.44000244140625","177.44000244140625","","1956-12-10T00:00:00Z","","0" +"NM-10668","-31.030000686645508","-31.030000686645508","","1919-01-05T00:00:00Z","","0" +"NM-23347","170.6699981689453","170.6699981689453","R","2003-11-04T00:00:00Z","","0" +"NM-17716","0.8500000238418579","0.8500000238418579","","1944-02-24T00:00:00Z","","0" +"NM-28255","10.90999984741211","10.90999984741211","","1986-12-05T00:00:00Z","","0" +"NM-08648","38.18000030517578","38.18000030517578","","1942-11-26T00:00:00Z","","0" +"NM-28254","74.47000122070312","74.47000122070312","","1980-09-15T00:00:00Z","","0" +"NM-02024","58.209999084472656","58.209999084472656","","1951-01-11T00:00:00Z","","0" +"NM-28250","103.7300033569336","103.7300033569336","","1979-02-05T00:00:00Z","","0" +"NM-12197","18.5","18.5","","1945-11-13T00:00:00Z","","0" +"NM-08842","49.18000030517578","49.18000030517578","T","1964-02-11T00:00:00Z","","0" +"NM-17018","42.349998474121094","42.349998474121094","","1975-06-04T00:00:00Z","","0" +"NM-02669","57.20000076293945","57.20000076293945","","1975-02-01T00:00:00Z","","0" +"NM-12089","-27.719999313354492","-27.719999313354492","","1911-09-28T00:00:00Z","","0" +"NM-02620","9","9","","1979-08-15T00:00:00Z","","0" +"NM-02772","100.95999908447266","100.95999908447266","","1964-10-01T00:00:00Z","","0" +"NM-11445","64.86000061035156","64.86000061035156","","1955-01-11T00:00:00Z","","0" +"NM-19752","237.38999938964844","237.38999938964844","","1974-02-28T00:00:00Z","","0" +"NM-02194","203.89999389648438","203.89999389648438","P","1957-04-09T00:00:00Z","","0" +"EB-287","463.20001220703125","462.4000244140625","","1977-07-31T00:00:00Z","","0.800000011920929" +"NM-21495","104.7300033569336","104.7300033569336","R","1995-07-19T00:00:00Z","","0" +"NM-05622","75.62000274658203","75.62000274658203","","1942-10-13T00:00:00Z","","0" +"NM-03060","164.5","164.5","R","1993-01-12T00:00:00Z","","0" +"SO-0182","7.260000228881836","6.660000324249268","","2018-02-27T00:00:00Z","0001-01-01T10:50:00Z","0.6000000238418579" +"NM-26708","13.510000228881836","13.510000228881836","","1955-11-07T00:00:00Z","","0" +"NM-28259","85.26000213623047","85.26000213623047","","1985-02-15T00:00:00Z","","0" +"NM-02702","-29.170000076293945","-29.170000076293945","","1996-02-09T00:00:00Z","","0" +"NM-06290","445.8599853515625","445.8599853515625","","1986-03-19T00:00:00Z","","0" +"EB-481","611.4000244140625","611.4000244140625","P","2006-05-31T00:00:00Z","","0" +"NM-28252","43.099998474121094","43.099998474121094","","2004-06-04T00:00:00Z","","0" +"NM-07543","31","31","","1953-06-01T00:00:00Z","","0" +"NM-10058","9.050000190734863","9.050000190734863","","1972-04-26T00:00:00Z","","0" +"NM-08940","6.650000095367432","6.650000095367432","","1958-04-29T00:00:00Z","","0" +"NM-01986","6.699999809265137","6.699999809265137","","1977-08-15T00:00:00Z","","0" +"NM-05117","83.01000213623047","83.01000213623047","","1948-09-20T00:00:00Z","","0" +"NM-09703","36.54999923706055","36.54999923706055","","1952-01-09T00:00:00Z","","0" +"NM-23386","128.72999572753906","128.72999572753906","P","1990-07-26T00:00:00Z","","0" +"NM-11388","42.369998931884766","42.369998931884766","","1930-12-26T00:00:00Z","","0" +"NM-06520","119.56999969482422","119.56999969482422","","1978-01-03T00:00:00Z","","0" +"NM-20031","116.1500015258789","116.1500015258789","","1943-02-03T00:00:00Z","","0" +"NM-03386","42.400001525878906","42.400001525878906","","1995-11-01T00:00:00Z","","0" +"SB-0299","139.58999633789062","139.58999633789062","","2009-06-05T00:00:00Z","","0" +"NM-11089","58.77000045776367","58.77000045776367","","1976-03-26T00:00:00Z","","0" +"NM-11889","2.690000057220459","2.690000057220459","","1952-12-01T00:00:00Z","","0" +"WL-0064","15.720000267028809","13.220000267028809","","2019-06-05T00:00:00Z","0001-01-01T10:23:00Z","2.5" +"DE-0058","75.77999877929688","73.16999816894531","","2004-10-05T00:00:00Z","","2.609999895095825" +"NM-26693","15.319999694824219","15.319999694824219","","1956-12-14T00:00:00Z","","0" +"NM-28253","10.539999961853027","10.539999961853027","","1990-01-15T00:00:00Z","","0" +"NM-11570","89.23999786376953","89.23999786376953","","1948-11-05T00:00:00Z","","0" +"NM-08412","53.650001525878906","53.650001525878906","","1958-12-30T00:00:00Z","","0" +"NM-02352","6.699999809265137","6.699999809265137","","1949-12-15T00:00:00Z","","0" +"NM-05094","166.5","166.5","P","1958-04-23T00:00:00Z","","0" +"NM-05447","17.700000762939453","17.700000762939453","","1954-11-10T00:00:00Z","","0" +"NM-11297","64.4000015258789","64.4000015258789","","1971-02-25T00:00:00Z","","0" +"NM-05834","27.649999618530273","27.649999618530273","","1931-10-11T00:00:00Z","","0" +"NM-04632","9.699999809265137","9.699999809265137","","1983-04-15T00:00:00Z","","0" +"NM-01269","100.72000122070312","100.72000122070312","P","1949-06-09T00:00:00Z","","0" +"NM-11928","-0.6899999976158142","-0.6899999976158142","","1957-11-05T00:00:00Z","","0" +"NM-06709","349.44000244140625","349.44000244140625","","2005-10-06T00:00:00Z","","0" +"NM-11139","57.9900016784668","57.9900016784668","","1981-01-07T00:00:00Z","","0" +"NM-01926","4.300000190734863","4.300000190734863","","1949-04-15T00:00:00Z","","0" +"NM-09692","145.02000427246094","145.02000427246094","","1949-03-22T00:00:00Z","","0" +"EB-219","66.69999694824219","65.19999694824219","","1965-02-05T00:00:00Z","","1.5" +"NM-13122","8.579999923706055","8.579999923706055","","1961-07-25T00:00:00Z","","0" +"NM-16979","76.04000091552734","76.04000091552734","","1959-09-22T00:00:00Z","","0" +"NM-01541","42.810001373291016","42.810001373291016","R","2012-02-01T00:00:00Z","","0" +"NM-01868","6.199999809265137","6.199999809265137","","2000-08-15T00:00:00Z","","0" +"NM-07815","23.1299991607666","23.1299991607666","","1941-10-12T00:00:00Z","","0" +"NM-02484","33.36000061035156","33.36000061035156","","1997-10-21T00:00:00Z","","0" +"NM-13899","11.5600004196167","11.5600004196167","","1959-10-14T00:00:00Z","","0" +"NM-27734","33.83000183105469","33.83000183105469","","1952-01-26T00:00:00Z","","0" +"NM-21939","6.78000020980835","6.78000020980835","","1957-01-24T00:00:00Z","","0" +"NM-05287","53.68000030517578","53.68000030517578","","1939-01-15T00:00:00Z","","0" +"NM-03392","162","162","","2008-08-26T00:00:00Z","","0" +"NM-04479","74.95999908447266","74.95999908447266","P","1948-09-24T00:00:00Z","","0" +"NM-18680","42.310001373291016","42.310001373291016","","1986-10-16T00:00:00Z","","0" +"AR-0077","4.429999828338623","3.7299997806549072","","2016-06-02T00:00:00Z","","0.699999988079071" +"NM-17989","17.520000457763672","17.520000457763672","","1958-06-02T00:00:00Z","","0" +"NM-23213","80.98999786376953","80.98999786376953","","1988-04-13T00:00:00Z","","0" +"NM-00253","22.350000381469727","22.350000381469727","","1967-12-01T00:00:00Z","","0" +"NM-00844","71.16000366210938","71.16000366210938","","2015-01-15T00:00:00Z","","0" +"NM-09406","310.19000244140625","310.19000244140625","","1976-04-05T00:00:00Z","","0" +"NM-01762","49.630001068115234","49.630001068115234","","1982-03-04T00:00:00Z","","0" +"NM-28256","288.3900146484375","288.3900146484375","","2020-08-05T00:00:00Z","","0" +"NM-05607","164.67999267578125","164.67999267578125","","2002-02-13T00:00:00Z","","0" +"BC-0244","219.24000549316406","219.24000549316406","","2017-10-13T00:00:00Z","","0" +"EB-482","240","240","Z","1992-06-30T00:00:00Z","","0" +"WL-0232","72.4000015258789","70.6500015258789","","2021-04-01T00:00:00Z","0001-01-01T11:45:00Z","1.75" +"NM-03220","23.25","23.25","","1949-02-15T00:00:00Z","","0" +"NM-01035","60.470001220703125","60.470001220703125","T","2009-08-24T00:00:00Z","","0" +"NM-00063","173.44000244140625","173.44000244140625","T","1968-03-28T00:00:00Z","","0" +"NM-08052","","","O","2007-02-08T00:00:00Z","","0" +"BW-0123","182.16000366210938","182.16000366210938","","1956-08-15T00:00:00Z","","0" +"NM-05762","53.65999984741211","53.65999984741211","","1955-05-16T00:00:00Z","","0" +"UC-0134","7.599999904632568","7.599999904632568","","2000-02-25T00:00:00Z","","0" +"NM-02820","25.84000015258789","25.84000015258789","","1984-02-08T00:00:00Z","","0" +"NM-01490","223.80999755859375","223.80999755859375","","2009-08-04T00:00:00Z","","0" +"NM-08842","29.15999984741211","29.15999984741211","","1945-05-25T00:00:00Z","","0" +"SO-0244","4.940000057220459","4.369999885559082","","2020-03-06T00:00:00Z","0001-01-01T15:15:00Z","0.5699999928474426" +"NM-11397","77.04000091552734","77.04000091552734","","1987-01-07T00:00:00Z","","0" +"NM-02209","108","108","","1959-09-01T00:00:00Z","","0" +"NM-07275","10.970000267028809","10.970000267028809","","1953-07-14T00:00:00Z","","0" +"NM-04094","116.33000183105469","116.33000183105469","","1981-01-05T00:00:00Z","","0" +"NM-17034","24.829999923706055","24.829999923706055","","1931-12-11T00:00:00Z","","0" +"NM-05064","16","16","","1965-05-13T00:00:00Z","","0" +"NM-02484","34.27000045776367","34.27000045776367","","1994-10-20T00:00:00Z","","0" +"NM-00927","79.52999877929688","79.52999877929688","","1962-01-15T00:00:00Z","","0" +"NM-02029","8.399999618530273","8.399999618530273","","1995-10-15T00:00:00Z","","0" +"NM-12751","130.3000030517578","130.3000030517578","","1955-09-27T00:00:00Z","","0" +"NM-13394","81.69000244140625","81.69000244140625","","1945-01-15T00:00:00Z","","0" +"NM-12901","53.130001068115234","53.130001068115234","","1978-07-25T00:00:00Z","","0" +"NM-19322","372.3500061035156","372.3500061035156","","1987-02-12T00:00:00Z","","0" +"BC-0039","298.3500061035156","298.3500061035156","","2013-06-13T00:00:00Z","","0" +"NM-18589","375.9599914550781","375.9599914550781","","2013-07-24T00:00:00Z","","0" +"NM-24711","259.2900085449219","259.2900085449219","","1961-06-01T00:00:00Z","","0" +"BC-0151","115.31999969482422","115.31999969482422","","2014-03-04T00:00:00Z","","0" +"NM-19509","337.739990234375","337.739990234375","","1958-01-23T00:00:00Z","","0" +"NM-01970","127.91999816894531","127.91999816894531","","1983-01-04T00:00:00Z","","0" +"NM-09458","83.4000015258789","83.4000015258789","","1965-07-13T00:00:00Z","","0" +"NM-11195","80.5999984741211","80.5999984741211","P","1961-02-08T00:00:00Z","","0" +"NM-01971","6.099999904632568","6.099999904632568","","1989-08-15T00:00:00Z","","0" +"NM-06596","59.79999923706055","59.79999923706055","","1947-05-20T00:00:00Z","","0" +"NM-25026","396","396","","1979-12-31T00:00:00Z","","0" +"NM-02173","101.12000274658203","101.12000274658203","","1977-01-17T00:00:00Z","","0" +"NM-02282","398.5899963378906","398.5899963378906","","1991-11-21T00:00:00Z","","0" +"NM-10756","44.06999969482422","44.06999969482422","","1935-10-17T00:00:00Z","","0" +"NM-04744","164.5399932861328","164.5399932861328","","1976-01-09T00:00:00Z","","0" +"NM-01490","210.67999267578125","210.67999267578125","","2016-02-24T00:00:00Z","","0" +"NM-08869","68.48999786376953","68.48999786376953","S","1962-08-21T00:00:00Z","","0" +"SM-0074","156.39999389648438","155.9099884033203","","2007-08-22T00:00:00Z","","0.49000000953674316" +"NM-08887","68.3499984741211","68.3499984741211","","1963-01-20T00:00:00Z","","0" +"NM-08524","10.300000190734863","10.300000190734863","","1969-09-15T00:00:00Z","","0" +"EB-415","158.14999389648438","158.14999389648438","","2006-05-16T00:00:00Z","","0" +"DE-0108","39.959999084472656","39.959999084472656","","2009-11-23T00:00:00Z","","0" +"NM-00213","146.32000732421875","146.32000732421875","Z","1997-11-19T00:00:00Z","","0" +"NM-13223","68.69000244140625","68.69000244140625","","1941-03-05T00:00:00Z","","0" +"NM-13562","4.730000019073486","4.730000019073486","","1958-08-25T00:00:00Z","","0" +"NM-13594","12.779999732971191","12.779999732971191","","1959-12-03T00:00:00Z","","0" +"BC-0315","16.56999969482422","16.56999969482422","","2019-08-01T00:00:00Z","","0" +"NM-01024","411.94000244140625","411.94000244140625","","2005-04-28T00:00:00Z","","0" +"EB-440","144.8300018310547","143.8300018310547","","2004-09-01T00:00:00Z","","1" +"NM-00088","85.5","85.5","","2000-01-12T00:00:00Z","","0" +"NM-02727","33.02000045776367","33.02000045776367","","1963-01-21T00:00:00Z","","0" +"NM-01284","147.33999633789062","147.33999633789062","","1956-10-01T00:00:00Z","","0" +"NM-01841","253.11000061035156","253.11000061035156","","1978-12-20T00:00:00Z","","0" +"NM-17716","2.9200000762939453","2.9200000762939453","","1946-04-03T00:00:00Z","","0" +"DE-0177","46.849998474121094","46.849998474121094","","2008-12-10T00:00:00Z","","0" +"NM-21798","11.050000190734863","11.050000190734863","X","1984-12-10T00:00:00Z","","0" +"SO-0207","27.399999618530273","26.850000381469727","","2021-07-12T00:00:00Z","0001-01-01T13:45:00Z","0.550000011920929" +"NM-05292","42.7400016784668","42.7400016784668","","1941-09-03T00:00:00Z","","0" +"NM-00645","31.940000534057617","31.940000534057617","","2007-09-27T00:00:00Z","","0" +"NM-12711","33.720001220703125","33.720001220703125","","1935-06-14T00:00:00Z","","0" +"EB-095","232.5","232.5","","1991-05-16T00:00:00Z","","0" +"AR-0025","32.18000030517578","30.479999542236328","","2016-01-18T00:00:00Z","","1.7000000476837158" +"NM-21312","86.58999633789062","86.58999633789062","","2007-06-19T00:00:00Z","","0" +"NM-28250","111.37000274658203","111.37000274658203","","1974-08-05T00:00:00Z","","0" +"NM-09869","114.87000274658203","114.87000274658203","","1969-01-09T00:00:00Z","","0" +"NM-12911","95.1500015258789","95.1500015258789","P","1961-01-09T00:00:00Z","","0" +"NM-12801","20.780000686645508","20.780000686645508","","1956-01-13T00:00:00Z","","0" +"SO-0184","8.529999732971191","6.609999656677246","","2019-10-30T00:00:00Z","0001-01-01T13:56:00Z","1.9199999570846558" +"NM-01885","24.530000686645508","24.530000686645508","","2003-05-20T00:00:00Z","","0" +"EB-298","129.6699981689453","129.6699981689453","","2005-07-19T00:00:00Z","","0" +"NM-23089","32.099998474121094","32.099998474121094","","1960-10-24T00:00:00Z","","0" +"NM-00288","77.38999938964844","77.38999938964844","","2014-12-16T00:00:00Z","","0" +"NM-02772","110.41000366210938","110.41000366210938","","2003-09-15T00:00:00Z","","0" +"NM-10998","-54.130001068115234","-54.130001068115234","","1910-06-14T00:00:00Z","","0" +"NM-11294","66.02999877929688","66.02999877929688","","1958-01-29T00:00:00Z","","0" +"NM-00366","96.5999984741211","96.5999984741211","","1984-01-05T00:00:00Z","","0" +"NM-28257","55.2400016784668","55.2400016784668","","1953-05-25T00:00:00Z","","0" +"NM-02196","34.939998626708984","34.939998626708984","","2016-01-19T00:00:00Z","","0" +"NM-05793","36.790000915527344","36.790000915527344","","1934-04-29T00:00:00Z","","0" +"NM-02222","86.5999984741211","86.5999984741211","","1956-01-09T00:00:00Z","","0" +"NM-12395","70.7699966430664","70.7699966430664","","1986-01-14T00:00:00Z","","0" +"NM-03387","39.40999984741211","39.40999984741211","","1992-05-07T00:00:00Z","","0" +"NM-02669","65.9000015258789","65.9000015258789","Z","2000-08-10T00:00:00Z","","0" +"WL-0088","87.91666412353516","85.31666564941406","","2004-09-01T00:00:00Z","","2.5999999046325684" +"NM-04188","44.08000183105469","44.08000183105469","R","1959-03-09T00:00:00Z","","0" +"NM-01780","163.25","163.25","","1969-01-15T00:00:00Z","","0" +"NM-26751","196.05999755859375","196.05999755859375","","1955-11-08T00:00:00Z","","0" +"NM-01284","125.44999694824219","125.44999694824219","","1947-10-02T00:00:00Z","","0" +"NM-03211","187.77000427246094","187.77000427246094","R","1993-12-30T00:00:00Z","","0" +"NM-28258","132.35000610351562","132.35000610351562","","2016-03-05T00:00:00Z","","0" +"NM-28259","100.9000015258789","100.9000015258789","","1982-12-05T00:00:00Z","","0" +"EB-122","480.3999938964844","480.3999938964844","","2001-05-31T00:00:00Z","","0" +"BC-0050","","288.6000061035156","","2021-03-07T00:00:00Z","","1.899999976158142" +"NM-28250","105.91000366210938","105.91000366210938","","1982-10-25T00:00:00Z","","0" +"NM-00185","13.100000381469727","13.100000381469727","","1958-05-15T00:00:00Z","","0" +"EB-288","104.33000183105469","104.33000183105469","","1974-07-18T00:00:00Z","","0" +"NM-01565","-266.3800048828125","-266.3800048828125","","1988-09-14T00:00:00Z","","0" +"NM-01971","8.300000190734863","8.300000190734863","","1998-02-15T00:00:00Z","","0" +"NM-02196","12.789999961853027","12.789999961853027","","2001-11-21T00:00:00Z","","0" +"NM-21212","74.51000213623047","74.51000213623047","","1975-02-12T00:00:00Z","","0" +"NM-21879","2.8499999046325684","2.8499999046325684","Z","2009-06-18T00:00:00Z","","0" +"NM-03218","43.2400016784668","43.2400016784668","","1962-12-05T00:00:00Z","","0" +"NM-18600","244.75","244.75","","1955-05-26T00:00:00Z","","0" +"NM-01231","54.75","54.75","","1988-04-12T00:00:00Z","","0" +"NM-15187","503.5899963378906","503.5899963378906","","1964-01-06T00:00:00Z","","0" +"NM-23391","265.69000244140625","265.69000244140625","","1951-06-20T00:00:00Z","","0" +"NM-02510","89.94999694824219","89.94999694824219","","1991-07-17T00:00:00Z","","0" +"NM-01894","43.59000015258789","43.59000015258789","","2005-04-20T00:00:00Z","","0" +"NM-26242","57.119998931884766","57.119998931884766","","1989-10-27T00:00:00Z","","0" +"QY-0359","20","20","","1953-01-01T00:00:00Z","","0" +"NM-07137","86.77999877929688","86.77999877929688","","2000-07-13T00:00:00Z","","0" +"NM-03387","39.470001220703125","39.470001220703125","","1992-10-29T00:00:00Z","","0" +"AB-0050","554.3900146484375","554.3900146484375","","1991-01-08T00:00:00Z","","" +"NM-06341","136.7899932861328","136.7899932861328","","1943-07-22T00:00:00Z","","0" +"NM-28259","123.45999908447266","123.45999908447266","","1999-10-05T00:00:00Z","","0" +"DE-0341","27.799999237060547","25.009998321533203","","2015-12-08T00:00:00Z","","2.7899999618530273" +"NM-01915","141.05999755859375","141.05999755859375","","1994-01-12T00:00:00Z","","0" +"NM-11981","84.22000122070312","84.22000122070312","","1966-02-16T00:00:00Z","","0" +"NM-02209","104","104","","1959-11-01T00:00:00Z","","0" +"SO-0170","5.690000057220459","5.360000133514404","","2021-02-13T00:00:00Z","0001-01-01T16:15:00Z","0.33000001311302185" +"NM-02261","74","74","","1981-03-01T00:00:00Z","","0" +"NM-01142","251.8000030517578","251.8000030517578","","1967-02-07T00:00:00Z","","0" +"NM-00995","332.3500061035156","332.3500061035156","S","2010-02-18T00:00:00Z","","0" +"NM-28257","72.36000061035156","72.36000061035156","","1980-04-25T00:00:00Z","","0" +"NM-03378","17.850000381469727","17.850000381469727","","1958-12-12T00:00:00Z","","0" +"NM-16514","16.959999084472656","16.959999084472656","","1951-09-25T00:00:00Z","","0" +"NM-03499","59.45000076293945","59.45000076293945","R","1982-02-06T00:00:00Z","","0" +"AB-0113","214.83999633789062","214.83999633789062","","2011-01-05T00:00:00Z","","" +"NM-00366","97.38999938964844","97.38999938964844","","1970-12-01T00:00:00Z","","0" +"NM-23149","72.7300033569336","72.7300033569336","","1949-08-18T00:00:00Z","","0" +"EB-347","57.83000183105469","56.730003356933594","R","2004-07-14T00:00:00Z","","1.100000023841858" +"NM-02109","30.290000915527344","30.290000915527344","","1955-05-21T00:00:00Z","","0" +"NM-03339","9.800000190734863","9.800000190734863","","1992-09-29T00:00:00Z","","0" +"NM-19784","70.33999633789062","70.33999633789062","","1955-11-15T00:00:00Z","","0" +"NM-28259","203.63999938964844","203.63999938964844","","1966-08-05T00:00:00Z","","0" +"NM-02101","7","7","","1973-08-15T00:00:00Z","","0" +"NM-11701","26.610000610351562","26.610000610351562","","1963-09-05T00:00:00Z","","0" +"NM-28258","171.85000610351562","171.85000610351562","","1983-05-05T00:00:00Z","","0" +"NM-24130","15.109999656677246","15.109999656677246","","1985-09-09T00:00:00Z","","0" +"NM-00564","73.9800033569336","73.9800033569336","","1974-01-07T00:00:00Z","","0" +"NM-02227","118.11000061035156","118.11000061035156","","1971-01-20T00:00:00Z","","0" +"NM-10913","7.28000020980835","7.28000020980835","","1979-01-30T00:00:00Z","","0" +"NM-24307","318.3999938964844","318.3999938964844","","1962-09-12T00:00:00Z","","0" +"NM-28020","465.2799987792969","465.2799987792969","S","2015-05-06T00:00:00Z","","0" +"NM-14672","101.44999694824219","101.44999694824219","","1955-01-12T00:00:00Z","","0" +"NM-02976","101.4800033569336","101.4800033569336","","1992-01-07T00:00:00Z","","0" +"NM-13388","-13.710000038146973","-13.710000038146973","","1907-09-19T00:00:00Z","","0" +"NM-28251","89.98999786376953","89.98999786376953","","1979-06-05T00:00:00Z","","0" +"NM-07530","25.829999923706055","25.829999923706055","","1991-01-29T00:00:00Z","","0" +"NM-00947","291.1400146484375","291.1400146484375","V","2000-02-08T00:00:00Z","","0" +"NM-22670","228.5","228.5","","1962-07-05T00:00:00Z","","0" +"NM-21629","453.95001220703125","453.95001220703125","","1992-05-08T00:00:00Z","","0" +"NM-03137","34.79999923706055","34.79999923706055","","1987-03-19T00:00:00Z","","0" +"AB-0069","149.9499969482422","149.9499969482422","","2002-01-22T00:00:00Z","","" +"NM-28014","498.8900146484375","498.8900146484375","S","2015-05-18T00:00:00Z","","0" +"NM-02396","4.699999809265137","4.699999809265137","","1997-08-15T00:00:00Z","","0" +"DE-0078","86.2699966430664","86.2699966430664","","2007-12-05T00:00:00Z","","0" +"NM-13311","30.030000686645508","30.030000686645508","","1972-01-07T00:00:00Z","","0" +"EB-012","149.75","149.75","","1973-05-03T00:00:00Z","","0" +"NM-00366","83.45999908447266","83.45999908447266","","1970-02-01T00:00:00Z","","0" +"NM-07288","81.97000122070312","81.97000122070312","","1996-02-02T00:00:00Z","","0" +"EB-259","142.69000244140625","142.69000244140625","","1983-01-10T00:00:00Z","","0" +"NM-28254","114.33999633789062","114.33999633789062","","1977-05-05T00:00:00Z","","0" +"NM-10970","-66.83999633789062","-66.83999633789062","","1911-11-28T00:00:00Z","","0" +"NM-02688","322.239990234375","322.239990234375","","1997-02-28T00:00:00Z","","0" +"NM-04390","237.25","237.25","P","2008-02-15T00:00:00Z","","0" +"NM-01501","150.83999633789062","150.83999633789062","R","1989-04-26T00:00:00Z","","0" +"SB-0316","85.5999984741211","85.5999984741211","","2020-02-14T00:00:00Z","","0" +"NM-08048","384.79998779296875","384.79998779296875","","1959-09-28T00:00:00Z","","0" +"NM-28254","91.0999984741211","91.0999984741211","","1980-04-15T00:00:00Z","","0" +"NM-06636","29.520000457763672","29.520000457763672","","1991-05-03T00:00:00Z","","0" +"NM-03244","43.09000015258789","43.09000015258789","","1960-09-26T00:00:00Z","","0" +"NM-01926","6.099999904632568","6.099999904632568","","1986-12-15T00:00:00Z","","0" +"NM-11372","0.09000000357627869","0.09000000357627869","","1939-03-28T00:00:00Z","","0" +"NM-14316","35","35","","1937-08-05T00:00:00Z","","0" +"NM-01853","229.41000366210938","229.41000366210938","","1982-01-11T00:00:00Z","","0" +"EB-321","132.5","132","","2012-02-15T00:00:00Z","","0.5" +"NM-01886","69.37999725341797","69.37999725341797","","2009-01-26T00:00:00Z","","0" +"NM-28021","511.79998779296875","511.79998779296875","S","2015-04-25T00:00:00Z","","0" +"NM-03353","51.75","51.75","Z","1990-04-04T00:00:00Z","","0" +"NM-21541","357.2900085449219","357.2900085449219","","1992-10-14T00:00:00Z","","0" +"NM-28251","93.43000030517578","93.43000030517578","","1979-10-15T00:00:00Z","","0" +"SB-0299","148.67999267578125","148.67999267578125","","2012-07-25T00:00:00Z","","0" +"EB-483","42","42","","1987-10-31T00:00:00Z","","0" +"SB-0275","205.52999877929688","205.52999877929688","","1970-01-06T00:00:00Z","","0" +"DE-0079","84.66000366210938","84.66000366210938","","2006-05-08T00:00:00Z","","0" +"NM-14027","31.950000762939453","31.950000762939453","","1948-07-13T00:00:00Z","","0" +"NM-00185","14.300000190734863","14.300000190734863","","1960-04-15T00:00:00Z","","0" +"NM-00922","33.22999954223633","33.22999954223633","","1977-02-08T00:00:00Z","","0" +"NM-07815","24.399999618530273","24.399999618530273","","1953-07-21T00:00:00Z","","0" +"NM-03420","33.869998931884766","33.869998931884766","Z","1991-02-27T00:00:00Z","","0" +"NM-07554","70.83000183105469","70.83000183105469","","1994-03-03T00:00:00Z","","0" +"NM-22596","176.42999267578125","176.42999267578125","","1953-04-09T00:00:00Z","","0" +"NM-28251","90.41999816894531","90.41999816894531","","1979-05-15T00:00:00Z","","0" +"SB-0299","111.1500015258789","111.1500015258789","","1993-03-05T00:00:00Z","","0" +"NM-28255","33.209999084472656","33.209999084472656","","1981-03-05T00:00:00Z","","0" +"NM-00521","66.2699966430664","66.2699966430664","","1976-01-14T00:00:00Z","","0" +"NM-23368","118.75","118.75","","1949-06-10T00:00:00Z","","0" +"EB-261","6.670000076293945","4.869999885559082","","2004-07-29T00:00:00Z","","1.7999999523162842" +"NM-16731","35.869998931884766","35.869998931884766","","1939-01-17T00:00:00Z","","0" +"DE-0261","89.30999755859375","89.30999755859375","","2017-09-19T00:00:00Z","","0" +"NM-02831","15.649999618530273","15.649999618530273","","1946-05-01T00:00:00Z","","0" +"NM-07343","56.779998779296875","56.779998779296875","","1973-01-23T00:00:00Z","","0" +"NM-23205","59.5","59.5","","2006-11-29T00:00:00Z","","0" +"NM-28251","73.02999877929688","73.02999877929688","","2004-07-15T00:00:00Z","","0" +"NM-23129","6.440000057220459","6.440000057220459","Z","2009-08-06T00:00:00Z","","0" +"NM-10682","62.880001068115234","62.880001068115234","","1956-01-11T00:00:00Z","","0" +"NM-00491","75.91000366210938","75.91000366210938","","2014-12-18T00:00:00Z","","0" +"NM-01534","50.33000183105469","50.33000183105469","","1970-07-10T00:00:00Z","","0" +"NM-08189","9.800000190734863","9.800000190734863","","1970-01-15T00:00:00Z","","0" +"NM-28256","247.92999267578125","247.92999267578125","","1976-04-15T00:00:00Z","","0" +"NM-00896","41.91999816894531","41.91999816894531","","1985-01-31T00:00:00Z","","0" +"NM-13036","7.099999904632568","7.099999904632568","","1981-12-16T00:00:00Z","","0" +"NM-02254","328.989990234375","328.989990234375","","2005-03-02T00:00:00Z","","0" +"NM-27371","34.79999923706055","34.79999923706055","","1950-01-11T00:00:00Z","","0" +"NM-02586","273.010009765625","273.010009765625","","1971-10-01T00:00:00Z","","0" +"NM-07685","37.25","37.25","P","1934-07-19T00:00:00Z","","0" +"NM-02622","171","171","","1978-10-01T00:00:00Z","","0" +"NM-16774","25.479999542236328","25.479999542236328","","1932-04-29T00:00:00Z","","0" +"NM-21760","67.05999755859375","67.05999755859375","","1975-07-29T00:00:00Z","","0" +"SB-0431","40.7599983215332","40.7599983215332","","1962-02-12T00:00:00Z","","0" +"SO-0190","8.949999809265137","8.269999504089355","","2021-03-13T00:00:00Z","0001-01-01T15:17:00Z","0.6800000071525574" +"NM-28259","47.95000076293945","47.95000076293945","","1950-09-25T00:00:00Z","","0" +"NM-04361","53.84000015258789","53.84000015258789","","1976-01-03T00:00:00Z","","0" +"AB-0067","147.08999633789062","147.08999633789062","","1997-09-18T00:00:00Z","","" +"NM-22529","253.67999267578125","253.67999267578125","","1957-09-20T00:00:00Z","","0" +"NM-00662","31.020000457763672","31.020000457763672","","1992-01-02T00:00:00Z","","0" +"NM-19955","20.420000076293945","20.420000076293945","","1946-12-02T00:00:00Z","","0" +"NM-16967","28.059999465942383","28.059999465942383","","1982-03-24T00:00:00Z","","0" +"NM-09881","187.9499969482422","187.9499969482422","","1976-02-17T00:00:00Z","","0" +"NM-00253","22.729999542236328","22.729999542236328","Z","2006-08-07T00:00:00Z","","0" +"NM-03435","77.4000015258789","77.4000015258789","","1950-02-07T00:00:00Z","","0" +"NM-26425","7.809999942779541","7.809999942779541","","1988-03-18T00:00:00Z","","0" +"NM-02256","5.599999904632568","5.599999904632568","","1983-04-15T00:00:00Z","","0" +"NM-13027","250","250","","1950-01-01T00:00:00Z","","0" +"NM-03972","261.19000244140625","261.19000244140625","P","1959-01-08T00:00:00Z","","0" +"NM-01897","13.430000305175781","13.430000305175781","","2000-07-20T00:00:00Z","","0" +"NM-01841","257.55999755859375","257.55999755859375","","1981-12-21T00:00:00Z","","0" +"NM-12597","130.35000610351562","130.35000610351562","P","1963-08-13T00:00:00Z","","0" +"NM-12699","25.09000015258789","25.09000015258789","","1986-02-13T00:00:00Z","","0" +"WL-0215","112.86000061035156","110.80999755859375","","2021-01-21T00:00:00Z","0001-01-01T13:22:00Z","2.049999952316284" +"NM-28259","145.10000610351562","145.10000610351562","","1957-07-25T00:00:00Z","","0" +"AB-0069","147.83999633789062","147.83999633789062","","1997-01-10T00:00:00Z","","" +"NM-28254","156.36000061035156","156.36000061035156","","1966-08-05T00:00:00Z","","0" +"NM-02625","52.150001525878906","52.150001525878906","","1989-01-24T00:00:00Z","","0" +"NM-16943","10.260000228881836","10.260000228881836","","1942-01-29T00:00:00Z","","0" +"NM-27506","85.79000091552734","85.79000091552734","","1961-06-29T00:00:00Z","","0" +"EB-261","5.550000190734863","3.750000238418579","","2013-10-24T00:00:00Z","","1.7999999523162842" +"NM-20180","6.650000095367432","6.650000095367432","","1995-02-08T00:00:00Z","","0" +"NM-20372","14.15999984741211","14.15999984741211","R","1946-09-04T00:00:00Z","","0" +"NM-03720","59.380001068115234","59.380001068115234","","1956-03-12T00:00:00Z","","0" +"NM-01204","355.1400146484375","355.1400146484375","S","2005-04-05T00:00:00Z","","0" +"NM-21621","272.7900085449219","272.7900085449219","","2004-12-17T00:00:00Z","","0" +"NM-24297","5.989999771118164","5.989999771118164","","1975-04-25T00:00:00Z","","0" +"NM-01887","49.380001068115234","49.380001068115234","","2002-07-25T00:00:00Z","","0" +"NM-00202","52.150001525878906","52.150001525878906","S","1956-05-02T00:00:00Z","","0" +"NM-02099","160.94000244140625","160.94000244140625","","1987-01-30T00:00:00Z","","0" +"NM-13018","12.779999732971191","12.779999732971191","","1957-09-23T00:00:00Z","","0" +"WL-0134","279.05999755859375","276.0799865722656","","2021-09-30T00:00:00Z","0001-01-01T13:00:00Z","2.9800000190734863" +"NM-03299","46.470001220703125","46.470001220703125","","1941-07-11T00:00:00Z","","0" +"NM-20385","103.19999694824219","103.19999694824219","","1959-01-22T00:00:00Z","","0" +"NM-16214","68.62000274658203","68.62000274658203","","1980-06-24T00:00:00Z","","0" +"NM-21306","10.850000381469727","10.850000381469727","","1955-05-24T00:00:00Z","","0" +"WL-0088","84.70833587646484","82.10833740234375","","2003-10-17T00:00:00Z","","2.5999999046325684" +"DE-0121","","","D","2014-07-28T00:00:00Z","","0" +"NM-10069","9.100000381469727","9.100000381469727","","1970-06-19T00:00:00Z","","0" +"DA-0070","133","133","","1967-12-22T00:00:00Z","","0" +"NM-01985","6.800000190734863","6.800000190734863","","1985-07-15T00:00:00Z","","0" +"NM-21004","26.059999465942383","26.059999465942383","","1942-01-22T00:00:00Z","","0" +"NM-01761","50.189998626708984","50.189998626708984","","1998-01-16T00:00:00Z","","0" +"NM-05641","99.6500015258789","99.6500015258789","S","1947-09-08T00:00:00Z","","0" +"NM-01893","17.829999923706055","17.829999923706055","","2003-06-23T00:00:00Z","","0" +"NM-21547","4.96999979019165","4.96999979019165","Z","2006-05-08T00:00:00Z","","0" +"NM-02239","33.79999923706055","33.79999923706055","","1965-01-06T00:00:00Z","","0" +"NM-10027","173.74000549316406","173.74000549316406","","1986-01-24T00:00:00Z","","0" +"NM-12911","85.41999816894531","85.41999816894531","","1953-05-15T00:00:00Z","","0" +"NM-05714","177.89999389648438","177.89999389648438","P","1959-03-18T00:00:00Z","","0" +"NM-28253","17.34000015258789","17.34000015258789","","2014-01-24T00:00:00Z","","0" +"NM-02101","5.599999904632568","5.599999904632568","","1976-06-15T00:00:00Z","","0" +"NM-21244","351.4700012207031","351.4700012207031","","1992-09-14T00:00:00Z","","0" +"NM-16540","11.010000228881836","11.010000228881836","","1941-01-17T00:00:00Z","","0" +"NM-03431","463.0799865722656","463.0799865722656","","1989-08-03T00:00:00Z","","0" +"NM-28019","481.010009765625","481.010009765625","S","2015-04-25T00:00:00Z","","0" +"NM-06262","405.54998779296875","405.54998779296875","","1980-10-01T00:00:00Z","","0" +"NM-20165","48.650001525878906","48.650001525878906","","1943-11-23T00:00:00Z","","0" +"NM-22811","9.289999961853027","9.289999961853027","","1988-03-04T00:00:00Z","","0" +"NM-02821","27.34000015258789","27.34000015258789","","1966-02-10T00:00:00Z","","0" +"NM-09357","47.15999984741211","47.15999984741211","","1986-01-21T00:00:00Z","","0" +"NM-01853","236.42999267578125","236.42999267578125","","1992-02-18T00:00:00Z","","0" +"NM-03388","53.47999954223633","53.47999954223633","","2016-08-23T00:00:00Z","","0" +"NM-01884","11.279999732971191","11.279999732971191","","2005-03-23T00:00:00Z","","0" +"NM-01947","7.699999809265137","7.699999809265137","","1955-12-15T00:00:00Z","","0" +"NM-02515","40.38999938964844","40.38999938964844","","1991-03-08T00:00:00Z","","0" +"NM-20030","55.709999084472656","55.709999084472656","","1950-02-09T00:00:00Z","","0" +"NM-03212","40.79999923706055","40.79999923706055","","1941-07-12T00:00:00Z","","0" +"NM-13009","31.190000534057617","31.190000534057617","","1990-12-18T00:00:00Z","","0" +"NM-28255","201.2100067138672","201.2100067138672","","2020-07-24T00:00:00Z","","0" +"NM-17670","76.76000213623047","76.76000213623047","","1984-01-19T00:00:00Z","","0" +"NM-10566","64.36000061035156","64.36000061035156","","1957-12-01T00:00:00Z","","0" +"SM-0040","334.79998779296875","334.04998779296875","","2007-02-28T00:00:00Z","","0.75" +"NM-01985","15.5","15.5","","1954-02-15T00:00:00Z","","0" +"NM-18790","322.8399963378906","322.8399963378906","","1977-01-28T00:00:00Z","","0" +"NM-01955","3.4000000953674316","3.4000000953674316","","2000-09-15T00:00:00Z","","0" +"NM-04986","76.45999908447266","76.45999908447266","","1976-01-07T00:00:00Z","","0" +"NM-02211","206.33999633789062","206.33999633789062","","1993-01-25T00:00:00Z","","0" +"WL-0086","92.79166412353516","91.03166198730469","","2004-09-01T00:00:00Z","","1.7599999904632568" +"NM-21561","5.599999904632568","5.599999904632568","Z","2003-11-14T00:00:00Z","","0" +"NM-00846","252","252","","1995-02-07T00:00:00Z","","0" +"NM-02101","10.100000381469727","10.100000381469727","","1952-11-15T00:00:00Z","","0" +"AB-0179","188.36000061035156","188.36000061035156","","2007-08-01T00:00:00Z","","" +"NM-03400","9.220000267028809","9.220000267028809","","1992-02-05T00:00:00Z","","0" +"NM-28253","38.84000015258789","38.84000015258789","","1966-09-05T00:00:00Z","","0" +"NM-00188","34.72999954223633","34.72999954223633","R","2009-01-27T00:00:00Z","","0" +"NM-28250","105.9000015258789","105.9000015258789","","1976-04-15T00:00:00Z","","0" +"NM-25852","150.8699951171875","150.8699951171875","","1970-09-06T00:00:00Z","","0" +"NM-21526","309.19000244140625","309.19000244140625","","1992-10-14T00:00:00Z","","0" +"NM-05704","17.530000686645508","17.530000686645508","","1946-03-28T00:00:00Z","","0" +"NM-13984","-12.550000190734863","-12.550000190734863","","1905-10-10T00:00:00Z","","0" +"NM-11785","34.689998626708984","34.689998626708984","","1946-09-25T00:00:00Z","","0" +"AB-0183","354.6300048828125","354.6300048828125","","2007-10-11T00:00:00Z","","" +"NM-06523","157.9499969482422","157.9499969482422","","1972-05-22T00:00:00Z","","0" +"NM-22923","80.16000366210938","80.16000366210938","","1954-03-07T00:00:00Z","","0" +"NM-02530","104.38999938964844","104.38999938964844","","1984-02-06T00:00:00Z","","0" +"NM-08180","59.060001373291016","59.060001373291016","","1963-09-04T00:00:00Z","","0" +"NM-02783","208.3800048828125","208.3800048828125","","1989-01-10T00:00:00Z","","0" +"DE-0236","107.5999984741211","107.5999984741211","","1999-08-11T00:00:00Z","","0" +"NM-10374","51.380001068115234","51.380001068115234","","1971-02-16T00:00:00Z","","0" +"NM-05762","44.91999816894531","44.91999816894531","","1950-03-19T00:00:00Z","","0" +"NM-10562","31.450000762939453","31.450000762939453","","1952-01-14T00:00:00Z","","0" +"NM-01023","335.69000244140625","335.69000244140625","","2005-03-09T00:00:00Z","","0" +"NM-01841","257.3500061035156","257.3500061035156","","1980-05-20T00:00:00Z","","0" +"NM-01366","559.3499755859375","559.3499755859375","","1997-02-24T00:00:00Z","","0" +"NM-01875","133.1699981689453","133.1699981689453","","1951-01-17T00:00:00Z","","0" +"NM-00998","287.25","287.25","","1982-01-09T00:00:00Z","","0" +"NM-04159","19.1299991607666","19.1299991607666","","2016-02-12T00:00:00Z","","0" +"NM-14265","424.04998779296875","424.04998779296875","","1974-03-01T00:00:00Z","","0" +"NM-01986","6.300000190734863","6.300000190734863","","1982-06-15T00:00:00Z","","0" +"NM-00687","51.29999923706055","51.29999923706055","","1960-11-23T00:00:00Z","","0" +"NM-02339","11.350000381469727","11.350000381469727","","1960-07-20T00:00:00Z","","0" +"EB-170","118","115.30000305175781","","1992-12-31T00:00:00Z","","2.700000047683716" +"NM-02527","10","10","","1977-12-15T00:00:00Z","","0" +"WL-0187","447.3399963378906","446.91998291015625","","2021-02-10T00:00:00Z","0001-01-01T11:32:00Z","0.41999998688697815" +"NM-28251","66.93000030517578","66.93000030517578","","2002-05-15T00:00:00Z","","0" +"NM-16810","29.790000915527344","29.790000915527344","","1931-08-10T00:00:00Z","","0" +"NM-10661","60.0099983215332","60.0099983215332","","1959-01-17T00:00:00Z","","0" +"NM-19644","96","96","","1950-05-25T00:00:00Z","","0" +"NM-28256","122.38999938964844","122.38999938964844","","2008-11-14T00:00:00Z","","0" +"NM-10214","47.040000915527344","47.040000915527344","","1963-02-26T00:00:00Z","","0" +"NM-08189","10","10","","1958-02-15T00:00:00Z","","0" +"BC-0114","241.97000122070312","241.97000122070312","","2017-10-14T00:00:00Z","","0" +"EB-299","194.89999389648438","194.89999389648438","","2007-12-05T00:00:00Z","","0" +"NM-25995","300","300","","1938-10-26T00:00:00Z","","0" +"EB-263","3.569999933242798","3.569999933242798","","2005-08-23T00:00:00Z","","0" +"NM-12844","11.279999732971191","11.279999732971191","","1958-06-17T00:00:00Z","","0" +"NM-11265","-14.859999656677246","-14.859999656677246","","1911-10-24T00:00:00Z","","0" +"NM-21244","","","D","2005-06-28T00:00:00Z","","0" +"NM-05447","19.8700008392334","19.8700008392334","","1956-07-16T00:00:00Z","","0" +"NM-21522","291.6400146484375","291.6400146484375","","2005-08-31T00:00:00Z","","0" +"NM-09692","174.9499969482422","174.9499969482422","","1981-01-27T00:00:00Z","","0" +"DE-0236","108.43000030517578","108.43000030517578","","2006-12-12T00:00:00Z","","0" +"NM-12823","28.770000457763672","28.770000457763672","","1931-01-20T00:00:00Z","","0" +"NM-13252","14.710000038146973","14.710000038146973","","1986-02-27T00:00:00Z","","0" +"NM-08071","9.600000381469727","9.600000381469727","","1955-02-15T00:00:00Z","","0" +"NM-02209","116.0199966430664","116.0199966430664","","2005-11-30T00:00:00Z","","0" +"NM-05762","43.66999816894531","43.66999816894531","","1948-08-01T00:00:00Z","","0" +"NM-15990","48.63999938964844","48.63999938964844","","1970-02-13T00:00:00Z","","0" +"EB-192","28.90999984741211","28.209999084472656","","2003-04-16T00:00:00Z","","0.699999988079071" +"NM-00580","103.8499984741211","103.8499984741211","","2002-01-04T00:00:00Z","","0" +"NM-14802","101.88999938964844","101.88999938964844","","1972-12-26T00:00:00Z","","0" +"NM-02282","401","401","","1966-01-01T00:00:00Z","","0" +"NM-00822","41.68000030517578","41.68000030517578","","1985-02-05T00:00:00Z","","0" +"NM-18832","286.1499938964844","286.1499938964844","","1954-09-23T00:00:00Z","","0" +"NM-03985","34.66999816894531","34.66999816894531","","1954-07-26T00:00:00Z","","0" +"NM-02173","92.4000015258789","92.4000015258789","","2004-07-01T00:00:00Z","","0" +"NM-03353","56.83000183105469","56.83000183105469","","1993-12-06T00:00:00Z","","0" +"NM-16621","33.869998931884766","33.869998931884766","","1959-01-06T00:00:00Z","","0" +"SA-0233","279.8299865722656","278.2699890136719","","2022-02-23T00:00:00Z","0001-01-01T14:02:00Z","1.559999942779541" +"NM-28257","48.189998626708984","48.189998626708984","","2006-06-15T00:00:00Z","","0" +"NM-21544","371.8800048828125","371.8800048828125","","1992-07-09T00:00:00Z","","0" +"NM-02831","41.04999923706055","41.04999923706055","","2001-09-14T00:00:00Z","","0" +"NM-01931","324.70001220703125","324.70001220703125","","1958-02-28T00:00:00Z","","0" +"NM-27199","470.0899963378906","470.0899963378906","","2009-01-13T00:00:00Z","","0" +"NM-09372","51.810001373291016","51.810001373291016","","1971-02-09T00:00:00Z","","0" +"NM-26664","13.8100004196167","13.8100004196167","","2013-07-11T00:00:00Z","","0" +"SB-0299","103.3499984741211","103.3499984741211","","1969-01-30T00:00:00Z","","0" +"SB-0165","255.0800018310547","255.0800018310547","","1955-01-22T00:00:00Z","","0" +"NM-28254","72.43000030517578","72.43000030517578","","1956-10-15T00:00:00Z","","0" +"NM-02264","114.88999938964844","114.88999938964844","","1967-01-31T00:00:00Z","","0" +"NM-12455","-79.54000091552734","-79.54000091552734","","1911-02-02T00:00:00Z","","0" +"NM-08246","23.399999618530273","23.399999618530273","","1940-12-22T00:00:00Z","","0" +"SB-0299","135.4499969482422","135.4499969482422","","1976-05-10T00:00:00Z","","0" +"NM-28259","92.2699966430664","92.2699966430664","","1975-01-15T00:00:00Z","","0" +"NM-06711","58.790000915527344","58.790000915527344","","1981-03-17T00:00:00Z","","0" +"NM-20308","77.2699966430664","77.2699966430664","","1951-03-30T00:00:00Z","","0" +"DE-0242","110.12000274658203","110.12000274658203","","2005-02-15T00:00:00Z","","0" +"NM-03720","59.04999923706055","59.04999923706055","","1954-05-27T00:00:00Z","","0" +"NM-00355","7.599999904632568","7.599999904632568","","1994-02-17T00:00:00Z","","0" +"NM-01899","78.0199966430664","78.0199966430664","","2011-03-23T00:00:00Z","","0" +"NM-07141","82.94000244140625","82.94000244140625","","1998-10-22T00:00:00Z","","0" +"NM-03426","358.7300109863281","358.7300109863281","","1993-11-03T00:00:00Z","","0" +"NM-11231","47.18000030517578","47.18000030517578","","1945-01-10T00:00:00Z","","0" +"NM-03389","34.72999954223633","34.72999954223633","","2000-12-14T00:00:00Z","","0" +"NM-10439","54.0099983215332","54.0099983215332","","1955-01-21T00:00:00Z","","0" +"NM-28257","-24.940000534057617","-24.940000534057617","","1996-11-15T00:00:00Z","","0" +"NM-19108","332.6700134277344","332.6700134277344","","1982-02-17T00:00:00Z","","0" +"TB-0088","39.25","38.599998474121094","R","2009-12-14T00:00:00Z","","0.6499999761581421" +"NM-10338","-21.790000915527344","-21.790000915527344","","1906-04-10T00:00:00Z","","0" +"WL-0088","36.20833206176758","33.608333587646484","","1995-10-25T00:00:00Z","","2.5999999046325684" +"NM-03477","77.54000091552734","77.54000091552734","","1982-02-06T00:00:00Z","","0" +"NM-14192","38.900001525878906","38.900001525878906","","1955-07-05T00:00:00Z","","0" +"NM-02329","60.18000030517578","60.18000030517578","","2010-09-27T00:00:00Z","","0" +"NM-09155","-47.20000076293945","-47.20000076293945","","1913-01-16T00:00:00Z","","0" +"NM-05367","83.58000183105469","83.58000183105469","","1949-01-12T00:00:00Z","","0" +"EB-012","151.16000366210938","151.16000366210938","","1973-05-31T00:00:00Z","","0" +"NM-02197","11.729999542236328","11.729999542236328","","1994-06-22T00:00:00Z","","0" +"NM-03423","19.6200008392334","19.6200008392334","","1993-08-12T00:00:00Z","","0" +"NM-13688","-10.819999694824219","-10.819999694824219","","1912-01-24T00:00:00Z","","0" +"NM-22682","6.190000057220459","6.190000057220459","Z","2006-08-22T00:00:00Z","","0" +"NM-17716","0.9800000190734863","0.9800000190734863","","1944-03-23T00:00:00Z","","0" +"NM-17716","0.9599999785423279","0.9599999785423279","","1941-09-14T00:00:00Z","","0" +"NM-21272","4.429999828338623","4.429999828338623","Z","2008-10-27T00:00:00Z","","0" +"NM-05622","76.27999877929688","76.27999877929688","","1943-10-11T00:00:00Z","","0" +"NM-05784","51.38999938964844","51.38999938964844","","1933-02-26T00:00:00Z","","0" +"HS-072","2.549999952316284","1.5499999523162842","R","2013-02-19T00:00:00Z","","1" +"NM-02239","41.58000183105469","41.58000183105469","P","1983-08-01T00:00:00Z","","0" +"NM-04632","9.300000190734863","9.300000190734863","","1982-07-15T00:00:00Z","","0" +"NM-06478","151.83999633789062","151.83999633789062","","1976-02-02T00:00:00Z","","0" +"SB-0299","120.30000305175781","120.30000305175781","","1985-01-01T00:00:00Z","","0" +"BC-0284","","96.9000015258789","","2021-11-01T00:00:00Z","","0" +"SO-0139","7.289999961853027","6.460000038146973","","2021-08-21T00:00:00Z","0001-01-01T15:50:00Z","0.8299999833106995" +"NM-01894","84.58999633789062","84.58999633789062","","1997-10-03T00:00:00Z","","0" +"NM-28015","498.8299865722656","498.8299865722656","S","2015-06-03T00:00:00Z","","0" +"NM-02225","88.5199966430664","88.5199966430664","R","1954-11-13T00:00:00Z","","0" +"EB-479","145","145","","1991-03-31T00:00:00Z","","0" +"NM-16574","15.760000228881836","15.760000228881836","","1937-02-20T00:00:00Z","","0" +"NM-02622","148.7899932861328","148.7899932861328","","1953-09-01T00:00:00Z","","0" +"NM-17410","37.9900016784668","37.9900016784668","","1972-03-14T00:00:00Z","","0" +"NM-16640","0.44999998807907104","0.44999998807907104","","1941-11-26T00:00:00Z","","0" +"NM-21719","50.279998779296875","50.279998779296875","S","1987-01-28T00:00:00Z","","0" +"NM-13851","-13.710000038146973","-13.710000038146973","","1910-06-06T00:00:00Z","","0" +"EB-413","207.86000061035156","207.86000061035156","","2015-01-16T00:00:00Z","","0" +"NM-09785","130.42999267578125","130.42999267578125","","1954-01-12T00:00:00Z","","0" +"EB-024","48.5","45.900001525878906","","1993-10-01T00:00:00Z","","2.5999999046325684" +"NM-09081","10.199999809265137","10.199999809265137","","1938-01-01T00:00:00Z","","0" +"NM-28259","147.77999877929688","147.77999877929688","","1983-06-15T00:00:00Z","","0" +"NM-04628","445.1199951171875","445.1199951171875","","2016-02-18T00:00:00Z","","0" +"NM-13594","22.329999923706055","22.329999923706055","","1957-05-22T00:00:00Z","","0" +"SA-0003","240.9499969482422","239.8300018310547","","2010-02-10T00:00:00Z","","1.1200000047683716" +"MG-041","64.37999725341797","62.779998779296875","AA","2023-11-13T00:00:00Z","0001-01-01T11:11:00Z","1.600000023841858" +"NM-04323","93.75","93.75","","1948-11-22T00:00:00Z","","0" +"EB-483","689.9400024414062","689.9400024414062","P","2002-10-31T00:00:00Z","","0" +"NM-02813","180.64999389648438","180.64999389648438","","1991-08-19T00:00:00Z","","0" +"NM-24442","16.899999618530273","16.899999618530273","","1973-10-31T00:00:00Z","","0" +"NM-02556","73.0199966430664","73.0199966430664","","1992-06-30T00:00:00Z","","0" +"NM-00753","494.3900146484375","494.3900146484375","","2014-07-28T00:00:00Z","","0" +"NM-03386","39.90999984741211","39.90999984741211","","1993-06-29T00:00:00Z","","0" +"EB-276","190.66000366210938","190.66000366210938","","1973-09-06T00:00:00Z","","0" +"NM-02496","121.08000183105469","121.08000183105469","","1954-06-04T00:00:00Z","","0" +"DE-0112","39.630001068115234","39.630001068115234","","2004-01-19T00:00:00Z","","0" +"NM-13815","-18.329999923706055","-18.329999923706055","","1912-12-19T00:00:00Z","","0" +"BC-0044","","155.77000427246094","","2023-03-24T00:00:00Z","","1.7200000286102295" +"NM-28252","67.01000213623047","67.01000213623047","","1978-07-05T00:00:00Z","","0" +"NM-02836","25.34000015258789","25.34000015258789","","2010-01-12T00:00:00Z","","0" +"NM-28256","119.77999877929688","119.77999877929688","","1970-03-15T00:00:00Z","","0" +"WL-0091","48.04166793823242","45.27166748046875","","1986-11-05T00:00:00Z","","2.7699999809265137" +"UC-0118","110.4800033569336","110.4800033569336","","1981-01-27T00:00:00Z","","0" +"NM-11623","47.86000061035156","47.86000061035156","","1960-01-07T00:00:00Z","","0" +"NM-02825","9.5600004196167","9.5600004196167","","2008-01-24T00:00:00Z","","0" +"NM-00294","8.279999732971191","8.279999732971191","","1973-02-27T00:00:00Z","","0" +"AB-0109","37.310001373291016","37.310001373291016","","2010-08-13T00:00:00Z","","" +"EB-483","340","340","P","1994-01-31T00:00:00Z","","0" +"TC-323","157","157","","1955-08-23T00:00:00Z","","0" +"NM-28019","480.1000061035156","480.1000061035156","S","2015-04-15T00:00:00Z","","0" +"NM-03595","160.67999267578125","160.67999267578125","","2006-03-10T00:00:00Z","","0" +"NM-18459","82","82","","1963-12-05T00:00:00Z","","0" +"NM-05264","127.4000015258789","127.4000015258789","","1971-01-20T00:00:00Z","","0" +"NM-05474","49.90999984741211","49.90999984741211","","1933-06-17T00:00:00Z","","0" +"NM-02477","77.8499984741211","77.8499984741211","","1990-08-30T00:00:00Z","","0" +"NM-02033","73.66999816894531","73.66999816894531","","1996-02-21T00:00:00Z","","0" +"SA-0085","153.39999389648438","153.39999389648438","","1985-02-20T00:00:00Z","","0" +"EB-232","245.3000030517578","244.1999969482422","","2014-02-26T00:00:00Z","","1.100000023841858" +"NM-28252","36.369998931884766","36.369998931884766","","1958-04-25T00:00:00Z","","0" +"NM-28250","90.33000183105469","90.33000183105469","","2017-01-05T00:00:00Z","","0" +"NM-02527","12","12","","1966-01-01T00:00:00Z","","0" +"NM-01955","2.5999999046325684","2.5999999046325684","","1996-08-15T00:00:00Z","","0" +"NM-03332","10.979999542236328","10.979999542236328","Z","1997-06-17T00:00:00Z","","0" +"DE-0083","89.4000015258789","89.4000015258789","","1996-05-15T00:00:00Z","","0" +"NM-02017","6.599999904632568","6.599999904632568","","1997-11-15T00:00:00Z","","0" +"NM-01985","10.600000381469727","10.600000381469727","","1981-02-15T00:00:00Z","","0" +"NM-21272","3.5399999618530273","3.5399999618530273","Z","2008-07-08T00:00:00Z","","0" +"SO-0221","8.6899995803833","8.319999694824219","","2019-10-25T00:00:00Z","0001-01-01T15:53:00Z","0.3700000047683716" +"NM-02250","31.799999237060547","31.799999237060547","","1935-02-03T00:00:00Z","","0" +"NM-03277","95.31999969482422","95.31999969482422","","1950-02-09T00:00:00Z","","0" +"NM-02794","77.37000274658203","77.37000274658203","","1983-02-02T00:00:00Z","","0" +"NM-22091","23.709999084472656","23.709999084472656","","1968-01-15T00:00:00Z","","0" +"NM-28255","11.510000228881836","11.510000228881836","","2015-01-15T00:00:00Z","","0" +"NM-10635","28.860000610351562","28.860000610351562","","1961-09-25T00:00:00Z","","0" +"DE-0245","102.66999816894531","102.66999816894531","","2013-10-02T00:00:00Z","","0" +"NM-22120","4.429999828338623","4.429999828338623","Z","2009-02-19T00:00:00Z","","0" +"NM-17716","0.6600000262260437","0.6600000262260437","","1942-08-17T00:00:00Z","","0" +"EB-246","303.8999938964844","303.8999938964844","","2015-01-16T00:00:00Z","","0" +"BW-0270","65","65","","1950-01-01T00:00:00Z","","0" +"NM-03441","25.670000076293945","25.670000076293945","Z","1995-09-05T00:00:00Z","","0" +"NM-04925","31.719999313354492","31.719999313354492","","1951-07-30T00:00:00Z","","0" +"DE-0110","38.5","38.5","","2008-01-28T00:00:00Z","","0" +"NM-12896","-21.790000915527344","-21.790000915527344","","1909-09-22T00:00:00Z","","0" +"NM-15965","55.20000076293945","55.20000076293945","","1952-12-04T00:00:00Z","","0" +"NM-00915","303.739990234375","303.739990234375","","2008-03-14T00:00:00Z","","0" +"NM-03113","338.94000244140625","338.94000244140625","","1986-01-11T00:00:00Z","","0" +"NM-00634","62.099998474121094","62.099998474121094","","1990-01-04T00:00:00Z","","0" +"NM-21889","4.369999885559082","4.369999885559082","Z","2008-10-30T00:00:00Z","","0" +"NM-11335","188.17999267578125","188.17999267578125","","1969-01-14T00:00:00Z","","0" +"NM-27518","90.94999694824219","90.94999694824219","","1982-02-25T00:00:00Z","","0" +"NM-11928","-0.2800000011920929","-0.2800000011920929","","1950-01-23T00:00:00Z","","0" +"NM-11028","54.349998474121094","54.349998474121094","","1961-02-07T00:00:00Z","","0" +"SB-0053","67.81999969482422","67.81999969482422","","1977-02-21T00:00:00Z","","0" +"NM-00294","11.020000457763672","11.020000457763672","","1966-01-03T00:00:00Z","","0" +"NM-05922","51.5","51.5","","1934-12-30T00:00:00Z","","0" +"NM-03110","311.2300109863281","311.2300109863281","","1983-01-10T00:00:00Z","","0" +"NM-10769","56.0099983215332","56.0099983215332","","1960-12-15T00:00:00Z","","0" +"NM-05950","86.4000015258789","86.4000015258789","","1963-01-22T00:00:00Z","","0" +"NM-27259","89.4000015258789","89.4000015258789","","1959-01-07T00:00:00Z","","0" +"NM-19322","374.3699951171875","374.3699951171875","","1982-01-27T00:00:00Z","","0" +"NM-01858","7.800000190734863","7.800000190734863","","1998-11-20T00:00:00Z","","0" +"NM-05420","14.779999732971191","14.779999732971191","","1950-01-17T00:00:00Z","","0" +"NM-02256","8.100000381469727","8.100000381469727","","1964-10-15T00:00:00Z","","0" +"NM-00840","47.70000076293945","47.70000076293945","","2003-07-24T00:00:00Z","","0" +"NM-14576","45.79999923706055","45.79999923706055","","1984-02-08T00:00:00Z","","0" +"NM-13092","8.3100004196167","8.3100004196167","","1976-08-09T00:00:00Z","","0" +"NM-10129","-27.56999969482422","-27.56999969482422","","1908-03-18T00:00:00Z","","0" +"NM-10375","70.83000183105469","70.83000183105469","","1958-01-23T00:00:00Z","","0" +"NM-06098","23.709999084472656","23.709999084472656","","1975-10-03T00:00:00Z","","0" +"NM-15145","159.8800048828125","159.8800048828125","","1985-01-23T00:00:00Z","","0" +"NM-06112","39.939998626708984","39.939998626708984","","1966-01-04T00:00:00Z","","0" +"NM-27365","110.47000122070312","110.47000122070312","","1965-02-16T00:00:00Z","","0" +"NM-02240","42.09000015258789","42.09000015258789","","1956-01-20T00:00:00Z","","0" +"NM-27975","10.5","10.5","","1997-07-11T00:00:00Z","","0" +"NM-01008","200.02000427246094","200.02000427246094","R","2004-03-02T00:00:00Z","","0" +"NM-16514","18.459999084472656","18.459999084472656","","1952-11-22T00:00:00Z","","0" +"NM-13888","3.2100000381469727","3.2100000381469727","","1962-12-31T00:00:00Z","","0" +"NM-12751","129.52000427246094","129.52000427246094","","1973-01-09T00:00:00Z","","0" +"NM-11473","15.829999923706055","15.829999923706055","","1961-08-24T00:00:00Z","","0" +"NM-17716","8.020000457763672","8.020000457763672","","1940-07-25T00:00:00Z","","0" +"NM-04092","130.27999877929688","130.27999877929688","","1975-01-16T00:00:00Z","","0" +"NM-21885","5.409999847412109","5.409999847412109","Z","2006-05-10T00:00:00Z","","0" +"AB-0116","417.4599914550781","417.4599914550781","","1997-07-05T00:00:00Z","","0" +"NM-19151","249.63999938964844","249.63999938964844","","1982-01-29T00:00:00Z","","0" +"NM-13089","19.68000030517578","19.68000030517578","","1981-02-20T00:00:00Z","","0" +"NM-01948","8.100000381469727","8.100000381469727","","1951-04-15T00:00:00Z","","0" +"NM-11592","123.3499984741211","123.3499984741211","","1962-01-08T00:00:00Z","","0" +"NM-07110","25.65999984741211","25.65999984741211","","1970-12-18T00:00:00Z","","0" +"NM-01589","24.459999084472656","24.459999084472656","","1969-07-31T00:00:00Z","","0" +"NM-01700","38.70000076293945","38.70000076293945","","1986-01-28T00:00:00Z","","0" +"NM-14275","-10.529999732971191","-10.529999732971191","","1912-05-15T00:00:00Z","","0" +"NM-20375","63.25","63.25","","1943-09-24T00:00:00Z","","0" +"NM-27720","52.349998474121094","52.349998474121094","","1952-01-27T00:00:00Z","","0" +"NM-27200","114.7699966430664","114.7699966430664","","2009-07-15T00:00:00Z","","0" +"EB-220","133.74000549316406","133.0900115966797","","2014-03-03T00:00:00Z","","0.6499999761581421" +"NM-00843","281.0899963378906","281.0899963378906","","1985-02-05T00:00:00Z","","0" +"NM-21250","4.480000019073486","4.480000019073486","Z","2008-10-21T00:00:00Z","","0" +"NM-02352","6.199999809265137","6.199999809265137","","1985-06-15T00:00:00Z","","0" +"NM-00543","35.56999969482422","35.56999969482422","","1954-01-05T00:00:00Z","","0" +"NM-26465","35.779998779296875","35.779998779296875","","1987-07-28T00:00:00Z","","0" +"NM-00297","42.720001220703125","42.720001220703125","","1950-01-18T00:00:00Z","","0" +"NM-19992","45.13999938964844","45.13999938964844","","1953-08-17T00:00:00Z","","0" +"NM-08785","146.16000366210938","146.16000366210938","","1981-02-20T00:00:00Z","","0" +"EB-229","210.52999877929688","216.52999877929688","","1973-08-15T00:00:00Z","","-6" +"NM-16537","9.850000381469727","9.850000381469727","","1934-01-28T00:00:00Z","","0" +"NM-19463","107.86000061035156","107.86000061035156","","1965-07-15T00:00:00Z","","0" +"NM-28100","123.83000183105469","123.83000183105469","","1949-06-10T00:00:00Z","","0" +"NM-10016","80.1500015258789","80.1500015258789","","1966-02-22T00:00:00Z","","0" +"NM-17391","26.959999084472656","26.959999084472656","","1940-01-24T00:00:00Z","","0" +"UC-0081","37.54999923706055","35.54999923706055","","2012-12-14T00:00:00Z","","2" +"NM-03390","28.920000076293945","28.920000076293945","","1994-02-10T00:00:00Z","","0" +"NM-02797","3.5","3.5","","1983-04-15T00:00:00Z","","0" +"NM-02702","12","12","","1994-09-15T00:00:00Z","","0" +"NM-11643","88.9000015258789","88.9000015258789","","1941-03-05T00:00:00Z","","0" +"EB-481","655.2899780273438","655.2899780273438","Z","2003-11-30T00:00:00Z","","0" +"NM-09696","14.680000305175781","14.680000305175781","","1941-01-08T00:00:00Z","","0" +"NM-03431","454.19000244140625","454.19000244140625","T","1987-08-28T00:00:00Z","","0" +"NM-00661","55.7400016784668","55.7400016784668","","1971-03-18T00:00:00Z","","0" +"NM-10726","27.389999389648438","27.389999389648438","","1981-01-12T00:00:00Z","","0" +"NM-01337","118.94999694824219","118.94999694824219","","2006-02-14T00:00:00Z","","0" +"NM-11331","10.869999885559082","10.869999885559082","","1975-10-16T00:00:00Z","","0" +"NM-13712","44.75","44.75","R","1971-03-24T00:00:00Z","","0" +"NM-21133","35.0099983215332","35.0099983215332","","1955-11-01T00:00:00Z","","0" +"NM-09042","80.19999694824219","80.19999694824219","","1956-09-17T00:00:00Z","","0" +"NM-03692","203.57000732421875","203.57000732421875","P","1961-01-13T00:00:00Z","","0" +"NM-28256","250.2899932861328","250.2899932861328","","1984-05-05T00:00:00Z","","0" +"NM-03397","22.790000915527344","22.790000915527344","S","1986-10-30T00:00:00Z","","0" +"NM-04205","32.08000183105469","32.08000183105469","","1956-04-04T00:00:00Z","","0" +"NM-02075","386.04998779296875","386.04998779296875","","2004-01-13T00:00:00Z","","0" +"NM-28257","-2","-2","","1986-10-05T00:00:00Z","","0" +"NM-02591","14.800000190734863","14.800000190734863","","1968-10-15T00:00:00Z","","0" +"NM-01996","357.95001220703125","357.95001220703125","","1996-02-13T00:00:00Z","","0" +"NM-11643","88.37999725341797","88.37999725341797","","1939-06-22T00:00:00Z","","0" +"NM-01886","53.52000045776367","53.52000045776367","","2008-12-10T00:00:00Z","","0" +"NM-28259","19.81999969482422","19.81999969482422","","1948-01-15T00:00:00Z","","0" +"BC-0053","113.58999633789062","113.58999633789062","","2014-12-08T00:00:00Z","","0" +"NM-28255","36.790000915527344","36.790000915527344","","1997-03-15T00:00:00Z","","0" +"SM-0026","29.100000381469727","27.950000762939453","","2005-11-10T00:00:00Z","","1.149999976158142" +"AR-0026","18.149999618530273","17.600000381469727","","2016-01-18T00:00:00Z","","0.550000011920929" +"NM-21819","21.5","21.5","","1960-02-08T00:00:00Z","","0" +"EB-261","6.700000286102295","4.90000057220459","","2000-02-08T00:00:00Z","","1.7999999523162842" +"EB-299","189.6999969482422","189.6999969482422","","2007-08-08T00:00:00Z","","0" +"NM-00429","18.06999969482422","18.06999969482422","","1971-01-22T00:00:00Z","","0" +"NM-26734","130.39999389648438","130.39999389648438","","1957-02-15T00:00:00Z","","0" +"NM-17885","217.75999450683594","217.75999450683594","Z","1988-09-15T00:00:00Z","","0" +"NM-21241","1.75","1.75","Z","2005-05-17T00:00:00Z","","0" +"NM-09838","249.63999938964844","249.63999938964844","","1955-01-29T00:00:00Z","","0" +"NM-00383","30.040000915527344","30.040000915527344","","1969-01-06T00:00:00Z","","0" +"NM-20389","103.94000244140625","103.94000244140625","P","1951-09-28T00:00:00Z","","0" +"NM-13545","9.75","9.75","P","1961-02-07T00:00:00Z","","0" +"NM-05076","98.0999984741211","98.0999984741211","","1976-01-14T00:00:00Z","","0" +"NM-03363","646.3200073242188","646.3200073242188","","2001-02-13T00:00:00Z","","0" +"NM-28253","15.539999961853027","15.539999961853027","","2018-01-16T00:00:00Z","","0" +"NM-08064","33.43000030517578","33.43000030517578","","1955-01-04T00:00:00Z","","0" +"NM-13910","-22.950000762939453","-22.950000762939453","","1908-09-04T00:00:00Z","","0" +"NM-02758","318.17999267578125","318.17999267578125","","1978-08-24T00:00:00Z","","0" +"NM-21547","5.25","5.25","Z","2004-01-16T00:00:00Z","","0" +"NM-06040","3.740000009536743","3.740000009536743","","1998-09-02T00:00:00Z","","0" +"NM-07641","-158.0800018310547","-158.0800018310547","","1908-12-21T00:00:00Z","","0" +"NM-21832","6.699999809265137","6.699999809265137","Z","2008-10-22T00:00:00Z","","0" +"NM-04422","88.5199966430664","88.5199966430664","S","1954-03-25T00:00:00Z","","0" +"BC-0164","116.5999984741211","114.4000015258789","","2017-10-22T00:00:00Z","","2.200000047683716" +"NM-09104","444.5400085449219","444.5400085449219","","1958-11-20T00:00:00Z","","0" +"NM-20452","195.1999969482422","195.1999969482422","","1998-08-21T00:00:00Z","","0" +"NM-28010","498.8800048828125","498.8800048828125","S","2015-06-04T00:00:00Z","","0" +"NM-02168","20.90999984741211","20.90999984741211","","2011-07-07T00:00:00Z","","0" +"NM-11795","36.02000045776367","36.02000045776367","","1943-07-27T00:00:00Z","","0" +"NM-02163","21.149999618530273","21.149999618530273","","2004-08-26T00:00:00Z","","0" +"BC-0166","241.27000427246094","239.52000427246094","AA","2023-12-18T00:00:00Z","0001-01-01T15:30:00Z","1.75" +"NM-07664","10.430000305175781","10.430000305175781","","1963-08-07T00:00:00Z","","0" +"NM-01872","6.599999904632568","6.599999904632568","","1997-09-15T00:00:00Z","","0" +"NM-01269","96.98999786376953","96.98999786376953","","1969-02-12T00:00:00Z","","0" +"NM-15984","88.25","88.25","","1975-02-27T00:00:00Z","","0" +"NM-11778","62.279998779296875","62.279998779296875","","1956-03-13T00:00:00Z","","0" +"NM-09981","15.59000015258789","15.59000015258789","","1975-01-08T00:00:00Z","","0" +"NM-02114","19.670000076293945","19.670000076293945","","1958-08-04T00:00:00Z","","0" +"NM-21691","23.559999465942383","23.559999465942383","","1950-07-03T00:00:00Z","","0" +"NM-00177","156.75","156.75","","1993-05-04T00:00:00Z","","0" +"NM-19043","366.04998779296875","366.04998779296875","","1979-01-09T00:00:00Z","","0" +"NM-02101","8.399999618530273","8.399999618530273","","1982-03-15T00:00:00Z","","0" +"NM-03349","40.66999816894531","40.66999816894531","Z","1995-06-13T00:00:00Z","","0" +"NM-11928","0.029999999329447746","0.029999999329447746","","1956-07-05T00:00:00Z","","0" +"EB-267","14.380000114440918","14.380000114440918","Z","1998-05-07T00:00:00Z","","0" +"NM-00643","103.95999908447266","103.95999908447266","","1992-06-29T00:00:00Z","","0" +"NM-08071","9.199999809265137","9.199999809265137","","1961-10-15T00:00:00Z","","0" +"NM-08523","379.760009765625","379.760009765625","","1976-01-06T00:00:00Z","","0" +"SM-0048","79.31999969482422","77.81999969482422","","2007-10-17T00:00:00Z","","1.5" +"NM-22188","434.92999267578125","434.92999267578125","","2010-04-06T00:00:00Z","","0" +"NM-04029","265.75","265.75","","1969-01-23T00:00:00Z","","0" +"NM-02640","71.23999786376953","71.23999786376953","","2001-01-26T00:00:00Z","","0" +"EB-300","195.25","195.25","","2007-10-03T00:00:00Z","","0" +"UC-0011","","","O","2001-02-14T00:00:00Z","","0" +"NM-01948","6.099999904632568","6.099999904632568","","1999-05-15T00:00:00Z","","0" +"NM-05347","8.899999618530273","8.899999618530273","","1962-02-15T00:00:00Z","","0" +"NM-07696","52.36000061035156","52.36000061035156","","1976-01-28T00:00:00Z","","0" +"NM-11367","104.44000244140625","104.44000244140625","","1955-01-10T00:00:00Z","","0" +"NM-21219","8.100000381469727","8.100000381469727","","1958-03-11T00:00:00Z","","0" +"BC-0131","202.05999755859375","202.05999755859375","","2017-10-14T00:00:00Z","","0" +"NM-11017","29.3700008392334","29.3700008392334","","1942-07-26T00:00:00Z","","0" +"NM-13956","-9.65999984741211","-9.65999984741211","","1906-06-19T00:00:00Z","","0" +"UC-0090","42.86000061035156","42.15999984741211","","2012-12-19T00:00:00Z","","0.699999988079071" +"NM-28257","22.649999618530273","22.649999618530273","","2020-05-15T00:00:00Z","","0" +"NM-02382","53.2599983215332","53.2599983215332","","1945-07-17T00:00:00Z","","0" +"NM-17716","5.949999809265137","5.949999809265137","","1948-09-12T00:00:00Z","","0" +"NM-03762","40.45000076293945","40.45000076293945","","1955-09-09T00:00:00Z","","0" +"NM-14293","6.25","6.25","","1959-08-06T00:00:00Z","","0" +"NM-08647","23.850000381469727","23.850000381469727","","1945-09-22T00:00:00Z","","0" +"QY-0820","148.10000610351562","148.10000610351562","P","1949-12-28T00:00:00Z","","0" +"NM-25507","83.05999755859375","83.05999755859375","","1968-01-12T00:00:00Z","","0" +"NM-01894","58.790000915527344","58.790000915527344","","2000-06-21T00:00:00Z","","0" +"NM-03661","36.9900016784668","36.9900016784668","","1972-02-17T00:00:00Z","","0" +"NM-03483","91.94999694824219","91.94999694824219","","1968-10-14T00:00:00Z","","0" +"NM-00366","101.05999755859375","101.05999755859375","","1989-10-30T00:00:00Z","","0" +"NM-16774","26.229999542236328","26.229999542236328","","1938-11-02T00:00:00Z","","0" +"NM-14293","4.489999771118164","4.489999771118164","","1989-01-30T00:00:00Z","","0" +"NM-01404","50.43000030517578","50.43000030517578","","2011-10-06T00:00:00Z","","0" +"DE-0299","41.439998626708984","41.439998626708984","","2011-10-18T00:00:00Z","","0" +"NM-01885","20.43000030517578","20.43000030517578","","2008-10-07T00:00:00Z","","0" +"EB-235","57.099998474121094","57.099998474121094","","1979-01-09T00:00:00Z","","0" +"NM-09123","398.8900146484375","398.8900146484375","","1941-12-08T00:00:00Z","","0" +"NM-01948","6.599999904632568","6.599999904632568","","1991-02-01T00:00:00Z","","0" +"NM-01872","9.899999618530273","9.899999618530273","","1978-02-15T00:00:00Z","","0" +"NM-05308","25.229999542236328","25.229999542236328","S","2013-09-19T00:00:00Z","","0" +"NM-25979","24.739999771118164","24.739999771118164","","1967-03-07T00:00:00Z","","0" +"NM-17716","3.0999999046325684","3.0999999046325684","","1947-03-02T00:00:00Z","","0" +"NM-13215","8.140000343322754","8.140000343322754","","1941-01-09T00:00:00Z","","0" +"NM-03275","16.5","16.5","","1981-03-16T00:00:00Z","","0" +"NM-27392","36.040000915527344","36.040000915527344","R","1955-01-05T00:00:00Z","","0" +"NM-28259","119.66000366210938","119.66000366210938","","2019-04-05T00:00:00Z","","0" +"NM-00029","35.459999084472656","35.459999084472656","","1958-01-29T00:00:00Z","","0" +"NM-08524","10.600000381469727","10.600000381469727","","1982-05-15T00:00:00Z","","0" +"NM-01970","124.5199966430664","124.5199966430664","","1978-01-09T00:00:00Z","","0" +"NM-13529","3.049999952316284","3.049999952316284","","1957-07-29T00:00:00Z","","0" +"DE-0108","42.95000076293945","42.95000076293945","","2011-08-16T00:00:00Z","","0" +"NM-28258","197.64999389648438","197.64999389648438","","2019-08-15T00:00:00Z","","0" +"NM-11316","-5.619999885559082","-5.619999885559082","","1907-06-29T00:00:00Z","","0" +"NM-01891","60.279998779296875","60.279998779296875","","2011-06-02T00:00:00Z","","0" +"AB-0105","404","404","","2015-01-07T00:00:00Z","","0" +"UC-0131","66.86000061035156","66.86000061035156","","1991-01-28T00:00:00Z","","0" +"SV-0061","287.8999938964844","286.97998046875","","2017-12-02T00:00:00Z","","0.9200000166893005" +"NM-03378","34","34","","1962-07-07T00:00:00Z","","0" +"EB-014","206.6999969482422","214.39999389648438","","1993-07-01T00:00:00Z","","-7.699999809265137" +"NM-01947","","","D","2014-01-16T00:00:00Z","","0" +"NM-26479","34.650001525878906","34.650001525878906","","1987-08-20T00:00:00Z","","0" +"NM-27488","29.760000228881836","29.760000228881836","","2005-01-26T00:00:00Z","","0" +"AB-0091","505.30999755859375","505.30999755859375","","2008-07-31T00:00:00Z","","" +"NM-07708","45.11000061035156","45.11000061035156","","1952-01-07T00:00:00Z","","0" +"NM-03344","75.29000091552734","75.29000091552734","","1989-08-30T00:00:00Z","","0" +"NM-02367","12.25","12.25","","2002-02-06T00:00:00Z","","0" +"NM-00367","139.8300018310547","139.8300018310547","","2002-06-24T00:00:00Z","","0" +"NM-10895","16.959999084472656","16.959999084472656","","1981-01-07T00:00:00Z","","0" +"NM-05857","113.9000015258789","113.9000015258789","P","1968-08-13T00:00:00Z","","0" +"NM-02935","98.56999969482422","98.56999969482422","","1990-01-24T00:00:00Z","","0" +"NM-02215","151.57000732421875","151.57000732421875","","1966-01-18T00:00:00Z","","0" +"NM-03445","62.70000076293945","62.70000076293945","","2007-02-27T00:00:00Z","","0" +"NM-05920","62.70000076293945","62.70000076293945","","1950-09-23T00:00:00Z","","0" +"NM-13838","-4.070000171661377","-4.070000171661377","","1911-03-03T00:00:00Z","","0" +"NM-16977","193.6699981689453","193.6699981689453","","1990-04-17T00:00:00Z","","0" +"NM-21067","133.36000061035156","133.36000061035156","","1960-06-21T00:00:00Z","","0" +"NM-00603","77.6500015258789","77.6500015258789","","1978-01-04T00:00:00Z","","0" +"NM-02642","116.19000244140625","116.19000244140625","","2010-01-19T00:00:00Z","","0" +"NM-02100","121.94999694824219","121.94999694824219","","1966-01-17T00:00:00Z","","0" +"NM-12069","74.8499984741211","74.8499984741211","","1953-01-23T00:00:00Z","","0" +"NM-00366","143.00999450683594","143.00999450683594","","1983-10-05T00:00:00Z","","0" +"NM-21503","10","10","","2011-05-03T00:00:00Z","","0" +"NM-12566","36.529998779296875","36.529998779296875","","1986-04-17T00:00:00Z","","0" +"NM-03115","12.279999732971191","12.279999732971191","R","1993-12-30T00:00:00Z","","0" +"NM-18557","87.87000274658203","87.87000274658203","R","1966-01-14T00:00:00Z","","0" +"NM-13124","-12.550000190734863","-12.550000190734863","","1912-05-23T00:00:00Z","","0" +"NM-02669","40.189998626708984","40.189998626708984","","1966-02-01T00:00:00Z","","0" +"NM-20667","11.329999923706055","11.329999923706055","","1956-02-16T00:00:00Z","","0" +"NM-01986","6.099999904632568","6.099999904632568","","1985-12-15T00:00:00Z","","0" +"NM-13033","273.1600036621094","273.1600036621094","","1954-05-14T00:00:00Z","","0" +"NM-03060","164.24000549316406","164.24000549316406","Z","1991-07-02T00:00:00Z","","0" +"SB-0299","126.43000030517578","126.43000030517578","","1970-08-05T00:00:00Z","","0" +"NM-00506","73.4800033569336","73.4800033569336","","1992-01-07T00:00:00Z","","0" +"NM-03090","24.700000762939453","24.700000762939453","","1950-01-07T00:00:00Z","","0" +"NM-03226","48.65999984741211","48.65999984741211","","1962-02-06T00:00:00Z","","0" +"SO-0199","27.389999389648438","26.75","","2021-03-12T00:00:00Z","0001-01-01T13:30:00Z","0.6399999856948853" +"NM-10331","585.7000122070312","585.7000122070312","","1961-03-01T00:00:00Z","","0" +"NM-24956","19.100000381469727","19.100000381469727","","1951-11-02T00:00:00Z","","0" +"NM-03050","141.11000061035156","141.11000061035156","","1984-01-19T00:00:00Z","","0" +"NM-16010","115.66000366210938","115.66000366210938","","1964-02-18T00:00:00Z","","0" +"EB-251","256.04998779296875","254.64999389648438","","2005-04-07T00:00:00Z","","1.399999976158142" +"NM-02598","78.7300033569336","78.7300033569336","","1948-01-14T00:00:00Z","","0" +"NM-05599","123.66000366210938","123.66000366210938","","1956-03-14T00:00:00Z","","0" +"NM-20114","55.20000076293945","55.20000076293945","","1962-02-06T00:00:00Z","","0" +"NM-03402","135.55999755859375","135.55999755859375","","1995-08-24T00:00:00Z","","0" +"NM-02831","18.030000686645508","18.030000686645508","","1946-07-01T00:00:00Z","","0" +"NM-05757","94.45999908447266","94.45999908447266","","1957-01-16T00:00:00Z","","0" +"NM-04709","48.779998779296875","48.779998779296875","R","1965-10-15T00:00:00Z","","0" +"EB-276","241","241","S","1999-03-31T00:00:00Z","","0" +"NM-28255","22.969999313354492","22.969999313354492","","1947-05-15T00:00:00Z","","0" +"NM-00366","85.12000274658203","85.12000274658203","","1985-02-25T00:00:00Z","","0" +"NM-10725","136.6999969482422","136.6999969482422","","1971-03-23T00:00:00Z","","0" +"NM-06976","95.87999725341797","95.87999725341797","","2004-04-06T00:00:00Z","","0" +"NM-00724","73.05999755859375","73.05999755859375","","2008-03-17T00:00:00Z","","0" +"NM-03903","329.1300048828125","329.1300048828125","","1976-09-29T00:00:00Z","","0" +"NM-20343","59.599998474121094","59.599998474121094","","1959-03-16T00:00:00Z","","0" +"NM-09682","420.9700012207031","420.9700012207031","","1977-06-27T00:00:00Z","","0" +"EB-483","420","420","P","1990-05-31T00:00:00Z","","0" +"NM-00610","42.58000183105469","42.58000183105469","","1978-01-04T00:00:00Z","","0" +"NM-17716","4.070000171661377","4.070000171661377","","1946-06-05T00:00:00Z","","0" +"NM-01565","-277.2300109863281","-277.2300109863281","","1989-01-25T00:00:00Z","","0" +"NM-00547","46.68000030517578","46.68000030517578","","1986-02-28T00:00:00Z","","0" +"NM-14870","83.3499984741211","83.3499984741211","","1976-02-05T00:00:00Z","","0" +"NM-02518","7.400000095367432","7.400000095367432","","1962-01-15T00:00:00Z","","0" +"NM-21696","350","350","","1983-06-14T00:00:00Z","","0" +"NM-15809","176.47000122070312","176.47000122070312","","1970-02-18T00:00:00Z","","0" +"SB-0378","68.91999816894531","68.91999816894531","","2003-01-17T00:00:00Z","","0" +"EB-207","105.01000213623047","105.01000213623047","","1952-02-06T00:00:00Z","","0" +"NM-02363","193.22000122070312","193.22000122070312","","1955-02-02T00:00:00Z","","0" +"NM-26063","140","140","","1994-09-28T00:00:00Z","","0" +"NM-21385","7.789999961853027","7.789999961853027","Z","2010-08-12T00:00:00Z","","0" +"NM-25026","433.5","433.5","","1980-08-25T00:00:00Z","","0" +"NM-22354","8.890000343322754","8.890000343322754","","1997-02-27T00:00:00Z","","0" +"NM-02412","33.52000045776367","33.52000045776367","","1969-01-17T00:00:00Z","","0" +"NM-20018","17.90999984741211","17.90999984741211","","1947-02-18T00:00:00Z","","0" +"NM-02256","5.099999904632568","5.099999904632568","","2000-11-15T00:00:00Z","","0" +"EB-261","7.180000305175781","5.380000114440918","","2006-08-09T00:00:00Z","","1.7999999523162842" +"NM-28018","485.8500061035156","485.8500061035156","S","2015-05-06T00:00:00Z","","0" +"NM-28011","489.8900146484375","489.8900146484375","S","2015-05-17T00:00:00Z","","0" +"NM-01770","46.70000076293945","46.70000076293945","","1954-07-21T00:00:00Z","","0" +"NM-02484","31.8700008392334","31.8700008392334","","1992-08-27T00:00:00Z","","0" +"NM-02352","9.5","9.5","","1965-12-15T00:00:00Z","","0" +"NM-23296","74.61000061035156","74.61000061035156","","1946-11-06T00:00:00Z","","0" +"NM-22239","33.52000045776367","33.52000045776367","","2008-04-17T00:00:00Z","","0" +"NM-17895","134.88999938964844","134.88999938964844","","1977-02-16T00:00:00Z","","0" +"NM-13788","-4.070000171661377","-4.070000171661377","","1909-05-25T00:00:00Z","","0" +"NM-13711","263.4100036621094","263.4100036621094","","1950-11-10T00:00:00Z","","0" +"NM-02831","37.29999923706055","37.29999923706055","","1997-09-25T00:00:00Z","","0" +"DE-0108","36.29999923706055","36.29999923706055","","2006-11-21T00:00:00Z","","0" +"NM-03258","56.540000915527344","56.540000915527344","","1973-02-26T00:00:00Z","","0" +"DE-0110","40.380001068115234","40.380001068115234","","2010-06-01T00:00:00Z","","0" +"NM-12840","7.179999828338623","7.179999828338623","","1958-12-03T00:00:00Z","","0" +"NM-28252","62.81999969482422","62.81999969482422","","1981-05-25T00:00:00Z","","0" +"AB-0110","34.86000061035156","34.86000061035156","Z","1997-03-26T00:00:00Z","","" +"NM-02004","10.399999618530273","10.399999618530273","","1957-08-15T00:00:00Z","","0" +"NM-01891","56.810001373291016","56.810001373291016","","1996-01-18T00:00:00Z","","0" +"NM-25905","206.8699951171875","206.8699951171875","","1979-01-23T00:00:00Z","","0" +"NM-26943","353.7900085449219","356.7900085449219","","1995-03-15T00:00:00Z","","0" +"NM-07783","151.7100067138672","151.7100067138672","","1972-02-28T00:00:00Z","","0" +"NM-19056","395.7300109863281","395.7300109863281","","1987-01-09T00:00:00Z","","0" +"NM-14062","-14.859999656677246","-14.859999656677246","","1912-12-11T00:00:00Z","","0" +"NM-02669","64.3499984741211","64.3499984741211","","2001-01-26T00:00:00Z","","0" +"EB-268","28.739999771118164","28.739999771118164","","1999-08-27T00:00:00Z","","0" +"BC-0017","","68.94999694824219","","2020-07-24T00:00:00Z","","1.399999976158142" +"NM-20640","14.779999732971191","14.779999732971191","","1941-07-11T00:00:00Z","","0" +"AB-0092","496.2699890136719","496.2699890136719","","2001-10-24T00:00:00Z","","" +"NM-09884","44.099998474121094","44.099998474121094","","1976-02-27T00:00:00Z","","0" +"NM-04504","289.4200134277344","289.4200134277344","","1983-02-14T00:00:00Z","","0" +"WL-0058","120.16000366210938","117.72000122070312","","2022-07-19T00:00:00Z","0001-01-01T11:06:00Z","2.440000057220459" +"NM-27205","52.880001068115234","52.880001068115234","","2012-09-14T00:00:00Z","","0" +"SB-0299","123.94000244140625","123.94000244140625","","1972-04-30T00:00:00Z","","0" +"NM-00213","181.42999267578125","181.42999267578125","","1971-01-01T00:00:00Z","","0" +"NM-01337","88.9000015258789","88.9000015258789","","1997-01-27T00:00:00Z","","0" +"NM-03420","29.139999389648438","29.139999389648438","T","1983-11-09T00:00:00Z","","0" +"EB-296","524.469970703125","524.469970703125","","2010-10-14T00:00:00Z","","0" +"NM-23393","129.22000122070312","129.22000122070312","","1984-02-08T00:00:00Z","","0" +"NM-01826","97.0199966430664","97.0199966430664","","1963-02-20T00:00:00Z","","0" +"NM-13781","67.69000244140625","67.69000244140625","","1956-01-13T00:00:00Z","","0" +"NM-15146","15.479999542236328","15.479999542236328","","1961-01-10T00:00:00Z","","0" +"NM-02619","30.280000686645508","30.280000686645508","","1999-01-05T00:00:00Z","","0" +"NM-03274","8.619999885559082","8.619999885559082","P","1961-06-07T00:00:00Z","","0" +"NM-17552","56.310001373291016","56.310001373291016","","1960-01-06T00:00:00Z","","0" +"NM-21719","44.040000915527344","44.040000915527344","S","1986-12-23T00:00:00Z","","0" +"NM-02924","95.05000305175781","95.05000305175781","","1964-02-19T00:00:00Z","","0" +"NM-01986","7","7","","1983-10-15T00:00:00Z","","0" +"NM-00452","71.75","71.75","","1988-01-08T00:00:00Z","","0" +"NM-09951","54.16999816894531","54.16999816894531","","1976-02-25T00:00:00Z","","0" +"BC-0327","","353.1000061035156","","2020-08-04T00:00:00Z","","0.9599999785423279" +"NM-21697","252.0800018310547","252.0800018310547","S","1984-12-21T00:00:00Z","","0" +"NM-03353","54.54999923706055","54.54999923706055","","1995-04-17T00:00:00Z","","0" +"SB-0166","254.10000610351562","254.10000610351562","","2001-01-12T00:00:00Z","","0" +"AB-0077","6.539999961853027","6.539999961853027","","1998-01-23T00:00:00Z","","" +"NM-28250","79.2300033569336","79.2300033569336","","1993-02-25T00:00:00Z","","0" +"WL-0087","63.70833206176758","62.0283317565918","","1999-03-11T00:00:00Z","","1.6799999475479126" +"DE-0079","84.79000091552734","84.79000091552734","","2017-05-22T00:00:00Z","","0" +"NM-17716","2.7799999713897705","2.7799999713897705","","1947-05-17T00:00:00Z","","0" +"NM-28255","30","30","","1992-10-25T00:00:00Z","","0" +"NM-13654","2","2","","1910-03-03T00:00:00Z","","0" +"NM-10581","49.40999984741211","49.40999984741211","","1963-01-08T00:00:00Z","","0" +"NM-20823","131.72999572753906","131.72999572753906","","1955-07-30T00:00:00Z","","0" +"BC-0058","170.05999755859375","170.05999755859375","","2017-01-27T00:00:00Z","","0" +"NM-28193","295.0799865722656","295.0799865722656","","1981-01-31T00:00:00Z","","0" +"AB-0122","541.1599731445312","541.1599731445312","","2008-01-25T00:00:00Z","","" +"NM-27446","25.950000762939453","25.950000762939453","","1960-10-14T00:00:00Z","","0" +"NM-13118","11.979999542236328","11.979999542236328","","1968-04-15T00:00:00Z","","0" +"NM-27720","61.41999816894531","61.41999816894531","","1960-03-23T00:00:00Z","","0" +"NM-00984","343.9800109863281","343.9800109863281","","1990-01-04T00:00:00Z","","0" +"EB-444","119.05999755859375","125.30999755859375","","2004-09-07T00:00:00Z","","-6.25" +"NM-11263","43.279998779296875","43.279998779296875","","1948-07-26T00:00:00Z","","0" +"EB-244","108.98999786376953","108.98999786376953","","2005-07-20T00:00:00Z","","0" +"NM-02395","30.360000610351562","30.360000610351562","","1970-12-07T00:00:00Z","","0" +"NM-13136","-14.859999656677246","-14.859999656677246","","1915-07-30T00:00:00Z","","0" +"NM-04579","90.31999969482422","90.31999969482422","P","1950-03-16T00:00:00Z","","0" +"NM-11943","1.350000023841858","1.350000023841858","R","1957-01-07T00:00:00Z","","0" +"NM-06030","37.9900016784668","37.9900016784668","","2009-01-26T00:00:00Z","","0" +"NM-04704","80.37000274658203","80.37000274658203","","1955-05-19T00:00:00Z","","0" +"AB-0077","5.78000020980835","5.78000020980835","","2003-07-15T00:00:00Z","","" +"NM-11889","1.6399999856948853","1.6399999856948853","","1959-07-05T00:00:00Z","","0" +"NM-18368","276.05999755859375","276.05999755859375","","1997-03-07T00:00:00Z","","0" +"NM-03331","11.510000228881836","11.510000228881836","Z","1997-03-20T00:00:00Z","","0" +"NM-21712","76.19999694824219","76.19999694824219","P","1959-11-03T00:00:00Z","","0" +"NM-10514","14.380000114440918","14.380000114440918","P","1963-09-05T00:00:00Z","","0" +"SO-0176","7.449999809265137","7.399999618530273","","2021-02-11T00:00:00Z","0001-01-01T10:51:00Z","0.05000000074505806" +"EB-219","69.13999938964844","67.63999938964844","","1982-01-20T00:00:00Z","","1.5" +"NM-02524","15.390000343322754","15.390000343322754","","2015-04-17T00:00:00Z","","0" +"NM-04020","117.7300033569336","117.7300033569336","","1959-11-10T00:00:00Z","","0" +"NM-03349","28.899999618530273","28.899999618530273","","2010-04-01T00:00:00Z","","0" +"NM-10279","50.40999984741211","50.40999984741211","","1964-02-12T00:00:00Z","","0" +"NM-03916","44.52000045776367","44.52000045776367","","1955-09-14T00:00:00Z","","0" +"NM-03392","154.3300018310547","154.3300018310547","Z","1999-01-06T00:00:00Z","","0" +"NM-05782","204.6199951171875","204.6199951171875","","1976-12-29T00:00:00Z","","0" +"SA-0018","282.6499938964844","281.32000732421875","","2009-02-10T00:00:00Z","","1.3300000429153442" +"NM-10907","124.7300033569336","124.7300033569336","","1958-01-17T00:00:00Z","","0" +"NM-28023","485.8500061035156","485.8500061035156","S","2015-04-26T00:00:00Z","","0" +"NM-01239","21.350000381469727","21.350000381469727","","1954-04-06T00:00:00Z","","0" +"NM-28023","485.79998779296875","485.79998779296875","S","2015-05-08T00:00:00Z","","0" +"SO-0174","6.150000095367432","5.599999904632568","","2021-02-14T00:00:00Z","0001-01-01T08:37:00Z","0.550000011920929" +"NM-17620","27.700000762939453","27.700000762939453","","1935-01-08T00:00:00Z","","0" +"NM-21249","5.059999942779541","5.059999942779541","Z","2006-05-01T00:00:00Z","","0" +"NM-21546","11.329999923706055","11.329999923706055","Z","2004-11-05T00:00:00Z","","0" +"UC-0034","96.22000122070312","96.22000122070312","","1981-01-31T00:00:00Z","","0" +"DE-0076","86.56999969482422","86.56999969482422","","2016-12-05T00:00:00Z","","0" +"NM-27367","139.1199951171875","139.1199951171875","","1990-05-31T00:00:00Z","","0" +"NM-02530","115.44000244140625","115.44000244140625","","2009-01-06T00:00:00Z","","0" +"NM-02591","11.100000381469727","11.100000381469727","","1979-08-15T00:00:00Z","","0" +"AB-0184","346.6099853515625","346.6099853515625","","1997-01-10T00:00:00Z","","" +"NM-27457","7.300000190734863","7.300000190734863","","1981-05-27T00:00:00Z","","0" +"NM-01838","337.5400085449219","337.5400085449219","","1993-01-23T00:00:00Z","","0" +"NM-02831","34.150001525878906","34.150001525878906","","1956-04-01T00:00:00Z","","0" +"NM-28103","594.530029296875","594.530029296875","","2006-05-05T00:00:00Z","","0" +"BC-0310","","251.86000061035156","","2023-03-16T00:00:00Z","","2.140000104904175" +"NM-16090","180.4199981689453","180.4199981689453","R","1959-09-16T00:00:00Z","","0" +"NM-14672","136.4499969482422","136.4499969482422","","1963-07-24T00:00:00Z","","0" +"AB-0113","223.8000030517578","223.8000030517578","","2004-09-20T00:00:00Z","","" +"NM-12488","6.889999866485596","6.889999866485596","","1970-01-15T00:00:00Z","","0" +"NM-08902","31.360000610351562","31.360000610351562","P","1957-06-21T00:00:00Z","","0" +"NM-12009","20.799999237060547","20.799999237060547","","1943-01-14T00:00:00Z","","0" +"BW-0782","30","30","","1953-10-02T00:00:00Z","","0" +"WL-0087","51.20833206176758","49.5283317565918","","1996-08-12T00:00:00Z","","1.6799999475479126" +"NM-12917","79","79","","1961-01-09T00:00:00Z","","0" +"SB-0114","185.8000030517578","185.8000030517578","","1994-02-08T00:00:00Z","","0" +"SB-0299","123.23999786376953","123.23999786376953","","1998-11-30T00:00:00Z","","0" +"NM-11012","13.930000305175781","13.930000305175781","","1957-10-07T00:00:00Z","","0" +"NM-00680","50.54999923706055","50.54999923706055","","2003-02-04T00:00:00Z","","0" +"NM-02313","215.85000610351562","215.85000610351562","","2005-01-20T00:00:00Z","","0" +"NM-01872","9.300000190734863","9.300000190734863","","1962-11-15T00:00:00Z","","0" +"NM-05780","63.47999954223633","63.47999954223633","","1948-01-16T00:00:00Z","","0" +"NM-28256","77.05999755859375","77.05999755859375","","1970-02-25T00:00:00Z","","0" +"NM-01942","103.55999755859375","103.55999755859375","","1997-01-30T00:00:00Z","","0" +"NM-25107","234.60000610351562","234.60000610351562","","1969-06-25T00:00:00Z","","0" +"NM-28015","499.04998779296875","499.04998779296875","S","2015-05-14T00:00:00Z","","0" +"SA-0104","12.489999771118164","9.039999961853027","","2011-01-21T00:00:00Z","","3.450000047683716" +"NM-27467","53.869998931884766","53.869998931884766","","2015-01-28T00:00:00Z","","0" +"NM-08873","64.69000244140625","64.69000244140625","","1971-01-15T00:00:00Z","","0" +"NM-01295","93.75","93.75","","1946-05-10T00:00:00Z","","0" +"NM-02163","31.81999969482422","31.81999969482422","","2012-05-31T00:00:00Z","","0" +"NM-00579","79.02999877929688","79.02999877929688","","2014-12-15T00:00:00Z","","0" +"NM-01751","64.94999694824219","64.94999694824219","","1981-01-20T00:00:00Z","","0" +"NM-28259","144.00999450683594","144.00999450683594","","1968-10-05T00:00:00Z","","0" +"NM-07137","87.2300033569336","87.2300033569336","","2007-10-02T00:00:00Z","","0" +"BC-0053","164.85000610351562","164.85000610351562","","2013-06-17T00:00:00Z","","0" +"NM-15694","82.2699966430664","82.2699966430664","","1964-02-19T00:00:00Z","","0" +"SB-0299","151.22000122070312","151.22000122070312","","2014-07-15T00:00:00Z","","0" +"NM-01887","78.12999725341797","78.12999725341797","","2007-02-03T00:00:00Z","","0" +"NM-28018","486.1499938964844","486.1499938964844","S","2015-05-30T00:00:00Z","","0" +"NM-00691","27.59000015258789","27.59000015258789","","1979-01-04T00:00:00Z","","0" +"NM-03242","102.80000305175781","102.80000305175781","","1960-09-26T00:00:00Z","","0" +"EB-235","52.5","52.5","","1980-10-15T00:00:00Z","","0" +"NM-22954","119.1500015258789","119.1500015258789","","1954-07-19T00:00:00Z","","0" +"NM-03421","34.099998474121094","34.099998474121094","","1987-09-25T00:00:00Z","","0" +"NM-28250","94.12999725341797","94.12999725341797","","2019-12-05T00:00:00Z","","0" +"NM-02788","192.3699951171875","192.3699951171875","","1971-01-18T00:00:00Z","","0" +"NM-08111","214.86000061035156","214.86000061035156","","1995-08-22T00:00:00Z","","0" +"NM-02217","38.72999954223633","38.72999954223633","","1959-01-09T00:00:00Z","","0" +"NM-12024","46.75","46.75","","1952-01-12T00:00:00Z","","0" +"NM-15177","23.6299991607666","23.6299991607666","","1962-01-17T00:00:00Z","","0" +"NM-07159","81.38999938964844","81.38999938964844","","2000-04-21T00:00:00Z","","0" +"NM-01670","280.45001220703125","280.45001220703125","","1988-08-11T00:00:00Z","","0" +"NM-28259","69.12000274658203","69.12000274658203","","1954-10-15T00:00:00Z","","0" +"NM-17340","86.02999877929688","86.02999877929688","","1978-01-05T00:00:00Z","","0" +"NM-02518","7.5","7.5","","1974-03-15T00:00:00Z","","0" +"NM-01817","74.54000091552734","74.54000091552734","","1974-06-13T00:00:00Z","","0" +"NM-11544","216.80999755859375","216.80999755859375","","1971-03-24T00:00:00Z","","0" +"NM-24982","83.43000030517578","83.43000030517578","","1953-01-15T00:00:00Z","","0" +"NM-00987","299.70001220703125","299.70001220703125","","1958-01-17T00:00:00Z","","0" +"NM-01780","135.27999877929688","135.27999877929688","","2000-01-05T00:00:00Z","","0" +"NM-01947","5.099999904632568","5.099999904632568","","1981-06-15T00:00:00Z","","0" +"NM-17716","1.4199999570846558","1.4199999570846558","","1942-08-12T00:00:00Z","","0" +"NM-03365","44.650001525878906","44.650001525878906","","1956-07-31T00:00:00Z","","0" +"DE-0091","89.79000091552734","89.79000091552734","","2002-08-05T00:00:00Z","","0" +"NM-13594","29.700000762939453","29.700000762939453","","1970-11-05T00:00:00Z","","0" +"EB-235","53.599998474121094","53.599998474121094","","1980-02-25T00:00:00Z","","0" +"NM-01898","54.15999984741211","54.15999984741211","","2011-04-27T00:00:00Z","","0" +"NM-02348","11.899999618530273","11.899999618530273","","1994-03-15T00:00:00Z","","0" +"NM-17716","4.889999866485596","4.889999866485596","","1949-08-25T00:00:00Z","","0" +"BC-0082","9.25","9.25","","2017-10-10T00:00:00Z","","0" +"NM-03462","192.38999938964844","192.38999938964844","","1957-07-05T00:00:00Z","","0" +"NM-00226","48.790000915527344","48.790000915527344","","1952-09-12T00:00:00Z","","0" +"NM-03917","450","450","","1990-04-17T00:00:00Z","","0" +"NM-03338","10.020000457763672","10.020000457763672","","2001-09-25T00:00:00Z","","0" +"NM-17817","152.5","152.5","","1985-05-14T00:00:00Z","","0" +"NM-02384","6.900000095367432","6.900000095367432","","1986-08-15T00:00:00Z","","0" +"NM-21714","40.75","40.75","","2008-11-03T00:00:00Z","","0" +"NM-10562","32.93000030517578","32.93000030517578","","1949-01-14T00:00:00Z","","0" +"TV-217","275.7699890136719","275.16998291015625","","2008-06-03T00:00:00Z","","0.6000000238418579" +"NM-20576","65.25","65.25","","1961-06-05T00:00:00Z","","0" +"NM-02101","11.100000381469727","11.100000381469727","","1958-03-15T00:00:00Z","","0" +"NM-05572","78.41999816894531","78.41999816894531","","1961-11-08T00:00:00Z","","0" +"NM-17716","0.9599999785423279","0.9599999785423279","","1943-06-03T00:00:00Z","","0" +"NM-06185","36.83000183105469","36.83000183105469","","1960-11-09T00:00:00Z","","0" +"NM-02275","18.299999237060547","18.299999237060547","","1998-02-10T00:00:00Z","","0" +"NM-12536","14.359999656677246","14.359999656677246","","1960-01-13T00:00:00Z","","0" +"NM-04464","97.08000183105469","97.08000183105469","","1960-01-06T00:00:00Z","","0" +"NM-16789","8.390000343322754","8.390000343322754","","1954-05-22T00:00:00Z","","0" +"NM-03297","77","77","","1979-01-19T00:00:00Z","","0" +"NM-14351","591.1900024414062","591.1900024414062","","1962-07-01T00:00:00Z","","0" +"UC-0043","212.8000030517578","212.8000030517578","R","2008-02-02T00:00:00Z","","0" +"DE-0280","83.94999694824219","83.94999694824219","","2016-09-28T00:00:00Z","","0" +"NM-11397","51.91999816894531","51.91999816894531","","1952-03-22T00:00:00Z","","0" +"NM-05368","147.83999633789062","147.83999633789062","","1982-02-10T00:00:00Z","","0" +"NM-09218","-155.77000427246094","-155.77000427246094","","1907-12-10T00:00:00Z","","0" +"NM-11649","34.65999984741211","34.65999984741211","","1975-01-16T00:00:00Z","","0" +"NM-02419","168.3300018310547","168.3300018310547","","1983-02-02T00:00:00Z","","0" +"NM-28256","253.2899932861328","253.2899932861328","","2014-07-15T00:00:00Z","","0" +"NM-05920","61.66999816894531","61.66999816894531","","1949-09-01T00:00:00Z","","0" +"SB-0442","172.10000610351562","172.10000610351562","","2009-10-30T00:00:00Z","","0" +"NM-28255","55.810001373291016","55.810001373291016","","1971-11-05T00:00:00Z","","0" +"NM-05345","72.08999633789062","72.08999633789062","","1944-01-11T00:00:00Z","","0" +"SB-0299","152.8699951171875","152.8699951171875","","2020-06-15T00:00:00Z","","0" +"SB-0426","107.88999938964844","107.88999938964844","","1970-01-07T00:00:00Z","","0" +"NM-00494","41.130001068115234","41.130001068115234","","1966-09-29T00:00:00Z","","0" +"NM-13962","-24.100000381469727","-24.100000381469727","","1910-12-16T00:00:00Z","","0" +"NM-01006","309.29998779296875","309.29998779296875","","1995-01-06T00:00:00Z","","0" +"NM-02702","-26.209999084472656","-26.209999084472656","","1995-11-15T00:00:00Z","","0" +"NM-01971","7.900000095367432","7.900000095367432","","1984-01-15T00:00:00Z","","0" +"NM-03361","678","678","","1989-01-20T00:00:00Z","","0" +"NM-04704","63.04999923706055","63.04999923706055","","1947-01-11T00:00:00Z","","0" +"NM-09528","79.2699966430664","79.2699966430664","","1980-09-30T00:00:00Z","","0" +"NM-01124","138.83999633789062","138.83999633789062","","2007-04-24T00:00:00Z","","0" +"NM-05762","59.869998931884766","59.869998931884766","","1961-02-01T00:00:00Z","","0" +"NM-17180","29.5","29.5","","1942-01-29T00:00:00Z","","0" +"NM-24525","104.16000366210938","104.16000366210938","","1973-05-29T00:00:00Z","","0" +"NM-10635","29.1200008392334","29.1200008392334","","1956-09-17T00:00:00Z","","0" +"NM-10955","55.75","55.75","","1971-03-03T00:00:00Z","","0" +"NM-28250","83.12999725341797","83.12999725341797","","1995-09-15T00:00:00Z","","0" +"NM-10092","58.349998474121094","58.349998474121094","","1953-09-03T00:00:00Z","","0" +"NM-02518","8","8","","1964-04-15T00:00:00Z","","0" +"NM-18720","333.1000061035156","333.1000061035156","","1987-04-03T00:00:00Z","","0" +"TO-0477","136.8000030517578","136.8000030517578","","1950-07-12T00:00:00Z","","0" +"NM-12649","74.80000305175781","74.80000305175781","","1943-01-08T00:00:00Z","","0" +"NM-07283","401.5","401.5","","2010-10-29T00:00:00Z","","0" +"NM-13873","-6.199999809265137","-6.199999809265137","","1907-03-06T00:00:00Z","","0" +"NM-06377","77.47000122070312","77.47000122070312","","1948-01-14T00:00:00Z","","0" +"NM-02114","2.950000047683716","2.950000047683716","","1953-03-14T00:00:00Z","","0" +"SB-0299","145.3800048828125","145.3800048828125","","2009-08-10T00:00:00Z","","0" +"SM-0224","410","408.8500061035156","","2008-05-20T00:00:00Z","","1.149999976158142" +"NM-21590","3.9800000190734863","3.9800000190734863","Z","2010-02-17T00:00:00Z","","0" +"NM-02949","164.35000610351562","164.35000610351562","","1958-06-04T00:00:00Z","","0" +"NM-17034","38.099998474121094","38.099998474121094","","1949-11-19T00:00:00Z","","0" +"NM-08990","81.94999694824219","81.94999694824219","","1948-08-02T00:00:00Z","","0" +"NM-13711","263.8699951171875","263.8699951171875","","1950-05-09T00:00:00Z","","0" +"NM-02794","77.2300033569336","77.2300033569336","","1971-01-21T00:00:00Z","","0" +"BC-0272","","273","","2020-07-25T00:00:00Z","","1.309999942779541" +"NM-02527","9.800000190734863","9.800000190734863","","1970-06-15T00:00:00Z","","0" +"NM-02152","9.5","9.5","","1997-11-15T00:00:00Z","","0" +"NM-07593","-10.239999771118164","-10.239999771118164","","1910-02-01T00:00:00Z","","0" +"NM-09304","-128.0500030517578","-128.0500030517578","","1905-01-15T00:00:00Z","","0" +"NM-02621","34.689998626708984","34.689998626708984","","1961-03-28T00:00:00Z","","0" +"NM-14396","6.460000038146973","6.460000038146973","","1976-02-13T00:00:00Z","","0" +"BC-0255","271.4800109863281","271.4800109863281","","2019-04-22T00:00:00Z","","0" +"NM-23290","25.780000686645508","25.780000686645508","","1988-02-05T00:00:00Z","","0" +"NM-00367","128.5500030517578","128.5500030517578","Z","2001-04-25T00:00:00Z","","0" +"NM-24711","259.6199951171875","259.6199951171875","","1964-06-16T00:00:00Z","","0" +"SO-0126","12.210000038146973","11.649999618530273","","2021-09-19T00:00:00Z","0001-01-01T08:55:00Z","0.5600000023841858" +"NM-17665","74.9800033569336","74.9800033569336","","1947-01-24T00:00:00Z","","0" +"NM-18653","69.33999633789062","69.33999633789062","","1960-01-28T00:00:00Z","","0" +"NM-04961","229","229","P","1961-01-12T00:00:00Z","","0" +"NM-00938","274.04998779296875","274.04998779296875","","1998-01-06T00:00:00Z","","0" +"NM-08541","356.67999267578125","356.67999267578125","","1983-01-17T00:00:00Z","","0" +"EB-263","4.550000190734863","4.550000190734863","","2002-02-12T00:00:00Z","","0" +"NM-12605","37.59000015258789","37.59000015258789","","1938-01-11T00:00:00Z","","0" +"NM-16987","55.81999969482422","55.81999969482422","","1977-05-18T00:00:00Z","","0" +"EB-266","7.840000152587891","7.840000152587891","","2010-01-11T00:00:00Z","","0" +"BC-0100","68.66000366210938","68.66000366210938","","2012-09-11T00:00:00Z","","0" +"NM-01896","7.699999809265137","7.699999809265137","","1997-10-03T00:00:00Z","","0" +"NM-28256","149.88999938964844","149.88999938964844","","1981-10-05T00:00:00Z","","0" +"NM-02748","41.2599983215332","41.2599983215332","","1952-01-18T00:00:00Z","","0" +"NM-03313","314.0799865722656","314.0799865722656","R","1984-04-30T00:00:00Z","","0" +"NM-01835","131.1300048828125","131.1300048828125","","2004-01-29T00:00:00Z","","0" +"NM-00753","479.80999755859375","479.80999755859375","","2010-10-06T00:00:00Z","","0" +"NM-02143","146.35000610351562","146.35000610351562","","1992-01-31T00:00:00Z","","0" +"NM-22966","786","786","","1983-10-25T00:00:00Z","","0" +"NM-08708","162.08999633789062","162.08999633789062","","1986-06-03T00:00:00Z","","0" +"NM-02732","121.37999725341797","121.37999725341797","","1978-02-13T00:00:00Z","","0" +"NM-28252","56.54999923706055","56.54999923706055","","1986-04-25T00:00:00Z","","0" +"NM-13979","46.189998626708984","46.189998626708984","","1957-07-30T00:00:00Z","","0" +"NM-14814","82.75","82.75","","1984-02-08T00:00:00Z","","0" +"NM-06030","29.719999313354492","29.719999313354492","","2004-03-01T00:00:00Z","","0" +"NM-05114","","","D","1994-02-16T00:00:00Z","","0" +"EB-338","184.82000732421875","184.82000732421875","","2006-03-28T00:00:00Z","","0" +"NM-15326","86.48999786376953","86.48999786376953","","1985-01-10T00:00:00Z","","0" +"NM-07435","208.4499969482422","208.4499969482422","P","1953-04-03T00:00:00Z","","0" +"NM-00498","58.560001373291016","58.560001373291016","","2013-12-11T00:00:00Z","","0" +"EB-209","65.9000015258789","64.6500015258789","","1985-02-26T00:00:00Z","","1.25" +"NM-07087","141.55999755859375","141.55999755859375","","1981-03-10T00:00:00Z","","0" +"NM-00855","173.4199981689453","173.4199981689453","","1994-02-01T00:00:00Z","","0" +"NM-19430","72.02999877929688","72.02999877929688","","1955-02-03T00:00:00Z","","0" +"NM-24626","313.9200134277344","313.9200134277344","","1982-07-21T00:00:00Z","","0" +"NM-08568","98.5999984741211","98.5999984741211","","1964-01-09T00:00:00Z","","0" +"NM-14924","75.55000305175781","75.55000305175781","","1955-01-13T00:00:00Z","","0" +"DE-0260","86.94999694824219","86.94999694824219","","2017-06-05T00:00:00Z","","0" +"NM-18879","165","165","","1979-10-07T00:00:00Z","","0" +"NM-02037","154","154","","1982-02-01T00:00:00Z","","0" +"NM-01955","5.099999904632568","5.099999904632568","","1981-12-15T00:00:00Z","","0" +"EB-481","715.3300170898438","715.3300170898438","P","2000-08-31T00:00:00Z","","0" +"NM-10262","53.849998474121094","53.849998474121094","","1981-03-02T00:00:00Z","","0" +"NM-12516","-93.4000015258789","-93.4000015258789","","1909-09-24T00:00:00Z","","0" +"NM-27493","23.219999313354492","23.219999313354492","","2008-01-11T00:00:00Z","","0" +"NM-26632","26.170000076293945","26.170000076293945","","2012-02-09T00:00:00Z","","0" +"NM-02288","4.510000228881836","4.510000228881836","","2006-07-11T00:00:00Z","","0" +"NM-10598","12.600000381469727","12.600000381469727","","1938-01-18T00:00:00Z","","0" +"NM-13315","37.06999969482422","37.06999969482422","","1994-01-26T00:00:00Z","","0" +"BC-0353","","277.1000061035156","","2020-07-26T00:00:00Z","","0" +"SB-0265","136.33999633789062","136.33999633789062","","1953-01-28T00:00:00Z","","0" +"NM-02758","259.3900146484375","259.3900146484375","","1943-09-10T00:00:00Z","","0" +"EB-335","79.5","85","","2004-02-27T00:00:00Z","","-5.5" +"NM-21380","64.04000091552734","64.04000091552734","","1971-01-26T00:00:00Z","","0" +"NM-04569","73.6500015258789","73.6500015258789","","1954-03-25T00:00:00Z","","0" +"NM-17863","37.790000915527344","37.790000915527344","","1966-01-07T00:00:00Z","","0" +"NM-28254","55.599998474121094","55.599998474121094","","1947-04-05T00:00:00Z","","0" +"SV-0110","333.70001220703125","331.7833557128906","","2016-06-11T00:00:00Z","","1.9166666269302368" +"NM-17716","3.2300000190734863","3.2300000190734863","","1945-10-15T00:00:00Z","","0" +"ED-0268","80.69999694824219","80.69999694824219","","1948-03-12T00:00:00Z","","0" +"NM-27888","58.119998931884766","58.119998931884766","","1974-10-17T00:00:00Z","","0" +"NM-02068","40.7400016784668","40.7400016784668","","1963-01-05T00:00:00Z","","0" +"EB-695","112.05999755859375","110.16999816894531","","2019-04-16T00:00:00Z","0001-01-01T11:16:00Z","1.8899999856948853" +"NM-27351","139.50999450683594","139.50999450683594","","1972-03-08T00:00:00Z","","0" +"NM-24933","5.559999942779541","5.559999942779541","","1959-04-26T00:00:00Z","","0" +"WL-0089","61.04166793823242","58.491668701171875","","1999-04-08T00:00:00Z","","2.549999952316284" +"NM-14617","151.75","151.75","","1963-01-28T00:00:00Z","","0" +"NM-12911","95.97000122070312","95.97000122070312","","1960-03-22T00:00:00Z","","0" +"NM-03518","36.59000015258789","36.59000015258789","","1982-02-04T00:00:00Z","","0" +"NM-28251","86.62999725341797","86.62999725341797","","1984-03-25T00:00:00Z","","0" +"NM-10995","27.579999923706055","27.579999923706055","","1964-01-07T00:00:00Z","","0" +"NM-03679","184.27000427246094","184.27000427246094","","2000-11-02T00:00:00Z","","0" +"NM-14691","175.7100067138672","175.7100067138672","","1995-02-14T00:00:00Z","","0" +"DE-0239","112.22000122070312","112.22000122070312","","2006-12-13T00:00:00Z","","0" +"NM-12795","19.059999465942383","19.059999465942383","","1981-02-26T00:00:00Z","","0" +"SB-0360","76","76","","1958-01-16T00:00:00Z","","0" +"NM-06790","532.7999877929688","532.7999877929688","","2009-06-16T00:00:00Z","","0" +"NM-13145","11.319999694824219","11.319999694824219","","1970-11-23T00:00:00Z","","0" +"NM-03478","518.5999755859375","518.5999755859375","","1981-09-25T00:00:00Z","","0" +"NM-07101","30.850000381469727","30.850000381469727","","2003-10-09T00:00:00Z","","0" +"NM-11994","31.290000915527344","31.290000915527344","","1941-11-14T00:00:00Z","","0" +"NM-12748","44.75","44.75","","1937-09-29T00:00:00Z","","0" +"NM-07074","42.93000030517578","42.93000030517578","","1939-03-16T00:00:00Z","","0" +"NM-01897","9.09000015258789","9.09000015258789","","1991-09-26T00:00:00Z","","0" +"NM-27971","","","D","1984-02-27T00:00:00Z","","0" +"DE-0112","41.75","41.75","","2009-12-22T00:00:00Z","","0" +"NM-07815","20.799999237060547","20.799999237060547","","1948-05-24T00:00:00Z","","0" +"NM-07889","24.959999084472656","24.959999084472656","","1996-01-25T00:00:00Z","","0" +"TB-0088","41.56999969482422","40.91999816894531","R","2011-06-14T00:00:00Z","","0.6499999761581421" +"NM-17395","56.02000045776367","56.02000045776367","","1959-01-06T00:00:00Z","","0" +"NM-03445","66.80000305175781","66.80000305175781","","2007-08-29T00:00:00Z","","0" +"NM-28257","60.119998931884766","60.119998931884766","","1951-09-25T00:00:00Z","","0" +"NM-16840","62.5099983215332","62.5099983215332","","1979-10-09T00:00:00Z","","0" +"SB-0375","64.69999694824219","64.69999694824219","","2008-01-11T00:00:00Z","","0" +"NM-00004","127.6500015258789","127.6500015258789","","1957-12-17T00:00:00Z","","0" +"NM-13751","-2.440000057220459","-2.440000057220459","","1908-09-02T00:00:00Z","","0" +"NM-21197","30.190000534057617","30.190000534057617","","1955-12-02T00:00:00Z","","0" +"NM-28256","229.36000061035156","229.36000061035156","","2001-06-05T00:00:00Z","","0" +"NM-20622","68.05000305175781","68.05000305175781","","1964-03-05T00:00:00Z","","0" +"NM-13121","7.300000190734863","7.300000190734863","","1974-06-03T00:00:00Z","","0" +"NM-11570","92.58000183105469","92.58000183105469","","1950-11-09T00:00:00Z","","0" +"AB-0123","546.27001953125","546.27001953125","","2000-08-24T00:00:00Z","","" +"NM-01955","7.099999904632568","7.099999904632568","","1950-01-15T00:00:00Z","","0" +"NM-05972","25.309999465942383","25.309999465942383","","1942-03-11T00:00:00Z","","0" +"NM-04657","5.039999961853027","5.039999961853027","","1954-03-08T00:00:00Z","","0" +"NM-09813","6.760000228881836","6.760000228881836","","1944-01-11T00:00:00Z","","0" +"NM-12600","60.25","60.25","","1939-09-08T00:00:00Z","","0" +"NM-05566","170.24000549316406","170.24000549316406","","1965-10-20T00:00:00Z","","0" +"NM-13864","46.470001220703125","46.470001220703125","","1956-07-24T00:00:00Z","","0" +"NM-21308","22.729999542236328","22.729999542236328","","1959-07-07T00:00:00Z","","0" +"NM-08476","16.8700008392334","16.8700008392334","","2015-12-16T00:00:00Z","","0" +"MI-0210","98.2699966430664","98.2699966430664","","1947-04-29T00:00:00Z","","0" +"NM-02586","274.3399963378906","274.3399963378906","","1974-10-01T00:00:00Z","","0" +"NM-06277","228.50999450683594","228.50999450683594","","2007-01-31T00:00:00Z","","0" +"UC-0034","95.20999908447266","95.20999908447266","","1983-01-19T00:00:00Z","","0" +"NM-02710","44.349998474121094","44.349998474121094","","2003-02-04T00:00:00Z","","0" +"NM-23051","69.36000061035156","69.36000061035156","","1955-12-07T00:00:00Z","","0" +"NM-02831","39.70000076293945","39.70000076293945","","1998-09-25T00:00:00Z","","0" +"NM-28019","478.1400146484375","478.1400146484375","S","2015-04-27T00:00:00Z","","0" +"NM-16943","18.459999084472656","18.459999084472656","","1945-11-23T00:00:00Z","","0" +"NM-28024","480.0299987792969","480.0299987792969","S","2015-04-18T00:00:00Z","","0" +"NM-27571","18.309999465942383","18.309999465942383","","1963-12-05T00:00:00Z","","0" +"NM-13865","4.579999923706055","4.579999923706055","","1958-04-21T00:00:00Z","","0" +"SB-0299","144.83999633789062","144.83999633789062","","2014-05-20T00:00:00Z","","0" +"NM-02702","62.54999923706055","62.54999923706055","","1979-07-01T00:00:00Z","","0" +"NM-01875","190.3699951171875","190.3699951171875","","1985-01-08T00:00:00Z","","0" +"NM-03002","66.3499984741211","66.3499984741211","","1974-01-04T00:00:00Z","","0" +"NM-00484","84.62000274658203","84.62000274658203","R","2001-01-03T00:00:00Z","","0" +"NM-16588","36.72999954223633","36.72999954223633","","1972-03-07T00:00:00Z","","0" +"NM-06859","57.58000183105469","57.58000183105469","","1976-12-16T00:00:00Z","","0" +"SA-0018","283.2799987792969","281.95001220703125","","2019-02-19T00:00:00Z","0001-01-01T12:58:00Z","1.3300000429153442" +"EB-337","201.97999572753906","201.97999572753906","","2012-08-08T00:00:00Z","","0" +"NM-13594","43.72999954223633","43.72999954223633","","1962-06-06T00:00:00Z","","0" +"NM-22889","431","431","","1989-01-23T00:00:00Z","","0" +"NM-27327","11.119999885559082","11.119999885559082","","1958-01-08T00:00:00Z","","0" +"NM-13334","-67.98999786376953","-67.98999786376953","","1912-02-11T00:00:00Z","","0" +"NM-01919","103.94000244140625","103.94000244140625","","1992-02-06T00:00:00Z","","0" +"EB-359","249.1999969482422","248","","2002-03-29T00:00:00Z","","1.2000000476837158" +"NM-28257","132","132","","1955-07-25T00:00:00Z","","0" +"DE-0212","135.80999755859375","135.80999755859375","","2013-08-06T00:00:00Z","","0" +"MI-0036","31.950000762939453","31.950000762939453","","1947-09-22T00:00:00Z","","0" +"SB-0097","97.5999984741211","97.5999984741211","","1974-02-12T00:00:00Z","","0" +"NM-28252","45.7400016784668","45.7400016784668","","2012-01-25T00:00:00Z","","0" +"NM-01889","13.569999694824219","13.569999694824219","","1990-08-29T00:00:00Z","","0" +"SB-0911","459.3500061035156","458.5500183105469","","2020-08-19T00:00:00Z","0001-01-01T14:24:00Z","0.800000011920929" +"NM-14026","59.58000183105469","59.58000183105469","","1976-04-20T00:00:00Z","","0" +"NM-05516","10.5","10.5","","1977-03-15T00:00:00Z","","0" +"NM-01277","156","156","","1962-02-12T00:00:00Z","","0" +"NM-12449","87.51000213623047","87.51000213623047","","1979-10-12T00:00:00Z","","0" +"NM-05235","123.7699966430664","123.7699966430664","R","1970-12-02T00:00:00Z","","0" +"NM-10063","8.300000190734863","8.300000190734863","","1982-01-29T00:00:00Z","","0" +"NM-10092","42.61000061035156","42.61000061035156","","1951-11-20T00:00:00Z","","0" +"DE-0111","36.619998931884766","36.619998931884766","","2010-09-13T00:00:00Z","","0" +"NM-12239","13.430000305175781","13.430000305175781","","1969-01-21T00:00:00Z","","0" +"NM-11339","7.070000171661377","7.070000171661377","","1976-05-19T00:00:00Z","","0" +"SM-0260","","","D","2015-06-17T00:00:00Z","","1.8300000429153442" +"NM-00296","13.579999923706055","13.579999923706055","","2015-05-27T00:00:00Z","","0" +"NM-09817","60.900001525878906","60.900001525878906","","1950-01-10T00:00:00Z","","0" +"NM-02549","59.849998474121094","59.849998474121094","","1984-02-01T00:00:00Z","","0" +"NM-02527","10.199999809265137","10.199999809265137","","1995-02-15T00:00:00Z","","0" +"NM-00783","16.739999771118164","16.739999771118164","","2014-03-28T00:00:00Z","","0" +"NM-02006","8","8","","1990-12-15T00:00:00Z","","0" +"NM-22239","30.190000534057617","30.190000534057617","","2006-10-04T00:00:00Z","","0" +"NM-00662","33.59000015258789","33.59000015258789","","1957-03-05T00:00:00Z","","0" +"NM-24338","51.70000076293945","51.70000076293945","","1980-09-20T00:00:00Z","","0" +"NM-26720","132.6999969482422","132.6999969482422","A","2008-09-04T00:00:00Z","","0" +"OG-0046","386","384.6000061035156","","2023-01-25T00:00:00Z","0001-01-01T16:09:00Z","1.399999976158142" +"EB-256","240.10000610351562","240.10000610351562","","1974-07-26T00:00:00Z","","0" +"NM-00643","108.47000122070312","108.47000122070312","","1978-03-01T00:00:00Z","","0" +"NM-13010","4.070000171661377","4.070000171661377","","1978-10-16T00:00:00Z","","0" +"DE-0200","53.34000015258789","53.34000015258789","","2014-06-24T00:00:00Z","","0" +"NM-13297","-19.479999542236328","-19.479999542236328","","1911-11-17T00:00:00Z","","0" +"NM-06990","49.529998779296875","49.529998779296875","","1961-01-06T00:00:00Z","","0" +"NM-27797","46.099998474121094","46.099998474121094","","2006-06-19T00:00:00Z","","0" +"NM-06893","13.569999694824219","13.569999694824219","","1962-08-16T00:00:00Z","","0" +"NM-02947","138.52000427246094","138.52000427246094","","1966-02-03T00:00:00Z","","0" +"NM-13888","3.549999952316284","3.549999952316284","","1960-06-15T00:00:00Z","","0" +"NM-13927","-54.83000183105469","-54.83000183105469","","1960-12-28T00:00:00Z","","0" +"NM-16094","158.30999755859375","158.30999755859375","","1961-04-05T00:00:00Z","","0" +"DE-0123","37.209999084472656","37.209999084472656","","2003-07-14T00:00:00Z","","0" +"NM-09291","12","12","","1991-03-29T00:00:00Z","","0" +"NM-02393","62.709999084472656","62.709999084472656","","1933-10-15T00:00:00Z","","0" +"NM-08308","24.1299991607666","24.1299991607666","","1950-11-13T00:00:00Z","","0" +"EB-276","175.3300018310547","175.3300018310547","","1976-11-30T00:00:00Z","","0" +"NM-00916","208.91000366210938","208.91000366210938","","1986-09-04T00:00:00Z","","0" +"EB-473","381.04998779296875","378.25","","2012-01-27T00:00:00Z","","2.799999952316284" +"NM-09860","32.880001068115234","32.880001068115234","","1951-01-20T00:00:00Z","","0" +"NM-24942","9.369999885559082","9.369999885559082","","1974-06-27T00:00:00Z","","0" +"NM-12739","29.600000381469727","29.600000381469727","","1949-07-28T00:00:00Z","","0" +"NM-03344","78.11000061035156","78.11000061035156","R","1984-05-01T00:00:00Z","","0" +"NM-07109","33.38999938964844","33.38999938964844","","1955-09-29T00:00:00Z","","0" +"NM-11017","32.0099983215332","32.0099983215332","","1950-01-17T00:00:00Z","","0" +"EB-478","275","275","","1993-08-31T00:00:00Z","","0" +"NM-03661","37.349998474121094","37.349998474121094","","1966-02-07T00:00:00Z","","0" +"NM-02290","183.19000244140625","183.19000244140625","","1987-01-29T00:00:00Z","","0" +"NM-22565","13.920000076293945","13.920000076293945","","1993-07-30T00:00:00Z","","0" +"NM-11746","124.5","124.5","","1959-01-14T00:00:00Z","","0" +"NM-12253","176.5","176.5","","1962-01-11T00:00:00Z","","0" +"NM-01881","149.49000549316406","149.49000549316406","P","2008-01-11T00:00:00Z","","0" +"NM-02831","38.63999938964844","38.63999938964844","","1954-08-01T00:00:00Z","","0" +"NM-01986","6.900000095367432","6.900000095367432","","1994-01-15T00:00:00Z","","0" +"WL-0021","44","43.29999923706055","","2003-06-01T00:00:00Z","","0.699999988079071" +"NM-00202","","","D","2005-02-17T00:00:00Z","","0" +"NM-10674","-42.58000183105469","-42.58000183105469","","1916-08-02T00:00:00Z","","0" +"NM-00302","38.77000045776367","38.77000045776367","","1996-01-17T00:00:00Z","","0" +"TV-273","67.31999969482422","64.87000274658203","","2004-11-04T00:00:00Z","","2.450000047683716" +"NM-07159","84.76000213623047","84.76000213623047","","2006-10-04T00:00:00Z","","0" +"NM-18832","289.6499938964844","289.6499938964844","","1955-07-25T00:00:00Z","","0" +"NM-19682","262.95001220703125","262.95001220703125","","1975-06-20T00:00:00Z","","0" +"NM-16395","136.83999633789062","136.83999633789062","","1967-01-10T00:00:00Z","","0" +"NM-03046","10.5600004196167","10.5600004196167","","1991-01-09T00:00:00Z","","0" +"BW-0450","173","173","","1968-09-09T00:00:00Z","","0" +"NM-01781","334.1000061035156","334.1000061035156","","1969-01-13T00:00:00Z","","0" +"NM-02287","4.679999828338623","4.679999828338623","","1992-05-26T00:00:00Z","","0" +"NM-03156","285.5899963378906","285.5899963378906","","1978-01-06T00:00:00Z","","0" +"NM-05093","105.25","105.25","","1971-02-04T00:00:00Z","","0" +"NM-12024","66.62999725341797","66.62999725341797","","1962-01-29T00:00:00Z","","0" +"NM-03100","86.0199966430664","86.0199966430664","","2005-02-16T00:00:00Z","","0" +"SA-0031","141.5399932861328","140.5399932861328","","2010-05-10T00:00:00Z","","1" +"UC-0107","90.01000213623047","90.01000213623047","","2013-03-07T00:00:00Z","","0" +"NM-00572","82.58000183105469","82.58000183105469","","1991-02-13T00:00:00Z","","0" +"NM-16643","17.540000915527344","17.540000915527344","","1952-07-26T00:00:00Z","","0" +"NM-07509","121.19999694824219","121.19999694824219","","1955-12-28T00:00:00Z","","0" +"NM-13033","284.1300048828125","284.1300048828125","","1961-01-05T00:00:00Z","","0" +"NM-11919","2.2300000190734863","2.2300000190734863","","1955-05-16T00:00:00Z","","0" +"NM-26794","628.0499877929688","628.0499877929688","","1971-12-20T00:00:00Z","0001-01-01T12:40:00Z","0" +"NM-28258","109.87000274658203","109.87000274658203","","2001-01-25T00:00:00Z","","0" +"NM-12374","12.630000114440918","12.630000114440918","","1957-01-15T00:00:00Z","","0" +"NM-27446","30.309999465942383","30.309999465942383","R","2001-02-16T00:00:00Z","","0" +"NM-17716","2.5399999618530273","2.5399999618530273","","1943-09-21T00:00:00Z","","0" +"EB-479","37","37","","1983-03-31T00:00:00Z","","0" +"NM-01245","180","180","","1995-10-18T00:00:00Z","","0" +"NM-22971","12.890000343322754","12.890000343322754","Z","2011-10-11T00:00:00Z","","0" +"SO-0171","7.150000095367432","6.220000267028809","","2016-07-19T00:00:00Z","","0.9300000071525574" +"EB-161","445","443.75","","1992-09-30T00:00:00Z","","1.25" +"NM-02583","145.89999389648438","145.89999389648438","","1962-01-24T00:00:00Z","","0" +"NM-22497","56.27000045776367","56.27000045776367","","1953-02-11T00:00:00Z","","0" +"NM-13164","-24.100000381469727","-24.100000381469727","","1915-07-30T00:00:00Z","","0" +"NM-13914","-6.199999809265137","-6.199999809265137","","1912-06-05T00:00:00Z","","0" +"NM-06676","7.699999809265137","7.699999809265137","","1982-12-15T00:00:00Z","","0" +"NM-17806","124.9000015258789","124.9000015258789","","1972-03-16T00:00:00Z","","0" +"NM-11005","31.59000015258789","31.59000015258789","","1989-01-26T00:00:00Z","","0" +"BC-0238","65.08000183105469","65.08000183105469","","2019-07-22T00:00:00Z","","0" +"NM-28258","150.14999389648438","150.14999389648438","","2013-12-27T00:00:00Z","","0" +"NM-02207","10.300000190734863","10.300000190734863","","1991-02-08T00:00:00Z","","0" +"NM-02915","90.75","90.75","","1974-01-07T00:00:00Z","","0" +"NM-28012","478.2200012207031","478.2200012207031","S","2015-05-26T00:00:00Z","","0" +"BC-0157","","280.5","","2020-07-31T00:00:00Z","","1.4299999475479126" +"QY-0719","186.3000030517578","186.3000030517578","","1955-08-17T00:00:00Z","","0" +"NM-02453","175","175","","2002-01-11T00:00:00Z","","0" +"NM-18145","71.88999938964844","71.88999938964844","","2004-12-16T00:00:00Z","","0" +"NM-24338","55.27000045776367","55.27000045776367","","1978-03-08T00:00:00Z","","0" +"NM-12963","60.709999084472656","60.709999084472656","","1976-05-07T00:00:00Z","","0" +"BC-0178","396.54998779296875","396.54998779296875","","2013-12-10T00:00:00Z","","0" +"NM-22513","69.63999938964844","69.63999938964844","P","1952-10-17T00:00:00Z","","0" +"NM-28255","122.29000091552734","122.29000091552734","","2008-03-25T00:00:00Z","","0" +"DE-0131","33.310001373291016","33.310001373291016","","2003-07-14T00:00:00Z","","0" +"NM-28259","122.26000213623047","122.26000213623047","","2015-04-24T00:00:00Z","","0" +"NM-00498","57.560001373291016","57.560001373291016","","2001-11-19T00:00:00Z","","0" +"SM-0058","190","188.6999969482422","","2007-04-19T00:00:00Z","","1.2999999523162842" +"NM-07141","87.30999755859375","87.30999755859375","","2006-01-10T00:00:00Z","","0" +"NM-12775","-37.959999084472656","-37.959999084472656","","1911-02-07T00:00:00Z","","0" +"SB-0299","117.44000244140625","117.44000244140625","","1997-12-20T00:00:00Z","","0" +"NM-01049","357.67999267578125","357.67999267578125","","2006-02-21T00:00:00Z","","0" +"NM-27327","9.350000381469727","9.350000381469727","","1954-03-10T00:00:00Z","","0" +"BC-0113","","60.04999923706055","","2021-10-18T00:00:00Z","","1.1799999475479126" +"NM-21421","198.9199981689453","198.9199981689453","","2011-05-11T00:00:00Z","","0" +"NM-00018","36.77000045776367","36.77000045776367","","1960-01-25T00:00:00Z","","0" +"NM-00266","58.970001220703125","58.970001220703125","","2003-02-13T00:00:00Z","","0" +"NM-10890","13.850000381469727","13.850000381469727","","1952-01-15T00:00:00Z","","0" +"NM-00672","51.13999938964844","51.13999938964844","","1956-01-25T00:00:00Z","","0" +"NM-04742","55.7599983215332","55.7599983215332","","1965-10-21T00:00:00Z","","0" +"NM-08524","10.300000190734863","10.300000190734863","","1962-12-15T00:00:00Z","","0" +"NM-17635","4.789999961853027","4.789999961853027","","1945-06-09T00:00:00Z","","0" +"SB-0299","149.1999969482422","149.1999969482422","","1978-08-05T00:00:00Z","","0" +"NM-22685","5.920000076293945","5.920000076293945","Z","2009-06-12T00:00:00Z","","0" +"NM-00925","193.2100067138672","193.2100067138672","","1976-01-06T00:00:00Z","","0" +"NM-28250","104.2699966430664","104.2699966430664","","1978-12-25T00:00:00Z","","0" +"NM-06162","75.55000305175781","75.55000305175781","","1983-02-02T00:00:00Z","","0" +"SB-0442","172.60000610351562","172.60000610351562","","2008-06-30T00:00:00Z","","0" +"NM-02452","111.6500015258789","111.6500015258789","","1972-02-15T00:00:00Z","","0" +"NM-01774","151.64999389648438","151.64999389648438","S","1956-03-16T00:00:00Z","","0" +"NM-02756","18.040000915527344","18.040000915527344","","1992-01-16T00:00:00Z","","0" +"NM-08357","5.5","5.5","","1968-02-16T00:00:00Z","","0" +"NM-02117","92.80000305175781","92.80000305175781","","1964-12-08T00:00:00Z","","0" +"NM-01796","8.199999809265137","8.199999809265137","","1977-04-15T00:00:00Z","","0" +"NM-03994","129.64999389648438","129.64999389648438","","1965-01-16T00:00:00Z","","0" +"NM-02442","70.55999755859375","70.55999755859375","","2006-09-19T00:00:00Z","","0" +"SA-0063","83.81999969482422","82.1500015258789","","2011-03-24T00:00:00Z","","1.6699999570846558" +"NM-17034","27.969999313354492","27.969999313354492","","1935-11-19T00:00:00Z","","0" +"NM-11130","7.75","7.75","","1981-01-12T00:00:00Z","","0" +"EB-218","264.42999267578125","264.42999267578125","A","2007-09-12T00:00:00Z","","0" +"NM-10988","76.69000244140625","76.69000244140625","","1975-01-08T00:00:00Z","","0" +"NM-00395","33.66999816894531","33.66999816894531","","1950-09-21T00:00:00Z","","0" +"NM-01134","230.77000427246094","230.77000427246094","","1982-01-14T00:00:00Z","","0" +"NM-03444","51.77000045776367","51.77000045776367","Z","1997-03-05T00:00:00Z","","0" +"NM-06794","11.010000228881836","11.010000228881836","","1971-01-21T00:00:00Z","","0" +"NM-28252","65.06999969482422","65.06999969482422","","1983-10-05T00:00:00Z","","0" +"NM-12425","35.79999923706055","35.79999923706055","","1986-01-15T00:00:00Z","","0" +"EB-483","303","303","","1993-03-31T00:00:00Z","","0" +"SO-0127","12.510000228881836","11.050000190734863","","2022-10-22T00:00:00Z","0001-01-01T14:41:00Z","1.4600000381469727" +"NM-28253","17.139999389648438","17.139999389648438","","2013-01-15T00:00:00Z","","0" +"NM-02089","86.31999969482422","86.31999969482422","","1968-01-29T00:00:00Z","","0" +"NM-13203","45.06999969482422","45.06999969482422","","1966-02-09T00:00:00Z","","0" +"NM-17770","44.90999984741211","44.90999984741211","","1950-01-07T00:00:00Z","","0" +"NM-02909","66.52999877929688","66.52999877929688","","1990-01-24T00:00:00Z","","0" +"NM-12118","-51.81999969482422","-51.81999969482422","","1915-02-25T00:00:00Z","","0" +"NM-02370","84.08999633789062","84.08999633789062","","1982-02-02T00:00:00Z","","0" +"NM-00384","27.670000076293945","27.670000076293945","","1950-01-19T00:00:00Z","","0" +"EB-357","236.58599853515625","234.58599853515625","T","2002-02-03T00:00:00Z","","2" +"NM-01022","456.8900146484375","456.8900146484375","","2002-03-01T00:00:00Z","","0" +"NM-09669","79.69999694824219","79.69999694824219","","1948-11-29T00:00:00Z","","0" +"NM-12353","29.889999389648438","29.889999389648438","","1939-09-14T00:00:00Z","","0" +"NM-00484","82.8499984741211","82.8499984741211","","2011-12-21T00:00:00Z","","0" +"NM-04993","105.26000213623047","105.26000213623047","","1959-02-04T00:00:00Z","","0" +"NM-10008","50","50","","1911-09-01T00:00:00Z","","0" +"NM-13588","-24.100000381469727","-24.100000381469727","","1909-09-21T00:00:00Z","","0" +"NM-00079","58.619998931884766","58.619998931884766","","2017-12-21T00:00:00Z","0001-01-01T09:55:00Z","0" +"NM-19127","341.29998779296875","341.29998779296875","","1974-01-03T00:00:00Z","","0" +"NM-07775","32.83000183105469","32.83000183105469","","1976-01-30T00:00:00Z","","0" +"NM-28257","-1","-1","","1986-01-05T00:00:00Z","","0" +"NM-11388","42.099998474121094","42.099998474121094","","1934-09-21T00:00:00Z","","0" +"NM-28255","145.91000366210938","145.91000366210938","","1982-09-15T00:00:00Z","","0" +"NM-16712","45.54999923706055","45.54999923706055","","1987-01-29T00:00:00Z","","0" +"UC-0012","142.52999877929688","142.52999877929688","","2009-08-25T00:00:00Z","","0" +"NM-08976","84.87000274658203","84.87000274658203","","1976-02-18T00:00:00Z","","0" +"NM-02624","251.3800048828125","251.3800048828125","","2006-02-01T00:00:00Z","","0" +"NM-21519","31.459999084472656","31.459999084472656","R","1993-06-22T00:00:00Z","","0" +"NM-21893","5.659999847412109","5.659999847412109","Z","2009-03-11T00:00:00Z","","0" +"AB-0113","217.0399932861328","217.0399932861328","","2007-02-07T00:00:00Z","","" +"NM-28252","66.77999877929688","66.77999877929688","","1978-05-05T00:00:00Z","","0" +"NM-12911","73.87000274658203","73.87000274658203","","1948-11-05T00:00:00Z","","0" +"AB-0069","149.27000427246094","149.27000427246094","","1998-06-09T00:00:00Z","","" +"NM-06503","162.25","162.25","","1989-09-14T00:00:00Z","","0" +"NM-02797","4.440000057220459","4.440000057220459","","1978-05-22T00:00:00Z","","0" +"NM-00754","77.38999938964844","77.38999938964844","","2013-03-28T00:00:00Z","","0" +"EB-266","19.719999313354492","19.719999313354492","","2004-05-17T00:00:00Z","","0" +"NM-02352","7.400000095367432","7.400000095367432","","1991-04-15T00:00:00Z","","0" +"NM-17202","28.209999084472656","28.209999084472656","","1933-03-11T00:00:00Z","","0" +"TB-0040","47.91999816894531","47.06999969482422","","2009-07-24T00:00:00Z","","0.8500000238418579" +"NM-17716","5.789999961853027","5.789999961853027","","1948-07-27T00:00:00Z","","0" +"NM-28256","74.37999725341797","74.37999725341797","","1997-02-05T00:00:00Z","","0" +"NM-00704","25.579999923706055","25.579999923706055","","1955-05-17T00:00:00Z","","0" +"NM-03427","23.06999969482422","23.06999969482422","","2001-03-14T00:00:00Z","","0" +"WL-0090","47.83333206176758","45.453330993652344","","1986-10-30T00:00:00Z","","2.380000114440918" +"NM-02509","61.599998474121094","61.599998474121094","","1956-01-18T00:00:00Z","","0" +"NM-22015","26.34000015258789","26.34000015258789","R","1991-12-16T00:00:00Z","","0" +"NM-02772","63.459999084472656","63.459999084472656","","1966-11-01T00:00:00Z","","0" +"NM-13590","21.079999923706055","21.079999923706055","","1964-01-06T00:00:00Z","","0" +"NM-12184","-48.36000061035156","-48.36000061035156","","1909-06-25T00:00:00Z","","0" +"NM-00975","","","D","2016-01-25T00:00:00Z","","0" +"NM-02772","26.299999237060547","26.299999237060547","","1984-11-01T00:00:00Z","","0" +"NM-13922","-2.1600000858306885","-2.1600000858306885","","1912-04-04T00:00:00Z","","0" +"NM-10458","9.289999961853027","9.289999961853027","","1963-08-14T00:00:00Z","","0" +"NM-02357","150.4199981689453","150.4199981689453","","1970-12-01T00:00:00Z","","0" +"NM-02593","102.01000213623047","102.01000213623047","","1999-01-13T00:00:00Z","","0" +"NM-01295","107.91999816894531","107.91999816894531","","1982-07-01T00:00:00Z","","0" +"NM-19430","72.69999694824219","72.69999694824219","","1954-11-04T00:00:00Z","","0" +"NM-00378","67.91999816894531","67.91999816894531","R","2008-01-15T00:00:00Z","","0" +"NM-00031","52.79999923706055","52.79999923706055","","1959-04-18T00:00:00Z","","0" +"NM-21630","484.6000061035156","484.6000061035156","","1992-10-14T00:00:00Z","","0" +"TV-272","270.2200012207031","267.44000244140625","","2003-10-07T00:00:00Z","","2.7799999713897705" +"NM-15146","18","18","","1963-01-21T00:00:00Z","","0" +"NM-17446","70.75","70.75","","1961-01-12T00:00:00Z","","0" +"NM-07589","9.609999656677246","9.609999656677246","","1963-05-15T00:00:00Z","","0" +"NM-17253","23.15999984741211","23.15999984741211","","1933-02-12T00:00:00Z","","0" +"NM-10198","66.6500015258789","66.6500015258789","","1991-02-27T00:00:00Z","","0" +"NM-17466","31.920000076293945","31.920000076293945","","1949-01-07T00:00:00Z","","0" +"NM-05976","71.75","71.75","","1960-01-13T00:00:00Z","","0" +"NM-28182","212.30999755859375","212.30999755859375","","1978-01-26T00:00:00Z","","0" +"NM-04232","26.639999389648438","26.639999389648438","","1956-01-13T00:00:00Z","","0" +"NM-03256","27.739999771118164","27.739999771118164","","2000-01-12T00:00:00Z","","0" +"NM-13413","-100.30000305175781","-100.30000305175781","","1946-01-23T00:00:00Z","","0" +"NM-13368","-46.04999923706055","-46.04999923706055","","1909-09-20T00:00:00Z","","0" +"NM-19259","69.83999633789062","69.83999633789062","","1965-08-18T00:00:00Z","","0" +"NM-28259","85.69999694824219","85.69999694824219","","1979-02-25T00:00:00Z","","0" +"DE-0110","38.040000915527344","38.040000915527344","","2008-09-29T00:00:00Z","","0" +"NM-15189","177.42999267578125","177.42999267578125","","1989-11-29T00:00:00Z","","0" +"NM-10058","7.559999942779541","7.559999942779541","","1968-02-26T00:00:00Z","","0" +"NM-23309","103.04000091552734","103.04000091552734","","1964-03-09T00:00:00Z","","0" +"NM-14351","590.9000244140625","590.9000244140625","","1962-05-01T00:00:00Z","","0" +"NM-20776","28.110000610351562","28.110000610351562","","1957-02-06T00:00:00Z","","0" +"WL-0028","4.03000020980835","2.940000057220459","","2022-02-09T00:00:00Z","0001-01-01T11:12:00Z","1.090000033378601" +"NM-02518","8.300000190734863","8.300000190734863","","1981-01-15T00:00:00Z","","0" +"AB-0134","536.6199951171875","536.6199951171875","","2010-02-16T00:00:00Z","","" +"NM-28252","11.699999809265137","11.699999809265137","","1948-01-05T00:00:00Z","","0" +"NM-13299","85.5199966430664","85.5199966430664","","1981-02-19T00:00:00Z","","0" +"EB-220","126.55000305175781","126.55000305175781","","1979-04-06T00:00:00Z","","0" +"NM-00435","71.13999938964844","71.13999938964844","","2001-07-10T00:00:00Z","","0" +"NM-05872","32","32","","1933-03-11T00:00:00Z","","0" +"NM-10625","-16.100000381469727","-16.100000381469727","","1943-01-12T00:00:00Z","","0" +"SB-0056","84.30000305175781","84.30000305175781","","1972-02-11T00:00:00Z","","0" +"NM-20107","10.15999984741211","10.15999984741211","","1944-02-22T00:00:00Z","","0" +"NM-14069","-10.239999771118164","-10.239999771118164","","1910-12-15T00:00:00Z","","0" +"NM-08890","-98.0199966430664","-98.0199966430664","","1917-01-09T00:00:00Z","","0" +"NM-09824","-116.5","-116.5","","1907-12-10T00:00:00Z","","0" +"BC-0088","168.63999938964844","168.63999938964844","","2017-10-07T00:00:00Z","","0" +"NM-26613","25.56999969482422","25.56999969482422","","2013-02-26T00:00:00Z","","0" +"NM-17716","2.4600000381469727","2.4600000381469727","","1932-10-08T00:00:00Z","","0" +"PC-056","38.20000076293945","41.20000076293945","R","1997-05-29T00:00:00Z","","0" +"NM-02067","107.5999984741211","107.5999984741211","","2002-02-20T00:00:00Z","","0" +"NM-05516","11.300000190734863","11.300000190734863","","1974-07-15T00:00:00Z","","0" +"NM-02729","51.79999923706055","51.79999923706055","","1961-01-16T00:00:00Z","","0" +"NM-28161","","","F","1917-03-30T00:00:00Z","","0" +"NM-28259","113.76000213623047","113.76000213623047","","1961-10-15T00:00:00Z","","0" +"NM-06768","129.08999633789062","129.08999633789062","P","1992-12-10T00:00:00Z","","0" +"NM-19825","25.329999923706055","25.329999923706055","","1943-09-30T00:00:00Z","","0" +"NM-08125","337.5400085449219","337.5400085449219","","1954-03-08T00:00:00Z","","0" +"NM-03667","70.86000061035156","70.86000061035156","","1990-03-19T00:00:00Z","","0" +"LC-034","0.699999988079071","0","","2013-11-07T00:00:00Z","","0.699999988079071" +"QU-054","104.80999755859375","103.97999572753906","","2015-03-17T00:00:00Z","","0.8299999833106995" +"WL-0091","50.91666793823242","48.14666748046875","","1997-12-11T00:00:00Z","","2.7699999809265137" +"NM-04106","30.719999313354492","30.719999313354492","","1970-01-16T00:00:00Z","","0" +"EB-244","87.01000213623047","87.01000213623047","","1998-10-28T00:00:00Z","","0" +"NM-21268","7.190000057220459","7.190000057220459","Z","2008-10-27T00:00:00Z","","0" +"NM-28258","201.0500030517578","201.0500030517578","","2014-07-25T00:00:00Z","","0" +"NM-11359","191","191","","1975-01-15T00:00:00Z","","0" +"NM-07544","55.68000030517578","55.68000030517578","","1986-01-22T00:00:00Z","","0" +"NM-08045","84.83999633789062","84.83999633789062","Z","1990-02-28T00:00:00Z","","0" +"DE-0112","41.619998931884766","41.619998931884766","","2011-09-14T00:00:00Z","","0" +"NM-05921","52.150001525878906","52.150001525878906","","1931-09-12T00:00:00Z","","0" +"NM-00185","14.399999618530273","14.399999618530273","","1985-02-01T00:00:00Z","","0" +"NM-01841","272.6199951171875","272.6199951171875","","1992-10-19T00:00:00Z","","0" +"NM-08758","7.480000019073486","7.480000019073486","","1956-03-06T00:00:00Z","","0" +"PC-025","85.45999908447266","88.36000061035156","","1997-10-02T00:00:00Z","","0" +"NM-01892","21.280000686645508","21.280000686645508","","2013-09-11T00:00:00Z","","0" +"NM-17327","42.650001525878906","42.650001525878906","","1942-01-29T00:00:00Z","","0" +"NM-14359","44.84000015258789","44.84000015258789","","1951-01-30T00:00:00Z","","0" +"EB-218","264.3800048828125","264.3800048828125","","2002-08-30T00:00:00Z","","0" +"NM-28016","491.7799987792969","491.7799987792969","S","2015-05-16T00:00:00Z","","0" +"NM-03762","44.459999084472656","44.459999084472656","","1966-01-10T00:00:00Z","","0" +"NM-02005","5.800000190734863","5.800000190734863","","1948-09-15T00:00:00Z","","0" +"NM-07895","49.95000076293945","49.95000076293945","","1971-01-12T00:00:00Z","","0" +"NM-02520","6","6","","1985-12-15T00:00:00Z","","0" +"NM-02131","75.77999877929688","75.77999877929688","","1993-02-03T00:00:00Z","","0" +"NM-16909","66.91000366210938","66.91000366210938","","1997-03-18T00:00:00Z","","0" +"NM-12749","24.540000915527344","24.540000915527344","","1937-10-20T00:00:00Z","","0" +"NM-07153","97.37000274658203","97.37000274658203","","2004-03-31T00:00:00Z","","0" +"BC-0214","22.729999542236328","22.729999542236328","","2015-03-09T00:00:00Z","","0" +"NM-02779","31.200000762939453","31.200000762939453","","1956-01-03T00:00:00Z","","0" +"NM-28254","87.9000015258789","87.9000015258789","","1985-09-15T00:00:00Z","","0" +"NM-23641","298.8699951171875","298.8699951171875","","1983-03-17T00:00:00Z","","0" +"NM-28257","58.150001525878906","58.150001525878906","","2012-08-06T00:00:00Z","","0" +"NM-13826","-47.20000076293945","-47.20000076293945","","1913-03-13T00:00:00Z","","0" +"WL-0028","4.03000020980835","2.940000057220459","","2018-10-11T00:00:00Z","0001-01-01T09:02:00Z","1.090000033378601" +"PP-026","27","27","","2002-05-17T00:00:00Z","","0" +"NM-27313","85.72000122070312","85.72000122070312","","1949-05-18T00:00:00Z","","0" +"NM-01888","22.579999923706055","22.579999923706055","","2015-03-04T00:00:00Z","","0" +"AB-0211","167.83999633789062","167.83999633789062","","1997-07-09T00:00:00Z","","" +"NM-10703","13.739999771118164","13.739999771118164","","1939-01-17T00:00:00Z","","0" +"NM-21359","246.92999267578125","246.92999267578125","","2005-11-09T00:00:00Z","","0" +"NM-16862","53.470001220703125","53.470001220703125","","1987-01-28T00:00:00Z","","0" +"EB-483","21.700000762939453","21.700000762939453","","1980-08-25T00:00:00Z","","" +"TV-205","44.040000915527344","42.47999954223633","","2012-06-04T00:00:00Z","","1.559999942779541" +"NM-08648","40.45000076293945","40.45000076293945","","1956-09-06T00:00:00Z","","0" +"NM-02114","50.33000183105469","50.33000183105469","","1987-02-05T00:00:00Z","","0" +"NM-08279","75.4800033569336","75.4800033569336","","1981-01-28T00:00:00Z","","0" +"NM-14535","88.27999877929688","88.27999877929688","","1981-03-24T00:00:00Z","","0" +"NM-03378","22.600000381469727","22.600000381469727","","1967-01-12T00:00:00Z","","0" +"NM-03256","20.5","20.5","","1943-02-03T00:00:00Z","","0" +"NM-02162","90.83000183105469","90.83000183105469","","1956-03-08T00:00:00Z","","0" +"DE-0244","100.62000274658203","100.62000274658203","","2000-10-26T00:00:00Z","","0" +"NM-09035","103.5199966430664","103.5199966430664","","1967-12-15T00:00:00Z","","0" +"NM-00406","46.4900016784668","46.4900016784668","","2016-02-03T00:00:00Z","","0" +"NM-03397","27.270000457763672","27.270000457763672","","1992-08-27T00:00:00Z","","0" +"NM-07340","112.48999786376953","112.48999786376953","","1968-01-22T00:00:00Z","","0" +"NM-13994","-13.710000038146973","-13.710000038146973","","1912-12-21T00:00:00Z","","0" +"NM-12405","13.220000267028809","13.220000267028809","","1945-01-03T00:00:00Z","","0" +"AR-0210","10.3100004196167","9.579999923706055","","2017-06-01T00:00:00Z","0001-01-01T09:30:00Z","0.7300000190734863" +"NM-07985","73.38999938964844","73.38999938964844","","1972-02-29T00:00:00Z","","0" +"NM-28014","498.6700134277344","498.6700134277344","S","2015-05-16T00:00:00Z","","0" +"DE-0084","89.3499984741211","89.3499984741211","","2015-11-09T00:00:00Z","","0" +"NM-12743","30.1299991607666","30.1299991607666","","1958-01-10T00:00:00Z","","0" +"BC-0099","12.850000381469727","12.850000381469727","R","1991-10-16T00:00:00Z","","0" +"SM-0253","3.680000066757202","2.180000066757202","","2008-12-15T00:00:00Z","","1.5" +"NM-12932","344.82000732421875","344.82000732421875","","1974-01-17T00:00:00Z","","0" +"NM-22227","45.54999923706055","45.54999923706055","","1973-01-01T00:00:00Z","","0" +"NM-00385","39.88999938964844","39.88999938964844","","1955-11-28T00:00:00Z","","0" +"NM-28009","498.54998779296875","498.54998779296875","S","2015-05-25T00:00:00Z","","0" +"NM-08314","48.7400016784668","48.7400016784668","","1957-05-10T00:00:00Z","","0" +"NM-12969","-10.970000267028809","-10.970000267028809","","1906-03-26T00:00:00Z","","0" +"NM-12609","44.810001373291016","44.810001373291016","","1976-06-10T00:00:00Z","","0" +"NM-01134","229.75","229.75","","1977-02-24T00:00:00Z","","0" +"NM-13594","23.139999389648438","23.139999389648438","","1983-02-14T00:00:00Z","","0" +"NM-03006","100.08999633789062","100.08999633789062","","1982-01-08T00:00:00Z","","0" +"NM-21581","7.460000038146973","7.460000038146973","Z","2006-12-14T00:00:00Z","","0" +"NM-00699","9.350000381469727","9.350000381469727","R","2011-05-25T00:00:00Z","","0" +"WL-0090","84.04166412353516","81.66166687011719","","2004-11-18T00:00:00Z","","2.380000114440918" +"NM-21262","4.460000038146973","4.460000038146973","Z","2006-02-22T00:00:00Z","","0" +"EB-483","21.700000762939453","21.700000762939453","","1980-08-20T00:00:00Z","","" +"NM-02043","5.699999809265137","5.699999809265137","","1952-07-15T00:00:00Z","","0" +"NM-03848","5.989999771118164","5.989999771118164","","2007-09-24T00:00:00Z","","0" +"NM-02622","155.13999938964844","155.13999938964844","","1959-03-10T00:00:00Z","","0" +"NM-01926","6.300000190734863","6.300000190734863","","1971-05-15T00:00:00Z","","0" +"NM-28254","72.22000122070312","72.22000122070312","","1961-05-15T00:00:00Z","","0" +"BW-0110","116.30000305175781","116.30000305175781","","1955-05-31T00:00:00Z","","0" +"NM-10256","-24.100000381469727","-24.100000381469727","","1915-08-06T00:00:00Z","","0" +"NM-28255","150.7899932861328","150.7899932861328","","1973-07-15T00:00:00Z","","0" +"NM-00257","94.41000366210938","94.41000366210938","","1980-04-01T00:00:00Z","","0" +"EB-277","238.4499969482422","238.4499969482422","","1995-03-03T00:00:00Z","","0" +"NM-00367","122.80000305175781","122.80000305175781","","1985-01-21T00:00:00Z","","0" +"NM-03331","10.899999618530273","10.899999618530273","","1995-06-26T00:00:00Z","","0" +"NM-17655","82.75","82.75","","1977-01-05T00:00:00Z","","0" +"NM-04834","41.58000183105469","41.58000183105469","","1955-01-26T00:00:00Z","","0" +"BC-0427","","303.6000061035156","","2020-08-01T00:00:00Z","","2" +"NM-17716","0.3700000047683716","0.3700000047683716","","1943-05-06T00:00:00Z","","0" +"NM-28259","103.93000030517578","103.93000030517578","","1986-07-15T00:00:00Z","","0" +"NM-02412","36.040000915527344","36.040000915527344","","1960-01-15T00:00:00Z","","0" +"NM-00730","","","D","2007-08-27T00:00:00Z","","0" +"EB-019","42.70000076293945","41.70000076293945","","1993-07-01T00:00:00Z","","1" +"NM-17716","-1.100000023841858","-1.100000023841858","","1943-01-29T00:00:00Z","","0" +"NM-04131","303.7200012207031","303.7200012207031","","1986-03-26T00:00:00Z","","0" +"NM-11928","-0.41999998688697815","-0.41999998688697815","","1950-03-01T00:00:00Z","","0" +"NM-11803","-21.790000915527344","-21.790000915527344","","1910-06-13T00:00:00Z","","0" +"DE-0082","90.01000213623047","90.01000213623047","","2007-06-18T00:00:00Z","","0" +"NM-14535","83.16000366210938","83.16000366210938","","1970-02-10T00:00:00Z","","0" +"NM-05926","73.33000183105469","73.33000183105469","","1956-10-01T00:00:00Z","","0" +"NM-04256","234.75","234.75","","2008-01-27T00:00:00Z","","0" +"SB-0299","126.58999633789062","126.58999633789062","","1995-10-20T00:00:00Z","","0" +"NM-01048","277.8900146484375","277.8900146484375","","1992-01-22T00:00:00Z","","0" +"NM-11646","244.22999572753906","244.22999572753906","","1977-04-29T00:00:00Z","","0" +"NM-11795","41.2400016784668","41.2400016784668","","1953-05-25T00:00:00Z","","0" +"NM-02014","101.61000061035156","101.61000061035156","","1977-01-10T00:00:00Z","","0" +"NM-25549","27.549999237060547","27.549999237060547","","1987-02-12T00:00:00Z","","0" +"NM-21042","23.8700008392334","23.8700008392334","","1995-04-07T00:00:00Z","","0" +"NM-17603","39.52000045776367","39.52000045776367","","1957-01-18T00:00:00Z","","0" +"TO-0094","94.4000015258789","94.4000015258789","","1950-02-08T00:00:00Z","","0" +"DA-0138","174","174","","1967-08-01T00:00:00Z","","0" +"SB-0360","78.69000244140625","78.69000244140625","","1962-02-12T00:00:00Z","","0" +"NM-13563","2.4000000953674316","2.4000000953674316","","1958-10-20T00:00:00Z","","0" +"BW-0013","295.9700012207031","295.9700012207031","","1965-01-06T00:00:00Z","","0" +"NM-28259","111.27999877929688","111.27999877929688","","1965-02-05T00:00:00Z","","0" +"NM-01842","337.3599853515625","337.3599853515625","","1989-01-18T00:00:00Z","","0" +"NM-13279","-44.88999938964844","-44.88999938964844","","1912-05-24T00:00:00Z","","0" +"NM-28254","34.79999923706055","34.79999923706055","","2018-12-05T00:00:00Z","","0" +"NM-13928","-86.47000122070312","-86.47000122070312","","1907-03-11T00:00:00Z","","0" +"NM-01777","148.5","148.5","","1995-01-13T00:00:00Z","","0" +"NM-17364","37.11000061035156","37.11000061035156","","1953-01-27T00:00:00Z","","0" +"NM-13727","-26.40999984741211","-26.40999984741211","","1907-06-12T00:00:00Z","","0" +"NM-02094","80.97000122070312","80.97000122070312","","1987-01-03T00:00:00Z","","0" +"NM-12911","72.6500015258789","72.6500015258789","","1945-09-13T00:00:00Z","","0" +"NM-17034","33.81999969482422","33.81999969482422","","1945-09-26T00:00:00Z","","0" +"NM-02794","44.25","44.25","","1940-01-27T00:00:00Z","","0" +"NM-03462","128.1199951171875","128.1199951171875","","1949-01-01T00:00:00Z","","0" +"NM-06233","234.10000610351562","234.10000610351562","","1993-05-12T00:00:00Z","","0" +"EB-122","656.0499877929688","656.0499877929688","R","2003-04-30T00:00:00Z","","0" +"NM-03211","187.3800048828125","187.3800048828125","R","1986-04-02T00:00:00Z","","0" +"NM-28253","51.97999954223633","51.97999954223633","","1972-07-15T00:00:00Z","","0" +"SO-0260","17.290000915527344","16.080001831054688","","2022-10-22T00:00:00Z","0001-01-01T12:43:00Z","1.2100000381469727" +"NM-01251","87.69000244140625","87.69000244140625","","1961-02-15T00:00:00Z","","0" +"NM-04597","54.13999938964844","54.13999938964844","","1986-03-13T00:00:00Z","","0" +"NM-06268","20.299999237060547","20.299999237060547","","1965-04-15T00:00:00Z","","0" +"SV-0144","77.5999984741211","75.8499984741211","","2019-05-11T00:00:00Z","","1.75" +"BC-0002","297.510009765625","297.510009765625","","2019-01-11T00:00:00Z","","0" +"NM-15310","104.91000366210938","104.91000366210938","","1972-01-06T00:00:00Z","","0" +"NM-24338","55.54999923706055","55.54999923706055","","1977-02-01T00:00:00Z","","0" +"NM-21192","25.690000534057617","25.690000534057617","","1941-03-11T00:00:00Z","","0" +"NM-28016","491.6099853515625","491.6099853515625","S","2015-05-16T00:00:00Z","","0" +"NM-02772","128.00999450683594","128.00999450683594","","1983-07-05T00:00:00Z","","0" +"NM-02752","53.56999969482422","53.56999969482422","","1961-02-06T00:00:00Z","","0" +"NM-01888","11.789999961853027","11.789999961853027","","2004-01-22T00:00:00Z","","0" +"NM-00931","190.8300018310547","190.8300018310547","","1990-01-03T00:00:00Z","","0" +"NM-11576","103.4000015258789","103.4000015258789","Z","1986-06-27T00:00:00Z","","0" +"NM-22058","285.95001220703125","285.95001220703125","T","1984-05-31T00:00:00Z","","0" +"SB-0264","130.30999755859375","130.30999755859375","","1969-02-15T00:00:00Z","","0" +"NM-12491","41.13999938964844","41.13999938964844","","1972-01-14T00:00:00Z","","0" +"NM-04127","50.54999923706055","50.54999923706055","","2016-02-24T00:00:00Z","","0" +"NM-13082","-13.130000114440918","-13.130000114440918","","1911-05-26T00:00:00Z","","0" +"NM-21358","252.1699981689453","252.1699981689453","","2014-10-07T00:00:00Z","","0" +"NM-02449","60.56999969482422","60.56999969482422","","1963-01-11T00:00:00Z","","0" +"NM-01565","-226.47000122070312","-226.47000122070312","","1988-05-30T00:00:00Z","","0" +"NM-01947","3.799999952316284","3.799999952316284","","1947-09-15T00:00:00Z","","0" +"EB-225","187.72999572753906","187.72999572753906","P","1973-08-15T00:00:00Z","","0" +"NM-16762","2.809999942779541","2.809999942779541","","1940-03-27T00:00:00Z","","0" +"NM-13793","-3.5999999046325684","-3.5999999046325684","","1911-10-02T00:00:00Z","","0" +"DE-0065","20.809999465942383","18.90999984741211","","1999-04-19T00:00:00Z","","1.899999976158142" +"NM-01971","7","7","","1963-09-15T00:00:00Z","","0" +"NM-19969","57.290000915527344","57.290000915527344","","1944-08-21T00:00:00Z","","0" +"NM-12597","72.80000305175781","72.80000305175781","S","1947-07-15T00:00:00Z","","0" +"NM-02471","140.5500030517578","140.5500030517578","","1999-01-27T00:00:00Z","","0" +"NM-19746","106.55999755859375","106.55999755859375","P","1966-09-14T00:00:00Z","","0" +"NM-04915","203.3699951171875","203.3699951171875","","1978-01-05T00:00:00Z","","0" +"EB-012","198","198","","1991-06-30T00:00:00Z","","0" +"NM-22119","26.389999389648438","26.389999389648438","R","1992-02-13T00:00:00Z","","0" +"NM-25178","104.58999633789062","104.58999633789062","","1974-07-26T00:00:00Z","","0" +"NM-01557","77.83999633789062","77.83999633789062","R","2012-02-01T00:00:00Z","","0" +"NM-12076","-58.75","-58.75","","1907-03-20T00:00:00Z","","0" +"NM-05622","77.8499984741211","77.8499984741211","","1946-05-23T00:00:00Z","","0" +"NM-11815","125.33999633789062","125.33999633789062","","1958-10-09T00:00:00Z","","0" +"NM-19906","34.5099983215332","34.5099983215332","","1944-01-25T00:00:00Z","","0" +"NM-02352","9.300000190734863","9.300000190734863","","1972-02-15T00:00:00Z","","0" +"NM-02772","121.30999755859375","121.30999755859375","","1984-06-05T00:00:00Z","","0" +"NM-12751","129.52000427246094","129.52000427246094","","1971-01-14T00:00:00Z","","0" +"NM-12405","27.239999771118164","27.239999771118164","","1953-07-13T00:00:00Z","","0" +"UC-0134","7.769999980926514","7.769999980926514","","1984-07-18T00:00:00Z","","0" +"NM-02794","43.25","43.25","","1943-07-14T00:00:00Z","","0" +"NM-05131","50","50","","1910-01-01T00:00:00Z","","0" +"NM-02979","45.900001525878906","45.900001525878906","","1991-01-08T00:00:00Z","","0" +"NM-05607","131.33999633789062","131.33999633789062","","1959-01-20T00:00:00Z","","0" +"NM-14035","-63.369998931884766","-63.369998931884766","","1908-06-12T00:00:00Z","","0" +"NM-02520","6.699999809265137","6.699999809265137","","1967-01-15T00:00:00Z","","0" +"NM-01963","409.8999938964844","409.8999938964844","","1986-03-24T00:00:00Z","","0" +"NM-00257","94.05999755859375","94.05999755859375","","1966-01-07T00:00:00Z","","0" +"NM-13831","-28.719999313354492","-28.719999313354492","","1912-05-20T00:00:00Z","","0" +"NM-02620","11.600000381469727","11.600000381469727","","2000-02-15T00:00:00Z","","0" +"NM-11565","87.75","87.75","","1955-09-08T00:00:00Z","","0" +"NM-21660","474.44000244140625","474.44000244140625","","2009-03-03T00:00:00Z","","0" +"NM-08067","-81.8499984741211","-81.8499984741211","","1907-01-29T00:00:00Z","","0" +"SB-0244","83","83","","1990-02-09T00:00:00Z","","0" +"NM-17048","15.829999923706055","15.829999923706055","","1936-05-20T00:00:00Z","","0" +"NM-23130","75.54000091552734","75.54000091552734","P","1992-12-16T00:00:00Z","","0" +"NM-02209","107.02999877929688","107.02999877929688","","2000-09-06T00:00:00Z","","0" +"NM-01926","5.199999809265137","5.199999809265137","","1987-07-15T00:00:00Z","","0" +"DE-0086","90.02999877929688","90.02999877929688","","2010-11-15T00:00:00Z","","0" +"NM-05433","65.12999725341797","65.12999725341797","","1953-03-03T00:00:00Z","","0" +"NM-03376","25.780000686645508","25.780000686645508","","1989-06-30T00:00:00Z","","0" +"NM-13899","11.369999885559082","11.369999885559082","","1962-10-01T00:00:00Z","","0" +"NM-14838","31.5","31.5","","1978-01-31T00:00:00Z","","0" +"NM-19986","39.5","39.5","","1941-01-29T00:00:00Z","","0" +"NM-13329","-44.88999938964844","-44.88999938964844","","1912-03-11T00:00:00Z","","0" +"NM-11636","245.3000030517578","245.3000030517578","","1956-12-21T00:00:00Z","","0" +"AB-0123","544.02001953125","544.02001953125","","2005-01-25T00:00:00Z","","" +"NM-02091","82.20999908447266","82.20999908447266","","1959-01-16T00:00:00Z","","0" +"NM-01406","262","262","","1982-01-14T00:00:00Z","","0" +"NM-04723","64.5","64.5","","1941-03-13T00:00:00Z","","0" +"NM-28257","67.01000213623047","67.01000213623047","","1976-06-15T00:00:00Z","","0" +"NM-06335","163.5500030517578","163.5500030517578","","1958-04-30T00:00:00Z","","0" +"NM-03577","94.38999938964844","94.38999938964844","","1992-01-28T00:00:00Z","","0" +"SO-0125","7.320000171661377","5.829999923706055","","2021-01-06T00:00:00Z","","1.4900000095367432" +"NM-10652","10.170000076293945","10.170000076293945","","1953-01-15T00:00:00Z","","0" +"NM-04140","202.6699981689453","202.6699981689453","","1958-12-17T00:00:00Z","","0" +"NM-02263","111.51000213623047","111.51000213623047","","2012-02-21T00:00:00Z","","0" +"NM-27605","28.8799991607666","28.8799991607666","P","1963-01-22T00:00:00Z","","0" +"NM-21920","9.15999984741211","9.15999984741211","","1963-02-04T00:00:00Z","","0" +"NM-17716","5.019999980926514","5.019999980926514","","1947-11-22T00:00:00Z","","0" +"NM-27357","411.2200012207031","411.2200012207031","","1987-10-08T00:00:00Z","","0" +"NM-23447","3.549999952316284","3.549999952316284","","1983-03-28T00:00:00Z","","0" +"AB-0004","416.1300048828125","416.1300048828125","","2001-01-30T00:00:00Z","","" +"NM-01938","44.279998779296875","44.279998779296875","","2005-02-03T00:00:00Z","","0" +"NM-02773","48.439998626708984","48.439998626708984","","2001-02-15T00:00:00Z","","0" +"NM-13118","9.520000457763672","9.520000457763672","","1978-08-01T00:00:00Z","","0" +"NM-19857","250.89999389648438","250.89999389648438","","1981-05-13T00:00:00Z","","0" +"NM-00686","59.939998626708984","59.939998626708984","","2003-02-12T00:00:00Z","","0" +"NM-02720","56.310001373291016","56.310001373291016","","1973-01-15T00:00:00Z","","0" +"NM-21920","8.850000381469727","8.850000381469727","P","1950-04-18T00:00:00Z","","0" +"NM-06596","56.81999969482422","56.81999969482422","","1941-03-11T00:00:00Z","","0" +"NM-17685","7.110000133514404","7.110000133514404","","1983-10-07T00:00:00Z","","0" +"NM-25086","33.869998931884766","33.869998931884766","","1974-08-21T00:00:00Z","","0" +"NM-15764","135.97999572753906","135.97999572753906","","1959-01-13T00:00:00Z","","0" +"NM-13223","66.12000274658203","66.12000274658203","","1939-02-21T00:00:00Z","","0" +"NM-28021","503.1099853515625","503.1099853515625","S","2015-04-16T00:00:00Z","","0" +"NM-04407","127.58000183105469","127.58000183105469","","1981-01-05T00:00:00Z","","0" +"NM-12508","38.08000183105469","38.08000183105469","","1986-02-13T00:00:00Z","","0" +"NM-05324","141.3800048828125","141.3800048828125","","1968-04-03T00:00:00Z","","0" +"NM-03011","91.13999938964844","91.13999938964844","","2008-03-17T00:00:00Z","","0" +"NM-00319","92.66999816894531","92.66999816894531","","2013-12-10T00:00:00Z","","0" +"NM-02043","6.699999809265137","6.699999809265137","","1994-01-15T00:00:00Z","","0" +"SB-0054","181.14999389648438","181.14999389648438","","2018-02-15T00:00:00Z","","0" +"NM-17470","27.420000076293945","27.420000076293945","","1949-11-22T00:00:00Z","","0" +"NM-25653","25","25","","1968-09-03T00:00:00Z","","0" +"NM-02985","55.83000183105469","55.83000183105469","","1978-01-06T00:00:00Z","","0" +"NM-03903","330.70001220703125","330.70001220703125","","1976-10-11T00:00:00Z","","0" +"NM-02412","24.18000030517578","24.18000030517578","","1944-09-12T00:00:00Z","","0" +"EB-205","86.70999908447266","86.70999908447266","","1981-01-21T00:00:00Z","","0" +"NM-02412","28.079999923706055","28.079999923706055","","1936-02-09T00:00:00Z","","0" +"NM-28250","92.02999877929688","92.02999877929688","","2019-05-15T00:00:00Z","","0" +"NM-28253","33.9900016784668","33.9900016784668","","1962-09-25T00:00:00Z","","0" +"AB-0005","391.4800109863281","391.4800109863281","","1998-05-04T00:00:00Z","","" +"NM-02320","186.1999969482422","186.1999969482422","","1979-02-01T00:00:00Z","","0" +"NM-12198","9.65999984741211","9.65999984741211","","1942-02-02T00:00:00Z","","0" +"NM-17034","55.59000015258789","55.59000015258789","","1955-05-25T00:00:00Z","","0" +"NM-08746","-51.81999969482422","-51.81999969482422","","1907-07-27T00:00:00Z","","0" +"NM-00229","65.80000305175781","65.80000305175781","","1997-07-25T00:00:00Z","","0" +"NM-21776","7.71999979019165","7.71999979019165","","1959-07-07T00:00:00Z","","0" +"NM-23234","232.27999877929688","232.27999877929688","T","2003-10-20T00:00:00Z","","0" +"NM-02273","","","W","2011-02-11T00:00:00Z","","0" +"NM-18782","379.19000244140625","379.19000244140625","","1987-01-08T00:00:00Z","","0" +"NM-02343","55.79999923706055","55.79999923706055","","1989-02-15T00:00:00Z","","0" +"NM-02575","136.55999755859375","136.55999755859375","","2009-01-12T00:00:00Z","","0" +"NM-08646","50.0099983215332","50.0099983215332","","1962-03-29T00:00:00Z","","0" +"NM-03687","138.39999389648438","138.39999389648438","","1996-08-05T00:00:00Z","","0" +"NM-08644","69.36000061035156","69.36000061035156","P","1938-07-01T00:00:00Z","","0" +"NM-02004","10.800000190734863","10.800000190734863","","1979-03-15T00:00:00Z","","0" +"NM-02761","78.69000244140625","78.69000244140625","","1976-01-13T00:00:00Z","","0" +"UC-0078","151.35000610351562","151.35000610351562","","1979-01-24T00:00:00Z","","0" +"NM-18823","361.9200134277344","361.9200134277344","","1987-01-28T00:00:00Z","","0" +"NM-09422","158.4600067138672","158.4600067138672","","1956-05-16T00:00:00Z","","0" +"NM-17716","3.009999990463257","3.009999990463257","","1946-01-02T00:00:00Z","","0" +"DE-0240","107.31999969482422","107.31999969482422","","2007-11-14T00:00:00Z","","0" +"NM-12350","33.279998779296875","33.279998779296875","","1943-01-12T00:00:00Z","","0" +"EB-485","391.30999755859375","390.30999755859375","Z","2003-11-30T00:00:00Z","","1" +"DE-0082","93.44999694824219","93.44999694824219","","1999-11-24T00:00:00Z","","0" +"NM-00680","53.279998779296875","53.279998779296875","","1963-09-19T00:00:00Z","","0" +"AB-0070","147.22000122070312","147.22000122070312","","1996-08-22T00:00:00Z","","" +"NM-02394","78.94999694824219","78.94999694824219","","1960-04-07T00:00:00Z","","0" +"NM-28023","485.9200134277344","485.9200134277344","S","2015-04-24T00:00:00Z","","0" +"NM-13653","-14.859999656677246","-14.859999656677246","","1912-05-20T00:00:00Z","","0" +"NM-02396","7.300000190734863","7.300000190734863","","1997-05-15T00:00:00Z","","0" +"NM-13765","-5.619999885559082","-5.619999885559082","","1906-03-05T00:00:00Z","","0" +"NM-03388","45.61000061035156","45.61000061035156","","1988-11-28T00:00:00Z","","0" +"NM-08788","48.869998931884766","48.869998931884766","","1961-04-13T00:00:00Z","","0" +"NM-27655","90.5199966430664","90.5199966430664","","1956-01-12T00:00:00Z","","0" +"NM-08362","47.540000915527344","47.540000915527344","","1975-01-13T00:00:00Z","","0" +"NM-02396","5.099999904632568","5.099999904632568","","1976-09-15T00:00:00Z","","0" +"NM-12183","10.84000015258789","10.84000015258789","","1941-01-27T00:00:00Z","","0" +"NM-12517","22.90999984741211","22.90999984741211","","1970-01-16T00:00:00Z","","0" +"NM-16514","33.209999084472656","33.209999084472656","","1965-03-04T00:00:00Z","","0" +"NM-10948","76.26000213623047","76.26000213623047","","1991-02-15T00:00:00Z","","0" +"NM-24005","45","45","","1995-02-13T00:00:00Z","","0" +"NM-12650","91.18000030517578","91.18000030517578","P","1952-01-25T00:00:00Z","","0" +"NM-00794","72.83999633789062","72.83999633789062","","2009-02-03T00:00:00Z","","0" +"AB-0215","155.67999267578125","155.67999267578125","","2015-04-08T00:00:00Z","","0" +"NM-03345","86.5999984741211","86.5999984741211","P","1949-08-18T00:00:00Z","","0" +"NM-01985","9.399999618530273","9.399999618530273","","1974-12-15T00:00:00Z","","0" +"EB-478","231","231","P","1989-10-31T00:00:00Z","","0" +"NM-02384","7","7","","1980-10-15T00:00:00Z","","0" +"NM-28254","23.18000030517578","23.18000030517578","","1989-11-25T00:00:00Z","","0" +"BC-0044","165.22000122070312","165.22000122070312","","2013-03-14T00:00:00Z","","0" +"NM-09804","-84.16000366210938","-84.16000366210938","","1908-08-26T00:00:00Z","","0" +"DE-0067","21.559999465942383","19.959999084472656","","2009-05-27T00:00:00Z","","1.600000023841858" +"NM-22583","79.5199966430664","79.5199966430664","","1953-03-06T00:00:00Z","","0" +"NM-17716","7.679999828338623","7.679999828338623","","1940-06-19T00:00:00Z","","0" +"NM-12564","28.309999465942383","28.309999465942383","","1955-01-13T00:00:00Z","","0" +"NM-28255","114.98999786376953","114.98999786376953","","1994-04-05T00:00:00Z","","0" +"NM-16779","13.029999732971191","13.029999732971191","","1952-01-19T00:00:00Z","","0" +"NM-28254","105.9000015258789","105.9000015258789","","1991-04-05T00:00:00Z","","0" +"NM-01894","46.88999938964844","46.88999938964844","","2002-04-09T00:00:00Z","","0" +"RA-027","9.539999961853027","7.539999961853027","AA","2023-09-19T00:00:00Z","0001-01-01T09:01:00Z","2" +"NM-03402","150","150","","2004-02-26T00:00:00Z","","0" +"BC-0194","227.3800048828125","227.3800048828125","","2016-06-07T00:00:00Z","","0" +"SM-0080","185.1999969482422","183.4499969482422","","2006-10-18T00:00:00Z","","1.75" +"NM-02284","9.5","9.5","","2002-08-20T00:00:00Z","","0" +"NM-02282","398.5299987792969","398.5299987792969","","1981-10-29T00:00:00Z","","0" +"NM-02999","132.9499969482422","132.9499969482422","","2000-10-18T00:00:00Z","","0" +"NM-12723","57.189998626708984","57.189998626708984","","1971-03-25T00:00:00Z","","0" +"NM-11623","44.56999969482422","44.56999969482422","","1953-11-20T00:00:00Z","","0" +"BC-0103","","131.0500030517578","","2020-11-08T00:00:00Z","","1.4700000286102295" +"NM-14837","35.599998474121094","35.599998474121094","","1984-02-10T00:00:00Z","","0" +"EB-300","196.92999267578125","196.92999267578125","","2010-07-14T00:00:00Z","","0" +"DE-0113","36.66999816894531","36.66999816894531","","2008-09-22T00:00:00Z","","0" +"NM-24199","-83","-83","","1960-12-01T00:00:00Z","","0" +"NM-17989","17.34000015258789","17.34000015258789","P","1948-07-29T00:00:00Z","","0" +"AB-0143","301.3999938964844","301.3999938964844","","1988-01-15T00:00:00Z","","0" +"NM-20639","169.27000427246094","169.27000427246094","","1955-08-05T00:00:00Z","","0" +"NM-13841","-11.399999618530273","-11.399999618530273","","1914-08-25T00:00:00Z","","0" +"NM-10743","60.709999084472656","60.709999084472656","","1954-01-13T00:00:00Z","","0" +"NM-00367","140.7899932861328","140.7899932861328","Z","1997-08-22T00:00:00Z","","0" +"NM-28253","49.31999969482422","49.31999969482422","","1963-06-25T00:00:00Z","","0" +"NM-09178","24.270000457763672","24.270000457763672","","1932-01-05T00:00:00Z","","0" +"NM-11679","41.400001525878906","41.400001525878906","","1950-09-12T00:00:00Z","","0" +"NM-02282","400.7699890136719","400.7699890136719","Z","1994-05-27T00:00:00Z","","0" +"NM-09304","-126.9000015258789","-126.9000015258789","","1905-03-15T00:00:00Z","","0" +"MI-0200","60","60","","1950-12-31T00:00:00Z","","0" +"NM-24338","50.61000061035156","50.61000061035156","","1979-12-12T00:00:00Z","","0" +"NM-28253","27.139999389648438","27.139999389648438","","2012-05-15T00:00:00Z","","0" +"NM-21340","79.62000274658203","79.62000274658203","","1975-02-12T00:00:00Z","","0" +"NM-01456","368.42999267578125","368.42999267578125","","2002-05-24T00:00:00Z","","0" +"EB-413","207.85000610351562","207.85000610351562","","2013-03-14T00:00:00Z","","0" +"NM-17688","6.789999961853027","6.789999961853027","","1983-10-27T00:00:00Z","","0" +"NM-16762","3.8499999046325684","3.8499999046325684","","1954-11-22T00:00:00Z","","0" +"UC-0044","163.27000427246094","163.27000427246094","","1986-02-06T00:00:00Z","","0" +"NM-03323","71.58000183105469","71.58000183105469","","1994-10-07T00:00:00Z","","0" +"NM-27377","-49.5099983215332","-49.5099983215332","","1917-01-03T00:00:00Z","","0" +"NM-26753","199.39999389648438","199.39999389648438","","1957-06-05T00:00:00Z","","0" +"NM-24130","14.569999694824219","14.569999694824219","","1986-06-02T00:00:00Z","","0" +"NM-06230","","","O","1980-08-14T00:00:00Z","","0" +"NM-06524","43.29999923706055","43.29999923706055","","1947-10-09T00:00:00Z","","0" +"NM-01201","30.90999984741211","30.90999984741211","","2003-01-14T00:00:00Z","","0" +"NM-08181","8.34000015258789","8.34000015258789","","1973-02-27T00:00:00Z","","0" +"NM-03340","7.820000171661377","7.820000171661377","Z","1999-03-31T00:00:00Z","","0" +"NM-22189","420.5899963378906","420.5899963378906","","2015-04-10T00:00:00Z","","0" +"NM-02527","9.5","9.5","","1963-08-15T00:00:00Z","","0" +"NM-03333","9.59000015258789","9.59000015258789","Z","1996-12-26T00:00:00Z","","0" +"BC-0158","283.57000732421875","283.57000732421875","","2017-06-20T00:00:00Z","","0" +"NM-08817","81.1500015258789","81.1500015258789","","1967-07-28T00:00:00Z","","0" +"NM-01963","409.4800109863281","409.4800109863281","T","1996-02-05T00:00:00Z","","0" +"NM-26178","176.72000122070312","176.72000122070312","","1979-01-24T00:00:00Z","","0" +"NM-21656","70.83999633789062","70.83999633789062","","1983-03-10T00:00:00Z","","0" +"SV-0111","337.29998779296875","335.6333312988281","","2015-08-09T00:00:00Z","","1.6666666269302368" +"JM-035","51.150001525878906","50.83000183105469","","2013-05-14T00:00:00Z","","0.3199999928474426" +"NM-14067","-5.619999885559082","-5.619999885559082","","1911-01-21T00:00:00Z","","0" +"NM-01239","29.450000762939453","29.450000762939453","P","1953-10-09T00:00:00Z","","0" +"NM-20718","55.38999938964844","55.38999938964844","","1990-02-28T00:00:00Z","","0" +"NM-14850","208.83999633789062","208.83999633789062","","1969-01-09T00:00:00Z","","0" +"NM-13918","-8.510000228881836","-8.510000228881836","","1908-03-25T00:00:00Z","","0" +"NM-17548","19.3799991607666","19.3799991607666","","1961-01-07T00:00:00Z","","0" +"NM-01971","8.699999809265137","8.699999809265137","","1955-01-15T00:00:00Z","","0" +"NM-08288","169.6999969482422","169.6999969482422","","1955-01-19T00:00:00Z","","0" +"NM-02554","351.6000061035156","351.6000061035156","","1987-07-10T00:00:00Z","","0" +"NM-04962","118","118","","1965-01-01T00:00:00Z","","0" +"NM-01427","756","756","","1977-06-10T00:00:00Z","","0" +"NM-02026","58.29999923706055","58.29999923706055","","1961-01-17T00:00:00Z","","0" +"NM-21410","6.710000038146973","6.710000038146973","Z","2010-03-01T00:00:00Z","","0" +"SB-0244","80.77999877929688","80.77999877929688","","1976-02-04T00:00:00Z","","0" +"NM-28258","184.4499969482422","184.4499969482422","","2014-06-05T00:00:00Z","","0" +"NM-14601","59.36000061035156","59.36000061035156","","1965-01-06T00:00:00Z","","0" +"NM-12200","120.8499984741211","120.8499984741211","P","1961-03-21T00:00:00Z","","0" +"NM-02591","14.199999809265137","14.199999809265137","","1961-10-15T00:00:00Z","","0" +"WS-007","2.799999952316284","2.799999952316284","","2012-02-02T00:00:00Z","","0" +"NM-02194","151.30999755859375","151.30999755859375","R","1959-11-09T00:00:00Z","","0" +"NM-11889","2.0399999618530273","2.0399999618530273","","1951-07-05T00:00:00Z","","0" +"NM-16696","148.5","148.5","","1956-01-09T00:00:00Z","","0" +"NM-13952","-18.329999923706055","-18.329999923706055","","1909-06-05T00:00:00Z","","0" +"NM-17420","42.040000915527344","42.040000915527344","","1943-03-27T00:00:00Z","","0" +"NM-10069","8.449999809265137","8.449999809265137","","1972-10-16T00:00:00Z","","0" +"NM-05762","56.91999816894531","56.91999816894531","","1958-04-05T00:00:00Z","","0" +"NM-25699","6.739999771118164","6.739999771118164","","1987-03-18T00:00:00Z","","0" +"NM-21680","327.760009765625","327.760009765625","","2012-11-29T00:00:00Z","","0" +"NM-19784","70.80000305175781","70.80000305175781","","1963-01-21T00:00:00Z","","0" +"EB-483","336","336","P","1995-08-31T00:00:00Z","","0" +"SD-0112","71.5999984741211","71.5999984741211","","1950-04-03T00:00:00Z","","0" +"NM-17928","169.4499969482422","169.4499969482422","","1965-09-15T00:00:00Z","","0" +"NM-07815","25.25","25.25","","1936-12-14T00:00:00Z","","0" +"NM-28012","479.92999267578125","479.92999267578125","S","2015-06-02T00:00:00Z","","0" +"NM-23469","196.24000549316406","199.24000549316406","","1995-02-02T00:00:00Z","","0" +"NM-00662","30.700000762939453","30.700000762939453","","2007-01-08T00:00:00Z","","0" +"NM-05689","92.68000030517578","92.68000030517578","","1946-07-24T00:00:00Z","","0" +"NM-21631","435","435","","2006-04-13T00:00:00Z","","0" +"NM-04066","176.9199981689453","176.9199981689453","","1977-01-11T00:00:00Z","","0" +"NM-06676","14.600000381469727","14.600000381469727","","1965-12-15T00:00:00Z","","0" +"NM-00487","52.7599983215332","52.7599983215332","","1971-02-16T00:00:00Z","","0" +"NM-12353","29.709999084472656","29.709999084472656","","1934-11-15T00:00:00Z","","0" +"EB-263","5.019999980926514","5.019999980926514","Z","1998-08-11T00:00:00Z","","0" +"NM-20366","269.80999755859375","269.80999755859375","","2008-03-11T00:00:00Z","","0" +"NM-17260","25.469999313354492","25.469999313354492","","1943-01-25T00:00:00Z","","0" +"NM-22184","79.08999633789062","79.08999633789062","","1980-04-07T00:00:00Z","","0" +"NM-24935","5.070000171661377","5.070000171661377","","1959-02-25T00:00:00Z","","0" +"EB-258","96.44000244140625","96.44000244140625","","1981-01-22T00:00:00Z","","0" +"NM-00395","52.349998474121094","52.349998474121094","","2016-02-03T00:00:00Z","","0" +"SB-0299","135.8800048828125","135.8800048828125","","2010-12-05T00:00:00Z","","0" +"NM-28020","465.8500061035156","465.8500061035156","S","2015-04-25T00:00:00Z","","0" +"NM-10696","118.43000030517578","118.43000030517578","","1954-12-27T00:00:00Z","","0" +"NM-16973","36.77000045776367","36.77000045776367","","1952-01-18T00:00:00Z","","0" +"NM-27450","52.02000045776367","52.02000045776367","","1965-01-13T00:00:00Z","","0" +"NM-07163","90.80000305175781","90.80000305175781","","2000-07-12T00:00:00Z","","0" +"NM-03877","27.59000015258789","27.59000015258789","","1952-09-10T00:00:00Z","","0" +"NM-22012","48.34000015258789","48.34000015258789","","1990-10-02T00:00:00Z","","0" +"NM-13968","-9.65999984741211","-9.65999984741211","","1906-03-05T00:00:00Z","","0" +"NM-12711","33.939998626708984","33.939998626708984","","1936-11-13T00:00:00Z","","0" +"NM-06595","68.63999938964844","68.63999938964844","","1932-01-09T00:00:00Z","","0" +"NM-05578","92.77999877929688","92.77999877929688","","1981-03-17T00:00:00Z","","0" +"NM-27443","49.29999923706055","49.29999923706055","","1981-02-17T00:00:00Z","","0" +"SO-0252","8.09000015258789","7.660000324249268","","2019-10-25T00:00:00Z","0001-01-01T11:14:00Z","0.4300000071525574" +"NM-00644","27.600000381469727","27.600000381469727","","2003-12-16T00:00:00Z","","0" +"SB-0699","398","398","","1986-01-23T00:00:00Z","","0" +"TO-0361","135","135","","1952-05-01T00:00:00Z","","0" +"SB-0299","141.82000732421875","141.82000732421875","","2015-04-10T00:00:00Z","","0" +"NM-12672","73.51000213623047","73.51000213623047","","1971-01-21T00:00:00Z","","0" +"NM-19787","132.6699981689453","132.6699981689453","","2001-06-14T00:00:00Z","","0" +"NM-00385","38.650001525878906","38.650001525878906","","1947-03-26T00:00:00Z","","0" +"NM-08551","330.32000732421875","330.32000732421875","","1959-11-05T00:00:00Z","","0" +"NM-28252","41.13999938964844","41.13999938964844","","2008-02-25T00:00:00Z","","0" +"NM-09319","72.31999969482422","72.31999969482422","","1980-01-29T00:00:00Z","","0" +"TO-0177","27.600000381469727","27.600000381469727","","1946-02-20T00:00:00Z","","0" +"NM-27491","14.9399995803833","14.9399995803833","","2010-01-21T00:00:00Z","","0" +"NM-00367","124.0199966430664","124.0199966430664","","1988-09-26T00:00:00Z","","0" +"EB-001","49.04999923706055","48.54999923706055","","2021-04-15T00:00:00Z","0001-01-01T07:50:00Z","0.5" +"NM-04525","42.400001525878906","42.400001525878906","","1946-03-29T00:00:00Z","","0" +"NM-14779","108.76000213623047","108.76000213623047","","1980-02-07T00:00:00Z","","0" +"NM-12353","29.799999237060547","29.799999237060547","","1938-11-15T00:00:00Z","","0" +"NM-06039","6.050000190734863","6.050000190734863","","1997-11-20T00:00:00Z","","0" +"NM-12103","-58.75","-58.75","","1913-01-16T00:00:00Z","","0" +"NM-28250","103.5199966430664","103.5199966430664","","1980-03-25T00:00:00Z","","0" +"EB-300","196.27999877929688","196.27999877929688","","2010-05-04T00:00:00Z","","0" +"NM-01013","174.13999938964844","174.13999938964844","","1997-02-05T00:00:00Z","","0" +"NM-02348","13.899999618530273","13.899999618530273","","1995-07-15T00:00:00Z","","0" +"NM-01841","272.67999267578125","272.67999267578125","","1992-08-14T00:00:00Z","","0" +"NM-00253","23.3700008392334","23.3700008392334","","1984-07-01T00:00:00Z","","0" +"NM-27720","55.619998931884766","55.619998931884766","","1953-05-28T00:00:00Z","","0" +"NM-13783","155.50999450683594","155.50999450683594","","1990-12-06T00:00:00Z","","0" +"NM-02280","16.709999084472656","16.709999084472656","","1992-11-09T00:00:00Z","","0" +"NM-00644","66.29000091552734","66.29000091552734","","2002-10-02T00:00:00Z","","0" +"NM-20086","68.55000305175781","68.55000305175781","","1972-02-18T00:00:00Z","","0" +"NM-02285","6.28000020980835","6.28000020980835","","2010-09-28T00:00:00Z","","0" +"SB-0299","142.7100067138672","142.7100067138672","","2005-10-05T00:00:00Z","","0" +"NM-14348","25.270000457763672","25.270000457763672","","1970-01-15T00:00:00Z","","0" +"NM-28256","221.1699981689453","221.1699981689453","","1972-04-15T00:00:00Z","","0" +"NM-05383","239.94000244140625","239.94000244140625","","2008-02-14T00:00:00Z","","0" +"NM-01450","469.0400085449219","469.0400085449219","","2009-03-26T00:00:00Z","","0" +"NM-23252","87","87","","1987-05-01T00:00:00Z","","0" +"BC-0034","38.900001525878906","38.900001525878906","R","1990-01-10T00:00:00Z","","0" +"NM-17527","33.25","33.25","","1936-05-20T00:00:00Z","","0" +"NM-17577","39.380001068115234","39.380001068115234","","1934-05-08T00:00:00Z","","0" +"NM-02279","30.399999618530273","30.399999618530273","","2006-03-08T00:00:00Z","","0" +"NM-19128","49.9900016784668","49.9900016784668","","2009-02-25T00:00:00Z","","0" +"NM-06038","24.15999984741211","24.15999984741211","","2004-03-12T00:00:00Z","","0" +"NM-02809","44.70000076293945","44.70000076293945","","2001-02-16T00:00:00Z","","0" +"NM-28255","-5.559999942779541","-5.559999942779541","","1953-01-05T00:00:00Z","","0" +"NM-28250","87.7300033569336","87.7300033569336","","2008-05-23T00:00:00Z","","0" +"NM-13246","93.4000015258789","93.4000015258789","","1959-04-01T00:00:00Z","","0" +"NM-26395","-61.779998779296875","-61.779998779296875","E","1986-05-30T00:00:00Z","","0" +"NM-11233","-31.030000686645508","-31.030000686645508","","1911-06-09T00:00:00Z","","0" +"NM-10508","121.70999908447266","121.70999908447266","","1966-02-08T00:00:00Z","","0" +"NM-22119","28.440000534057617","28.440000534057617","R","1992-10-14T00:00:00Z","","0" +"NM-28257","14.520000457763672","14.520000457763672","","1994-05-05T00:00:00Z","","0" +"NM-03155","388.1400146484375","388.1400146484375","","1991-01-04T00:00:00Z","","0" +"DE-0119","30.440000534057617","30.440000534057617","","2005-04-18T00:00:00Z","","0" +"NM-02772","21.200000762939453","21.200000762939453","","1957-01-01T00:00:00Z","","0" +"NM-06417","50.22999954223633","50.22999954223633","","1971-01-13T00:00:00Z","","0" +"NM-02393","73.9800033569336","73.9800033569336","","1963-01-10T00:00:00Z","","0" +"NM-00621","108.70999908447266","108.70999908447266","","2014-12-15T00:00:00Z","","0" +"NM-02520","7.900000095367432","7.900000095367432","","1965-11-15T00:00:00Z","","0" +"EB-488","519.760009765625","516.760009765625","P","2004-03-31T00:00:00Z","","3" +"NM-28257","17.25","17.25","","1978-03-05T00:00:00Z","","0" +"SM-0002","144.0800018310547","142.30999755859375","","2008-12-18T00:00:00Z","","1.7699999809265137" +"NM-28256","104.29000091552734","104.29000091552734","","2021-01-25T00:00:00Z","","0" +"NM-17898","54.18000030517578","54.18000030517578","","1992-03-05T00:00:00Z","","0" +"NM-02220","167.1999969482422","167.1999969482422","","1998-01-13T00:00:00Z","","0" +"NM-01824","125.87000274658203","125.87000274658203","R","2004-01-20T00:00:00Z","","0" +"NM-25371","6.21999979019165","6.21999979019165","","1988-03-25T00:00:00Z","","0" +"NM-00366","154.72000122070312","154.72000122070312","","1983-09-26T00:00:00Z","","0" +"BC-0211","","","D","2016-06-29T00:00:00Z","","0" +"NM-11889","1.940000057220459","1.940000057220459","","1948-01-01T00:00:00Z","","0" +"NM-27905","22.479999542236328","22.479999542236328","","1995-01-26T00:00:00Z","","0" +"NM-02006","7.800000190734863","7.800000190734863","","1998-02-15T00:00:00Z","","0" +"NM-02630","64.2300033569336","64.2300033569336","","1960-09-21T00:00:00Z","","0" +"NM-01955","7.400000095367432","7.400000095367432","","1973-01-15T00:00:00Z","","0" +"EB-276","156.75","156.75","","1969-12-15T00:00:00Z","","0" +"EB-163","691.4199829101562","690.219970703125","","1984-06-30T00:00:00Z","","1.2000000476837158" +"NM-02296","51.4900016784668","51.4900016784668","","1995-01-24T00:00:00Z","","0" +"NM-09178","24.690000534057617","24.690000534057617","","1949-09-22T00:00:00Z","","0" +"NM-12109","31.93000030517578","31.93000030517578","","1996-08-29T00:00:00Z","","0" +"NM-05309","9.600000381469727","9.600000381469727","","1970-07-15T00:00:00Z","","0" +"NM-27625","49.04999923706055","49.04999923706055","","1957-01-27T00:00:00Z","","0" +"NM-05347","7.199999809265137","7.199999809265137","","1946-05-15T00:00:00Z","","0" +"NM-13573","40.77000045776367","40.77000045776367","","1966-01-11T00:00:00Z","","0" +"NM-02737","67.0999984741211","67.0999984741211","","1992-01-16T00:00:00Z","","0" +"NM-01955","2.4000000953674316","2.4000000953674316","","2002-07-15T00:00:00Z","","0" +"NM-03468","154.08999633789062","154.08999633789062","Z","1998-10-27T00:00:00Z","","0" +"DE-0074","88.41000366210938","88.41000366210938","","2008-05-20T00:00:00Z","","0" +"UC-0109","108.83999633789062","108.83999633789062","","2012-01-06T00:00:00Z","","0" +"NM-01490","230.22000122070312","230.22000122070312","","2014-03-20T00:00:00Z","","0" +"DE-0081","88.62999725341797","88.62999725341797","","2011-05-17T00:00:00Z","","0" +"NM-28255","74.12999725341797","74.12999725341797","","1955-04-15T00:00:00Z","","0" +"SB-0299","137.60000610351562","137.60000610351562","","2001-10-20T00:00:00Z","","0" +"NM-02163","10.960000038146973","10.960000038146973","","1985-01-15T00:00:00Z","","0" +"NM-03385","42.61000061035156","42.61000061035156","","1994-02-15T00:00:00Z","","0" +"BC-0124","103.55000305175781","103.55000305175781","","2013-12-19T00:00:00Z","","0" +"NM-04063","42.099998474121094","42.099998474121094","","1959-03-09T00:00:00Z","","0" +"NM-02594","50.54999923706055","50.54999923706055","","1981-01-17T00:00:00Z","","0" +"NM-28252","45.540000915527344","45.540000915527344","","2010-11-25T00:00:00Z","","0" +"SO-0244","7.96999979019165","7.399999618530273","","2021-05-08T00:00:00Z","0001-01-01T10:45:00Z","0.5699999928474426" +"NM-12354","43.58000183105469","43.58000183105469","P","1966-02-09T00:00:00Z","","0" +"NM-22633","270","270","","1979-03-17T00:00:00Z","","0" +"NM-02314","9.199999809265137","9.199999809265137","","1964-01-15T00:00:00Z","","0" +"NM-11928","-0.33000001311302185","-0.33000001311302185","","1951-05-07T00:00:00Z","","0" +"DE-0131","31","31","","2005-12-06T00:00:00Z","","0" +"NM-24775","73.79000091552734","73.79000091552734","","1961-10-17T00:00:00Z","","0" +"AB-0223","13.180000305175781","13.180000305175781","","1984-01-11T00:00:00Z","","0" +"NM-27234","6.840000152587891","6.840000152587891","","1952-09-20T00:00:00Z","","0" +"AB-0179","179.11000061035156","179.11000061035156","","1999-09-30T00:00:00Z","","" +"AB-0215","156.75999450683594","156.75999450683594","","2005-11-09T00:00:00Z","","" +"NM-28250","104.12999725341797","104.12999725341797","","1975-01-15T00:00:00Z","","0" +"NM-00988","89.2699966430664","89.2699966430664","","1977-01-27T00:00:00Z","","0" +"NM-01249","78.77999877929688","78.77999877929688","","1954-04-09T00:00:00Z","","0" +"NM-02209","99.13999938964844","99.13999938964844","","1954-03-20T00:00:00Z","","0" +"NM-21819","18.260000228881836","18.260000228881836","","1977-01-17T00:00:00Z","","0" +"NM-02599","23.09000015258789","23.09000015258789","","2004-01-28T00:00:00Z","","0" +"NM-20701","192.99000549316406","192.99000549316406","","1962-03-22T00:00:00Z","","0" +"NM-05139","223.5","223.5","","1986-03-06T00:00:00Z","","0" +"NM-07128","158.50999450683594","158.50999450683594","","1981-03-05T00:00:00Z","","0" +"NM-27396","96.72000122070312","96.72000122070312","","1966-03-11T00:00:00Z","","0" +"AB-0212","156.35000610351562","156.35000610351562","","2002-08-07T00:00:00Z","","" +"NM-00229","68.80000305175781","68.80000305175781","Z","2011-06-29T00:00:00Z","","0" +"NM-11323","4.28000020980835","4.28000020980835","","1981-03-02T00:00:00Z","","0" +"NM-22754","343.19000244140625","343.19000244140625","","1996-11-22T00:00:00Z","","0" +"SA-0069","35.33000183105469","34.52000045776367","","2013-02-21T00:00:00Z","","0.8100000023841858" +"NM-01023","338.7900085449219","338.7900085449219","A","2010-03-06T00:00:00Z","","0" +"NM-17291","52.7599983215332","52.7599983215332","","1955-01-24T00:00:00Z","","0" +"NM-01791","305.1300048828125","305.1300048828125","","1983-08-19T00:00:00Z","","0" +"NM-00974","351.6600036621094","351.6600036621094","","1980-01-07T00:00:00Z","","0" +"NM-01397","-35.5","-35.5","E","1980-01-09T00:00:00Z","","0" +"NM-02367","10.359999656677246","10.359999656677246","","1998-07-28T00:00:00Z","","0" +"NM-08744","50.97999954223633","50.97999954223633","","1962-08-21T00:00:00Z","","0" +"NM-02772","140.6699981689453","140.6699981689453","","1977-09-01T00:00:00Z","","0" +"NM-08990","89.19000244140625","89.19000244140625","","1961-11-24T00:00:00Z","","0" +"NM-27306","133.0500030517578","133.0500030517578","","1983-01-25T00:00:00Z","","0" +"EB-267","15.84000015258789","15.84000015258789","","2016-05-23T00:00:00Z","","0" +"EB-012","97.91000366210938","97.91000366210938","","1961-02-02T00:00:00Z","","0" +"NM-03338","11.630000114440918","11.630000114440918","X","1997-02-14T00:00:00Z","","0" +"NM-14066","43.91999816894531","43.91999816894531","","1996-01-31T00:00:00Z","","0" +"NM-20060","15.220000267028809","15.220000267028809","","1943-02-02T00:00:00Z","","0" +"NM-05550","84.62000274658203","84.62000274658203","S","1947-07-29T00:00:00Z","","0" +"NM-05354","69.69999694824219","69.69999694824219","","1956-08-21T00:00:00Z","","0" +"NM-28252","28.350000381469727","28.350000381469727","","1951-09-15T00:00:00Z","","0" +"NM-02773","63.34000015258789","63.34000015258789","","1982-03-30T00:00:00Z","","0" +"NM-12399","-93.4000015258789","-93.4000015258789","","1907-12-19T00:00:00Z","","0" +"NM-18635","242.2899932861328","242.2899932861328","","1982-12-16T00:00:00Z","","0" +"NM-01273","50.689998626708984","50.689998626708984","","1983-04-21T00:00:00Z","","0" +"NM-24863","205.75","205.75","","1962-02-15T00:00:00Z","","0" +"NM-01462","438.1600036621094","438.1600036621094","","2011-03-10T00:00:00Z","","0" +"NM-14259","-14.859999656677246","-14.859999656677246","","1911-12-16T00:00:00Z","","0" +"NM-09300","228.27999877929688","228.27999877929688","","1943-10-10T00:00:00Z","","0" +"NM-20926","67.38999938964844","67.38999938964844","","1990-02-28T00:00:00Z","","0" +"NM-02101","8.300000190734863","8.300000190734863","","1951-10-15T00:00:00Z","","0" +"NM-02995","55.68000030517578","55.68000030517578","","1986-01-10T00:00:00Z","","0" +"NM-17716","0.5899999737739563","0.5899999737739563","","1943-05-17T00:00:00Z","","0" +"NM-10294","47.619998931884766","47.619998931884766","","1943-09-15T00:00:00Z","","0" +"NM-00642","24.549999237060547","24.549999237060547","","1971-03-15T00:00:00Z","","0" +"SA-0037","45.47999954223633","43.72999954223633","","2012-03-05T00:00:00Z","","1.75" +"NM-02552","361.3999938964844","361.3999938964844","","1969-01-10T00:00:00Z","","0" +"NM-08153","11.050000190734863","11.050000190734863","","1951-05-14T00:00:00Z","","0" +"NM-13854","-10.819999694824219","-10.819999694824219","","1907-12-02T00:00:00Z","","0" +"NM-01900","319.2799987792969","319.2799987792969","","2005-02-03T00:00:00Z","","0" +"NM-11518","37.4900016784668","37.4900016784668","","1933-03-17T00:00:00Z","","0" +"NM-03325","72.75","72.75","","1966-02-17T00:00:00Z","","0" +"BC-0265","33.11000061035156","33.11000061035156","","2016-06-30T00:00:00Z","","0" +"DE-0271","80.75","80.75","","2016-03-24T00:00:00Z","","0" +"TB-0088","40.18000030517578","39.529998779296875","R","2010-08-11T00:00:00Z","","0.6499999761581421" +"AB-0089","182.38999938964844","182.38999938964844","","2015-11-04T00:00:00Z","","0" +"NM-22154","6.090000152587891","6.090000152587891","Z","2010-02-08T00:00:00Z","","0" +"NM-05983","40.25","40.25","","1971-01-13T00:00:00Z","","0" +"NM-14160","-28.719999313354492","-28.719999313354492","","1913-07-13T00:00:00Z","","0" +"NM-02831","61.119998931884766","61.119998931884766","","1976-11-01T00:00:00Z","","0" +"NM-21312","83.20999908447266","83.20999908447266","","1993-12-06T00:00:00Z","","0" +"NM-02702","74.98999786376953","74.98999786376953","","1970-06-01T00:00:00Z","","0" +"NM-02260","48.52000045776367","48.52000045776367","","1983-01-03T00:00:00Z","","0" +"NM-04756","61.869998931884766","61.869998931884766","","1950-05-22T00:00:00Z","","0" +"SB-0299","145.77999877929688","145.77999877929688","","2002-08-10T00:00:00Z","","0" +"NM-28015","498.9100036621094","498.9100036621094","S","2015-05-18T00:00:00Z","","0" +"NM-28258","119.44999694824219","119.44999694824219","","2007-01-16T00:00:00Z","","0" +"NM-03372","99.81999969482422","99.81999969482422","R","1956-05-08T00:00:00Z","","0" +"NM-17981","195.35000610351562","195.35000610351562","","1962-02-27T00:00:00Z","","0" +"NM-15658","10","10","","1960-07-10T00:00:00Z","","0" +"SB-0299","143.74000549316406","143.74000549316406","","2007-07-20T00:00:00Z","","0" +"NM-28253","25.040000915527344","25.040000915527344","","1995-06-05T00:00:00Z","","0" +"EB-263","5.360000133514404","5.360000133514404","","2004-07-29T00:00:00Z","","0" +"NM-06392","105.2300033569336","105.2300033569336","","1959-01-09T00:00:00Z","","0" +"NM-06027","63.15999984741211","63.15999984741211","","1941-07-08T00:00:00Z","","0" +"NM-16537","5.900000095367432","5.900000095367432","","1941-09-27T00:00:00Z","","0" +"NM-02532","274.4200134277344","274.4200134277344","","2002-01-08T00:00:00Z","","0" +"NM-19365","312.6000061035156","312.6000061035156","","1982-03-10T00:00:00Z","","0" +"NM-01899","31.59000015258789","31.59000015258789","","1997-04-09T00:00:00Z","","0" +"NM-21359","246.27000427246094","246.27000427246094","","2011-01-04T00:00:00Z","","0" +"NM-00494","33.560001373291016","33.560001373291016","","1964-02-12T00:00:00Z","","0" +"NM-11331","10.279999732971191","10.279999732971191","","1981-05-27T00:00:00Z","","0" +"NM-21843","212.22000122070312","212.22000122070312","","2010-05-13T00:00:00Z","","0" +"AB-0037","339.80999755859375","339.80999755859375","","1997-08-11T00:00:00Z","","" +"NM-00257","94.3499984741211","94.3499984741211","Z","1994-02-22T00:00:00Z","","0" +"NM-05593","91.5999984741211","91.5999984741211","S","1951-09-18T00:00:00Z","","0" +"WL-0051","60.970001220703125","59.37000274658203","","2022-10-12T00:00:00Z","0001-01-01T10:05:00Z","1.600000023841858" +"NM-12666","16.209999084472656","16.209999084472656","","1949-11-04T00:00:00Z","","0" +"TB-0037","48.5099983215332","45.5099983215332","","2013-08-14T00:00:00Z","","3" +"NM-03877","24.190000534057617","24.190000534057617","P","1950-05-23T00:00:00Z","","0" +"NM-00781","31.280000686645508","31.280000686645508","","1965-01-28T00:00:00Z","","0" +"NM-07075","64.7300033569336","64.7300033569336","","1958-01-13T00:00:00Z","","0" +"NM-28252","58.25","58.25","","1966-10-15T00:00:00Z","","0" +"NM-11393","106.37999725341797","106.37999725341797","","1983-02-17T00:00:00Z","","0" +"NM-27367","148.69000244140625","148.69000244140625","","1990-08-30T00:00:00Z","","0" +"NM-02644","30.75","30.75","","1960-01-22T00:00:00Z","","0" +"NM-07808","25.809999465942383","25.809999465942383","","1968-01-02T00:00:00Z","","0" +"NM-01269","94.55999755859375","94.55999755859375","","1968-04-03T00:00:00Z","","0" +"NM-27499","101.97000122070312","101.97000122070312","","1958-06-04T00:00:00Z","","0" +"NM-24836","186.13999938964844","186.13999938964844","","1960-02-15T00:00:00Z","","0" +"NM-00019","105.45999908447266","105.45999908447266","","2018-01-26T00:00:00Z","","0" +"NM-05117","83.12000274658203","83.12000274658203","","1950-11-29T00:00:00Z","","0" +"NM-14831","89.66000366210938","89.66000366210938","","1995-02-08T00:00:00Z","","0" +"EB-386","169.47000122070312","167.77000427246094","","2004-06-24T00:00:00Z","","1.7000000476837158" +"NM-03431","461.3800048828125","461.3800048828125","","1990-03-07T00:00:00Z","","0" +"NM-27735","39.58000183105469","39.58000183105469","","1952-01-27T00:00:00Z","","0" +"NM-03192","57.09000015258789","57.09000015258789","","1959-09-19T00:00:00Z","","0" +"BC-0199","40.7400016784668","40.7400016784668","","2012-05-30T00:00:00Z","","0" +"NM-10593","18.65999984741211","18.65999984741211","","1946-01-18T00:00:00Z","","0" +"NM-06149","7.800000190734863","7.800000190734863","","1975-01-16T00:00:00Z","","0" +"NM-02811","83.69999694824219","83.69999694824219","","2003-01-14T00:00:00Z","","0" +"NM-05624","72.23999786376953","72.23999786376953","","1943-10-11T00:00:00Z","","0" +"NM-23828","22.600000381469727","22.600000381469727","","1973-06-13T00:00:00Z","","0" +"NM-08109","-77.2300033569336","-77.2300033569336","","1907-06-20T00:00:00Z","","0" +"NM-04682","74.38999938964844","74.38999938964844","","1988-01-27T00:00:00Z","","0" +"NM-18188","61.04999923706055","61.04999923706055","","1975-04-17T00:00:00Z","","0" +"SV-0073","367.20001220703125","365.2799987792969","","2019-02-23T00:00:00Z","","1.9199999570846558" +"NM-28250","95.12999725341797","95.12999725341797","","2013-10-25T00:00:00Z","","0" +"NM-21638","187.6699981689453","187.6699981689453","","2015-11-04T00:00:00Z","","0" +"NM-05718","85.6500015258789","85.6500015258789","","1939-05-09T00:00:00Z","","0" +"NM-00686","60.31999969482422","60.31999969482422","Z","1999-10-14T00:00:00Z","","0" +"NM-04116","79.48999786376953","79.48999786376953","","1981-01-16T00:00:00Z","","0" +"NM-00767","15.539999961853027","15.539999961853027","","1993-08-27T00:00:00Z","","0" +"NM-27571","19.209999084472656","19.209999084472656","","1964-09-01T00:00:00Z","","0" +"NM-00578","107.3499984741211","107.3499984741211","","1971-03-24T00:00:00Z","","0" +"NM-10609","21.190000534057617","21.190000534057617","","1950-01-13T00:00:00Z","","0" +"NM-11686","92.87000274658203","92.87000274658203","","1991-02-07T00:00:00Z","","0" +"NM-00783","18.780000686645508","18.780000686645508","","2006-02-23T00:00:00Z","","0" +"NM-02520","11.520000457763672","11.520000457763672","","2015-08-13T00:00:00Z","","0" +"NM-08478","82.7300033569336","82.7300033569336","","1991-01-16T00:00:00Z","","0" +"SB-0299","102.05999755859375","102.05999755859375","","1967-01-10T00:00:00Z","","0" +"PC-014","117.29000091552734","116.19000244140625","","2022-06-24T00:00:00Z","0001-01-01T09:34:00Z","1.100000023841858" +"NM-04598","68.19999694824219","68.19999694824219","P","1973-03-26T00:00:00Z","","0" +"NM-14259","-8.800000190734863","-8.800000190734863","","1909-05-27T00:00:00Z","","0" +"NM-27424","173.19000244140625","173.19000244140625","","1979-02-09T00:00:00Z","","0" +"NM-11331","10.130000114440918","10.130000114440918","","1984-01-06T00:00:00Z","","0" +"NM-04616","57.86000061035156","57.86000061035156","","1946-01-12T00:00:00Z","","0" +"EB-483","22.299999237060547","22.299999237060547","","1980-05-15T00:00:00Z","","" +"NM-10508","124.33999633789062","124.33999633789062","","1981-04-02T00:00:00Z","","0" +"NM-17972","142.89999389648438","142.89999389648438","","1962-03-06T00:00:00Z","","0" +"NM-02209","103.86000061035156","103.86000061035156","","1984-09-01T00:00:00Z","","0" +"NM-21510","61.47999954223633","61.47999954223633","","1951-11-21T00:00:00Z","","0" +"NM-19894","101.26000213623047","101.26000213623047","","1977-02-24T00:00:00Z","","0" +"NM-19387","308.739990234375","308.739990234375","","1962-02-27T00:00:00Z","","0" +"NM-14098","-4.179999828338623","-4.179999828338623","","1907-12-03T00:00:00Z","","0" +"NM-03437","94.51000213623047","94.51000213623047","","1960-08-26T00:00:00Z","","0" +"NM-10099","150.10000610351562","150.10000610351562","","1970-06-01T00:00:00Z","","0" +"NM-02288","14.5","14.5","","2016-02-29T00:00:00Z","","0" +"NM-08866","-81.8499984741211","-81.8499984741211","","1914-01-15T00:00:00Z","","0" +"NM-00742","57.84000015258789","57.84000015258789","","2003-03-04T00:00:00Z","","0" +"NM-04313","55.150001525878906","55.150001525878906","","1953-03-21T00:00:00Z","","0" +"NM-02026","61.7599983215332","61.7599983215332","","1961-05-01T00:00:00Z","","0" +"NM-00709","26.5","26.5","","2002-08-07T00:00:00Z","","0" +"NM-08189","7.900000095367432","7.900000095367432","","1971-07-15T00:00:00Z","","0" +"SV-0051","297.70001220703125","296.1166687011719","","2014-12-13T00:00:00Z","","1.5833333730697632" +"NM-28021","501.6199951171875","501.6199951171875","S","2015-04-18T00:00:00Z","","0" +"NM-02209","107.94999694824219","107.94999694824219","","1980-10-01T00:00:00Z","","0" +"NM-12881","51.2400016784668","51.2400016784668","","1976-05-06T00:00:00Z","","0" +"NM-13669","75","75","","1991-12-04T00:00:00Z","","0" +"NM-03020","54.68000030517578","54.68000030517578","","1954-07-23T00:00:00Z","","0" +"DE-0109","41.40999984741211","41.40999984741211","","2014-01-21T00:00:00Z","","0" +"NM-09920","10.239999771118164","10.239999771118164","","2010-05-24T00:00:00Z","","0" +"NM-17452","67.94999694824219","67.94999694824219","","1956-07-23T00:00:00Z","","0" +"NM-02141","137.3300018310547","137.3300018310547","","1971-01-20T00:00:00Z","","0" +"NM-26573","20","20","","1972-08-10T00:00:00Z","","0" +"NM-03388","11.020000457763672","11.020000457763672","","1957-10-30T00:00:00Z","","0" +"DE-0181","","","D","2016-07-27T00:00:00Z","","0" +"NM-15158","14.050000190734863","14.050000190734863","","1963-10-02T00:00:00Z","","0" +"SB-0235","133.7899932861328","133.7899932861328","","2011-02-12T00:00:00Z","","0" +"EB-606","118.29000091552734","118.29000091552734","","2008-06-04T00:00:00Z","","0" +"NM-02029","9.100000381469727","9.100000381469727","","1993-12-15T00:00:00Z","","0" +"EB-157","1.1100000143051147","0.36000001430511475","","1976-04-23T00:00:00Z","","0.75" +"NM-03455","294.3900146484375","294.3900146484375","R","1986-01-28T00:00:00Z","","0" +"NM-01892","13","13","","1997-11-13T00:00:00Z","","0" +"NM-06073","89.5199966430664","89.5199966430664","","1959-01-09T00:00:00Z","","0" +"NM-28259","132.4600067138672","132.4600067138672","","2015-10-15T00:00:00Z","","0" +"SB-0299","137.61000061035156","137.61000061035156","","1998-08-30T00:00:00Z","","0" +"NM-01927","104.51000213623047","104.51000213623047","","1958-07-31T00:00:00Z","","0" +"NM-00259","48.20000076293945","48.20000076293945","","1951-01-15T00:00:00Z","","0" +"NM-14405","21.84000015258789","21.84000015258789","","1965-01-04T00:00:00Z","","0" +"NM-16781","42.400001525878906","42.400001525878906","","1964-01-08T00:00:00Z","","0" +"NM-01872","6.199999809265137","6.199999809265137","","2000-04-15T00:00:00Z","","0" +"NM-02279","31","31","","2005-01-25T00:00:00Z","","0" +"NM-11547","66.5999984741211","66.5999984741211","","1951-01-18T00:00:00Z","","0" +"NM-03338","8.869999885559082","8.869999885559082","","1989-06-27T00:00:00Z","","0" +"NM-00566","71.91999816894531","71.91999816894531","","1985-02-13T00:00:00Z","","0" +"NM-07136","127.58999633789062","127.58999633789062","","2003-01-09T00:00:00Z","","0" +"NM-13158","105.66000366210938","105.66000366210938","","1954-01-30T00:00:00Z","","0" +"NM-00429","15.100000381469727","15.100000381469727","","1960-07-20T00:00:00Z","","0" +"NM-18432","238.3000030517578","238.3000030517578","","1955-11-16T00:00:00Z","","0" +"NM-28255","195.50999450683594","195.50999450683594","","1971-07-15T00:00:00Z","","0" +"NM-28257","10.149999618530273","10.149999618530273","","2018-06-05T00:00:00Z","","0" +"DE-0238","104.81999969482422","104.81999969482422","","2003-08-18T00:00:00Z","","0" +"NM-00558","51.09000015258789","51.09000015258789","","1954-01-06T00:00:00Z","","0" +"NM-28378","20.1299991607666","20.1299991607666","","2015-05-18T00:00:00Z","","0" +"AB-0101","720.4099731445312","720.4099731445312","","2005-01-25T00:00:00Z","","" +"NM-21288","105.41999816894531","105.41999816894531","","1972-06-21T00:00:00Z","","0" +"NM-18458","119.62999725341797","119.62999725341797","","1974-06-18T00:00:00Z","","0" +"EB-276","145","145","","1956-11-26T00:00:00Z","","0" +"NM-01868","12.899999618530273","12.899999618530273","","1966-05-15T00:00:00Z","","0" +"NM-03976","95.94999694824219","95.94999694824219","","1957-01-18T00:00:00Z","","0" +"DE-0250","53.88999938964844","53.88999938964844","","2012-12-05T00:00:00Z","","0" +"NM-02527","13.699999809265137","13.699999809265137","","1964-07-15T00:00:00Z","","0" +"NM-28256","224.85000610351562","224.85000610351562","","2006-04-14T00:00:00Z","","0" +"NM-02797","3.869999885559082","3.869999885559082","","1960-05-03T00:00:00Z","","0" +"NM-27209","86.94999694824219","86.94999694824219","","2001-07-16T00:00:00Z","","0" +"DE-0129","44.18000030517578","44.18000030517578","","2015-07-29T00:00:00Z","","0" +"NM-02019","172.89999389648438","172.89999389648438","P","1959-08-04T00:00:00Z","","0" +"NM-02527","10.600000381469727","10.600000381469727","","1969-11-15T00:00:00Z","","0" +"NM-08153","4.070000171661377","4.070000171661377","","1943-02-20T00:00:00Z","","0" +"NM-00366","110.25","110.25","","1984-11-05T00:00:00Z","","0" +"NM-08417","-24.100000381469727","-24.100000381469727","","1908-09-09T00:00:00Z","","0" +"NM-09978","17.829999923706055","17.829999923706055","","1951-01-11T00:00:00Z","","0" +"NM-22465","288.3299865722656","288.3299865722656","","2015-03-23T00:00:00Z","","0" +"NM-22187","413.1199951171875","413.1199951171875","","2014-02-04T00:00:00Z","","0" +"NM-10588","-54.130001068115234","-54.130001068115234","","1907-06-26T00:00:00Z","","0" +"NM-07161","94.5","94.5","","1999-10-05T00:00:00Z","","0" +"NM-02284","9.529999732971191","9.529999732971191","","1997-01-22T00:00:00Z","","0" +"NM-04632","10.399999618530273","10.399999618530273","","1952-08-15T00:00:00Z","","0" +"NM-07225","196.60000610351562","196.60000610351562","","1976-01-01T00:00:00Z","","0" +"AB-0122","543.1099853515625","543.1099853515625","","2003-05-01T00:00:00Z","","" +"NM-05205","85.19000244140625","85.19000244140625","","1966-05-02T00:00:00Z","","0" +"NM-01971","5","5","","2002-07-15T00:00:00Z","","0" +"NM-20632","37.09000015258789","37.09000015258789","","1986-04-18T00:00:00Z","","0" +"NM-27327","11.470000267028809","11.470000267028809","","1955-09-13T00:00:00Z","","0" +"NM-01790","263.07000732421875","263.07000732421875","","1976-01-16T00:00:00Z","","0" +"NM-03468","150.60000610351562","150.60000610351562","R","1995-04-18T00:00:00Z","","0" +"DE-0114","35.779998779296875","35.779998779296875","","2001-06-25T00:00:00Z","","0" +"NM-06669","46.040000915527344","46.040000915527344","","1966-08-02T00:00:00Z","","0" +"NM-02978","357.6000061035156","357.6000061035156","","1980-06-26T00:00:00Z","","0" +"NM-13660","-35.650001525878906","-35.650001525878906","","1910-05-20T00:00:00Z","","0" +"NM-02668","37.65999984741211","37.65999984741211","P","1955-01-21T00:00:00Z","","0" +"EB-270","102.58000183105469","102.58000183105469","","2014-01-09T00:00:00Z","","0" +"NM-03403","7.25","7.25","","1994-01-13T00:00:00Z","","0" +"NM-03213","173.0500030517578","173.0500030517578","","2003-01-30T00:00:00Z","","0" +"NM-16931","21.709999084472656","21.709999084472656","","1943-01-31T00:00:00Z","","0" +"NM-18802","67.95999908447266","67.95999908447266","","1977-01-27T00:00:00Z","","0" +"NM-20110","91","91","","1986-10-15T00:00:00Z","","0" +"BC-0156","233.1999969482422","233.1999969482422","","2018-09-23T00:00:00Z","","0" +"NM-03349","31","31","S","1986-08-01T00:00:00Z","","0" +"EB-220","126.02999877929688","126.02999877929688","","1974-10-16T00:00:00Z","","0" +"NM-03087","265.0299987792969","265.0299987792969","","1983-01-10T00:00:00Z","","0" +"NM-22827","126.16000366210938","126.16000366210938","","1944-03-15T00:00:00Z","","0" +"NM-18043","115.48999786376953","115.48999786376953","","2004-12-14T00:00:00Z","","0" +"NM-07150","61.4900016784668","61.4900016784668","","1968-03-12T00:00:00Z","","0" +"NM-01831","326.6199951171875","326.6199951171875","","2008-03-04T00:00:00Z","","0" +"NM-02591","15.979999542236328","15.979999542236328","","2013-09-19T00:00:00Z","","0" +"NM-02487","10.899999618530273","10.899999618530273","","1967-01-15T00:00:00Z","","0" +"SB-0076","200.72999572753906","200.72999572753906","","1972-02-09T00:00:00Z","","0" +"NM-05315","120.62999725341797","120.62999725341797","R","1958-04-22T00:00:00Z","","0" +"NM-03011","86.22000122070312","86.22000122070312","","1983-01-10T00:00:00Z","","0" +"BC-0103","130.72999572753906","130.72999572753906","","2018-09-24T00:00:00Z","","0" +"NM-00253","22.719999313354492","22.719999313354492","","1969-03-01T00:00:00Z","","0" +"NM-05983","46.119998931884766","46.119998931884766","","1948-01-13T00:00:00Z","","0" +"NM-13858","5.340000152587891","5.340000152587891","","1959-04-29T00:00:00Z","","0" +"WL-0086","93.20833587646484","91.44833374023438","","2004-10-29T00:00:00Z","","1.7599999904632568" +"NM-28259","100.08000183105469","100.08000183105469","","1953-06-25T00:00:00Z","","0" +"NM-21719","48.310001373291016","48.310001373291016","S","1983-10-19T00:00:00Z","","0" +"NM-05689","80.08999633789062","80.08999633789062","","1938-01-07T00:00:00Z","","0" +"NM-21445","32.65999984741211","32.65999984741211","","1987-11-07T00:00:00Z","","0" +"NM-28252","67","67","","1972-04-05T00:00:00Z","","0" +"NM-18600","239.4499969482422","239.4499969482422","","1954-03-04T00:00:00Z","","0" +"NM-28257","-0.9200000166893005","-0.9200000166893005","","1994-09-25T00:00:00Z","","0" +"SB-0299","151.49000549316406","151.49000549316406","","2014-09-15T00:00:00Z","","0" +"NM-17094","35.029998779296875","35.029998779296875","","1950-07-27T00:00:00Z","","0" +"NM-03349","37.599998474121094","37.599998474121094","Z","1996-04-11T00:00:00Z","","0" +"EB-149","300.45001220703125","299.0500183105469","","2004-06-22T00:00:00Z","","1.399999976158142" +"NM-00601","57.540000915527344","57.540000915527344","","1986-02-06T00:00:00Z","","0" +"NM-01890","82.91000366210938","82.91000366210938","","1996-12-18T00:00:00Z","","0" +"NM-14351","589.72998046875","589.72998046875","","1982-05-19T00:00:00Z","","0" +"TB-0224","91.05000305175781","90.61000061035156","","2010-04-26T00:00:00Z","","0.4399999976158142" +"NM-12439","14.979999542236328","14.979999542236328","","1939-05-10T00:00:00Z","","0" +"NM-12710","25.59000015258789","25.59000015258789","","1991-01-16T00:00:00Z","","0" +"BC-0022","","60.5","","2023-03-15T00:00:00Z","","1.350000023841858" +"NM-12311","65.11000061035156","65.11000061035156","P","1966-02-15T00:00:00Z","","0" +"NM-04166","108.75","108.75","","1950-12-04T00:00:00Z","","0" +"NM-22304","5.949999809265137","5.949999809265137","","1997-02-27T00:00:00Z","","0" +"EB-392","126.11000061035156","125.20999908447266","","2004-07-15T00:00:00Z","","0.8999999761581421" +"NM-00229","65.9800033569336","65.9800033569336","","1998-02-18T00:00:00Z","","0" +"NM-06676","11.899999618530273","11.899999618530273","","1953-01-15T00:00:00Z","","0" +"NM-00600","75.3499984741211","75.3499984741211","","2005-01-06T00:00:00Z","","0" +"UC-0078","160.77999877929688","160.77999877929688","","1971-03-15T00:00:00Z","","0" +"NM-00385","39.27000045776367","39.27000045776367","","1951-11-21T00:00:00Z","","0" +"NM-28254","142.39999389648438","142.39999389648438","","2019-08-15T00:00:00Z","","0" +"SB-0299","106.11000061035156","106.11000061035156","","1967-11-30T00:00:00Z","","0" +"NM-17659","41.75","41.75","","1965-02-19T00:00:00Z","","0" +"NM-03421","34.95000076293945","34.95000076293945","Z","1991-01-30T00:00:00Z","","0" +"NM-03651","33.97999954223633","33.97999954223633","","2005-12-08T00:00:00Z","","0" +"NM-03395","13.9399995803833","13.9399995803833","","1988-11-28T00:00:00Z","","0" +"NM-17271","71.70999908447266","71.70999908447266","","1963-01-01T00:00:00Z","","0" +"NM-02017","8.600000381469727","8.600000381469727","","1972-02-15T00:00:00Z","","0" +"NM-00202","54.099998474121094","54.099998474121094","Z","1998-08-10T00:00:00Z","","0" +"NM-00647","98.75","98.75","","2005-01-06T00:00:00Z","","0" +"EB-207","132.89999389648438","132.89999389648438","","1959-02-25T00:00:00Z","","0" +"SB-0299","124.27999877929688","124.27999877929688","","1992-07-30T00:00:00Z","","0" +"NM-28252","42.06999969482422","42.06999969482422","","1988-01-25T00:00:00Z","","0" +"NM-10114","113.44999694824219","113.44999694824219","","1991-02-08T00:00:00Z","","0" +"NM-25350","446.20001220703125","446.20001220703125","","1982-01-20T00:00:00Z","","0" +"NM-28256","87.08999633789062","87.08999633789062","","2019-01-25T00:00:00Z","","0" +"NM-20291","258.92999267578125","258.92999267578125","","1987-03-11T00:00:00Z","","0" +"NM-14217","18.559999465942383","18.559999465942383","","1965-01-05T00:00:00Z","","0" +"NM-02207","11.199999809265137","11.199999809265137","","1971-09-15T00:00:00Z","","0" +"NM-02738","46.279998779296875","46.279998779296875","","2008-01-24T00:00:00Z","","0" +"NM-14924","46.86000061035156","46.86000061035156","","1956-03-05T00:00:00Z","","0" +"NM-19786","132.69000244140625","132.69000244140625","","2001-08-14T00:00:00Z","","0" +"NM-01490","347.42999267578125","347.42999267578125","","1985-02-21T00:00:00Z","","0" +"SB-0299","133.69000244140625","133.69000244140625","","2013-03-05T00:00:00Z","","0" +"NM-02209","97.51000213623047","97.51000213623047","","1951-09-27T00:00:00Z","","0" +"NM-03420","28.489999771118164","28.489999771118164","T","1984-01-11T00:00:00Z","","0" +"AR-0004","26.6299991607666","25.729999542236328","","2015-08-18T00:00:00Z","","0.8999999761581421" +"NM-06376","233","233","","1983-01-19T00:00:00Z","","0" +"BC-0111","41.97999954223633","41.97999954223633","","2013-06-17T00:00:00Z","","0" +"NM-25127","51.33000183105469","51.33000183105469","","1970-09-25T00:00:00Z","","0" +"TV-152","305.54998779296875","303.54998779296875","","2011-12-12T00:00:00Z","","2" +"NM-03183","88.87000274658203","88.87000274658203","R","1953-08-17T00:00:00Z","","0" +"NM-02912","61.060001373291016","61.060001373291016","","2000-02-16T00:00:00Z","","0" +"NM-13108","-15.619999885559082","-15.619999885559082","","1909-03-05T00:00:00Z","","0" +"NM-09685","-128.0500030517578","-128.0500030517578","","1913-01-14T00:00:00Z","","0" +"EB-271","47.7400016784668","47.7400016784668","","1980-08-14T00:00:00Z","","0" +"NM-00366","149.14999389648438","149.14999389648438","","1991-07-08T00:00:00Z","","0" +"NM-28259","84.94000244140625","84.94000244140625","","2005-01-14T00:00:00Z","","0" +"NM-10096","11.979999542236328","11.979999542236328","","1977-07-14T00:00:00Z","","0" +"NM-20792","179.6699981689453","179.6699981689453","","1982-01-27T00:00:00Z","","0" +"NM-01875","174.6300048828125","174.6300048828125","","1979-01-05T00:00:00Z","","0" +"NM-00245","80.37000274658203","80.37000274658203","","1954-01-08T00:00:00Z","","0" +"NM-17034","26.760000228881836","26.760000228881836","","1932-07-30T00:00:00Z","","0" +"NM-07946","186.8699951171875","186.8699951171875","","1977-12-15T00:00:00Z","","0" +"NM-02005","5","5","","1946-06-15T00:00:00Z","","0" +"NM-05497","84.88999938964844","84.88999938964844","","1944-04-14T00:00:00Z","","0" +"NM-28259","100.41000366210938","100.41000366210938","","1970-12-05T00:00:00Z","","0" +"NM-02018","60.959999084472656","60.959999084472656","","1951-11-20T00:00:00Z","","0" +"NM-08374","21.81999969482422","21.81999969482422","","1957-01-16T00:00:00Z","","0" +"NM-24271","59","59","","1980-05-31T00:00:00Z","","0" +"BC-0034","41.63999938964844","41.63999938964844","R","1993-04-20T00:00:00Z","","0" +"NM-09026","32.5","32.5","","1964-01-14T00:00:00Z","","0" +"NM-07699","56.38999938964844","56.38999938964844","","1996-03-05T00:00:00Z","","0" +"NM-06467","357.80999755859375","357.80999755859375","","1990-09-21T00:00:00Z","","0" +"NM-00253","24.110000610351562","24.110000610351562","","1983-08-01T00:00:00Z","","0" +"NM-27380","13.100000381469727","13.100000381469727","","2011-01-24T00:00:00Z","","0" +"NM-17951","9.899999618530273","9.899999618530273","","1956-01-18T00:00:00Z","","0" +"NM-14093","-11.760000228881836","-11.760000228881836","","1908-12-08T00:00:00Z","","0" +"EB-246","287.1000061035156","287.1000061035156","","2001-04-25T00:00:00Z","","0" +"NM-16974","57.88999938964844","57.88999938964844","","1961-01-09T00:00:00Z","","0" +"NM-03078","136.8300018310547","136.8300018310547","R","1997-04-29T00:00:00Z","","0" +"DE-0241","107.19999694824219","107.19999694824219","","2005-12-13T00:00:00Z","","0" +"NM-02219","88.31999969482422","88.31999969482422","","1987-02-19T00:00:00Z","","0" +"NM-03365","45.65999984741211","45.65999984741211","","1965-08-06T00:00:00Z","","0" +"NM-03090","69.87000274658203","69.87000274658203","","1975-01-03T00:00:00Z","","0" +"NM-01948","8","8","","1979-04-15T00:00:00Z","","0" +"NM-28010","498.8699951171875","498.8699951171875","S","2015-06-01T00:00:00Z","","0" +"NM-02560","125.56999969482422","125.56999969482422","","1999-01-07T00:00:00Z","","0" +"NM-03058","210.5500030517578","210.5500030517578","","1988-01-12T00:00:00Z","","0" +"NM-02047","70.31999969482422","70.31999969482422","","1980-02-06T00:00:00Z","","0" +"NM-00261","11.4399995803833","11.4399995803833","","1975-01-07T00:00:00Z","","0" +"NM-13854","-8.6899995803833","-8.6899995803833","","1908-12-01T00:00:00Z","","0" +"SM-0173","269","268.79998779296875","","1989-03-01T00:00:00Z","","0.20000000298023224" +"NM-02415","62.439998626708984","62.439998626708984","","1965-12-29T00:00:00Z","","0" +"NM-12725","24.549999237060547","24.549999237060547","","1953-03-24T00:00:00Z","","0" +"NM-12504","-47.20000076293945","-47.20000076293945","","1915-01-04T00:00:00Z","","0" +"NM-28250","107.2300033569336","107.2300033569336","","1983-08-05T00:00:00Z","","0" +"NM-03382","121.6500015258789","121.6500015258789","","1979-09-20T00:00:00Z","","0" +"NM-00385","40.040000915527344","40.040000915527344","","1958-09-10T00:00:00Z","","0" +"NM-08015","-5.619999885559082","-5.619999885559082","","1908-06-18T00:00:00Z","","0" +"BC-0118","","37.709999084472656","","2023-04-04T00:00:00Z","","0.8999999761581421" +"NM-15478","101.80000305175781","101.80000305175781","","1980-01-16T00:00:00Z","","0" +"NM-01702","75.30999755859375","75.30999755859375","","2012-01-11T00:00:00Z","","0" +"NM-11565","95.1500015258789","95.1500015258789","","1958-03-07T00:00:00Z","","0" +"NM-03687","119.16000366210938","119.16000366210938","","1973-02-22T00:00:00Z","","0" +"NM-15559","89.80999755859375","89.80999755859375","","1970-02-10T00:00:00Z","","0" +"NM-00817","8.850000381469727","8.850000381469727","","1989-02-14T00:00:00Z","","0" +"NM-23422","742","742","","1988-02-15T00:00:00Z","","0" +"NM-02453","131","131","P","1962-08-10T00:00:00Z","","0" +"NM-13435","33.7400016784668","33.7400016784668","","1984-01-10T00:00:00Z","","0" +"NM-17212","33.880001068115234","33.880001068115234","","1945-01-17T00:00:00Z","","0" +"NM-01948","3.200000047683716","3.200000047683716","","1962-09-15T00:00:00Z","","0" +"NM-02352","7.599999904632568","7.599999904632568","","2002-07-15T00:00:00Z","","0" +"SB-0299","110.3499984741211","110.3499984741211","","1995-02-15T00:00:00Z","","0" +"NM-05038","106.87999725341797","106.87999725341797","","1972-01-26T00:00:00Z","","0" +"NM-08289","","","D","2014-08-25T00:00:00Z","","0" +"NM-00281","15.449999809265137","15.449999809265137","","2006-02-22T00:00:00Z","","0" +"TV-174","14.949999809265137","13.889999389648438","","2008-06-03T00:00:00Z","","1.059999942779541" +"NM-24338","53.709999084472656","53.709999084472656","","1983-06-24T00:00:00Z","","0" +"WL-0088","84.04166412353516","81.44166564941406","","2003-12-24T00:00:00Z","","2.5999999046325684" +"NM-28011","492.239990234375","492.239990234375","S","2015-05-16T00:00:00Z","","0" +"NM-27432","34.02000045776367","34.02000045776367","","1931-04-30T00:00:00Z","","0" +"NM-28253","5.860000133514404","5.860000133514404","","1961-01-15T00:00:00Z","","0" +"NM-08322","265.2699890136719","265.2699890136719","","1971-02-11T00:00:00Z","","0" +"NM-00025","201.75","201.75","","1962-01-29T00:00:00Z","","0" +"EB-245","184.13999938964844","184.13999938964844","","1986-12-31T00:00:00Z","","0" +"NM-09682","464.7699890136719","464.7699890136719","","1961-10-01T00:00:00Z","","0" +"BC-0294","172.25","172.25","","2018-04-04T00:00:00Z","","0" +"NM-01926","5.699999809265137","5.699999809265137","","1954-08-15T00:00:00Z","","0" +"NM-09005","11.920000076293945","11.920000076293945","","1945-01-04T00:00:00Z","","0" +"NM-16856","240","240","","1992-06-21T00:00:00Z","","0" +"NM-02567","84","84","P","1992-06-02T00:00:00Z","","0" +"NM-02669","52.209999084472656","52.209999084472656","","1993-02-01T00:00:00Z","","0" +"NM-10589","-21.6299991607666","-21.6299991607666","","1944-01-19T00:00:00Z","","0" +"NM-11028","58.68000030517578","58.68000030517578","","1976-03-04T00:00:00Z","","0" +"NM-02207","10.600000381469727","10.600000381469727","","1995-08-15T00:00:00Z","","0" +"NM-02976","104.31999969482422","104.31999969482422","P","1967-01-05T00:00:00Z","","0" +"EB-478","17.65999984741211","17.65999984741211","","1985-08-31T00:00:00Z","","0" +"NM-27521","79.81999969482422","79.81999969482422","","2016-02-10T00:00:00Z","","0" +"NM-10063","7.510000228881836","7.510000228881836","","1975-02-18T00:00:00Z","","0" +"NM-07163","93.62999725341797","93.62999725341797","","2005-07-28T00:00:00Z","","0" +"NM-10801","-58.75","-58.75","","1913-01-12T00:00:00Z","","0" +"NM-02185","27.3700008392334","27.3700008392334","","2016-02-12T00:00:00Z","","0" +"EB-269","89.12999725341797","89.12999725341797","","2014-03-06T00:00:00Z","","0" +"NM-14396","6.849999904632568","6.849999904632568","","1980-08-22T00:00:00Z","","0" +"NM-28259","130.66000366210938","130.66000366210938","","1992-08-25T00:00:00Z","","0" +"DE-0100","91.73999786376953","91.73999786376953","","2014-04-29T00:00:00Z","","0" +"NM-23954","131.36000061035156","131.36000061035156","","1978-03-29T00:00:00Z","","0" +"NM-28253","24.190000534057617","24.190000534057617","","2000-09-05T00:00:00Z","","0" +"NM-01765","46.290000915527344","46.290000915527344","","1976-02-06T00:00:00Z","","0" +"NM-20897","58.900001525878906","58.900001525878906","","1944-09-19T00:00:00Z","","0" +"NM-09698","229.14999389648438","229.14999389648438","","1950-01-11T00:00:00Z","","0" +"NM-03258","82.20999908447266","82.20999908447266","","1987-09-08T00:00:00Z","","0" +"NM-01884","10.369999885559082","10.369999885559082","S","2012-09-14T00:00:00Z","","0" +"NM-03378","26.90999984741211","26.90999984741211","Z","2010-02-23T00:00:00Z","","0" +"NM-12477","13.600000381469727","13.600000381469727","","1960-01-28T00:00:00Z","","0" +"NM-01201","25.34000015258789","25.34000015258789","","1955-08-10T00:00:00Z","","0" +"NM-00579","65.55000305175781","65.55000305175781","","1986-01-08T00:00:00Z","","0" +"NM-01592","195.10000610351562","195.10000610351562","","1998-01-23T00:00:00Z","","0" +"NM-27474","88.91999816894531","88.91999816894531","","1958-07-16T00:00:00Z","","0" +"DE-0271","82.87000274658203","82.87000274658203","","2017-06-05T00:00:00Z","","0" +"NM-17106","56.54999923706055","56.54999923706055","","1956-07-23T00:00:00Z","","0" +"NM-22464","235.74000549316406","235.74000549316406","Z","2011-05-16T00:00:00Z","","0" +"NM-00203","63.66999816894531","63.66999816894531","","1976-01-16T00:00:00Z","","0" +"NM-13528","2","2","","1957-10-07T00:00:00Z","","0" +"EB-244","128.27999877929688","128.27999877929688","","2010-07-14T00:00:00Z","","0" +"NM-03421","32.779998779296875","32.779998779296875","","1985-09-16T00:00:00Z","","0" +"NM-01971","8.300000190734863","8.300000190734863","","1983-02-15T00:00:00Z","","0" +"NM-00963","353.4200134277344","353.4200134277344","","1990-01-04T00:00:00Z","","0" +"SB-0442","171.3000030517578","171.3000030517578","","2009-08-20T00:00:00Z","","0" +"NM-28252","54.22999954223633","54.22999954223633","","1982-02-25T00:00:00Z","","0" +"NM-03692","200.9499969482422","200.9499969482422","","1959-11-04T00:00:00Z","","0" +"NM-10214","35.33000183105469","35.33000183105469","","1951-01-20T00:00:00Z","","0" +"NM-22119","28.420000076293945","28.420000076293945","R","1990-09-04T00:00:00Z","","0" +"NM-11104","20.31999969482422","20.31999969482422","","1951-01-17T00:00:00Z","","0" +"NM-03400","11.859999656677246","11.859999656677246","Z","1999-01-07T00:00:00Z","","0" +"NM-02314","7.599999904632568","7.599999904632568","","1949-09-15T00:00:00Z","","0" +"NM-16640","5.550000190734863","5.550000190734863","","1952-07-28T00:00:00Z","","0" +"AS-049","340.739990234375","340.739990234375","","1998-10-22T00:00:00Z","","0" +"NM-16271","69.98999786376953","69.98999786376953","","1962-01-18T00:00:00Z","","0" +"NM-02790","102.79000091552734","102.79000091552734","","1957-01-18T00:00:00Z","","0" +"NM-09554","","","D","2013-09-16T00:00:00Z","","0" +"NM-11578","26.579999923706055","26.579999923706055","","1938-12-12T00:00:00Z","","0" +"NM-01887","36.56999969482422","36.56999969482422","","2001-03-19T00:00:00Z","","0" +"NM-09704","166.5","166.5","","1984-03-22T00:00:00Z","","0" +"NM-15472","468.70001220703125","468.70001220703125","","1975-01-07T00:00:00Z","","0" +"NM-07870","8.90999984741211","8.90999984741211","","1957-06-12T00:00:00Z","","0" +"NM-04206","27.020000457763672","27.020000457763672","","1946-03-29T00:00:00Z","","0" +"NM-02658","212.30999755859375","212.30999755859375","","1944-03-18T00:00:00Z","","0" +"NM-06499","105.4000015258789","105.4000015258789","","1953-09-29T00:00:00Z","","0" +"SA-0029","169.2100067138672","168.67001342773438","R","2010-03-18T00:00:00Z","","0.5400000214576721" +"NM-00366","128.14999389648438","128.14999389648438","","1993-05-25T00:00:00Z","","0" +"NM-17271","38.11000061035156","38.11000061035156","","1939-11-18T00:00:00Z","","0" +"NM-21869","35.470001220703125","35.470001220703125","","2007-04-04T00:00:00Z","","0" +"NM-17716","3.2100000381469727","3.2100000381469727","","1945-10-13T00:00:00Z","","0" +"NM-02831","59.04999923706055","59.04999923706055","","1967-04-01T00:00:00Z","","0" +"NM-28259","93.61000061035156","93.61000061035156","","2006-12-26T00:00:00Z","","0" +"NM-16863","49.83000183105469","49.83000183105469","P","1954-05-22T00:00:00Z","","0" +"NM-20452","195.27000427246094","195.27000427246094","","2016-06-07T00:00:00Z","","0" +"NM-28259","37.29999923706055","37.29999923706055","","1948-03-25T00:00:00Z","","0" +"NM-06077","7.929999828338623","7.929999828338623","","1950-01-19T00:00:00Z","","0" +"NM-03270","7.900000095367432","7.900000095367432","","1980-01-30T00:00:00Z","","0" +"NM-26618","45.22999954223633","45.22999954223633","","2011-05-25T00:00:00Z","","0" +"NM-27832","85.56999969482422","85.56999969482422","","1965-07-28T00:00:00Z","","0" +"NM-12076","-49.5099983215332","-49.5099983215332","","1907-09-24T00:00:00Z","","0" +"NM-28256","94.29000091552734","94.29000091552734","","2006-11-27T00:00:00Z","","0" +"NM-09206","196.6699981689453","196.6699981689453","","1992-02-13T00:00:00Z","","0" +"NM-17716","2.569999933242798","2.569999933242798","","1943-09-24T00:00:00Z","","0" +"SV-0085","121.4000015258789","119.56666564941406","","2015-08-16T00:00:00Z","","1.8333333730697632" +"NM-02043","6.400000095367432","6.400000095367432","","1997-04-15T00:00:00Z","","0" +"NM-09858","5.329999923706055","5.329999923706055","","1984-01-25T00:00:00Z","","0" +"NM-12098","47.41999816894531","47.41999816894531","P","1961-02-13T00:00:00Z","","0" +"NM-08382","210","210","","1967-01-30T00:00:00Z","","0" +"NM-28259","108.16000366210938","108.16000366210938","","1960-04-25T00:00:00Z","","0" +"NM-17295","34.25","34.25","","1940-01-22T00:00:00Z","","0" +"NM-28258","162.60000610351562","162.60000610351562","","1980-05-15T00:00:00Z","","0" +"LC-010","17.579999923706055","16.68000030517578","","2020-05-19T00:00:00Z","0001-01-01T08:39:00Z","0.8999999761581421" +"NM-03172","57.779998779296875","57.779998779296875","","1990-04-10T00:00:00Z","","0" +"NM-09696","41.459999084472656","41.459999084472656","","1948-07-17T00:00:00Z","","0" +"NM-07148","82.41000366210938","82.41000366210938","","2001-04-02T00:00:00Z","","0" +"NM-09789","-26.40999984741211","-26.40999984741211","","1909-02-20T00:00:00Z","","0" +"NM-12683","132.33999633789062","132.33999633789062","","1981-03-12T00:00:00Z","","0" +"NM-00218","93.54000091552734","93.54000091552734","","1956-09-26T00:00:00Z","","0" +"NM-22122","4.420000076293945","4.420000076293945","Z","2009-02-19T00:00:00Z","","0" +"NM-20229","65.95999908447266","65.95999908447266","","1953-05-30T00:00:00Z","","0" +"DE-0009","390","387.3500061035156","","2021-05-18T00:00:00Z","0001-01-01T14:09:00Z","2.6500000953674316" +"NM-00969","339.6300048828125","339.6300048828125","","1965-02-16T00:00:00Z","","0" +"BC-0056","246.4199981689453","246.4199981689453","","2017-06-14T00:00:00Z","","0" +"EB-263","1.9900000095367432","1.9900000095367432","","1997-05-15T00:00:00Z","","0" +"NM-15291","110.3499984741211","110.3499984741211","P","1970-02-12T00:00:00Z","","0" +"NM-22179","50","50","","1961-01-01T00:00:00Z","","0" +"AB-0069","150.80999755859375","150.80999755859375","","2004-02-11T00:00:00Z","","" +"NM-09554","18.219999313354492","18.219999313354492","","2006-05-05T00:00:00Z","","0" +"SB-0442","173","173","","2010-06-30T00:00:00Z","","0" +"NM-21851","5.25","5.25","Z","2006-12-27T00:00:00Z","","0" +"NM-00367","125.19000244140625","125.19000244140625","","1966-09-01T00:00:00Z","","0" +"NM-28009","498.7699890136719","498.7699890136719","S","2015-05-27T00:00:00Z","","0" +"NM-21061","26.399999618530273","26.399999618530273","R","1990-12-14T00:00:00Z","","0" +"NM-02349","13.600000381469727","13.600000381469727","","1975-12-15T00:00:00Z","","0" +"NM-11388","41.720001220703125","41.720001220703125","","1941-10-09T00:00:00Z","","0" +"NM-02331","189.58999633789062","189.58999633789062","","2009-02-23T00:00:00Z","","0" +"NM-00253","21.170000076293945","21.170000076293945","","1964-01-01T00:00:00Z","","0" +"BC-0311","","353.20001220703125","","2020-11-08T00:00:00Z","","2.8499999046325684" +"NM-12376","7.829999923706055","7.829999923706055","","1941-01-31T00:00:00Z","","0" +"NM-17394","54.08000183105469","54.08000183105469","","1955-09-21T00:00:00Z","","0" +"SB-0299","131.8300018310547","131.8300018310547","","1999-10-20T00:00:00Z","","0" +"NM-03403","5.809999942779541","5.809999942779541","Z","1999-09-30T00:00:00Z","","0" +"EB-442","163","170","","1999-06-01T00:00:00Z","","-7" +"WL-0179","31.780000686645508","30.23000144958496","","2021-07-14T00:00:00Z","0001-01-01T10:35:00Z","1.5499999523162842" +"EB-606","118.48999786376953","118.48999786376953","","2006-03-28T00:00:00Z","","0" +"SM-0068","259.54998779296875","259.54998779296875","","1959-09-24T00:00:00Z","","0" +"NM-13750","-8.069999694824219","-8.069999694824219","","1912-04-05T00:00:00Z","","0" +"NM-17897","132.60000610351562","132.60000610351562","","1964-01-23T00:00:00Z","","0" +"NM-03797","163.17999267578125","163.17999267578125","","1964-01-07T00:00:00Z","","0" +"AB-0191","886.0999755859375","886.0999755859375","","1992-07-10T00:00:00Z","","" +"NM-27985","378.07000732421875","378.07000732421875","","1992-10-14T00:00:00Z","","0" +"NM-04856","68.12999725341797","68.12999725341797","","1966-01-07T00:00:00Z","","0" +"BC-0201","109.4000015258789","109.4000015258789","","2015-03-05T00:00:00Z","","0" +"NM-23246","248.02000427246094","248.02000427246094","Z","1995-08-15T00:00:00Z","","0" +"NM-28253","9.539999961853027","9.539999961853027","","1959-01-25T00:00:00Z","","0" +"NM-00173","67.76000213623047","67.76000213623047","","1998-01-13T00:00:00Z","","0" +"NM-23768","94.37000274658203","94.37000274658203","","1988-02-25T00:00:00Z","","0" +"NM-08459","433.739990234375","433.739990234375","","1971-01-11T00:00:00Z","","0" +"NM-06931","61.689998626708984","61.689998626708984","","1970-12-17T00:00:00Z","","0" +"AB-0093","486.79998779296875","486.79998779296875","","1998-11-19T00:00:00Z","","" +"NM-21199","145.1699981689453","145.1699981689453","","1964-03-05T00:00:00Z","","0" +"NM-01898","47.279998779296875","47.279998779296875","","2009-10-05T00:00:00Z","","0" +"NM-02043","6.800000190734863","6.800000190734863","","1965-12-15T00:00:00Z","","0" +"BC-0095","38.970001220703125","38.970001220703125","","2014-12-02T00:00:00Z","","0" +"NM-03255","47.939998626708984","47.939998626708984","","2000-02-03T00:00:00Z","","0" +"NM-02043","6.800000190734863","6.800000190734863","","1967-11-15T00:00:00Z","","0" +"NM-03019","109.97000122070312","109.97000122070312","","1983-01-08T00:00:00Z","","0" +"NM-02709","26.149999618530273","26.149999618530273","","1972-01-13T00:00:00Z","","0" +"NM-01891","63.11000061035156","63.11000061035156","","2008-12-18T00:00:00Z","","0" +"NM-01875","181.94000244140625","181.94000244140625","","1998-01-13T00:00:00Z","","0" +"NM-11571","167.80999755859375","167.80999755859375","","1957-01-11T00:00:00Z","","0" +"NM-01386","-222.39999389648438","-222.39999389648438","E","1981-01-23T00:00:00Z","","0" +"NM-20285","111.47000122070312","111.47000122070312","","1977-01-27T00:00:00Z","","0" +"NM-02004","6.900000095367432","6.900000095367432","","1947-06-15T00:00:00Z","","0" +"NM-24493","138.5399932861328","138.5399932861328","","1973-08-13T00:00:00Z","","0" +"DE-0244","101.05999755859375","101.05999755859375","","2007-03-07T00:00:00Z","","0" +"NM-03372","100.72000122070312","100.72000122070312","","1961-12-06T00:00:00Z","","0" +"NM-04834","30.049999237060547","30.049999237060547","","1950-01-17T00:00:00Z","","0" +"NM-05119","128.47999572753906","128.47999572753906","","1973-01-24T00:00:00Z","","0" +"DE-0106","36.40999984741211","36.40999984741211","","2006-10-23T00:00:00Z","","0" +"NM-06582","30.350000381469727","30.350000381469727","","1961-01-11T00:00:00Z","","0" +"AB-0058","195.17999267578125","195.17999267578125","","2014-01-02T00:00:00Z","","" +"NM-02520","5.400000095367432","5.400000095367432","","1958-05-15T00:00:00Z","","0" +"NM-13414","44.70000076293945","44.70000076293945","","1954-01-29T00:00:00Z","","0" +"NM-13915","-8.800000190734863","-8.800000190734863","","1912-04-04T00:00:00Z","","0" +"NM-02352","6","6","","1999-06-15T00:00:00Z","","0" +"NM-11889","1.3300000429153442","1.3300000429153442","","1959-04-05T00:00:00Z","","0" +"NM-17562","12.90999984741211","12.90999984741211","","1942-09-23T00:00:00Z","","0" +"NM-01701","30.270000457763672","30.270000457763672","","2007-02-15T00:00:00Z","","0" +"NM-09393","-31.030000686645508","-31.030000686645508","","1907-06-24T00:00:00Z","","0" +"UC-0106","140.10000610351562","140.10000610351562","","1996-01-25T00:00:00Z","","0" +"NM-14802","106.8499984741211","106.8499984741211","","1983-10-05T00:00:00Z","","0" +"NM-03750","63.79999923706055","63.79999923706055","","1975-01-20T00:00:00Z","","0" +"NM-03335","13.420000076293945","13.420000076293945","Z","2010-02-24T00:00:00Z","","0" +"BC-0031","218.8699951171875","218.8699951171875","","2011-12-06T00:00:00Z","","0" +"NM-18329","291.4100036621094","291.4100036621094","","2003-11-04T00:00:00Z","","0" +"NM-05972","36.52000045776367","36.52000045776367","","1967-02-01T00:00:00Z","","0" +"NM-13844","-9.65999984741211","-9.65999984741211","","1909-09-07T00:00:00Z","","0" +"NM-22079","12.319999694824219","12.319999694824219","Z","1998-02-09T00:00:00Z","","0" +"NM-03397","26.209999084472656","26.209999084472656","","1966-09-20T00:00:00Z","","0" +"EB-356","246.27999877929688","244.27999877929688","","2002-04-04T00:00:00Z","","2" +"NM-21199","116.16000366210938","116.16000366210938","","1952-02-12T00:00:00Z","","0" +"NM-09742","15.510000228881836","15.510000228881836","","2012-05-17T00:00:00Z","","0" +"NM-11767","10.680000305175781","10.680000305175781","","1945-01-11T00:00:00Z","","0" +"NM-00356","39.25","39.25","R","2007-12-19T00:00:00Z","","0" +"NM-02620","11.899999618530273","11.899999618530273","","1995-01-15T00:00:00Z","","0" +"NM-23972","107.88999938964844","107.88999938964844","","1968-07-02T00:00:00Z","","0" +"QY-0197","46.400001525878906","46.400001525878906","","1952-11-21T00:00:00Z","","0" +"NM-07957","56","56","","1991-08-12T00:00:00Z","","0" +"EB-341","101.58000183105469","108.08000183105469","","2009-02-03T00:00:00Z","","-6.5" +"NM-02209","101.02999877929688","101.02999877929688","","1991-12-23T00:00:00Z","","0" +"NM-01989","9.729999542236328","9.729999542236328","","1986-02-06T00:00:00Z","","0" +"NM-05753","68.19000244140625","68.19000244140625","","1951-09-18T00:00:00Z","","0" +"NM-09553","70.41999816894531","70.41999816894531","","1965-09-09T00:00:00Z","","0" +"NM-23804","46.81999969482422","46.81999969482422","","1988-02-25T00:00:00Z","","0" +"NM-11358","7.670000076293945","7.670000076293945","","1960-03-01T00:00:00Z","","0" +"NM-02237","77.83000183105469","77.83000183105469","","1959-01-21T00:00:00Z","","0" +"NM-28258","108.1500015258789","108.1500015258789","","1989-03-15T00:00:00Z","","0" +"EB-387","99.87999725341797","98.63999938964844","","2019-04-16T00:00:00Z","0001-01-01T11:03:00Z","1.2400000095367432" +"UC-0106","196.99000549316406","196.99000549316406","","2011-01-13T00:00:00Z","","0" +"NM-03238","81.69999694824219","81.69999694824219","","1986-05-05T00:00:00Z","","0" +"NM-17206","49.79999923706055","49.79999923706055","","1950-05-26T00:00:00Z","","0" +"NM-09600","-49.5099983215332","-49.5099983215332","","1911-06-06T00:00:00Z","","0" +"NM-03208","435.3399963378906","435.3399963378906","","1985-01-10T00:00:00Z","","0" +"NM-13791","-7.190000057220459","-7.190000057220459","","1909-05-25T00:00:00Z","","0" +"DE-0069","197.91000366210938","194.4300079345703","","1991-07-16T00:00:00Z","","3.4800000190734863" +"NM-24053","51.16999816894531","51.16999816894531","","1993-03-24T00:00:00Z","","0" +"NM-11854","-30.56999969482422","-30.56999969482422","R","1945-10-04T00:00:00Z","","0" +"NM-20692","128.50999450683594","128.50999450683594","","1977-03-04T00:00:00Z","","0" +"NM-01985","8","8","","1990-05-15T00:00:00Z","","0" +"NM-12808","29.690000534057617","29.690000534057617","","1930-04-01T00:00:00Z","","0" +"NM-24644","252.38999938964844","252.38999938964844","","1953-05-06T00:00:00Z","","0" +"NM-05812","97.33000183105469","97.33000183105469","","1981-03-25T00:00:00Z","","0" +"NM-02209","111","111","","1960-08-01T00:00:00Z","","0" +"NM-01272","570.5599975585938","570.5599975585938","","1960-12-12T00:00:00Z","","0" +"NM-04725","54.119998931884766","54.119998931884766","","1933-05-13T00:00:00Z","","0" +"NM-17223","33.970001220703125","33.970001220703125","","1937-01-11T00:00:00Z","","0" +"EB-296","499.32000732421875","499.32000732421875","","2007-06-04T00:00:00Z","","0" +"NM-00616","40.93000030517578","40.93000030517578","","1986-02-07T00:00:00Z","","0" +"NM-09998","-37.959999084472656","-37.959999084472656","","1925-12-21T00:00:00Z","","0" +"NM-28251","82.52999877929688","82.52999877929688","","2013-09-05T00:00:00Z","","0" +"NM-03345","104.04000091552734","104.04000091552734","P","1953-08-19T00:00:00Z","","0" +"NM-13594","22.209999084472656","22.209999084472656","","1965-01-01T00:00:00Z","","0" +"NM-16648","19.700000762939453","19.700000762939453","","1967-01-09T00:00:00Z","","0" +"AB-0109","32.709999084472656","32.709999084472656","","2011-07-15T00:00:00Z","","" +"NM-00641","35.970001220703125","35.970001220703125","","1950-01-15T00:00:00Z","","0" +"NM-02207","9.600000381469727","9.600000381469727","","1989-02-21T00:00:00Z","","0" +"NM-23578","16.700000762939453","16.700000762939453","","1980-06-18T00:00:00Z","","0" +"NM-10635","27.84000015258789","27.84000015258789","","1958-01-22T00:00:00Z","","0" +"NM-03365","46.79999923706055","46.79999923706055","","1961-05-11T00:00:00Z","","0" +"SB-0275","202.8000030517578","202.8000030517578","","1968-01-23T00:00:00Z","","0" +"NM-05677","91.79000091552734","91.79000091552734","","1957-02-20T00:00:00Z","","0" +"NM-13670","173.4199981689453","173.4199981689453","","1952-01-30T00:00:00Z","","0" +"NM-10253","-40.27000045776367","-40.27000045776367","","1907-01-24T00:00:00Z","","0" +"NM-00206","22.149999618530273","22.149999618530273","","1993-02-04T00:00:00Z","","0" +"NM-03192","56.869998931884766","56.869998931884766","","1961-06-06T00:00:00Z","","0" +"NM-02388","153.0800018310547","153.0800018310547","","1962-01-04T00:00:00Z","","0" +"NM-22496","43.18000030517578","43.18000030517578","","1974-11-05T00:00:00Z","","0" +"NM-19006","53.45000076293945","53.45000076293945","","1982-03-17T00:00:00Z","","0" +"NM-03925","","","W","1987-02-02T00:00:00Z","","0" +"NM-06293","199.72000122070312","199.72000122070312","","1967-01-31T00:00:00Z","","0" +"NM-09247","234.10000610351562","234.10000610351562","","1955-04-13T00:00:00Z","","0" +"NM-03462","147.77000427246094","147.77000427246094","","1969-09-01T00:00:00Z","","0" +"NM-03386","34.59000015258789","34.59000015258789","","1989-02-23T00:00:00Z","","0" +"EB-276","159.25","159.25","","1969-04-28T00:00:00Z","","0" +"NM-17271","65.08999633789062","65.08999633789062","","1958-03-20T00:00:00Z","","0" +"NM-00801","8.350000381469727","8.350000381469727","","2010-03-01T00:00:00Z","","0" +"EB-226","73.94999694824219","72.44999694824219","","2005-03-31T00:00:00Z","","1.5" +"NM-02762","188.07000732421875","188.07000732421875","","2010-01-13T00:00:00Z","","0" +"NM-05345","67.73999786376953","67.73999786376953","","1936-12-06T00:00:00Z","","0" +"NM-05490","72.33000183105469","72.33000183105469","","1939-01-14T00:00:00Z","","0" +"NM-27894","73.72000122070312","73.72000122070312","","1995-01-18T00:00:00Z","","0" +"NM-03338","10.079999923706055","10.079999923706055","Z","1998-07-07T00:00:00Z","","0" +"NM-21595","4.389999866485596","4.389999866485596","Z","2011-10-28T00:00:00Z","","0" +"NM-28015","498.9700012207031","498.9700012207031","S","2015-06-03T00:00:00Z","","0" +"NM-17034","34.33000183105469","34.33000183105469","","1946-05-27T00:00:00Z","","0" +"SM-0035","65","63","","2005-12-22T00:00:00Z","","2" +"NM-26590","30.600000381469727","30.600000381469727","","1960-02-03T00:00:00Z","","0" +"NM-02681","34.47999954223633","34.47999954223633","","1958-01-22T00:00:00Z","","0" +"NM-21521","320.5","320.5","","1991-05-23T00:00:00Z","","0" +"NM-01872","8","8","","1998-03-15T00:00:00Z","","0" +"NM-28259","121.73999786376953","121.73999786376953","","1991-05-05T00:00:00Z","","0" +"NM-14342","134.2899932861328","134.2899932861328","","1996-01-18T00:00:00Z","","0" +"NM-14705","70.23999786376953","70.23999786376953","","1958-09-19T00:00:00Z","","0" +"NM-02998","118.87000274658203","118.87000274658203","","2008-03-18T00:00:00Z","","0" +"NM-27334","18.209999084472656","18.209999084472656","","1987-10-15T00:00:00Z","","0" +"NM-02757","20.770000457763672","20.770000457763672","","1983-09-27T00:00:00Z","","0" +"NM-02005","5.099999904632568","5.099999904632568","","1960-07-15T00:00:00Z","","0" +"NM-26177","78.30000305175781","78.30000305175781","","1959-09-18T00:00:00Z","","0" +"NM-02614","545","545","","1978-01-18T00:00:00Z","","0" +"NM-02602","51.650001525878906","51.650001525878906","","1984-01-10T00:00:00Z","","0" +"NM-02658","213","213","","1944-09-14T00:00:00Z","","0" +"NM-11397","67.16000366210938","67.16000366210938","","1960-09-07T00:00:00Z","","0" +"AH-046","405.6000061035156","405.6000061035156","","2006-05-05T00:00:00Z","","0" +"NM-02393","66.95999908447266","66.95999908447266","","1950-09-21T00:00:00Z","","0" +"NM-01955","6.400000095367432","6.400000095367432","","1974-01-15T00:00:00Z","","0" +"NM-03990","339.44000244140625","339.44000244140625","","2008-03-05T00:00:00Z","","0" +"NM-03768","31.889999389648438","31.889999389648438","","1983-01-25T00:00:00Z","","0" +"NM-19828","25.31999969482422","25.31999969482422","","1948-03-23T00:00:00Z","","0" +"NM-18792","349.489990234375","349.489990234375","","1977-02-02T00:00:00Z","","0" +"SB-0299","148.1699981689453","148.1699981689453","","2015-06-15T00:00:00Z","","0" +"NM-02170","94.72000122070312","94.72000122070312","","1992-01-30T00:00:00Z","","0" +"NM-00367","120.9000015258789","120.9000015258789","","1997-03-19T00:00:00Z","","0" +"NM-12738","105.8499984741211","105.8499984741211","","1956-01-17T00:00:00Z","","0" +"NM-02017","6.199999809265137","6.199999809265137","","1985-08-15T00:00:00Z","","0" +"NM-13224","82.38999938964844","82.38999938964844","","1950-01-28T00:00:00Z","","0" +"NM-01898","77.44000244140625","77.44000244140625","","1995-12-14T00:00:00Z","","0" +"NM-14422","36.04999923706055","36.04999923706055","","1980-06-16T00:00:00Z","","0" +"NM-13513","-16.020000457763672","-16.020000457763672","","1912-01-24T00:00:00Z","","0" +"NM-23336","98.80999755859375","98.80999755859375","","1948-04-05T00:00:00Z","","0" +"NM-23797","129.58999633789062","129.58999633789062","R","1966-12-20T00:00:00Z","","0" +"NM-23797","127.02999877929688","127.02999877929688","","1973-03-23T00:00:00Z","","0" +"NM-16424","176.7100067138672","176.7100067138672","","1980-05-02T00:00:00Z","","0" +"WL-0110","24.649999618530273","24.649999618530273","","2019-10-08T00:00:00Z","","0" +"NM-27988","421.9200134277344","421.9200134277344","","2010-01-10T00:00:00Z","","0" +"NM-03391","29.450000762939453","29.450000762939453","Z","1996-05-08T00:00:00Z","","0" +"NM-22339","18.31999969482422","18.31999969482422","","1958-11-20T00:00:00Z","","0" +"NM-11780","38.849998474121094","38.849998474121094","","1951-05-09T00:00:00Z","","0" +"NM-28251","61.630001068115234","61.630001068115234","","2000-02-04T00:00:00Z","","0" +"NM-01872","9.399999618530273","9.399999618530273","","1960-10-15T00:00:00Z","","0" +"NM-02591","12.199999809265137","12.199999809265137","","1970-10-15T00:00:00Z","","0" +"NM-06676","10.300000190734863","10.300000190734863","","1951-02-15T00:00:00Z","","0" +"NM-15843","99.87999725341797","99.87999725341797","","1980-01-10T00:00:00Z","","0" +"NM-21873","5.070000171661377","5.070000171661377","Z","2010-05-14T00:00:00Z","","0" +"NM-28254","16.40999984741211","16.40999984741211","","1956-02-15T00:00:00Z","","0" +"EB-276","280.70001220703125","280.70001220703125","P","2000-09-30T00:00:00Z","","0" +"NM-02445","35.08000183105469","35.08000183105469","","2006-02-22T00:00:00Z","","0" +"NM-28024","475.510009765625","475.510009765625","S","2015-05-08T00:00:00Z","","0" +"NM-02198","19.559999465942383","19.559999465942383","","2007-04-18T00:00:00Z","","0" +"NM-01723","174.57000732421875","174.57000732421875","","2012-01-10T00:00:00Z","","0" +"NM-13195","18.530000686645508","18.530000686645508","","1960-05-26T00:00:00Z","","0" +"NM-17133","77.20999908447266","77.20999908447266","","1960-01-09T00:00:00Z","","0" +"NM-23914","18.90999984741211","18.90999984741211","","1973-07-11T00:00:00Z","","0" +"NM-13594","30.209999084472656","30.209999084472656","","1961-06-01T00:00:00Z","","0" +"NM-18352","61.83000183105469","61.83000183105469","","1982-04-22T00:00:00Z","","0" +"NM-28256","156.50999450683594","156.50999450683594","","2006-03-15T00:00:00Z","","0" +"SO-0234","5.369999885559082","4.46999979019165","","2022-02-20T00:00:00Z","0001-01-01T10:00:00Z","0.8999999761581421" +"NM-13153","18.690000534057617","18.690000534057617","","1946-01-29T00:00:00Z","","0" +"NM-01469","178.60000610351562","178.60000610351562","R","2008-01-10T00:00:00Z","","0" +"EB-413","207.02000427246094","207.02000427246094","","2007-12-05T00:00:00Z","","0" +"AB-0053","44.25","44.25","","2013-07-26T00:00:00Z","","" +"TV-218","212.94000244140625","212.33999633789062","","2012-06-05T00:00:00Z","","0.6000000238418579" +"NM-28255","168.30999755859375","168.30999755859375","","2019-08-05T00:00:00Z","","0" +"NM-01983","102.25","102.25","P","1950-05-23T00:00:00Z","","0" +"UC-0078","151.3000030517578","151.3000030517578","","1977-01-25T00:00:00Z","","0" +"NM-04803","83.19999694824219","83.19999694824219","","1954-07-21T00:00:00Z","","0" +"NM-16527","376.9100036621094","376.9100036621094","","1979-04-25T00:00:00Z","","0" +"NM-02518","8.899999618530273","8.899999618530273","","1978-11-15T00:00:00Z","","0" +"NM-04641","56.29999923706055","56.29999923706055","","1978-01-12T00:00:00Z","","0" +"NM-02458","211.8300018310547","211.8300018310547","P","1997-01-29T00:00:00Z","","0" +"SA-0200","59.7400016784668","58.540000915527344","","2010-11-05T00:00:00Z","","1.2000000476837158" +"WL-0086","34.70833206176758","32.948333740234375","","1987-10-22T00:00:00Z","","1.7599999904632568" +"EB-209","66.11000061035156","64.86000061035156","","1978-11-15T00:00:00Z","","1.25" +"NM-06216","13.3100004196167","13.3100004196167","","1984-09-17T00:00:00Z","","0" +"NM-02698","14.539999961853027","14.539999961853027","","2015-01-28T00:00:00Z","","0" +"NM-04153","254.3000030517578","254.3000030517578","","2008-01-27T00:00:00Z","","0" +"NM-02589","39.25","39.25","","1992-06-02T00:00:00Z","","0" +"EB-480","649.1799926757812","646.1799926757812","P","2003-03-31T00:00:00Z","","3" +"AB-0114","220.25","220.25","","2014-10-07T00:00:00Z","","" +"NM-02772","37.970001220703125","37.970001220703125","","1997-10-15T00:00:00Z","","0" +"NM-11710","3.7699999809265137","3.7699999809265137","","1941-11-14T00:00:00Z","","0" +"NM-14974","44.779998779296875","44.779998779296875","","1984-02-21T00:00:00Z","","0" +"NM-03345","67.61000061035156","67.61000061035156","","1952-02-14T00:00:00Z","","0" +"NM-22431","17.8700008392334","17.8700008392334","","2011-01-21T00:00:00Z","","0" +"NM-28257","60.25","60.25","","1971-08-25T00:00:00Z","","0" +"NM-00935","278.6499938964844","278.6499938964844","","1995-01-04T00:00:00Z","","0" +"NM-17222","91.41000366210938","91.41000366210938","","1972-01-19T00:00:00Z","","0" +"NM-07137","89.2300033569336","89.2300033569336","","2003-10-08T00:00:00Z","","0" +"NM-04927","27.209999084472656","27.209999084472656","","1950-09-26T00:00:00Z","","0" +"NM-09973","42.040000915527344","42.040000915527344","","1943-11-30T00:00:00Z","","0" +"TC-386","640","640","","1955-01-01T00:00:00Z","","0" +"NM-08036","23","23","","1978-09-27T00:00:00Z","","0" +"SO-0148","11.079999923706055","10.210000038146973","","2021-06-14T00:00:00Z","0001-01-01T12:25:00Z","0.8700000047683716" +"SB-0299","117.29000091552734","117.29000091552734","","1977-02-01T00:00:00Z","","0" +"NM-05396","134","134","P","1956-08-10T00:00:00Z","","0" +"NM-19770","436.8900146484375","436.8900146484375","","1994-08-22T00:00:00Z","","0" +"NM-01785","326.3999938964844","326.3999938964844","","2011-06-01T00:00:00Z","","0" +"EB-288","121.5","121.5","","1978-06-15T00:00:00Z","","0" +"NM-03596","157.1199951171875","157.1199951171875","","2001-01-13T00:00:00Z","","0" +"NM-11747","189.00999450683594","189.00999450683594","","1981-08-14T00:00:00Z","","0" +"NM-11679","18.290000915527344","18.290000915527344","","1942-04-15T00:00:00Z","","0" +"NM-02117","82.19000244140625","82.19000244140625","","1957-01-22T00:00:00Z","","0" +"NM-17969","88.62999725341797","88.62999725341797","","1966-01-07T00:00:00Z","","0" +"BW-0236","131.42999267578125","131.42999267578125","","1969-01-09T00:00:00Z","","0" +"NM-00898","113.9000015258789","113.9000015258789","","1966-04-11T00:00:00Z","","0" +"NM-14396","6.900000095367432","6.900000095367432","","1969-12-12T00:00:00Z","","0" +"NM-28257","34.54999923706055","34.54999923706055","","2002-07-15T00:00:00Z","","0" +"NM-03388","62.41999816894531","62.41999816894531","","2002-03-13T00:00:00Z","","0" +"SM-0027","519.8499755859375","519.8499755859375","","2005-12-05T00:00:00Z","","0" +"NM-07390","172.61000061035156","172.61000061035156","","1973-01-11T00:00:00Z","","0" +"NM-00213","182.8800048828125","182.8800048828125","","1980-01-01T00:00:00Z","","0" +"NM-12491","40.779998779296875","40.779998779296875","","1965-02-11T00:00:00Z","","0" +"NM-04261","144.69000244140625","144.69000244140625","","1986-03-05T00:00:00Z","","0" +"NM-09205","44.7400016784668","44.7400016784668","","1989-01-24T00:00:00Z","","0" +"NM-09817","71.7300033569336","71.7300033569336","","1950-07-14T00:00:00Z","","0" +"NM-00094","3.690000057220459","3.690000057220459","","1963-07-01T00:00:00Z","","0" +"NM-02358","53.189998626708984","53.189998626708984","","1972-05-23T00:00:00Z","","0" +"TB-0071","197.1699981689453","195.1999969482422","","2010-03-04T00:00:00Z","","1.9700000286102295" +"NM-04926","30.25","30.25","","1953-09-23T00:00:00Z","","0" +"NM-08524","15.199999809265137","15.199999809265137","","2003-01-15T00:00:00Z","","0" +"NM-23038","52","52","","1948-06-10T00:00:00Z","","0" +"NM-06007","169.08999633789062","169.08999633789062","","1956-01-10T00:00:00Z","","0" +"SO-0189","","","D","2021-09-19T00:00:00Z","0001-01-01T10:45:00Z","1.4900000095367432" +"NM-02393","66.73999786376953","66.73999786376953","","1945-11-09T00:00:00Z","","0" +"NM-17618","12.920000076293945","12.920000076293945","","1952-03-25T00:00:00Z","","0" +"NM-00498","57.02000045776367","57.02000045776367","","1998-05-19T00:00:00Z","","0" +"NM-02348","13.800000190734863","13.800000190734863","","1991-03-15T00:00:00Z","","0" +"NM-28259","82.9000015258789","82.9000015258789","","1968-02-25T00:00:00Z","","0" +"NM-14869","140.7899932861328","140.7899932861328","","1981-01-12T00:00:00Z","","0" +"TC-276","123.5","123.5","","1969-06-24T00:00:00Z","","0" +"NM-21128","98.6500015258789","98.6500015258789","","1950-11-01T00:00:00Z","","0" +"NM-01971","6.699999809265137","6.699999809265137","","1976-08-15T00:00:00Z","","0" +"NM-07664","11.6899995803833","11.6899995803833","","1982-02-12T00:00:00Z","","0" +"NM-21982","190.60000610351562","190.60000610351562","","2001-02-26T00:00:00Z","","0" +"NM-03713","78.98999786376953","78.98999786376953","","1959-01-13T00:00:00Z","","0" +"NM-21233","3.9700000286102295","3.9700000286102295","Z","2005-09-07T00:00:00Z","","0" +"BW-0886","4.699999809265137","4.699999809265137","","1950-01-27T00:00:00Z","","0" +"NM-01119","183.60000610351562","183.60000610351562","Z","1994-09-21T00:00:00Z","","0" +"NM-02994","68.6500015258789","68.6500015258789","","1982-01-09T00:00:00Z","","0" +"NM-21887","5.820000171661377","5.820000171661377","Z","2005-09-16T00:00:00Z","","0" +"EB-338","186.39999389648438","186.39999389648438","","2011-10-27T00:00:00Z","","0" +"PB-0012","10.25","8.149999618530273","","2016-03-29T00:00:00Z","","2.0999999046325684" +"NM-13195","16.34000015258789","16.34000015258789","","1958-03-26T00:00:00Z","","0" +"NM-01892","12.390000343322754","12.390000343322754","","1995-10-05T00:00:00Z","","0" +"NM-02053","353.57000732421875","353.57000732421875","","1979-12-27T00:00:00Z","","0" +"BC-0210","168.22999572753906","168.22999572753906","","2013-02-11T00:00:00Z","","0" +"NM-03421","30.540000915527344","30.540000915527344","T","1983-10-25T00:00:00Z","","0" +"NM-01295","92.23999786376953","92.23999786376953","","1995-04-27T00:00:00Z","","0" +"NM-11318","16.170000076293945","16.170000076293945","","1969-09-26T00:00:00Z","","0" +"NM-00919","233.10000610351562","233.10000610351562","","1982-03-17T00:00:00Z","","0" +"EB-264","12.770000457763672","12.770000457763672","","2007-10-03T00:00:00Z","","0" +"NM-04292","9.149999618530273","9.149999618530273","","1976-01-13T00:00:00Z","","0" +"NM-01406","304.489990234375","304.489990234375","","1979-01-19T00:00:00Z","","0" +"NM-05744","73.05000305175781","73.05000305175781","","1965-01-13T00:00:00Z","","0" +"EB-244","105.4000015258789","105.4000015258789","","2004-11-09T00:00:00Z","","0" +"NM-01022","409.7799987792969","409.7799987792969","","1969-01-08T00:00:00Z","","0" +"EB-357","243.4029998779297","241.4029998779297","S","2002-01-20T00:00:00Z","","2" +"NM-01295","97.33999633789062","97.33999633789062","","1994-08-24T00:00:00Z","","0" +"NM-28253","47.650001525878906","47.650001525878906","","1964-09-25T00:00:00Z","","0" +"NM-00999","380.0299987792969","380.0299987792969","","1976-01-07T00:00:00Z","","0" +"NM-19784","69.5999984741211","69.5999984741211","","1953-11-19T00:00:00Z","","0" +"NM-13106","7.050000190734863","7.050000190734863","","1977-07-14T00:00:00Z","","0" +"NM-27255","37.15999984741211","37.15999984741211","","1956-09-07T00:00:00Z","","0" +"NM-03260","6.519999980926514","6.519999980926514","","2001-12-19T00:00:00Z","","0" +"NM-25680","-98.68000030517578","-98.68000030517578","","1988-04-18T00:00:00Z","","0" +"NM-02518","4","4","","1958-08-15T00:00:00Z","","0" +"NM-21308","23.719999313354492","23.719999313354492","","1965-02-12T00:00:00Z","","0" +"EB-486","516.5999755859375","516.5999755859375","Z","2006-05-31T00:00:00Z","","0" +"NM-02282","401.42999267578125","401.42999267578125","Z","1999-04-14T00:00:00Z","","0" +"NM-03421","43.25","43.25","","1996-09-26T00:00:00Z","","0" +"EB-246","289.9100036621094","289.9100036621094","","2001-10-16T00:00:00Z","","0" +"NM-03212","40.93000030517578","40.93000030517578","","1972-01-18T00:00:00Z","","0" +"NM-16094","153.5399932861328","153.5399932861328","","1974-01-07T00:00:00Z","","0" +"NM-28258","122.6500015258789","122.6500015258789","","1977-02-05T00:00:00Z","","0" +"TB-0095","81.55999755859375","80.45999908447266","","2009-10-14T00:00:00Z","","1.100000023841858" +"NM-12317","45.650001525878906","45.650001525878906","","1949-01-20T00:00:00Z","","0" +"NM-06756","9.65999984741211","9.65999984741211","","2016-08-04T00:00:00Z","","0" +"NM-13941","-10.529999732971191","-10.529999732971191","","1908-06-26T00:00:00Z","","0" +"NM-02080","81.56999969482422","81.56999969482422","","1997-02-14T00:00:00Z","","0" +"NM-02169","8.029999732971191","8.029999732971191","","2015-09-22T00:00:00Z","","0" +"NM-25827","88.3499984741211","88.3499984741211","","1988-08-08T00:00:00Z","","0" +"NM-05507","78.22000122070312","78.22000122070312","","1939-11-08T00:00:00Z","","0" +"NM-11209","40.619998931884766","40.619998931884766","","1951-01-18T00:00:00Z","","0" +"NM-20310","55.08000183105469","55.08000183105469","","1945-08-03T00:00:00Z","","0" +"NM-21548","4.769999980926514","4.769999980926514","Z","2009-03-12T00:00:00Z","","0" +"NM-13751","-7.929999828338623","-7.929999828338623","","1905-06-09T00:00:00Z","","0" +"NM-05972","24","24","","1933-12-03T00:00:00Z","","0" +"NM-10410","107.9000015258789","107.9000015258789","","1960-01-11T00:00:00Z","","0" +"NM-17512","27.75","27.75","","1949-01-07T00:00:00Z","","0" +"NM-28258","168.69000244140625","168.69000244140625","","1977-04-25T00:00:00Z","","0" +"NM-02349","12.100000381469727","12.100000381469727","","1988-06-15T00:00:00Z","","0" +"NM-02711","70.79000091552734","70.79000091552734","","1963-01-07T00:00:00Z","","0" +"NM-05516","9.100000381469727","9.100000381469727","","1975-06-15T00:00:00Z","","0" +"EB-229","185.52999877929688","191.52999877929688","","1959-06-15T00:00:00Z","","-6" +"NM-28259","110.91000366210938","110.91000366210938","","1959-03-25T00:00:00Z","","0" +"DE-0288","93.16999816894531","93.16999816894531","","2019-12-12T00:00:00Z","","0" +"NM-02101","3.5","3.5","","1986-12-15T00:00:00Z","","0" +"NM-27893","141.9600067138672","141.9600067138672","","1995-01-17T00:00:00Z","","0" +"QY-0602","25.399999618530273","25.399999618530273","","1956-01-10T00:00:00Z","","0" +"NM-02990","50.59000015258789","50.59000015258789","","1992-08-20T00:00:00Z","","0" +"EB-416","13.579999923706055","13.579999923706055","Z","1985-01-31T00:00:00Z","","0" +"NM-02173","92.97000122070312","92.97000122070312","","1963-01-03T00:00:00Z","","0" +"NM-28252","53.63999938964844","53.63999938964844","","2014-09-15T00:00:00Z","","0" +"NM-14285","-17.170000076293945","-17.170000076293945","","1912-05-16T00:00:00Z","","0" +"NM-10913","7.630000114440918","7.630000114440918","","1980-01-10T00:00:00Z","","0" +"NM-08470","260.6700134277344","260.6700134277344","","1994-03-17T00:00:00Z","","0" +"NM-01971","7.900000095367432","7.900000095367432","","1964-05-15T00:00:00Z","","0" +"NM-02591","15.300000190734863","15.300000190734863","","1981-01-15T00:00:00Z","","0" +"NM-09817","32.310001373291016","32.310001373291016","","1941-11-12T00:00:00Z","","0" +"NM-22913","40.349998474121094","40.349998474121094","R","1993-02-11T00:00:00Z","","0" +"SM-0174","27.489999771118164","26.59000015258789","R","2009-06-17T00:00:00Z","","0.8999999761581421" +"NM-16755","15.979999542236328","15.979999542236328","","1948-11-20T00:00:00Z","","0" +"NM-14031","-27.56999969482422","-27.56999969482422","","1915-12-24T00:00:00Z","","0" +"NM-21678","357.45001220703125","357.45001220703125","","2004-05-19T00:00:00Z","","0" +"NM-13218","12.350000381469727","12.350000381469727","","1958-08-12T00:00:00Z","","0" +"NM-28016","494.55999755859375","494.55999755859375","S","2015-05-28T00:00:00Z","","0" +"NM-17393","21.270000457763672","21.270000457763672","","1934-10-16T00:00:00Z","","0" +"EB-483","39.33000183105469","39.33000183105469","","1982-10-12T00:00:00Z","","" +"NM-28251","87.58999633789062","87.58999633789062","","1974-01-05T00:00:00Z","","0" +"NM-04632","11.899999618530273","11.899999618530273","","1964-03-15T00:00:00Z","","0" +"NM-00395","48.75","48.75","","2011-12-20T00:00:00Z","","0" +"NM-13124","-41.43000030517578","-41.43000030517578","","1907-06-19T00:00:00Z","","0" +"NM-17398","26.299999237060547","26.299999237060547","P","1948-03-28T00:00:00Z","","0" +"NM-07999","29.65999984741211","29.65999984741211","","1979-01-04T00:00:00Z","","0" +"NM-28171","26.170000076293945","26.170000076293945","","1970-07-14T00:00:00Z","","0" +"NM-02518","5.199999809265137","5.199999809265137","","1972-02-15T00:00:00Z","","0" +"NM-04804","84.26000213623047","84.26000213623047","","1952-01-24T00:00:00Z","","0" +"TV-155","59.810001373291016","59.03000259399414","","2012-04-10T00:00:00Z","","0.7799999713897705" +"NM-06147","37.34000015258789","37.34000015258789","","1978-01-12T00:00:00Z","","0" +"NM-00506","72.75","72.75","","1993-01-07T00:00:00Z","","0" +"NM-10635","22.93000030517578","22.93000030517578","","1989-01-24T00:00:00Z","","0" +"NM-24217","12.739999771118164","12.739999771118164","","2010-07-08T00:00:00Z","","0" +"NM-06016","61.540000915527344","61.540000915527344","","1979-01-18T00:00:00Z","","0" +"NM-04868","459.2200012207031","459.2200012207031","","1973-03-21T00:00:00Z","","0" +"NM-16566","20.489999771118164","20.489999771118164","","1954-01-19T00:00:00Z","","0" +"NM-00558","78.62999725341797","78.62999725341797","","1996-01-05T00:00:00Z","","0" +"NM-18291","282.67999267578125","282.67999267578125","","1996-08-19T00:00:00Z","","0" +"NM-21250","3.0199999809265137","3.0199999809265137","Z","2008-07-02T00:00:00Z","","0" +"NM-00619","44.45000076293945","44.45000076293945","","1981-01-27T00:00:00Z","","0" +"BC-0129","25.489999771118164","25.489999771118164","","2016-03-14T00:00:00Z","","0" +"NM-05681","103.08999633789062","103.08999633789062","","1957-11-20T00:00:00Z","","0" +"NM-13574","26.729999542236328","26.729999542236328","","1976-04-27T00:00:00Z","","0" +"NM-02831","31.299999237060547","31.299999237060547","","2001-03-05T00:00:00Z","","0" +"NM-01926","6.800000190734863","6.800000190734863","","1951-10-15T00:00:00Z","","0" +"NM-12772","30.040000915527344","30.040000915527344","","1961-02-06T00:00:00Z","","0" +"NM-13978","-13.010000228881836","-13.010000228881836","","1908-09-03T00:00:00Z","","0" +"NM-03313","306.25","306.25","R","1985-06-24T00:00:00Z","","0" +"NM-25722","190","190","","1987-02-04T00:00:00Z","","0" +"DE-0120","32.88999938964844","32.88999938964844","","2002-06-07T00:00:00Z","","0" +"NM-14179","-13.710000038146973","-13.710000038146973","","1911-01-22T00:00:00Z","","0" +"NM-03667","71.41999816894531","71.41999816894531","","1986-09-10T00:00:00Z","","0" +"NM-14351","592.25","592.25","","1975-01-29T00:00:00Z","","0" +"NM-01288","157.9600067138672","157.9600067138672","","2011-03-08T00:00:00Z","","0" +"NM-08648","39.61000061035156","39.61000061035156","","1946-03-21T00:00:00Z","","0" +"SD-0272","","","D","1962-06-19T00:00:00Z","","0" +"NM-00094","-0.17000000178813934","-0.17000000178813934","","1955-03-01T00:00:00Z","","0" +"NM-14351","590.0499877929688","590.0499877929688","","1968-10-01T00:00:00Z","","0" +"EB-390","163.17999267578125","161.47999572753906","AA","2023-04-11T00:00:00Z","0001-01-01T13:30:00Z","1.7000000476837158" +"NM-06657","77.05999755859375","77.05999755859375","","1970-12-08T00:00:00Z","","0" +"NM-00500","109.33000183105469","109.33000183105469","","2008-12-14T00:00:00Z","","0" +"EB-204","64.77999877929688","64.77999877929688","","1974-03-01T00:00:00Z","","0" +"NM-22300","6.730000019073486","6.730000019073486","","1997-02-27T00:00:00Z","","0" +"DE-0071","205.50999450683594","202.9099884033203","","2007-04-16T00:00:00Z","","2.5999999046325684" +"NM-22566","131.77000427246094","131.77000427246094","","1986-06-01T00:00:00Z","","0" +"DE-0063","57.81999969482422","54.48999786376953","","2001-10-29T00:00:00Z","","3.3299999237060547" +"NM-28254","25.799999237060547","25.799999237060547","","2001-12-05T00:00:00Z","","0" +"NM-20562","4.840000152587891","4.840000152587891","","1945-01-25T00:00:00Z","","0" +"NM-02832","6.670000076293945","6.670000076293945","","1984-02-02T00:00:00Z","","0" +"NM-27515","55.220001220703125","55.220001220703125","Z","1994-01-20T00:00:00Z","","0" +"NM-28254","80.66000366210938","80.66000366210938","","1987-06-05T00:00:00Z","","0" +"NM-02367","12.449999809265137","12.449999809265137","","1990-02-28T00:00:00Z","","0" +"AB-0143","308.29998779296875","308.29998779296875","","1988-08-15T00:00:00Z","","0" +"NM-21319","92.52999877929688","92.52999877929688","P","1983-03-15T00:00:00Z","","0" +"SB-0299","104.79000091552734","104.79000091552734","","1970-03-17T00:00:00Z","","0" +"NM-03957","57.70000076293945","57.70000076293945","","1960-02-22T00:00:00Z","","0" +"NM-00947","280.79998779296875","280.79998779296875","","1988-01-12T00:00:00Z","","0" +"NM-11358","7.949999809265137","7.949999809265137","","1959-12-10T00:00:00Z","","0" +"NM-06737","62.439998626708984","62.439998626708984","","1976-01-23T00:00:00Z","","0" +"NM-03331","10.4399995803833","10.4399995803833","","1991-12-09T00:00:00Z","","0" +"NM-06016","46.56999969482422","46.56999969482422","","1960-05-26T00:00:00Z","","0" +"NM-02004","9.199999809265137","9.199999809265137","","1964-10-15T00:00:00Z","","0" +"EB-012","148.5","148.5","","1974-05-23T00:00:00Z","","0" +"NM-11100","39.529998779296875","39.529998779296875","","1951-01-17T00:00:00Z","","0" +"NM-28250","82.7300033569336","82.7300033569336","","1992-05-15T00:00:00Z","","0" +"NM-02396","7.099999904632568","7.099999904632568","","1993-12-15T00:00:00Z","","0" +"NM-05480","181.1199951171875","181.1199951171875","","1965-08-11T00:00:00Z","","0" +"NM-28252","58.310001373291016","58.310001373291016","","1965-04-05T00:00:00Z","","0" +"EB-163","698.75","697.5499877929688","","1978-09-01T00:00:00Z","","1.2000000476837158" +"NM-02831","42.650001525878906","42.650001525878906","","1989-11-29T00:00:00Z","","0" +"NM-11638","-62.220001220703125","-62.220001220703125","","1911-12-08T00:00:00Z","","0" +"NM-10579","-93.4000015258789","-93.4000015258789","","1907-01-23T00:00:00Z","","0" +"NM-00335","43.9900016784668","43.9900016784668","","2001-01-11T00:00:00Z","","0" +"NM-17371","41.029998779296875","41.029998779296875","","1941-11-25T00:00:00Z","","0" +"NM-08940","13.979999542236328","13.979999542236328","","1965-01-12T00:00:00Z","","0" +"NM-07149","100.91999816894531","100.91999816894531","","2001-04-03T00:00:00Z","","0" +"NM-03322","79.55999755859375","79.55999755859375","","1986-01-14T00:00:00Z","","0" +"NM-01986","7.300000190734863","7.300000190734863","","2001-12-15T00:00:00Z","","0" +"NM-27474","94.08999633789062","94.08999633789062","","1961-07-12T00:00:00Z","","0" +"NM-21660","473.7300109863281","473.7300109863281","","1993-08-03T00:00:00Z","","0" +"SV-0057","201","199.75","","2017-10-21T00:00:00Z","","1.25" +"NM-11795","35.869998931884766","35.869998931884766","","1944-05-16T00:00:00Z","","0" +"NM-02288","17.360000610351562","17.360000610351562","","2015-04-21T00:00:00Z","","0" +"NM-24055","82.58000183105469","82.58000183105469","","1984-01-19T00:00:00Z","","0" +"NM-11896","75.11000061035156","75.11000061035156","","1950-01-24T00:00:00Z","","0" +"NM-28257","93.19000244140625","93.19000244140625","","1971-07-15T00:00:00Z","","0" +"NM-02407","34.79999923706055","34.79999923706055","","1970-01-27T00:00:00Z","","0" +"NM-02757","16.040000915527344","16.040000915527344","","1986-09-04T00:00:00Z","","0" +"NM-06280","29.889999389648438","29.889999389648438","","1995-10-04T00:00:00Z","","0" +"NM-02207","15","15","","1959-03-15T00:00:00Z","","0" +"NM-03397","27.799999237060547","27.799999237060547","","1988-07-28T00:00:00Z","","0" +"NM-08946","-28.719999313354492","-28.719999313354492","","1908-08-29T00:00:00Z","","0" +"NM-28253","26.299999237060547","26.299999237060547","","1965-11-25T00:00:00Z","","0" +"NM-26385","107.4800033569336","107.4800033569336","","1981-01-29T00:00:00Z","","0" +"NM-01251","87.69000244140625","87.69000244140625","","1957-11-14T00:00:00Z","","0" +"NM-03248","25.780000686645508","25.780000686645508","","1966-02-16T00:00:00Z","","0" +"EB-220","130.25","130.25","","1995-08-16T00:00:00Z","","0" +"NM-18653","68.77999877929688","68.77999877929688","","1971-01-05T00:00:00Z","","0" +"NM-10460","68.91999816894531","68.91999816894531","","1970-01-06T00:00:00Z","","0" +"EB-696","94.11000061035156","91.5999984741211","","2017-04-05T00:00:00Z","0001-01-01T11:02:00Z","2.509999990463257" +"NM-19986","37.040000915527344","37.040000915527344","","1945-01-24T00:00:00Z","","0" +"BC-0243","","87.4000015258789","","2020-07-24T00:00:00Z","","1.25" +"NM-02555","52.97999954223633","52.97999954223633","","1976-02-05T00:00:00Z","","0" +"NM-11383","30.84000015258789","30.84000015258789","","1937-05-31T00:00:00Z","","0" +"NM-13594","41","41","","1957-08-21T00:00:00Z","","0" +"NM-02772","51.5099983215332","51.5099983215332","","1957-10-01T00:00:00Z","","0" +"SB-0164","89.75","89.75","P","1993-06-15T00:00:00Z","","0" +"NM-01353","106.27999877929688","106.27999877929688","","1993-03-23T00:00:00Z","","0" +"NM-28258","114.95999908447266","114.95999908447266","","2005-01-05T00:00:00Z","","0" +"NM-00299","48.66999816894531","48.66999816894531","","2003-05-22T00:00:00Z","","0" +"NM-13754","-31.030000686645508","-31.030000686645508","","1905-10-19T00:00:00Z","","0" +"NM-02249","55.7599983215332","55.7599983215332","","1960-01-26T00:00:00Z","","0" +"NM-28019","480.8699951171875","480.8699951171875","","2015-04-18T00:00:00Z","","0" +"NM-12718","35.2400016784668","35.2400016784668","","1936-05-18T00:00:00Z","","0" +"NM-09985","68.2699966430664","68.2699966430664","","1971-02-03T00:00:00Z","","0" +"NM-09826","53.939998626708984","53.939998626708984","","1951-01-10T00:00:00Z","","0" +"NM-03059","289.010009765625","289.010009765625","","2002-03-29T00:00:00Z","","0" +"NM-21719","50.900001525878906","50.900001525878906","S","1985-05-30T00:00:00Z","","0" +"NM-03972","221.89999389648438","221.89999389648438","","1979-01-05T00:00:00Z","","0" +"UC-0038","189.5800018310547","189.5800018310547","","1991-01-26T00:00:00Z","","0" +"TV-205","44.029998779296875","42.46999740600586","","2012-04-10T00:00:00Z","","1.559999942779541" +"NM-10696","119.3499984741211","119.3499984741211","","1956-02-09T00:00:00Z","","0" +"SB-0299","133.7100067138672","133.7100067138672","","1976-11-05T00:00:00Z","","0" +"NM-02266","57.91999816894531","57.91999816894531","","1977-01-06T00:00:00Z","","0" +"NM-01796","5.800000190734863","5.800000190734863","","1971-01-15T00:00:00Z","","0" +"NM-07630","160.72000122070312","160.72000122070312","","1978-01-25T00:00:00Z","","0" +"EB-207","240.55999755859375","240.55999755859375","","2001-01-23T00:00:00Z","","0" +"AB-0161","491.6000061035156","491.6000061035156","","2007-04-12T00:00:00Z","","" +"NM-13135","5.940000057220459","5.940000057220459","","1975-05-23T00:00:00Z","","0" +"NM-07333","35.90999984741211","35.90999984741211","","1971-01-15T00:00:00Z","","0" +"NM-02520","5.199999809265137","5.199999809265137","","1987-02-15T00:00:00Z","","0" +"NM-15176","19.790000915527344","19.790000915527344","","1951-01-09T00:00:00Z","","0" +"NM-21345","167.2899932861328","167.2899932861328","R","1991-11-21T00:00:00Z","","0" +"NM-09572","35.650001525878906","35.650001525878906","","1912-12-31T00:00:00Z","","0" +"NM-02487","7.199999809265137","7.199999809265137","","1999-08-15T00:00:00Z","","0" +"NM-01841","262.6000061035156","262.6000061035156","","1984-10-19T00:00:00Z","","0" +"NM-01007","276.3699951171875","276.3699951171875","P","2011-04-15T00:00:00Z","","0" +"WL-0205","59.83000183105469","58.7400016784668","","2020-07-08T00:00:00Z","0001-01-01T13:15:00Z","1.090000033378601" +"NM-00446","120.1500015258789","120.1500015258789","","2006-02-21T00:00:00Z","","0" +"NM-12371","85.05000305175781","85.05000305175781","S","1950-05-10T00:00:00Z","","0" +"EB-481","585.989990234375","585.989990234375","Z","2003-10-31T00:00:00Z","","0" +"NM-28252","39.689998626708984","39.689998626708984","","2004-12-05T00:00:00Z","","0" +"NM-28252","69.97000122070312","69.97000122070312","","1977-06-05T00:00:00Z","","0" +"NM-07455","-6.78000020980835","-6.78000020980835","","1909-03-20T00:00:00Z","","0" +"JM-015","142.8800048828125","142.8800048828125","","2004-01-27T00:00:00Z","","0" +"UC-0095","142.10000610351562","142.10000610351562","","2007-02-15T00:00:00Z","","0" +"NM-10708","19.600000381469727","19.600000381469727","","1956-01-17T00:00:00Z","","0" +"BC-0333","143.61000061035156","143.61000061035156","","2018-09-21T00:00:00Z","","0" +"NM-04133","103.43000030517578","103.43000030517578","","1961-01-31T00:00:00Z","","0" +"NM-05753","65.62000274658203","65.62000274658203","","1950-11-29T00:00:00Z","","0" +"NM-02758","328.69000244140625","328.69000244140625","","2003-08-21T00:00:00Z","","0" +"NM-02487","9.699999809265137","9.699999809265137","","2002-02-15T00:00:00Z","","0" +"NM-28259","110.94000244140625","110.94000244140625","","1988-07-05T00:00:00Z","","0" +"NM-13604","24.350000381469727","24.350000381469727","","1941-06-12T00:00:00Z","","0" +"NM-08940","7.570000171661377","7.570000171661377","","1960-04-27T00:00:00Z","","0" +"NM-02702","23.43000030517578","23.43000030517578","","1993-02-05T00:00:00Z","","0" +"NM-07329","65.29000091552734","65.29000091552734","","1996-02-02T00:00:00Z","","0" +"NM-03679","197.25999450683594","197.25999450683594","","1980-02-05T00:00:00Z","","0" +"NM-19614","99.70999908447266","99.70999908447266","","1958-01-24T00:00:00Z","","0" +"AB-0123","545.989990234375","545.989990234375","","2004-05-24T00:00:00Z","","" +"NM-23093","67.25","67.25","S","1951-04-18T00:00:00Z","","0" +"NM-26518","49.029998779296875","49.029998779296875","","2003-05-13T00:00:00Z","","0" +"NM-18396","39.630001068115234","39.630001068115234","","1974-12-17T00:00:00Z","","0" +"NM-02004","5.400000095367432","5.400000095367432","","1976-06-15T00:00:00Z","","0" +"SV-0058","266.20001220703125","264.0299987792969","","2017-10-14T00:00:00Z","","2.1700000762939453" +"NM-28257","46.79999923706055","46.79999923706055","","2002-05-15T00:00:00Z","","0" +"SB-0299","136.60000610351562","136.60000610351562","","2017-02-25T00:00:00Z","","0" +"NM-01030","100.95999908447266","100.95999908447266","","2002-02-27T00:00:00Z","","0" +"NM-01892","13.489999771118164","13.489999771118164","","1994-07-22T00:00:00Z","","0" +"NM-20758","19.520000457763672","19.520000457763672","","1946-05-14T00:00:00Z","","0" +"TB-0003","60.459999084472656","59.459999084472656","","2009-08-10T00:00:00Z","","1" +"NM-27822","16.59000015258789","16.59000015258789","","1990-02-28T00:00:00Z","","0" +"NM-00644","24.899999618530273","24.899999618530273","","1984-12-26T00:00:00Z","","0" +"NM-17716","8.100000381469727","8.100000381469727","","1941-03-15T00:00:00Z","","0" +"NM-24808","97.05999755859375","97.05999755859375","","1958-09-29T00:00:00Z","","0" +"NM-12445","54.880001068115234","54.880001068115234","","1991-03-27T00:00:00Z","","0" +"NM-02675","49.060001373291016","49.060001373291016","","1952-11-17T00:00:00Z","","0" +"NM-13916","-12.199999809265137","-12.199999809265137","","1908-06-28T00:00:00Z","","0" +"TV-217","276.7200012207031","276.1199951171875","","2004-03-02T00:00:00Z","","0.6000000238418579" +"NM-25688","22.360000610351562","22.360000610351562","","1969-09-10T00:00:00Z","","0" +"NM-02244","75.37999725341797","75.37999725341797","","1940-01-13T00:00:00Z","","0" +"NM-09316","55.79999923706055","55.79999923706055","","1974-01-22T00:00:00Z","","0" +"BC-0117","397.57000732421875","397.57000732421875","","2019-01-11T00:00:00Z","","0" +"AB-0039","354.3699951171875","354.3699951171875","","2001-10-25T00:00:00Z","","" +"SB-0299","123.86000061035156","123.86000061035156","","2002-01-20T00:00:00Z","","0" +"NM-20310","70.19000244140625","70.19000244140625","","1974-01-05T00:00:00Z","","0" +"NM-22492","81.08000183105469","81.08000183105469","T","1982-04-20T00:00:00Z","","0" +"NM-03329","24.280000686645508","24.280000686645508","Z","1998-10-28T00:00:00Z","","0" +"SB-0275","232.17999267578125","232.17999267578125","","2013-02-26T00:00:00Z","","0" +"NM-13215","7.579999923706055","7.579999923706055","","1940-09-05T00:00:00Z","","0" +"NM-06919","71.43000030517578","71.43000030517578","","2007-04-12T00:00:00Z","","0" +"NM-28257","-3.4600000381469727","-3.4600000381469727","","2016-11-15T00:00:00Z","","0" +"NM-03467","429.5799865722656","429.5799865722656","","1987-12-29T00:00:00Z","","0" +"NM-08071","11.699999809265137","11.699999809265137","","1981-11-15T00:00:00Z","","0" +"NM-01644","173.77000427246094","173.77000427246094","","2015-02-27T00:00:00Z","","0" +"NM-17628","45.06999969482422","45.06999969482422","","1953-09-24T00:00:00Z","","0" +"NM-03338","9.380000114440918","9.380000114440918","","1988-03-28T00:00:00Z","","0" +"NM-04796","33.16999816894531","33.16999816894531","","1949-05-21T00:00:00Z","","0" +"NM-03208","437.9700012207031","437.9700012207031","","1982-01-09T00:00:00Z","","0" +"NM-06119","119.04000091552734","119.04000091552734","","1968-01-28T00:00:00Z","","0" +"NM-21953","25.93000030517578","25.93000030517578","","1949-02-18T00:00:00Z","","0" +"NM-00963","373.3299865722656","373.3299865722656","","2015-01-28T00:00:00Z","","0" +"WL-0086","34.79166793823242","33.03166961669922","","1994-03-30T00:00:00Z","","1.7599999904632568" +"NM-13962","-26.40999984741211","-26.40999984741211","","1909-11-10T00:00:00Z","","0" +"TO-0041","147.89999389648438","147.89999389648438","R","1950-08-10T00:00:00Z","","0" +"NM-13894","-21.790000915527344","-21.790000915527344","","1912-05-18T00:00:00Z","","0" +"NM-21244","369.1400146484375","369.1400146484375","","2003-12-29T00:00:00Z","","0" +"NM-01986","6.599999904632568","6.599999904632568","","1998-11-15T00:00:00Z","","0" +"BC-0005","251.22999572753906","251.22999572753906","","2019-10-27T00:00:00Z","","0" +"NM-24933","4.650000095367432","4.650000095367432","","1953-11-30T00:00:00Z","","0" +"BC-0114","","243.10000610351562","","2021-03-14T00:00:00Z","","1.3700000047683716" +"NM-27531","78.44999694824219","78.44999694824219","","1987-01-09T00:00:00Z","","0" +"NM-15290","94.27999877929688","94.27999877929688","","1964-10-28T00:00:00Z","","0" +"NM-28252","35.13999938964844","35.13999938964844","","1956-05-25T00:00:00Z","","0" +"NM-11784","84.94000244140625","84.94000244140625","","1973-01-09T00:00:00Z","","0" +"NM-05516","11.199999809265137","11.199999809265137","","1971-03-15T00:00:00Z","","0" +"NM-03903","330.2699890136719","330.2699890136719","","1975-07-09T00:00:00Z","","0" +"NM-04586","76.4000015258789","76.4000015258789","","1953-11-21T00:00:00Z","","0" +"SB-0299","111.73999786376953","111.73999786376953","","1968-10-20T00:00:00Z","","0" +"NM-11318","15.899999618530273","15.899999618530273","","1973-02-27T00:00:00Z","","0" +"NM-03037","116.04000091552734","116.04000091552734","","1997-01-09T00:00:00Z","","0" +"NM-02649","13.029999732971191","13.029999732971191","","1975-01-08T00:00:00Z","","0" +"NM-03668","66.11000061035156","66.11000061035156","","1988-03-15T00:00:00Z","","0" +"NM-28255","7.130000114440918","7.130000114440918","","1955-01-05T00:00:00Z","","0" +"NM-02283","22.450000762939453","22.450000762939453","","2005-10-07T00:00:00Z","","0" +"NM-02785","31.149999618530273","31.149999618530273","","1996-02-01T00:00:00Z","","0" +"NM-19997","79.62999725341797","79.62999725341797","P","1950-05-26T00:00:00Z","","0" +"NM-28252","14.579999923706055","14.579999923706055","","1947-11-05T00:00:00Z","","0" +"NM-05793","39.75","39.75","","1939-09-09T00:00:00Z","","0" +"EB-288","209","209","Z","2004-11-30T00:00:00Z","","0" +"NM-23336","106.12999725341797","106.12999725341797","S","1950-08-24T00:00:00Z","","0" +"NM-04561","65.3499984741211","65.3499984741211","","1955-01-18T00:00:00Z","","0" +"SB-0198","505.6000061035156","505.6000061035156","","1973-10-03T00:00:00Z","","0" +"NM-17715","8.460000038146973","8.460000038146973","","1935-04-16T00:00:00Z","","0" +"NM-03462","108.9800033569336","108.9800033569336","","1986-05-01T00:00:00Z","","0" +"NM-05309","11.300000190734863","11.300000190734863","","1985-02-01T00:00:00Z","","0" +"NM-01239","58.529998779296875","58.529998779296875","","2012-03-12T00:00:00Z","","0" +"NM-02396","10.699999809265137","10.699999809265137","","1954-11-15T00:00:00Z","","0" +"NM-01565","-274.2300109863281","-274.2300109863281","","1988-09-25T00:00:00Z","","0" +"WL-0088","60.625","58.025001525878906","","1999-02-24T00:00:00Z","","2.5999999046325684" +"NM-02114","44.810001373291016","44.810001373291016","","1970-01-27T00:00:00Z","","0" +"NM-02548","56.47999954223633","56.47999954223633","","2015-01-14T00:00:00Z","","0" +"NM-28258","109.75","109.75","","1989-12-15T00:00:00Z","","0" +"NM-10340","51.22999954223633","51.22999954223633","","1962-01-23T00:00:00Z","","0" +"NM-13623","23.209999084472656","23.209999084472656","","1942-08-18T00:00:00Z","","0" +"NM-07028","129.2899932861328","129.2899932861328","","1978-01-30T00:00:00Z","","0" +"DE-0113","41.029998779296875","41.029998779296875","","2012-09-20T00:00:00Z","","0" +"NM-09350","33.459999084472656","33.459999084472656","","1954-07-28T00:00:00Z","","0" +"NM-28251","89.05000305175781","89.05000305175781","","1974-12-05T00:00:00Z","","0" +"NM-01926","6.599999904632568","6.599999904632568","","1959-03-15T00:00:00Z","","0" +"DE-0127","45.529998779296875","45.529998779296875","","2014-04-28T00:00:00Z","","0" +"NM-02651","118.80000305175781","118.80000305175781","","1963-11-20T00:00:00Z","","0" +"NM-03404","4.639999866485596","4.639999866485596","X","1997-06-17T00:00:00Z","","0" +"NM-28023","486.2099914550781","486.2099914550781","S","2015-05-09T00:00:00Z","","0" +"NM-28012","477.55999755859375","477.55999755859375","S","2015-05-25T00:00:00Z","","0" +"NM-22689","9.210000038146973","9.210000038146973","Z","2006-01-09T00:00:00Z","","0" +"NM-16554","37.29999923706055","37.29999923706055","","1972-01-17T00:00:00Z","","0" +"NM-01089","127.2699966430664","127.2699966430664","","1982-02-19T00:00:00Z","","0" +"WL-0088","85.70833587646484","83.10833740234375","","2004-04-06T00:00:00Z","","2.5999999046325684" +"EB-649","43.630001068115234","43.630001068115234","","1977-05-02T00:00:00Z","","0" +"BC-0115","","258.6600036621094","","2020-11-08T00:00:00Z","","1.5499999523162842" +"NM-02114","23.610000610351562","23.610000610351562","","1969-02-05T00:00:00Z","","0" +"NM-07808","25.31999969482422","25.31999969482422","R","1961-01-18T00:00:00Z","","0" +"BC-0086","347.260009765625","347.260009765625","","2015-11-30T00:00:00Z","","0" +"NM-01902","127.43000030517578","127.43000030517578","","1998-07-07T00:00:00Z","","0" +"NM-17913","57.5099983215332","57.5099983215332","","1963-01-31T00:00:00Z","","0" +"NM-06378","46.029998779296875","46.029998779296875","","1976-01-15T00:00:00Z","","0" +"EB-298","151.69000244140625","151.69000244140625","","2006-08-09T00:00:00Z","","0" +"NM-16745","57.11000061035156","57.11000061035156","","1966-01-05T00:00:00Z","","0" +"NM-02536","347.8900146484375","347.8900146484375","R","1963-01-07T00:00:00Z","","0" +"NM-00593","47.58000183105469","47.58000183105469","","1954-01-14T00:00:00Z","","0" +"NM-27474","76.58999633789062","76.58999633789062","","1956-01-09T00:00:00Z","","0" +"QU-007","102.08999633789062","100.8699951171875","","2015-08-24T00:00:00Z","","1.2200000286102295" +"SA-0134","110.45999908447266","110.08999633789062","","2010-06-28T00:00:00Z","","0.3700000047683716" +"NM-28259","107.22000122070312","107.22000122070312","","1991-09-25T00:00:00Z","","0" +"NM-05497","84.12000274658203","84.12000274658203","","1943-10-13T00:00:00Z","","0" +"NM-23515","30.81999969482422","30.81999969482422","","2000-08-24T00:00:00Z","","0" +"BC-0205","44.380001068115234","44.380001068115234","","2018-09-28T00:00:00Z","","0" +"NM-21381","26.739999771118164","26.739999771118164","R","1992-02-12T00:00:00Z","","0" +"NM-02484","33.95000076293945","33.95000076293945","","1993-09-22T00:00:00Z","","0" +"DE-0317","43.25","43.25","","2008-04-03T00:00:00Z","","0" +"NM-00968","19.770000457763672","19.770000457763672","","1967-05-04T00:00:00Z","","0" +"NM-23357","137.0500030517578","137.0500030517578","P","1955-06-14T00:00:00Z","","0" +"BC-0222","42.08000183105469","42.08000183105469","","2015-03-02T00:00:00Z","","0" +"SB-0299","131.42999267578125","131.42999267578125","","2009-03-20T00:00:00Z","","0" +"NM-01804","326.8399963378906","326.8399963378906","","1990-02-13T00:00:00Z","","0" +"NM-14361","49.560001373291016","49.560001373291016","","1950-05-08T00:00:00Z","","0" +"NM-12315","-81.8499984741211","-81.8499984741211","","1907-01-18T00:00:00Z","","0" +"NM-06038","25.360000610351562","25.360000610351562","","2002-06-21T00:00:00Z","","0" +"NM-03175","348.9200134277344","348.9200134277344","","1997-01-09T00:00:00Z","","0" +"NM-28256","201.35000610351562","201.35000610351562","","1975-10-05T00:00:00Z","","0" +"PC-014","54.400001525878906","57.31999969482422","","1997-10-02T00:00:00Z","","0" +"NM-01277","147.8300018310547","147.8300018310547","","1964-03-09T00:00:00Z","","0" +"NM-06676","7.300000190734863","7.300000190734863","","1986-04-15T00:00:00Z","","0" +"TB-0319","120.12999725341797","118.75","","2016-02-09T00:00:00Z","","1.3799999952316284" +"NM-00732","380.489990234375","380.489990234375","","2002-10-24T00:00:00Z","","0" +"SB-0089","179.8000030517578","179.8000030517578","","1974-02-11T00:00:00Z","","0" +"NM-13968","-10.819999694824219","-10.819999694824219","","1908-12-03T00:00:00Z","","0" +"NM-06016","45.45000076293945","45.45000076293945","","1952-01-14T00:00:00Z","","0" +"NM-17716","1.850000023841858","1.850000023841858","","1944-09-27T00:00:00Z","","0" +"NM-03226","84.83999633789062","84.83999633789062","","1994-01-11T00:00:00Z","","0" +"NM-10319","78.70999908447266","78.70999908447266","","1981-01-26T00:00:00Z","","0" +"NM-11217","80.70999908447266","80.70999908447266","","1986-02-06T00:00:00Z","","0" +"NM-22164","6.159999847412109","6.159999847412109","Z","2011-11-09T00:00:00Z","","0" +"NM-17075","29.81999969482422","29.81999969482422","","1938-02-08T00:00:00Z","","0" +"NM-21616","479.3800048828125","479.3800048828125","","1991-02-21T00:00:00Z","","0" +"NM-03651","33.310001373291016","33.310001373291016","","1995-09-11T00:00:00Z","","0" +"NM-13594","37.70000076293945","37.70000076293945","","1963-09-01T00:00:00Z","","0" +"NM-02702","19.479999542236328","19.479999542236328","","1989-12-01T00:00:00Z","","0" +"NM-00253","21.170000076293945","21.170000076293945","","1963-02-01T00:00:00Z","","0" +"NM-28256","88.7300033569336","88.7300033569336","","1995-02-25T00:00:00Z","","0" +"NM-02256","5.099999904632568","5.099999904632568","","1970-04-15T00:00:00Z","","0" +"NM-21628","435.5299987792969","435.5299987792969","","2005-12-28T00:00:00Z","","0" +"NM-02456","110","110","","1978-01-30T00:00:00Z","","0" +"NM-10478","63.95000076293945","63.95000076293945","","1954-01-15T00:00:00Z","","0" +"NM-08648","43.09000015258789","43.09000015258789","","1960-03-23T00:00:00Z","","0" +"NM-12689","-42.58000183105469","-42.58000183105469","","1907-12-18T00:00:00Z","","0" +"EB-148","274.239990234375","272.44000244140625","","2002-11-01T00:00:00Z","","1.7999999523162842" +"NM-02062","388.3800048828125","388.3800048828125","","1998-12-14T00:00:00Z","","0" +"NM-09289","89.98999786376953","89.98999786376953","","1954-05-05T00:00:00Z","","0" +"NM-28252","50.34000015258789","50.34000015258789","","2008-06-25T00:00:00Z","","0" +"NM-22890","15.90999984741211","15.90999984741211","","1988-02-17T00:00:00Z","","0" +"NM-07082","70.62999725341797","70.62999725341797","","2003-12-19T00:00:00Z","","0" +"DE-0110","36.13999938964844","36.13999938964844","","2007-11-19T00:00:00Z","","0" +"NM-00279","210.27999877929688","210.27999877929688","","1987-01-07T00:00:00Z","","0" +"NM-01911","103.69999694824219","103.69999694824219","","1995-01-16T00:00:00Z","","0" +"NM-21787","23.790000915527344","23.790000915527344","","1971-01-12T00:00:00Z","","0" +"NM-05526","230.5","230.5","P","1966-06-02T00:00:00Z","","0" +"NM-02904","253.69000244140625","253.69000244140625","","2001-03-15T00:00:00Z","","0" +"NM-05305","126.70999908447266","126.70999908447266","","1971-01-20T00:00:00Z","","0" +"NM-01890","62.54999923706055","62.54999923706055","","2006-05-24T00:00:00Z","","0" +"NM-08610","31","31","","1957-08-13T00:00:00Z","","0" +"NM-01743","118.80000305175781","118.80000305175781","","1973-01-25T00:00:00Z","","0" +"NM-07411","36.439998626708984","36.439998626708984","","1954-03-25T00:00:00Z","","0" +"NM-17470","12.210000038146973","12.210000038146973","","1943-07-25T00:00:00Z","","0" +"NM-03763","60.099998474121094","60.099998474121094","","1969-01-11T00:00:00Z","","0" +"NM-23881","53.689998626708984","53.689998626708984","","1966-12-29T00:00:00Z","","0" +"NM-00643","107.22000122070312","107.22000122070312","","1973-07-01T00:00:00Z","","0" +"NM-08037","","","O","2007-02-08T00:00:00Z","","0" +"NM-13527","125.55000305175781","125.55000305175781","","1958-11-18T00:00:00Z","","0" +"UC-0033","92.66999816894531","92.66999816894531","","1987-02-11T00:00:00Z","","0" +"NM-16233","66.7300033569336","66.7300033569336","","1979-09-26T00:00:00Z","","0" +"NM-11323","4.320000171661377","4.320000171661377","","1975-07-15T00:00:00Z","","0" +"TB-0137","181.74000549316406","181.44000244140625","","2009-02-25T00:00:00Z","","0.30000001192092896" +"NM-25171","54.36000061035156","54.36000061035156","","1983-10-27T00:00:00Z","","0" +"SA-0010","191.64999389648438","190.52999877929688","R","2024-02-21T00:00:00Z","0001-01-01T13:08:00Z","1.1200000047683716" +"NM-02394","80.79000091552734","80.79000091552734","","1962-04-16T00:00:00Z","","0" +"NM-17332","35.900001525878906","35.900001525878906","","1987-01-14T00:00:00Z","","0" +"NM-16497","55.84000015258789","55.84000015258789","","1977-01-06T00:00:00Z","","0" +"NM-22442","12.039999961853027","12.039999961853027","","1992-12-18T00:00:00Z","","0" +"NM-14802","101.55999755859375","101.55999755859375","","1971-01-05T00:00:00Z","","0" +"NM-08274","22.100000381469727","22.100000381469727","","1986-02-26T00:00:00Z","","0" +"NM-17106","52.4900016784668","52.4900016784668","","1954-11-22T00:00:00Z","","0" +"NM-14802","87.31999969482422","87.31999969482422","","1963-01-21T00:00:00Z","","0" +"NM-27276","244.97999572753906","244.97999572753906","","1973-10-18T00:00:00Z","","0" +"NM-15044","452.3399963378906","452.3399963378906","","1963-05-01T00:00:00Z","","0" +"NM-00790","11.779999732971191","11.779999732971191","R","2003-01-28T00:00:00Z","","0" +"NM-03372","143.97999572753906","143.97999572753906","","1978-08-21T00:00:00Z","","0" +"UC-0125","136.60000610351562","136.60000610351562","","2004-03-09T00:00:00Z","","0" +"NM-00257","95.41000366210938","95.41000366210938","","1976-11-01T00:00:00Z","","0" +"SM-0048","111.44000244140625","109.94000244140625","","2006-06-21T00:00:00Z","","1.5" +"NM-18247","193.08999633789062","193.08999633789062","","1959-01-14T00:00:00Z","","0" +"NM-03078","137.57000732421875","137.57000732421875","","2014-02-25T00:00:00Z","","0" +"NM-08067","-54.130001068115234","-54.130001068115234","","1908-12-21T00:00:00Z","","0" +"NM-05963","32.7599983215332","32.7599983215332","","1941-03-11T00:00:00Z","","0" +"NM-26756","21.729999542236328","21.729999542236328","","2007-08-15T00:00:00Z","","0" +"NM-12431","29.56999969482422","29.56999969482422","","1948-01-15T00:00:00Z","","0" +"NM-02560","114.08999633789062","114.08999633789062","","1971-09-01T00:00:00Z","","0" +"NM-17716","3.130000114440918","3.130000114440918","","1945-06-14T00:00:00Z","","0" +"NM-22466","58.099998474121094","58.099998474121094","R","1990-07-17T00:00:00Z","","0" +"NM-20308","79.55000305175781","79.55000305175781","","1954-05-25T00:00:00Z","","0" +"WL-0086","55.54166793823242","53.78166961669922","","1990-11-16T00:00:00Z","","1.7599999904632568" +"NM-11843","11.670000076293945","11.670000076293945","","1940-01-23T00:00:00Z","","0" +"NM-05347","8.300000190734863","8.300000190734863","","1987-02-01T00:00:00Z","","0" +"NM-13165","146.1999969482422","146.1999969482422","P","1959-09-25T00:00:00Z","","0" +"NM-02667","69.2699966430664","69.2699966430664","","1956-01-09T00:00:00Z","","0" +"DE-0324","32.04999923706055","32.04999923706055","","2012-09-25T00:00:00Z","","0" +"NM-01184","300.9700012207031","300.9700012207031","","2015-10-28T00:00:00Z","","0" +"NM-26797","510.69000244140625","510.69000244140625","","2015-12-01T00:00:00Z","","0" +"NM-16793","134.14999389648438","134.14999389648438","","1977-01-12T00:00:00Z","","0" +"NM-00947","299.4800109863281","299.4800109863281","","2006-02-24T00:00:00Z","","0" +"NM-10289","35.75","35.75","","1951-01-20T00:00:00Z","","0" +"NM-01955","3","3","","1989-09-15T00:00:00Z","","0" +"NM-04455","19.65999984741211","19.65999984741211","","1957-09-26T00:00:00Z","","0" +"NM-16621","35.779998779296875","35.779998779296875","","1961-01-09T00:00:00Z","","0" +"NM-13235","4.980000019073486","4.980000019073486","","1968-09-18T00:00:00Z","","0" +"NM-28258","171.5500030517578","171.5500030517578","","2010-09-05T00:00:00Z","","0" +"NM-09519","4.440000057220459","4.440000057220459","","1944-07-20T00:00:00Z","","0" +"NM-13561","3.940000057220459","3.940000057220459","","1959-04-22T00:00:00Z","","0" +"NM-02109","38.2599983215332","38.2599983215332","","1962-01-04T00:00:00Z","","0" +"NM-14293","4.659999847412109","4.659999847412109","","1960-08-25T00:00:00Z","","0" +"NM-04983","81.93000030517578","81.93000030517578","","1958-01-14T00:00:00Z","","0" +"EB-422","184.64999389648438","191.89999389648438","","1999-03-01T00:00:00Z","","-7.25" +"NM-14096","-70.30000305175781","-70.30000305175781","","1909-02-25T00:00:00Z","","0" +"DE-0113","38.04999923706055","38.04999923706055","","2009-07-06T00:00:00Z","","0" +"NM-25680","-100.37000274658203","-100.37000274658203","","1988-02-26T00:00:00Z","","0" +"NM-02487","8.199999809265137","8.199999809265137","","1972-03-15T00:00:00Z","","0" +"NM-12751","129.7899932861328","129.7899932861328","","1959-03-09T00:00:00Z","","0" +"NM-13162","10.75","10.75","","1948-02-02T00:00:00Z","","0" +"UC-0045","249.2899932861328","249.2899932861328","","2004-03-09T00:00:00Z","","0" +"NM-12334","21.020000457763672","21.020000457763672","","2011-01-31T00:00:00Z","","0" +"NM-20049","22.860000610351562","22.860000610351562","","1944-01-23T00:00:00Z","","0" +"NM-02036","8.050000190734863","8.050000190734863","","1981-03-11T00:00:00Z","","0" +"NM-01041","170.92999267578125","170.92999267578125","","1977-11-02T00:00:00Z","","0" +"AB-0091","499.8999938964844","499.8999938964844","","2003-12-02T00:00:00Z","","" +"SM-0068","121.37000274658203","121.37000274658203","","1990-01-23T00:00:00Z","","0" +"NM-13223","93.08000183105469","93.08000183105469","","1959-11-19T00:00:00Z","","0" +"BC-0108","38.119998931884766","38.119998931884766","","2014-09-03T00:00:00Z","","0" +"NM-16503","41.099998474121094","41.099998474121094","R","1963-01-07T00:00:00Z","","0" +"NM-23413","139.5","139.5","P","1948-04-06T00:00:00Z","","0" +"DE-0235","104.16000366210938","104.16000366210938","","2010-06-28T00:00:00Z","","0" +"NM-11928","-0.25","-0.25","","1948-10-03T00:00:00Z","","0" +"NM-27463","67.19000244140625","67.19000244140625","","1999-01-14T00:00:00Z","","0" +"DE-0111","36.75","36.75","","2010-10-19T00:00:00Z","","0" +"NM-19631","19.100000381469727","19.100000381469727","","1975-12-10T00:00:00Z","","0" +"NM-00612","90.9000015258789","90.9000015258789","","1991-02-12T00:00:00Z","","0" +"NM-13594","8.420000076293945","8.420000076293945","","1957-02-11T00:00:00Z","","0" +"NM-08389","89.94000244140625","89.94000244140625","P","1966-02-16T00:00:00Z","","0" +"NM-01290","55.83000183105469","55.83000183105469","","1984-03-29T00:00:00Z","","0" +"NM-19497","17.56999969482422","17.56999969482422","","1947-09-13T00:00:00Z","","0" +"SM-0068","250.08999633789062","248.6699981689453","","2006-07-26T00:00:00Z","","1.4199999570846558" +"NM-00185","17.299999237060547","17.299999237060547","","1967-07-15T00:00:00Z","","0" +"NM-15030","34.709999084472656","34.709999084472656","","1963-01-08T00:00:00Z","","0" +"DE-0212","135.80999755859375","135.80999755859375","","2013-01-08T00:00:00Z","","0" +"NM-15828","164.72000122070312","164.72000122070312","","1957-01-16T00:00:00Z","","0" +"NM-21910","63.599998474121094","63.599998474121094","P","1959-05-04T00:00:00Z","","0" +"NM-00366","143.4199981689453","143.4199981689453","","1977-05-01T00:00:00Z","","0" +"NM-08822","-10.239999771118164","-10.239999771118164","","1909-02-26T00:00:00Z","","0" +"NM-02164","12.489999771118164","12.489999771118164","","2003-12-19T00:00:00Z","","0" +"AB-0070","151.49000549316406","151.49000549316406","","2007-12-04T00:00:00Z","","" +"NM-10058","9.5","9.5","","1968-12-12T00:00:00Z","","0" +"NM-28254","85.76000213623047","85.76000213623047","","1953-07-25T00:00:00Z","","0" +"NM-21917","256.07000732421875","256.07000732421875","","2007-03-19T00:00:00Z","","0" +"NM-28252","16.81999969482422","16.81999969482422","","1948-10-25T00:00:00Z","","0" +"NM-20896","22.440000534057617","22.440000534057617","","1949-08-16T00:00:00Z","","0" +"NM-06394","155.00999450683594","155.00999450683594","","1953-09-29T00:00:00Z","","0" +"NM-21515","84.41999816894531","84.41999816894531","","1949-02-10T00:00:00Z","","0" +"NM-28254","41.20000076293945","41.20000076293945","","2019-02-15T00:00:00Z","","0" +"NM-07815","23.059999465942383","23.059999465942383","","1941-07-17T00:00:00Z","","0" +"NM-05139","219.05999755859375","219.05999755859375","","1976-01-15T00:00:00Z","","0" +"NM-01899","65.54000091552734","65.54000091552734","","2010-08-18T00:00:00Z","","0" +"NM-27292","204.25999450683594","204.25999450683594","","1989-09-12T00:00:00Z","","0" +"UC-0097","273.1199951171875","273.1199951171875","","2010-08-24T00:00:00Z","","0" +"NM-06917","63.189998626708984","63.189998626708984","","1982-01-27T00:00:00Z","","0" +"NM-18024","190.8800048828125","190.8800048828125","","1965-07-27T00:00:00Z","","0" +"NM-09429","23.40999984741211","23.40999984741211","","1954-10-20T00:00:00Z","","0" +"NM-14164","2.25","2.25","","1914-07-09T00:00:00Z","","0" +"NM-15146","17.59000015258789","17.59000015258789","","1967-01-18T00:00:00Z","","0" +"NM-21500","205.72000122070312","205.72000122070312","","2011-12-08T00:00:00Z","","0" +"NM-13310","26.170000076293945","26.170000076293945","P","1978-08-18T00:00:00Z","","0" +"NM-11527","47.75","47.75","","1959-10-07T00:00:00Z","","0" +"NM-03339","9.479999542236328","9.479999542236328","","1994-10-06T00:00:00Z","","0" +"NM-03673","82.7699966430664","82.7699966430664","","1979-07-24T00:00:00Z","","0" +"NM-13121","8.90999984741211","8.90999984741211","","1969-07-17T00:00:00Z","","0" +"NM-28252","52.34000015258789","52.34000015258789","","1985-11-15T00:00:00Z","","0" +"NM-08524","11.300000190734863","11.300000190734863","","1981-04-15T00:00:00Z","","0" +"NM-01204","349.67999267578125","349.67999267578125","","2001-05-29T00:00:00Z","","0" +"NM-02115","30.149999618530273","30.149999618530273","","1984-01-06T00:00:00Z","","0" +"NM-02393","66.01000213623047","66.01000213623047","","1939-01-11T00:00:00Z","","0" +"DE-0116","33.33000183105469","33.33000183105469","","2001-12-11T00:00:00Z","","0" +"NM-22296","27.540000915527344","27.540000915527344","T","1983-03-29T00:00:00Z","","0" +"PC-041","101.13999938964844","104.04000091552734","R","1998-06-01T00:00:00Z","","0" +"DE-0081","88.2699966430664","88.2699966430664","","1996-05-15T00:00:00Z","","0" +"SO-0230","10.140000343322754","8.40000057220459","","2021-05-08T00:00:00Z","0001-01-01T15:45:00Z","1.7400000095367432" +"NM-08783","115.44000244140625","115.44000244140625","","1945-07-22T00:00:00Z","","0" +"NM-11578","26.360000610351562","26.360000610351562","","1935-05-17T00:00:00Z","","0" +"NM-13092","8.75","8.75","","1973-10-23T00:00:00Z","","0" +"EB-246","284.07000732421875","284.07000732421875","","2014-10-15T00:00:00Z","","0" +"NM-02370","81.66000366210938","81.66000366210938","P","1973-03-22T00:00:00Z","","0" +"NM-22237","55.459999084472656","55.459999084472656","","1952-10-08T00:00:00Z","","0" +"NM-02285","5.179999828338623","5.179999828338623","","2002-03-19T00:00:00Z","","0" +"NM-21628","418.760009765625","418.760009765625","","1993-03-22T00:00:00Z","","0" +"NM-09176","30.469999313354492","30.469999313354492","","1946-05-20T00:00:00Z","","0" +"DE-0237","103.91999816894531","103.91999816894531","","2006-02-14T00:00:00Z","","0" +"NM-28257","63.470001220703125","63.470001220703125","","1962-02-25T00:00:00Z","","0" +"NM-06103","93.08999633789062","93.08999633789062","","1942-05-22T00:00:00Z","","0" +"EB-288","152","152","","1993-03-31T00:00:00Z","","0" +"NM-11672","186.86000061035156","186.86000061035156","","1969-01-09T00:00:00Z","","0" +"NM-02108","13.600000381469727","13.600000381469727","","1999-02-17T00:00:00Z","","0" +"NM-10831","41.41999816894531","41.41999816894531","","1949-01-19T00:00:00Z","","0" +"SO-0276","1.1399999856948853","-0.060000061988830566","","2018-01-12T00:00:00Z","0001-01-01T10:53:00Z","1.2000000476837158" +"NM-28259","174.86000061035156","174.86000061035156","","2013-07-03T00:00:00Z","","0" +"NM-00219","49.58000183105469","49.58000183105469","","2006-02-16T00:00:00Z","","0" +"NM-05296","72.58000183105469","72.58000183105469","","1954-01-06T00:00:00Z","","0" +"BC-0088","165.9499969482422","165.9499969482422","","2015-09-01T00:00:00Z","","0" +"NM-27311","360.0400085449219","360.0400085449219","","1990-09-19T00:00:00Z","","0" +"DE-0067","14.09000015258789","12.489999771118164","","2004-10-05T00:00:00Z","","1.600000023841858" +"NM-20060","32.02000045776367","32.02000045776367","","1958-01-25T00:00:00Z","","0" +"NM-04186","24.809999465942383","24.809999465942383","","1950-05-17T00:00:00Z","","0" +"NM-10063","8.40999984741211","8.40999984741211","","1969-11-14T00:00:00Z","","0" +"NM-03903","327.4599914550781","327.4599914550781","","1974-11-18T00:00:00Z","","0" +"NM-28253","42.439998626708984","42.439998626708984","","1975-07-25T00:00:00Z","","0" +"NM-00644","24.889999389648438","24.889999389648438","","1970-01-01T00:00:00Z","","0" +"NM-05641","98.18000030517578","98.18000030517578","S","1950-05-18T00:00:00Z","","0" +"NM-05681","116.29000091552734","116.29000091552734","","1955-11-16T00:00:00Z","","0" +"NM-00229","68.04000091552734","68.04000091552734","","2000-08-25T00:00:00Z","","0" +"NM-28250","85.02999877929688","85.02999877929688","","2002-09-05T00:00:00Z","","0" +"NM-28127","469","469","R","1985-09-01T00:00:00Z","","0" +"NM-01961","137.52999877929688","137.52999877929688","P","1954-07-26T00:00:00Z","","0" +"NM-03912","133.66000366210938","133.66000366210938","","1977-01-03T00:00:00Z","","0" +"NM-28252","38.099998474121094","38.099998474121094","","2004-01-26T00:00:00Z","","0" +"NM-28253","22.639999389648438","22.639999389648438","","2011-11-23T00:00:00Z","","0" +"NM-11845","36.45000076293945","36.45000076293945","","1931-04-30T00:00:00Z","","0" +"SB-0235","118.27999877929688","118.27999877929688","","1988-02-18T00:00:00Z","","0" +"AB-0113","219.7100067138672","219.7100067138672","","2007-06-01T00:00:00Z","","" +"NM-09508","2.5999999046325684","2.5999999046325684","","1963-01-07T00:00:00Z","","0" +"NM-28253","28.34000015258789","28.34000015258789","","1988-09-05T00:00:00Z","","0" +"NM-12175","50.91999816894531","50.91999816894531","","1953-01-10T00:00:00Z","","0" +"HS-037","12.850000381469727","11.790000915527344","","2014-08-29T00:00:00Z","","1.059999942779541" +"AB-0092","494.55999755859375","494.55999755859375","","2000-01-11T00:00:00Z","","" +"NM-01251","67.87999725341797","67.87999725341797","","1949-02-10T00:00:00Z","","0" +"NM-28253","47.84000015258789","47.84000015258789","","1976-09-25T00:00:00Z","","0" +"NM-19682","270.7799987792969","270.7799987792969","","1979-11-16T00:00:00Z","","0" +"NM-01896","5.380000114440918","5.380000114440918","","1993-05-20T00:00:00Z","","0" +"NM-12711","34.22999954223633","34.22999954223633","","1937-05-17T00:00:00Z","","0" +"NM-00500","50.279998779296875","50.279998779296875","","1955-01-04T00:00:00Z","","0" +"NM-17452","89.43000030517578","89.43000030517578","","1987-01-06T00:00:00Z","","0" +"NM-17863","42.54999923706055","42.54999923706055","","1972-01-05T00:00:00Z","","0" +"NM-17716","5.03000020980835","5.03000020980835","","1948-05-11T00:00:00Z","","0" +"NM-12197","23.31999969482422","23.31999969482422","","1951-07-11T00:00:00Z","","0" +"NM-00819","88.69999694824219","88.69999694824219","","2011-07-18T00:00:00Z","","0" +"NM-05979","139.1300048828125","139.1300048828125","","1975-01-28T00:00:00Z","","0" +"NM-17370","38.970001220703125","38.970001220703125","","1936-01-10T00:00:00Z","","0" +"NM-16621","27.510000228881836","27.510000228881836","","1949-03-24T00:00:00Z","","0" +"NM-17567","53.650001525878906","53.650001525878906","","1950-08-04T00:00:00Z","","0" +"NM-17127","34.33000183105469","34.33000183105469","","1949-01-07T00:00:00Z","","0" +"NM-04574","218","218","","1993-01-29T00:00:00Z","","0" +"NM-17688","5.769999980926514","5.769999980926514","","1983-04-26T00:00:00Z","","0" +"NM-02707","22.170000076293945","22.170000076293945","","1957-01-10T00:00:00Z","","0" +"NM-18089","165.27999877929688","165.27999877929688","","1955-01-30T00:00:00Z","","0" +"NM-28256","286.2900085449219","286.2900085449219","","1980-06-25T00:00:00Z","","0" +"NM-17716","0.800000011920929","0.800000011920929","","1942-09-13T00:00:00Z","","0" +"NM-01240","51.54999923706055","51.54999923706055","","2012-01-31T00:00:00Z","","0" +"NM-00395","37.5","37.5","","1970-01-05T00:00:00Z","","0" +"NM-02782","99.44999694824219","99.44999694824219","","1989-01-17T00:00:00Z","","0" +"NM-11365","72.68000030517578","72.68000030517578","","1971-02-26T00:00:00Z","","0" +"NM-08071","9.5","9.5","","1964-01-15T00:00:00Z","","0" +"NM-22996","7.650000095367432","7.650000095367432","Z","2010-08-31T00:00:00Z","","0" +"SB-0299","142.07000732421875","142.07000732421875","","1981-05-30T00:00:00Z","","0" +"NM-01568","71.55000305175781","71.55000305175781","","2004-03-11T00:00:00Z","","0" +"NM-02050","76.87999725341797","76.87999725341797","","1978-01-17T00:00:00Z","","0" +"NM-05821","117.16999816894531","117.16999816894531","","1953-03-01T00:00:00Z","","0" +"NM-19911","33.560001373291016","33.560001373291016","","1943-02-01T00:00:00Z","","0" +"MG-039","27.75","25.700000762939453","","2013-06-06T00:00:00Z","","2.049999952316284" +"NM-27457","7.650000095367432","7.650000095367432","","1970-03-09T00:00:00Z","","0" +"NM-22189","434.989990234375","434.989990234375","","2011-05-03T00:00:00Z","","0" +"NM-03440","11.600000381469727","11.600000381469727","","2002-09-05T00:00:00Z","","0" +"AB-0037","343.6600036621094","343.6600036621094","","1998-06-10T00:00:00Z","","" +"NM-22336","163.22999572753906","163.22999572753906","","2014-12-15T00:00:00Z","","0" +"NM-04294","28.020000457763672","28.020000457763672","","1954-11-08T00:00:00Z","","0" +"NM-10069","9.220000267028809","9.220000267028809","","1970-02-17T00:00:00Z","","0" +"NM-28254","31.190000534057617","31.190000534057617","","1985-03-05T00:00:00Z","","0" +"AB-0069","148.97999572753906","148.97999572753906","","1998-03-19T00:00:00Z","","" +"NM-13425","399.5","399.5","","1957-12-16T00:00:00Z","","0" +"NM-28251","88.27999877929688","88.27999877929688","","1981-03-25T00:00:00Z","","0" +"NM-11547","49.40999984741211","49.40999984741211","","1946-01-20T00:00:00Z","","0" +"DE-0317","43.68000030517578","43.68000030517578","","2009-08-20T00:00:00Z","","0" +"EB-288","110","110","","1976-02-15T00:00:00Z","","0" +"NM-22986","6.28000020980835","6.28000020980835","Z","2007-11-07T00:00:00Z","","0" +"NM-09260","39.27000045776367","39.27000045776367","","1961-02-02T00:00:00Z","","0" +"NM-02025","216.0500030517578","216.0500030517578","","2014-01-15T00:00:00Z","","0" +"NM-03656","9.579999923706055","9.579999923706055","","1996-01-23T00:00:00Z","","0" +"NM-00367","132.6699981689453","132.6699981689453","","1970-09-01T00:00:00Z","","0" +"NM-28259","167.0800018310547","167.0800018310547","","1967-07-25T00:00:00Z","","0" +"NM-02101","8.899999618530273","8.899999618530273","","1963-10-15T00:00:00Z","","0" +"SB-0299","121.70999908447266","121.70999908447266","","2001-03-30T00:00:00Z","","0" +"NM-02232","112.44999694824219","112.44999694824219","P","1951-05-08T00:00:00Z","","0" +"NM-04584","38.20000076293945","38.20000076293945","","1961-05-18T00:00:00Z","","0" +"NM-02758","316.0299987792969","316.0299987792969","","1983-07-14T00:00:00Z","","0" +"NM-13888","4.179999828338623","4.179999828338623","","1957-11-18T00:00:00Z","","0" +"NM-01829","309.92999267578125","309.92999267578125","","1976-07-30T00:00:00Z","","0" +"NM-13370","67.22000122070312","67.22000122070312","","1965-02-17T00:00:00Z","","0" +"NM-28252","47.2400016784668","47.2400016784668","","2009-11-05T00:00:00Z","","0" +"NM-02250","50.720001220703125","50.720001220703125","","1950-09-22T00:00:00Z","","0" +"NM-13839","-4.179999828338623","-4.179999828338623","","1906-09-06T00:00:00Z","","0" +"NM-20071","24.65999984741211","24.65999984741211","","1942-07-16T00:00:00Z","","0" +"NM-04313","50.41999816894531","50.41999816894531","","1949-11-25T00:00:00Z","","0" +"EB-416","267","267","Z","1994-10-31T00:00:00Z","","0" +"NM-26794","620.2100219726562","620.2100219726562","","1969-06-28T00:00:00Z","0001-01-01T11:17:00Z","0" +"AB-0083","502","502","S","1984-01-02T00:00:00Z","","0" +"WS-006","11.899999618530273","11.899999618530273","","2012-08-14T00:00:00Z","","0" +"NM-03839","19.020000457763672","19.020000457763672","","1954-01-25T00:00:00Z","","0" +"DE-0106","45.08000183105469","45.08000183105469","","2016-03-03T00:00:00Z","","0" +"QU-075","129.3699951171875","128.02999877929688","","2012-07-19T00:00:00Z","","1.340000033378601" +"NM-16744","27.170000076293945","27.170000076293945","","1960-01-11T00:00:00Z","","0" +"NM-15166","169.22000122070312","169.22000122070312","","1985-01-23T00:00:00Z","","0" +"NM-26736","178.52999877929688","178.52999877929688","","1960-02-02T00:00:00Z","","0" +"NM-10335","58.630001068115234","58.630001068115234","","1951-01-15T00:00:00Z","","0" +"AB-0102","575.22998046875","575.22998046875","","2012-04-09T00:00:00Z","","" +"NM-01841","261.1199951171875","261.1199951171875","","1983-07-24T00:00:00Z","","0" +"NM-28250","78.33000183105469","78.33000183105469","","1997-03-25T00:00:00Z","","0" +"DE-0245","102.41999816894531","102.41999816894531","","2000-10-26T00:00:00Z","","0" +"NM-10140","29.290000915527344","29.290000915527344","","1946-09-10T00:00:00Z","","0" +"NM-16973","34.459999084472656","34.459999084472656","","1950-01-09T00:00:00Z","","0" +"BC-0129","25.709999084472656","25.709999084472656","","2019-08-01T00:00:00Z","","0" +"NM-18598","73.61000061035156","73.61000061035156","","1967-01-23T00:00:00Z","","0" +"NM-03342","13.630000114440918","13.630000114440918","X","1996-10-01T00:00:00Z","","0" +"NM-21284","5.579999923706055","5.579999923706055","","1961-10-05T00:00:00Z","","0" +"NM-02005","8.600000381469727","8.600000381469727","","1995-08-15T00:00:00Z","","0" +"NM-13047","29.75","29.75","P","1949-02-03T00:00:00Z","","0" +"NM-11331","11.84000015258789","11.84000015258789","","1968-11-18T00:00:00Z","","0" +"EB-482","245","245","Z","1990-09-30T00:00:00Z","","0" +"EB-150","363.6099853515625","361.7599792480469","","2001-04-19T00:00:00Z","","1.850000023841858" +"NM-04706","263.19000244140625","263.19000244140625","","1981-04-01T00:00:00Z","","0" +"NM-06805","91.86000061035156","91.86000061035156","","2003-04-08T00:00:00Z","","0" +"NM-11578","26.34000015258789","26.34000015258789","","1933-06-06T00:00:00Z","","0" +"NM-11746","180.97000122070312","180.97000122070312","S","1983-11-21T00:00:00Z","","0" +"NM-02280","20.530000686645508","20.530000686645508","","2001-09-20T00:00:00Z","","0" +"NM-23336","107.63999938964844","107.63999938964844","","1951-10-31T00:00:00Z","","0" +"NM-01872","9.199999809265137","9.199999809265137","","1973-05-15T00:00:00Z","","0" +"NM-02349","13.300000190734863","13.300000190734863","","1961-09-15T00:00:00Z","","0" +"NM-20272","315.3800048828125","315.3800048828125","","1961-09-12T00:00:00Z","","0" +"NM-03903","330.260009765625","330.260009765625","","1975-06-25T00:00:00Z","","0" +"NM-17227","63.189998626708984","63.189998626708984","","1955-01-22T00:00:00Z","","0" +"DE-0088","92.05999755859375","92.05999755859375","","2000-06-26T00:00:00Z","","0" +"NM-06825","82.97000122070312","82.97000122070312","","2006-10-03T00:00:00Z","","0" +"NM-02772","29.610000610351562","29.610000610351562","","1983-03-04T00:00:00Z","","0" +"DE-0312","42.68000030517578","42.68000030517578","","2010-11-18T00:00:00Z","","0" +"NM-04480","88.5199966430664","88.5199966430664","","1955-03-21T00:00:00Z","","0" +"NM-02620","7.800000190734863","7.800000190734863","","1999-05-15T00:00:00Z","","0" +"AB-0179","178.99000549316406","178.99000549316406","","1999-07-12T00:00:00Z","","" +"QU-005","28.31999969482422","27.43000030517578","","2013-04-26T00:00:00Z","","0.8899999856948853" +"NM-02167","13.3100004196167","13.3100004196167","","2003-11-18T00:00:00Z","","0" +"NM-28254","118.0999984741211","118.0999984741211","","2020-10-05T00:00:00Z","","0" +"NM-25276","111.7300033569336","111.7300033569336","","1974-02-04T00:00:00Z","","0" +"NM-27547","53.560001373291016","53.560001373291016","","1949-01-07T00:00:00Z","","0" +"NM-12600","45.689998626708984","45.689998626708984","","1938-01-11T00:00:00Z","","0" +"NM-10635","29.299999237060547","29.299999237060547","","1939-05-04T00:00:00Z","","0" +"NM-04561","66.44000244140625","66.44000244140625","","1952-09-04T00:00:00Z","","0" +"NM-02287","4.789999961853027","4.789999961853027","","2000-04-17T00:00:00Z","","0" +"NM-02979","47.63999938964844","47.63999938964844","","1995-01-04T00:00:00Z","","0" +"NM-06268","9.399999618530273","9.399999618530273","","1946-09-15T00:00:00Z","","0" +"NM-26611","30.020000457763672","30.020000457763672","","2012-04-12T00:00:00Z","","0" +"NM-05780","91.29000091552734","91.29000091552734","","1955-11-23T00:00:00Z","","0" +"BC-0220","28.770000457763672","28.770000457763672","","2014-04-16T00:00:00Z","","0" +"NM-10533","85.87000274658203","85.87000274658203","","1993-09-09T00:00:00Z","","0" +"NM-28253","20.520000457763672","20.520000457763672","","1968-01-25T00:00:00Z","","0" +"NM-03353","59.68000030517578","59.68000030517578","","2013-09-05T00:00:00Z","","0" +"NM-04231","27.360000610351562","27.360000610351562","","1932-02-21T00:00:00Z","","0" +"NM-02043","5.599999904632568","5.599999904632568","","2001-06-15T00:00:00Z","","0" +"NM-03364","562.1799926757812","562.1799926757812","","2000-12-18T00:00:00Z","","0" +"SO-0126","6.179999828338623","5.619999885559082","","2021-04-10T00:00:00Z","0001-01-01T16:19:00Z","0.5600000023841858" +"NM-02496","116.98999786376953","116.98999786376953","","1955-06-22T00:00:00Z","","0" +"NM-10639","33.06999969482422","33.06999969482422","","1949-01-15T00:00:00Z","","0" +"NM-01529","51.70000076293945","51.70000076293945","","1970-07-20T00:00:00Z","","0" +"NM-13269","95.06999969482422","95.06999969482422","","1938-02-04T00:00:00Z","","0" +"NM-21665","533","533","R","1985-10-31T00:00:00Z","","0" +"NM-00862","10.100000381469727","10.100000381469727","","1987-03-17T00:00:00Z","","0" +"AR-0064","5.739999771118164","4.639999866485596","","2015-08-19T00:00:00Z","","1.100000023841858" +"SD-0003","57","57","","1964-01-01T00:00:00Z","","0" +"NM-17300","34.47999954223633","34.47999954223633","","1948-01-07T00:00:00Z","","0" +"SB-0295","47","47","","1948-08-05T00:00:00Z","","0" +"NM-18076","63.63999938964844","63.63999938964844","","2007-06-20T00:00:00Z","","0" +"NM-02669","57.369998931884766","57.369998931884766","","1972-12-01T00:00:00Z","","0" +"TV-204","41.38999938964844","40.439998626708984","","2012-12-15T00:00:00Z","","0.949999988079071" +"NM-18089","170.1300048828125","170.1300048828125","","1959-06-09T00:00:00Z","","0" +"NM-11696","148.1199951171875","148.1199951171875","","1969-10-15T00:00:00Z","","0" +"NM-02702","-14.550000190734863","-14.550000190734863","","2004-02-25T00:00:00Z","","0" +"NM-11761","111.02999877929688","111.02999877929688","","1949-01-28T00:00:00Z","","0" +"NM-04703","134.9199981689453","134.9199981689453","","1982-02-24T00:00:00Z","","0" +"NM-02101","4.5","4.5","","1962-08-15T00:00:00Z","","0" +"NM-01926","","","W","2000-02-02T00:00:00Z","","0" +"NM-05695","24.34000015258789","24.34000015258789","","1958-01-07T00:00:00Z","","0" +"NM-00641","34.849998474121094","34.849998474121094","","2004-01-05T00:00:00Z","","0" +"NM-17145","78.16000366210938","78.16000366210938","","1956-06-05T00:00:00Z","","0" +"HS-025","12.270000457763672","12.680000305175781","","2012-10-26T00:00:00Z","","-0.4099999964237213" +"NM-02225","92.31999969482422","92.31999969482422","","1974-01-18T00:00:00Z","","0" +"NM-13846","-5.039999961853027","-5.039999961853027","","1910-09-21T00:00:00Z","","0" +"NM-11298","48.279998779296875","48.279998779296875","","1967-01-02T00:00:00Z","","0" +"NM-13778","-8.510000228881836","-8.510000228881836","","1907-11-30T00:00:00Z","","0" +"NM-21585","4.460000038146973","4.460000038146973","Z","2010-08-18T00:00:00Z","","0" +"NM-03477","75.44000244140625","75.44000244140625","","1973-03-15T00:00:00Z","","0" +"SD-0183","120","120","","1962-01-01T00:00:00Z","","0" +"NM-00491","47.029998779296875","47.029998779296875","","1962-01-22T00:00:00Z","","0" +"NM-02840","7.730000019073486","7.730000019073486","","1976-09-17T00:00:00Z","","0" +"NM-08179","19.139999389648438","19.139999389648438","","1950-01-07T00:00:00Z","","0" +"NM-12566","34.65999984741211","34.65999984741211","","1976-04-14T00:00:00Z","","0" +"NM-02487","7.199999809265137","7.199999809265137","","1995-08-15T00:00:00Z","","0" +"NM-27272","69.9000015258789","69.9000015258789","","1978-01-11T00:00:00Z","","0" +"AB-0070","150.97000122070312","150.97000122070312","","2008-01-28T00:00:00Z","","" +"NM-04639","84","84","","1980-01-14T00:00:00Z","","0" +"NM-08792","110.75","110.75","","1961-01-23T00:00:00Z","","0" +"AB-0161","485.510009765625","485.510009765625","","2016-04-11T00:00:00Z","","0" +"NM-10666","13.319999694824219","13.319999694824219","","1979-02-21T00:00:00Z","","0" +"NM-13223","59.099998474121094","59.099998474121094","","1944-03-24T00:00:00Z","","0" +"NM-09042","47.369998931884766","47.369998931884766","","1944-01-05T00:00:00Z","","0" +"NM-18438","66.87999725341797","66.87999725341797","","1982-02-23T00:00:00Z","","0" +"NM-28259","118.55999755859375","118.55999755859375","","2014-01-06T00:00:00Z","","0" +"NM-02487","10.399999618530273","10.399999618530273","","1983-10-15T00:00:00Z","","0" +"NM-21637","427.19000244140625","427.19000244140625","","1992-11-09T00:00:00Z","","0" +"NM-26001","48.72999954223633","48.72999954223633","","1976-09-29T00:00:00Z","","0" +"NM-28257","66.04000091552734","66.04000091552734","","1958-05-25T00:00:00Z","","0" +"NM-21522","304.3399963378906","304.3399963378906","","1992-09-15T00:00:00Z","","0" +"NM-21760","63.7400016784668","63.7400016784668","","1980-01-17T00:00:00Z","","0" +"NM-00644","103.20999908447266","103.20999908447266","Z","1994-06-15T00:00:00Z","","0" +"SA-0201","41.9900016784668","40.540000915527344","","2010-11-05T00:00:00Z","","1.4500000476837158" +"NM-00255","52.75","52.75","","1988-02-16T00:00:00Z","","0" +"NM-03336","11.0600004196167","11.0600004196167","","1993-10-06T00:00:00Z","","0" +"NM-14456","36.869998931884766","36.869998931884766","","1981-02-17T00:00:00Z","","0" +"NM-18769","29.739999771118164","29.739999771118164","","1965-07-28T00:00:00Z","","0" +"DE-0091","90.4800033569336","90.4800033569336","","2008-12-08T00:00:00Z","","0" +"NM-01296","109.43000030517578","109.43000030517578","","2012-03-12T00:00:00Z","","0" +"NM-05954","62.36000061035156","62.36000061035156","","1945-05-11T00:00:00Z","","0" +"NM-28022","485.9800109863281","485.9800109863281","S","2015-04-26T00:00:00Z","","0" +"NM-09916","138.6199951171875","138.6199951171875","","1981-01-28T00:00:00Z","","0" +"NM-01558","33.77000045776367","33.77000045776367","","1981-01-28T00:00:00Z","","0" +"NM-13859","-9.65999984741211","-9.65999984741211","","1908-03-26T00:00:00Z","","0" +"NM-09289","90.63999938964844","90.63999938964844","","1944-03-24T00:00:00Z","","0" +"NM-02384","8.699999809265137","8.699999809265137","","1951-02-15T00:00:00Z","","0" +"NM-02527","11.600000381469727","11.600000381469727","","1979-01-15T00:00:00Z","","0" +"NM-20036","93.7699966430664","93.7699966430664","","1959-12-03T00:00:00Z","","0" +"NM-01996","352.260009765625","352.260009765625","","1985-02-07T00:00:00Z","","0" +"NM-11773","39.650001525878906","39.650001525878906","","1938-01-28T00:00:00Z","","0" +"NM-08567","70.27999877929688","70.27999877929688","","1951-01-08T00:00:00Z","","0" +"NM-10288","256.5899963378906","256.5899963378906","","1962-10-01T00:00:00Z","","0" +"NM-14354","71.05000305175781","71.05000305175781","","1956-04-03T00:00:00Z","","0" +"NM-27400","61.400001525878906","61.400001525878906","","1999-01-20T00:00:00Z","","0" +"NM-00770","110.19000244140625","110.19000244140625","","2012-11-29T00:00:00Z","","0" +"NM-13739","3.5","3.5","","1915-12-09T00:00:00Z","","0" +"NM-15318","98.04000091552734","98.04000091552734","","1995-01-13T00:00:00Z","","0" +"NM-24978","53.13999938964844","53.13999938964844","","1967-04-12T00:00:00Z","","0" +"NM-00070","29.15999984741211","29.15999984741211","","2003-02-06T00:00:00Z","","0" +"WS-020","3.0999999046325684","3.0999999046325684","","2010-03-10T00:00:00Z","","0" +"NM-12933","14.279999732971191","14.279999732971191","","1950-03-10T00:00:00Z","","0" +"NM-28010","498.79998779296875","498.79998779296875","S","2015-06-01T00:00:00Z","","0" +"NM-09374","30.860000610351562","30.860000610351562","","1941-04-16T00:00:00Z","","0" +"NM-16735","6.860000133514404","6.860000133514404","","1942-07-20T00:00:00Z","","0" +"NM-02168","12.90999984741211","12.90999984741211","","2011-12-09T00:00:00Z","","0" +"NM-02207","11.699999809265137","11.699999809265137","","1971-07-15T00:00:00Z","","0" +"NM-28014","498.67999267578125","498.67999267578125","S","2015-05-16T00:00:00Z","","0" +"NM-01881","102.38999938964844","102.38999938964844","","1955-11-08T00:00:00Z","","0" +"NM-01858","9.229999542236328","9.229999542236328","","1989-12-21T00:00:00Z","","0" +"NM-00799","18.360000610351562","18.360000610351562","","2013-01-07T00:00:00Z","","0" +"NM-01090","47.29999923706055","47.29999923706055","","1995-12-18T00:00:00Z","","0" +"NM-27951","40.27000045776367","40.27000045776367","","1963-08-05T00:00:00Z","","0" +"NM-05454","79.33000183105469","79.33000183105469","","1981-01-07T00:00:00Z","","0" +"NM-01928","17.360000610351562","17.360000610351562","","1988-01-08T00:00:00Z","","0" +"NM-26616","19.020000457763672","19.020000457763672","","2012-10-10T00:00:00Z","","0" +"NM-28174","124.12999725341797","124.12999725341797","","1980-01-29T00:00:00Z","","0" +"NM-08567","108.30000305175781","108.30000305175781","","1990-02-06T00:00:00Z","","0" +"EB-288","140","140","","1989-12-31T00:00:00Z","","0" +"NM-02319","107.7699966430664","107.7699966430664","","1976-02-02T00:00:00Z","","0" +"NM-14330","49.560001373291016","49.560001373291016","","1968-01-03T00:00:00Z","","0" +"NM-28255","11.609999656677246","11.609999656677246","","2008-01-25T00:00:00Z","","0" +"NM-28256","89.88999938964844","89.88999938964844","","1990-02-25T00:00:00Z","","0" +"NM-21875","6.599999904632568","6.599999904632568","Z","2005-07-13T00:00:00Z","","0" +"NM-13864","46.959999084472656","46.959999084472656","","1958-01-14T00:00:00Z","","0" +"NM-28252","32.20000076293945","32.20000076293945","","2001-01-16T00:00:00Z","","0" +"NM-28252","64.33999633789062","64.33999633789062","","1973-05-05T00:00:00Z","","0" +"NM-02175","169.88999938964844","169.88999938964844","","1977-01-25T00:00:00Z","","0" +"NM-02992","100.88999938964844","100.88999938964844","","1989-01-05T00:00:00Z","","0" +"BC-0020","85","85","","2014-06-05T00:00:00Z","","0" +"NM-19682","264.54998779296875","264.54998779296875","","1976-01-22T00:00:00Z","","0" +"NM-01791","284.9800109863281","284.9800109863281","","1983-02-19T00:00:00Z","","0" +"EB-643","310.55999755859375","310.55999755859375","","1973-12-19T00:00:00Z","","0" +"NM-17716","3.6600000858306885","3.6600000858306885","","1946-05-20T00:00:00Z","","0" +"NM-13831","-21.790000915527344","-21.790000915527344","","1913-12-12T00:00:00Z","","0" +"NM-04192","165.49000549316406","165.49000549316406","","1955-03-14T00:00:00Z","","0" +"NM-02794","66.51000213623047","66.51000213623047","Z","1996-01-30T00:00:00Z","","0" +"NM-16953","25.75","25.75","","1940-12-16T00:00:00Z","","0" +"NM-28258","109.44000244140625","109.44000244140625","","1995-01-05T00:00:00Z","","0" +"NM-12940","26.260000228881836","26.260000228881836","P","1961-02-07T00:00:00Z","","0" +"SB-0218","228.4600067138672","228.4600067138672","","2004-12-16T00:00:00Z","","0" +"NM-28259","150.55999755859375","150.55999755859375","","2017-06-15T00:00:00Z","","0" +"NM-02360","143.6999969482422","143.6999969482422","","1976-02-02T00:00:00Z","","0" +"NM-04561","69.5999984741211","69.5999984741211","R","1959-09-25T00:00:00Z","","0" +"BC-0033","126.19000244140625","126.19000244140625","","2020-04-28T00:00:00Z","","0" +"NM-22502","21.170000076293945","21.170000076293945","","2007-07-17T00:00:00Z","","0" +"NM-28258","127.62000274658203","127.62000274658203","","2004-11-15T00:00:00Z","","0" +"NM-08647","29.530000686645508","29.530000686645508","","1961-03-24T00:00:00Z","","0" +"NM-02593","103.08000183105469","103.08000183105469","","1985-06-04T00:00:00Z","","0" +"NM-02405","44.79999923706055","44.79999923706055","","1987-01-13T00:00:00Z","","0" +"DE-0304","43.2599983215332","43.2599983215332","","2016-04-20T00:00:00Z","","0" +"NM-03903","331.0199890136719","331.0199890136719","","1976-07-18T00:00:00Z","","0" +"NM-05460","91.12999725341797","91.12999725341797","","1955-11-29T00:00:00Z","","0" +"NM-00427","74.25","74.25","","1986-01-09T00:00:00Z","","0" +"NM-28258","195.14999389648438","195.14999389648438","","1998-08-15T00:00:00Z","","0" +"NM-02043","5.400000095367432","5.400000095367432","","1982-07-15T00:00:00Z","","0" +"BC-0107","241.4199981689453","241.4199981689453","","2013-03-18T00:00:00Z","","0" +"NM-13727","-22.950000762939453","-22.950000762939453","","1909-12-09T00:00:00Z","","0" +"NM-04204","24.860000610351562","24.860000610351562","","1956-05-02T00:00:00Z","","0" +"NM-28259","135.9600067138672","135.9600067138672","","2003-04-04T00:00:00Z","","0" +"NM-12725","24.729999542236328","24.729999542236328","","1958-09-12T00:00:00Z","","0" +"NM-02232","111.8499984741211","111.8499984741211","P","1948-07-20T00:00:00Z","","0" +"NM-19087","284.4599914550781","284.4599914550781","","1954-03-06T00:00:00Z","","0" +"NM-09867","-72.7699966430664","-72.7699966430664","","1906-07-17T00:00:00Z","","0" +"NM-06676","15.899999618530273","15.899999618530273","","1954-08-15T00:00:00Z","","0" +"NM-13715","-1.6399999856948853","-1.6399999856948853","","1907-06-14T00:00:00Z","","0" +"NM-09973","42.63999938964844","42.63999938964844","","1942-02-04T00:00:00Z","","0" +"NM-11017","61.029998779296875","61.029998779296875","","1956-07-27T00:00:00Z","","0" +"NM-06220","131.8300018310547","131.8300018310547","","1944-09-15T00:00:00Z","","0" +"NM-05507","78","78","","1943-01-08T00:00:00Z","","0" +"NM-02529","48.630001068115234","48.630001068115234","P","1992-10-01T00:00:00Z","","0" +"NM-28044","392.29998779296875","392.29998779296875","","2005-03-03T00:00:00Z","","0" +"NM-11331","10.239999771118164","10.239999771118164","","1974-03-19T00:00:00Z","","0" +"NM-17688","4.369999885559082","4.369999885559082","","1984-08-28T00:00:00Z","","0" +"EB-246","294.57000732421875","294.57000732421875","","2009-08-07T00:00:00Z","","0" +"NM-26794","624.5","624.5","","1970-04-28T00:00:00Z","0001-01-01T08:10:00Z","0" +"NM-01817","72.5999984741211","72.5999984741211","","1984-02-15T00:00:00Z","","0" +"NM-06027","74.0999984741211","74.0999984741211","S","1955-05-17T00:00:00Z","","0" +"NM-05309","9.800000190734863","9.800000190734863","","1984-05-15T00:00:00Z","","0" +"NM-07705","45.90999984741211","45.90999984741211","","1955-02-23T00:00:00Z","","0" +"EB-479","162","162","","1992-05-31T00:00:00Z","","0" +"NM-02737","","","O","2007-08-27T00:00:00Z","","0" +"NM-28255","35.29999923706055","35.29999923706055","","1956-11-25T00:00:00Z","","0" +"NM-03395","17.399999618530273","17.399999618530273","","1995-01-18T00:00:00Z","","0" +"NM-04647","79.12000274658203","79.12000274658203","","1956-11-06T00:00:00Z","","0" +"NM-28250","105.13999938964844","105.13999938964844","","1984-05-15T00:00:00Z","","0" +"NM-27327","7.340000152587891","7.340000152587891","","1956-01-06T00:00:00Z","","0" +"NM-00014","50.119998931884766","50.119998931884766","","1996-01-26T00:00:00Z","","0" +"DE-0277","87.55999755859375","87.55999755859375","","2019-09-11T00:00:00Z","","0" +"NM-28258","161.64999389648438","161.64999389648438","","1987-07-15T00:00:00Z","","0" +"NM-01985","12.199999809265137","12.199999809265137","","1979-03-15T00:00:00Z","","0" +"NM-01947","4.699999809265137","4.699999809265137","","2001-03-15T00:00:00Z","","0" +"NM-02163","21.239999771118164","21.239999771118164","","2011-02-19T00:00:00Z","","0" +"NM-04632","11.399999618530273","11.399999618530273","","1968-02-15T00:00:00Z","","0" +"NM-04608","78.3499984741211","78.3499984741211","","1960-04-05T00:00:00Z","","0" +"NM-02786","104.95999908447266","104.95999908447266","","2006-01-23T00:00:00Z","","0" +"NM-12931","71.97000122070312","71.97000122070312","","1984-02-01T00:00:00Z","","0" +"NM-00686","61.630001068115234","61.630001068115234","","1995-01-03T00:00:00Z","","0" +"NM-21308","28.399999618530273","28.399999618530273","P","1956-07-12T00:00:00Z","","0" +"NM-28255","18.299999237060547","18.299999237060547","","1991-11-05T00:00:00Z","","0" +"AB-0183","350.7799987792969","350.7799987792969","","1998-05-06T00:00:00Z","","" +"WL-0085","37.66999816894531","35.12999725341797","","2020-07-22T00:00:00Z","0001-01-01T11:06:00Z","2.5399999618530273" +"WL-0339","31.450000762939453","39.54999923706055","","2024-04-09T00:00:00Z","0001-01-01T09:55:00Z","-8.100000381469727" +"NM-28258","199.0500030517578","199.0500030517578","","2018-07-05T00:00:00Z","","0" +"LC-025","8.510000228881836","8.860000610351562","","2013-10-11T00:00:00Z","","-0.3499999940395355" +"BC-0038","231.6199951171875","231.6199951171875","","2012-03-07T00:00:00Z","","0" +"NM-13760","-5.989999771118164","-5.989999771118164","","1911-08-12T00:00:00Z","","0" +"EB-033","104","104","","1970-10-20T00:00:00Z","","0" +"EB-217","63.529998779296875","62.22999954223633","","2009-08-12T00:00:00Z","","1.2999999523162842" +"NM-13931","-21.790000915527344","-21.790000915527344","","1909-06-08T00:00:00Z","","0" +"NM-03184","126.95999908447266","126.95999908447266","","1990-04-19T00:00:00Z","","0" +"NM-03006","103.69000244140625","103.69000244140625","","1987-01-09T00:00:00Z","","0" +"NM-13894","-26.40999984741211","-26.40999984741211","","1912-12-18T00:00:00Z","","0" +"QY-0408","235.89999389648438","235.89999389648438","","1954-10-15T00:00:00Z","","0" +"NM-08496","-123.43000030517578","-123.43000030517578","","1905-07-08T00:00:00Z","","0" +"NM-01877","118.66000366210938","118.66000366210938","","1997-01-29T00:00:00Z","","0" +"NM-15027","185.6699981689453","185.6699981689453","","1995-01-18T00:00:00Z","","0" +"NM-00548","75.80000305175781","75.80000305175781","","1991-03-08T00:00:00Z","","0" +"NM-12808","24.510000228881836","24.510000228881836","","1959-01-01T00:00:00Z","","0" +"NM-19900","92.69999694824219","92.69999694824219","","1981-04-27T00:00:00Z","","0" +"NM-04632","12.600000381469727","12.600000381469727","","1955-02-15T00:00:00Z","","0" +"NM-06173","69.88999938964844","69.88999938964844","","1976-01-16T00:00:00Z","","0" +"NM-01955","4.699999809265137","4.699999809265137","","1981-03-15T00:00:00Z","","0" +"NM-20477","182.39999389648438","182.39999389648438","","1978-04-27T00:00:00Z","","0" +"NM-04110","86.41000366210938","86.41000366210938","","1971-02-17T00:00:00Z","","0" +"NM-20054","78.45999908447266","78.45999908447266","","1961-02-13T00:00:00Z","","0" +"NM-12431","29.610000610351562","29.610000610351562","","1947-01-16T00:00:00Z","","0" +"NM-05873","65.5","65.5","","1991-05-08T00:00:00Z","","0" +"NM-27665","66.11000061035156","66.11000061035156","","1977-01-26T00:00:00Z","","0" +"NM-12996","51.779998779296875","51.779998779296875","","1994-01-24T00:00:00Z","","0" +"SM-0117","20.329999923706055","20.329999923706055","","2009-09-22T00:00:00Z","","0" +"HS-036","10.109999656677246","9.1899995803833","P","2012-10-26T00:00:00Z","","0.9200000166893005" +"NM-20049","23.280000686645508","23.280000686645508","","1946-03-29T00:00:00Z","","0" +"NM-28019","476.6400146484375","476.6400146484375","S","2015-05-07T00:00:00Z","","0" +"NM-10075","82","82","","1991-05-09T00:00:00Z","","0" +"NM-03467","431.0799865722656","431.0799865722656","R","1992-03-27T00:00:00Z","","0" +"BC-0028","43.689998626708984","43.689998626708984","","2014-06-03T00:00:00Z","","0" +"NM-01568","72.08000183105469","72.08000183105469","A","2009-02-24T00:00:00Z","","0" +"NM-22889","435","435","","1988-09-22T00:00:00Z","","0" +"NM-12181","85.38999938964844","85.38999938964844","","1956-01-24T00:00:00Z","","0" +"NM-28257","54.939998626708984","54.939998626708984","","1978-09-15T00:00:00Z","","0" +"NM-01774","223","223","P","1963-08-09T00:00:00Z","","0" +"NM-12751","129.86000061035156","129.86000061035156","","1956-11-28T00:00:00Z","","0" +"NM-15456","89.62000274658203","89.62000274658203","","1956-09-13T00:00:00Z","","0" +"SB-0299","145.52000427246094","145.52000427246094","","2015-05-20T00:00:00Z","","0" +"NM-28014","498.8399963378906","498.8399963378906","S","2015-05-17T00:00:00Z","","0" +"NM-13750","-10.779999732971191","-10.779999732971191","","1908-12-01T00:00:00Z","","0" +"QY-0972","35.29999923706055","35.29999923706055","","1955-04-11T00:00:00Z","","0" +"NM-05757","92.45999908447266","92.45999908447266","","1952-01-14T00:00:00Z","","0" +"EB-012","144","144","","1974-02-28T00:00:00Z","","0" +"NM-03349","34.290000915527344","34.290000915527344","","2000-12-11T00:00:00Z","","0" +"NM-28253","21.84000015258789","21.84000015258789","","1993-08-15T00:00:00Z","","0" +"NM-02702","7.460000038146973","7.460000038146973","","1978-11-01T00:00:00Z","","0" +"NM-06482","79.97000122070312","79.97000122070312","","1970-12-02T00:00:00Z","","0" +"NM-02840","6.409999847412109","6.409999847412109","","1970-02-17T00:00:00Z","","0" +"NM-10125","18.510000228881836","18.510000228881836","","1958-01-24T00:00:00Z","","0" +"NM-16759","19.209999084472656","19.209999084472656","","1950-01-09T00:00:00Z","","0" +"NM-01983","66.69000244140625","66.69000244140625","","1948-10-13T00:00:00Z","","0" +"QY-0237","26.399999618530273","26.399999618530273","","1953-04-10T00:00:00Z","","0" +"AR-0072","6.199999809265137","5","","2016-03-16T00:00:00Z","","1.2000000476837158" +"NM-10096","11.199999809265137","11.199999809265137","","1971-12-29T00:00:00Z","","0" +"NM-12328","21.649999618530273","21.649999618530273","","1946-01-31T00:00:00Z","","0" +"NM-02209","105.45999908447266","105.45999908447266","","1962-12-01T00:00:00Z","","0" +"NM-10099","122.4000015258789","122.4000015258789","","1981-12-14T00:00:00Z","","0" +"NM-13632","39.13999938964844","39.13999938964844","","1986-01-09T00:00:00Z","","0" +"NM-08086","124.81999969482422","124.81999969482422","","1994-03-04T00:00:00Z","","0" +"BC-0010","127.69999694824219","127.69999694824219","","2019-07-22T00:00:00Z","","0" +"NM-17434","30.030000686645508","30.030000686645508","","1935-05-19T00:00:00Z","","0" +"SM-0223","511","509.6400146484375","P","2008-05-20T00:00:00Z","","1.3600000143051147" +"NM-28257","53.349998474121094","53.349998474121094","","2013-07-16T00:00:00Z","","0" +"NM-02197","21.65999984741211","21.65999984741211","","2006-08-22T00:00:00Z","","0" +"NM-28023","485.82000732421875","485.82000732421875","S","2015-04-15T00:00:00Z","","0" +"NM-28022","485.9100036621094","485.9100036621094","S","2015-04-16T00:00:00Z","","0" +"SB-0299","126.69999694824219","126.69999694824219","","1990-09-25T00:00:00Z","","0" +"NM-11527","60.720001220703125","60.720001220703125","","1964-07-26T00:00:00Z","","0" +"NM-07153","94.83000183105469","94.83000183105469","","2002-01-08T00:00:00Z","","0" +"NM-19651","45.400001525878906","45.400001525878906","","1950-02-08T00:00:00Z","","0" +"NM-09170","88.30000305175781","88.30000305175781","","1961-03-06T00:00:00Z","","0" +"NM-05360","8.229999542236328","8.229999542236328","","1998-04-16T00:00:00Z","","0" +"NM-03420","45.06999969482422","45.06999969482422","","2002-09-16T00:00:00Z","","0" +"NM-20973","24.549999237060547","24.549999237060547","","1943-02-04T00:00:00Z","","0" +"NM-00621","69.16000366210938","69.16000366210938","","1969-01-16T00:00:00Z","","0" +"NM-21586","4.710000038146973","4.710000038146973","Z","2008-10-28T00:00:00Z","","0" +"DE-0365","57","54.470001220703125","","2013-10-15T00:00:00Z","","2.5299999713897705" +"GT-002","443.8599853515625","442.7699890136719","","2017-09-26T00:00:00Z","","1.090000033378601" +"NM-02043","5.699999809265137","5.699999809265137","","1961-09-15T00:00:00Z","","0" +"SM-0049","233.92999267578125","232.02999877929688","","2008-10-13T00:00:00Z","","1.899999976158142" +"NM-13106","8.319999694824219","8.319999694824219","","1969-05-15T00:00:00Z","","0" +"UC-0139","159.4600067138672","159.4600067138672","Z","1990-10-12T00:00:00Z","","0" +"NM-02163","11.989999771118164","11.989999771118164","","2005-09-08T00:00:00Z","","0" +"NM-17626","89.58000183105469","89.58000183105469","","1960-03-23T00:00:00Z","","0" +"NM-06262","403.8500061035156","403.8500061035156","","1971-03-04T00:00:00Z","","0" +"SA-0007","212.1699981689453","212.1699981689453","","1980-01-16T00:00:00Z","","0" +"NM-02840","6.550000190734863","6.550000190734863","","1976-04-13T00:00:00Z","","0" +"NM-11928","0.30000001192092896","0.30000001192092896","","1961-12-01T00:00:00Z","","0" +"NM-02757","34.040000915527344","34.040000915527344","P","1950-03-11T00:00:00Z","","0" +"NM-17214","78.95999908447266","78.95999908447266","","1968-01-10T00:00:00Z","","0" +"NM-12501","14.4399995803833","14.4399995803833","","1951-01-24T00:00:00Z","","0" +"NM-09799","8.550000190734863","8.550000190734863","","1960-04-11T00:00:00Z","","0" +"NM-21067","131.89999389648438","131.89999389648438","","1986-01-28T00:00:00Z","","0" +"NM-26677","173.6300048828125","173.6300048828125","","1958-02-17T00:00:00Z","","0" +"NM-09083","38.4900016784668","38.4900016784668","","1977-02-04T00:00:00Z","","0" +"ED-0210","40.599998474121094","40.599998474121094","","1947-09-29T00:00:00Z","","0" +"NM-06874","186.13999938964844","186.13999938964844","","1996-02-15T00:00:00Z","","0" +"NM-28257","10.630000114440918","10.630000114440918","","1980-10-25T00:00:00Z","","0" +"BC-0215","248.85000610351562","248.85000610351562","","2012-02-07T00:00:00Z","","0" +"NM-27417","-5.150000095367432","-5.150000095367432","","1962-01-08T00:00:00Z","","0" +"NM-02797","2.990000009536743","2.990000009536743","","1975-02-20T00:00:00Z","","0" +"NM-05563","60.88999938964844","60.88999938964844","","1933-05-21T00:00:00Z","","0" +"NM-05455","22.6299991607666","22.6299991607666","","1940-11-14T00:00:00Z","","0" +"NM-03349","33.65999984741211","33.65999984741211","S","1984-05-10T00:00:00Z","","0" +"NM-02352","6.599999904632568","6.599999904632568","","1984-06-15T00:00:00Z","","0" +"NM-05144","101.88999938964844","101.88999938964844","","1959-01-27T00:00:00Z","","0" +"TB-0037","44.119998931884766","41.119998931884766","","2011-03-03T00:00:00Z","","3" +"NM-28257","16.020000457763672","16.020000457763672","","1974-01-05T00:00:00Z","","0" +"NM-05980","57.20000076293945","57.20000076293945","","1933-03-11T00:00:00Z","","0" +"NM-02303","100","100","","1977-02-02T00:00:00Z","","0" +"NM-01914","17.40999984741211","17.40999984741211","","1959-01-14T00:00:00Z","","0" +"NM-28017","486.2900085449219","486.2900085449219","S","2015-04-15T00:00:00Z","","0" +"NM-28259","116.5999984741211","116.5999984741211","","1980-10-25T00:00:00Z","","0" +"NM-22648","177.1699981689453","177.1699981689453","","1955-09-13T00:00:00Z","","0" +"NM-05080","65.12999725341797","65.12999725341797","","1942-05-21T00:00:00Z","","0" +"NM-00641","35.470001220703125","35.470001220703125","","2015-12-19T00:00:00Z","","0" +"NM-02207","9.600000381469727","9.600000381469727","","1997-08-15T00:00:00Z","","0" +"EB-416","265","265","Z","2000-10-31T00:00:00Z","","0" +"NM-19598","110.73999786376953","110.73999786376953","","1982-03-02T00:00:00Z","","0" +"NM-28258","202.14999389648438","202.14999389648438","","2013-07-16T00:00:00Z","","0" +"BC-0209","235.5500030517578","235.5500030517578","","2012-02-13T00:00:00Z","","0" +"NM-11786","49.27000045776367","49.27000045776367","","1957-01-08T00:00:00Z","","0" +"NM-27302","53.5099983215332","53.5099983215332","","1983-01-06T00:00:00Z","","0" +"NM-13420","-39.119998931884766","-39.119998931884766","","1912-01-24T00:00:00Z","","0" +"NM-26425","6.900000095367432","6.900000095367432","","1986-10-07T00:00:00Z","","0" +"NM-06085","26.979999542236328","26.979999542236328","","1973-12-27T00:00:00Z","","0" +"NM-17716","3.890000104904175","3.890000104904175","","1945-09-29T00:00:00Z","","0" +"NM-28014","498.760009765625","498.760009765625","S","2015-06-04T00:00:00Z","","0" +"NM-05661","79.19999694824219","79.19999694824219","","1940-05-08T00:00:00Z","","0" +"NM-04632","8.5","8.5","","1983-09-15T00:00:00Z","","0" +"TB-0130","33.41999816894531","30.69999885559082","","2010-06-23T00:00:00Z","","2.7200000286102295" +"NM-28256","195.7899932861328","195.7899932861328","","2018-10-15T00:00:00Z","","0" +"NM-02207","13.199999809265137","13.199999809265137","","1959-06-15T00:00:00Z","","0" +"DE-0113","34.75","34.75","","2007-04-23T00:00:00Z","","0" +"NM-03887","39.779998779296875","39.779998779296875","","1953-01-18T00:00:00Z","","0" +"NM-02396","8.899999618530273","8.899999618530273","","1967-09-15T00:00:00Z","","0" +"NM-28024","483.9599914550781","483.9599914550781","S","2015-04-17T00:00:00Z","","0" +"BC-0182","382.4100036621094","382.4100036621094","","2012-03-07T00:00:00Z","","0" +"NM-09014","116.63999938964844","116.63999938964844","","1991-05-17T00:00:00Z","","0" +"NM-05287","53.380001068115234","53.380001068115234","","1933-12-01T00:00:00Z","","0" +"NM-19623","89.61000061035156","89.61000061035156","","1997-03-07T00:00:00Z","","0" +"NM-00075","37.459999084472656","37.459999084472656","","1954-09-02T00:00:00Z","","0" +"NM-17716","-1.2200000286102295","-1.2200000286102295","","1942-12-26T00:00:00Z","","0" +"WS-020","3.8499999046325684","3.8499999046325684","","2012-09-07T00:00:00Z","","0" +"NM-10730","35.47999954223633","35.47999954223633","","1955-01-21T00:00:00Z","","0" +"NM-24863","224.75","224.75","","1983-01-26T00:00:00Z","","0" +"NM-02169","9.789999961853027","9.789999961853027","","2015-10-21T00:00:00Z","","0" +"NM-07852","23.8700008392334","23.8700008392334","P","1971-01-27T00:00:00Z","","0" +"NM-14415","146.5500030517578","146.5500030517578","","1963-09-05T00:00:00Z","","0" +"NM-01566","51.189998626708984","51.189998626708984","","1967-03-02T00:00:00Z","","0" +"NM-05020","80.30000305175781","80.30000305175781","","1947-11-06T00:00:00Z","","0" +"NM-02620","15.199999809265137","15.199999809265137","","1955-06-15T00:00:00Z","","0" +"NM-12808","30.489999771118164","30.489999771118164","","1933-07-01T00:00:00Z","","0" +"NM-16953","23.3700008392334","23.3700008392334","","1939-01-18T00:00:00Z","","0" +"NM-01947","6.800000190734863","6.800000190734863","","1976-07-15T00:00:00Z","","0" +"NM-00542","84.19000244140625","84.19000244140625","","2010-12-08T00:00:00Z","","0" +"NM-06805","91.61000061035156","91.61000061035156","","2003-07-08T00:00:00Z","","0" +"NM-01204","351.69000244140625","351.69000244140625","Z","2000-08-02T00:00:00Z","","0" +"NM-28257","65.8499984741211","65.8499984741211","","1962-03-15T00:00:00Z","","0" +"NM-09682","462.9800109863281","462.9800109863281","","1969-06-01T00:00:00Z","","0" +"NM-28257","3.8499999046325684","3.8499999046325684","","1982-11-25T00:00:00Z","","0" +"NM-24188","15.40999984741211","15.40999984741211","","1954-04-07T00:00:00Z","","0" +"NM-20735","151.94000244140625","151.94000244140625","","1972-02-15T00:00:00Z","","0" +"NM-16634","14.279999732971191","14.279999732971191","","1940-01-30T00:00:00Z","","0" +"NM-11961","38.65999984741211","38.65999984741211","","1964-01-06T00:00:00Z","","0" +"NM-07719","52","52","P","1945-05-22T00:00:00Z","","0" +"AB-0191","885.6500244140625","885.6500244140625","","1990-08-03T00:00:00Z","","" +"NM-28024","478.0299987792969","478.0299987792969","S","2015-04-26T00:00:00Z","","0" +"NM-28256","100.41000366210938","100.41000366210938","","2006-01-05T00:00:00Z","","0" +"NM-00624","67.48999786376953","67.48999786376953","","1993-01-06T00:00:00Z","","0" +"NM-02196","38.939998626708984","38.939998626708984","","2016-08-17T00:00:00Z","","0" +"NM-03462","152.24000549316406","152.24000549316406","","1969-05-01T00:00:00Z","","0" +"NM-21578","4.289999961853027","4.289999961853027","Z","2009-03-24T00:00:00Z","","0" +"NM-17716","2.569999933242798","2.569999933242798","","1943-09-28T00:00:00Z","","0" +"NM-28251","94.51000213623047","94.51000213623047","","1973-09-05T00:00:00Z","","0" +"SA-0144","27.020000457763672","24.880001068115234","","2010-03-16T00:00:00Z","","2.140000104904175" +"NM-22466","107.4000015258789","107.4000015258789","R","1990-01-23T00:00:00Z","","0" +"NM-25688","25.219999313354492","25.219999313354492","","1970-01-13T00:00:00Z","","0" +"NM-00526","52.90999984741211","52.90999984741211","","1962-01-19T00:00:00Z","","0" +"SA-0136","48","46.13999938964844","","2011-01-22T00:00:00Z","","1.8600000143051147" +"NM-09268","124.04000091552734","124.04000091552734","","1946-11-19T00:00:00Z","","0" +"NM-10335","64.87000274658203","64.87000274658203","","1961-01-18T00:00:00Z","","0" +"NM-07180","77.41999816894531","77.41999816894531","","1967-01-13T00:00:00Z","","0" +"NM-02818","25.34000015258789","25.34000015258789","","1972-01-07T00:00:00Z","","0" +"NM-14688","98.08999633789062","98.08999633789062","","1961-01-20T00:00:00Z","","0" +"NM-12967","1.559999942779541","1.559999942779541","","1978-08-01T00:00:00Z","","0" +"NM-01269","73.73999786376953","73.73999786376953","","1988-09-29T00:00:00Z","","0" +"NM-03916","30.969999313354492","30.969999313354492","","1955-01-20T00:00:00Z","","0" +"NM-15177","21.43000030517578","21.43000030517578","","1959-01-06T00:00:00Z","","0" +"NM-03104","307.8800048828125","307.8800048828125","","2000-08-23T00:00:00Z","","0" +"NM-24246","13.520000457763672","13.520000457763672","","2010-07-08T00:00:00Z","","0" +"NM-20561","93.37000274658203","93.37000274658203","","1980-10-01T00:00:00Z","","0" +"NM-01971","6.900000095367432","6.900000095367432","","1998-04-15T00:00:00Z","","0" +"NM-02501","49.560001373291016","49.560001373291016","","1938-04-27T00:00:00Z","","0" +"NM-02015","354.79998779296875","354.79998779296875","S","2000-02-14T00:00:00Z","","0" +"NM-23511","24","24","","2001-05-07T00:00:00Z","","0" +"NM-01623","120.72000122070312","120.72000122070312","","1991-01-25T00:00:00Z","","0" +"NM-09717","19.450000762939453","19.450000762939453","","1975-01-28T00:00:00Z","","0" +"WL-0021","41.72999954223633","41.029998779296875","","2004-11-01T00:00:00Z","","0.699999988079071" +"NM-01948","7.099999904632568","7.099999904632568","","1961-01-15T00:00:00Z","","0" +"NM-00686","60.13999938964844","60.13999938964844","Z","2000-05-08T00:00:00Z","","0" +"NM-19906","45.88999938964844","45.88999938964844","R","1954-01-19T00:00:00Z","","0" +"NM-01035","47.22999954223633","47.22999954223633","","1957-06-20T00:00:00Z","","0" +"NM-22700","3.5","3.5","Z","2009-02-25T00:00:00Z","","0" +"NM-01889","15.729999542236328","15.729999542236328","","2003-03-20T00:00:00Z","","0" +"NM-05360","8.630000114440918","8.630000114440918","","1998-03-03T00:00:00Z","","0" +"NM-20066","36.70000076293945","36.70000076293945","","1959-01-21T00:00:00Z","","0" +"NM-14650","130.27999877929688","130.27999877929688","Z","1994-02-09T00:00:00Z","","0" +"NM-03400","10.0600004196167","10.0600004196167","","1988-08-30T00:00:00Z","","0" +"NM-22836","108.70999908447266","108.70999908447266","","2016-03-31T00:00:00Z","","0" +"NM-17542","35.279998779296875","35.279998779296875","P","1954-01-23T00:00:00Z","","0" +"NM-13265","-51.97999954223633","-51.97999954223633","","1910-03-19T00:00:00Z","","0" +"NM-20046","32.84000015258789","32.84000015258789","","1946-12-03T00:00:00Z","","0" +"NM-11344","91.9800033569336","91.9800033569336","","1955-03-07T00:00:00Z","","0" +"NM-02004","7.300000190734863","7.300000190734863","","1958-06-15T00:00:00Z","","0" +"NM-28253","8.220000267028809","8.220000267028809","","1960-12-15T00:00:00Z","","0" +"SB-0299","128.2100067138672","128.2100067138672","","2004-12-25T00:00:00Z","","0" +"NM-01888","9.390000343322754","9.390000343322754","","2002-06-24T00:00:00Z","","0" +"NM-26619","40.220001220703125","40.220001220703125","","2012-02-07T00:00:00Z","","0" +"NM-05099","121.8499984741211","121.8499984741211","P","1953-07-18T00:00:00Z","","0" +"NM-13899","4.380000114440918","4.380000114440918","","1969-10-30T00:00:00Z","","0" +"NM-07888","656.2000122070312","656.2000122070312","","1975-04-04T00:00:00Z","","0" +"NM-00967","360","360","","1992-05-11T00:00:00Z","","0" +"NM-28252","48.91999816894531","48.91999816894531","","1959-09-15T00:00:00Z","","0" +"NM-23357","106.62999725341797","106.62999725341797","","1946-12-04T00:00:00Z","","0" +"NM-02998","56.31999969482422","56.31999969482422","","1985-01-13T00:00:00Z","","0" +"EB-484","693.739990234375","693.1400146484375","P","1996-08-31T00:00:00Z","","0.6000000238418579" +"NM-14544","134.14999389648438","134.14999389648438","","1962-01-22T00:00:00Z","","0" +"NM-06072","110.93000030517578","110.93000030517578","","1959-01-12T00:00:00Z","","0" +"EB-279","240.8000030517578","240.8000030517578","","1995-01-10T00:00:00Z","","0" +"NM-10099","179.44000244140625","179.44000244140625","","1973-07-05T00:00:00Z","","0" +"NM-02207","11.199999809265137","11.199999809265137","","2002-06-15T00:00:00Z","","0" +"NM-13594","26.5","26.5","","1976-01-05T00:00:00Z","","0" +"NM-02471","167.05999755859375","167.05999755859375","","1963-09-04T00:00:00Z","","0" +"NM-02383","43.400001525878906","43.400001525878906","","1974-12-19T00:00:00Z","","0" +"NM-28020","465.6600036621094","465.6600036621094","S","2015-04-26T00:00:00Z","","0" +"NM-16816","33.2400016784668","33.2400016784668","","1952-01-18T00:00:00Z","","0" +"NM-05987","38.66999816894531","38.66999816894531","","2016-01-20T00:00:00Z","","0" +"NM-01572","66.94000244140625","66.94000244140625","","1987-02-04T00:00:00Z","","0" +"NM-24430","-125.23999786376953","-125.23999786376953","E","1985-04-11T00:00:00Z","","0" +"NM-12829","29.190000534057617","29.190000534057617","","1956-01-13T00:00:00Z","","0" +"NM-28019","476.2900085449219","476.2900085449219","S","2015-05-08T00:00:00Z","","0" +"NM-13860","-7.929999828338623","-7.929999828338623","","1906-09-10T00:00:00Z","","0" +"NM-27393","115.05999755859375","115.05999755859375","","1966-01-14T00:00:00Z","","0" +"NM-07152","93.18000030517578","93.18000030517578","","2005-05-11T00:00:00Z","","0" +"NM-24956","22.3700008392334","22.3700008392334","","1952-11-13T00:00:00Z","","0" +"NM-02527","9","9","","1962-09-15T00:00:00Z","","0" +"NM-21889","4.440000057220459","4.440000057220459","Z","2005-09-16T00:00:00Z","","0" +"NM-19402","316.8900146484375","316.8900146484375","","1972-01-18T00:00:00Z","","0" +"NM-13764","-2.7300000190734863","-2.7300000190734863","","1909-09-08T00:00:00Z","","0" +"NM-10236","95.55999755859375","95.55999755859375","R","1966-03-01T00:00:00Z","","0" +"SB-0444","52.72999954223633","52.72999954223633","","1978-01-23T00:00:00Z","","0" +"NM-02844","-20.600000381469727","-20.600000381469727","","1914-07-07T00:00:00Z","","0" +"NM-14278","31","31","","1910-12-13T00:00:00Z","","0" +"NM-03747","50.290000915527344","50.290000915527344","","1950-07-20T00:00:00Z","","0" +"NM-11600","68.58000183105469","68.58000183105469","","1976-03-31T00:00:00Z","","0" +"NM-28251","71.62999725341797","71.62999725341797","","2006-05-05T00:00:00Z","","0" +"SB-0289","91.0999984741211","91.0999984741211","","1968-01-22T00:00:00Z","","0" +"NM-01985","11.5","11.5","","1972-04-15T00:00:00Z","","0" +"ED-0244","66.9000015258789","66.9000015258789","","1947-10-01T00:00:00Z","","0" +"NM-17063","90.33000183105469","90.33000183105469","","1982-03-23T00:00:00Z","","0" +"NM-01872","8","8","","1987-12-15T00:00:00Z","","0" +"SA-0104","25.100000381469727","21.649999618530273","R","2011-07-11T00:00:00Z","","3.450000047683716" +"NM-14081","-11.970000267028809","-11.970000267028809","","1911-10-17T00:00:00Z","","0" +"NM-10736","16.100000381469727","16.100000381469727","","1938-12-01T00:00:00Z","","0" +"NM-13562","3.5799999237060547","3.5799999237060547","","1959-04-29T00:00:00Z","","0" +"NM-01872","6.099999904632568","6.099999904632568","","1995-09-15T00:00:00Z","","0" +"NM-21776","8.100000381469727","8.100000381469727","","1961-07-07T00:00:00Z","","0" +"NM-01872","7.800000190734863","7.800000190734863","","1985-11-15T00:00:00Z","","0" +"NM-28021","490.67999267578125","490.67999267578125","S","2015-04-24T00:00:00Z","","0" +"NM-06595","74.29000091552734","74.29000091552734","","1944-06-10T00:00:00Z","","0" +"NM-22189","442.8900146484375","442.8900146484375","","2009-12-14T00:00:00Z","","0" +"NM-28250","84.43000030517578","84.43000030517578","","2007-07-25T00:00:00Z","","0" +"NM-28005","401","401","","1956-09-25T00:00:00Z","","0" +"NM-02407","33.310001373291016","33.310001373291016","","1951-05-08T00:00:00Z","","0" +"NM-00804","111.05000305175781","111.05000305175781","","2013-09-19T00:00:00Z","","0" +"NM-13145","11.4399995803833","11.4399995803833","","1970-12-21T00:00:00Z","","0" +"NM-02349","17.899999618530273","17.899999618530273","","2001-03-15T00:00:00Z","","0" +"NM-05381","68.44999694824219","68.44999694824219","","1956-01-09T00:00:00Z","","0" +"NM-01713","117.81999969482422","117.81999969482422","","2011-12-05T00:00:00Z","","0" +"NM-07002","42.27000045776367","42.27000045776367","","1953-10-01T00:00:00Z","","0" +"DE-0197","51.68000030517578","51.68000030517578","","2016-05-25T00:00:00Z","","0" +"NM-28257","66.25","66.25","","1953-10-15T00:00:00Z","","0" +"NM-03017","159.9499969482422","159.9499969482422","","1981-01-09T00:00:00Z","","0" +"NM-10949","43.84000015258789","43.84000015258789","","1941-01-23T00:00:00Z","","0" +"NM-13888","3.4000000953674316","3.4000000953674316","","1963-03-28T00:00:00Z","","0" +"NM-26718","52.36000061035156","52.36000061035156","","1958-10-14T00:00:00Z","","0" +"NM-14265","422.4599914550781","422.4599914550781","","1961-09-29T00:00:00Z","","0" +"DE-0112","","","D","2016-07-27T00:00:00Z","","0" +"NM-02772","0.4099999964237213","0.4099999964237213","","1996-02-05T00:00:00Z","","0" +"SB-0442","169.89999389648438","169.89999389648438","","2010-05-05T00:00:00Z","","0" +"NM-08851","9.390000343322754","9.390000343322754","P","1954-05-26T00:00:00Z","","0" +"NM-06208","102.0199966430664","102.0199966430664","","1976-01-15T00:00:00Z","","0" +"NM-28256","77.5199966430664","77.5199966430664","","1996-12-15T00:00:00Z","","0" +"NM-14294","-20.639999389648438","-20.639999389648438","","1911-05-15T00:00:00Z","","0" +"NM-01948","6.300000190734863","6.300000190734863","","1986-02-01T00:00:00Z","","0" +"NM-21374","229.5","229.5","","1986-11-01T00:00:00Z","","0" +"NM-03373","46.09000015258789","46.09000015258789","","1992-01-27T00:00:00Z","","0" +"NM-27263","302.6000061035156","302.6000061035156","","1989-09-12T00:00:00Z","","0" +"EB-246","288.05999755859375","288.05999755859375","","2001-03-29T00:00:00Z","","0" +"NM-22188","444.3299865722656","444.3299865722656","","2006-05-15T00:00:00Z","","0" +"NM-17716","5.210000038146973","5.210000038146973","","1947-11-10T00:00:00Z","","0" +"NM-05474","46.91999816894531","46.91999816894531","","1932-06-03T00:00:00Z","","0" +"NM-24924","4.630000114440918","4.630000114440918","","1962-06-07T00:00:00Z","","0" +"NM-02668","40.43000030517578","40.43000030517578","","1989-01-23T00:00:00Z","","0" +"NM-05369","19.56999969482422","19.56999969482422","","1953-05-13T00:00:00Z","","0" +"NM-01565","-228.32000732421875","-228.32000732421875","","1988-05-24T00:00:00Z","","0" +"NM-01272","570.2000122070312","570.2000122070312","P","1959-01-26T00:00:00Z","","0" +"NM-28253","23.190000534057617","23.190000534057617","","1963-11-15T00:00:00Z","","0" +"NM-05227","137.30999755859375","137.30999755859375","","1972-02-16T00:00:00Z","","0" +"NM-22805","9.380000114440918","9.380000114440918","","1956-11-20T00:00:00Z","","0" +"EB-483","477.4200134277344","477.4200134277344","Z","2005-02-28T00:00:00Z","","0" +"QY-0919","254.89999389648438","254.89999389648438","R","1955-08-02T00:00:00Z","","0" +"NM-13254","8.15999984741211","8.15999984741211","","1960-02-23T00:00:00Z","","0" +"AB-0106","422.9800109863281","422.9800109863281","","1999-07-14T00:00:00Z","","" +"NM-02005","9.130000114440918","9.130000114440918","","2006-03-06T00:00:00Z","","0" +"AB-0065","161.94000244140625","161.94000244140625","","1998-03-19T00:00:00Z","","" +"NM-06951","105.68000030517578","105.68000030517578","","2004-10-07T00:00:00Z","","0" +"NM-11909","48.72999954223633","48.72999954223633","","1939-03-07T00:00:00Z","","0" +"NM-14265","423.2099914550781","423.2099914550781","","1957-09-01T00:00:00Z","","0" +"NM-12711","34.02000045776367","34.02000045776367","","1937-02-18T00:00:00Z","","0" +"NM-08191","59.70000076293945","59.70000076293945","","1950-01-16T00:00:00Z","","0" +"NM-11776","46.86000061035156","46.86000061035156","","1937-08-17T00:00:00Z","","0" +"NM-19911","47.56999969482422","47.56999969482422","","1961-01-06T00:00:00Z","","0" +"NM-28259","155.1199951171875","155.1199951171875","","1966-10-05T00:00:00Z","","0" +"NM-16615","24.530000686645508","24.530000686645508","","1946-09-28T00:00:00Z","","0" +"NM-13624","-7.929999828338623","-7.929999828338623","","1909-12-09T00:00:00Z","","0" +"TB-0006","169.22000122070312","167.27999877929688","","2011-02-16T00:00:00Z","","1.940000057220459" +"NM-05309","13","13","","1972-10-15T00:00:00Z","","0" +"NM-22910","480.4200134277344","480.4200134277344","","2012-11-08T00:00:00Z","","0" +"NM-08524","10.399999618530273","10.399999618530273","","1973-10-15T00:00:00Z","","0" +"DE-0082","90.38999938964844","90.38999938964844","","2000-11-22T00:00:00Z","","0" +"NM-01790","207.8800048828125","207.8800048828125","","1966-01-11T00:00:00Z","","0" +"NM-13529","1.340000033378601","1.340000033378601","","1959-04-22T00:00:00Z","","0" +"NM-28256","266.69000244140625","266.69000244140625","","1990-06-15T00:00:00Z","","0" +"NM-02610","212.50999450683594","212.50999450683594","","1989-01-31T00:00:00Z","","0" +"NM-01957","50.63999938964844","50.63999938964844","","2005-02-26T00:00:00Z","","0" +"NM-02101","6.800000190734863","6.800000190734863","","1977-09-15T00:00:00Z","","0" +"NM-28259","162.05999755859375","162.05999755859375","","2013-10-04T00:00:00Z","","0" +"NM-02732","99.23999786376953","99.23999786376953","","1965-01-12T00:00:00Z","","0" +"NM-17626","77.7699966430664","77.7699966430664","","1952-01-27T00:00:00Z","","0" +"NM-01204","370.1099853515625","370.1099853515625","S","2015-02-05T00:00:00Z","","0" +"NM-12360","-46.04999923706055","-46.04999923706055","","1906-03-28T00:00:00Z","","0" +"NM-28258","158.8000030517578","158.8000030517578","","1989-09-15T00:00:00Z","","0" +"NM-26612","26.209999084472656","26.209999084472656","","2011-11-08T00:00:00Z","","0" +"NM-02017","8.300000190734863","8.300000190734863","","1953-04-15T00:00:00Z","","0" +"EB-225","112.16000366210938","117.36000061035156","","2003-01-29T00:00:00Z","","-5.199999809265137" +"NM-02957","158.75999450683594","158.75999450683594","","1964-10-27T00:00:00Z","","0" +"NM-02497","73.52999877929688","73.52999877929688","","1992-02-04T00:00:00Z","","0" +"NM-01972","66.7300033569336","66.7300033569336","","1950-12-02T00:00:00Z","","0" +"NM-27571","24.579999923706055","24.579999923706055","","1974-01-04T00:00:00Z","","0" +"BC-0010","","129.6999969482422","","2020-07-25T00:00:00Z","","1.350000023841858" +"NM-02501","69.30999755859375","69.30999755859375","R","1953-01-07T00:00:00Z","","0" +"NM-07652","44.06999969482422","44.06999969482422","","1991-10-08T00:00:00Z","","0" +"NM-03278","11.600000381469727","11.600000381469727","","1992-02-03T00:00:00Z","","0" +"NM-00634","56.13999938964844","56.13999938964844","","1971-01-14T00:00:00Z","","0" +"NM-28019","477.8399963378906","477.8399963378906","S","2015-04-28T00:00:00Z","","0" +"NM-21548","4.739999771118164","4.739999771118164","Z","2003-08-15T00:00:00Z","","0" +"NM-11102","70.56999969482422","70.56999969482422","","1981-01-22T00:00:00Z","","0" +"NM-02248","24.709999084472656","24.709999084472656","","1966-01-06T00:00:00Z","","0" +"NM-27571","14.479999542236328","14.479999542236328","","1958-09-10T00:00:00Z","","0" +"NM-05643","76.7699966430664","76.7699966430664","","1934-07-03T00:00:00Z","","0" +"NM-12392","262.54998779296875","262.54998779296875","","1972-05-01T00:00:00Z","","0" +"NM-21079","9.960000038146973","9.960000038146973","","1950-08-01T00:00:00Z","","0" +"BC-0151","127.8499984741211","127.8499984741211","","2017-06-20T00:00:00Z","","0" +"NM-15692","39.72999954223633","39.72999954223633","","1995-02-07T00:00:00Z","","0" +"NM-07053","257.8699951171875","257.8699951171875","","1982-02-17T00:00:00Z","","0" +"NM-09176","70.08000183105469","70.08000183105469","","1954-07-15T00:00:00Z","","0" +"NM-11747","127.9000015258789","127.9000015258789","","1960-01-15T00:00:00Z","","0" +"NM-03337","9.739999771118164","9.739999771118164","","1988-06-27T00:00:00Z","","0" +"NM-05105","68.62000274658203","68.62000274658203","","1954-01-05T00:00:00Z","","0" +"NM-02843","42.20000076293945","42.20000076293945","P","1951-01-30T00:00:00Z","","0" +"NM-07240","289.3999938964844","289.3999938964844","","2008-11-21T00:00:00Z","","0" +"NM-16593","68.23999786376953","68.23999786376953","","1962-01-18T00:00:00Z","","0" +"NM-22677","5.190000057220459","5.190000057220459","Z","2008-07-22T00:00:00Z","","0" +"NM-05716","99.79000091552734","99.79000091552734","S","1947-05-20T00:00:00Z","","0" +"NM-06914","65.9800033569336","65.9800033569336","","2006-01-10T00:00:00Z","","0" +"NM-03403","4.929999828338623","4.929999828338623","","1994-05-17T00:00:00Z","","0" +"TV-124","138.97000122070312","137.08999633789062","","2012-04-09T00:00:00Z","","1.8799999952316284" +"NM-07685","38.779998779296875","38.779998779296875","","1938-11-14T00:00:00Z","","0" +"NM-02282","400.9100036621094","400.9100036621094","","1994-03-23T00:00:00Z","","0" +"NM-03972","258.8500061035156","258.8500061035156","","1954-11-10T00:00:00Z","","0" +"NM-11383","42.040000915527344","42.040000915527344","","1944-07-20T00:00:00Z","","0" +"NM-08553","95.4800033569336","95.4800033569336","","1956-01-18T00:00:00Z","","0" +"NM-08938","-14.859999656677246","-14.859999656677246","","1908-06-29T00:00:00Z","","0" +"NM-05418","130.52999877929688","130.52999877929688","","1960-11-14T00:00:00Z","","0" +"NM-13835","-10.239999771118164","-10.239999771118164","","1908-03-25T00:00:00Z","","0" +"NM-09016","48.709999084472656","48.709999084472656","","1953-01-08T00:00:00Z","","0" +"NM-00366","126.5999984741211","126.5999984741211","","1966-03-01T00:00:00Z","","0" +"NM-28259","117.88999938964844","117.88999938964844","","1988-05-05T00:00:00Z","","0" +"DE-0071","204.17999267578125","201.57998657226562","","1998-05-28T00:00:00Z","","2.5999999046325684" +"NM-00765","34.90999984741211","34.90999984741211","","2012-09-26T00:00:00Z","","0" +"NM-12666","16.649999618530273","16.649999618530273","","1954-01-28T00:00:00Z","","0" +"NM-17073","20.059999465942383","20.059999465942383","","1942-01-27T00:00:00Z","","0" +"NM-28257","25.75","25.75","","1992-08-05T00:00:00Z","","0" +"NM-06676","7.599999904632568","7.599999904632568","","1981-12-15T00:00:00Z","","0" +"WL-0209","73.44000244140625","72.44000244140625","","2020-09-08T00:00:00Z","0001-01-01T11:50:00Z","1" +"NM-28259","107.5","107.5","","1960-07-15T00:00:00Z","","0" +"NM-01754","64.5999984741211","64.5999984741211","","1981-01-20T00:00:00Z","","0" +"BC-0146","501.510009765625","501.510009765625","","2015-12-29T00:00:00Z","","0" +"NM-13234","4.329999923706055","4.329999923706055","","1968-06-06T00:00:00Z","","0" +"NM-01291","98.80000305175781","98.80000305175781","","1949-06-13T00:00:00Z","","0" +"NM-28250","105.73999786376953","105.73999786376953","","1979-05-05T00:00:00Z","","0" +"SA-0041","278.6400146484375","278.6400146484375","","1977-02-24T00:00:00Z","","0" +"SA-0042","294.8999938964844","294.79998779296875","","2015-03-12T00:00:00Z","","0.10000000149011612" +"TO-0149","18.899999618530273","18.899999618530273","","1946-09-05T00:00:00Z","","0" +"QU-085","402.75","399","","2012-06-01T00:00:00Z","","3.75" +"NM-04470","37.04999923706055","37.04999923706055","","1939-07-01T00:00:00Z","","0" +"NM-07667","24.559999465942383","24.559999465942383","","1963-01-08T00:00:00Z","","0" +"NM-09858","4.650000095367432","4.650000095367432","","1994-02-01T00:00:00Z","","0" +"NM-00644","31.190000534057617","31.190000534057617","","1985-03-05T00:00:00Z","","0" +"NM-03254","346.1000061035156","346.1000061035156","","1979-01-08T00:00:00Z","","0" +"DE-0142","84.62999725341797","84.62999725341797","","2011-02-08T00:00:00Z","","0" +"NM-28259","94","94","","1984-01-15T00:00:00Z","","0" +"NM-00253","21.959999084472656","21.959999084472656","","1971-03-01T00:00:00Z","","0" +"NM-23923","60.83000183105469","60.83000183105469","","1983-12-13T00:00:00Z","","0" +"NM-26561","26.1299991607666","26.1299991607666","","1986-01-28T00:00:00Z","","0" +"NM-02591","15","15","","2002-02-15T00:00:00Z","","0" +"NM-21670","551.9500122070312","551.9500122070312","","2006-09-15T00:00:00Z","","0" +"NM-08785","143.64999389648438","143.64999389648438","","1968-07-26T00:00:00Z","","0" +"NM-10069","9.640000343322754","9.640000343322754","","1968-02-26T00:00:00Z","","0" +"SB-0432","38.380001068115234","38.380001068115234","","1966-09-02T00:00:00Z","","0" +"NM-14351","595.3900146484375","595.3900146484375","","1967-06-01T00:00:00Z","","0" +"NM-11915","36.25","36.25","","1950-01-23T00:00:00Z","","0" +"NM-03403","7.460000038146973","7.460000038146973","","1992-12-17T00:00:00Z","","0" +"NM-13145","14.4399995803833","14.4399995803833","","1960-01-26T00:00:00Z","","0" +"NM-02644","35.61000061035156","35.61000061035156","","1957-11-26T00:00:00Z","","0" +"NM-01746","93.75","93.75","","1964-01-10T00:00:00Z","","0" +"NM-01881","99.26000213623047","99.26000213623047","","1955-03-19T00:00:00Z","","0" +"NM-28022","485.7699890136719","485.7699890136719","S","2015-04-16T00:00:00Z","","0" +"NM-02586","273.54998779296875","273.54998779296875","","1976-06-01T00:00:00Z","","0" +"NM-28258","137.75","137.75","","2014-02-14T00:00:00Z","","0" +"NM-20780","3.4100000858306885","3.4100000858306885","","1942-08-13T00:00:00Z","","0" +"NM-21787","25.940000534057617","25.940000534057617","","1965-02-09T00:00:00Z","","0" +"NM-00226","70.77999877929688","70.77999877929688","","1965-06-23T00:00:00Z","","0" +"NM-02831","25.34000015258789","25.34000015258789","","1952-04-01T00:00:00Z","","0" +"WS-006","12.75","12.75","","2012-09-12T00:00:00Z","","0" +"NM-17989","17.8799991607666","17.8799991607666","","1938-11-01T00:00:00Z","","0" +"NM-05416","93.33000183105469","93.33000183105469","","1954-01-11T00:00:00Z","","0" +"SB-0358","73.79000091552734","73.79000091552734","","1988-02-18T00:00:00Z","","0" +"DE-0272","89.41000366210938","89.41000366210938","","2019-03-21T00:00:00Z","","0" +"NM-03022","89.13999938964844","89.13999938964844","","1991-01-08T00:00:00Z","","0" +"NM-14265","426.5299987792969","426.5299987792969","","1970-09-01T00:00:00Z","","0" +"NM-02980","49.33000183105469","49.33000183105469","","1996-01-09T00:00:00Z","","0" +"NM-01204","346.5299987792969","346.5299987792969","Z","1998-10-16T00:00:00Z","","0" +"NM-10300","-111.87999725341797","-111.87999725341797","","1906-04-10T00:00:00Z","","0" +"NM-27571","17.579999923706055","17.579999923706055","","1962-10-01T00:00:00Z","","0" +"NM-24808","98.47000122070312","98.47000122070312","","1961-02-06T00:00:00Z","","0" +"NM-07082","70.77999877929688","70.77999877929688","","2004-06-25T00:00:00Z","","0" +"NM-03518","33.59000015258789","33.59000015258789","","1970-07-28T00:00:00Z","","0" +"NM-10309","21.969999313354492","21.969999313354492","","1939-01-30T00:00:00Z","","0" +"NM-14183","19.959999084472656","19.959999084472656","","1939-03-30T00:00:00Z","","0" +"NM-11701","20.860000610351562","20.860000610351562","","1960-01-18T00:00:00Z","","0" +"NM-07649","50.029998779296875","50.029998779296875","","1948-01-13T00:00:00Z","","0" +"NM-02117","148.58999633789062","148.58999633789062","P","1956-09-10T00:00:00Z","","0" +"NM-17256","27.43000030517578","27.43000030517578","","1946-01-22T00:00:00Z","","0" +"NM-07652","89.98999786376953","89.98999786376953","P","1963-09-04T00:00:00Z","","0" +"NM-25026","425.20001220703125","425.20001220703125","","1981-12-16T00:00:00Z","","0" +"NM-02520","6.400000095367432","6.400000095367432","","1982-12-15T00:00:00Z","","0" +"NM-09374","29.59000015258789","29.59000015258789","","1937-01-14T00:00:00Z","","0" +"NM-06038","27.09000015258789","27.09000015258789","","2005-05-25T00:00:00Z","","0" +"SO-0160","10.149999618530273","9.079999923706055","","2021-05-07T00:00:00Z","0001-01-01T18:45:00Z","1.0700000524520874" +"EB-416","263","263","Z","2000-06-30T00:00:00Z","","0" +"DE-0119","30.950000762939453","30.950000762939453","","2005-11-10T00:00:00Z","","0" +"NM-01291","89.19000244140625","89.19000244140625","","1961-05-11T00:00:00Z","","0" +"NM-12011","61.349998474121094","61.349998474121094","","1938-01-30T00:00:00Z","","0" +"DE-0120","32.459999084472656","32.459999084472656","","2006-01-23T00:00:00Z","","0" +"NM-01799","148.39999389648438","148.39999389648438","","1978-01-12T00:00:00Z","","0" +"NM-13039","40.310001373291016","40.310001373291016","","1952-01-13T00:00:00Z","","0" +"NM-13135","5.590000152587891","5.590000152587891","","1978-09-18T00:00:00Z","","0" +"NM-01948","4.5","4.5","","1986-04-15T00:00:00Z","","0" +"NM-19372","40.95000076293945","40.95000076293945","","1962-03-21T00:00:00Z","","0" +"NM-01955","4.599999904632568","4.599999904632568","","1992-02-25T00:00:00Z","","0" +"NM-16857","22.290000915527344","22.290000915527344","","1945-07-31T00:00:00Z","","0" +"NM-01281","394","394","","1982-11-01T00:00:00Z","","0" +"NM-20068","32.869998931884766","32.869998931884766","","1946-03-29T00:00:00Z","","0" +"BC-0316","","363.6000061035156","","2021-10-23T00:00:00Z","","0" +"NM-13842","-13.710000038146973","-13.710000038146973","","1908-03-26T00:00:00Z","","0" +"NM-01826","104.0999984741211","104.0999984741211","","1959-11-10T00:00:00Z","","0" +"NM-03797","146.32000732421875","146.32000732421875","","1961-01-19T00:00:00Z","","0" +"NM-28250","90.93000030517578","90.93000030517578","","2014-12-24T00:00:00Z","","0" +"NM-01947","5.900000095367432","5.900000095367432","","1953-03-15T00:00:00Z","","0" +"NM-21604","190.38999938964844","190.38999938964844","","2008-11-04T00:00:00Z","","0" +"NM-04315","21.270000457763672","21.270000457763672","","1960-01-25T00:00:00Z","","0" +"NM-28254","120.79000091552734","120.79000091552734","","1973-05-05T00:00:00Z","","0" +"NM-02352","7.300000190734863","7.300000190734863","","1974-12-15T00:00:00Z","","0" +"NM-00439","231.0500030517578","231.0500030517578","","1984-02-22T00:00:00Z","","0" +"NM-28258","120.1500015258789","120.1500015258789","","1984-02-05T00:00:00Z","","0" +"NM-13579","-18.329999923706055","-18.329999923706055","","1909-06-16T00:00:00Z","","0" +"NM-21776","8.390000343322754","8.390000343322754","","1960-10-19T00:00:00Z","","0" +"NM-02270","26.1200008392334","26.1200008392334","","2004-01-27T00:00:00Z","","0" +"NM-03029","62.09000015258789","62.09000015258789","","1961-03-15T00:00:00Z","","0" +"NM-11564","127.5199966430664","127.5199966430664","","1961-01-13T00:00:00Z","","0" +"NM-12186","12.15999984741211","12.15999984741211","","1955-06-09T00:00:00Z","","0" +"NM-22506","51.70000076293945","51.70000076293945","Z","1995-06-06T00:00:00Z","","0" +"NM-03394","21.579999923706055","21.579999923706055","","1989-08-10T00:00:00Z","","0" +"NM-02669","62.27000045776367","62.27000045776367","Z","1999-10-13T00:00:00Z","","0" +"NM-21500","203.27999877929688","203.27999877929688","","2015-09-17T00:00:00Z","","0" +"NM-02740","89.1500015258789","89.1500015258789","","1993-01-06T00:00:00Z","","0" +"NM-02538","10.300000190734863","10.300000190734863","","1985-02-18T00:00:00Z","","0" +"NM-21515","94.88999938964844","94.88999938964844","","1961-08-08T00:00:00Z","","0" +"NM-01247","48.22999954223633","48.22999954223633","","1994-01-20T00:00:00Z","","0" +"UC-0034","98.19000244140625","98.19000244140625","","2005-09-13T00:00:00Z","","0" +"SB-0299","137.80999755859375","137.80999755859375","","2017-01-30T00:00:00Z","","0" +"NM-06781","50.380001068115234","50.380001068115234","","1970-12-09T00:00:00Z","","0" +"NM-05645","85.3499984741211","85.3499984741211","","1959-08-10T00:00:00Z","","0" +"NM-28259","162.8800048828125","162.8800048828125","","1963-09-05T00:00:00Z","","0" +"NM-02751","25.329999923706055","25.329999923706055","","2004-01-13T00:00:00Z","","0" +"NM-04632","10.899999618530273","10.899999618530273","","1977-09-15T00:00:00Z","","0" +"NM-28251","76.33999633789062","76.33999633789062","","1990-09-05T00:00:00Z","","0" +"NM-17618","14.40999984741211","14.40999984741211","","1954-09-21T00:00:00Z","","0" +"NM-02207","9.800000190734863","9.800000190734863","","1962-04-15T00:00:00Z","","0" +"NM-00353","69.54000091552734","69.54000091552734","","1957-06-06T00:00:00Z","","0" +"NM-11064","329.3800048828125","329.3800048828125","","1974-01-28T00:00:00Z","","0" +"NM-15528","79.41999816894531","79.41999816894531","","1970-02-09T00:00:00Z","","0" +"NM-05206","9.020000457763672","9.020000457763672","","2011-06-21T00:00:00Z","","0" +"NM-05501","101.55000305175781","101.55000305175781","","1974-02-20T00:00:00Z","","0" +"NM-24216","20.020000457763672","20.020000457763672","Z","2012-02-28T00:00:00Z","","0" +"NM-10756","43.56999969482422","43.56999969482422","","1943-03-29T00:00:00Z","","0" +"NM-23494","7.579999923706055","7.579999923706055","","1975-06-05T00:00:00Z","","0" +"NM-01201","31.170000076293945","31.170000076293945","","2002-09-04T00:00:00Z","","0" +"NM-03330","23.239999771118164","23.239999771118164","","1994-04-07T00:00:00Z","","0" +"NM-01871","285.3800048828125","285.3800048828125","","1994-02-09T00:00:00Z","","0" +"NM-21504","7.420000076293945","7.420000076293945","","2010-04-01T00:00:00Z","","0" +"NM-12692","-2.5","-2.5","","1909-12-15T00:00:00Z","","0" +"DE-0066","202","199.3699951171875","","2000-09-27T00:00:00Z","","2.630000114440918" +"SB-0442","171","171","","2006-09-05T00:00:00Z","","0" +"NM-27930","173.83999633789062","173.83999633789062","","1979-12-06T00:00:00Z","","0" +"NM-14792","43.58000183105469","43.58000183105469","","1962-01-03T00:00:00Z","","0" +"NM-01523","87.55000305175781","87.55000305175781","","1992-02-04T00:00:00Z","","0" +"NM-28257","8.84000015258789","8.84000015258789","","2005-09-15T00:00:00Z","","0" +"NM-02054","8.800000190734863","8.800000190734863","","1992-02-25T00:00:00Z","","0" +"NM-14419","99","99","","1977-04-25T00:00:00Z","","0" +"BC-0014","73.22000122070312","73.22000122070312","","2015-09-04T00:00:00Z","","0" +"DE-0070","201.63999938964844","199.7899932861328","","2001-10-29T00:00:00Z","","1.850000023841858" +"NM-17747","15.930000305175781","15.930000305175781","","1947-01-22T00:00:00Z","","0" +"NM-02265","247.75","247.75","","1999-12-13T00:00:00Z","","0" +"NM-00643","108.97000122070312","108.97000122070312","S","2010-12-03T00:00:00Z","","0" +"NM-03425","12.380000114440918","12.380000114440918","Z","2008-08-27T00:00:00Z","","0" +"NM-28259","126.47000122070312","126.47000122070312","","2000-05-15T00:00:00Z","","0" +"NM-12597","79.12999725341797","79.12999725341797","P","1946-05-15T00:00:00Z","","0" +"NM-11920","1.3899999856948853","1.3899999856948853","","1942-04-06T00:00:00Z","","0" +"NM-11318","16.670000076293945","16.670000076293945","","1976-02-17T00:00:00Z","","0" +"NM-11318","15.899999618530273","15.899999618530273","","1975-07-15T00:00:00Z","","0" +"EB-265","144.1999969482422","144.1999969482422","","2007-12-05T00:00:00Z","","0" +"NM-26009","89.23999786376953","89.23999786376953","","1976-09-29T00:00:00Z","","0" +"NM-21819","21.770000457763672","21.770000457763672","","1957-11-14T00:00:00Z","","0" +"NM-14028","-65.68000030517578","-65.68000030517578","","1907-03-14T00:00:00Z","","0" +"NM-13969","-9.65999984741211","-9.65999984741211","","1906-03-05T00:00:00Z","","0" +"NM-11388","40.22999954223633","40.22999954223633","","1943-09-28T00:00:00Z","","0" +"NM-28259","122.62000274658203","122.62000274658203","","1995-07-05T00:00:00Z","","0" +"NM-06027","69.33000183105469","69.33000183105469","","1952-11-06T00:00:00Z","","0" +"NM-14351","589.3599853515625","589.3599853515625","","1982-10-20T00:00:00Z","","0" +"TV-275","251.5500030517578","249.25","","2005-09-08T00:00:00Z","","2.299999952316284" +"NM-11928","-1.149999976158142","-1.149999976158142","","1959-02-05T00:00:00Z","","0" +"NM-01875","135.72000122070312","135.72000122070312","","1953-03-20T00:00:00Z","","0" +"AB-0105","415.1199951171875","415.1199951171875","","2008-10-17T00:00:00Z","","" +"NM-02657","73.04000091552734","73.04000091552734","","1979-02-21T00:00:00Z","","0" +"SB-0299","112.19999694824219","112.19999694824219","","1992-12-25T00:00:00Z","","0" +"NM-01074","40.5099983215332","40.5099983215332","","2002-02-28T00:00:00Z","","0" +"NM-03405","11.699999809265137","11.699999809265137","","2005-09-07T00:00:00Z","","0" +"NM-13916","-21.790000915527344","-21.790000915527344","","1905-06-12T00:00:00Z","","0" +"NM-11155","78.1500015258789","78.1500015258789","","1991-03-12T00:00:00Z","","0" +"NM-02367","10.119999885559082","10.119999885559082","","1977-01-27T00:00:00Z","","0" +"BC-0161","79.55000305175781","79.55000305175781","","2018-09-19T00:00:00Z","","0" +"BC-0066","98.0999984741211","98.0999984741211","","2015-03-09T00:00:00Z","","0" +"NM-07881","12.069999694824219","12.069999694824219","","1959-03-10T00:00:00Z","","0" +"NM-04704","66.7300033569336","66.7300033569336","","1948-11-17T00:00:00Z","","0" +"NM-28254","54.709999084472656","54.709999084472656","","1973-11-05T00:00:00Z","","0" +"SB-0748","378.80999755859375","378.80999755859375","","1985-01-03T00:00:00Z","","0" +"NM-02256","8.5","8.5","","1954-02-15T00:00:00Z","","0" +"NM-13561","3.5","3.5","","1958-03-10T00:00:00Z","","0" +"NM-02155","109.45999908447266","109.45999908447266","","1967-02-03T00:00:00Z","","0" +"NM-00917","30.06999969482422","30.06999969482422","","1967-01-31T00:00:00Z","","0" +"NM-09832","51.380001068115234","51.380001068115234","","1956-08-28T00:00:00Z","","0" +"NM-11263","41.5","41.5","","1938-11-15T00:00:00Z","","0" +"NM-16486","112.19000244140625","112.19000244140625","","1977-01-19T00:00:00Z","","0" +"NM-02518","5.400000095367432","5.400000095367432","","1988-09-15T00:00:00Z","","0" +"NM-28259","71.81999969482422","71.81999969482422","","1993-01-15T00:00:00Z","","0" +"NM-03810","305.70001220703125","305.70001220703125","P","1956-04-30T00:00:00Z","","0" +"NM-00987","281.19000244140625","281.19000244140625","","1955-01-25T00:00:00Z","","0" +"NM-01844","5.400000095367432","5.400000095367432","","1997-02-25T00:00:00Z","","0" +"NM-02254","327.3999938964844","327.3999938964844","","1990-01-30T00:00:00Z","","0" +"EB-170","111","108.30000305175781","","1989-06-30T00:00:00Z","","2.700000047683716" +"NM-03186","80.75","80.75","","1956-02-13T00:00:00Z","","0" +"NM-21920","8.84000015258789","8.84000015258789","","1965-08-06T00:00:00Z","","0" +"NM-02560","117.55000305175781","117.55000305175781","","1976-08-01T00:00:00Z","","0" +"NM-06720","66.30999755859375","66.30999755859375","","1957-09-13T00:00:00Z","","0" +"NM-00946","320.4800109863281","320.4800109863281","","2003-02-22T00:00:00Z","","0" +"NM-20063","70.79000091552734","70.79000091552734","","1977-03-02T00:00:00Z","","0" +"NM-00680","55.47999954223633","55.47999954223633","","1974-08-27T00:00:00Z","","0" +"NM-01844","7.900000095367432","7.900000095367432","","1990-02-01T00:00:00Z","","0" +"EB-276","400","400","P","1989-03-31T00:00:00Z","","0" +"WL-0123","113.44000244140625","111.24000549316406","","2018-06-20T00:00:00Z","0001-01-01T15:42:00Z","2.200000047683716" +"NM-12002","67.44999694824219","67.44999694824219","","1968-01-03T00:00:00Z","","0" +"WL-0091","83.20833587646484","80.43833923339844","","2004-04-16T00:00:00Z","","2.7699999809265137" +"NM-02669","48.400001525878906","48.400001525878906","","1967-08-01T00:00:00Z","","0" +"NM-10737","30","30","","1963-01-09T00:00:00Z","","0" +"NM-14176","103.02999877929688","103.02999877929688","","1991-01-24T00:00:00Z","","0" +"NM-02505","122.08999633789062","122.08999633789062","","2005-02-03T00:00:00Z","","0" +"NM-06268","12.5","12.5","","1961-11-15T00:00:00Z","","0" +"NM-02740","87.79000091552734","87.79000091552734","","1991-02-14T00:00:00Z","","0" +"NM-27635","23.989999771118164","23.989999771118164","","1968-01-10T00:00:00Z","","0" +"TC-240","345.0899963378906","343.5400085449219","","2015-06-02T00:00:00Z","","1.5499999523162842" +"NM-28253","37.040000915527344","37.040000915527344","","2008-08-15T00:00:00Z","","0" +"NM-14518","143.63999938964844","143.63999938964844","","1990-11-29T00:00:00Z","","0" +"EB-483","77","77","","1989-02-28T00:00:00Z","","0" +"NM-00583","43.060001373291016","43.060001373291016","","1993-07-15T00:00:00Z","","0" +"NM-00618","51.599998474121094","51.599998474121094","","1995-01-05T00:00:00Z","","0" +"NM-07337","101.3499984741211","101.3499984741211","","1978-08-17T00:00:00Z","","0" +"NM-28259","144.80999755859375","144.80999755859375","","1993-07-25T00:00:00Z","","0" +"NM-18326","250.3300018310547","250.3300018310547","","1987-01-09T00:00:00Z","","0" +"SO-0248","10.920000076293945","10.329999923706055","","2020-06-10T00:00:00Z","0001-01-01T09:37:00Z","0.5899999737739563" +"NM-02527","11.899999618530273","11.899999618530273","","1997-01-15T00:00:00Z","","0" +"NM-13107","48.41999816894531","48.41999816894531","","1949-02-04T00:00:00Z","","0" +"SB-0299","103.31999969482422","103.31999969482422","","1968-01-15T00:00:00Z","","0" +"NM-11620","76.23999786376953","76.23999786376953","","1946-01-23T00:00:00Z","","0" +"NM-12114","14.460000038146973","14.460000038146973","","1940-01-23T00:00:00Z","","0" +"NM-00525","68.8499984741211","68.8499984741211","","1968-01-04T00:00:00Z","","0" +"NM-14357","25.93000030517578","25.93000030517578","","1945-01-12T00:00:00Z","","0" +"NM-06219","11.1899995803833","11.1899995803833","","1992-08-26T00:00:00Z","","0" +"NM-08476","20.860000610351562","20.860000610351562","","2014-05-17T00:00:00Z","","0" +"NM-02719","85.70999908447266","85.70999908447266","R","1963-09-04T00:00:00Z","","0" +"NM-13162","12.430000305175781","12.430000305175781","","1949-02-04T00:00:00Z","","0" +"NM-02494","36","36","","1995-02-16T00:00:00Z","","0" +"NM-02092","65.95999908447266","65.95999908447266","","1953-02-02T00:00:00Z","","0" +"NM-01573","29.809999465942383","29.809999465942383","","1974-02-07T00:00:00Z","","0" +"NM-01824","121.76000213623047","121.76000213623047","","1996-01-24T00:00:00Z","","0" +"NM-05635","22.209999084472656","22.209999084472656","","1947-11-07T00:00:00Z","","0" +"NM-20499","5.550000190734863","5.550000190734863","","1943-02-03T00:00:00Z","","0" +"NM-05368","82.69000244140625","82.69000244140625","","1951-11-24T00:00:00Z","","0" +"NM-12748","44.06999969482422","44.06999969482422","","1938-04-02T00:00:00Z","","0" +"EB-387","99.08000183105469","97.84000396728516","","2002-01-01T00:00:00Z","","1.2400000095367432" +"NM-11643","87.45999908447266","87.45999908447266","","1942-06-23T00:00:00Z","","0" +"NM-00237","17.18000030517578","17.18000030517578","","1983-01-03T00:00:00Z","","0" +"NM-02306","30.549999237060547","30.549999237060547","","1998-02-05T00:00:00Z","","0" +"NM-14700","79.44000244140625","79.44000244140625","","1960-05-16T00:00:00Z","","0" +"WL-0091","35.91666793823242","33.14666748046875","","1995-03-01T00:00:00Z","","2.7699999809265137" +"BC-0223","303.0299987792969","303.0299987792969","","2020-04-26T00:00:00Z","","0" +"NM-07782","20.610000610351562","20.610000610351562","","1981-01-17T00:00:00Z","","0" +"NM-28023","485.8500061035156","485.8500061035156","S","2015-04-26T00:00:00Z","","0" +"NM-03388","21.389999389648438","21.389999389648438","","1968-01-17T00:00:00Z","","0" +"NM-02285","5.670000076293945","5.670000076293945","","2000-10-04T00:00:00Z","","0" +"NM-03368","78.0199966430664","78.0199966430664","","1973-03-22T00:00:00Z","","0" +"NM-28258","102.44000244140625","102.44000244140625","","1994-02-05T00:00:00Z","","0" +"NM-20254","39.900001525878906","39.900001525878906","","1947-01-24T00:00:00Z","","0" +"NM-02520","5.699999809265137","5.699999809265137","","1958-11-15T00:00:00Z","","0" +"EB-161","416","414.75","","1987-04-30T00:00:00Z","","1.25" +"NM-07243","47.18000030517578","47.18000030517578","","1986-03-21T00:00:00Z","","0" +"NM-00691","25.34000015258789","25.34000015258789","","2013-05-09T00:00:00Z","","0" +"NM-06676","11.100000381469727","11.100000381469727","","1966-10-15T00:00:00Z","","0" +"NM-17322","36.36000061035156","36.36000061035156","","1946-01-23T00:00:00Z","","0" +"NM-20403","227.38999938964844","227.38999938964844","","1968-02-01T00:00:00Z","","0" +"NM-11767","9.430000305175781","9.430000305175781","","1942-01-21T00:00:00Z","","0" +"NM-08783","159.22999572753906","159.22999572753906","","1958-09-25T00:00:00Z","","0" +"SB-0288","109.8499984741211","109.8499984741211","","1962-07-10T00:00:00Z","","0" +"NM-16920","36.18000030517578","36.18000030517578","","1967-01-17T00:00:00Z","","0" +"NM-02256","4.599999904632568","4.599999904632568","","1948-07-15T00:00:00Z","","0" +"NM-28256","139.99000549316406","139.99000549316406","","2015-10-15T00:00:00Z","","0" +"NM-02620","13.199999809265137","13.199999809265137","","1983-02-15T00:00:00Z","","0" +"NM-02366","84.9000015258789","84.9000015258789","","1993-01-06T00:00:00Z","","0" +"NM-28254","127.9000015258789","127.9000015258789","","1994-08-15T00:00:00Z","","0" +"NM-22669","99.18000030517578","99.18000030517578","","2006-05-03T00:00:00Z","","0" +"AB-0077","6.110000133514404","6.110000133514404","","2009-06-29T00:00:00Z","","" +"NM-00045","223.52000427246094","223.52000427246094","","1976-01-14T00:00:00Z","","0" +"NM-02484","69.56999969482422","69.56999969482422","","1988-07-21T00:00:00Z","","0" +"NM-09081","56.56999969482422","56.56999969482422","","1950-04-01T00:00:00Z","","0" +"NM-11029","118.30000305175781","118.30000305175781","","1966-02-15T00:00:00Z","","0" +"NM-13118","14.039999961853027","14.039999961853027","","1957-01-29T00:00:00Z","","0" +"NM-14802","102.38999938964844","102.38999938964844","","1968-09-05T00:00:00Z","","0" +"NM-28254","34.790000915527344","34.790000915527344","","1980-12-05T00:00:00Z","","0" +"NM-27475","13.479999542236328","13.479999542236328","","2006-02-07T00:00:00Z","","0" +"NM-13715","-2.0399999618530273","-2.0399999618530273","","1910-12-16T00:00:00Z","","0" +"NM-02990","57.58000183105469","57.58000183105469","","1996-01-10T00:00:00Z","","0" +"DE-0242","110.11000061035156","110.11000061035156","","2006-02-14T00:00:00Z","","0" +"NM-19782","70.75","70.75","","1954-07-27T00:00:00Z","","0" +"NM-17234","59.880001068115234","59.880001068115234","","1958-01-27T00:00:00Z","","0" +"NM-02831","20.969999313354492","20.969999313354492","","1950-04-01T00:00:00Z","","0" +"NM-03382","83.2699966430664","83.2699966430664","","1957-02-07T00:00:00Z","","0" +"BC-0156","151.5","151.5","","1991-10-16T00:00:00Z","","0" +"NM-13425","391.510009765625","391.510009765625","","1975-09-01T00:00:00Z","","0" +"NM-28254","121.31999969482422","121.31999969482422","","1974-04-25T00:00:00Z","","0" +"EB-024","48.70000076293945","46.10000228881836","","1993-07-01T00:00:00Z","","2.5999999046325684" +"NM-22296","29","29","T","1984-09-21T00:00:00Z","","0" +"NM-28021","502.29998779296875","502.29998779296875","S","2015-04-17T00:00:00Z","","0" +"NM-28255","125.19999694824219","125.19999694824219","","1998-08-25T00:00:00Z","","0" +"NM-20018","38.400001525878906","38.400001525878906","","1958-02-11T00:00:00Z","","0" +"NM-08523","374.510009765625","374.510009765625","","1974-01-10T00:00:00Z","","0" +"NM-00384","62.2400016784668","62.2400016784668","","1990-01-03T00:00:00Z","","0" +"NM-28254","8","8","","1995-01-25T00:00:00Z","","0" +"NM-21552","370.1499938964844","370.1499938964844","","1993-08-03T00:00:00Z","","0" +"NM-00304","39.31999969482422","39.31999969482422","","1995-06-21T00:00:00Z","","0" +"NM-00804","103.62999725341797","103.62999725341797","","2009-09-10T00:00:00Z","","0" +"NM-13594","39.79999923706055","39.79999923706055","","1967-08-14T00:00:00Z","","0" +"NM-01902","120.9800033569336","120.9800033569336","","1980-01-10T00:00:00Z","","0" +"NM-03380","55.18000030517578","55.18000030517578","","1992-01-27T00:00:00Z","","0" +"NM-13528","1.4900000095367432","1.4900000095367432","","1957-12-02T00:00:00Z","","0" +"NM-28259","66.13999938964844","66.13999938964844","","1951-10-05T00:00:00Z","","0" +"NM-11869","21.34000015258789","21.34000015258789","","1944-07-20T00:00:00Z","","0" +"NM-06177","154.5800018310547","154.5800018310547","","1982-01-25T00:00:00Z","","0" +"WL-0086","37.29166793823242","35.53166961669922","","1994-05-17T00:00:00Z","","1.7599999904632568" +"NM-20133","92.68000030517578","92.68000030517578","","1952-02-19T00:00:00Z","","0" +"NM-26332","17","17","","1992-08-11T00:00:00Z","","0" +"NM-14151","239.2100067138672","239.2100067138672","","1943-05-11T00:00:00Z","","0" +"NM-00585","38.72999954223633","38.72999954223633","","1968-01-04T00:00:00Z","","0" +"NM-28254","114.0999984741211","114.0999984741211","","1989-04-15T00:00:00Z","","0" +"NM-01940","139.8699951171875","139.8699951171875","","1976-01-22T00:00:00Z","","0" +"NM-24981","144.33999633789062","144.33999633789062","","1962-10-17T00:00:00Z","","0" +"NM-13144","-32.81999969482422","-32.81999969482422","","1960-05-18T00:00:00Z","","0" +"AB-0124","542.97998046875","542.97998046875","","1999-02-08T00:00:00Z","","" +"NM-09004","66.1500015258789","66.1500015258789","","1982-02-11T00:00:00Z","","0" +"NM-01891","68.36000061035156","68.36000061035156","","2010-07-15T00:00:00Z","","0" +"NM-01912","11.739999771118164","11.739999771118164","","2004-01-28T00:00:00Z","","0" +"EB-677","198.89999389648438","198.89999389648438","","1997-01-13T00:00:00Z","","0" +"NM-08541","339.7300109863281","339.7300109863281","R","1960-11-17T00:00:00Z","","0" +"NM-00324","49.970001220703125","49.970001220703125","","1976-01-28T00:00:00Z","","0" +"AB-0211","166.13999938964844","166.13999938964844","","1999-04-01T00:00:00Z","","0" +"DE-0332","28.670000076293945","28.670000076293945","","2014-08-06T00:00:00Z","","0" +"NM-02971","97.83999633789062","97.83999633789062","","1977-07-20T00:00:00Z","","0" +"NM-00969","292.7099914550781","292.7099914550781","","1954-03-03T00:00:00Z","","0" +"NM-02700","8.100000381469727","8.100000381469727","","1970-01-12T00:00:00Z","","0" +"NM-02599","22.049999237060547","22.049999237060547","","2011-01-25T00:00:00Z","","0" +"NM-02720","55.29999923706055","55.29999923706055","","1964-01-05T00:00:00Z","","0" +"NM-05572","78.23999786376953","78.23999786376953","","1959-08-03T00:00:00Z","","0" +"NM-15880","136.72999572753906","136.72999572753906","","1964-10-27T00:00:00Z","","0" +"NM-00962","321.8800048828125","321.8800048828125","","1967-01-19T00:00:00Z","","0" +"NM-16675","18.09000015258789","18.09000015258789","","1954-05-22T00:00:00Z","","0" +"NM-01516","171.1199951171875","171.1199951171875","","2010-03-15T00:00:00Z","","0" +"NM-01808","328.2799987792969","328.2799987792969","","1999-01-26T00:00:00Z","","0" +"NM-28258","167.00999450683594","167.00999450683594","","1988-08-03T00:00:00Z","","0" +"NM-05762","39.15999984741211","39.15999984741211","","1946-05-01T00:00:00Z","","0" +"NM-12890","28.479999542236328","28.479999542236328","","1976-04-07T00:00:00Z","","0" +"NM-12353","29.989999771118164","29.989999771118164","","1936-10-16T00:00:00Z","","0" +"NM-11252","166.52000427246094","166.52000427246094","","1994-03-02T00:00:00Z","","0" +"DE-0106","40.29999923706055","40.29999923706055","","2011-02-07T00:00:00Z","","0" +"SM-0023","203","203","","2007-10-16T00:00:00Z","","0" +"NM-02702","23.200000762939453","23.200000762939453","","1983-10-05T00:00:00Z","","0" +"NM-02831","41.099998474121094","41.099998474121094","","2001-09-25T00:00:00Z","","0" +"NM-17716","8.130000114440918","8.130000114440918","","1941-03-03T00:00:00Z","","0" +"NM-19784","70.37000274658203","70.37000274658203","","1956-03-28T00:00:00Z","","0" +"NM-02765","95.66000366210938","95.66000366210938","","1988-01-07T00:00:00Z","","0" +"NM-02175","119.20999908447266","119.20999908447266","","1955-11-16T00:00:00Z","","0" +"NM-22425","15.3100004196167","15.3100004196167","","1993-03-04T00:00:00Z","","0" +"NM-01875","165.6300048828125","165.6300048828125","","1971-01-19T00:00:00Z","","0" +"NM-01872","7","7","","1990-05-15T00:00:00Z","","0" +"NM-21960","42.349998474121094","42.349998474121094","R","1990-12-20T00:00:00Z","","0" +"NM-11626","22.239999771118164","22.239999771118164","","1944-01-24T00:00:00Z","","0" +"UC-0044","219","219","","2008-02-18T00:00:00Z","","0" +"NM-00669","6.489999771118164","6.489999771118164","","2008-09-03T00:00:00Z","","0" +"NM-28250","95.7300033569336","95.7300033569336","","2012-10-15T00:00:00Z","","0" +"NM-17716","4.900000095367432","4.900000095367432","","1948-05-06T00:00:00Z","","0" +"NM-01908","118.68000030517578","118.68000030517578","","1957-01-24T00:00:00Z","","0" +"NM-05641","88.77999877929688","88.77999877929688","","1945-01-05T00:00:00Z","","0" +"NM-02207","9.399999618530273","9.399999618530273","","1990-02-01T00:00:00Z","","0" +"NM-01932","353.57000732421875","353.57000732421875","","1987-12-28T00:00:00Z","","0" +"NM-02311","164.1999969482422","164.1999969482422","","2002-07-11T00:00:00Z","","0" +"NM-02768","86.79000091552734","86.79000091552734","","1948-01-26T00:00:00Z","","0" +"NM-13982","-9.949999809265137","-9.949999809265137","","1911-10-05T00:00:00Z","","0" +"NM-25978","13","13","","1960-11-01T00:00:00Z","","0" +"DE-0253","83.62999725341797","83.62999725341797","","2019-06-24T00:00:00Z","","0" +"NM-28251","88.9800033569336","88.9800033569336","","1975-04-25T00:00:00Z","","0" +"NM-28253","41.34000015258789","41.34000015258789","","1985-04-25T00:00:00Z","","0" +"NM-02527","8.600000381469727","8.600000381469727","","1981-09-15T00:00:00Z","","0" +"NM-07159","84.44999694824219","84.44999694824219","","2005-08-02T00:00:00Z","","0" +"AB-0200","194.41000366210938","194.41000366210938","","1999-03-01T00:00:00Z","","" +"LC-036","5.050000190734863","11.149999618530273","","2017-04-06T00:00:00Z","0001-01-01T09:52:00Z","-6.099999904632568" +"NM-02017","6.400000095367432","6.400000095367432","","1948-06-15T00:00:00Z","","0" +"NM-03990","334.7799987792969","334.7799987792969","","1988-02-04T00:00:00Z","","0" +"MI-0037","10.649999618530273","10.649999618530273","","1947-09-22T00:00:00Z","","0" +"NM-02471","139.1300048828125","139.1300048828125","","1992-12-04T00:00:00Z","","0" +"NM-28256","291.3900146484375","291.3900146484375","","2012-07-25T00:00:00Z","","0" +"BC-0263","","247.5","","2020-11-08T00:00:00Z","","1.809999942779541" +"NM-17257","61.47999954223633","61.47999954223633","","1957-01-19T00:00:00Z","","0" +"NM-16836","27.639999389648438","27.639999389648438","","1964-01-15T00:00:00Z","","0" +"NM-05516","10.800000190734863","10.800000190734863","","1963-08-15T00:00:00Z","","0" +"NM-13475","63.619998931884766","63.619998931884766","","1976-06-23T00:00:00Z","","0" +"NM-27571","22.889999389648438","22.889999389648438","","1965-11-01T00:00:00Z","","0" +"NM-23336","113.79000091552734","113.79000091552734","","1956-04-17T00:00:00Z","","0" +"NM-11279","57.369998931884766","57.369998931884766","R","1955-11-29T00:00:00Z","","0" +"NM-25762","9.329999923706055","9.329999923706055","","1985-09-26T00:00:00Z","","0" +"NM-05026","17.290000915527344","17.290000915527344","","1984-06-13T00:00:00Z","","0" +"NM-08126","16.520000457763672","16.520000457763672","","1945-01-12T00:00:00Z","","0" +"NM-00956","342.17999267578125","342.17999267578125","","1983-01-09T00:00:00Z","","0" +"NM-00983","337.7799987792969","337.7799987792969","S","1997-01-23T00:00:00Z","","0" +"NM-14535","92.9800033569336","92.9800033569336","","1978-10-05T00:00:00Z","","0" +"NM-00686","60.779998779296875","60.779998779296875","","1982-10-12T00:00:00Z","","0" +"SB-0299","146.80999755859375","146.80999755859375","","2014-05-30T00:00:00Z","","0" +"SO-0178","8.859999656677246","8.719999313354492","","2018-11-29T00:00:00Z","0001-01-01T15:41:00Z","0.14000000059604645" +"NM-13318","-67.98999786376953","-67.98999786376953","","1914-01-02T00:00:00Z","","0" +"NM-10631","60.540000915527344","60.540000915527344","","1966-03-01T00:00:00Z","","0" +"NM-22111","7.820000171661377","7.820000171661377","Z","2011-11-03T00:00:00Z","","0" +"NM-02279","23.329999923706055","23.329999923706055","","2002-02-19T00:00:00Z","","0" +"AB-0004","420.80999755859375","420.80999755859375","","2002-10-30T00:00:00Z","","" +"NM-20721","21.600000381469727","21.600000381469727","","1941-07-11T00:00:00Z","","0" +"SO-0264","2.7300000190734863","1.5800000429153442","","2018-04-11T00:00:00Z","0001-01-01T09:55:00Z","1.149999976158142" +"WL-0123","110","107.80000305175781","P","2024-08-06T00:00:00Z","0001-01-01T12:45:00Z","2.200000047683716" +"EB-220","129.2899932861328","129.2899932861328","","1989-04-14T00:00:00Z","","0" +"NM-02797","6.75","6.75","","1973-10-23T00:00:00Z","","0" +"UC-0033","92.27999877929688","92.27999877929688","","1986-09-09T00:00:00Z","","0" +"NM-02279","40.02000045776367","40.02000045776367","","2012-01-17T00:00:00Z","","0" +"NM-00149","38.20000076293945","38.20000076293945","","1996-03-14T00:00:00Z","","0" +"NM-22558","31.3799991607666","31.3799991607666","","1993-06-17T00:00:00Z","","0" +"BC-0058","","175.5","","2023-03-24T00:00:00Z","","1.340000033378601" +"NM-16359","141.38999938964844","141.38999938964844","","1977-01-11T00:00:00Z","","0" +"NM-00198","18.399999618530273","18.399999618530273","","1995-07-19T00:00:00Z","","0" +"EB-416","65.41000366210938","65.41000366210938","Z","1982-12-31T00:00:00Z","","0" +"EB-209","65.88999938964844","64.63999938964844","","1977-04-06T00:00:00Z","","1.25" +"NM-08189","8.899999618530273","8.899999618530273","","1960-04-15T00:00:00Z","","0" +"NM-00643","109.54000091552734","109.54000091552734","","1977-12-01T00:00:00Z","","0" +"NM-00587","111.16000366210938","111.16000366210938","","2009-12-16T00:00:00Z","","0" +"NM-08223","69.12999725341797","69.12999725341797","","1984-02-29T00:00:00Z","","0" +"NM-06089","131.1199951171875","131.1199951171875","","1973-03-22T00:00:00Z","","0" +"NM-01822","6.5","6.5","","1993-01-29T00:00:00Z","","0" +"SB-0299","139.85000610351562","139.85000610351562","","2020-03-30T00:00:00Z","","0" +"NM-03337","10.140000343322754","10.140000343322754","","1989-02-28T00:00:00Z","","0" +"NM-17032","56.869998931884766","56.869998931884766","","1982-03-12T00:00:00Z","","0" +"NM-02209","101.25","101.25","","1996-02-22T00:00:00Z","","0" +"NM-28015","498.7200012207031","498.7200012207031","S","2015-05-26T00:00:00Z","","0" +"NM-13118","10.079999923706055","10.079999923706055","","1977-12-20T00:00:00Z","","0" +"NM-03307","80.63999938964844","80.63999938964844","","1959-02-05T00:00:00Z","","0" +"TB-0084","45.849998474121094","44.349998474121094","","2020-12-15T00:00:00Z","0001-01-01T11:50:00Z","1.5" +"NM-28258","111.1500015258789","111.1500015258789","","1991-11-25T00:00:00Z","","0" +"NM-11643","87.55000305175781","87.55000305175781","","1941-08-11T00:00:00Z","","0" +"NM-11741","89.62000274658203","89.62000274658203","","1950-01-21T00:00:00Z","","0" +"NM-03240","125.04000091552734","125.04000091552734","","1984-01-10T00:00:00Z","","0" +"NM-06408","13.670000076293945","13.670000076293945","","1969-01-07T00:00:00Z","","0" +"NM-02006","13.100000381469727","13.100000381469727","","1957-02-15T00:00:00Z","","0" +"NM-00486","67.6500015258789","67.6500015258789","","1982-01-06T00:00:00Z","","0" +"NM-28011","490.1099853515625","490.1099853515625","S","2015-05-25T00:00:00Z","","0" +"NM-28257","32.849998474121094","32.849998474121094","","2014-06-16T00:00:00Z","","0" +"DE-0246","108.38999938964844","108.38999938964844","","2010-09-20T00:00:00Z","","0" +"NM-27486","25.209999084472656","25.209999084472656","","1959-01-05T00:00:00Z","","0" +"NM-26661","-2.3299999237060547","-2.3299999237060547","","2013-02-28T00:00:00Z","","0" +"NM-01872","8.100000381469727","8.100000381469727","","1984-04-15T00:00:00Z","","0" +"NM-09080","25.15999984741211","25.15999984741211","","1950-01-09T00:00:00Z","","0" +"NM-04534","86.44000244140625","86.44000244140625","","1960-01-07T00:00:00Z","","0" +"NM-01898","49.47999954223633","49.47999954223633","","2002-01-17T00:00:00Z","","0" +"NM-02384","8.699999809265137","8.699999809265137","","1966-07-15T00:00:00Z","","0" +"PC-102","567.5","565.5","","2014-08-15T00:00:00Z","","2" +"SA-0020","30.559999465942383","29.35999870300293","","2011-03-29T00:00:00Z","","1.2000000476837158" +"NM-01912","20.700000762939453","20.700000762939453","","2015-02-11T00:00:00Z","","0" +"NM-08803","25","25","","1957-04-23T00:00:00Z","","0" +"NM-01833","324.2900085449219","324.2900085449219","","2000-01-13T00:00:00Z","","0" +"DE-0240","106.83000183105469","106.83000183105469","","2013-03-01T00:00:00Z","","0" +"NM-23934","73.19999694824219","73.19999694824219","","1966-12-22T00:00:00Z","","0" +"NM-01754","66.3499984741211","66.3499984741211","","1969-01-12T00:00:00Z","","0" +"NM-21584","5.21999979019165","5.21999979019165","Z","2006-05-08T00:00:00Z","","0" +"NM-23093","61.720001220703125","61.720001220703125","","1949-12-14T00:00:00Z","","0" +"NM-09562","75.52999877929688","75.52999877929688","","1989-01-24T00:00:00Z","","0" +"NM-28256","158.6199951171875","158.6199951171875","","1999-03-25T00:00:00Z","","0" +"NM-19146","351.20001220703125","351.20001220703125","","1960-03-03T00:00:00Z","","0" +"NM-17716","4.849999904632568","4.849999904632568","","1947-12-13T00:00:00Z","","0" +"EB-238","176.32000732421875","176.32000732421875","","2010-08-18T00:00:00Z","","0" +"NM-19456","103.5999984741211","103.5999984741211","P","1965-08-18T00:00:00Z","","0" +"NM-03972","256.8500061035156","256.8500061035156","P","1952-11-12T00:00:00Z","","0" +"NM-16345","23.5","23.5","","1967-01-10T00:00:00Z","","0" +"NM-21887","4.929999828338623","4.929999828338623","Z","2010-08-18T00:00:00Z","","0" +"NM-05920","78.81999969482422","78.81999969482422","","1961-01-07T00:00:00Z","","0" +"NM-17116","34.619998931884766","34.619998931884766","P","1971-12-16T00:00:00Z","","0" +"NM-25649","161.2899932861328","161.2899932861328","","1974-07-27T00:00:00Z","","0" +"NM-02062","382.4700012207031","382.4700012207031","","1960-07-20T00:00:00Z","","0" +"AB-0066","167.33999633789062","167.33999633789062","","2011-03-31T00:00:00Z","","" +"NM-08753","-31.030000686645508","-31.030000686645508","","1907-01-28T00:00:00Z","","0" +"NM-21826","","","W","1990-07-18T00:00:00Z","","0" +"NM-01796","5.5","5.5","","1966-04-15T00:00:00Z","","0" +"UC-0114","268.1700134277344","268.1700134277344","","1991-01-28T00:00:00Z","","0" +"SB-0442","163.5","163.5","","2007-02-28T00:00:00Z","","0" +"AR-0059","30.049999237060547","28.75","","2017-05-30T00:00:00Z","0001-01-01T16:18:00Z","1.2999999523162842" +"NM-21879","3.990000009536743","3.990000009536743","Z","2010-08-19T00:00:00Z","","0" +"NM-05793","36.959999084472656","36.959999084472656","","1932-08-04T00:00:00Z","","0" +"NM-06676","14.300000190734863","14.300000190734863","","1966-04-15T00:00:00Z","","0" +"NM-17105","26.649999618530273","26.649999618530273","","1939-01-14T00:00:00Z","","0" +"NM-01204","355.1600036621094","355.1600036621094","Z","2007-10-09T00:00:00Z","","0" +"NM-02622","159.77000427246094","159.77000427246094","","1966-01-01T00:00:00Z","","0" +"DE-0111","37.9900016784668","37.9900016784668","","2010-05-20T00:00:00Z","","0" +"NM-02282","401.4700012207031","401.4700012207031","","1964-12-01T00:00:00Z","","0" +"EB-220","133.5","132.85000610351562","AA","2023-04-11T00:00:00Z","0001-01-01T10:50:00Z","0.6499999761581421" +"NM-11599","64.26000213623047","64.26000213623047","","1966-03-03T00:00:00Z","","0" +"DE-0109","41.63999938964844","41.63999938964844","","2013-05-09T00:00:00Z","","0" +"NM-17206","62.540000915527344","62.540000915527344","","1955-05-26T00:00:00Z","","0" +"NM-01239","21.8799991607666","21.8799991607666","","1985-09-01T00:00:00Z","","0" +"NM-09817","59.849998474121094","59.849998474121094","","1946-07-15T00:00:00Z","","0" +"NM-17295","29.31999969482422","29.31999969482422","","1934-01-28T00:00:00Z","","0" +"UC-0012","142.67999267578125","142.67999267578125","","2011-01-10T00:00:00Z","","0" +"NM-11019","10.649999618530273","10.649999618530273","","1949-01-20T00:00:00Z","","0" +"NM-00969","382.04998779296875","382.04998779296875","","1982-01-09T00:00:00Z","","0" +"NM-16806","32.65999984741211","32.65999984741211","","1953-01-20T00:00:00Z","","0" +"DE-0108","39.630001068115234","39.630001068115234","","2010-10-25T00:00:00Z","","0" +"NM-06192","88.2699966430664","88.2699966430664","R","1972-03-10T00:00:00Z","","0" +"AB-0190","882.6900024414062","882.6900024414062","","1989-04-28T00:00:00Z","","" +"DE-0111","38.09000015258789","38.09000015258789","","2010-03-29T00:00:00Z","","0" +"NM-17716","3.069999933242798","3.069999933242798","","1947-03-16T00:00:00Z","","0" +"NM-02407","20.3799991607666","20.3799991607666","","1941-11-11T00:00:00Z","","0" +"NM-10058","8.75","8.75","","1969-01-20T00:00:00Z","","0" +"NM-02214","152.75","152.75","","1988-01-15T00:00:00Z","","0" +"NM-02280","16.34000015258789","16.34000015258789","","1991-10-29T00:00:00Z","","0" +"NM-01311","127.73999786376953","127.73999786376953","","2006-01-20T00:00:00Z","","0" +"NM-01895","78.93000030517578","78.93000030517578","","2001-02-22T00:00:00Z","","0" +"NM-11500","116.63999938964844","116.63999938964844","","1976-02-19T00:00:00Z","","0" +"EB-163","694","692.7999877929688","","2006-09-30T00:00:00Z","","1.2000000476837158" +"SB-0299","136.11000061035156","136.11000061035156","","1998-10-10T00:00:00Z","","0" +"NM-13940","-11.109999656677246","-11.109999656677246","","1910-09-12T00:00:00Z","","0" +"NM-00313","26.329999923706055","26.329999923706055","","1996-02-01T00:00:00Z","","0" +"NM-17499","23.520000457763672","23.520000457763672","","1938-02-10T00:00:00Z","","0" +"DE-0128","44.43000030517578","44.43000030517578","","2016-05-19T00:00:00Z","","0" +"NM-06852","89.58999633789062","89.58999633789062","","2004-10-04T00:00:00Z","","0" +"SO-0184","10.890000343322754","8.970000267028809","","2016-08-09T00:00:00Z","","1.9199999570846558" +"NM-03235","49.93000030517578","49.93000030517578","","1947-09-14T00:00:00Z","","0" +"BC-0039","292.54998779296875","292.54998779296875","","2016-03-09T00:00:00Z","","0" +"NM-01948","3.200000047683716","3.200000047683716","","1992-05-15T00:00:00Z","","0" +"NM-01526","153.6999969482422","153.6999969482422","","1982-02-10T00:00:00Z","","0" +"NM-07929","37.279998779296875","37.279998779296875","R","1966-02-15T00:00:00Z","","0" +"NM-16187","135.83999633789062","135.83999633789062","","1964-02-17T00:00:00Z","","0" +"NM-02367","13.279999732971191","13.279999732971191","","1971-01-21T00:00:00Z","","0" +"NM-00297","61.0099983215332","61.0099983215332","","2004-01-08T00:00:00Z","","0" +"EB-220","127.0999984741211","127.0999984741211","","1980-04-15T00:00:00Z","","0" +"NM-01893","16.59000015258789","16.59000015258789","","2003-11-20T00:00:00Z","","0" +"NM-13827","-51.81999969482422","-51.81999969482422","","1908-11-27T00:00:00Z","","0" +"NM-02620","8.399999618530273","8.399999618530273","","1960-07-15T00:00:00Z","","0" +"NM-23750","119.62000274658203","119.62000274658203","","1965-01-20T00:00:00Z","","0" +"NM-07275","9.720000267028809","9.720000267028809","","1953-03-12T00:00:00Z","","0" +"NM-11623","52.40999984741211","52.40999984741211","","1965-02-10T00:00:00Z","","0" +"NM-10945","-21.790000915527344","-21.790000915527344","","1909-09-27T00:00:00Z","","0" +"NM-28251","64.58999633789062","64.58999633789062","","1997-06-05T00:00:00Z","","0" +"AB-0102","576.97998046875","576.97998046875","","2008-05-06T00:00:00Z","","" +"BC-0113","56.150001525878906","56.150001525878906","","2015-12-07T00:00:00Z","","0" +"NM-13135","5.289999961853027","5.289999961853027","","1979-01-24T00:00:00Z","","0" +"NM-03679","200.5800018310547","200.5800018310547","","1960-06-23T00:00:00Z","","0" +"NM-02590","154.1999969482422","154.1999969482422","","1994-02-04T00:00:00Z","","0" +"NM-02043","7.199999809265137","7.199999809265137","","2003-04-15T00:00:00Z","","0" +"NM-11409","51.349998474121094","51.349998474121094","","1966-02-17T00:00:00Z","","0" +"NM-17716","0.7699999809265137","0.7699999809265137","","1942-09-24T00:00:00Z","","0" +"AB-0210","177.72999572753906","177.72999572753906","","2015-07-02T00:00:00Z","","0" +"NM-02538","10.720000267028809","10.720000267028809","","1963-01-04T00:00:00Z","","0" +"NM-10609","18.829999923706055","18.829999923706055","","1940-01-13T00:00:00Z","","0" +"NM-11570","80.66999816894531","80.66999816894531","","1945-09-19T00:00:00Z","","0" +"NM-28254","94.5999984741211","94.5999984741211","","1953-08-25T00:00:00Z","","0" +"NM-00105","17.290000915527344","17.290000915527344","","2013-01-09T00:00:00Z","","0" +"BC-0428","","112.30000305175781","","2020-11-07T00:00:00Z","","1" +"NM-25438","54.060001373291016","54.060001373291016","","1979-08-02T00:00:00Z","","0" +"NM-22996","7.730000019073486","7.730000019073486","Z","2008-10-17T00:00:00Z","","0" +"NM-17288","43.279998779296875","43.279998779296875","","1947-01-20T00:00:00Z","","0" +"NM-11869","21.950000762939453","21.950000762939453","","1940-01-22T00:00:00Z","","0" +"NM-17960","221.83999633789062","221.83999633789062","","1987-01-07T00:00:00Z","","0" +"NM-28258","175.57000732421875","175.57000732421875","","1996-07-15T00:00:00Z","","0" +"NM-05455","17.84000015258789","17.84000015258789","","1932-06-03T00:00:00Z","","0" +"SO-0231","10.279999732971191","8.359999656677246","","2016-09-22T00:00:00Z","","1.9199999570846558" +"EB-483","335","335","P","1995-10-31T00:00:00Z","","0" +"NM-20723","53.97999954223633","53.97999954223633","","1949-12-08T00:00:00Z","","0" +"NM-05380","78.25","78.25","","1948-03-24T00:00:00Z","","0" +"DA-0094","218","218","","1965-01-01T00:00:00Z","","0" +"NM-02055","83.62000274658203","83.62000274658203","","1950-01-05T00:00:00Z","","0" +"NM-03238","36.93000030517578","36.93000030517578","","1960-02-11T00:00:00Z","","0" +"NM-00353","69.52999877929688","69.52999877929688","","1957-09-11T00:00:00Z","","0" +"NM-27378","201.8000030517578","201.8000030517578","","2017-06-20T00:00:00Z","","0" +"NM-00062","97.55999755859375","97.55999755859375","","1996-02-28T00:00:00Z","","0" +"NM-02911","97.27999877929688","97.27999877929688","","1985-08-05T00:00:00Z","","0" +"NM-02260","31.65999984741211","31.65999984741211","","1950-03-21T00:00:00Z","","0" +"NM-01251","77.13999938964844","77.13999938964844","","1950-10-16T00:00:00Z","","0" +"NM-14872","161.92999267578125","161.92999267578125","Z","1994-01-19T00:00:00Z","","0" +"NM-11578","27.030000686645508","27.030000686645508","","1949-01-21T00:00:00Z","","0" +"NM-24215","24.690000534057617","24.690000534057617","","2011-02-01T00:00:00Z","","0" +"NM-00498","57.810001373291016","57.810001373291016","","2003-11-24T00:00:00Z","","0" +"NM-28017","487.9599914550781","487.9599914550781","S","2015-02-06T00:00:00Z","","0" +"EB-024","52.33000183105469","49.730003356933594","","1985-03-06T00:00:00Z","","2.5999999046325684" +"NM-09177","-37.959999084472656","-37.959999084472656","","1907-01-25T00:00:00Z","","0" +"NM-04053","298.7900085449219","298.7900085449219","","1982-03-03T00:00:00Z","","0" +"NM-02520","7.599999904632568","7.599999904632568","","2003-04-15T00:00:00Z","","0" +"NM-02314","8","8","","1948-10-15T00:00:00Z","","0" +"NM-02346","115.5199966430664","115.5199966430664","","1982-01-21T00:00:00Z","","0" +"NM-10425","56.33000183105469","56.33000183105469","","1952-01-07T00:00:00Z","","0" +"NM-12338","70.30999755859375","70.30999755859375","","1950-03-10T00:00:00Z","","0" +"NM-28255","10.210000038146973","10.210000038146973","","1990-12-15T00:00:00Z","","0" +"NM-09813","8.300000190734863","8.300000190734863","","1941-05-13T00:00:00Z","","0" +"NM-01985","6.699999809265137","6.699999809265137","","1994-04-15T00:00:00Z","","0" +"NM-07074","46.34000015258789","46.34000015258789","","1939-06-29T00:00:00Z","","0" +"NM-08900","124.05000305175781","124.05000305175781","","1963-01-23T00:00:00Z","","0" +"DE-0237","103.26000213623047","103.26000213623047","","2012-08-13T00:00:00Z","","0" +"NM-22994","8.649999618530273","8.649999618530273","Z","2010-01-26T00:00:00Z","","0" +"NM-20237","18.09000015258789","18.09000015258789","","1948-10-25T00:00:00Z","","0" +"NM-21114","688.0999755859375","688.0999755859375","","1994-05-05T00:00:00Z","","0" +"SB-0299","130.89999389648438","130.89999389648438","","2008-01-20T00:00:00Z","","0" +"EB-011","241.22999572753906","241.22999572753906","","2015-02-25T00:00:00Z","","0" +"NM-28256","256.69000244140625","256.69000244140625","","2014-07-25T00:00:00Z","","0" +"NM-13708","38.58000183105469","38.58000183105469","R","1971-03-25T00:00:00Z","","0" +"NM-14265","424.3599853515625","424.3599853515625","","1965-06-01T00:00:00Z","","0" +"NM-01791","300.2799987792969","300.2799987792969","","1987-03-27T00:00:00Z","","0" +"NM-03662","48.119998931884766","48.119998931884766","","1957-06-05T00:00:00Z","","0" +"NM-02606","89.31999969482422","89.31999969482422","","1999-01-05T00:00:00Z","","0" +"NM-28254","138","138","","2007-07-25T00:00:00Z","","0" +"NM-07815","24.979999542236328","24.979999542236328","","1955-01-06T00:00:00Z","","0" +"NM-11679","30.739999771118164","30.739999771118164","","1946-07-13T00:00:00Z","","0" +"NM-22395","342.8500061035156","342.8500061035156","","1980-08-26T00:00:00Z","","0" +"SA-0067","16","15","","2015-02-17T00:00:00Z","","1" +"NM-16979","38.970001220703125","38.970001220703125","","1933-01-14T00:00:00Z","","0" +"NM-06076","38.08000183105469","38.08000183105469","","1942-10-15T00:00:00Z","","0" +"EB-122","589","589","","2000-06-30T00:00:00Z","","0" +"NM-00617","98.80999755859375","98.80999755859375","P","2010-12-08T00:00:00Z","","0" +"WL-0088","75.45833587646484","72.85833740234375","","2002-02-20T00:00:00Z","","2.5999999046325684" +"NM-28253","20.739999771118164","20.739999771118164","","1993-09-25T00:00:00Z","","0" +"NM-20097","36.66999816894531","36.66999816894531","","1948-01-20T00:00:00Z","","0" +"BW-0116","43.79999923706055","43.79999923706055","","1955-08-23T00:00:00Z","","0" +"NM-12006","190.0800018310547","190.0800018310547","S","1976-04-21T00:00:00Z","","0" +"BC-0415","","9.020000457763672","","2023-03-14T00:00:00Z","","1" +"NM-00054","152.67999267578125","152.67999267578125","","2016-07-21T00:00:00Z","","0" +"NM-20154","48.68000030517578","48.68000030517578","","1944-01-24T00:00:00Z","","0" +"NM-03295","47.650001525878906","47.650001525878906","","1991-03-18T00:00:00Z","","0" +"NM-05494","96.9800033569336","96.9800033569336","","1963-01-15T00:00:00Z","","0" +"EB-012","419","419","","1972-07-24T00:00:00Z","","0" +"NM-28255","47.040000915527344","47.040000915527344","","1974-02-15T00:00:00Z","","0" +"NM-00094","0.49000000953674316","0.49000000953674316","","1962-03-01T00:00:00Z","","0" +"NM-13500","-8.800000190734863","-8.800000190734863","","1911-01-27T00:00:00Z","","0" +"DE-0159","56.529998779296875","56.529998779296875","","2016-03-24T00:00:00Z","","0" +"WL-0112","110.9800033569336","109.83000183105469","","2019-04-18T00:00:00Z","0001-01-01T14:22:00Z","1.149999976158142" +"NM-12618","-51.81999969482422","-51.81999969482422","","1909-03-19T00:00:00Z","","0" +"NM-20115","30.719999313354492","30.719999313354492","","1944-06-10T00:00:00Z","","0" +"NM-03687","117.0199966430664","117.0199966430664","","1968-03-28T00:00:00Z","","0" +"NM-28253","28.34000015258789","28.34000015258789","","2021-10-25T00:00:00Z","","0" +"NM-02384","16.600000381469727","16.600000381469727","","1956-11-15T00:00:00Z","","0" +"NM-10635","28.3799991607666","28.3799991607666","","1937-11-13T00:00:00Z","","0" +"NM-00723","167.6199951171875","167.6199951171875","","2008-11-19T00:00:00Z","","0" +"NM-21640","59.939998626708984","59.939998626708984","","1948-05-20T00:00:00Z","","0" +"NM-11806","84.1500015258789","84.1500015258789","","1946-01-24T00:00:00Z","","0" +"NM-22466","38","38","T","1985-07-27T00:00:00Z","","0" +"NM-14038","-22.950000762939453","-22.950000762939453","","1905-06-15T00:00:00Z","","0" +"NM-21680","327.5","327.5","","2014-08-13T00:00:00Z","","0" +"NM-06917","62.18000030517578","62.18000030517578","","1987-01-26T00:00:00Z","","0" +"NM-03226","40.2599983215332","40.2599983215332","","1954-02-17T00:00:00Z","","0" +"NM-21269","6.449999809265137","6.449999809265137","Z","2008-07-08T00:00:00Z","","0" +"NM-27617","98.66999816894531","98.66999816894531","","1967-01-31T00:00:00Z","","0" +"NM-02524","13.170000076293945","13.170000076293945","","2016-05-09T00:00:00Z","","0" +"NM-05516","13.699999809265137","13.699999809265137","","1954-10-15T00:00:00Z","","0" +"AB-0114","221.27000427246094","221.27000427246094","","2012-12-06T00:00:00Z","","" +"NM-08690","45.650001525878906","45.650001525878906","","1971-02-09T00:00:00Z","","0" +"NM-26692","14.479999542236328","14.479999542236328","","1991-01-25T00:00:00Z","","0" +"NM-02005","8.399999618530273","8.399999618530273","","1978-10-15T00:00:00Z","","0" +"NM-08854","34.91999816894531","34.91999816894531","","1991-01-03T00:00:00Z","","0" +"NM-06955","64.05000305175781","64.05000305175781","","1950-05-31T00:00:00Z","","0" +"NM-13597","-41.43000030517578","-41.43000030517578","","1911-10-18T00:00:00Z","","0" +"DE-0108","","","D","2016-03-23T00:00:00Z","","0" +"EB-245","189.91000366210938","189.91000366210938","","1988-03-05T00:00:00Z","","0" +"NM-02068","51.68000030517578","51.68000030517578","","1973-01-24T00:00:00Z","","0" +"NM-20738","4.630000114440918","4.630000114440918","","1946-09-06T00:00:00Z","","0" +"NM-11069","-26.40999984741211","-26.40999984741211","","1911-02-15T00:00:00Z","","0" +"NM-10966","73.2300033569336","73.2300033569336","","1986-01-29T00:00:00Z","","0" +"NM-17552","53.16999816894531","53.16999816894531","","1958-01-27T00:00:00Z","","0" +"NM-08647","27.6299991607666","27.6299991607666","","1936-06-16T00:00:00Z","","0" +"NM-07881","12.050000190734863","12.050000190734863","","1961-03-28T00:00:00Z","","0" +"SA-0151","125.58999633789062","123.82999420166016","","2011-05-15T00:00:00Z","","1.7599999904632568" +"NM-16640","7.159999847412109","7.159999847412109","","1948-09-29T00:00:00Z","","0" +"NM-16574","15.670000076293945","15.670000076293945","","1945-09-26T00:00:00Z","","0" +"NM-02998","19.040000915527344","19.040000915527344","","1947-05-28T00:00:00Z","","0" +"NM-10010","119.55000305175781","119.55000305175781","","1950-01-11T00:00:00Z","","0" +"NM-00229","67.97000122070312","67.97000122070312","","2000-12-20T00:00:00Z","","0" +"NM-13686","34","34","","1961-05-23T00:00:00Z","","0" +"NM-02547","60.380001068115234","60.380001068115234","","1955-06-07T00:00:00Z","","0" +"NM-00752","531.3599853515625","531.3599853515625","","2009-06-02T00:00:00Z","","0" +"NM-00548","72.33000183105469","72.33000183105469","","1977-01-08T00:00:00Z","","0" +"NM-12001","54.40999984741211","54.40999984741211","","1958-01-11T00:00:00Z","","0" +"NM-19955","21.829999923706055","21.829999923706055","","1951-05-28T00:00:00Z","","0" +"NM-16660","22.399999618530273","22.399999618530273","","1955-01-18T00:00:00Z","","0" +"NM-02771","54.060001373291016","54.060001373291016","","1963-11-15T00:00:00Z","","0" +"NM-23189","227","227","","1975-11-01T00:00:00Z","","0" +"BC-0223","","307","","2020-07-26T00:00:00Z","","1.6200000047683716" +"NM-04719","147.6999969482422","147.6999969482422","","1987-01-28T00:00:00Z","","0" +"NM-06584","89.5199966430664","89.5199966430664","","1991-05-02T00:00:00Z","","0" +"NM-00185","12.300000190734863","12.300000190734863","","1949-09-15T00:00:00Z","","0" +"NM-04962","65.83000183105469","65.83000183105469","","1945-01-10T00:00:00Z","","0" +"NM-11752","222.9499969482422","222.9499969482422","","1971-03-24T00:00:00Z","","0" +"NM-02654","97.0999984741211","97.0999984741211","","1989-01-24T00:00:00Z","","0" +"NM-07569","229.88999938964844","229.88999938964844","","1970-01-23T00:00:00Z","","0" +"NM-01908","127.2699966430664","127.2699966430664","","1962-01-05T00:00:00Z","","0" +"NM-01985","10.800000190734863","10.800000190734863","","1968-01-15T00:00:00Z","","0" +"AB-0165","479.4200134277344","479.4200134277344","","1998-12-04T00:00:00Z","","" +"NM-09317","-50.66999816894531","-50.66999816894531","","1906-07-16T00:00:00Z","","0" +"NM-02831","65.58000183105469","65.58000183105469","","1982-06-01T00:00:00Z","","0" +"NM-28259","124.80000305175781","124.80000305175781","","1991-05-15T00:00:00Z","","0" +"NM-11318","16.229999542236328","16.229999542236328","","1978-08-23T00:00:00Z","","0" +"NM-15044","451.8900146484375","451.8900146484375","","1957-08-01T00:00:00Z","","0" +"NM-04250","40.97999954223633","40.97999954223633","","1954-03-31T00:00:00Z","","0" +"NM-02241","25.790000915527344","25.790000915527344","","2006-03-03T00:00:00Z","","0" +"NM-08340","17.219999313354492","17.219999313354492","R","1966-02-09T00:00:00Z","","0" +"AB-0102","580.5499877929688","580.5499877929688","","2000-06-23T00:00:00Z","","" +"BC-0270","","312.8999938964844","","2021-10-20T00:00:00Z","","-5" +"NM-28023","485.8699951171875","485.8699951171875","S","2015-04-27T00:00:00Z","","0" +"EB-012","420","420","","1971-12-22T00:00:00Z","","0" +"NM-02116","106.66000366210938","106.66000366210938","","1966-01-15T00:00:00Z","","0" +"NM-03261","7.679999828338623","7.679999828338623","","1990-07-06T00:00:00Z","","0" +"NM-02352","8.199999809265137","8.199999809265137","","1970-11-15T00:00:00Z","","0" +"NM-00513","51.97999954223633","51.97999954223633","","1961-02-07T00:00:00Z","","0" +"LC-025","7.769999980926514","8.119999885559082","","2021-04-15T00:00:00Z","0001-01-01T08:00:00Z","-0.3499999940395355" +"NM-01971","7.699999809265137","7.699999809265137","","1997-04-15T00:00:00Z","","0" +"NM-07122","156","156","","1976-01-01T00:00:00Z","","0" +"NM-03339","10.130000114440918","10.130000114440918","","1990-03-05T00:00:00Z","","0" +"EB-299","199.1300048828125","199.1300048828125","","2010-05-04T00:00:00Z","","0" +"NM-28018","486.0799865722656","486.0799865722656","S","2015-04-15T00:00:00Z","","0" +"NM-03334","11.65999984741211","11.65999984741211","","1993-07-07T00:00:00Z","","0" +"NM-03426","357.4700012207031","357.4700012207031","T","1993-06-08T00:00:00Z","","0" +"NM-12513","-17.170000076293945","-17.170000076293945","","1910-09-12T00:00:00Z","","0" +"NM-28023","485.9100036621094","485.9100036621094","S","2015-04-26T00:00:00Z","","0" +"DE-0202","52.33000183105469","52.33000183105469","","2015-12-16T00:00:00Z","","0" +"NM-00781","31.229999542236328","31.229999542236328","","1979-01-10T00:00:00Z","","0" +"NM-03420","44.61000061035156","44.61000061035156","","2002-06-14T00:00:00Z","","0" +"NM-03591","30.299999237060547","30.299999237060547","","1970-07-27T00:00:00Z","","0" +"NM-04632","9.300000190734863","9.300000190734863","","1971-07-15T00:00:00Z","","0" +"NM-02101","5.699999809265137","5.699999809265137","","1988-10-15T00:00:00Z","","0" +"NM-19952","39.150001525878906","39.150001525878906","","1952-01-09T00:00:00Z","","0" +"NM-28251","66.83000183105469","66.83000183105469","","1993-10-25T00:00:00Z","","0" +"WL-0088","70.70833587646484","68.10833740234375","","2001-01-19T00:00:00Z","","2.5999999046325684" +"NM-17716","8.600000381469727","8.600000381469727","","1940-10-06T00:00:00Z","","0" +"SO-0235","5.639999866485596","4.799999713897705","","2021-11-13T00:00:00Z","0001-01-01T16:20:00Z","0.8399999737739563" +"NM-14002","-22.950000762939453","-22.950000762939453","","1909-12-01T00:00:00Z","","0" +"NM-02622","174.14999389648438","174.14999389648438","","1987-01-06T00:00:00Z","","0" +"NM-02286","8.960000038146973","8.960000038146973","","2008-08-04T00:00:00Z","","0" +"NM-28255","144.97000122070312","144.97000122070312","","1973-07-05T00:00:00Z","","0" +"NM-02831","68.19000244140625","68.19000244140625","","1983-08-05T00:00:00Z","","0" +"NM-06676","21.899999618530273","21.899999618530273","","1957-09-15T00:00:00Z","","0" +"NM-15828","175.77999877929688","175.77999877929688","P","1956-05-17T00:00:00Z","","0" +"BC-0083","239.60000610351562","239.60000610351562","","2019-04-22T00:00:00Z","","0" +"NM-27196","112.22000122070312","112.22000122070312","","2013-07-24T00:00:00Z","","0" +"NM-25989","30","30","","1973-03-23T00:00:00Z","","0" +"SO-0249","9.399999618530273","8.1899995803833","","2020-08-14T00:00:00Z","0001-01-01T15:02:00Z","1.2100000381469727" +"NM-12481","29.670000076293945","29.670000076293945","","1944-01-17T00:00:00Z","","0" +"TO-0252","80.80000305175781","80.80000305175781","","1950-07-12T00:00:00Z","","0" +"NM-11795","36.810001373291016","36.810001373291016","","1941-06-12T00:00:00Z","","0" +"NM-02165","9.140000343322754","9.140000343322754","","2010-09-16T00:00:00Z","","0" +"NM-16432","17.1200008392334","17.1200008392334","","1962-01-17T00:00:00Z","","0" +"NM-09997","111.29000091552734","111.29000091552734","","1982-01-05T00:00:00Z","","0" +"SM-0117","18.149999618530273","18.149999618530273","","1988-08-17T00:00:00Z","","0" +"NM-02622","174.05999755859375","174.05999755859375","","1980-10-01T00:00:00Z","","0" +"DE-0096","91.11000061035156","91.11000061035156","","2005-11-29T00:00:00Z","","0" +"NM-06780","135","135","","1949-05-22T00:00:00Z","","0" +"NM-07541","125.97000122070312","125.97000122070312","","1972-02-28T00:00:00Z","","0" +"NM-02849","107.61000061035156","107.61000061035156","","1971-01-11T00:00:00Z","","0" +"NM-20718","68.30000305175781","68.30000305175781","","1976-10-21T00:00:00Z","","0" +"NM-22289","37.630001068115234","37.630001068115234","Z","1999-06-30T00:00:00Z","","0" +"NM-21832","6.670000076293945","6.670000076293945","Z","2009-03-10T00:00:00Z","","0" +"NM-12405","25.649999618530273","25.649999618530273","","1960-01-13T00:00:00Z","","0" +"NM-22888","328.54998779296875","328.54998779296875","","2011-12-14T00:00:00Z","","0" +"NM-27207","80.58000183105469","80.58000183105469","","2010-09-15T00:00:00Z","","0" +"NM-02288","4.550000190734863","4.550000190734863","","2011-08-10T00:00:00Z","","0" +"NM-21268","6.460000038146973","6.460000038146973","Z","2009-12-18T00:00:00Z","","0" +"NM-21521","320.69000244140625","320.69000244140625","","1991-02-21T00:00:00Z","","0" +"NM-23241","242.02999877929688","242.02999877929688","Z","1997-02-03T00:00:00Z","","0" +"NM-17989","16.6299991607666","16.6299991607666","","1933-03-11T00:00:00Z","","0" +"SV-0055","417.1000061035156","416.3500061035156","","2016-02-21T00:00:00Z","","0.75" +"NM-27939","27.389999389648438","27.389999389648438","","1976-06-26T00:00:00Z","","0" +"AB-0133","275.010009765625","275.010009765625","R","2015-02-12T00:00:00Z","","0" +"NM-02165","9.65999984741211","9.65999984741211","","2004-11-23T00:00:00Z","","0" +"NM-16403","151.5500030517578","151.5500030517578","","1997-01-28T00:00:00Z","","0" +"NM-05336","273.010009765625","273.010009765625","P","1998-02-05T00:00:00Z","","0" +"NM-28254","82.5","82.5","","2003-03-25T00:00:00Z","","0" +"NM-06030","34.599998474121094","34.599998474121094","","2008-12-12T00:00:00Z","","0" +"NM-20776","32.709999084472656","32.709999084472656","","1959-09-09T00:00:00Z","","0" +"NM-05169","21.329999923706055","21.329999923706055","","1952-11-11T00:00:00Z","","0" +"NM-17034","28.760000228881836","28.760000228881836","","1945-06-09T00:00:00Z","","0" +"NM-03336","10.289999961853027","10.289999961853027","","1990-04-02T00:00:00Z","","0" +"DE-0276","88.88999938964844","88.88999938964844","","2018-12-17T00:00:00Z","","0" +"NM-06131","403.7099914550781","403.7099914550781","","1978-02-22T00:00:00Z","","0" +"NM-12392","259.44000244140625","259.44000244140625","","1959-10-01T00:00:00Z","","0" +"NM-02991","71.44000244140625","71.44000244140625","","1993-01-05T00:00:00Z","","0" +"NM-02165","7.590000152587891","7.590000152587891","","2005-04-19T00:00:00Z","","0" +"NM-09081","31.610000610351562","31.610000610351562","","1945-07-01T00:00:00Z","","0" +"NM-12856","285.6499938964844","285.6499938964844","","1981-02-12T00:00:00Z","","0" +"NM-13507","-44.88999938964844","-44.88999938964844","","1910-05-25T00:00:00Z","","0" +"NM-10655","44.25","44.25","","1954-11-02T00:00:00Z","","0" +"NM-11869","21.010000228881836","21.010000228881836","","1937-10-01T00:00:00Z","","0" +"NM-12431","29.639999389648438","29.639999389648438","","1948-05-25T00:00:00Z","","0" +"NM-12801","22.420000076293945","22.420000076293945","","1963-01-07T00:00:00Z","","0" +"NM-04469","12","12","","1992-02-01T00:00:00Z","","0" +"NM-02631","68.13999938964844","68.13999938964844","","1996-01-10T00:00:00Z","","0" +"NM-23176","6.769999980926514","6.769999980926514","","1962-10-15T00:00:00Z","","0" +"NM-03373","37.630001068115234","37.630001068115234","","1982-10-22T00:00:00Z","","0" +"NM-14327","190.27000427246094","190.27000427246094","","1960-11-16T00:00:00Z","","0" +"NM-04499","176.80999755859375","176.80999755859375","","2013-01-16T00:00:00Z","","0" +"NM-20198","343.3699951171875","343.3699951171875","","1987-03-03T00:00:00Z","","0" +"NM-03998","55.68000030517578","55.68000030517578","","1962-01-22T00:00:00Z","","0" +"NM-01867","31.079999923706055","31.079999923706055","","1954-01-20T00:00:00Z","","0" +"NM-01033","78.3499984741211","78.3499984741211","","1971-01-08T00:00:00Z","","0" +"NM-01295","99.01000213623047","99.01000213623047","","1950-02-08T00:00:00Z","","0" +"NM-17227","40.47999954223633","40.47999954223633","","1947-01-20T00:00:00Z","","0" +"NM-13164","-35.650001525878906","-35.650001525878906","","1907-06-19T00:00:00Z","","0" +"NM-08212","53.470001220703125","53.470001220703125","","1981-01-21T00:00:00Z","","0" +"AB-0074","17.389999389648438","17.389999389648438","","2010-10-12T00:00:00Z","","" +"NM-13603","28.530000686645508","28.530000686645508","","1955-01-20T00:00:00Z","","0" +"NM-01985","18","18","","1956-07-15T00:00:00Z","","0" +"NM-06149","8.140000343322754","8.140000343322754","","1961-01-06T00:00:00Z","","0" +"NM-11461","173.85000610351562","173.85000610351562","R","1966-02-18T00:00:00Z","","0" +"NM-18702","317.6000061035156","317.6000061035156","","1982-02-09T00:00:00Z","","0" +"NM-11331","10.609999656677246","10.609999656677246","","1959-03-30T00:00:00Z","","0" +"NM-01780","164.07000732421875","164.07000732421875","","1971-01-19T00:00:00Z","","0" +"NM-01476","613.2000122070312","613.2000122070312","","1983-12-07T00:00:00Z","","0" +"NM-05645","84.3499984741211","84.3499984741211","","1961-04-07T00:00:00Z","","0" +"NM-26274","11.300000190734863","11.300000190734863","","1980-08-05T00:00:00Z","","0" +"NM-10099","179.66000366210938","179.66000366210938","","1972-06-26T00:00:00Z","","0" +"BC-0019","74.19999694824219","74.19999694824219","","2018-04-02T00:00:00Z","","0" +"NM-17253","22.889999389648438","22.889999389648438","","1943-01-25T00:00:00Z","","0" +"NM-02916","90.19999694824219","90.19999694824219","","1956-09-13T00:00:00Z","","0" +"NM-01277","135.6999969482422","135.6999969482422","","1952-02-26T00:00:00Z","","0" +"NM-03369","56.02000045776367","56.02000045776367","","1993-01-28T00:00:00Z","","0" +"NM-06917","55.560001373291016","55.560001373291016","","1973-01-22T00:00:00Z","","0" +"NM-01985","10.5","10.5","","1969-01-15T00:00:00Z","","0" +"NM-06090","72.86000061035156","72.86000061035156","","1941-01-07T00:00:00Z","","0" +"NM-01891","80.5999984741211","80.5999984741211","","2014-04-14T00:00:00Z","","0" +"NM-01948","4.800000190734863","4.800000190734863","","1985-04-15T00:00:00Z","","0" +"NM-02352","8.699999809265137","8.699999809265137","","1952-03-15T00:00:00Z","","0" +"NM-02043","6.800000190734863","6.800000190734863","","1980-12-15T00:00:00Z","","0" +"NM-01872","8.199999809265137","8.199999809265137","","1980-05-15T00:00:00Z","","0" +"NM-07160","81.76000213623047","81.76000213623047","","2006-10-03T00:00:00Z","","0" +"NM-21219","4.809999942779541","4.809999942779541","","1960-08-02T00:00:00Z","","0" +"NM-09508","-15.600000381469727","-15.600000381469727","","1958-01-15T00:00:00Z","","0" +"SM-0030","71.5199966430664","70.7699966430664","R","2006-06-12T00:00:00Z","","0.75" +"TB-0111","62.27000045776367","61.56999969482422","","2011-04-15T00:00:00Z","","0.699999988079071" +"LC-006","2.4200000762939453","7.519999980926514","","2011-01-20T00:00:00Z","","-5.099999904632568" +"NM-01889","16.93000030517578","16.93000030517578","","2006-09-12T00:00:00Z","","0" +"NM-03124","36.04999923706055","36.04999923706055","","2004-02-24T00:00:00Z","","0" +"NM-19964","39.849998474121094","39.849998474121094","","1957-02-04T00:00:00Z","","0" +"NM-01035","42.91999816894531","42.91999816894531","","1958-03-19T00:00:00Z","","0" +"NM-03342","12.760000228881836","12.760000228881836","Z","1999-09-30T00:00:00Z","","0" +"NM-01895","","","O","2004-05-17T00:00:00Z","","0" +"NM-09520","4.760000228881836","4.760000228881836","","1951-11-15T00:00:00Z","","0" +"NM-25033","73","73","","1978-07-24T00:00:00Z","","0" +"NM-27541","24.950000762939453","24.950000762939453","","1953-03-25T00:00:00Z","","0" +"AB-0113","224.14999389648438","224.14999389648438","","2005-09-28T00:00:00Z","","" +"DE-0119","32.939998626708984","32.939998626708984","","2002-06-05T00:00:00Z","","0" +"WL-0137","88.08000183105469","85.9800033569336","","2019-04-18T00:00:00Z","0001-01-01T13:08:00Z","2.0999999046325684" +"UC-0139","160.97000122070312","160.97000122070312","","1982-02-11T00:00:00Z","","0" +"NM-20994","153.1999969482422","153.1999969482422","","1982-02-18T00:00:00Z","","0" +"AR-0054","9.020000457763672","8.720000267028809","","2018-09-26T00:00:00Z","0001-01-01T15:59:00Z","0.30000001192092896" +"NM-02992","96.62999725341797","96.62999725341797","","1986-01-10T00:00:00Z","","0" +"SV-0086","104.19999694824219","102.61666107177734","","2016-07-16T00:00:00Z","","1.5833333730697632" +"NM-13900","2.509999990463257","2.509999990463257","","1962-09-04T00:00:00Z","","0" +"NM-01947","4.699999809265137","4.699999809265137","","1971-07-15T00:00:00Z","","0" +"NM-02655","122.18000030517578","122.18000030517578","","2007-02-01T00:00:00Z","","0" +"NM-12739","29.649999618530273","29.649999618530273","","1949-09-24T00:00:00Z","","0" +"NM-01389","214.3300018310547","214.3300018310547","","1988-03-08T00:00:00Z","","0" +"BC-0201","111.30999755859375","111.30999755859375","","2017-10-03T00:00:00Z","","0" +"NM-20196","39.4900016784668","39.4900016784668","","1950-11-30T00:00:00Z","","0" +"NM-21293","13.3100004196167","13.3100004196167","","1961-10-05T00:00:00Z","","0" +"NM-28251","71.12999725341797","71.12999725341797","","2003-07-03T00:00:00Z","","0" +"NM-06676","10.199999809265137","10.199999809265137","","1969-12-15T00:00:00Z","","0" +"NM-11613","117.9000015258789","117.9000015258789","P","1958-08-25T00:00:00Z","","0" +"NM-05623","70.19000244140625","70.19000244140625","","1936-07-13T00:00:00Z","","0" +"NM-28259","69.97000122070312","69.97000122070312","","1993-01-25T00:00:00Z","","0" +"NM-09289","89.9800033569336","89.9800033569336","","1951-03-24T00:00:00Z","","0" +"NM-16979","49.349998474121094","49.349998474121094","","1946-05-26T00:00:00Z","","0" +"SB-0299","148.1199951171875","148.1199951171875","","2003-10-05T00:00:00Z","","0" +"NM-03467","429.0799865722656","429.0799865722656","T","1984-05-21T00:00:00Z","","0" +"EB-271","47.91999816894531","47.91999816894531","","1988-03-21T00:00:00Z","","0" +"NM-12578","79.19999694824219","79.19999694824219","P","1976-05-05T00:00:00Z","","0" +"NM-20498","58.75","58.75","","1946-09-05T00:00:00Z","","0" +"NM-02168","21.530000686645508","21.530000686645508","","2013-09-12T00:00:00Z","","0" +"NM-03208","435.8900146484375","435.8900146484375","","1984-01-17T00:00:00Z","","0" +"NM-02286","9.720000267028809","9.720000267028809","","2005-03-21T00:00:00Z","","0" +"NM-00047","62.65999984741211","62.65999984741211","S","1994-09-19T00:00:00Z","","0" +"NM-00510","20.34000015258789","20.34000015258789","","1978-01-06T00:00:00Z","","0" +"UC-0123","24.690000534057617","24.690000534057617","","2007-08-15T00:00:00Z","","0" +"NM-00099","91.98999786376953","91.98999786376953","","1988-01-26T00:00:00Z","","0" +"EB-240","430.4200134277344","428.7200012207031","","2011-03-10T00:00:00Z","","1.7000000476837158" +"NM-09696","16.950000762939453","16.950000762939453","","1938-07-18T00:00:00Z","","0" +"NM-27371","-40.27000045776367","-40.27000045776367","","1909-03-20T00:00:00Z","","0" +"NM-01948","7","7","","1966-06-15T00:00:00Z","","0" +"NM-03937","84.69999694824219","84.69999694824219","","1972-11-30T00:00:00Z","","0" +"NM-10118","74.58999633789062","74.58999633789062","","1969-11-20T00:00:00Z","","0" +"NM-05189","43.619998931884766","43.619998931884766","","1956-01-18T00:00:00Z","","0" +"NM-28011","489.510009765625","489.510009765625","S","2015-05-18T00:00:00Z","","0" +"NM-02591","14.800000190734863","14.800000190734863","","1960-11-15T00:00:00Z","","0" +"NM-21724","51.81999969482422","51.81999969482422","","2005-11-09T00:00:00Z","","0" +"NM-08189","9.399999618530273","9.399999618530273","","1970-03-15T00:00:00Z","","0" +"NM-28254","66.80000305175781","66.80000305175781","","2010-10-05T00:00:00Z","","0" +"NM-23149","88.1500015258789","88.1500015258789","","1960-02-09T00:00:00Z","","0" +"NM-01812","31.25","31.25","","1962-01-22T00:00:00Z","","0" +"NM-01990","10.119999885559082","10.119999885559082","","1998-02-09T00:00:00Z","","0" +"AB-0102","574.8400268554688","574.8400268554688","","2012-06-18T00:00:00Z","","" +"NM-02765","63.72999954223633","63.72999954223633","","1960-01-12T00:00:00Z","","0" +"NM-27393","85.02999877929688","85.02999877929688","","1960-01-25T00:00:00Z","","0" +"NM-24129","14.119999885559082","14.119999885559082","","1986-05-06T00:00:00Z","","0" +"SB-0299","126.86000061035156","126.86000061035156","","2006-03-05T00:00:00Z","","0" +"SB-0299","144.5","144.5","","2007-09-30T00:00:00Z","","0" +"NM-08048","391.07000732421875","391.07000732421875","","1957-05-10T00:00:00Z","","0" +"NM-03396","17.56999969482422","17.56999969482422","Z","1998-07-08T00:00:00Z","","0" +"NM-03235","65.4800033569336","65.4800033569336","","1959-02-03T00:00:00Z","","0" +"NM-02116","148.89999389648438","148.89999389648438","P","1961-04-07T00:00:00Z","","0" +"SB-0424","52.95000076293945","52.95000076293945","","1965-01-27T00:00:00Z","","0" +"NM-12933","18.780000686645508","18.780000686645508","","1958-07-17T00:00:00Z","","0" +"NM-02071","52.27000045776367","52.27000045776367","","1982-01-19T00:00:00Z","","0" +"NM-12490","108.54000091552734","108.54000091552734","","1966-01-11T00:00:00Z","","0" +"NM-08048","373.0299987792969","373.0299987792969","R","1947-05-15T00:00:00Z","","0" +"NM-01518","-61.099998474121094","-61.099998474121094","","1988-11-04T00:00:00Z","","0" +"NM-02649","15.010000228881836","15.010000228881836","","1985-08-16T00:00:00Z","","0" +"AS-018","28.959999084472656","28.959999084472656","","2005-05-10T00:00:00Z","","0" +"NM-08071","8.100000381469727","8.100000381469727","","1957-12-15T00:00:00Z","","0" +"NM-25883","31.43000030517578","31.43000030517578","P","1996-01-27T00:00:00Z","","0" +"NM-00185","10.899999618530273","10.899999618530273","","1993-07-15T00:00:00Z","","0" +"BC-0308","133.0399932861328","133.0399932861328","","2020-05-02T00:00:00Z","","0" +"NM-17271","33.529998779296875","33.529998779296875","","1942-05-01T00:00:00Z","","0" +"NM-20776","23.65999984741211","23.65999984741211","","1951-05-03T00:00:00Z","","0" +"NM-02527","9.800000190734863","9.800000190734863","","1962-05-15T00:00:00Z","","0" +"TV-139","175.27999877929688","173.1999969482422","","2011-03-14T00:00:00Z","","2.0799999237060547" +"NM-14802","111.05999755859375","111.05999755859375","","1974-07-25T00:00:00Z","","0" +"NM-14705","66.95999908447266","66.95999908447266","","1958-01-07T00:00:00Z","","0" +"NM-03903","330.6199951171875","330.6199951171875","","1975-07-10T00:00:00Z","","0" +"NM-02006","7.599999904632568","7.599999904632568","Z","1949-07-15T00:00:00Z","","0" +"AB-0076","9.569999694824219","9.569999694824219","","2012-06-08T00:00:00Z","","" +"NM-00251","205.47000122070312","205.47000122070312","","1953-11-12T00:00:00Z","","0" +"NM-00680","57.16999816894531","57.16999816894531","","1960-05-26T00:00:00Z","","0" +"NM-26581","3.9700000286102295","3.9700000286102295","","2013-04-05T00:00:00Z","","0" +"UC-0056","243","243","","1955-01-01T00:00:00Z","","0" +"SD-0108","19.399999618530273","19.399999618530273","","1963-10-04T00:00:00Z","","0" +"NM-10811","98.69000244140625","98.69000244140625","P","1957-01-09T00:00:00Z","","0" +"NM-20451","195.39999389648438","195.39999389648438","","2008-05-01T00:00:00Z","","0" +"NM-09021","2.200000047683716","2.200000047683716","","1992-02-14T00:00:00Z","","0" +"NM-00481","162.5","162.5","","1976-05-13T00:00:00Z","","0" +"NM-01022","458.5299987792969","458.5299987792969","","2003-07-08T00:00:00Z","","0" +"NM-11614","96.48999786376953","96.48999786376953","","1966-02-17T00:00:00Z","","0" +"EB-390","162.97999572753906","161.27999877929688","","2022-04-05T00:00:00Z","0001-01-01T14:40:00Z","1.7000000476837158" +"NM-02162","121.80999755859375","121.80999755859375","P","1962-04-07T00:00:00Z","","0" +"NM-11277","485.9100036621094","485.9100036621094","","1975-01-10T00:00:00Z","","0" +"NM-11562","40.13999938964844","40.13999938964844","","1941-01-25T00:00:00Z","","0" +"NM-13434","-31.030000686645508","-31.030000686645508","","1907-12-07T00:00:00Z","","0" +"NM-21558","5.940000057220459","5.940000057220459","Z","2010-08-18T00:00:00Z","","0" +"NM-27415","67.54000091552734","67.54000091552734","","1968-01-04T00:00:00Z","","0" +"NM-02165","8","8","","2004-03-19T00:00:00Z","","0" +"NM-05221","212.5","212.5","P","1958-06-12T00:00:00Z","","0" +"NM-07343","46.56999969482422","46.56999969482422","","1961-11-27T00:00:00Z","","0" +"NM-24786","226.10000610351562","226.10000610351562","","1965-01-26T00:00:00Z","","0" +"SB-0442","170.1999969482422","170.1999969482422","","2010-09-30T00:00:00Z","","0" +"NM-15122","201.24000549316406","201.24000549316406","","1955-02-09T00:00:00Z","","0" +"PC-096","30.010000228881836","32.90999984741211","","1998-02-05T00:00:00Z","","0" +"NM-07867","23.219999313354492","23.219999313354492","P","1966-02-09T00:00:00Z","","0" +"UC-0038","217.3300018310547","217.3300018310547","","2007-03-05T00:00:00Z","","0" +"NM-17651","33.81999969482422","33.81999969482422","","1983-01-11T00:00:00Z","","0" +"NM-06878","241.3300018310547","241.3300018310547","","1970-12-10T00:00:00Z","","0" +"NM-00644","104.05999755859375","104.05999755859375","","1965-05-01T00:00:00Z","","0" +"NM-16601","11.350000381469727","11.350000381469727","","1944-11-29T00:00:00Z","","0" +"NM-02413","159.02000427246094","159.02000427246094","","1978-01-30T00:00:00Z","","0" +"NM-09519","2.5","2.5","","1947-03-18T00:00:00Z","","0" +"NM-02107","391","391","","1968-03-02T00:00:00Z","","0" +"NM-08524","10.399999618530273","10.399999618530273","","1961-07-15T00:00:00Z","","0" +"NM-08646","55.470001220703125","55.470001220703125","","1967-01-05T00:00:00Z","","0" +"NM-02571","41.689998626708984","41.689998626708984","","2007-02-08T00:00:00Z","","0" +"DE-0081","88.38999938964844","88.38999938964844","","2007-06-18T00:00:00Z","","0" +"NM-11100","50.08000183105469","50.08000183105469","","1958-11-19T00:00:00Z","","0" +"NM-02658","222.3800048828125","222.3800048828125","R","1949-11-08T00:00:00Z","","0" +"WL-0219","50.41999816894531","48.88999938964844","AA","2023-03-20T00:00:00Z","0001-01-01T10:30:00Z","1.5299999713897705" +"NM-00367","126.69000244140625","126.69000244140625","","1980-12-01T00:00:00Z","","0" +"NM-01262","499.75","499.75","Z","1991-03-06T00:00:00Z","","0" +"NM-12353","27.100000381469727","27.100000381469727","","1942-09-26T00:00:00Z","","0" +"NM-17385","33.88999938964844","33.88999938964844","","1956-02-21T00:00:00Z","","0" +"NM-11578","26.3700008392334","26.3700008392334","","1930-06-04T00:00:00Z","","0" +"NM-25639","27.989999771118164","27.989999771118164","","1976-01-28T00:00:00Z","","0" +"NM-10094","156.7899932861328","156.7899932861328","","1963-11-20T00:00:00Z","","0" +"NM-28256","190.42999267578125","190.42999267578125","","2005-04-25T00:00:00Z","","0" +"NM-02043","5.800000190734863","5.800000190734863","","2001-05-15T00:00:00Z","","0" +"NM-20098","33.63999938964844","33.63999938964844","","1941-04-29T00:00:00Z","","0" +"NM-02702","38.630001068115234","38.630001068115234","","1996-08-15T00:00:00Z","","0" +"NM-02831","56.439998626708984","56.439998626708984","","1983-01-05T00:00:00Z","","0" +"BW-0204","123.7699966430664","123.7699966430664","","1969-02-06T00:00:00Z","","0" +"NM-10092","54.119998931884766","54.119998931884766","","1956-03-15T00:00:00Z","","0" +"NM-05082","63.720001220703125","63.720001220703125","","1933-12-02T00:00:00Z","","0" +"NM-02917","100.02999877929688","100.02999877929688","","2005-02-23T00:00:00Z","","0" +"NM-11889","1.7000000476837158","1.7000000476837158","","1957-12-05T00:00:00Z","","0" +"NM-02698","7.659999847412109","7.659999847412109","","1955-12-28T00:00:00Z","","0" +"NM-17649","74.1500015258789","74.1500015258789","P","1961-02-08T00:00:00Z","","0" +"NM-24594","71.0199966430664","71.0199966430664","","1973-09-18T00:00:00Z","","0" +"NM-08093","17.1299991607666","17.1299991607666","","1953-01-07T00:00:00Z","","0" +"NM-02145","82.75","82.75","","1973-01-24T00:00:00Z","","0" +"NM-02091","95.25","95.25","","1972-01-14T00:00:00Z","","0" +"NM-13020","14.350000381469727","14.350000381469727","","1959-09-11T00:00:00Z","","0" +"NM-01841","239.1199951171875","239.1199951171875","","1969-05-20T00:00:00Z","","0" +"NM-02702","-28.479999542236328","-28.479999542236328","","1998-02-02T00:00:00Z","","0" +"NM-07596","-21.790000915527344","-21.790000915527344","","1908-03-31T00:00:00Z","","0" +"NM-10635","28.40999984741211","28.40999984741211","","1938-04-11T00:00:00Z","","0" +"NM-17716","4.809999942779541","4.809999942779541","","1946-07-30T00:00:00Z","","0" +"NM-00679","56.099998474121094","56.099998474121094","","1989-02-17T00:00:00Z","","0" +"NM-19250","349.9100036621094","349.9100036621094","","1987-02-12T00:00:00Z","","0" +"NM-03467","429.7099914550781","429.7099914550781","R","1985-11-26T00:00:00Z","","0" +"NM-03427","23.030000686645508","23.030000686645508","","2000-08-21T00:00:00Z","","0" +"NM-17989","16.219999313354492","16.219999313354492","","1945-09-25T00:00:00Z","","0" +"SV-0074","302.20001220703125","300.6200256347656","","2017-07-09T00:00:00Z","","1.5800000429153442" +"NM-28253","60.15999984741211","60.15999984741211","","1974-07-15T00:00:00Z","","0" +"SB-0505","208.0800018310547","208.0800018310547","","1986-02-24T00:00:00Z","","0" +"NM-11174","82.7300033569336","82.7300033569336","P","1961-03-23T00:00:00Z","","0" +"NM-27521","81.45999908447266","81.45999908447266","","2008-03-18T00:00:00Z","","0" +"NM-00329","16.34000015258789","16.34000015258789","","1962-01-04T00:00:00Z","","0" +"NM-14678","303.7699890136719","303.7699890136719","","1957-06-20T00:00:00Z","","0" +"EB-484","583","582.4000244140625","P","1993-11-30T00:00:00Z","","0.6000000238418579" +"EB-482","405.80999755859375","405.80999755859375","Z","2006-01-31T00:00:00Z","","0" +"NM-28258","114.75","114.75","","1999-12-15T00:00:00Z","","0" +"NM-01955","4.400000095367432","4.400000095367432","","1967-11-15T00:00:00Z","","0" +"SB-0299","138.92999267578125","138.92999267578125","","2013-12-10T00:00:00Z","","0" +"NM-28007","5.400000095367432","5.400000095367432","Z","2007-08-01T00:00:00Z","","0" +"NM-03372","152.4499969482422","152.4499969482422","S","1999-08-15T00:00:00Z","","0" +"NM-11473","15.420000076293945","15.420000076293945","","1959-03-18T00:00:00Z","","0" +"NM-04568","106.98999786376953","106.98999786376953","","1971-01-20T00:00:00Z","","0" +"NM-23813","15.5","15.5","","1973-06-13T00:00:00Z","","0" +"NM-01872","10.199999809265137","10.199999809265137","","1947-12-15T00:00:00Z","","0" +"NM-11005","-11.970000267028809","-11.970000267028809","","1910-06-13T00:00:00Z","","0" +"EB-267","14.890000343322754","14.890000343322754","","2005-05-18T00:00:00Z","","0" +"NM-12431","30.200000762939453","30.200000762939453","","1950-01-16T00:00:00Z","","0" +"NM-01134","229.4499969482422","229.4499969482422","","1972-02-29T00:00:00Z","","0" +"NM-00116","59.790000915527344","59.790000915527344","","2003-01-10T00:00:00Z","","0" +"NM-05733","154.0800018310547","154.0800018310547","","1968-01-30T00:00:00Z","","0" +"EB-270","230.5","230.5","","2001-11-20T00:00:00Z","","0" +"NM-03212","40.619998931884766","40.619998931884766","","1942-08-12T00:00:00Z","","0" +"BC-0067","271.8699951171875","271.8699951171875","","2018-04-07T00:00:00Z","","0" +"SV-0145","149.89999389648438","148.07000732421875","","2018-11-17T00:00:00Z","","1.8300000429153442" +"SB-0442","172.6999969482422","172.6999969482422","","2008-08-15T00:00:00Z","","0" +"NM-00865","16.489999771118164","16.489999771118164","","2005-02-01T00:00:00Z","","0" +"EB-359","263.0350036621094","261.8349914550781","R","2002-02-06T00:00:00Z","","1.2000000476837158" +"WL-0086","52.625","50.8650016784668","","1997-04-09T00:00:00Z","","1.7599999904632568" +"NM-03008","","","O","2005-03-03T00:00:00Z","","0" +"NM-00781","31.1299991607666","31.1299991607666","","1957-07-23T00:00:00Z","","0" +"AB-0179","185.77000427246094","185.77000427246094","","2009-10-09T00:00:00Z","","" +"NM-11100","43.40999984741211","43.40999984741211","","1953-05-15T00:00:00Z","","0" +"NM-26769","-9.119999885559082","-9.119999885559082","","1982-06-07T00:00:00Z","","0" +"NM-13370","67.29000091552734","67.29000091552734","","1978-08-11T00:00:00Z","","0" +"NM-00353","89.93000030517578","89.93000030517578","","2006-01-09T00:00:00Z","","0" +"NM-03009","52.5","52.5","","1969-01-09T00:00:00Z","","0" +"NM-07160","82.01000213623047","82.01000213623047","","2003-04-10T00:00:00Z","","0" +"NM-02208","8.100000381469727","8.100000381469727","","2000-11-15T00:00:00Z","","0" +"NM-05377","210","210","","1983-01-11T00:00:00Z","","0" +"TB-0071","216.25","214.27999877929688","","2018-11-07T00:00:00Z","0001-01-01T11:22:00Z","1.9700000286102295" +"NM-05345","64.83000183105469","64.83000183105469","","1934-12-27T00:00:00Z","","0" +"NM-01847","10.800000190734863","10.800000190734863","","2004-01-29T00:00:00Z","","0" +"NM-14293","4.360000133514404","4.360000133514404","","1960-05-10T00:00:00Z","","0" +"NM-18633","96.8499984741211","96.8499984741211","","1972-01-17T00:00:00Z","","0" +"NM-02207","8.800000190734863","8.800000190734863","","1996-02-14T00:00:00Z","","0" +"NM-03468","142.36000061035156","142.36000061035156","T","1986-01-28T00:00:00Z","","0" +"SB-0299","145.10000610351562","145.10000610351562","","1979-08-15T00:00:00Z","","0" +"NM-17715","12.550000190734863","12.550000190734863","P","1950-01-08T00:00:00Z","","0" +"NM-02004","8.100000381469727","8.100000381469727","","1972-01-15T00:00:00Z","","0" +"NM-06508","75.0199966430664","75.0199966430664","","1977-01-28T00:00:00Z","","0" +"NM-03085","290.25","290.25","","2000-03-01T00:00:00Z","","0" +"NM-02006","8","8","","1960-07-15T00:00:00Z","","0" +"NM-09600","-117.66000366210938","-117.66000366210938","","1908-08-26T00:00:00Z","","0" +"NM-01035","46.599998474121094","46.599998474121094","","1978-01-08T00:00:00Z","","0" +"SD-0298","156.6999969482422","156.6999969482422","","1962-07-02T00:00:00Z","","0" +"EB-246","270.0299987792969","270.0299987792969","","2016-03-15T00:00:00Z","","0" +"EB-482","33","33","","1988-02-29T00:00:00Z","","0" +"NM-27382","45.650001525878906","45.650001525878906","","1965-01-12T00:00:00Z","","0" +"NM-03400","13.90999984741211","13.90999984741211","","2006-09-12T00:00:00Z","","0" +"NM-03437","73.69999694824219","73.69999694824219","","2004-02-19T00:00:00Z","","0" +"NM-10853","56.27000045776367","56.27000045776367","","1960-01-08T00:00:00Z","","0" +"NM-21813","526","526","S","1978-05-09T00:00:00Z","","0" +"NM-13092","8.069999694824219","8.069999694824219","","1974-09-29T00:00:00Z","","0" +"NM-07249","33.52000045776367","33.52000045776367","","1955-03-25T00:00:00Z","","0" +"NM-02772","129.11000061035156","129.11000061035156","","2001-05-25T00:00:00Z","","0" +"NM-19842","21.950000762939453","21.950000762939453","","1981-03-18T00:00:00Z","","0" +"NM-02250","124.87999725341797","124.87999725341797","P","1958-08-04T00:00:00Z","","0" +"NM-11445","82.26000213623047","82.26000213623047","","1991-02-08T00:00:00Z","","0" +"NM-28250","94.02999877929688","94.02999877929688","","2019-07-03T00:00:00Z","","0" +"NM-02520","13.800000190734863","13.800000190734863","Z","1978-04-15T00:00:00Z","","0" +"NM-03661","23.610000610351562","23.610000610351562","","1989-03-03T00:00:00Z","","0" +"NM-13894","-24.100000381469727","-24.100000381469727","","1911-05-18T00:00:00Z","","0" +"NM-28252","32.099998474121094","32.099998474121094","","1998-12-25T00:00:00Z","","0" +"NM-27524","34.16999816894531","34.16999816894531","","1966-04-12T00:00:00Z","","0" +"NM-14491","53.2400016784668","53.2400016784668","","1965-01-05T00:00:00Z","","0" +"NM-00366","142.2100067138672","142.2100067138672","","1984-09-05T00:00:00Z","","0" +"NM-21552","386.4100036621094","386.4100036621094","","2003-03-10T00:00:00Z","","0" +"NM-09910","54.400001525878906","54.400001525878906","","1961-02-01T00:00:00Z","","0" +"NM-02349","10.699999809265137","10.699999809265137","","1948-12-15T00:00:00Z","","0" +"NM-28255","8.609999656677246","8.609999656677246","","1997-12-05T00:00:00Z","","0" +"NM-02349","8.600000381469727","8.600000381469727","","1949-07-15T00:00:00Z","","0" +"HS-039","15.329999923706055","13.460000038146973","","2007-12-11T00:00:00Z","","1.8700000047683716" +"NM-13594","51.540000915527344","51.540000915527344","","1982-06-14T00:00:00Z","","0" +"NM-20115","47.599998474121094","47.599998474121094","","1955-02-04T00:00:00Z","","0" +"NM-28257","-13.390000343322754","-13.390000343322754","","2001-11-05T00:00:00Z","","0" +"NM-01321","242.74000549316406","242.74000549316406","","2009-10-05T00:00:00Z","","0" +"NM-02137","144.75","144.75","","1993-01-25T00:00:00Z","","0" +"NM-02015","354.70001220703125","354.70001220703125","","2002-02-07T00:00:00Z","","0" +"NM-12353","29.760000228881836","29.760000228881836","","1935-04-13T00:00:00Z","","0" +"BC-0034","38.4900016784668","38.4900016784668","R","1992-02-20T00:00:00Z","","0" +"NM-21679","354.6600036621094","354.6600036621094","","2006-07-19T00:00:00Z","","0" +"NM-04635","172.30999755859375","172.30999755859375","","1968-02-02T00:00:00Z","","0" +"NM-28255","100.70999908447266","100.70999908447266","","1985-05-15T00:00:00Z","","0" +"NM-02801","9.819999694824219","9.819999694824219","","1961-01-09T00:00:00Z","","0" +"NM-01796","7.699999809265137","7.699999809265137","","1977-10-15T00:00:00Z","","0" +"NM-06508","75.2699966430664","75.2699966430664","","1974-01-18T00:00:00Z","","0" +"NM-17620","27.049999237060547","27.049999237060547","","1933-06-09T00:00:00Z","","0" +"SB-0442","170.60000610351562","170.60000610351562","","2008-05-20T00:00:00Z","","0" +"NM-16735","9.869999885559082","9.869999885559082","","1951-09-24T00:00:00Z","","0" +"NM-07160","82.44000244140625","82.44000244140625","","2003-10-08T00:00:00Z","","0" +"NM-19427","395.25","395.25","","1982-01-15T00:00:00Z","","0" +"NM-14115","66.75","66.75","","1961-09-28T00:00:00Z","","0" +"SO-0181","9.210000038146973","8.239999771118164","","2018-04-11T00:00:00Z","0001-01-01T11:45:00Z","0.9700000286102295" +"NM-27474","89.7699966430664","89.7699966430664","","1961-01-03T00:00:00Z","","0" +"NM-06268","13.800000190734863","13.800000190734863","","1976-01-15T00:00:00Z","","0" +"NM-28254","158.5","158.5","","2011-07-15T00:00:00Z","","0" +"NM-03401","10.119999885559082","10.119999885559082","Z","2000-02-04T00:00:00Z","","0" +"EB-388","89.04000091552734","87.61000061035156","","1998-07-29T00:00:00Z","","1.4299999475479126" +"NM-03349","27.190000534057617","27.190000534057617","S","1987-03-19T00:00:00Z","","0" +"NM-17716","8.270000457763672","8.270000457763672","","1940-08-26T00:00:00Z","","0" +"NM-03389","29.200000762939453","29.200000762939453","","1989-06-27T00:00:00Z","","0" +"NM-09157","223.3300018310547","223.3300018310547","","1981-01-15T00:00:00Z","","0" +"BC-0271","266.2799987792969","266.2799987792969","","2019-04-18T00:00:00Z","","0" +"NM-02527","9.399999618530273","9.399999618530273","","1986-10-15T00:00:00Z","","0" +"NM-12014","46.68000030517578","46.68000030517578","","1952-03-24T00:00:00Z","","0" +"NM-03597","59.209999084472656","59.209999084472656","","2007-03-07T00:00:00Z","","0" +"NM-00698","97.38999938964844","97.38999938964844","","2014-09-17T00:00:00Z","","0" +"NM-01890","72.37999725341797","72.37999725341797","","2008-11-12T00:00:00Z","","0" +"NM-01812","11.239999771118164","11.239999771118164","","1992-07-01T00:00:00Z","","0" +"NM-02703","78.19999694824219","78.19999694824219","","2001-01-04T00:00:00Z","","0" +"NM-00366","139.0399932861328","139.0399932861328","","2005-09-15T00:00:00Z","","0" +"NM-21293","12.920000076293945","12.920000076293945","","1961-07-07T00:00:00Z","","0" +"NM-16566","14.210000038146973","14.210000038146973","","1952-01-20T00:00:00Z","","0" +"NM-17627","58.72999954223633","58.72999954223633","","1967-01-27T00:00:00Z","","0" +"NM-02296","51.779998779296875","51.779998779296875","","1993-02-03T00:00:00Z","","0" +"AB-0124","530.1300048828125","530.1300048828125","","2015-09-25T00:00:00Z","","0" +"NM-17618","10.8100004196167","10.8100004196167","","1933-05-13T00:00:00Z","","0" +"NM-19787","131.91000366210938","131.91000366210938","","2002-10-21T00:00:00Z","","0" +"NM-02487","8.300000190734863","8.300000190734863","","1971-03-15T00:00:00Z","","0" +"NM-13916","-8.510000228881836","-8.510000228881836","","1912-04-04T00:00:00Z","","0" +"NM-11334","206.74000549316406","206.74000549316406","","1981-01-27T00:00:00Z","","0" +"NM-13092","9.199999809265137","9.199999809265137","","1968-12-11T00:00:00Z","","0" +"NM-02598","149.17999267578125","149.17999267578125","","1979-03-08T00:00:00Z","","0" +"BC-0007","","355","","2020-07-25T00:00:00Z","","2.1600000858306885" +"NM-01246","103.26000213623047","103.26000213623047","R","1996-01-26T00:00:00Z","","0" +"NM-01772","202.74000549316406","202.74000549316406","","1982-01-07T00:00:00Z","","0" +"NM-03392","148.32000732421875","148.32000732421875","T","1984-12-28T00:00:00Z","","0" +"NM-20310","59.869998931884766","59.869998931884766","R","1946-05-31T00:00:00Z","","0" +"NM-28250","87.83000183105469","87.83000183105469","","2008-05-15T00:00:00Z","","0" +"DE-0112","","","D","2015-07-29T00:00:00Z","","0" +"NM-02923","99.63999938964844","99.63999938964844","","1970-02-16T00:00:00Z","","0" +"NM-26040","69.62999725341797","69.62999725341797","","1981-02-02T00:00:00Z","","0" +"NM-00662","34.34000015258789","34.34000015258789","","2012-12-21T00:00:00Z","","0" +"NM-03467","434.5799865722656","434.5799865722656","","2006-03-03T00:00:00Z","","0" +"EB-416","30.579999923706055","30.579999923706055","Z","1986-04-30T00:00:00Z","","0" +"BC-0199","40.959999084472656","40.959999084472656","","2014-02-10T00:00:00Z","","0" +"EB-266","4.050000190734863","4.050000190734863","","2007-12-05T00:00:00Z","","0" +"NM-28255","155.80999755859375","155.80999755859375","","2018-04-05T00:00:00Z","","0" +"AH-049","190.22000122070312","190.22000122070312","","2006-03-17T00:00:00Z","","0" +"SA-0212","238.47999572753906","237.0800018310547","","2011-07-13T00:00:00Z","","1.399999976158142" +"NM-06676","7.199999809265137","7.199999809265137","","1947-10-15T00:00:00Z","","0" +"NM-14082","198.22000122070312","198.22000122070312","","1959-01-07T00:00:00Z","","0" +"EB-229","218.42999267578125","224.42999267578125","","1989-02-11T00:00:00Z","","-6" +"NM-03397","22.850000381469727","22.850000381469727","","1994-04-13T00:00:00Z","","0" +"NM-21234","2.319999933242798","2.319999933242798","Z","2005-02-22T00:00:00Z","","0" +"NM-21618","70.69000244140625","70.69000244140625","","1960-03-03T00:00:00Z","","0" +"NM-11617","206.33999633789062","206.33999633789062","","1981-01-28T00:00:00Z","","0" +"NM-23486","73.9000015258789","73.9000015258789","","1956-07-25T00:00:00Z","","0" +"NM-07006","97.19999694824219","97.19999694824219","","2005-10-06T00:00:00Z","","0" +"SB-0299","149.6999969482422","149.6999969482422","","2019-05-15T00:00:00Z","","0" +"NM-02794","40.11000061035156","40.11000061035156","","1938-04-02T00:00:00Z","","0" +"NM-25423","3.1700000762939453","3.1700000762939453","","1983-01-05T00:00:00Z","","0" +"NM-05709","52.720001220703125","52.720001220703125","","1940-11-14T00:00:00Z","","0" +"NM-05309","10.399999618530273","10.399999618530273","","1984-04-15T00:00:00Z","","0" +"NM-03397","22.65999984741211","22.65999984741211","","1989-02-23T00:00:00Z","","0" +"SB-0053","72.5","72.5","","1995-02-08T00:00:00Z","","0" +"NM-08232","1000.25","1000.25","","1968-08-01T00:00:00Z","","0" +"DE-0108","36.29999923706055","36.29999923706055","","2006-10-30T00:00:00Z","","0" +"SV-0134","147.10000610351562","145.60000610351562","","2017-02-18T00:00:00Z","","1.5" +"NM-03078","137.6199951171875","137.6199951171875","","2009-02-23T00:00:00Z","","0" +"NM-11388","40.310001373291016","40.310001373291016","","1943-03-29T00:00:00Z","","0" +"NM-13431","41.11000061035156","41.11000061035156","","1937-10-02T00:00:00Z","","0" +"NM-08071","10.800000190734863","10.800000190734863","","1979-09-15T00:00:00Z","","0" +"NM-13594","3.4200000762939453","3.4200000762939453","","1958-02-04T00:00:00Z","","0" +"NM-13594","40.130001068115234","40.130001068115234","","1960-08-19T00:00:00Z","","0" +"NM-02209","105.62999725341797","105.62999725341797","","1964-01-17T00:00:00Z","","0" +"NM-18048","21.34000015258789","21.34000015258789","","1972-01-14T00:00:00Z","","0" +"NM-00644","124.08000183105469","124.08000183105469","","1973-04-01T00:00:00Z","","0" +"NM-12140","9.420000076293945","9.420000076293945","","1942-02-02T00:00:00Z","","0" +"SB-0299","117.01000213623047","117.01000213623047","","1969-05-15T00:00:00Z","","0" +"NM-09389","5.480000019073486","5.480000019073486","","1974-02-28T00:00:00Z","","0" +"NM-14067","-7.349999904632568","-7.349999904632568","","1908-09-04T00:00:00Z","","0" +"NM-02774","20.469999313354492","20.469999313354492","","1949-01-31T00:00:00Z","","0" +"NM-16789","8.329999923706055","8.329999923706055","","1955-09-19T00:00:00Z","","0" +"AB-0212","159.52999877929688","159.52999877929688","","2005-07-26T00:00:00Z","","" +"NM-03827","18.549999237060547","18.549999237060547","","1960-11-15T00:00:00Z","","0" +"NM-09638","201.64999389648438","201.64999389648438","R","1963-07-23T00:00:00Z","","0" +"NM-01575","82.91999816894531","82.91999816894531","","1976-01-28T00:00:00Z","","0" +"NM-00641","35.029998779296875","35.029998779296875","","2007-12-17T00:00:00Z","","0" +"AB-0114","221.5500030517578","221.5500030517578","","2007-10-10T00:00:00Z","","" +"NM-01321","250.83999633789062","250.83999633789062","","2008-09-26T00:00:00Z","","0" +"NM-13127","14.420000076293945","14.420000076293945","","1958-07-14T00:00:00Z","","0" +"NM-22980","10.8100004196167","10.8100004196167","Z","2009-06-16T00:00:00Z","","0" +"NM-00367","125.69999694824219","125.69999694824219","","1972-04-20T00:00:00Z","","0" +"NM-00804","112.80000305175781","112.80000305175781","","2003-07-23T00:00:00Z","","0" +"NM-13873","-7.929999828338623","-7.929999828338623","","1906-03-05T00:00:00Z","","0" +"NM-01507","38.900001525878906","38.900001525878906","","1993-01-27T00:00:00Z","","0" +"NM-02591","11.699999809265137","11.699999809265137","","1987-06-15T00:00:00Z","","0" +"NM-05283","44.22999954223633","44.22999954223633","","1953-09-22T00:00:00Z","","0" +"NM-03239","124.44999694824219","124.44999694824219","","1980-01-07T00:00:00Z","","0" +"NM-03672","237.72000122070312","237.72000122070312","","1988-08-12T00:00:00Z","","0" +"NM-12833","6.53000020980835","6.53000020980835","","1959-04-09T00:00:00Z","","0" +"NM-01269","77.95999908447266","77.95999908447266","","1996-02-23T00:00:00Z","","0" +"NM-03232","91.62000274658203","91.62000274658203","R","1995-02-07T00:00:00Z","","0" +"NM-08101","322","322","","1968-01-30T00:00:00Z","","0" +"NM-02207","8.399999618530273","8.399999618530273","","1991-09-15T00:00:00Z","","0" +"NM-25347","72.9000015258789","72.9000015258789","P","1967-03-08T00:00:00Z","","0" +"NM-01804","326.9599914550781","326.9599914550781","","1988-02-04T00:00:00Z","","0" +"NM-28255","18.799999237060547","18.799999237060547","","1995-11-15T00:00:00Z","","0" +"NM-19181","68.83000183105469","68.83000183105469","","1995-03-08T00:00:00Z","","0" +"NM-01759","45.5099983215332","45.5099983215332","","1972-12-01T00:00:00Z","","0" +"NM-06676","12","12","","1967-03-15T00:00:00Z","","0" +"NM-21558","6.929999828338623","6.929999828338623","Z","2006-05-08T00:00:00Z","","0" +"BW-0210","133","133","","1969-03-04T00:00:00Z","","0" +"NM-05117","106.11000061035156","106.11000061035156","","1962-01-19T00:00:00Z","","0" +"NM-04292","10.039999961853027","10.039999961853027","","1953-02-13T00:00:00Z","","0" +"NM-19886","440.57000732421875","440.57000732421875","","1982-02-12T00:00:00Z","","0" +"NM-12477","14.729999542236328","14.729999542236328","","1957-07-05T00:00:00Z","","0" +"NM-06043","71.11000061035156","71.11000061035156","","1964-01-10T00:00:00Z","","0" +"NM-02518","6.099999904632568","6.099999904632568","","1969-10-15T00:00:00Z","","0" +"BC-0109","99.75","99.75","","2014-03-12T00:00:00Z","","0" +"NM-00999","378.0299987792969","378.0299987792969","","1991-01-03T00:00:00Z","","0" +"NM-16831","3.509999990463257","3.509999990463257","","1941-03-27T00:00:00Z","","0" +"NM-28250","83.43000030517578","83.43000030517578","","1995-08-15T00:00:00Z","","0" +"NM-24180","53.97999954223633","53.97999954223633","","1970-12-12T00:00:00Z","","0" +"NM-07275","6.909999847412109","6.909999847412109","","1933-04-01T00:00:00Z","","0" +"NM-02520","9.399999618530273","9.399999618530273","","1956-06-15T00:00:00Z","","0" +"NM-03114","49.779998779296875","49.779998779296875","","1966-04-08T00:00:00Z","","0" +"NM-11928","0.15000000596046448","0.15000000596046448","","1954-05-01T00:00:00Z","","0" +"BC-0189","336.9599914550781","336.9599914550781","","2013-03-25T00:00:00Z","","0" +"NM-16678","35.18000030517578","35.18000030517578","","1976-01-07T00:00:00Z","","0" +"NM-17716","1.840000033378601","1.840000033378601","","1943-08-05T00:00:00Z","","0" +"EB-421","183.66000366210938","186.66000366210938","","2004-09-01T00:00:00Z","","-3" +"NM-07270","36.72999954223633","36.72999954223633","","1961-03-01T00:00:00Z","","0" +"NM-05060","79.20999908447266","79.20999908447266","","1991-05-23T00:00:00Z","","0" +"SB-0299","145.41000366210938","145.41000366210938","","2019-04-10T00:00:00Z","","0" +"NM-11113","-33.34000015258789","-33.34000015258789","","1911-10-24T00:00:00Z","","0" +"NM-22340","290","290","","1960-01-01T00:00:00Z","","0" +"NM-11156","202.19000244140625","202.19000244140625","","1970-04-03T00:00:00Z","","0" +"NM-15178","134.5800018310547","134.5800018310547","","1975-03-25T00:00:00Z","","0" +"NM-00718","148.58999633789062","148.58999633789062","","2014-07-30T00:00:00Z","","0" +"NM-13679","14.949999809265137","14.949999809265137","","1989-01-18T00:00:00Z","","0" +"TV-218","213.0500030517578","212.4499969482422","","2002-06-14T00:00:00Z","","0.6000000238418579" +"NM-02101","7.199999809265137","7.199999809265137","","1984-04-15T00:00:00Z","","0" +"NM-03228","87.19999694824219","87.19999694824219","","2006-01-24T00:00:00Z","","0" +"NM-03183","87.5199966430664","87.5199966430664","","1960-02-11T00:00:00Z","","0" +"NM-05780","40.599998474121094","40.599998474121094","","1940-01-05T00:00:00Z","","0" +"NM-28021","510.75","510.75","S","2015-04-27T00:00:00Z","","0" +"NM-28255","85.26000213623047","85.26000213623047","","1952-08-15T00:00:00Z","","0" +"NM-00417","96.55000305175781","96.55000305175781","","1984-02-08T00:00:00Z","","0" +"NM-10058","7.289999961853027","7.289999961853027","","1978-05-24T00:00:00Z","","0" +"NM-28257","-19.6299991607666","-19.6299991607666","","1989-11-25T00:00:00Z","","0" +"NM-00705","119.08999633789062","119.08999633789062","","2009-03-03T00:00:00Z","","0" +"NM-22648","179.64999389648438","179.64999389648438","","1954-07-05T00:00:00Z","","0" +"NM-23202","97.16999816894531","97.16999816894531","","1956-04-17T00:00:00Z","","0" +"NM-27727","40.90999984741211","40.90999984741211","","1990-04-18T00:00:00Z","","0" +"BC-0209","235.61000061035156","235.61000061035156","","2012-05-10T00:00:00Z","","0" +"NM-28253","24.540000915527344","24.540000915527344","","1991-05-05T00:00:00Z","","0" +"NM-05205","86.5199966430664","86.5199966430664","","1991-05-22T00:00:00Z","","0" +"NM-10383","175.41000366210938","175.41000366210938","","1981-04-07T00:00:00Z","","0" +"NM-12339","11.800000190734863","11.800000190734863","","1937-08-30T00:00:00Z","","0" +"NM-12574","30.739999771118164","30.739999771118164","","1986-03-04T00:00:00Z","","0" +"NM-17336","34.380001068115234","34.380001068115234","","1945-01-18T00:00:00Z","","0" +"NM-02620","7","7","","1989-08-15T00:00:00Z","","0" +"NM-26482","56.77000045776367","56.77000045776367","","2004-05-12T00:00:00Z","","0" +"NM-17623","48.959999084472656","48.959999084472656","","1980-05-07T00:00:00Z","","0" +"QY-0342","27","27","P","1955-02-16T00:00:00Z","","0" +"NM-14088","-4.46999979019165","-4.46999979019165","","1905-10-10T00:00:00Z","","0" +"NM-02794","77.43000030517578","77.43000030517578","","1975-01-13T00:00:00Z","","0" +"NM-02181","9.949999809265137","9.949999809265137","","2003-01-27T00:00:00Z","","0" +"NM-10212","-21.790000915527344","-21.790000915527344","","1907-12-24T00:00:00Z","","0" +"NM-23203","12.109999656677246","12.109999656677246","Z","1995-03-31T00:00:00Z","","0" +"NM-10626","-28.719999313354492","-28.719999313354492","","1911-09-01T00:00:00Z","","0" +"NM-00819","90.68000030517578","90.68000030517578","","2014-07-28T00:00:00Z","","0" +"NM-28257","-12.930000305175781","-12.930000305175781","","1996-09-25T00:00:00Z","","0" +"AB-0180","151.4600067138672","151.4600067138672","","1998-02-06T00:00:00Z","","" +"NM-02239","36","36","","1970-01-20T00:00:00Z","","0" +"NM-12165","54.189998626708984","54.189998626708984","","1974-01-10T00:00:00Z","","0" +"NM-28255","85.01000213623047","85.01000213623047","","1998-03-25T00:00:00Z","","0" +"NM-28091","833.6199951171875","833.6199951171875","","2006-01-30T00:00:00Z","","0" +"NM-27729","106.66999816894531","106.66999816894531","","1997-03-18T00:00:00Z","","0" +"NM-18432","237.99000549316406","237.99000549316406","","1957-01-16T00:00:00Z","","0" +"NM-28253","39.689998626708984","39.689998626708984","","1974-03-15T00:00:00Z","","0" +"NM-14523","280","280","","1955-01-01T00:00:00Z","","0" +"DE-0237","103.56999969482422","103.56999969482422","","2004-08-25T00:00:00Z","","0" +"NM-21054","19.18000030517578","19.18000030517578","R","1992-02-12T00:00:00Z","","0" +"NM-17264","51.29999923706055","51.29999923706055","","1982-03-16T00:00:00Z","","0" +"SB-0234","130","130","","2000-01-11T00:00:00Z","","0" +"NM-02209","101.06999969482422","101.06999969482422","","1992-01-22T00:00:00Z","","0" +"NM-09940","17.360000610351562","17.360000610351562","","1963-01-23T00:00:00Z","","0" +"AB-0038","358.7799987792969","358.7799987792969","","2004-08-04T00:00:00Z","","" +"NM-03390","34.5","34.5","","2006-09-12T00:00:00Z","","0" +"NM-20229","75.25","75.25","","1968-01-23T00:00:00Z","","0" +"NM-13596","-41.400001525878906","-41.400001525878906","","1943-01-13T00:00:00Z","","0" +"NM-28252","53.720001220703125","53.720001220703125","","1968-03-25T00:00:00Z","","0" +"NM-12667","130.44000244140625","130.44000244140625","","1953-09-04T00:00:00Z","","0" +"NM-09268","135.38999938964844","135.38999938964844","","1948-09-18T00:00:00Z","","0" +"NM-27526","37.939998626708984","37.939998626708984","","1997-03-12T00:00:00Z","","0" +"NM-15764","133.86000061035156","133.86000061035156","","1957-01-17T00:00:00Z","","0" +"NM-24453","108.5","108.5","","1988-03-10T00:00:00Z","","0" +"NM-02520","6.800000190734863","6.800000190734863","","1983-02-15T00:00:00Z","","0" +"NM-03390","32.130001068115234","32.130001068115234","","1993-06-29T00:00:00Z","","0" +"NM-02382","53.279998779296875","53.279998779296875","","1939-06-29T00:00:00Z","","0" +"WL-0087","80.45833587646484","78.77833557128906","","2002-02-28T00:00:00Z","","1.6799999475479126" +"NM-02591","11.699999809265137","11.699999809265137","","2001-09-15T00:00:00Z","","0" +"NM-03183","86.6500015258789","86.6500015258789","","1958-12-16T00:00:00Z","","0" +"NM-03687","136.89999389648438","136.89999389648438","","1993-01-26T00:00:00Z","","0" +"NM-02523","75.9000015258789","75.9000015258789","P","1990-06-28T00:00:00Z","","0" +"NM-23149","92.91999816894531","92.91999816894531","P","1952-06-25T00:00:00Z","","0" +"NM-08622","34.529998779296875","34.529998779296875","","1981-02-25T00:00:00Z","","0" +"NM-01955","3.5999999046325684","3.5999999046325684","","1947-07-15T00:00:00Z","","0" +"NM-00096","24.110000610351562","24.110000610351562","","2016-01-05T00:00:00Z","","0" +"NM-00575","63.29999923706055","63.29999923706055","","1964-02-13T00:00:00Z","","0" +"NM-26706","12.59000015258789","12.59000015258789","","1981-02-18T00:00:00Z","","0" +"NM-02363","231.3699951171875","230.22000122070312","","2020-02-13T00:00:00Z","","1.149999976158142" +"AR-0046","29.459999084472656","28.989999771118164","","2016-05-31T00:00:00Z","","0.4699999988079071" +"NM-22296","31.350000381469727","31.350000381469727","","1989-07-31T00:00:00Z","","0" +"NM-22566","131.55999755859375","131.55999755859375","","1985-11-01T00:00:00Z","","0" +"NM-04478","179.8800048828125","179.8800048828125","","2008-02-13T00:00:00Z","","0" +"NM-04480","110.44999694824219","110.44999694824219","","1965-01-07T00:00:00Z","","0" +"NM-13980","-42.58000183105469","-42.58000183105469","","1911-10-18T00:00:00Z","","0" +"NM-24453","105.1500015258789","105.1500015258789","","1992-12-05T00:00:00Z","","0" +"NM-09682","434.760009765625","434.760009765625","","1977-12-17T00:00:00Z","","0" +"SB-0299","141.94000244140625","141.94000244140625","","2009-10-20T00:00:00Z","","0" +"NM-02501","56.220001220703125","56.220001220703125","","1992-11-02T00:00:00Z","","0" +"NM-03340","8.329999923706055","8.329999923706055","","2003-09-29T00:00:00Z","","0" +"NM-26432","8.09000015258789","8.09000015258789","","1987-01-06T00:00:00Z","","0" +"AB-0136","9.199999809265137","9.199999809265137","","1988-11-28T00:00:00Z","","0" +"NM-03078","136.75","136.75","R","1987-06-30T00:00:00Z","","0" +"NM-13900","3.549999952316284","3.549999952316284","","1958-12-02T00:00:00Z","","0" +"NM-08277","33.400001525878906","33.400001525878906","","1976-01-28T00:00:00Z","","0" +"NM-02442","65.81999969482422","65.81999969482422","","1998-02-12T00:00:00Z","","0" +"NM-13431","50.029998779296875","50.029998779296875","","1937-07-31T00:00:00Z","","0" +"NM-27474","91.12000274658203","91.12000274658203","","1960-11-16T00:00:00Z","","0" +"NM-07773","48.279998779296875","48.279998779296875","P","1956-03-06T00:00:00Z","","0" +"NM-11869","21.700000762939453","21.700000762939453","","1939-11-27T00:00:00Z","","0" +"NM-01985","14.470000267028809","14.470000267028809","","2013-01-14T00:00:00Z","","0" +"NM-12564","30.1200008392334","30.1200008392334","","1979-01-04T00:00:00Z","","0" +"NM-06788","178.72999572753906","178.72999572753906","","1998-02-19T00:00:00Z","","0" +"NM-02174","91.22000122070312","91.22000122070312","","1997-01-31T00:00:00Z","","0" +"BC-0067","","273.1000061035156","","2021-03-13T00:00:00Z","","1.5800000429153442" +"AB-0162","485.760009765625","485.760009765625","","1998-08-14T00:00:00Z","","" +"NM-11889","2.049999952316284","2.049999952316284","","1953-02-01T00:00:00Z","","0" +"NM-28250","93.33000183105469","93.33000183105469","","2012-12-26T00:00:00Z","","0" +"NM-05966","57.02000045776367","57.02000045776367","","1959-01-15T00:00:00Z","","0" +"NM-09519","2.7100000381469727","2.7100000381469727","","1943-02-20T00:00:00Z","","0" +"NM-02840","7.679999828338623","7.679999828338623","","1968-07-01T00:00:00Z","","0" +"NM-11572","60.2400016784668","60.2400016784668","","1966-03-02T00:00:00Z","","0" +"QY-0729","105.0999984741211","105.0999984741211","","1955-08-03T00:00:00Z","","0" +"NM-00640","42.709999084472656","42.709999084472656","","2001-01-23T00:00:00Z","","0" +"NM-12749","24.489999771118164","24.489999771118164","","1938-03-20T00:00:00Z","","0" +"NM-24644","252.39999389648438","252.39999389648438","","1954-05-26T00:00:00Z","","0" +"NM-09932","69.72000122070312","69.72000122070312","","1956-08-28T00:00:00Z","","0" +"NM-22235","43.400001525878906","43.400001525878906","","1957-11-12T00:00:00Z","","0" +"SM-0029","38.220001220703125","37.21000289916992","","2007-12-14T00:00:00Z","","1.0099999904632568" +"NM-02412","19.229999542236328","19.229999542236328","","1958-11-20T00:00:00Z","","0" +"NM-11318","15.729999542236328","15.729999542236328","","1978-12-29T00:00:00Z","","0" +"NM-24482","3.0799999237060547","3.0799999237060547","","1988-05-09T00:00:00Z","","0" +"NM-01889","16.68000030517578","16.68000030517578","","2009-09-03T00:00:00Z","","0" +"NM-13408","-31.610000610351562","-31.610000610351562","","1908-12-10T00:00:00Z","","0" +"NM-23350","98.22000122070312","98.22000122070312","","1947-08-07T00:00:00Z","","0" +"NM-06016","56.70000076293945","56.70000076293945","","1955-01-18T00:00:00Z","","0" +"NM-22554","202.38999938964844","202.38999938964844","T","1984-10-29T00:00:00Z","","0" +"NM-07888","656.9600219726562","656.9600219726562","","1975-04-20T00:00:00Z","","0" +"NM-02165","12.390000343322754","12.390000343322754","","2012-02-21T00:00:00Z","","0" +"DE-0113","39.83000183105469","39.83000183105469","","2010-04-19T00:00:00Z","","0" +"AB-0184","349.510009765625","349.510009765625","","1997-05-14T00:00:00Z","","" +"NM-08647","27.329999923706055","27.329999923706055","","1939-11-11T00:00:00Z","","0" +"NM-04632","16.899999618530273","16.899999618530273","","1955-09-15T00:00:00Z","","0" +"NM-06060","22.200000762939453","22.200000762939453","","1952-07-18T00:00:00Z","","0" +"SB-0235","108.1500015258789","108.1500015258789","","1965-01-27T00:00:00Z","","0" +"NM-00710","215.44000244140625","215.44000244140625","S","2008-07-31T00:00:00Z","","0" +"NM-18432","235.05999755859375","235.05999755859375","","1954-11-24T00:00:00Z","","0" +"NM-00498","66.2699966430664","66.2699966430664","","1974-09-01T00:00:00Z","","0" +"NM-09693","-10.199999809265137","-10.199999809265137","","1962-01-04T00:00:00Z","","0" +"NM-05309","7.400000095367432","7.400000095367432","","1976-07-15T00:00:00Z","","0" +"BC-0122","226.5","226.5","","2015-09-08T00:00:00Z","","0" +"NM-28236","","","D","2011-05-25T00:00:00Z","","0" +"EB-339","139.66000366210938","137.66000366210938","","2015-06-01T00:00:00Z","","2" +"EB-280","235.72000122070312","235.72000122070312","","1995-04-03T00:00:00Z","","0" +"NM-28011","491.17999267578125","491.17999267578125","S","2015-05-15T00:00:00Z","","0" +"NM-07888","620.7000122070312","620.7000122070312","","1973-05-01T00:00:00Z","","0" +"NM-00366","130","130","","1964-11-01T00:00:00Z","","0" +"NM-03444","53.709999084472656","53.709999084472656","Z","1997-12-08T00:00:00Z","","0" +"NM-07719","45.849998474121094","45.849998474121094","","1941-05-13T00:00:00Z","","0" +"NM-04444","17.100000381469727","17.100000381469727","","1958-05-22T00:00:00Z","","0" +"NM-10659","84.05000305175781","84.05000305175781","","1954-12-03T00:00:00Z","","0" +"NM-17393","20.440000534057617","20.440000534057617","","1933-03-11T00:00:00Z","","0" +"NM-18306","75.44000244140625","75.44000244140625","","1958-02-13T00:00:00Z","","0" +"NM-20322","68.04000091552734","68.04000091552734","","1987-03-09T00:00:00Z","","0" +"NM-28256","138.7899932861328","138.7899932861328","","2016-11-05T00:00:00Z","","0" +"NM-03903","328.239990234375","328.239990234375","","1975-03-16T00:00:00Z","","0" +"EB-261","7.670000076293945","5.869999885559082","","2004-02-09T00:00:00Z","","1.7999999523162842" +"NM-10736","11.09000015258789","11.09000015258789","","1941-11-12T00:00:00Z","","0" +"NM-11756","84.9000015258789","84.9000015258789","","1952-01-21T00:00:00Z","","0" +"NM-01895","41.970001220703125","41.970001220703125","","1998-08-27T00:00:00Z","","0" +"NM-11937","77.29000091552734","77.29000091552734","","1971-02-18T00:00:00Z","","0" +"NM-03423","25.520000457763672","25.520000457763672","","2003-02-04T00:00:00Z","","0" +"EB-164","403.239990234375","401.3399963378906","","2003-06-11T00:00:00Z","","1.899999976158142" +"NM-14757","104.19000244140625","104.19000244140625","","1980-01-31T00:00:00Z","","0" +"SB-0299","129.02000427246094","129.02000427246094","","2010-02-28T00:00:00Z","","0" +"EB-265","-8.140000343322754","-8.140000343322754","","2015-12-16T00:00:00Z","","0" +"NM-03845","5.369999885559082","5.369999885559082","","2011-06-21T00:00:00Z","","0" +"NM-16621","47.33000183105469","47.33000183105469","","1978-01-06T00:00:00Z","","0" +"NM-02642","74.30000305175781","74.30000305175781","","1956-01-30T00:00:00Z","","0" +"NM-28023","486.1600036621094","486.1600036621094","S","2015-05-09T00:00:00Z","","0" +"NM-28258","143.4499969482422","143.4499969482422","","2017-12-15T00:00:00Z","","0" +"NM-06676","12.899999618530273","12.899999618530273","","1972-10-15T00:00:00Z","","0" +"NM-01875","176.9499969482422","176.9499969482422","","1987-01-07T00:00:00Z","","0" +"NM-02260","54.369998931884766","54.369998931884766","","1998-07-07T00:00:00Z","","0" +"NM-19637","33.77000045776367","33.77000045776367","","1941-07-09T00:00:00Z","","0" +"NM-13728","-11.399999618530273","-11.399999618530273","","1908-06-24T00:00:00Z","","0" +"NM-13389","-6.78000020980835","-6.78000020980835","","1911-10-09T00:00:00Z","","0" +"NM-18353","149.07000732421875","149.07000732421875","","1974-12-20T00:00:00Z","","0" +"NM-14330","49.4900016784668","49.4900016784668","","1970-01-20T00:00:00Z","","0" +"QY-0827","110.80000305175781","110.80000305175781","","1955-08-02T00:00:00Z","","0" +"NM-05762","63.59000015258789","63.59000015258789","","1962-09-01T00:00:00Z","","0" +"NM-10854","9.960000038146973","9.960000038146973","","1950-01-13T00:00:00Z","","0" +"NM-25109","446","446","","1960-01-01T00:00:00Z","","0" +"NM-11358","4.800000190734863","4.800000190734863","","1974-12-16T00:00:00Z","","0" +"NM-12360","-10.529999732971191","-10.529999732971191","","1908-03-17T00:00:00Z","","0" +"SO-0252","11.600000381469727","11.170000076293945","","2020-10-03T00:00:00Z","","0.4300000071525574" +"EB-245","191.89999389648438","191.89999389648438","","1999-07-21T00:00:00Z","","0" +"SB-0299","125.80000305175781","125.80000305175781","","2005-01-25T00:00:00Z","","0" +"NM-05672","133.41000366210938","133.41000366210938","","1959-01-20T00:00:00Z","","0" +"DE-0193","50.279998779296875","50.279998779296875","","2011-11-10T00:00:00Z","","0" +"NM-04821","248.63999938964844","248.63999938964844","","1968-03-27T00:00:00Z","","0" +"NM-14422","36.56999969482422","36.56999969482422","","1984-01-30T00:00:00Z","","0" +"NM-00253","19.719999313354492","19.719999313354492","","1970-01-01T00:00:00Z","","0" +"NM-28081","32.90999984741211","32.90999984741211","","2016-05-26T00:00:00Z","","0" +"TC-219","346.260009765625","346.260009765625","","2008-05-15T00:00:00Z","","0" +"EB-264","11.170000076293945","11.170000076293945","","2013-05-08T00:00:00Z","","0" +"NM-00705","137.5500030517578","137.5500030517578","","2013-03-28T00:00:00Z","","0" +"NM-04632","7.800000190734863","7.800000190734863","","1973-09-15T00:00:00Z","","0" +"NM-03932","99.41000366210938","99.41000366210938","","1965-08-03T00:00:00Z","","0" +"WL-0086","55.83333206176758","54.073333740234375","","1997-11-18T00:00:00Z","","1.7599999904632568" +"NM-28015","498.7099914550781","498.7099914550781","S","2015-05-15T00:00:00Z","","0" +"NM-28254","30.709999084472656","30.709999084472656","","1969-12-15T00:00:00Z","","0" +"NM-07092","43.40999984741211","43.40999984741211","","2003-07-10T00:00:00Z","","0" +"NM-16189","15","15","","1955-09-01T00:00:00Z","","0" +"NM-05462","99.19999694824219","99.19999694824219","","1954-07-22T00:00:00Z","","0" +"DE-0074","88.44999694824219","88.44999694824219","","2008-12-08T00:00:00Z","","0" +"NM-28253","31.540000915527344","31.540000915527344","","1994-08-05T00:00:00Z","","0" +"NM-05972","30.059999465942383","30.059999465942383","","1947-07-29T00:00:00Z","","0" +"NM-17716","2.740000009536743","2.740000009536743","","1944-09-18T00:00:00Z","","0" +"NM-12371","57.79999923706055","57.79999923706055","","1947-01-30T00:00:00Z","","0" +"DE-0110","","","D","2013-05-09T00:00:00Z","","0" +"NM-02495","169.2899932861328","169.2899932861328","","1982-02-01T00:00:00Z","","0" +"NM-02285","9.960000038146973","9.960000038146973","","2003-12-19T00:00:00Z","","0" +"NM-02073","13.180000305175781","13.180000305175781","","1994-02-16T00:00:00Z","","0" +"DE-0106","45.310001373291016","45.310001373291016","","2016-09-15T00:00:00Z","","0" +"NM-12501","16.170000076293945","16.170000076293945","","1963-01-08T00:00:00Z","","0" +"NM-02456","131.22999572753906","131.22999572753906","","1982-02-12T00:00:00Z","","0" +"EB-058","469.5","467.70001220703125","","1994-08-23T00:00:00Z","","1.7999999523162842" +"NM-20085","45","45","P","1968-01-25T00:00:00Z","","0" +"NM-11920","2.2300000190734863","2.2300000190734863","","1952-01-31T00:00:00Z","","0" +"NM-07795","19.329999923706055","19.329999923706055","","1961-05-12T00:00:00Z","","0" +"EB-269","404.6099853515625","404.6099853515625","","2003-09-08T00:00:00Z","","0" +"NM-13847","-7.929999828338623","-7.929999828338623","","1905-10-05T00:00:00Z","","0" +"NM-02760","84.41000366210938","84.41000366210938","Z","1994-03-02T00:00:00Z","","0" +"NM-02384","12.600000381469727","12.600000381469727","","1965-01-15T00:00:00Z","","0" +"NM-02352","8.899999618530273","8.899999618530273","","1988-03-15T00:00:00Z","","0" +"NM-02412","35.040000915527344","35.040000915527344","","1952-01-07T00:00:00Z","","0" +"NM-04362","106.91000366210938","106.91000366210938","P","2012-03-09T00:00:00Z","","0" +"NM-03649","32.68000030517578","32.68000030517578","","2009-06-03T00:00:00Z","","0" +"NM-11592","125.66000366210938","125.66000366210938","","1961-10-11T00:00:00Z","","0" +"NM-01346","113.12000274658203","113.12000274658203","","2009-03-12T00:00:00Z","","0" +"NM-03017","185.14999389648438","185.14999389648438","","1991-01-07T00:00:00Z","","0" +"NM-13106","7.53000020980835","7.53000020980835","","1960-04-19T00:00:00Z","","0" +"NM-10571","16.6299991607666","16.6299991607666","","1939-09-18T00:00:00Z","","0" +"DE-0282","82.5","82.5","","2019-09-16T00:00:00Z","","0" +"NM-14089","-9.199999809265137","-9.199999809265137","","1952-01-02T00:00:00Z","","0" +"NM-16985","32.43000030517578","32.43000030517578","","1948-01-10T00:00:00Z","","0" +"NM-00253","23.31999969482422","23.31999969482422","","1982-10-01T00:00:00Z","","0" +"NM-27720","52.59000015258789","52.59000015258789","","1949-09-28T00:00:00Z","","0" +"NM-13494","-18.899999618530273","-18.899999618530273","","1908-06-23T00:00:00Z","","0" +"NM-09178","24.579999923706055","24.579999923706055","","1937-12-18T00:00:00Z","","0" +"NM-14706","124.8499984741211","124.8499984741211","","1985-01-25T00:00:00Z","","0" +"NM-03389","29.260000228881836","29.260000228881836","","1989-05-31T00:00:00Z","","0" +"NM-17863","40.52000045776367","40.52000045776367","","1970-01-07T00:00:00Z","","0" +"NM-28259","129.11000061035156","129.11000061035156","","2003-10-15T00:00:00Z","","0" +"NM-08731","11.390000343322754","11.390000343322754","","1973-02-22T00:00:00Z","","0" +"NM-00644","20.969999313354492","20.969999313354492","S","2011-01-05T00:00:00Z","","0" +"NM-28250","78.02999877929688","78.02999877929688","","1997-04-05T00:00:00Z","","0" +"NM-02592","32.720001220703125","32.720001220703125","","1956-01-09T00:00:00Z","","0" +"NM-28258","124.44999694824219","124.44999694824219","","2017-02-24T00:00:00Z","","0" +"NM-01889","15.699999809265137","15.699999809265137","","2000-01-20T00:00:00Z","","0" +"BC-0223","299.2300109863281","299.2300109863281","","2018-09-12T00:00:00Z","","0" +"NM-11978","18.950000762939453","18.950000762939453","","1938-01-31T00:00:00Z","","0" +"NM-15463","102.19999694824219","102.19999694824219","","1964-10-27T00:00:00Z","","0" +"NM-01247","63.54999923706055","63.54999923706055","","1998-08-12T00:00:00Z","","0" +"NM-17716","1.7899999618530273","1.7899999618530273","","1944-11-08T00:00:00Z","","0" +"NM-03903","329.80999755859375","329.80999755859375","","1975-11-06T00:00:00Z","","0" +"NM-08577","27.770000457763672","27.770000457763672","","1957-08-29T00:00:00Z","","0" +"NM-06893","14.260000228881836","14.260000228881836","","1960-03-21T00:00:00Z","","0" +"NM-21428","416.70001220703125","416.70001220703125","R","1992-02-12T00:00:00Z","","0" +"NM-02006","6.900000095367432","6.900000095367432","","1989-07-15T00:00:00Z","","0" +"NM-20974","189.8000030517578","189.8000030517578","","1977-03-01T00:00:00Z","","0" +"NM-22038","137.24000549316406","137.24000549316406","","1949-05-03T00:00:00Z","","0" +"NM-24987","120.83999633789062","120.83999633789062","","1965-02-05T00:00:00Z","","0" +"SB-0299","123.45999908447266","123.45999908447266","","1994-06-10T00:00:00Z","","0" +"NM-21719","47.84000015258789","47.84000015258789","S","1985-12-03T00:00:00Z","","0" +"NM-24820","158.89999389648438","158.89999389648438","","1973-11-15T00:00:00Z","","0" +"NM-08655","24.1299991607666","24.1299991607666","R","1966-03-08T00:00:00Z","","0" +"NM-02371","164.57000732421875","164.57000732421875","","1983-01-07T00:00:00Z","","0" +"NM-13164","-33.34000015258789","-33.34000015258789","","1909-09-24T00:00:00Z","","0" +"NM-02351","146.1199951171875","146.1199951171875","","1982-01-26T00:00:00Z","","0" +"NM-02776","11.970000267028809","11.970000267028809","","1959-01-16T00:00:00Z","","0" +"NM-21760","63.619998931884766","63.619998931884766","","1973-08-28T00:00:00Z","","0" +"NM-02017","8.300000190734863","8.300000190734863","","1961-01-15T00:00:00Z","","0" +"NM-13792","-6.78000020980835","-6.78000020980835","","1914-01-28T00:00:00Z","","0" +"NM-05554","114.63999938964844","114.63999938964844","S","1954-09-10T00:00:00Z","","0" +"NM-02199","10.59000015258789","10.59000015258789","","1999-01-25T00:00:00Z","","0" +"NM-02831","15.050000190734863","15.050000190734863","","1943-09-01T00:00:00Z","","0" +"NM-22648","173.08999633789062","173.08999633789062","","1956-03-29T00:00:00Z","","0" +"NM-07509","127.9000015258789","127.9000015258789","","1990-02-21T00:00:00Z","","0" +"NM-07275","9.779999732971191","9.779999732971191","","1952-01-07T00:00:00Z","","0" +"NM-16538","11.880000114440918","11.880000114440918","","1949-03-24T00:00:00Z","","0" +"NM-27673","74.91000366210938","74.91000366210938","","1980-01-07T00:00:00Z","","0" +"NM-28256","214.88999938964844","214.88999938964844","","1979-10-05T00:00:00Z","","0" +"NM-18592","7.690000057220459","7.690000057220459","","1950-08-11T00:00:00Z","","0" +"NM-03190","125.79000091552734","125.79000091552734","","2000-01-10T00:00:00Z","","0" +"NM-02207","8.199999809265137","8.199999809265137","","1946-11-15T00:00:00Z","","0" +"NM-09920","8.9399995803833","8.9399995803833","","1994-03-16T00:00:00Z","","0" +"NM-04525","83.5","83.5","","1976-01-05T00:00:00Z","","0" +"NM-21219","6.860000133514404","6.860000133514404","","1965-02-12T00:00:00Z","","0" +"NM-02398","20.280000686645508","20.280000686645508","","1974-01-25T00:00:00Z","","0" +"NM-02797","6.210000038146973","6.210000038146973","","1974-05-07T00:00:00Z","","0" +"NM-20616","129.4199981689453","129.4199981689453","","1945-08-03T00:00:00Z","","0" +"TV-217","277.1099853515625","276.5099792480469","","2003-05-05T00:00:00Z","","0.6000000238418579" +"NM-04206","28.709999084472656","28.709999084472656","","1948-09-20T00:00:00Z","","0" +"NM-27255","42.599998474121094","42.599998474121094","","1961-04-06T00:00:00Z","","0" +"NM-03017","172.25999450683594","172.25999450683594","","1986-01-13T00:00:00Z","","0" +"EB-485","441.3999938964844","440.3999938964844","P","2002-03-31T00:00:00Z","","1" +"NM-02279","24.139999389648438","24.139999389648438","","2001-04-25T00:00:00Z","","0" +"NM-01985","11.300000190734863","11.300000190734863","","1969-03-15T00:00:00Z","","0" +"NM-02158","7","7","","1999-08-15T00:00:00Z","","0" +"NM-19996","49.2400016784668","49.2400016784668","","1953-02-27T00:00:00Z","","0" +"NM-12184","-33.34000015258789","-33.34000015258789","","1910-06-01T00:00:00Z","","0" +"NM-28252","53.150001525878906","53.150001525878906","","1985-03-25T00:00:00Z","","0" +"NM-27834","68.93000030517578","68.93000030517578","","1985-01-16T00:00:00Z","","0" +"NM-07889","23.520000457763672","23.520000457763672","P","1961-02-28T00:00:00Z","","0" +"NM-12181","58.31999969482422","58.31999969482422","","1945-01-17T00:00:00Z","","0" +"NM-20390","97.72000122070312","97.72000122070312","","1959-01-22T00:00:00Z","","0" +"NM-01765","45.4900016784668","45.4900016784668","","1959-11-04T00:00:00Z","","0" +"NM-00633","52.290000915527344","52.290000915527344","","2001-01-25T00:00:00Z","","0" +"BC-0023","","59.400001525878906","","2021-03-06T00:00:00Z","","2.299999952316284" +"DE-0239","111.2699966430664","111.2699966430664","","2008-02-20T00:00:00Z","","0" +"NM-11909","57.209999084472656","57.209999084472656","","1939-08-16T00:00:00Z","","0" +"NM-10058","8.390000343322754","8.390000343322754","","1971-05-28T00:00:00Z","","0" +"NM-03230","393.80999755859375","393.80999755859375","","1982-02-18T00:00:00Z","","0" +"NM-21636","396.5","396.5","","1993-06-08T00:00:00Z","","0" +"NM-01841","246.72999572753906","246.72999572753906","","1975-01-20T00:00:00Z","","0" +"NM-01746","85.7300033569336","85.7300033569336","","1956-03-12T00:00:00Z","","0" +"NM-02256","5.099999904632568","5.099999904632568","","1985-10-15T00:00:00Z","","0" +"NM-04235","32.970001220703125","32.970001220703125","","1959-03-11T00:00:00Z","","0" +"NM-13914","-14.859999656677246","-14.859999656677246","","1914-01-27T00:00:00Z","","0" +"NM-28255","61.33000183105469","61.33000183105469","","1967-10-25T00:00:00Z","","0" +"NM-18500","287.739990234375","287.739990234375","","1987-01-09T00:00:00Z","","0" +"NM-22913","89.01000213623047","89.01000213623047","","2015-03-24T00:00:00Z","","0" +"NM-19784","72.72000122070312","72.72000122070312","","1947-09-18T00:00:00Z","","0" +"NM-22189","424.260009765625","424.260009765625","","2014-10-08T00:00:00Z","","0" +"NM-04455","22.940000534057617","22.940000534057617","","1962-01-02T00:00:00Z","","0" +"NM-14480","40.95000076293945","40.95000076293945","","1996-01-10T00:00:00Z","","0" +"NM-01299","92.70999908447266","92.70999908447266","","2005-09-09T00:00:00Z","","0" +"NM-13165","135.89999389648438","135.89999389648438","","1970-02-03T00:00:00Z","","0" +"NM-17193","34.189998626708984","34.189998626708984","","1937-01-10T00:00:00Z","","0" +"NM-00253","22.219999313354492","22.219999313354492","","1997-10-22T00:00:00Z","","0" +"NM-22707","182.3000030517578","182.3000030517578","","2007-07-10T00:00:00Z","","0" +"DE-0106","43.16999816894531","43.16999816894531","","2009-07-14T00:00:00Z","","0" +"NM-28252","47.34000015258789","47.34000015258789","","2010-05-15T00:00:00Z","","0" +"NM-00812","44.97999954223633","44.97999954223633","","1964-01-08T00:00:00Z","","0" +"NM-09949","0.10000000149011612","0.10000000149011612","","1938-01-19T00:00:00Z","","0" +"NM-19258","302.2799987792969","302.2799987792969","","1987-02-04T00:00:00Z","","0" +"NM-02180","15.720000267028809","15.720000267028809","","2008-01-17T00:00:00Z","","0" +"NM-02999","138.50999450683594","138.50999450683594","A","2010-03-03T00:00:00Z","","0" +"NM-28254","36.29999923706055","36.29999923706055","","2018-02-15T00:00:00Z","","0" +"NM-11973","66.33000183105469","66.33000183105469","","1966-02-16T00:00:00Z","","0" +"NM-11928","-0.05000000074505806","-0.05000000074505806","","1951-09-01T00:00:00Z","","0" +"NM-02435","66.8499984741211","66.8499984741211","","2006-10-05T00:00:00Z","","0" +"NM-12721","28.579999923706055","28.579999923706055","","1955-05-31T00:00:00Z","","0" +"NM-03421","41.369998931884766","41.369998931884766","Z","1997-12-31T00:00:00Z","","0" +"NM-20897","58.5","58.5","","1948-03-25T00:00:00Z","","0" +"NM-12650","58.0099983215332","58.0099983215332","","1962-01-15T00:00:00Z","","0" +"NM-11318","15.710000038146973","15.710000038146973","","1989-02-08T00:00:00Z","","0" +"NM-01895","","","D","2015-05-20T00:00:00Z","","0" +"NM-01899","61.310001373291016","61.310001373291016","","2008-02-20T00:00:00Z","","0" +"NM-12825","21.219999313354492","21.219999313354492","","1986-01-29T00:00:00Z","","0" +"NM-07219","389","389","","2010-01-29T00:00:00Z","","0" +"NM-03014","43.810001373291016","43.810001373291016","","1953-01-27T00:00:00Z","","0" +"BC-0183","458.8800048828125","458.8800048828125","","2017-02-01T00:00:00Z","","0" +"NM-28251","85.62999725341797","85.62999725341797","","1984-12-05T00:00:00Z","","0" +"NM-14515","70.68000030517578","70.68000030517578","","1988-07-27T00:00:00Z","","0" +"NM-15990","39.709999084472656","39.709999084472656","","1990-01-03T00:00:00Z","","0" +"NM-26964","38.939998626708984","41.63999938964844","R","1997-12-05T00:00:00Z","","0" +"NM-18214","1.3200000524520874","1.3200000524520874","","1962-03-14T00:00:00Z","","0" +"NM-10069","9.229999542236328","9.229999542236328","","1968-05-10T00:00:00Z","","0" +"NM-03349","36.630001068115234","36.630001068115234","","2007-07-27T00:00:00Z","","0" +"NM-00245","79.08999633789062","79.08999633789062","","1979-01-18T00:00:00Z","","0" +"NM-02980","47","47","","1994-01-05T00:00:00Z","","0" +"NM-10113","65.43000030517578","65.43000030517578","","1966-02-18T00:00:00Z","","0" +"NM-13106","10.069999694824219","10.069999694824219","","1958-08-25T00:00:00Z","","0" +"NM-17618","16.940000534057617","16.940000534057617","","1959-03-12T00:00:00Z","","0" +"NM-03050","186.1999969482422","186.1999969482422","R","1995-01-07T00:00:00Z","","0" +"NM-01110","144.3300018310547","144.3300018310547","","1997-01-15T00:00:00Z","","0" +"NM-18627","56.790000915527344","56.790000915527344","","1982-02-25T00:00:00Z","","0" +"NM-09386","10.029999732971191","10.029999732971191","","1961-06-13T00:00:00Z","","0" +"NM-10083","196.67999267578125","196.67999267578125","","1971-03-31T00:00:00Z","","0" +"NM-28255","17.8799991607666","17.8799991607666","","1949-08-05T00:00:00Z","","0" +"NM-28254","128.9499969482422","128.9499969482422","","1959-08-05T00:00:00Z","","0" +"NM-00256","88.9000015258789","88.9000015258789","","1965-08-17T00:00:00Z","","0" +"NM-01841","228.9499969482422","228.9499969482422","","1965-02-20T00:00:00Z","","0" +"NM-03468","152.42999267578125","152.42999267578125","P","2012-08-30T00:00:00Z","","0" +"NM-10096","10.470000267028809","10.470000267028809","","1975-03-17T00:00:00Z","","0" +"NM-02669","55.560001373291016","55.560001373291016","","1988-01-19T00:00:00Z","","0" +"NM-04020","115.52999877929688","115.52999877929688","","1957-11-20T00:00:00Z","","0" +"NM-02017","6.800000190734863","6.800000190734863","","1994-12-15T00:00:00Z","","0" +"NM-05956","85.51000213623047","85.51000213623047","","1951-01-10T00:00:00Z","","0" +"NM-03763","54.060001373291016","54.060001373291016","","1967-01-20T00:00:00Z","","0" +"NM-11785","36.43000030517578","36.43000030517578","","1941-06-12T00:00:00Z","","0" +"NM-05467","137.8000030517578","137.8000030517578","","1959-01-20T00:00:00Z","","0" +"NM-02167","23.81999969482422","23.81999969482422","","2003-09-24T00:00:00Z","","0" +"NM-24933","6.46999979019165","6.46999979019165","","1960-10-12T00:00:00Z","","0" +"NM-23789","128.5500030517578","128.5500030517578","","1966-12-20T00:00:00Z","","0" +"NM-21729","43.560001373291016","43.560001373291016","","1952-11-28T00:00:00Z","","0" +"NM-00500","81.2699966430664","81.2699966430664","","1982-01-06T00:00:00Z","","0" +"NM-03345","80.08000183105469","80.08000183105469","P","1949-11-04T00:00:00Z","","0" +"NM-27603","68.87999725341797","68.87999725341797","S","1963-01-07T00:00:00Z","","0" +"NM-17034","17.899999618530273","17.899999618530273","","1943-01-31T00:00:00Z","","0" +"NM-24873","144.86000061035156","144.86000061035156","","1959-02-05T00:00:00Z","","0" +"DE-0193","51.9900016784668","51.9900016784668","","2014-06-24T00:00:00Z","","0" +"NM-01884","11.539999961853027","11.539999961853027","","2004-04-13T00:00:00Z","","0" +"AB-0076","7.5","7.5","","2007-02-05T00:00:00Z","","" +"NM-11331","10.779999732971191","10.779999732971191","","1976-09-20T00:00:00Z","","0" +"NM-07405","22.530000686645508","22.530000686645508","","1986-03-25T00:00:00Z","","0" +"NM-02801","12.989999771118164","12.989999771118164","","1954-01-29T00:00:00Z","","0" +"NM-02237","61.369998931884766","61.369998931884766","R","1949-01-11T00:00:00Z","","0" +"SB-0299","125.20999908447266","125.20999908447266","","1996-11-05T00:00:00Z","","0" +"AB-0212","154.25","154.25","","2010-02-05T00:00:00Z","","" +"AB-0070","151.67999267578125","151.67999267578125","","2008-04-02T00:00:00Z","","" +"NM-16882","14.050000190734863","14.050000190734863","","1944-08-06T00:00:00Z","","0" +"EB-269","93.1500015258789","93.1500015258789","","2012-09-14T00:00:00Z","","0" +"NM-27255","29.850000381469727","29.850000381469727","","1959-08-10T00:00:00Z","","0" +"NM-01796","6.900000095367432","6.900000095367432","","1979-06-15T00:00:00Z","","0" +"NM-05516","5.400000095367432","5.400000095367432","","1948-07-15T00:00:00Z","","0" +"NM-01272","","","D","1995-02-10T00:00:00Z","","0" +"NM-00498","65.7699966430664","65.7699966430664","","1977-01-01T00:00:00Z","","0" +"TO-0313","15.800000190734863","15.800000190734863","","1941-03-11T00:00:00Z","","0" +"NM-02607","18.34000015258789","18.34000015258789","","1956-01-31T00:00:00Z","","0" +"NM-13064","-5.78000020980835","-5.78000020980835","","1914-05-31T00:00:00Z","","0" +"NM-02506","124.25","124.25","","2006-02-08T00:00:00Z","","0" +"NM-01971","8.300000190734863","8.300000190734863","","1948-03-15T00:00:00Z","","0" +"NM-27571","9.869999885559082","9.869999885559082","","1955-02-01T00:00:00Z","","0" +"NM-03409","453","453","","1992-03-13T00:00:00Z","","0" +"SV-0024","124.0999984741211","122.18000030517578","","2019-02-23T00:00:00Z","","1.9199999570846558" +"NM-08071","9.5","9.5","","1985-03-15T00:00:00Z","","0" +"NM-01437","135.7899932861328","135.7899932861328","","1988-02-26T00:00:00Z","","0" +"NM-00987","363.6000061035156","363.6000061035156","","2005-03-09T00:00:00Z","","0" +"BC-0162","211.64999389648438","211.64999389648438","","2014-06-03T00:00:00Z","","0" +"NM-10331","583.489990234375","583.489990234375","","1962-11-01T00:00:00Z","","0" +"NM-21446","8.390000343322754","8.390000343322754","","1958-03-11T00:00:00Z","","0" +"NM-02148","130.02999877929688","130.02999877929688","","1972-01-03T00:00:00Z","","0" +"NM-17027","43.810001373291016","43.810001373291016","","1967-01-17T00:00:00Z","","0" +"NM-28252","36.79999923706055","36.79999923706055","","1992-05-25T00:00:00Z","","0" +"EB-229","214.75999450683594","220.75999450683594","","1979-10-23T00:00:00Z","","-6" +"NM-22466","61.029998779296875","61.029998779296875","R","1990-06-15T00:00:00Z","","0" +"NM-13632","38.869998931884766","38.869998931884766","","1996-01-23T00:00:00Z","","0" +"NM-01986","8.5","8.5","","1952-10-15T00:00:00Z","","0" +"NM-25979","24.8700008392334","24.8700008392334","","1967-04-12T00:00:00Z","","0" +"NM-00644","35.540000915527344","35.540000915527344","","1981-11-01T00:00:00Z","","0" +"NM-08863","63.43000030517578","63.43000030517578","S","1961-04-13T00:00:00Z","","0" +"NM-02256","6.5","6.5","","1951-05-15T00:00:00Z","","0" +"DE-0186","47.119998931884766","47.119998931884766","","2015-11-24T00:00:00Z","","0" +"NM-13425","397.95001220703125","397.95001220703125","","1960-01-14T00:00:00Z","","0" +"NM-04550","154.10000610351562","154.10000610351562","","1983-01-11T00:00:00Z","","0" +"NM-24987","92.83000183105469","92.83000183105469","","1959-02-25T00:00:00Z","","0" +"WL-0099","248.8000030517578","248.8000030517578","","2017-10-04T00:00:00Z","0001-01-01T09:04:00Z","0" +"NM-10335","27.020000457763672","27.020000457763672","","1947-01-14T00:00:00Z","","0" +"TB-0111","61.09000015258789","60.38999938964844","","2011-02-17T00:00:00Z","","0.699999988079071" +"NM-14100","413.7099914550781","413.7099914550781","","1956-04-11T00:00:00Z","","0" +"NM-22708","199.4499969482422","199.4499969482422","","1969-01-13T00:00:00Z","","0" +"NM-00213","184","184","","1965-03-01T00:00:00Z","","0" +"NM-03043","85.29000091552734","85.29000091552734","","1985-01-14T00:00:00Z","","0" +"NM-03378","33.65999984741211","33.65999984741211","","1993-10-06T00:00:00Z","","0" +"EB-484","476.6000061035156","476","Z","1996-12-31T00:00:00Z","","0.6000000238418579" +"NM-24041","200","200","","1993-09-02T00:00:00Z","","0" +"BC-0217","29.527999877929688","29.527999877929688","","2012-08-01T00:00:00Z","","0" +"AB-0100","726.77001953125","726.77001953125","","1999-08-25T00:00:00Z","","" +"SO-0127","9.1899995803833","7.729999542236328","","2018-11-29T00:00:00Z","0001-01-01T09:39:00Z","1.4600000381469727" +"NM-07133","68.18000030517578","68.18000030517578","","2006-10-03T00:00:00Z","","0" +"NM-07684","129.89999389648438","129.89999389648438","","1976-01-28T00:00:00Z","","0" +"NM-12597","68.30999755859375","68.30999755859375","S","1946-09-07T00:00:00Z","","0" +"NM-00764","57.38999938964844","57.38999938964844","","2012-06-08T00:00:00Z","","0" +"NM-01278","127.94999694824219","127.94999694824219","","1958-08-21T00:00:00Z","","0" +"NM-02576","25.6299991607666","25.6299991607666","","1991-03-05T00:00:00Z","","0" +"NM-02606","85.12999725341797","85.12999725341797","","2011-01-25T00:00:00Z","","0" +"SO-0165","11.640000343322754","9.720000267028809","","2020-11-13T00:00:00Z","","1.9199999570846558" +"NM-14355","87.1500015258789","87.1500015258789","","1976-05-06T00:00:00Z","","0" +"DE-0150","97.56999969482422","97.56999969482422","","2011-10-24T00:00:00Z","","0" +"NM-13234","3.069999933242798","3.069999933242798","","1957-05-20T00:00:00Z","","0" +"NM-28259","145.82000732421875","145.82000732421875","","1989-08-15T00:00:00Z","","0" +"SB-0285","78.08000183105469","78.08000183105469","","1957-01-26T00:00:00Z","","0" +"NM-28255","16.110000610351562","16.110000610351562","","2006-12-15T00:00:00Z","","0" +"NM-02487","8.699999809265137","8.699999809265137","","1962-07-15T00:00:00Z","","0" +"NM-13092","8.199999809265137","8.199999809265137","","1977-01-21T00:00:00Z","","0" +"NM-28250","98.0999984741211","98.0999984741211","","1969-03-15T00:00:00Z","","0" +"NM-05385","95.33000183105469","95.33000183105469","","1965-01-20T00:00:00Z","","0" +"NM-00617","82.05000305175781","82.05000305175781","","1991-03-13T00:00:00Z","","0" +"DE-0242","110.33999633789062","110.33999633789062","","2008-11-19T00:00:00Z","","0" +"EB-478","562.7999877929688","562.7999877929688","Z","2002-10-31T00:00:00Z","","0" +"NM-28021","513.239990234375","513.239990234375","S","2015-04-25T00:00:00Z","","0" +"NM-25255","-197","-197","","1977-08-20T00:00:00Z","","0" +"NM-01896","9.510000228881836","9.510000228881836","","2006-01-31T00:00:00Z","","0" +"NM-05364","61.150001525878906","61.150001525878906","","1934-10-07T00:00:00Z","","0" +"NM-13623","26.760000228881836","26.760000228881836","","1938-04-28T00:00:00Z","","0" +"NM-00367","123.48999786376953","123.48999786376953","","1965-11-01T00:00:00Z","","0" +"NM-22966","783.4000244140625","783.4000244140625","","1982-01-25T00:00:00Z","","0" +"NM-02520","5","5","","1990-05-15T00:00:00Z","","0" +"EB-416","134","134","Z","1988-05-31T00:00:00Z","","0" +"NM-00509","229.72999572753906","229.72999572753906","","1993-02-05T00:00:00Z","","0" +"NM-01884","11.0600004196167","11.0600004196167","","2007-10-24T00:00:00Z","","0" +"NM-22425","11.25","11.25","","1988-03-10T00:00:00Z","","0" +"NM-02536","312.7200012207031","312.7200012207031","","1955-01-06T00:00:00Z","","0" +"NM-06709","344.04998779296875","344.04998779296875","","2003-12-02T00:00:00Z","","0" +"NM-01571","14.210000038146973","14.210000038146973","","2013-04-08T00:00:00Z","","0" +"EB-413","207.5","207.5","","2012-03-28T00:00:00Z","","0" +"NM-12565","44.29999923706055","44.29999923706055","","1963-01-08T00:00:00Z","","0" +"NM-09597","82.18000030517578","82.18000030517578","","1959-01-23T00:00:00Z","","0" +"NM-28254","74.01000213623047","74.01000213623047","","1973-09-25T00:00:00Z","","0" +"NM-08788","49.72999954223633","49.72999954223633","","1958-04-24T00:00:00Z","","0" +"NM-02081","126.4000015258789","126.4000015258789","","1980-02-06T00:00:00Z","","0" +"SV-0095","137.1999969482422","136.4499969482422","","2018-07-21T00:00:00Z","","0.75" +"NM-18462","87.47000122070312","87.47000122070312","","1980-01-15T00:00:00Z","","0" +"NM-04585","133.3000030517578","133.3000030517578","P","1957-04-06T00:00:00Z","","0" +"NM-10079","33.88999938964844","33.88999938964844","","1967-01-31T00:00:00Z","","0" +"NM-11942","1.7899999618530273","1.7899999618530273","","1945-09-10T00:00:00Z","","0" +"NM-13789","-6.78000020980835","-6.78000020980835","","1911-01-26T00:00:00Z","","0" +"PC-102","574.4000244140625","572.4000244140625","","2021-04-15T00:00:00Z","","2" +"NM-21525","319.0199890136719","319.0199890136719","","1991-04-12T00:00:00Z","","0" +"NM-00394","71.13999938964844","71.13999938964844","","2004-01-29T00:00:00Z","","0" +"NM-22775","726.530029296875","726.530029296875","","2015-11-06T00:00:00Z","","0" +"NM-02591","11.5","11.5","","1975-10-15T00:00:00Z","","0" +"NM-00808","19.219999313354492","19.219999313354492","","2012-01-13T00:00:00Z","","0" +"NM-10562","16.920000076293945","16.920000076293945","","1944-01-15T00:00:00Z","","0" +"NM-00705","142.25","142.25","","2013-06-25T00:00:00Z","","0" +"NM-15714","77.27999877929688","77.27999877929688","","1985-01-23T00:00:00Z","","0" +"NM-10566","112.94999694824219","112.94999694824219","","1963-08-13T00:00:00Z","","0" +"NM-02675","52.130001068115234","52.130001068115234","","1954-01-05T00:00:00Z","","0" +"NM-17299","45.599998474121094","45.599998474121094","","1940-01-26T00:00:00Z","","0" +"NM-14478","33.81999969482422","33.81999969482422","","1989-02-15T00:00:00Z","","0" +"NM-01939","375.32000732421875","375.32000732421875","","1987-02-12T00:00:00Z","","0" +"DE-0320","31.920000076293945","31.920000076293945","","2014-11-04T00:00:00Z","","0" +"NM-28259","65.55999755859375","65.55999755859375","","1961-02-15T00:00:00Z","","0" +"NM-21776","9.359999656677246","9.359999656677246","","1957-03-19T00:00:00Z","","0" +"NM-11928","-0.6100000143051147","-0.6100000143051147","","1946-12-01T00:00:00Z","","0" +"NM-01534","50.560001373291016","50.560001373291016","","1968-08-29T00:00:00Z","","0" +"NM-06902","58.900001525878906","58.900001525878906","","1991-04-25T00:00:00Z","","0" +"WL-0087","86.20833587646484","84.52833557128906","","2003-01-24T00:00:00Z","","1.6799999475479126" +"AB-0067","147.25","147.25","","1997-10-22T00:00:00Z","","" +"NM-17716","4.619999885559082","4.619999885559082","","1948-03-29T00:00:00Z","","0" +"NM-01893","14.25","14.25","","2002-01-17T00:00:00Z","","0" +"BC-0206","46","46","","2019-07-25T00:00:00Z","","0" +"NM-02772","19.110000610351562","19.110000610351562","S","1990-02-07T00:00:00Z","","0" +"NM-02424","36.400001525878906","36.400001525878906","","1965-01-13T00:00:00Z","","0" +"NM-00498","66.16000366210938","66.16000366210938","","1972-08-01T00:00:00Z","","0" +"EB-388","90.70999908447266","89.27999877929688","","2008-11-15T00:00:00Z","","1.4299999475479126" +"NM-08676","53.529998779296875","53.529998779296875","","1986-01-17T00:00:00Z","","0" +"NM-01921","38.81999969482422","38.81999969482422","","1981-12-29T00:00:00Z","","0" +"EB-263","2.740000009536743","2.740000009536743","","2001-09-20T00:00:00Z","","0" +"NM-28259","153.11000061035156","153.11000061035156","","1973-08-05T00:00:00Z","","0" +"NM-28256","155.38999938964844","155.38999938964844","","2012-11-15T00:00:00Z","","0" +"NM-02591","14","14","","1958-05-15T00:00:00Z","","0" +"NM-10994","32.52000045776367","32.52000045776367","","1994-01-27T00:00:00Z","","0" +"NM-16595","40.20000076293945","40.20000076293945","","1966-03-31T00:00:00Z","","0" +"NM-00945","273.8900146484375","273.8900146484375","","1967-01-23T00:00:00Z","","0" +"NM-00201","166.8300018310547","166.8300018310547","","2010-12-16T00:00:00Z","","0" +"NM-00366","153.16000366210938","153.16000366210938","","2004-07-23T00:00:00Z","","0" +"EB-264","12.119999885559082","12.119999885559082","","2015-10-06T00:00:00Z","","0" +"NM-13944","-12.550000190734863","-12.550000190734863","","1906-06-19T00:00:00Z","","0" +"NM-02658","223.38999938964844","223.38999938964844","R","1949-07-13T00:00:00Z","","0" +"NM-13007","232.77000427246094","232.77000427246094","","1944-01-17T00:00:00Z","","0" +"NM-26737","185.39999389648438","185.39999389648438","P","1959-06-11T00:00:00Z","","0" +"EB-478","49.90999984741211","49.90999984741211","","1982-11-30T00:00:00Z","","0" +"NM-02321","215.16000366210938","215.16000366210938","","1995-02-21T00:00:00Z","","0" +"NM-02359","95.29000091552734","95.29000091552734","","1961-01-19T00:00:00Z","","0" +"NM-28251","86.55999755859375","86.55999755859375","","1984-11-15T00:00:00Z","","0" +"NM-20776","25.899999618530273","25.899999618530273","","1959-02-03T00:00:00Z","","0" +"NM-01286","69.8499984741211","69.8499984741211","P","1950-08-24T00:00:00Z","","0" +"NM-22362","162","162","","1954-01-01T00:00:00Z","","0" +"NM-24987","103.97000122070312","103.97000122070312","P","1954-05-26T00:00:00Z","","0" +"NM-14503","24.850000381469727","24.850000381469727","","1961-01-17T00:00:00Z","","0" +"AB-0068","157.52999877929688","157.52999877929688","","2008-12-05T00:00:00Z","","" +"AB-0066","165.32000732421875","165.32000732421875","","2015-04-06T00:00:00Z","","0" +"NM-14338","66.69999694824219","66.69999694824219","R","1954-09-17T00:00:00Z","","0" +"NM-17295","31.489999771118164","31.489999771118164","","1932-09-03T00:00:00Z","","0" +"NM-12755","-37.959999084472656","-37.959999084472656","","1910-10-16T00:00:00Z","","0" +"NM-13990","6","6","","1947-02-05T00:00:00Z","","0" +"NM-02809","35.099998474121094","35.099998474121094","","1959-08-12T00:00:00Z","","0" +"NM-04107","162.05999755859375","162.05999755859375","","1970-01-23T00:00:00Z","","0" +"NM-17716","8.15999984741211","8.15999984741211","","1941-01-31T00:00:00Z","","0" +"NM-17424","53.310001373291016","53.310001373291016","","1942-09-25T00:00:00Z","","0" +"NM-05287","52.630001068115234","52.630001068115234","","1933-05-13T00:00:00Z","","0" +"NM-05652","111.95999908447266","111.95999908447266","","1967-01-19T00:00:00Z","","0" +"NM-12431","30.139999389648438","30.139999389648438","","1946-07-23T00:00:00Z","","0" +"NM-08952","42.150001525878906","42.150001525878906","","1971-01-19T00:00:00Z","","0" +"DE-0329","30.81999969482422","30.81999969482422","","2014-11-05T00:00:00Z","","0" +"NM-10098","-114.19000244140625","-114.19000244140625","","1907-12-11T00:00:00Z","","0" +"NM-16973","43.38999938964844","43.38999938964844","","1954-01-21T00:00:00Z","","0" +"BC-0046","","320.29998779296875","","2021-03-20T00:00:00Z","","0.46000000834465027" +"NM-02209","108.83999633789062","108.83999633789062","","2001-05-08T00:00:00Z","","0" +"NM-28251","67.7300033569336","67.7300033569336","","1996-06-25T00:00:00Z","","0" +"NM-01473","330.8599853515625","330.8599853515625","","1986-02-20T00:00:00Z","","0" +"NM-07114","77.13999938964844","77.13999938964844","","2007-04-10T00:00:00Z","","0" +"NM-02184","23.389999389648438","23.389999389648438","","2006-02-01T00:00:00Z","","0" +"NM-01759","50.970001220703125","50.970001220703125","","1975-02-01T00:00:00Z","","0" +"NM-14246","60.58000183105469","60.58000183105469","","1984-01-30T00:00:00Z","","0" +"AB-0210","179.1199951171875","179.1199951171875","","1996-08-27T00:00:00Z","","" +"NM-19382","95.18000030517578","95.18000030517578","","1958-02-10T00:00:00Z","","0" +"NM-10635","28.540000915527344","28.540000915527344","","1952-01-14T00:00:00Z","","0" +"NM-28252","31.200000762939453","31.200000762939453","","1999-03-15T00:00:00Z","","0" +"NM-04641","56.83000183105469","56.83000183105469","","1981-01-07T00:00:00Z","","0" +"NM-03258","77.08000183105469","77.08000183105469","","1989-02-21T00:00:00Z","","0" +"NM-03470","31.389999389648438","31.389999389648438","S","2008-04-01T00:00:00Z","","0" +"NM-20616","129.30999755859375","129.30999755859375","","1946-10-03T00:00:00Z","","0" +"NM-13900","8.5","8.5","","1957-12-30T00:00:00Z","","0" +"NM-28020","468.1600036621094","468.1600036621094","S","2015-04-15T00:00:00Z","","0" +"NM-23980","78","78","","1974-01-25T00:00:00Z","","0" +"NM-12102","56.77000045776367","56.77000045776367","","1960-05-06T00:00:00Z","","0" +"NM-13881","-10.529999732971191","-10.529999732971191","","1908-03-25T00:00:00Z","","0" +"NM-28253","13.640000343322754","13.640000343322754","","1995-09-25T00:00:00Z","","0" +"DE-0301","41.08000183105469","41.08000183105469","","2011-10-18T00:00:00Z","","0" +"NM-04632","11.100000381469727","11.100000381469727","","1968-01-15T00:00:00Z","","0" +"NM-24215","25.6299991607666","25.6299991607666","","2010-07-08T00:00:00Z","","0" +"NM-03372","116.33999633789062","116.33999633789062","","1967-08-04T00:00:00Z","","0" +"NM-26611","30.729999542236328","30.729999542236328","","2011-11-08T00:00:00Z","","0" +"NM-09272","-29.8799991607666","-29.8799991607666","","1906-10-11T00:00:00Z","","0" +"NM-28251","76.61000061035156","76.61000061035156","","1987-10-15T00:00:00Z","","0" +"NM-27384","45","45","","1963-01-09T00:00:00Z","","0" +"NM-04487","15.720000267028809","15.720000267028809","","2014-12-04T00:00:00Z","","0" +"NM-14062","-14.859999656677246","-14.859999656677246","","1911-10-18T00:00:00Z","","0" +"NM-02017","6.5","6.5","","1995-10-15T00:00:00Z","","0" +"NM-01514","102.30999755859375","102.30999755859375","","1982-02-08T00:00:00Z","","0" +"NM-14577","47.529998779296875","47.529998779296875","","1990-11-29T00:00:00Z","","0" +"NM-19509","339.7699890136719","339.7699890136719","T","1961-03-14T00:00:00Z","","0" +"NM-16832","46.63999938964844","46.63999938964844","","1960-01-11T00:00:00Z","","0" +"NM-21556","7.010000228881836","7.010000228881836","Z","2005-11-30T00:00:00Z","","0" +"NM-12439","19.6200008392334","19.6200008392334","","1979-02-14T00:00:00Z","","0" +"NM-17716","5.190000057220459","5.190000057220459","","1947-08-28T00:00:00Z","","0" +"NM-20108","11.899999618530273","11.899999618530273","","1951-02-14T00:00:00Z","","0" +"NM-01886","58.86000061035156","58.86000061035156","","2006-10-19T00:00:00Z","","0" +"NM-19331","18.56999969482422","18.56999969482422","P","1986-10-09T00:00:00Z","","0" +"NM-03399","9.90999984741211","9.90999984741211","","1994-05-02T00:00:00Z","","0" +"ED-0371","172","172","P","1948-12-15T00:00:00Z","","0" +"NM-01986","8.800000190734863","8.800000190734863","","1974-02-15T00:00:00Z","","0" +"NM-04216","41.439998626708984","41.439998626708984","","1961-03-10T00:00:00Z","","0" +"NM-08063","50","50","","1934-01-30T00:00:00Z","","0" +"NM-11070","46.15999984741211","46.15999984741211","","1963-10-01T00:00:00Z","","0" +"NM-21337","56.13999938964844","56.13999938964844","","1995-04-06T00:00:00Z","","0" +"NM-26474","11.25","11.25","","2003-12-17T00:00:00Z","","0" +"NM-02501","53.529998779296875","53.529998779296875","","1947-05-17T00:00:00Z","","0" +"NM-02281","31.670000076293945","31.670000076293945","","2008-03-31T00:00:00Z","","0" +"NM-13121","9.800000190734863","9.800000190734863","","1958-05-13T00:00:00Z","","0" +"NM-19997","79.5999984741211","79.5999984741211","","1950-07-28T00:00:00Z","","0" +"SA-0155","20.8700008392334","19.59000015258789","","2010-06-29T00:00:00Z","","1.2799999713897705" +"NM-11329","50.13999938964844","50.13999938964844","","1986-01-16T00:00:00Z","","0" +"EB-605","69.38999938964844","69.38999938964844","","2016-03-14T00:00:00Z","","0" +"NM-17300","34.90999984741211","34.90999984741211","","1950-01-09T00:00:00Z","","0" +"NM-16514","36.290000915527344","36.290000915527344","","1966-09-15T00:00:00Z","","0" +"DE-0128","46.84000015258789","46.84000015258789","","2014-07-28T00:00:00Z","","0" +"NM-02867","108","108","","1976-02-17T00:00:00Z","","0" +"NM-28256","121.88999938964844","121.88999938964844","","1971-11-05T00:00:00Z","","0" +"NM-13597","-41.43000030517578","-41.43000030517578","","1913-12-15T00:00:00Z","","0" +"NM-10934","75.19000244140625","75.19000244140625","","1980-01-04T00:00:00Z","","0" +"NM-12564","29.90999984741211","29.90999984741211","","1962-06-22T00:00:00Z","","0" +"AB-0181","149.89999389648438","149.89999389648438","","1999-11-29T00:00:00Z","","" +"NM-09965","22.780000686645508","22.780000686645508","","1949-01-13T00:00:00Z","","0" +"NM-02591","10","10","","1976-11-15T00:00:00Z","","0" +"NM-01932","352.44000244140625","352.44000244140625","","1984-02-23T00:00:00Z","","0" +"NM-00396","58.29999923706055","58.29999923706055","","1996-02-08T00:00:00Z","","0" +"NM-12818","19.600000381469727","19.600000381469727","","1976-04-13T00:00:00Z","","0" +"AB-0184","353.5","353.5","","2004-02-18T00:00:00Z","","" +"NM-23413","137.0500030517578","137.0500030517578","","1955-02-11T00:00:00Z","","0" +"NM-00753","482.45001220703125","482.45001220703125","","2010-07-27T00:00:00Z","","0" +"NM-14027","29.610000610351562","29.610000610351562","","1948-03-11T00:00:00Z","","0" +"NM-03487","111.13999938964844","111.13999938964844","","1968-10-14T00:00:00Z","","0" +"NM-02163","9.329999923706055","9.329999923706055","","2000-10-24T00:00:00Z","","0" +"NM-28255","159.41000366210938","159.41000366210938","","1979-07-25T00:00:00Z","","0" +"NM-28259","139.75999450683594","139.75999450683594","","2018-10-15T00:00:00Z","","0" +"TB-0012","65.02999877929688","64.52999877929688","","2011-04-20T00:00:00Z","","0.5" +"NM-11781","68.72000122070312","68.72000122070312","","1981-01-27T00:00:00Z","","0" +"NM-01644","159.33999633789062","159.33999633789062","","1996-02-21T00:00:00Z","","0" +"NM-00714","216.7899932861328","216.7899932861328","","2009-10-07T00:00:00Z","","0" +"NM-02220","168.60000610351562","168.60000610351562","","1988-01-11T00:00:00Z","","0" +"NM-06965","393.7200012207031","393.7200012207031","","1973-03-21T00:00:00Z","","0" +"WL-0215","118.44999694824219","116.4000015258789","AA","2024-01-16T00:00:00Z","0001-01-01T10:10:00Z","2.049999952316284" +"NM-01295","125.5","125.5","","1966-02-09T00:00:00Z","","0" +"NM-01868","7.900000095367432","7.900000095367432","","1950-06-15T00:00:00Z","","0" +"NM-01528","46.849998474121094","46.849998474121094","","1992-01-29T00:00:00Z","","0" +"NM-00498","64.38999938964844","64.38999938964844","","1983-01-01T00:00:00Z","","0" +"NM-18411","38.349998474121094","38.349998474121094","","1949-07-28T00:00:00Z","","0" +"NM-04659","65.44000244140625","65.44000244140625","","1954-01-18T00:00:00Z","","0" +"NM-03462","164.41000366210938","164.41000366210938","","1958-12-05T00:00:00Z","","0" +"UC-0078","171.72000122070312","171.72000122070312","","1995-01-18T00:00:00Z","","0" +"AB-0114","220.92999267578125","220.92999267578125","","2007-01-10T00:00:00Z","","" +"NM-01425","21","21","","1996-02-19T00:00:00Z","","0" +"HS-011","1.3899999856948853","1.3899999856948853","","1939-03-28T00:00:00Z","","0" +"NM-12422","-47.20000076293945","-47.20000076293945","","1911-11-10T00:00:00Z","","0" +"NM-00717","382.9599914550781","382.9599914550781","T","2008-05-28T00:00:00Z","","0" +"NM-13223","62.099998474121094","62.099998474121094","","1946-01-29T00:00:00Z","","0" +"NM-07685","32.599998474121094","32.599998474121094","","1955-01-06T00:00:00Z","","0" +"NM-02669","56.86000061035156","56.86000061035156","","1993-08-29T00:00:00Z","","0" +"NM-01971","5.400000095367432","5.400000095367432","","1996-07-15T00:00:00Z","","0" +"SB-0348","122.54000091552734","122.54000091552734","","1967-01-27T00:00:00Z","","0" +"NM-01791","296.989990234375","296.989990234375","","1982-04-21T00:00:00Z","","0" +"NM-02605","166.52000427246094","166.52000427246094","","1963-10-01T00:00:00Z","","0" +"SB-0911","468.3800048828125","467.58001708984375","","2020-09-21T00:00:00Z","0001-01-01T15:44:00Z","0.800000011920929" +"NM-02351","129.0399932861328","129.0399932861328","","1963-01-10T00:00:00Z","","0" +"NM-10906","40.86000061035156","40.86000061035156","","1979-02-09T00:00:00Z","","0" +"NM-17538","96.8499984741211","96.8499984741211","P","2009-02-23T00:00:00Z","","0" +"NM-02199","13.529999732971191","13.529999732971191","","1976-03-04T00:00:00Z","","0" +"NM-10995","28.280000686645508","28.280000686645508","","1966-01-12T00:00:00Z","","0" +"NM-16160","167.1199951171875","167.1199951171875","","1978-07-13T00:00:00Z","","0" +"NM-28252","21.530000686645508","21.530000686645508","","1950-07-05T00:00:00Z","","0" +"NM-16810","27.969999313354492","27.969999313354492","","1941-09-26T00:00:00Z","","0" +"NM-02284","18.739999771118164","18.739999771118164","","2012-10-19T00:00:00Z","","0" +"NM-21342","84.43000030517578","84.43000030517578","","1958-02-13T00:00:00Z","","0" +"NM-02164","11.4399995803833","11.4399995803833","","2006-08-22T00:00:00Z","","0" +"NM-28254","15.489999771118164","15.489999771118164","","1950-11-25T00:00:00Z","","0" +"DE-0230","130.58999633789062","130.58999633789062","","2013-04-23T00:00:00Z","","0" +"NM-20046","30.540000915527344","30.540000915527344","","1945-04-07T00:00:00Z","","0" +"NM-00548","49.09000015258789","49.09000015258789","","1952-01-09T00:00:00Z","","0" +"NM-00253","22.65999984741211","22.65999984741211","","1989-09-25T00:00:00Z","","0" +"NM-17394","39.630001068115234","39.630001068115234","","1951-09-27T00:00:00Z","","0" +"NM-20331","22.190000534057617","22.190000534057617","","1950-05-18T00:00:00Z","","0" +"NM-13275","186.82000732421875","186.82000732421875","","1959-07-13T00:00:00Z","","0" +"NM-02990","44.220001220703125","44.220001220703125","","1980-01-07T00:00:00Z","","0" +"NM-07891","30.079999923706055","30.079999923706055","","1966-02-15T00:00:00Z","","0" +"NM-00367","116.12999725341797","116.12999725341797","","1967-03-01T00:00:00Z","","0" +"UC-0078","185.24000549316406","185.24000549316406","","2007-03-06T00:00:00Z","","0" +"NM-11939","8.600000381469727","8.600000381469727","","1938-01-27T00:00:00Z","","0" +"NM-03392","160.10000610351562","160.10000610351562","","2015-08-31T00:00:00Z","","0" +"NM-28258","117.94999694824219","117.94999694824219","","1975-02-25T00:00:00Z","","0" +"NM-10852","48.45000076293945","48.45000076293945","","1951-01-17T00:00:00Z","","0" +"NM-17716","-1.4800000190734863","-1.4800000190734863","","1942-02-02T00:00:00Z","","0" +"NM-10424","-44.88999938964844","-44.88999938964844","","1926-08-13T00:00:00Z","","0" +"NM-17885","226.50999450683594","226.50999450683594","S","1991-12-17T00:00:00Z","","0" +"NM-23514","39.56999969482422","39.56999969482422","","1999-09-20T00:00:00Z","","0" +"NM-10942","17.5","17.5","","1942-01-19T00:00:00Z","","0" +"RA-091","25.219999313354492","22.719999313354492","AA","2023-11-02T00:00:00Z","0001-01-01T09:21:00Z","2.5" +"NM-01543","280.9700012207031","280.9700012207031","","1967-04-14T00:00:00Z","","0" +"NM-06856","16.93000030517578","16.93000030517578","","1951-01-15T00:00:00Z","","0" +"NM-01534","50.790000915527344","50.790000915527344","","2012-08-07T00:00:00Z","","0" +"BC-0033","128.0399932861328","128.0399932861328","","2017-06-21T00:00:00Z","","0" +"EB-307","26.8700008392334","26.07000160217285","","2004-01-09T00:00:00Z","","0.800000011920929" +"NM-03200","155.00999450683594","155.00999450683594","","1971-09-28T00:00:00Z","","0" +"NM-12271","59.70000076293945","59.70000076293945","","1991-03-26T00:00:00Z","","0" +"NM-19893","62.2400016784668","62.2400016784668","","1956-01-10T00:00:00Z","","0" +"SM-0062","52.02000045776367","52.02000045776367","","2007-06-12T00:00:00Z","","0" +"NM-02348","11.199999809265137","11.199999809265137","","1998-07-15T00:00:00Z","","0" +"NM-04637","103.2699966430664","103.2699966430664","","1964-09-15T00:00:00Z","","0" +"NM-13383","36.25","36.25","","1962-01-04T00:00:00Z","","0" +"BC-0151","127.55000305175781","127.55000305175781","","2017-01-24T00:00:00Z","","0" +"NM-10906","15.510000228881836","15.510000228881836","","1942-01-19T00:00:00Z","","0" +"NM-26425","6.610000133514404","6.610000133514404","","1986-04-14T00:00:00Z","","0" +"NM-01154","160.10000610351562","160.10000610351562","","1986-10-22T00:00:00Z","","0" +"NM-28259","97.0999984741211","97.0999984741211","","1980-01-05T00:00:00Z","","0" +"BC-0149","239.86000061035156","239.86000061035156","","2019-04-22T00:00:00Z","","0" +"NM-02449","80.30000305175781","80.30000305175781","","1969-01-16T00:00:00Z","","0" +"NM-08345","35.459999084472656","35.459999084472656","","1976-02-05T00:00:00Z","","0" +"NM-02772","20.610000610351562","20.610000610351562","","1984-01-16T00:00:00Z","","0" +"NM-05606","78.9800033569336","78.9800033569336","","1954-05-21T00:00:00Z","","0" +"NM-28250","81.52999877929688","81.52999877929688","","1993-11-05T00:00:00Z","","0" +"NM-14351","591.8300170898438","591.8300170898438","","1962-12-01T00:00:00Z","","0" +"NM-27547","73.4800033569336","73.4800033569336","","1989-01-05T00:00:00Z","","0" +"NM-05516","11.300000190734863","11.300000190734863","","1974-11-15T00:00:00Z","","0" +"AB-0101","720.1400146484375","720.1400146484375","","2007-02-08T00:00:00Z","","" +"EB-246","330.8999938964844","330.8999938964844","","1988-06-15T00:00:00Z","","0" +"NM-12598","75.37999725341797","75.37999725341797","S","1951-01-25T00:00:00Z","","0" +"NM-10649","-47.20000076293945","-47.20000076293945","","1914-01-19T00:00:00Z","","0" +"ED-0152","135.10000610351562","135.10000610351562","","1948-12-30T00:00:00Z","","0" +"NM-04725","58.709999084472656","58.709999084472656","R","1936-07-11T00:00:00Z","","0" +"NM-00213","178","178","","1958-01-01T00:00:00Z","","0" +"NM-03680","30.989999771118164","30.989999771118164","","1996-01-23T00:00:00Z","","0" +"NM-01947","3.0999999046325684","3.0999999046325684","","1986-10-15T00:00:00Z","","0" +"NM-28257","95.27999877929688","95.27999877929688","","1969-08-05T00:00:00Z","","0" +"NM-01948","7.599999904632568","7.599999904632568","","1951-10-15T00:00:00Z","","0" +"EB-485","543","542","P","1999-11-30T00:00:00Z","","1" +"NM-03409","465","465","","1992-03-14T00:00:00Z","","0" +"NM-05516","7.699999809265137","7.699999809265137","","1960-08-15T00:00:00Z","","0" +"NM-08362","22.68000030517578","22.68000030517578","","1992-02-07T00:00:00Z","","0" +"WL-0091","50.125","47.35499954223633","","1991-05-08T00:00:00Z","","2.7699999809265137" +"DE-0323","33.04999923706055","33.04999923706055","","2009-10-26T00:00:00Z","","0" +"NM-11490","76.33999633789062","76.33999633789062","","1986-01-31T00:00:00Z","","0" +"NM-11444","91.68000030517578","91.68000030517578","P","1950-01-20T00:00:00Z","","0" +"NM-28250","93.33000183105469","93.33000183105469","","2022-02-15T00:00:00Z","","0" +"NM-16675","14.699999809265137","14.699999809265137","","1946-11-30T00:00:00Z","","0" +"NM-10756","45.290000915527344","45.290000915527344","","1939-09-19T00:00:00Z","","0" +"NM-13854","-7.929999828338623","-7.929999828338623","","1908-09-03T00:00:00Z","","0" +"NM-26463","4.579999923706055","4.579999923706055","","2004-05-13T00:00:00Z","","0" +"NM-13978","-12.550000190734863","-12.550000190734863","","1906-09-07T00:00:00Z","","0" +"QY-0789","111.5","111.5","","1955-07-28T00:00:00Z","","0" +"NM-04736","68.55000305175781","68.55000305175781","","1961-01-17T00:00:00Z","","0" +"NM-03013","","","D","2016-02-09T00:00:00Z","","0" +"NM-23335","405.20001220703125","405.20001220703125","","1987-03-15T00:00:00Z","","0" +"DE-0255","90.5","90.5","","2017-09-19T00:00:00Z","","0" +"NM-28259","138.61000061035156","138.61000061035156","","1988-08-25T00:00:00Z","","0" +"NM-05762","35.68000030517578","35.68000030517578","","1942-03-11T00:00:00Z","","0" +"BC-0149","237.3800048828125","237.3800048828125","","2014-06-02T00:00:00Z","","0" +"NM-13019","13.5","13.5","","1959-04-30T00:00:00Z","","0" +"NM-28253","47.20000076293945","47.20000076293945","","1970-09-05T00:00:00Z","","0" +"NM-13623","27.280000686645508","27.280000686645508","","1938-05-31T00:00:00Z","","0" +"NM-05347","13.699999809265137","13.699999809265137","","1956-04-15T00:00:00Z","","0" +"NM-08881","40.27000045776367","40.27000045776367","","1996-02-15T00:00:00Z","","0" +"NM-19959","47.27000045776367","47.27000045776367","","1957-01-10T00:00:00Z","","0" +"WL-0058","115.93000030517578","113.55999755859375","","2017-12-07T00:00:00Z","0001-01-01T09:40:00Z","2.369999885559082" +"NM-02209","108.26000213623047","108.26000213623047","","1975-03-01T00:00:00Z","","0" +"NM-02493","36.220001220703125","36.220001220703125","","1993-04-30T00:00:00Z","","0" +"NM-28254","26.649999618530273","26.649999618530273","","1984-12-15T00:00:00Z","","0" +"EB-416","74","74","Z","1982-10-31T00:00:00Z","","0" +"NM-21381","25.899999618530273","25.899999618530273","R","1993-04-16T00:00:00Z","","0" +"NM-12600","51.47999954223633","51.47999954223633","","1938-08-27T00:00:00Z","","0" +"NM-21259","2.6600000858306885","2.6600000858306885","Z","2009-07-27T00:00:00Z","","0" +"NM-00367","123.62999725341797","123.62999725341797","","1998-01-23T00:00:00Z","","0" +"AB-0092","495.3299865722656","495.3299865722656","","2000-04-04T00:00:00Z","","" +"NM-09934","8.380000114440918","8.380000114440918","","1938-01-19T00:00:00Z","","0" +"EB-207","234.3000030517578","234.3000030517578","","1992-07-01T00:00:00Z","","0" +"NM-21340","80.44000244140625","80.44000244140625","","1972-06-21T00:00:00Z","","0" +"NM-17548","16.350000381469727","16.350000381469727","","1949-05-25T00:00:00Z","","0" +"TV-217","276.3999938964844","275.79998779296875","","2007-07-06T00:00:00Z","","0.6000000238418579" +"NM-05695","15.069999694824219","15.069999694824219","","1962-01-04T00:00:00Z","","0" +"NM-09858","12","12","P","1963-08-13T00:00:00Z","","0" +"NM-02917","88.30000305175781","88.30000305175781","","1975-03-19T00:00:00Z","","0" +"NM-13974","-18.329999923706055","-18.329999923706055","","1908-12-04T00:00:00Z","","0" +"NM-07815","20.68000030517578","20.68000030517578","","1942-07-28T00:00:00Z","","0" +"NM-15859","63.560001373291016","63.560001373291016","","1990-01-17T00:00:00Z","","0" +"NM-24987","97.55000305175781","97.55000305175781","","1961-02-06T00:00:00Z","","0" +"NM-02165","7.099999904632568","7.099999904632568","","2002-05-21T00:00:00Z","","0" +"NM-13092","8.899999618530273","8.899999618530273","","1968-05-10T00:00:00Z","","0" +"WL-0087","91.29166412353516","89.61166381835938","","2004-04-12T00:00:00Z","","1.6799999475479126" +"NM-04569","85.1500015258789","85.1500015258789","","1958-04-17T00:00:00Z","","0" +"NM-07146","81.58000183105469","81.58000183105469","","2001-10-02T00:00:00Z","","0" +"NM-01487","57","57","","1973-01-01T00:00:00Z","","0" +"NM-28258","182.1999969482422","182.1999969482422","","1984-07-15T00:00:00Z","","0" +"NM-17297","63.9900016784668","63.9900016784668","","1956-01-21T00:00:00Z","","0" +"NM-12781","113.18000030517578","113.18000030517578","","1954-05-13T00:00:00Z","","0" +"NM-07685","27.43000030517578","27.43000030517578","","1942-11-26T00:00:00Z","","0" +"NM-01547","-72.30000305175781","-72.30000305175781","E","1987-10-20T00:00:00Z","","0" +"NM-01926","7.199999809265137","7.199999809265137","","1983-02-15T00:00:00Z","","0" +"NM-03373","53.209999084472656","53.209999084472656","Z","1996-12-30T00:00:00Z","","0" +"SA-0316","132.6199951171875","132.6199951171875","","1979-03-29T00:00:00Z","","0" +"NM-28259","106.19999694824219","106.19999694824219","","2008-12-05T00:00:00Z","","0" +"NM-02194","155.7100067138672","155.7100067138672","","1959-08-11T00:00:00Z","","0" +"NM-13014","222.85000610351562","222.85000610351562","","1942-04-18T00:00:00Z","","0" +"NM-16423","102.8499984741211","102.8499984741211","","1961-01-18T00:00:00Z","","0" +"AR-0017","2.799999952316284","2.1999998092651367","","2019-04-04T00:00:00Z","0001-01-01T09:00:00Z","0.6000000238418579" +"DE-0149","114.44999694824219","114.44999694824219","","2011-05-23T00:00:00Z","","0" +"NM-04632","13.800000190734863","13.800000190734863","","1955-03-15T00:00:00Z","","0" +"NM-06053","237.52000427246094","237.52000427246094","","2004-01-14T00:00:00Z","","0" +"NM-06672","158.88999938964844","158.88999938964844","","1957-09-10T00:00:00Z","","0" +"AB-0111","35.08000183105469","35.08000183105469","","2014-07-22T00:00:00Z","","" +"NM-01920","385.6400146484375","385.6400146484375","","1993-02-17T00:00:00Z","","0" +"NM-17909","68.62999725341797","68.62999725341797","","1949-08-31T00:00:00Z","","0" +"NM-02455","60.189998626708984","60.189998626708984","","1992-01-09T00:00:00Z","","0" +"NM-26425","5.420000076293945","5.420000076293945","","1987-05-19T00:00:00Z","","0" +"NM-20560","10.739999771118164","10.739999771118164","","1971-01-26T00:00:00Z","","0" +"NM-12808","61.630001068115234","61.630001068115234","","1960-10-01T00:00:00Z","","0" +"NM-24810","151.36000061035156","151.36000061035156","","1961-02-07T00:00:00Z","","0" +"BC-0157","266.0199890136719","266.0199890136719","","2014-09-06T00:00:00Z","","0" +"SO-0246","9.770000457763672","8.570000648498535","","2021-07-13T00:00:00Z","0001-01-01T09:00:00Z","1.2000000476837158" +"BC-0148","329.9800109863281","329.9800109863281","","2013-09-09T00:00:00Z","","0" +"NM-12187","73.4000015258789","73.4000015258789","","1976-04-29T00:00:00Z","","0" +"NM-11118","12.180000305175781","12.180000305175781","","1949-01-21T00:00:00Z","","0" +"NM-13007","236.75999450683594","236.75999450683594","","1945-09-13T00:00:00Z","","0" +"EB-276","211","211","","1972-09-14T00:00:00Z","","0" +"AB-0183","354.9100036621094","354.9100036621094","","1999-09-28T00:00:00Z","","" +"NM-27457","7.679999828338623","7.679999828338623","","1969-04-21T00:00:00Z","","0" +"EB-268","-48.81999969482422","-48.81999969482422","S","1988-06-15T00:00:00Z","","0" +"NM-13404","-80.69999694824219","-80.69999694824219","","1932-10-26T00:00:00Z","","0" +"NM-05557","97.70999908447266","97.70999908447266","","1951-05-08T00:00:00Z","","0" +"NM-02229","151.1999969482422","151.1999969482422","","1992-01-30T00:00:00Z","","0" +"NM-15992","49.220001220703125","49.220001220703125","","1964-02-18T00:00:00Z","","0" +"NM-02998","35.34000015258789","35.34000015258789","P","1967-01-04T00:00:00Z","","0" +"NM-08644","52.849998474121094","52.849998474121094","","1942-01-13T00:00:00Z","","0" +"NM-28255","13.90999984741211","13.90999984741211","","2017-01-13T00:00:00Z","","0" +"NM-02772","62.90999984741211","62.90999984741211","","2004-04-08T00:00:00Z","","0" +"NM-24976","132.9600067138672","132.9600067138672","","1958-07-24T00:00:00Z","","0" +"NM-28257","109.22000122070312","109.22000122070312","","1955-10-15T00:00:00Z","","0" +"NM-03332","10.739999771118164","10.739999771118164","","1993-09-02T00:00:00Z","","0" +"NM-11994","33.58000183105469","33.58000183105469","","1939-01-06T00:00:00Z","","0" +"NM-00758","358.7900085449219","358.7900085449219","","2013-05-31T00:00:00Z","","0" +"NM-01885","21.959999084472656","21.959999084472656","","2011-04-27T00:00:00Z","","0" +"NM-02352","9.199999809265137","9.199999809265137","","1959-01-15T00:00:00Z","","0" +"NM-28251","80.33000183105469","80.33000183105469","","2013-06-25T00:00:00Z","","0" +"NM-21888","4.440000057220459","4.440000057220459","Z","2011-10-03T00:00:00Z","","0" +"NM-03460","146.36000061035156","146.36000061035156","","1951-02-15T00:00:00Z","","0" +"NM-08189","10.399999618530273","10.399999618530273","","1956-07-15T00:00:00Z","","0" +"NM-09692","151.33999633789062","151.33999633789062","","1950-05-18T00:00:00Z","","0" +"NM-11771","39.31999969482422","39.31999969482422","","1937-03-29T00:00:00Z","","0" +"EB-270","179.89999389648438","179.89999389648438","S","1988-06-25T00:00:00Z","","0" +"EB-287","463.9200134277344","463.1200256347656","","1976-09-29T00:00:00Z","","0.800000011920929" +"NM-16439","109.18000030517578","109.18000030517578","","1977-01-13T00:00:00Z","","0" +"NM-05977","92.93000030517578","92.93000030517578","","1943-01-15T00:00:00Z","","0" +"NM-05908","42.099998474121094","42.099998474121094","","1993-01-28T00:00:00Z","","0" +"SV-0041","73.69999694824219","72.11666107177734","","2016-06-11T00:00:00Z","","1.5800000429153442" +"NM-00253","21.440000534057617","21.440000534057617","Z","2006-12-01T00:00:00Z","","0" +"NM-17155","","","O","2016-02-10T00:00:00Z","","0" +"NM-08542","-47.20000076293945","-47.20000076293945","","1911-01-03T00:00:00Z","","0" +"NM-10254","5","5","","1973-01-22T00:00:00Z","","0" +"NM-03390","29.31999969482422","29.31999969482422","","1989-08-10T00:00:00Z","","0" +"NM-00936","38.79999923706055","38.79999923706055","P","1967-01-19T00:00:00Z","","0" +"NM-19782","72.75","72.75","","1967-01-05T00:00:00Z","","0" +"NM-02320","184.8000030517578","184.8000030517578","","2001-12-17T00:00:00Z","","0" +"NM-03971","55.65999984741211","55.65999984741211","","1958-01-15T00:00:00Z","","0" +"SB-0299","110.5199966430664","110.5199966430664","","1993-02-28T00:00:00Z","","0" +"SB-0299","112.55000305175781","112.55000305175781","","1996-03-05T00:00:00Z","","0" +"EB-161","415","413.75","","1986-03-31T00:00:00Z","","1.25" +"UC-0035","94.88999938964844","94.88999938964844","","1996-07-24T00:00:00Z","","0" +"NM-11889","1.6200000047683716","1.6200000047683716","","1948-06-01T00:00:00Z","","0" +"NM-19887","31.100000381469727","31.100000381469727","","1953-03-28T00:00:00Z","","0" +"WL-0086","34.91666793823242","33.15666961669922","","1987-11-05T00:00:00Z","","1.7599999904632568" +"NM-22715","4.5","4.5","Z","2008-04-30T00:00:00Z","","0" +"NM-28254","53.310001373291016","53.310001373291016","","1999-10-15T00:00:00Z","","0" +"SB-0299","127.33000183105469","127.33000183105469","","1975-05-05T00:00:00Z","","0" +"NM-00541","89.98999786376953","89.98999786376953","","2013-12-11T00:00:00Z","","0" +"NM-04281","9","9","","1956-01-16T00:00:00Z","","0" +"SB-0789","391.20001220703125","391.20001220703125","","1972-05-17T00:00:00Z","","0" +"NM-02353","160","160","","1968-01-23T00:00:00Z","","0" +"NM-00226","28.440000534057617","28.440000534057617","","1996-08-15T00:00:00Z","","0" +"NM-13063","21.290000915527344","21.290000915527344","","1981-03-03T00:00:00Z","","0" +"NM-11928","0.5","0.5","","1953-12-01T00:00:00Z","","0" +"NM-28256","104.98999786376953","104.98999786376953","","2013-01-25T00:00:00Z","","0" +"NM-21379","20.489999771118164","20.489999771118164","","1945-01-26T00:00:00Z","","0" +"DE-0318","42.4900016784668","42.4900016784668","","2008-08-19T00:00:00Z","","0" +"NM-00498","56.5","56.5","Z","2005-04-19T00:00:00Z","","0" +"NM-02004","9","9","","1958-03-15T00:00:00Z","","0" +"NM-00092","12.260000228881836","12.260000228881836","","1992-12-08T00:00:00Z","","0" +"NM-03462","143.10000610351562","143.10000610351562","","1974-04-01T00:00:00Z","","0" +"NM-02384","8.300000190734863","8.300000190734863","","1997-04-15T00:00:00Z","","0" +"NM-11941","2.549999952316284","2.549999952316284","","1962-01-02T00:00:00Z","","0" +"NM-20474","62.02000045776367","62.02000045776367","","1944-03-27T00:00:00Z","","0" +"NM-10791","60.560001373291016","60.560001373291016","","1986-01-16T00:00:00Z","","0" +"NM-12735","27.030000686645508","27.030000686645508","","1953-01-26T00:00:00Z","","0" +"NM-21986","143.02999877929688","143.02999877929688","","1948-10-25T00:00:00Z","","0" +"NM-07028","142.5800018310547","142.5800018310547","","1981-01-09T00:00:00Z","","0" +"NM-28015","498.82000732421875","498.82000732421875","S","2015-05-29T00:00:00Z","","0" +"NM-01893","17.1299991607666","17.1299991607666","","2009-02-19T00:00:00Z","","0" +"NM-03371","134.5","134.5","","1953-01-07T00:00:00Z","","0" +"NM-04581","","","D","1997-02-05T00:00:00Z","","0" +"NM-28019","480.6400146484375","480.6400146484375","","2015-04-16T00:00:00Z","","0" +"NM-09392","57.16999816894531","57.16999816894531","","1958-01-28T00:00:00Z","","0" +"NM-09200","10.600000381469727","10.600000381469727","","1956-01-04T00:00:00Z","","0" +"NM-04632","9.800000190734863","9.800000190734863","","1971-05-15T00:00:00Z","","0" +"NM-01948","5.900000095367432","5.900000095367432","","1994-12-15T00:00:00Z","","0" +"NM-03071","216.85000610351562","216.85000610351562","","1977-01-04T00:00:00Z","","0" +"NM-07306","58.68000030517578","58.68000030517578","","1955-02-09T00:00:00Z","","0" +"SB-0523","961","961","","1975-05-17T00:00:00Z","","0" +"NM-02284","13.199999809265137","13.199999809265137","","2006-03-08T00:00:00Z","","0" +"NM-02749","125.12000274658203","125.12000274658203","","1963-07-24T00:00:00Z","","0" +"DE-0376","21.510000228881836","18.540000915527344","","2014-05-14T00:00:00Z","","2.9700000286102295" +"NM-13823","16.43000030517578","16.43000030517578","","1942-04-15T00:00:00Z","","0" +"NM-12725","23.200000762939453","23.200000762939453","","1948-09-27T00:00:00Z","","0" +"NM-01841","232.3699951171875","232.3699951171875","","1965-06-20T00:00:00Z","","0" +"NM-10866","42.70000076293945","42.70000076293945","","1971-03-10T00:00:00Z","","0" +"NM-13145","9.6899995803833","9.6899995803833","","1978-08-25T00:00:00Z","","0" +"NM-28252","52.7400016784668","52.7400016784668","","2011-10-25T00:00:00Z","","0" +"NM-09104","439.7300109863281","439.7300109863281","","1957-05-10T00:00:00Z","","0" +"NM-00469","73.25","73.25","","1968-01-05T00:00:00Z","","0" +"NM-13919","-9.369999885559082","-9.369999885559082","","1909-03-02T00:00:00Z","","0" +"TV-273","65.66999816894531","63.21999740600586","","2003-05-05T00:00:00Z","","2.450000047683716" +"NM-03207","157.8300018310547","157.8300018310547","","2009-01-13T00:00:00Z","","0" +"NM-04801","54.470001220703125","54.470001220703125","","1981-03-30T00:00:00Z","","0" +"NM-07794","14.729999542236328","14.729999542236328","","1968-01-17T00:00:00Z","","0" +"NM-11098","-47.20000076293945","-47.20000076293945","","1909-03-24T00:00:00Z","","0" +"NM-28024","476.9800109863281","476.9800109863281","S","2015-04-27T00:00:00Z","","0" +"NM-02487","10.5","10.5","","2002-10-15T00:00:00Z","","0" +"NM-02252","101.55000305175781","101.55000305175781","P","2013-01-16T00:00:00Z","","0" +"NM-16873","40.959999084472656","40.959999084472656","","1959-01-06T00:00:00Z","","0" +"NM-28252","45.70000076293945","45.70000076293945","","2016-04-05T00:00:00Z","","0" +"NM-22038","159.9499969482422","159.9499969482422","","1969-02-26T00:00:00Z","","0" +"NM-28250","86.93000030517578","86.93000030517578","","2009-01-26T00:00:00Z","","0" +"AB-0100","727.27001953125","727.27001953125","","2003-09-24T00:00:00Z","","" +"NM-28253","45.2400016784668","45.2400016784668","","2019-09-05T00:00:00Z","","0" +"WL-0087","74.45833587646484","72.77833557128906","","2000-10-19T00:00:00Z","","1.6799999475479126" +"NM-17569","53.220001220703125","53.220001220703125","","1954-01-25T00:00:00Z","","0" +"NM-02256","3.799999952316284","3.799999952316284","","2000-10-15T00:00:00Z","","0" +"NM-09547","184.5800018310547","184.5800018310547","","1979-03-13T00:00:00Z","","0" +"NM-28255","-0.03999999910593033","-0.03999999910593033","","1949-01-05T00:00:00Z","","0" +"NM-00028","180.69000244140625","180.69000244140625","R","2012-12-17T00:00:00Z","","0" +"NM-08813","51.029998779296875","51.029998779296875","","1975-01-28T00:00:00Z","","0" +"NM-12035","117","117","","1954-02-21T00:00:00Z","","0" +"NM-28255","42.2599983215332","42.2599983215332","","1998-03-15T00:00:00Z","","0" +"AB-0111","28.979999542236328","28.979999542236328","","2013-11-18T00:00:00Z","","" +"NM-03436","75.81999969482422","75.81999969482422","","1954-12-01T00:00:00Z","","0" +"NM-16754","15.989999771118164","15.989999771118164","","1937-01-15T00:00:00Z","","0" +"SB-0442","168.89999389648438","168.89999389648438","","2010-04-05T00:00:00Z","","0" +"BC-0236","228.0500030517578","228.0500030517578","","2018-09-12T00:00:00Z","","0" +"NM-02669","58.900001525878906","58.900001525878906","","1983-07-01T00:00:00Z","","0" +"NM-19964","37.04999923706055","37.04999923706055","","1962-02-06T00:00:00Z","","0" +"NM-19737","229.4499969482422","229.4499969482422","","1977-02-22T00:00:00Z","","0" +"NM-02002","98.45999908447266","98.45999908447266","","1993-02-04T00:00:00Z","","0" +"NM-14802","104.9000015258789","104.9000015258789","","1977-01-13T00:00:00Z","","0" +"NM-12286","-21.790000915527344","-21.790000915527344","","1910-10-12T00:00:00Z","","0" +"NM-08647","23.690000534057617","23.690000534057617","","1945-03-31T00:00:00Z","","0" +"EB-299","195.80999755859375","195.80999755859375","","2015-06-30T00:00:00Z","","0" +"NM-01061","166.49000549316406","166.49000549316406","R","2012-02-09T00:00:00Z","","0" +"NM-18211","258.32000732421875","258.32000732421875","","1982-02-09T00:00:00Z","","0" +"NM-14351","595.3099975585938","595.3099975585938","","1966-05-01T00:00:00Z","","0" +"NM-08290","97.16999816894531","97.16999816894531","","1972-10-04T00:00:00Z","","0" +"NM-01899","55.81999969482422","55.81999969482422","","1990-11-30T00:00:00Z","","0" +"NM-13144","-29.1200008392334","-29.1200008392334","","1957-07-05T00:00:00Z","","0" +"NM-17271","67.54000091552734","67.54000091552734","","1959-06-03T00:00:00Z","","0" +"DE-0182","53.95000076293945","53.95000076293945","","2015-11-24T00:00:00Z","","0" +"NM-21285","6.760000228881836","6.760000228881836","","1965-09-27T00:00:00Z","","0" +"NM-27803","336.0400085449219","336.0400085449219","","2015-01-21T00:00:00Z","","0" +"NM-05950","86.9000015258789","86.9000015258789","","2002-02-12T00:00:00Z","","0" +"NM-01949","56.68000030517578","56.68000030517578","","2005-01-10T00:00:00Z","","0" +"NM-17716","0.7699999809265137","0.7699999809265137","","1942-10-04T00:00:00Z","","0" +"NM-25906","69.66999816894531","69.66999816894531","","1986-05-06T00:00:00Z","","0" +"NM-22296","25.079999923706055","25.079999923706055","","1977-01-12T00:00:00Z","","0" +"NM-01088","42.41999816894531","42.41999816894531","","2014-03-31T00:00:00Z","","0" +"NM-02728","94.87999725341797","94.87999725341797","","2008-02-07T00:00:00Z","","0" +"NM-17149","18.18000030517578","18.18000030517578","","1979-07-05T00:00:00Z","","0" +"NM-06042","42.720001220703125","42.720001220703125","","1981-03-30T00:00:00Z","","0" +"NM-17659","39.70000076293945","39.70000076293945","","1962-01-24T00:00:00Z","","0" +"SA-0027","322.8800048828125","321.6300048828125","","2009-02-25T00:00:00Z","","1.25" +"NM-24711","251.52000427246094","251.52000427246094","","1984-09-12T00:00:00Z","","0" +"NM-03073","173.72000122070312","173.72000122070312","","1966-01-11T00:00:00Z","","0" +"NM-00792","41.380001068115234","41.380001068115234","","2012-06-05T00:00:00Z","","0" +"NM-03202","193.25","193.25","","2003-01-30T00:00:00Z","","0" +"NM-07154","99.48999786376953","99.48999786376953","","2008-05-20T00:00:00Z","","0" +"NM-11915","64.9800033569336","64.9800033569336","","1971-01-22T00:00:00Z","","0" +"NM-23239","213.02000427246094","213.02000427246094","Z","1997-02-03T00:00:00Z","","0" +"NM-02043","6.900000095367432","6.900000095367432","","1952-02-15T00:00:00Z","","0" +"NM-17716","2.819999933242798","2.819999933242798","","1946-02-02T00:00:00Z","","0" +"NM-03649","34.56999969482422","34.56999969482422","","2004-05-03T00:00:00Z","","0" +"NM-23854","17.719999313354492","17.719999313354492","","1984-06-14T00:00:00Z","","0" +"NM-02384","7.5","7.5","","1946-02-15T00:00:00Z","","0" +"NM-03013","84.0199966430664","84.0199966430664","","1991-01-09T00:00:00Z","","0" +"NM-05610","150.2899932861328","150.2899932861328","","1954-05-18T00:00:00Z","","0" +"NM-13217","12.079999923706055","12.079999923706055","","1958-08-25T00:00:00Z","","0" +"BC-0020","85.55000305175781","85.55000305175781","","2017-09-29T00:00:00Z","","0" +"NM-07145","85.11000061035156","85.11000061035156","","2002-04-03T00:00:00Z","","0" +"PC-050","155.75","158.64999389648438","T","1997-08-07T00:00:00Z","","0" +"SB-0299","138.16000366210938","138.16000366210938","","1976-05-30T00:00:00Z","","0" +"NM-02518","7","7","","1976-06-15T00:00:00Z","","0" +"NM-00383","32.060001373291016","32.060001373291016","R","1984-02-15T00:00:00Z","","0" +"NM-03421","33.61000061035156","33.61000061035156","","1987-10-29T00:00:00Z","","0" +"NM-02280","28.489999771118164","28.489999771118164","","2005-10-07T00:00:00Z","","0" +"NM-07888","660.280029296875","660.280029296875","","1975-06-25T00:00:00Z","","0" +"NM-11602","67.41000366210938","67.41000366210938","","1986-01-31T00:00:00Z","","0" +"NM-20160","52.529998779296875","52.529998779296875","R","1945-11-30T00:00:00Z","","0" +"NM-03207","161.97000122070312","161.97000122070312","","2010-01-20T00:00:00Z","","0" +"NM-21889","3.859999895095825","3.859999895095825","Z","2005-07-13T00:00:00Z","","0" +"NM-28255","136.27999877929688","136.27999877929688","","1959-08-25T00:00:00Z","","0" +"NM-20263","53.709999084472656","53.709999084472656","","1945-04-08T00:00:00Z","","0" +"NM-03298","43.95000076293945","43.95000076293945","","1961-09-11T00:00:00Z","","0" +"NM-12353","33.52000045776367","33.52000045776367","","1958-01-17T00:00:00Z","","0" +"NM-01847","8.149999618530273","8.149999618530273","","1991-12-09T00:00:00Z","","0" +"NM-00185","14.899999618530273","14.899999618530273","","1965-08-15T00:00:00Z","","0" +"NM-05703","225.6999969482422","225.6999969482422","P","1958-07-21T00:00:00Z","","0" +"NM-10044","6.420000076293945","6.420000076293945","","1973-11-15T00:00:00Z","","0" +"NM-01914","17.270000457763672","17.270000457763672","","2001-01-11T00:00:00Z","","0" +"WL-0021","27","26.299999237060547","","2007-02-01T00:00:00Z","","0.699999988079071" +"NM-22866","60.150001525878906","60.150001525878906","P","1959-01-20T00:00:00Z","","0" +"NM-01897","6.559999942779541","6.559999942779541","","1992-09-16T00:00:00Z","","0" +"NM-02669","58.52000045776367","58.52000045776367","","1983-12-01T00:00:00Z","","0" +"NM-28253","17.739999771118164","17.739999771118164","","2007-05-04T00:00:00Z","","0" +"NM-02702","49.65999984741211","49.65999984741211","Z","2000-06-07T00:00:00Z","","0" +"NM-03342","12.84000015258789","12.84000015258789","","2001-06-12T00:00:00Z","","0" +"NM-12392","260.0400085449219","260.0400085449219","","1973-02-01T00:00:00Z","","0" +"NM-03687","136.8300018310547","136.8300018310547","","1985-09-23T00:00:00Z","","0" +"NM-01748","84.19999694824219","84.19999694824219","","1981-01-20T00:00:00Z","","0" +"BC-0036","278.44000244140625","278.44000244140625","","2014-06-10T00:00:00Z","","0" +"NM-27949","5.739999771118164","5.739999771118164","","1965-10-27T00:00:00Z","","0" +"AB-0165","483.1099853515625","483.1099853515625","","2013-05-03T00:00:00Z","","" +"NM-24606","196.1300048828125","196.1300048828125","","1970-02-04T00:00:00Z","","0" +"NM-13911","-16.020000457763672","-16.020000457763672","","1910-06-06T00:00:00Z","","0" +"NM-03002","68.36000061035156","68.36000061035156","","1993-01-05T00:00:00Z","","0" +"NM-10331","578.9199829101562","578.9199829101562","","1956-08-01T00:00:00Z","","0" +"NM-13837","-5.619999885559082","-5.619999885559082","","1908-09-03T00:00:00Z","","0" +"BC-0104","116.66000366210938","116.66000366210938","","2014-09-24T00:00:00Z","","0" +"NM-02314","10.800000190734863","10.800000190734863","","1966-02-15T00:00:00Z","","0" +"NM-03337","11.220000267028809","11.220000267028809","","1991-09-03T00:00:00Z","","0" +"UC-0044","237.22999572753906","237.22999572753906","","2012-08-01T00:00:00Z","","0" +"NM-22828","41.939998626708984","41.939998626708984","","1984-03-13T00:00:00Z","","0" +"NM-21557","7.25","7.25","Z","2004-03-10T00:00:00Z","","0" +"NM-02005","7.599999904632568","7.599999904632568","","1994-12-15T00:00:00Z","","0" +"NM-12807","24.81999969482422","24.81999969482422","","1958-01-10T00:00:00Z","","0" +"NM-01948","6.800000190734863","6.800000190734863","","1971-02-15T00:00:00Z","","0" +"AB-0170","257","257","","1988-12-31T00:00:00Z","","0" +"BC-0096","","206.10000610351562","","2021-10-27T00:00:00Z","","0" +"SA-0059","135.1199951171875","133.8300018310547","","2012-02-29T00:00:00Z","","1.2899999618530273" +"NM-12658","83.66000366210938","83.66000366210938","S","1996-02-15T00:00:00Z","","0" +"NM-10572","54.70000076293945","54.70000076293945","","1963-10-02T00:00:00Z","","0" +"NM-02487","7.800000190734863","7.800000190734863","","1975-07-15T00:00:00Z","","0" +"NM-12932","344.45001220703125","344.45001220703125","","1971-01-14T00:00:00Z","","0" +"SO-0220","5.309999942779541","4.819999694824219","","2021-06-15T00:00:00Z","0001-01-01T09:30:00Z","0.49000000953674316" +"NM-01868","7.800000190734863","7.800000190734863","","1961-08-15T00:00:00Z","","0" +"NM-00530","132.32000732421875","132.32000732421875","","2013-02-07T00:00:00Z","","0" +"NM-10143","33.2599983215332","33.2599983215332","","1930-10-31T00:00:00Z","","0" +"NM-27205","57.68000030517578","57.68000030517578","","2009-04-15T00:00:00Z","","0" +"QY-0125","13.300000190734863","13.300000190734863","P","1954-11-12T00:00:00Z","","0" +"NM-07756","47.349998474121094","47.349998474121094","","1971-01-14T00:00:00Z","","0" +"NM-01390","114.5199966430664","114.5199966430664","","2015-02-04T00:00:00Z","","0" +"NM-27649","122.2300033569336","122.2300033569336","","1972-01-28T00:00:00Z","","0" +"NM-08097","13.020000457763672","13.020000457763672","","2015-12-16T00:00:00Z","","0" +"NM-02006","8","8","","1985-05-15T00:00:00Z","","0" +"AB-0161","491.6199951171875","491.6199951171875","","2009-06-03T00:00:00Z","","" +"NM-13246","88.83000183105469","88.83000183105469","","1958-10-01T00:00:00Z","","0" +"NM-22250","62","62","","1969-12-02T00:00:00Z","","0" +"NM-15104","186.32000732421875","186.32000732421875","","1975-03-26T00:00:00Z","","0" +"NM-03477","69.7300033569336","69.7300033569336","","1964-03-04T00:00:00Z","","0" +"NM-08648","52","52","","1989-01-04T00:00:00Z","","0" +"NM-20272","310.0899963378906","310.0899963378906","","1956-09-17T00:00:00Z","","0" +"NM-03765","51.75","51.75","P","1956-09-13T00:00:00Z","","0" +"SB-0299","131.3000030517578","131.3000030517578","","1973-09-05T00:00:00Z","","0" +"SO-0231","9.829999923706055","7.909999847412109","","2021-04-09T00:00:00Z","0001-01-01T18:10:00Z","1.9199999570846558" +"SB-0299","129.3300018310547","129.3300018310547","","2008-03-10T00:00:00Z","","0" +"NM-26507","68.47000122070312","68.47000122070312","","2002-09-18T00:00:00Z","","0" +"DE-0180","50.439998626708984","50.439998626708984","","2016-03-29T00:00:00Z","","0" +"NM-11486","15.039999961853027","15.039999961853027","","1958-11-17T00:00:00Z","","0" +"NM-01872","9.699999809265137","9.699999809265137","","1970-02-15T00:00:00Z","","0" +"NM-21416","5.679999828338623","5.679999828338623","Z","2009-02-20T00:00:00Z","","0" +"SO-0159","10.800000190734863","9.920000076293945","","2021-11-13T00:00:00Z","0001-01-01T11:30:00Z","0.8799999952316284" +"AB-0066","167.9499969482422","167.9499969482422","","2013-10-17T00:00:00Z","","" +"NM-11590","72.05000305175781","72.05000305175781","P","1958-08-25T00:00:00Z","","0" +"NM-01912","7.360000133514404","7.360000133514404","","1986-12-03T00:00:00Z","","0" +"EB-261","6.300000190734863","4.5","","2000-09-14T00:00:00Z","","1.7999999523162842" +"NM-13820","-3.0199999809265137","-3.0199999809265137","","1913-02-25T00:00:00Z","","0" +"NM-13562","3.9000000953674316","3.9000000953674316","","1957-12-02T00:00:00Z","","0" +"NM-00799","19","19","R","2012-11-27T00:00:00Z","","0" +"NM-13779","-2.5199999809265137","-2.5199999809265137","","1909-09-09T00:00:00Z","","0" +"NM-28259","111.86000061035156","111.86000061035156","","1965-02-25T00:00:00Z","","0" +"NM-22744","37.59000015258789","37.59000015258789","","1949-12-14T00:00:00Z","","0" +"NM-01955","4","4","","1959-09-15T00:00:00Z","","0" +"EB-258","95.08000183105469","95.08000183105469","","1976-08-18T00:00:00Z","","0" +"NM-23293","118.55999755859375","118.55999755859375","","1960-11-15T00:00:00Z","","0" +"NM-17106","43.099998474121094","43.099998474121094","","1952-03-25T00:00:00Z","","0" +"NM-00013","361.95001220703125","361.95001220703125","","1970-01-06T00:00:00Z","","0" +"NM-18656","26.440000534057617","26.440000534057617","","1962-04-09T00:00:00Z","","0" +"NM-13971","-11.109999656677246","-11.109999656677246","","1912-09-23T00:00:00Z","","0" +"NM-21244","352.1400146484375","352.1400146484375","","1993-01-04T00:00:00Z","","0" +"EB-284","280.5899963378906","280.5899963378906","T","1994-04-19T00:00:00Z","","0" +"NM-00686","59.939998626708984","59.939998626708984","Z","2005-01-08T00:00:00Z","","0" +"EB-416","267","267","Z","1999-07-31T00:00:00Z","","0" +"NM-02233","119.0999984741211","119.0999984741211","","1987-02-02T00:00:00Z","","0" +"NM-19769","65.26000213623047","65.26000213623047","","1997-03-12T00:00:00Z","","0" +"NM-05762","48.20000076293945","48.20000076293945","","1951-07-19T00:00:00Z","","0" +"NM-11696","146.72000122070312","146.72000122070312","","1964-01-07T00:00:00Z","","0" +"ED-0368","21.200000762939453","21.200000762939453","P","1948-12-06T00:00:00Z","","0" +"NM-00253","20.969999313354492","20.969999313354492","","1989-02-21T00:00:00Z","","0" +"NM-19782","70.76000213623047","70.76000213623047","","1954-11-25T00:00:00Z","","0" +"NM-06848","14.09000015258789","14.09000015258789","","1961-01-04T00:00:00Z","","0" +"NM-21004","34.20000076293945","34.20000076293945","","1955-11-04T00:00:00Z","","0" +"EB-245","221.8300018310547","221.8300018310547","","2007-02-22T00:00:00Z","","0" +"TC-316","270.2799987792969","270.2799987792969","","2021-10-12T00:00:00Z","0001-01-01T13:35:00Z","0" +"CP-0037","309.9200134277344","309.9200134277344","","2017-12-13T00:00:00Z","","0" +"NM-28256","257.0899963378906","257.0899963378906","","2006-08-04T00:00:00Z","","0" +"NM-02772","12.5600004196167","12.5600004196167","","1959-01-01T00:00:00Z","","0" +"NM-21866","3.9800000190734863","3.9800000190734863","Z","2008-04-28T00:00:00Z","","0" +"NM-28259","157.66000366210938","157.66000366210938","","2016-12-16T00:00:00Z","","0" +"NM-02347","143.10000610351562","143.10000610351562","","1974-01-24T00:00:00Z","","0" +"NM-02349","18.600000381469727","18.600000381469727","","1954-08-15T00:00:00Z","","0" +"NM-13014","226.22000122070312","226.22000122070312","","1942-12-10T00:00:00Z","","0" +"NM-02352","7.400000095367432","7.400000095367432","","1960-04-15T00:00:00Z","","0" +"NM-12392","255.74000549316406","255.74000549316406","","1975-07-01T00:00:00Z","","0" +"NM-13870","-9.65999984741211","-9.65999984741211","","1906-06-18T00:00:00Z","","0" +"NM-28256","88.69000244140625","88.69000244140625","","1982-12-25T00:00:00Z","","0" +"NM-19787","132.2899932861328","132.2899932861328","","2004-05-20T00:00:00Z","","0" +"BC-0118","","82.9800033569336","","2020-08-04T00:00:00Z","","0.8999999761581421" +"NM-21660","471.7200012207031","471.7200012207031","","2007-06-20T00:00:00Z","","0" +"NM-21545","11.619999885559082","11.619999885559082","Z","2004-09-24T00:00:00Z","","0" +"NM-10505","115.9000015258789","115.9000015258789","","1970-04-03T00:00:00Z","","0" +"NM-00494","30.75","30.75","","1961-01-20T00:00:00Z","","0" +"NM-17094","21.010000228881836","21.010000228881836","","1943-05-22T00:00:00Z","","0" +"NM-28009","498.7200012207031","498.7200012207031","S","2015-05-28T00:00:00Z","","0" +"EB-244","89.05999755859375","89.05999755859375","","1999-10-14T00:00:00Z","","0" +"NM-01331","284.0799865722656","284.0799865722656","","2006-11-30T00:00:00Z","","0" +"NM-00862","10.819999694824219","10.819999694824219","","1993-02-04T00:00:00Z","","0" +"NM-08155","12.569999694824219","12.569999694824219","","1994-03-17T00:00:00Z","","0" +"BC-0184","374.2699890136719","374.2699890136719","","2011-12-09T00:00:00Z","","0" +"NM-13903","-79.54000091552734","-79.54000091552734","","1911-01-27T00:00:00Z","","0" +"NM-21920","8.350000381469727","8.350000381469727","","1947-08-06T00:00:00Z","","0" +"NM-04757","70.93000030517578","70.93000030517578","","1955-01-25T00:00:00Z","","0" +"NM-02449","66.79000091552734","66.79000091552734","","1965-08-09T00:00:00Z","","0" +"SB-0442","170.60000610351562","170.60000610351562","","2011-04-20T00:00:00Z","","0" +"NM-00612","100.13999938964844","100.13999938964844","","1980-08-13T00:00:00Z","","0" +"NM-10063","8.779999732971191","8.779999732971191","","1979-12-11T00:00:00Z","","0" +"NM-02644","28.549999237060547","28.549999237060547","","1955-03-09T00:00:00Z","","0" +"NM-17470","13.8100004196167","13.8100004196167","","1944-03-20T00:00:00Z","","0" +"NM-02004","8.600000381469727","8.600000381469727","","1990-10-15T00:00:00Z","","0" +"NM-20472","148.6699981689453","148.6699981689453","","1986-10-08T00:00:00Z","","0" +"NM-17071","26.15999984741211","26.15999984741211","","1931-08-12T00:00:00Z","","0" +"NM-13120","5.889999866485596","5.889999866485596","","1974-05-07T00:00:00Z","","0" +"NM-28256","189.99000549316406","189.99000549316406","","2002-04-05T00:00:00Z","","0" +"NM-13233","8.649999618530273","8.649999618530273","","1959-09-10T00:00:00Z","","0" +"NM-21871","455.20001220703125","455.20001220703125","","2012-11-16T00:00:00Z","","0" +"NM-07815","25.489999771118164","25.489999771118164","","1940-07-13T00:00:00Z","","0" +"BC-0116","26.40999984741211","26.40999984741211","","2019-04-25T00:00:00Z","","0" +"NM-13594","17.780000686645508","17.780000686645508","","1964-02-06T00:00:00Z","","0" +"NM-02560","120.87000274658203","120.87000274658203","","1982-10-01T00:00:00Z","","0" +"NM-24606","194.49000549316406","194.49000549316406","","1965-02-05T00:00:00Z","","0" +"BC-0048","324.45001220703125","324.45001220703125","","2013-06-10T00:00:00Z","","0" +"DE-0061","80.47000122070312","78.09000396728516","","2011-06-30T00:00:00Z","","2.380000114440918" +"NM-27735","36.31999969482422","36.31999969482422","","1949-01-07T00:00:00Z","","0" +"NM-18922","364.8900146484375","364.8900146484375","","1963-01-22T00:00:00Z","","0" +"NM-00213","153.35000610351562","153.35000610351562","","1991-01-28T00:00:00Z","","0" +"NM-02394","73.37999725341797","73.37999725341797","","1939-06-29T00:00:00Z","","0" +"NM-13106","8.319999694824219","8.319999694824219","","1959-02-05T00:00:00Z","","0" +"NM-19974","200.89999389648438","200.89999389648438","","1982-01-28T00:00:00Z","","0" +"NM-00579","79.05999755859375","79.05999755859375","","2013-12-11T00:00:00Z","","0" +"NM-21286","96.13999938964844","96.13999938964844","","2010-05-25T00:00:00Z","","0" +"NM-27408","49.06999969482422","49.06999969482422","","1974-01-21T00:00:00Z","","0" +"NM-07318","129.6300048828125","129.6300048828125","","1965-01-05T00:00:00Z","","0" +"NM-03386","33.66999816894531","33.66999816894531","","1988-03-28T00:00:00Z","","0" +"NM-07637","28.18000030517578","28.18000030517578","","1961-03-01T00:00:00Z","","0" +"NM-20895","22.06999969482422","22.06999969482422","","1943-02-04T00:00:00Z","","0" +"NM-28253","16.34000015258789","16.34000015258789","","2014-12-15T00:00:00Z","","0" +"NM-03047","44.13999938964844","44.13999938964844","","1951-01-09T00:00:00Z","","0" +"NM-28254","160.10000610351562","160.10000610351562","","1974-06-25T00:00:00Z","","0" +"NM-02173","88.30000305175781","88.30000305175781","","1999-01-15T00:00:00Z","","0" +"NM-07888","548.4400024414062","548.4400024414062","","1969-07-01T00:00:00Z","","0" +"TO-0117","140.1999969482422","140.1999969482422","R","1950-09-21T00:00:00Z","","0" +"NM-00766","44.209999084472656","44.209999084472656","","2012-11-06T00:00:00Z","","0" +"SB-0707","359.3999938964844","359.3999938964844","","1954-03-06T00:00:00Z","","0" +"NM-00474","49.779998779296875","49.779998779296875","","2000-01-04T00:00:00Z","","0" +"NM-05382","59.70000076293945","59.70000076293945","","1931-10-01T00:00:00Z","","0" +"WL-0021","42.400001525878906","41.70000076293945","","2011-04-01T00:00:00Z","","0.699999988079071" +"NM-21776","8.369999885559082","8.369999885559082","","1960-08-02T00:00:00Z","","0" +"NM-16511","8.619999885559082","8.619999885559082","","1945-01-21T00:00:00Z","","0" +"NM-17028","29.030000686645508","29.030000686645508","","1937-01-14T00:00:00Z","","0" +"DE-0113","35.279998779296875","35.279998779296875","","2007-07-09T00:00:00Z","","0" +"SA-0055","61.349998474121094","59.94999694824219","","2013-02-27T00:00:00Z","","1.399999976158142" +"NM-04292","9.300000190734863","9.300000190734863","","1961-01-09T00:00:00Z","","0" +"NM-22466","101.80000305175781","101.80000305175781","R","1990-02-02T00:00:00Z","","0" +"NM-08541","302.5899963378906","302.5899963378906","","1955-12-12T00:00:00Z","","0" +"NM-11279","62.5099983215332","62.5099983215332","R","1954-07-14T00:00:00Z","","0" +"EB-276","273.3299865722656","273.3299865722656","P","1983-11-30T00:00:00Z","","0" +"NM-13246","76.1500015258789","76.1500015258789","","1952-04-01T00:00:00Z","","0" +"NM-12481","35.130001068115234","35.130001068115234","","1931-06-02T00:00:00Z","","0" +"NM-09081","1.399999976158142","1.399999976158142","","1942-11-01T00:00:00Z","","0" +"NM-17618","12.399999618530273","12.399999618530273","","1951-05-26T00:00:00Z","","0" +"NM-23203","15.699999809265137","15.699999809265137","","2006-07-27T00:00:00Z","","0" +"TO-0245","17","17","","1950-07-27T00:00:00Z","","0" +"NM-02101","5.699999809265137","5.699999809265137","","1960-06-15T00:00:00Z","","0" +"NM-13845","-8.510000228881836","-8.510000228881836","","1907-06-10T00:00:00Z","","0" +"NM-22803","60","60","","1995-06-14T00:00:00Z","","0" +"NM-03641","20.1200008392334","20.1200008392334","","2006-02-28T00:00:00Z","","0" +"NM-02288","3.6500000953674316","3.6500000953674316","","2009-06-16T00:00:00Z","","0" +"WL-0100","410.6099853515625","410.6099853515625","","2018-12-20T00:00:00Z","0001-01-01T11:45:00Z","0" +"DE-0330","42.619998931884766","42.619998931884766","","2015-06-09T00:00:00Z","","0" +"EB-266","-0.49000000953674316","-0.49000000953674316","","2015-09-15T00:00:00Z","","0" +"SM-0049","263.4200134277344","261.52001953125","","2009-08-10T00:00:00Z","","1.899999976158142" +"NM-08306","34.06999969482422","34.06999969482422","","1949-01-04T00:00:00Z","","0" +"NM-09148","342.6499938964844","342.6499938964844","","1944-01-17T00:00:00Z","","0" +"NM-28258","121.47000122070312","121.47000122070312","","1973-01-25T00:00:00Z","","0" +"NM-13235","2.319999933242798","2.319999933242798","","1968-03-27T00:00:00Z","","0" +"NM-28258","138.8000030517578","138.8000030517578","","1970-03-25T00:00:00Z","","0" +"NM-06268","13.100000381469727","13.100000381469727","","1983-05-15T00:00:00Z","","0" +"NM-01931","357.04998779296875","357.04998779296875","","1981-12-23T00:00:00Z","","0" +"NM-28254","96.30000305175781","96.30000305175781","","2016-08-25T00:00:00Z","","0" +"NM-03317","74.37000274658203","74.37000274658203","","1974-01-17T00:00:00Z","","0" +"NM-26427","2.0199999809265137","2.0199999809265137","","1987-03-16T00:00:00Z","","0" +"NM-01927","144.39999389648438","144.39999389648438","","1981-01-05T00:00:00Z","","0" +"NM-17295","36.689998626708984","36.689998626708984","","1940-07-11T00:00:00Z","","0" +"NM-01607","88.33999633789062","88.33999633789062","","1988-08-29T00:00:00Z","","0" +"NM-14509","90","90","","1952-10-27T00:00:00Z","","0" +"NM-07671","27.170000076293945","27.170000076293945","","1944-03-24T00:00:00Z","","0" +"NM-21519","31.399999618530273","31.399999618530273","","1991-03-13T00:00:00Z","","0" +"NM-02352","8.399999618530273","8.399999618530273","","1977-07-15T00:00:00Z","","0" +"NM-04260","17","17","","1990-09-28T00:00:00Z","","0" +"NM-02567","53","53","","1990-09-28T00:00:00Z","","0" +"TV-124","139.41000366210938","137.52999877929688","","2012-08-08T00:00:00Z","","1.8799999952316284" +"AB-0052","48.20000076293945","48.20000076293945","","2000-03-15T00:00:00Z","","" +"NM-15979","24.399999618530273","24.399999618530273","","1952-12-04T00:00:00Z","","0" +"NM-04632","10.399999618530273","10.399999618530273","","1958-11-15T00:00:00Z","","0" +"NM-18370","105.19999694824219","105.19999694824219","","1982-02-18T00:00:00Z","","0" +"NM-17048","15","15","","1935-06-16T00:00:00Z","","0" +"NM-21503","10.350000381469727","10.350000381469727","","2010-06-01T00:00:00Z","","0" +"SB-0431","59.13999938964844","59.13999938964844","","1986-02-04T00:00:00Z","","0" +"NM-02005","6.800000190734863","6.800000190734863","","1972-07-15T00:00:00Z","","0" +"NM-00775","29.270000457763672","29.270000457763672","","1999-01-14T00:00:00Z","","0" +"AB-0141","1101.1500244140625","1101.1500244140625","","1989-12-20T00:00:00Z","","0" +"NM-06848","35.06999969482422","35.06999969482422","P","1953-07-31T00:00:00Z","","0" +"NM-28259","76.12999725341797","76.12999725341797","","1960-12-05T00:00:00Z","","0" +"NM-00783","11.550000190734863","11.550000190734863","","1962-05-01T00:00:00Z","","0" +"NM-03332","9.539999961853027","9.539999961853027","","1988-06-27T00:00:00Z","","0" +"SB-0500","400","400","","1988-06-01T00:00:00Z","","0" +"NM-09004","81.0999984741211","81.0999984741211","","1954-11-19T00:00:00Z","","0" +"NM-02479","137.47999572753906","137.47999572753906","","1992-01-17T00:00:00Z","","0" +"NM-21236","4.590000152587891","4.590000152587891","Z","2010-03-02T00:00:00Z","","0" +"NM-19921","54.47999954223633","54.47999954223633","","1946-12-02T00:00:00Z","","0" +"NM-20049","23.209999084472656","23.209999084472656","","1945-09-28T00:00:00Z","","0" +"BC-0003","170.64999389648438","170.64999389648438","","2015-06-12T00:00:00Z","","0" +"EB-483","314","314","","1991-06-30T00:00:00Z","","0" +"NM-03242","87.44999694824219","87.44999694824219","","1949-11-01T00:00:00Z","","0" +"NM-28250","107.77999877929688","107.77999877929688","","1973-10-15T00:00:00Z","","0" +"NM-04925","48.459999084472656","48.459999084472656","","1963-01-05T00:00:00Z","","0" +"WS-009","18.5","18.5","","2012-02-02T00:00:00Z","","0" +"AB-0101","720.22998046875","720.22998046875","","2009-05-06T00:00:00Z","","" +"NM-02127","94.62000274658203","94.62000274658203","","1974-01-15T00:00:00Z","","0" +"NM-23413","128.67999267578125","128.67999267578125","","1951-12-24T00:00:00Z","","0" +"NM-14833","44.29999923706055","44.29999923706055","","1960-03-16T00:00:00Z","","0" +"NM-07559","54.65999984741211","54.65999984741211","","1957-08-15T00:00:00Z","","0" +"NM-28252","46.599998474121094","46.599998474121094","","2016-11-23T00:00:00Z","","0" +"NM-02827","52.619998931884766","52.619998931884766","","1966-01-11T00:00:00Z","","0" +"NM-02026","55.86000061035156","55.86000061035156","","1952-05-21T00:00:00Z","","0" +"NM-16438","145.6999969482422","145.6999969482422","","1979-01-05T00:00:00Z","","0" +"NM-02175","166.27000427246094","166.27000427246094","","1997-02-19T00:00:00Z","","0" +"NM-07708","27.549999237060547","27.549999237060547","","1992-05-05T00:00:00Z","","0" +"NM-16324","139","139","R","1961-01-11T00:00:00Z","","0" +"NM-02772","48.59000015258789","48.59000015258789","","1950-05-01T00:00:00Z","","0" +"NM-17716","7.210000038146973","7.210000038146973","","1940-04-02T00:00:00Z","","0" +"NM-27446","27.8799991607666","27.8799991607666","","1956-12-28T00:00:00Z","","0" +"NM-02984","52.689998626708984","52.689998626708984","","1988-01-13T00:00:00Z","","0" +"NM-11919","2.4100000858306885","2.4100000858306885","","1954-09-08T00:00:00Z","","0" +"NM-28254","14.9399995803833","14.9399995803833","","1992-03-05T00:00:00Z","","0" +"NM-02422","155.00999450683594","155.00999450683594","","1967-01-20T00:00:00Z","","0" +"NM-10858","67.20999908447266","67.20999908447266","","1984-01-05T00:00:00Z","","0" +"NM-28254","11.600000381469727","11.600000381469727","","1999-12-15T00:00:00Z","","0" +"EB-270","179.25999450683594","179.25999450683594","","2006-08-09T00:00:00Z","","0" +"NM-08048","369.1000061035156","369.1000061035156","","1943-09-10T00:00:00Z","","0" +"NM-00599","81.83000183105469","81.83000183105469","","1971-01-14T00:00:00Z","","0" +"NM-06951","105.04000091552734","105.04000091552734","","2003-12-19T00:00:00Z","","0" +"NM-02349","24.799999237060547","24.799999237060547","M","1956-03-15T00:00:00Z","","0" +"NM-06996","56.83000183105469","56.83000183105469","","2007-07-12T00:00:00Z","","0" +"NM-28250","82.83000183105469","82.83000183105469","","1993-07-25T00:00:00Z","","0" +"BC-0107","239.4199981689453","239.4199981689453","","2012-09-07T00:00:00Z","","0" +"NM-09541","44.0099983215332","44.0099983215332","R","1966-03-09T00:00:00Z","","0" +"NM-02558","101.05999755859375","101.05999755859375","","1960-12-29T00:00:00Z","","0" +"NM-18432","239.42999267578125","239.42999267578125","","1957-06-19T00:00:00Z","","0" +"NM-28257","-16.6299991607666","-16.6299991607666","","2000-12-05T00:00:00Z","","0" +"NM-02281","29.3799991607666","29.3799991607666","","2004-12-28T00:00:00Z","","0" +"NM-02111","145.8000030517578","145.8000030517578","","1992-02-04T00:00:00Z","","0" +"NM-14212","96.91000366210938","96.91000366210938","","1984-01-26T00:00:00Z","","0" +"NM-17686","1.0099999904632568","1.0099999904632568","","1983-10-27T00:00:00Z","","0" +"NM-07758","47.04999923706055","47.04999923706055","","1976-01-28T00:00:00Z","","0" +"NM-06065","234.6699981689453","234.6699981689453","","1982-01-28T00:00:00Z","","0" +"NM-25937","8.15999984741211","8.15999984741211","","1988-09-27T00:00:00Z","","0" +"NM-12749","20.760000228881836","20.760000228881836","","1944-05-14T00:00:00Z","","0" +"AB-0162","491.3699951171875","491.3699951171875","","2009-08-03T00:00:00Z","","" +"NM-08511","22.209999084472656","22.209999084472656","","1976-01-29T00:00:00Z","","0" +"NM-11347","-6.78000020980835","-6.78000020980835","","1907-09-27T00:00:00Z","","0" +"DE-0112","","","D","2013-07-22T00:00:00Z","","0" +"NM-02823","270.3699951171875","270.3699951171875","","2014-03-26T00:00:00Z","","0" +"NM-28256","204.49000549316406","204.49000549316406","","2016-05-25T00:00:00Z","","0" +"NM-01904","53.939998626708984","53.939998626708984","","1962-08-17T00:00:00Z","","0" +"NM-02772","45.459999084472656","45.459999084472656","","1964-02-01T00:00:00Z","","0" +"NM-21828","31.75","31.75","","1983-02-28T00:00:00Z","","0" +"SB-0299","144.05999755859375","144.05999755859375","","2006-06-25T00:00:00Z","","0" +"NM-02567","63.18000030517578","63.18000030517578","","1993-02-02T00:00:00Z","","0" +"NM-05681","83.6500015258789","83.6500015258789","","1950-11-28T00:00:00Z","","0" +"NM-22707","189.13999938964844","189.13999938964844","","2012-10-30T00:00:00Z","","0" +"NM-13576","26.270000457763672","26.270000457763672","","1966-02-23T00:00:00Z","","0" +"NM-11100","46.79999923706055","46.79999923706055","","1956-01-27T00:00:00Z","","0" +"NM-01801","116.4000015258789","116.4000015258789","","1995-01-13T00:00:00Z","","0" +"NM-17989","17.59000015258789","17.59000015258789","","1935-05-19T00:00:00Z","","0" +"NM-02554","268.8399963378906","268.8399963378906","","1986-01-14T00:00:00Z","","0" +"NM-11433","71.7300033569336","71.7300033569336","R","1961-03-23T00:00:00Z","","0" +"NM-13527","109.5199966430664","109.5199966430664","","1950-09-09T00:00:00Z","","0" +"WL-0028","3.9200000762939453","2.8299999237060547","","2024-10-03T00:00:00Z","0001-01-01T12:10:00Z","1.090000033378601" +"NM-06231","9.170000076293945","9.170000076293945","","1972-11-07T00:00:00Z","","0" +"AB-0037","335.95001220703125","335.95001220703125","","2009-10-07T00:00:00Z","","" +"NM-06340","63.13999938964844","63.13999938964844","","1986-03-05T00:00:00Z","","0" +"NM-08537","28.670000076293945","28.670000076293945","","1954-04-07T00:00:00Z","","0" +"NM-02282","399.1199951171875","399.1199951171875","","1986-02-01T00:00:00Z","","0" +"AB-0039","349.0799865722656","349.0799865722656","","1996-08-08T00:00:00Z","","" +"NM-13348","-51.81999969482422","-51.81999969482422","","1910-12-24T00:00:00Z","","0" +"NM-03652","32.84000015258789","32.84000015258789","","2010-07-22T00:00:00Z","","0" +"NM-00194","22.889999389648438","22.889999389648438","","1983-01-26T00:00:00Z","","0" +"NM-21252","3.609999895095825","3.609999895095825","Z","2009-07-27T00:00:00Z","","0" +"NM-13121","9.960000038146973","9.960000038146973","","1958-06-02T00:00:00Z","","0" +"NM-07360","47.220001220703125","47.220001220703125","","1960-01-19T00:00:00Z","","0" +"NM-09748","66.5999984741211","66.5999984741211","","1984-01-25T00:00:00Z","","0" +"NM-01906","90.30000305175781","90.30000305175781","","1973-01-26T00:00:00Z","","0" +"NM-07881","12.149999618530273","12.149999618530273","","1940-02-03T00:00:00Z","","0" +"EB-261","7.260000228881836","5.460000038146973","","2005-09-21T00:00:00Z","","1.7999999523162842" +"NM-19377","251.25","251.25","","1977-02-24T00:00:00Z","","0" +"NM-01926","5.599999904632568","5.599999904632568","","1960-09-15T00:00:00Z","","0" +"NM-01330","317.6499938964844","317.6499938964844","","2005-08-02T00:00:00Z","","0" +"DE-0120","33.79999923706055","33.79999923706055","","2007-10-22T00:00:00Z","","0" +"NM-12024","59.880001068115234","59.880001068115234","","1957-01-08T00:00:00Z","","0" +"NM-19964","29.860000610351562","29.860000610351562","","1952-02-20T00:00:00Z","","0" +"EB-336","209.42999267578125","209.42999267578125","","2006-01-30T00:00:00Z","","0" +"NM-19787","132.44000244140625","132.44000244140625","","2015-05-27T00:00:00Z","","0" +"NM-11473","15.699999809265137","15.699999809265137","","1957-02-11T00:00:00Z","","0" +"HS-058","4.599999904632568","4.199999809265137","","2013-12-11T00:00:00Z","","0.4000000059604645" +"NM-05920","87.43000030517578","87.43000030517578","R","1957-08-12T00:00:00Z","","0" +"NM-01995","102.76000213623047","102.76000213623047","","1972-02-01T00:00:00Z","","0" +"SM-0018","14.890000343322754","13.90000057220459","","2006-10-16T00:00:00Z","","0.9900000095367432" +"NM-06676","9.300000190734863","9.300000190734863","","1976-10-15T00:00:00Z","","0" +"NM-21908","497.1499938964844","497.1499938964844","S","2013-08-30T00:00:00Z","","0" +"NM-00099","86.94000244140625","86.94000244140625","","1974-01-17T00:00:00Z","","0" +"QU-067","467.6199951171875","465.7200012207031","","2014-06-24T00:00:00Z","","1.899999976158142" +"BC-0071","","337.8999938964844","","2021-03-11T00:00:00Z","","1.2699999809265137" +"NM-19705","362.1199951171875","362.1199951171875","","1972-02-29T00:00:00Z","","0" +"SB-0299","140.22000122070312","140.22000122070312","","2009-05-20T00:00:00Z","","0" +"NM-14183","17.09000015258789","17.09000015258789","","1939-09-01T00:00:00Z","","0" +"NM-03776","138.74000549316406","138.74000549316406","","1998-01-21T00:00:00Z","","0" +"BC-0086","305.67999267578125","305.67999267578125","","2014-09-02T00:00:00Z","","0" +"NM-11104","19.59000015258789","19.59000015258789","","1948-01-20T00:00:00Z","","0" +"NM-02796","25.100000381469727","25.100000381469727","","2009-01-21T00:00:00Z","","0" +"NM-21772","420","420","S","1979-01-01T00:00:00Z","","0" +"NM-03468","149.6199951171875","149.6199951171875","R","1994-05-26T00:00:00Z","","0" +"NM-00757","201.9499969482422","201.9499969482422","","2009-08-05T00:00:00Z","","0" +"NM-01295","102.38999938964844","102.38999938964844","","1990-11-23T00:00:00Z","","0" +"NM-04554","130.39999389648438","130.39999389648438","","1997-02-05T00:00:00Z","","0" +"DE-0111","37.40999984741211","37.40999984741211","","2009-07-14T00:00:00Z","","0" +"TV-218","213.85000610351562","213.25","","2003-08-07T00:00:00Z","","0.6000000238418579" +"BC-0114","241.47999572753906","241.47999572753906","","2015-09-09T00:00:00Z","","0" +"NM-09246","-42.58000183105469","-42.58000183105469","","1919-01-14T00:00:00Z","","0" +"NM-02043","6.599999904632568","6.599999904632568","","1962-11-15T00:00:00Z","","0" +"NM-14396","6.5","6.5","","1983-08-26T00:00:00Z","","0" +"NM-02518","6.800000190734863","6.800000190734863","","1963-05-15T00:00:00Z","","0" +"NM-20310","54.400001525878906","54.400001525878906","","1951-03-30T00:00:00Z","","0" +"NM-00366","96.01000213623047","96.01000213623047","","1989-03-27T00:00:00Z","","0" +"NM-12129","-12.300000190734863","-12.300000190734863","","1960-01-12T00:00:00Z","","0" +"NM-28252","32.70000076293945","32.70000076293945","","1996-01-05T00:00:00Z","","0" +"NM-02152","9","9","","1991-05-15T00:00:00Z","","0" +"NM-11358","6.630000114440918","6.630000114440918","","1973-01-15T00:00:00Z","","0" +"NM-07532","6.349999904632568","6.349999904632568","","1968-03-29T00:00:00Z","","0" +"NM-17305","155.88999938964844","155.88999938964844","","1977-01-13T00:00:00Z","","0" +"NM-13896","91","91","","1961-07-02T00:00:00Z","","0" +"NM-22716","4.760000228881836","4.760000228881836","Z","2009-06-03T00:00:00Z","","0" +"NM-28021","501.6199951171875","501.6199951171875","S","2015-04-18T00:00:00Z","","0" +"NM-19774","23.059999465942383","23.059999465942383","","1947-01-24T00:00:00Z","","0" +"NM-28256","135.7899932861328","135.7899932861328","","2012-03-05T00:00:00Z","","0" +"SB-0299","146.97000122070312","146.97000122070312","","2008-09-10T00:00:00Z","","0" +"NM-21542","6.71999979019165","6.71999979019165","X","1997-02-14T00:00:00Z","","0" +"NM-03380","68.13999938964844","68.13999938964844","","1993-08-09T00:00:00Z","","0" +"NM-12089","-17.299999237060547","-17.299999237060547","","1954-01-09T00:00:00Z","","0" +"NM-28019","477.45001220703125","477.45001220703125","S","2015-04-28T00:00:00Z","","0" +"NM-00686","59.869998931884766","59.869998931884766","Z","2006-04-10T00:00:00Z","","0" +"NM-09682","459.2200012207031","459.2200012207031","","1973-10-01T00:00:00Z","","0" +"NM-12158","-49.5099983215332","-49.5099983215332","","1915-01-27T00:00:00Z","","0" +"NM-12506","-21.790000915527344","-21.790000915527344","","1911-06-08T00:00:00Z","","0" +"EB-250","75.0999984741211","75.0999984741211","","1970-02-04T00:00:00Z","","0" +"NM-01971","6.699999809265137","6.699999809265137","","1971-05-15T00:00:00Z","","0" +"NM-01895","37.04999923706055","37.04999923706055","","1985-01-16T00:00:00Z","","0" +"NM-17716","7.21999979019165","7.21999979019165","","1940-04-03T00:00:00Z","","0" +"NM-17508","65.37000274658203","65.37000274658203","","1971-12-15T00:00:00Z","","0" +"NM-02029","7.900000095367432","7.900000095367432","","1999-06-15T00:00:00Z","","0" +"NM-04319","62.540000915527344","62.540000915527344","","1998-01-14T00:00:00Z","","0" +"NM-03230","391.94000244140625","391.94000244140625","","1997-03-05T00:00:00Z","","0" +"NM-10906","28.110000610351562","28.110000610351562","","1951-05-11T00:00:00Z","","0" +"DE-0113","41.040000915527344","41.040000915527344","","2016-03-03T00:00:00Z","","0" +"NM-12317","47.93000030517578","47.93000030517578","","1964-02-18T00:00:00Z","","0" +"NM-03403","7.039999961853027","7.039999961853027","","1993-01-28T00:00:00Z","","0" +"NM-02659","12.079999923706055","12.079999923706055","P","1963-11-21T00:00:00Z","","0" +"NM-17391","24.809999465942383","24.809999465942383","","1937-01-11T00:00:00Z","","0" +"UC-0118","122.55000305175781","122.55000305175781","","2010-08-26T00:00:00Z","","0" +"DE-0271","84.19999694824219","84.19999694824219","","2018-06-14T00:00:00Z","","0" +"TB-0142","177.8300018310547","175.8300018310547","","2010-08-12T00:00:00Z","","2" +"NM-03340","7.300000190734863","7.300000190734863","","1992-01-09T00:00:00Z","","0" +"NM-02866","136.77999877929688","136.77999877929688","","1979-05-08T00:00:00Z","","0" +"NM-02676","97.43000030517578","97.43000030517578","","1973-08-21T00:00:00Z","","0" +"SB-0263","138.57000732421875","138.57000732421875","","1972-12-18T00:00:00Z","","0" +"NM-03340","8.100000381469727","8.100000381469727","X","1997-01-02T00:00:00Z","","0" +"NM-05705","134.5399932861328","134.5399932861328","","1960-01-12T00:00:00Z","","0" +"NM-06676","8.399999618530273","8.399999618530273","","1985-06-15T00:00:00Z","","0" +"SB-0299","139.08999633789062","139.08999633789062","","2005-10-20T00:00:00Z","","0" +"NM-11795","37.11000061035156","37.11000061035156","","1938-08-15T00:00:00Z","","0" +"NM-28252","38.20000076293945","38.20000076293945","","1996-09-15T00:00:00Z","","0" +"NM-28251","84.87000274658203","84.87000274658203","","1970-12-15T00:00:00Z","","0" +"UC-0101","83.16999816894531","83.16999816894531","","2012-01-07T00:00:00Z","","0" +"NM-26233","162.6199951171875","162.6199951171875","","1989-04-18T00:00:00Z","","0" +"NM-12354","43.0099983215332","43.0099983215332","","1976-04-01T00:00:00Z","","0" +"NM-00591","74.93000030517578","74.93000030517578","","1987-01-07T00:00:00Z","","0" +"NM-28024","478.67999267578125","478.67999267578125","S","2015-04-25T00:00:00Z","","0" +"SB-0299","128.5500030517578","128.5500030517578","","1969-08-25T00:00:00Z","","0" +"NM-10666","7.900000095367432","7.900000095367432","P","1959-01-19T00:00:00Z","","0" +"NM-07225","199.05999755859375","199.05999755859375","","1976-08-01T00:00:00Z","","0" +"NM-01986","5.5","5.5","","1990-08-15T00:00:00Z","","0" +"NM-12353","31.020000457763672","31.020000457763672","","1954-09-16T00:00:00Z","","0" +"BC-0111","42.77000045776367","42.77000045776367","","2019-11-04T00:00:00Z","","0" +"NM-21509","6.380000114440918","6.380000114440918","","2008-07-08T00:00:00Z","","0" +"AB-0110","35.15999984741211","35.15999984741211","","2002-01-02T00:00:00Z","","" +"NM-21924","22.8799991607666","22.8799991607666","","1988-02-11T00:00:00Z","","0" +"NM-28012","479.6000061035156","479.6000061035156","S","2015-05-15T00:00:00Z","","0" +"NM-12692","-0.20000000298023224","-0.20000000298023224","","1912-05-27T00:00:00Z","","0" +"NM-20911","211.2100067138672","211.2100067138672","","1972-03-30T00:00:00Z","","0" +"SA-0051","206.52000427246094","206.52000427246094","","1992-02-20T00:00:00Z","","0" +"SM-0078","51.13999938964844","50.040000915527344","","2008-08-13T00:00:00Z","","1.100000023841858" +"SV-0134","148.60000610351562","147.10000610351562","","2015-06-06T00:00:00Z","","1.5" +"NM-11619","73.16000366210938","73.16000366210938","","1967-01-30T00:00:00Z","","0" +"NM-02989","86.12000274658203","86.12000274658203","","2008-03-18T00:00:00Z","","0" +"NM-01899","58.599998474121094","58.599998474121094","","2000-03-21T00:00:00Z","","0" +"NM-03341","5.550000190734863","5.550000190734863","","1992-08-11T00:00:00Z","","0" +"NM-00367","122.13999938964844","122.13999938964844","","1963-08-13T00:00:00Z","","0" +"NM-02567","64.4000015258789","64.4000015258789","","1992-12-30T00:00:00Z","","0" +"NM-22038","137.1999969482422","137.1999969482422","","1948-10-25T00:00:00Z","","0" +"EB-276","169.74000549316406","169.74000549316406","","1970-04-27T00:00:00Z","","0" +"NM-00714","213.74000549316406","213.74000549316406","","2008-10-03T00:00:00Z","","0" +"NM-02738","45.439998626708984","45.439998626708984","","1999-01-12T00:00:00Z","","0" +"NM-03046","6.46999979019165","6.46999979019165","","1984-03-13T00:00:00Z","","0" +"NM-28254","78.0999984741211","78.0999984741211","","1980-05-25T00:00:00Z","","0" +"NM-19336","87.41000366210938","87.41000366210938","","1977-02-17T00:00:00Z","","0" +"SV-0071","312.1000061035156","310.1000061035156","","2016-07-16T00:00:00Z","","2" +"NM-01868","8.399999618530273","8.399999618530273","","1962-10-15T00:00:00Z","","0" +"EB-467","176.1999969482422","175.27000427246094","","2004-05-22T00:00:00Z","","0.9300000071525574" +"BC-0099","19.3799991607666","19.3799991607666","","2011-05-11T00:00:00Z","","0" +"NM-01676","49.369998931884766","49.369998931884766","","1991-01-23T00:00:00Z","","0" +"NM-28028","","","F","1957-01-01T00:00:00Z","","0" +"UC-0035","88.7699966430664","88.7699966430664","","1992-01-27T00:00:00Z","","0" +"NM-05347","12.399999618530273","12.399999618530273","","1966-05-15T00:00:00Z","","0" +"NM-11207","71.27999877929688","71.27999877929688","","1976-02-04T00:00:00Z","","0" +"NM-02655","118.27999877929688","118.27999877929688","","1989-01-24T00:00:00Z","","0" +"NM-16650","50.900001525878906","50.900001525878906","","1968-01-10T00:00:00Z","","0" +"NM-17716","4.949999809265137","4.949999809265137","","1948-05-08T00:00:00Z","","0" +"NM-13425","399.2099914550781","399.2099914550781","","1974-02-01T00:00:00Z","","0" +"NM-17716","-0.23000000417232513","-0.23000000417232513","","1942-10-15T00:00:00Z","","0" +"NM-01791","312.0199890136719","312.0199890136719","","1999-08-27T00:00:00Z","","0" +"NM-08703","45.91999816894531","45.91999816894531","P","1971-01-15T00:00:00Z","","0" +"NM-04423","93.44000244140625","93.44000244140625","","1972-02-01T00:00:00Z","","0" +"NM-02813","198.6999969482422","198.6999969482422","","1977-01-20T00:00:00Z","","0" +"NM-00494","61.33000183105469","61.33000183105469","","2009-12-16T00:00:00Z","","0" +"NM-21556","6.619999885559082","6.619999885559082","Z","2005-07-12T00:00:00Z","","0" +"NM-01965","80.72000122070312","80.72000122070312","","1975-01-15T00:00:00Z","","0" +"BC-0129","24.559999465942383","24.559999465942383","","2014-12-09T00:00:00Z","","0" +"NM-00740","94.22000122070312","94.22000122070312","","2009-06-30T00:00:00Z","","0" +"NM-25009","580","580","","1976-05-06T00:00:00Z","","0" +"DE-0247","107.93000030517578","107.93000030517578","","2012-02-13T00:00:00Z","","0" +"NM-08524","9.399999618530273","9.399999618530273","","2000-07-15T00:00:00Z","","0" +"AB-0111","36.08000183105469","36.08000183105469","Z","1998-05-22T00:00:00Z","","" +"NM-03323","69.48999786376953","69.48999786376953","T","1985-06-24T00:00:00Z","","0" +"NM-27346","189.74000549316406","189.74000549316406","","1998-01-28T00:00:00Z","","0" +"NM-28010","498.57000732421875","498.57000732421875","S","2015-05-29T00:00:00Z","","0" +"NM-10967","51.459999084472656","51.459999084472656","","1953-01-09T00:00:00Z","","0" +"NM-09730","32.54999923706055","32.54999923706055","","1963-01-23T00:00:00Z","","0" +"NM-09600","-151.14999389648438","-151.14999389648438","","1907-12-10T00:00:00Z","","0" +"NM-02497","73.31999969482422","73.31999969482422","","1991-02-01T00:00:00Z","","0" +"NM-01119","183.1999969482422","183.1999969482422","Z","1994-05-03T00:00:00Z","","0" +"NM-02005","5.099999904632568","5.099999904632568","","1963-07-15T00:00:00Z","","0" +"NM-03388","13.899999618530273","13.899999618530273","","1960-08-02T00:00:00Z","","0" +"NM-28250","81.52999877929688","81.52999877929688","","1995-06-15T00:00:00Z","","0" +"NM-02005","10.5","10.5","","1957-08-15T00:00:00Z","","0" +"SB-0170","154.86000061035156","154.86000061035156","","1970-01-23T00:00:00Z","","0" +"NM-00516","7.630000114440918","7.630000114440918","","1980-01-10T00:00:00Z","","0" +"NM-28256","207.69000244140625","207.69000244140625","","1985-04-05T00:00:00Z","","0" +"NM-02147","126.0999984741211","126.0999984741211","","1964-01-17T00:00:00Z","","0" +"NM-10367","298.2200012207031","298.2200012207031","","1966-02-16T00:00:00Z","","0" +"NM-05752","59.13999938964844","59.13999938964844","","1950-07-19T00:00:00Z","","0" +"NM-03903","328.95001220703125","328.95001220703125","","1976-07-25T00:00:00Z","","0" +"AB-0192","790.9600219726562","790.9600219726562","Z","1990-10-03T00:00:00Z","","" +"NM-11284","248.13999938964844","248.13999938964844","P","1961-03-21T00:00:00Z","","0" +"NM-27371","130.6999969482422","130.6999969482422","","1963-11-20T00:00:00Z","","0" +"NM-27806","39.84000015258789","39.84000015258789","","1992-03-05T00:00:00Z","","0" +"NM-03932","102.5999984741211","102.5999984741211","","1965-01-06T00:00:00Z","","0" +"NM-19852","47.63999938964844","47.63999938964844","","1942-09-22T00:00:00Z","","0" +"NM-28250","77.87999725341797","77.87999725341797","","2001-02-26T00:00:00Z","","0" +"NM-07275","8.949999809265137","8.949999809265137","","1963-01-10T00:00:00Z","","0" +"NM-10852","47.349998474121094","47.349998474121094","","1948-01-14T00:00:00Z","","0" +"NM-17716","4.639999866485596","4.639999866485596","","1946-07-19T00:00:00Z","","0" +"NM-00185","13.899999618530273","13.899999618530273","","1961-08-15T00:00:00Z","","0" +"NM-03104","307.4800109863281","307.4800109863281","","2003-02-19T00:00:00Z","","0" +"NM-01872","9.899999618530273","9.899999618530273","","1953-05-15T00:00:00Z","","0" +"NM-07475","158.57000732421875","158.57000732421875","","1991-11-04T00:00:00Z","","0" +"NM-03747","52.130001068115234","52.130001068115234","","1961-04-05T00:00:00Z","","0" +"NM-03334","10.949999809265137","10.949999809265137","","1991-04-29T00:00:00Z","","0" +"NM-22203","523.780029296875","523.780029296875","","2001-01-29T00:00:00Z","","0" +"SA-0010","187.4600067138672","186.3400115966797","","2011-03-22T00:00:00Z","","1.1200000047683716" +"NM-03468","146.52000427246094","146.52000427246094","R","1990-09-07T00:00:00Z","","0" +"EB-276","403","403","P","1991-10-31T00:00:00Z","","0" +"EB-012","101","101","","1956-01-23T00:00:00Z","","0" +"NM-03192","56.119998931884766","56.119998931884766","","1961-12-05T00:00:00Z","","0" +"NM-02654","140.88999938964844","140.88999938964844","","1992-08-06T00:00:00Z","","0" +"NM-15944","105","105","","1952-12-11T00:00:00Z","","0" +"NM-28254","50.790000915527344","50.790000915527344","","1957-03-05T00:00:00Z","","0" +"NM-07475","159.9199981689453","159.9199981689453","","1992-02-05T00:00:00Z","","0" +"NM-04328","69.69000244140625","69.69000244140625","","1949-02-01T00:00:00Z","","0" +"NM-26617","22.75","22.75","","2012-05-09T00:00:00Z","","0" +"NM-09166","64.2300033569336","64.2300033569336","","1981-02-19T00:00:00Z","","0" +"NM-09609","48.84000015258789","48.84000015258789","","1972-01-13T00:00:00Z","","0" +"NM-00261","10.920000076293945","10.920000076293945","","1970-01-06T00:00:00Z","","0" +"NM-20973","26.010000228881836","26.010000228881836","","1941-05-13T00:00:00Z","","0" +"NM-10221","70.19000244140625","70.19000244140625","","1986-02-12T00:00:00Z","","0" +"NM-22859","20","20","","1948-01-01T00:00:00Z","","0" +"NM-02092","90.91000366210938","90.91000366210938","","1974-01-18T00:00:00Z","","0" +"NM-00294","12.130000114440918","12.130000114440918","","1964-07-28T00:00:00Z","","0" +"NM-11657","65.38999938964844","65.38999938964844","","1959-01-15T00:00:00Z","","0" +"NM-13121","7.099999904632568","7.099999904632568","","1970-01-20T00:00:00Z","","0" +"NM-03156","295.8500061035156","295.8500061035156","","1983-01-08T00:00:00Z","","0" +"NM-19043","368.79998779296875","368.79998779296875","","1984-01-17T00:00:00Z","","0" +"NM-00284","31.440000534057617","31.440000534057617","","2008-12-17T00:00:00Z","","0" +"NM-28253","12.9399995803833","12.9399995803833","","1997-06-15T00:00:00Z","","0" +"NM-27253","35.41999816894531","35.41999816894531","","1981-12-28T00:00:00Z","","0" +"NM-02583","147.3300018310547","147.3300018310547","","1963-01-08T00:00:00Z","","0" +"NM-28014","498.7699890136719","498.7699890136719","S","2015-05-15T00:00:00Z","","0" +"NM-17721","127.5","127.5","","1995-03-22T00:00:00Z","","0" +"NM-02586","277.6199951171875","277.6199951171875","","1980-03-01T00:00:00Z","","0" +"NM-23252","287","287","","1985-03-01T00:00:00Z","","0" +"NM-22990","16.06999969482422","16.06999969482422","Z","2009-02-25T00:00:00Z","","0" +"SB-0247","50.56999969482422","50.56999969482422","","1993-02-16T00:00:00Z","","0" +"NM-00525","62.70000076293945","62.70000076293945","","1959-01-15T00:00:00Z","","0" +"NM-13877","-39.119998931884766","-39.119998931884766","","1910-05-20T00:00:00Z","","0" +"NM-10853","56.58000183105469","56.58000183105469","","1970-01-05T00:00:00Z","","0" +"NM-01894","78.58999633789062","78.58999633789062","","1994-09-07T00:00:00Z","","0" +"NM-11370","77.76000213623047","77.76000213623047","","1956-05-10T00:00:00Z","","0" +"NM-19050","389.8900146484375","389.8900146484375","","1982-02-24T00:00:00Z","","0" +"NM-03274","13.850000381469727","13.850000381469727","","1994-01-14T00:00:00Z","","0" +"NM-24312","25","25","","1993-01-22T00:00:00Z","","0" +"NM-18539","321.9200134277344","321.9200134277344","","2013-07-24T00:00:00Z","","0" +"NM-02023","122.33999633789062","122.33999633789062","","1982-02-01T00:00:00Z","","0" +"SA-0066","239.74000549316406","237.63999938964844","","2011-03-29T00:00:00Z","","2.0999999046325684" +"NM-13750","-7.679999828338623","-7.679999828338623","","1909-05-24T00:00:00Z","","0" +"NM-13594","49.540000915527344","49.540000915527344","","1983-09-15T00:00:00Z","","0" +"NM-05977","93.63999938964844","93.63999938964844","","1943-10-10T00:00:00Z","","0" +"NM-05752","68.05999755859375","68.05999755859375","","1955-01-19T00:00:00Z","","0" +"NM-00988","","","D","2004-03-09T00:00:00Z","","0" +"NM-02237","60.36000061035156","60.36000061035156","R","1949-03-17T00:00:00Z","","0" +"NM-26001","48.88999938964844","48.88999938964844","","1977-11-02T00:00:00Z","","0" +"NM-01893","16.3799991607666","16.3799991607666","","2010-02-08T00:00:00Z","","0" +"AR-0010","17","15.399999618530273","R","2016-03-14T00:00:00Z","","1.600000023841858" +"NM-18007","232.4199981689453","232.4199981689453","","1990-01-04T00:00:00Z","","0" +"NM-28256","256.94000244140625","256.94000244140625","","1998-06-15T00:00:00Z","","0" +"NM-24711","260.0199890136719","260.0199890136719","","1959-10-07T00:00:00Z","","0" +"NM-13425","394.3500061035156","394.3500061035156","","1963-05-01T00:00:00Z","","0" +"NM-14259","-16.020000457763672","-16.020000457763672","","1912-12-12T00:00:00Z","","0" +"NM-03419","23.989999771118164","23.989999771118164","","1985-05-05T00:00:00Z","","0" +"TB-0139","70","70","","1997-02-21T00:00:00Z","","0" +"NM-22493","254.50999450683594","254.50999450683594","","1958-09-18T00:00:00Z","","0" +"NM-07913","110.33000183105469","110.33000183105469","","1988-02-02T00:00:00Z","","0" +"NM-02510","90.01000213623047","90.01000213623047","","1991-08-12T00:00:00Z","","0" +"NM-05347","13.100000381469727","13.100000381469727","","1979-08-15T00:00:00Z","","0" +"NM-21522","306.4599914550781","306.4599914550781","","1991-06-13T00:00:00Z","","0" +"NM-23913","16.350000381469727","16.350000381469727","","1993-02-03T00:00:00Z","","0" +"NM-03353","58.7599983215332","58.7599983215332","","2001-07-19T00:00:00Z","","0" +"NM-06138","16","16","","2012-10-30T00:00:00Z","","0" +"NM-28011","496.489990234375","496.489990234375","S","2015-06-04T00:00:00Z","","0" +"DE-0123","","","D","2008-04-21T00:00:00Z","","0" +"NM-01888","7.820000171661377","7.820000171661377","","1985-06-13T00:00:00Z","","0" +"NM-04313","76.8499984741211","76.8499984741211","","1963-01-04T00:00:00Z","","0" +"NM-28253","27.719999313354492","27.719999313354492","","1973-03-15T00:00:00Z","","0" +"EB-483","340","340","","1992-05-31T00:00:00Z","","0" +"NM-00766","41.58000183105469","41.58000183105469","","2011-11-18T00:00:00Z","","0" +"NM-01955","5.900000095367432","5.900000095367432","","1950-07-15T00:00:00Z","","0" +"NM-09427","-61.060001373291016","-61.060001373291016","","1908-12-29T00:00:00Z","","0" +"NM-25506","69.62000274658203","69.62000274658203","","1973-07-11T00:00:00Z","","0" +"NM-06427","195.17999267578125","195.17999267578125","","1990-02-22T00:00:00Z","","0" +"NM-07890","55.220001220703125","55.220001220703125","","1991-02-06T00:00:00Z","","0" +"NM-27499","101.30999755859375","101.30999755859375","","1990-01-23T00:00:00Z","","0" +"NM-03355","30.84000015258789","30.84000015258789","Z","1997-06-18T00:00:00Z","","0" +"NM-19628","66.75","66.75","","1942-04-07T00:00:00Z","","0" +"BC-0322","124.81999969482422","124.81999969482422","","2018-04-06T00:00:00Z","","0" +"NM-23148","84.9000015258789","84.9000015258789","","1957-11-14T00:00:00Z","","0" +"NM-17271","66.80999755859375","66.80999755859375","","1958-09-09T00:00:00Z","","0" +"NM-03048","204.57000732421875","204.57000732421875","","1997-01-09T00:00:00Z","","0" +"NM-22866","52.18000030517578","52.18000030517578","","1962-01-03T00:00:00Z","","0" +"NM-11609","133.16000366210938","133.16000366210938","","1976-02-26T00:00:00Z","","0" +"NM-00610","126.94000244140625","126.94000244140625","","2010-12-09T00:00:00Z","","0" +"SA-0036","50.150001525878906","49.75","","2011-03-26T00:00:00Z","","0.4000000059604645" +"NM-01575","82.16999816894531","82.16999816894531","","1970-01-13T00:00:00Z","","0" +"AB-0003","429.3599853515625","429.3599853515625","","2003-07-24T00:00:00Z","","" +"NM-14245","-12.550000190734863","-12.550000190734863","","1911-01-23T00:00:00Z","","0" +"NM-13823","20.43000030517578","20.43000030517578","","1943-09-16T00:00:00Z","","0" +"NM-02050","80.7300033569336","80.7300033569336","","1996-02-14T00:00:00Z","","0" +"NM-10965","41.7400016784668","41.7400016784668","S","1943-01-20T00:00:00Z","","0" +"NM-06899","156.6699981689453","156.6699981689453","","1978-01-30T00:00:00Z","","0" +"NM-03397","22.8700008392334","22.8700008392334","","1992-01-27T00:00:00Z","","0" +"AB-0070","147.64999389648438","147.64999389648438","","1997-03-07T00:00:00Z","","" +"NM-15448","71.61000061035156","71.61000061035156","","1976-02-05T00:00:00Z","","0" +"NM-02168","8.079999923706055","8.079999923706055","","1995-10-04T00:00:00Z","","0" +"EB-288","108.33000183105469","108.33000183105469","","1983-05-31T00:00:00Z","","0" +"NM-02349","19.100000381469727","19.100000381469727","","1979-06-15T00:00:00Z","","0" +"NM-01597","25.270000457763672","25.270000457763672","","1987-02-03T00:00:00Z","","0" +"NM-03349","38.400001525878906","38.400001525878906","S","1984-05-03T00:00:00Z","","0" +"NM-01125","183.36000061035156","183.36000061035156","","1962-03-22T00:00:00Z","","0" +"NM-03228","85.13999938964844","85.13999938964844","","2005-02-04T00:00:00Z","","0" +"NM-28257","51.290000915527344","51.290000915527344","","1975-04-15T00:00:00Z","","0" +"DE-0319","42.709999084472656","42.709999084472656","","2010-11-18T00:00:00Z","","0" +"NM-03673","75.3499984741211","75.3499984741211","","1986-03-06T00:00:00Z","","0" +"NM-28085","39.970001220703125","39.970001220703125","","2016-01-29T00:00:00Z","","0" +"NM-28257","71.0199966430664","71.0199966430664","","1977-06-15T00:00:00Z","","0" +"NM-08798","35.599998474121094","35.599998474121094","","1986-01-17T00:00:00Z","","0" +"NM-28250","87.83000183105469","87.83000183105469","","2008-12-24T00:00:00Z","","0" +"NM-04185","76.51000213623047","76.51000213623047","","1953-11-20T00:00:00Z","","0" +"NM-02281","45.220001220703125","45.220001220703125","","2014-10-23T00:00:00Z","","0" +"NM-07458","27.59000015258789","27.59000015258789","","1957-02-26T00:00:00Z","","0" +"NM-18061","24.030000686645508","24.030000686645508","P","1960-01-14T00:00:00Z","","0" +"SD-0167","99.19999694824219","99.19999694824219","","1963-03-12T00:00:00Z","","0" +"NM-11677","19.299999237060547","19.299999237060547","","1956-01-31T00:00:00Z","","0" +"NM-02394","72.68000030517578","72.68000030517578","","1945-03-22T00:00:00Z","","0" +"BC-0127","227.75","227.75","","2014-12-12T00:00:00Z","","0" +"NM-13145","11.579999923706055","11.579999923706055","","1972-12-18T00:00:00Z","","0" +"NM-00191","85.56999969482422","85.56999969482422","","1954-01-15T00:00:00Z","","0" +"NM-00788","212.97999572753906","212.97999572753906","","2012-11-30T00:00:00Z","","0" +"NM-02352","6","6","","2000-04-15T00:00:00Z","","0" +"NM-28253","36.59000015258789","36.59000015258789","","2005-07-05T00:00:00Z","","0" +"NM-19997","77.69000244140625","77.69000244140625","","1952-03-28T00:00:00Z","","0" +"NM-02237","92.87000274658203","92.87000274658203","","1987-02-11T00:00:00Z","","0" +"NM-27536","33.790000915527344","33.790000915527344","","1966-03-24T00:00:00Z","","0" +"NM-13901","3.8399999141693115","3.8399999141693115","","1962-12-31T00:00:00Z","","0" +"NM-27665","77.23999786376953","77.23999786376953","","1987-02-06T00:00:00Z","","0" +"NM-28257","55.86000061035156","55.86000061035156","","1953-11-25T00:00:00Z","","0" +"NM-10574","65.8499984741211","65.8499984741211","","1958-01-15T00:00:00Z","","0" +"NM-02311","130.7100067138672","130.7100067138672","","1968-01-28T00:00:00Z","","0" +"NM-14752","35.31999969482422","35.31999969482422","","1994-02-23T00:00:00Z","","0" +"NM-21232","4.110000133514404","4.110000133514404","Z","2009-07-27T00:00:00Z","","0" +"NM-02004","10.300000190734863","10.300000190734863","","1980-03-15T00:00:00Z","","0" +"NM-02222","209","209","P","1960-09-14T00:00:00Z","","0" +"NM-01955","5.900000095367432","5.900000095367432","","1964-06-15T00:00:00Z","","0" +"NM-05309","9.5","9.5","","1963-07-15T00:00:00Z","","0" +"NM-11942","2.049999952316284","2.049999952316284","","1948-09-15T00:00:00Z","","0" +"BC-0442","","60.58000183105469","","2023-03-16T00:00:00Z","","2.5999999046325684" +"BC-0133","328.8900146484375","328.8900146484375","","2010-08-10T00:00:00Z","","0" +"NM-28254","11.199999809265137","11.199999809265137","","1948-11-25T00:00:00Z","","0" +"SB-0086","186","186","","1965-05-11T00:00:00Z","","0" +"NM-07660","8.029999732971191","8.029999732971191","","1962-01-30T00:00:00Z","","0" +"NM-02101","5.400000095367432","5.400000095367432","","1999-07-15T00:00:00Z","","0" +"NM-08647","27.25","27.25","","1936-11-12T00:00:00Z","","0" +"NM-09119","58.95000076293945","58.95000076293945","","1986-02-13T00:00:00Z","","0" +"NM-00237","13.489999771118164","13.489999771118164","","1952-03-20T00:00:00Z","","0" +"NM-01987","11.489999771118164","11.489999771118164","","2012-01-25T00:00:00Z","","0" +"NM-02032","92","92","","1972-02-23T00:00:00Z","","0" +"SA-0109","248.4199981689453","247.8699951171875","","2011-01-21T00:00:00Z","","0.550000011920929" +"SB-0216","205.8000030517578","205.8000030517578","","1994-02-17T00:00:00Z","","0" +"NM-03387","37.4900016784668","37.4900016784668","Z","1991-02-06T00:00:00Z","","0" +"NM-25736","-41.880001068115234","-41.880001068115234","","1985-09-17T00:00:00Z","","0" +"NM-01105","252.60000610351562","252.60000610351562","Z","1996-01-30T00:00:00Z","","0" +"NM-02520","4.599999904632568","4.599999904632568","","1998-09-15T00:00:00Z","","0" +"NM-28252","61.47999954223633","61.47999954223633","","1967-07-05T00:00:00Z","","0" +"EB-298","162.86000061035156","162.86000061035156","","2010-10-14T00:00:00Z","","0" +"NM-02831","29.899999618530273","29.899999618530273","","1998-01-16T00:00:00Z","","0" +"SB-0299","136.74000549316406","136.74000549316406","","1998-07-30T00:00:00Z","","0" +"NM-01986","7.099999904632568","7.099999904632568","","1990-02-01T00:00:00Z","","0" +"QY-0236","32.29999923706055","32.29999923706055","","1952-09-24T00:00:00Z","","0" +"NM-21827","8.359999656677246","8.359999656677246","Z","2009-03-10T00:00:00Z","","0" +"BC-0218","22.420000076293945","22.420000076293945","","2018-04-02T00:00:00Z","","0" +"NM-09924","12.869999885559082","12.869999885559082","","2014-05-17T00:00:00Z","","0" +"DE-0091","89.97000122070312","89.97000122070312","","2000-12-11T00:00:00Z","","0" +"NM-17297","42.95000076293945","42.95000076293945","","1951-01-10T00:00:00Z","","0" +"NM-01901","10.699999809265137","10.699999809265137","","1980-01-04T00:00:00Z","","0" +"NM-09449","70.69000244140625","70.69000244140625","","1983-02-14T00:00:00Z","","0" +"NM-03378","21.489999771118164","21.489999771118164","","1966-02-11T00:00:00Z","","0" +"NM-10331","580.27001953125","580.27001953125","","1957-01-01T00:00:00Z","","0" +"NM-01884","12.039999961853027","12.039999961853027","","2001-12-27T00:00:00Z","","0" +"EB-296","497.70001220703125","497.70001220703125","","2005-11-16T00:00:00Z","","0" +"NM-02659","11.75","11.75","P","1965-01-07T00:00:00Z","","0" +"BC-0157","273.9700012207031","273.9700012207031","","2017-10-07T00:00:00Z","","0" +"NM-01852","274.75","274.75","","1966-01-06T00:00:00Z","","0" +"NM-00686","59.90999984741211","59.90999984741211","","2009-06-05T00:00:00Z","","0" +"NM-13707","23.469999313354492","23.469999313354492","S","1996-02-20T00:00:00Z","","0" +"NM-02197","12.609999656677246","12.609999656677246","","1990-12-21T00:00:00Z","","0" +"NM-28251","78.47000122070312","78.47000122070312","","2007-10-05T00:00:00Z","","0" +"NM-00329","15.75","15.75","","1970-01-06T00:00:00Z","","0" +"NM-17232","69.56999969482422","69.56999969482422","","1962-01-08T00:00:00Z","","0" +"NM-09520","2.890000104904175","2.890000104904175","","1953-03-16T00:00:00Z","","0" +"NM-03437","70.91000366210938","70.91000366210938","","1986-01-15T00:00:00Z","","0" +"NM-03353","47.650001525878906","47.650001525878906","","2001-01-11T00:00:00Z","","0" +"NM-17434","25.8799991607666","25.8799991607666","","1942-01-24T00:00:00Z","","0" +"NM-11228","41.84000015258789","41.84000015258789","","1945-01-10T00:00:00Z","","0" +"QY-0603","30.100000381469727","30.100000381469727","","1947-04-01T00:00:00Z","","0" +"NM-03295","43.2400016784668","43.2400016784668","","1990-02-14T00:00:00Z","","0" +"NM-02043","5.800000190734863","5.800000190734863","","1953-09-15T00:00:00Z","","0" +"NM-02702","25.450000762939453","25.450000762939453","","2004-05-05T00:00:00Z","","0" +"NM-08217","90.05000305175781","90.05000305175781","","1962-01-30T00:00:00Z","","0" +"PC-102","555.7999877929688","553.7999877929688","","2017-12-15T00:00:00Z","","2" +"NM-02964","50.720001220703125","50.720001220703125","","1994-02-18T00:00:00Z","","0" +"DE-0109","38.79999923706055","38.79999923706055","","2011-08-16T00:00:00Z","","0" +"NM-27735","53.040000915527344","53.040000915527344","R","1953-05-28T00:00:00Z","","0" +"NM-00781","31.270000457763672","31.270000457763672","","1960-01-12T00:00:00Z","","0" +"NM-03307","98.9800033569336","98.9800033569336","","1988-02-09T00:00:00Z","","0" +"NM-14061","-16.020000457763672","-16.020000457763672","","1913-12-06T00:00:00Z","","0" +"NM-01868","10.300000190734863","10.300000190734863","","1966-08-15T00:00:00Z","","0" +"NM-11040","-91.08999633789062","-91.08999633789062","","1911-06-10T00:00:00Z","","0" +"NM-08683","38.2599983215332","38.2599983215332","","1946-01-31T00:00:00Z","","0" +"NM-07565","45.97999954223633","45.97999954223633","","1971-02-08T00:00:00Z","","0" +"NM-23576","121.79000091552734","121.79000091552734","T","1984-01-30T00:00:00Z","","0" +"NM-07813","27.610000610351562","27.610000610351562","P","1966-02-09T00:00:00Z","","0" +"QY-0601","49.20000076293945","49.20000076293945","","1941-04-29T00:00:00Z","","0" +"NM-03331","10.720000267028809","10.720000267028809","","1993-07-07T00:00:00Z","","0" +"NM-05855","18.06999969482422","18.06999969482422","","1975-10-02T00:00:00Z","","0" +"NM-05689","73.29000091552734","73.29000091552734","","1931-10-11T00:00:00Z","","0" +"NM-14330","52.68000030517578","52.68000030517578","","1963-11-20T00:00:00Z","","0" +"NM-02990","28.770000457763672","28.770000457763672","","1955-11-22T00:00:00Z","","0" +"NM-02650","58.93000030517578","58.93000030517578","","1989-01-26T00:00:00Z","","0" +"NM-00672","54.65999984741211","54.65999984741211","","1957-05-15T00:00:00Z","","0" +"NM-18639","364.05999755859375","364.05999755859375","","1977-01-05T00:00:00Z","","0" +"NM-02207","11","11","","1975-11-15T00:00:00Z","","0" +"EB-004","235.86000061035156","233.75999450683594","","2004-06-03T00:00:00Z","","2.0999999046325684" +"NM-28259","168.24000549316406","168.24000549316406","","1979-07-05T00:00:00Z","","0" +"SB-0381","25.829999923706055","25.829999923706055","","1955-01-21T00:00:00Z","","0" +"NM-03249","63","63","","1995-02-08T00:00:00Z","","0" +"NM-03218","40.5099983215332","40.5099983215332","","1959-02-03T00:00:00Z","","0" +"NM-13823","22.3799991607666","22.3799991607666","","1941-05-15T00:00:00Z","","0" +"NM-02324","92.26000213623047","92.26000213623047","","2014-02-11T00:00:00Z","","0" +"NM-02393","62.810001373291016","62.810001373291016","","1934-02-04T00:00:00Z","","0" +"NM-02090","64.52999877929688","64.52999877929688","","1950-11-30T00:00:00Z","","0" +"NM-02807","69.16999816894531","69.16999816894531","P","1952-01-29T00:00:00Z","","0" +"SO-0225","","","D","2019-03-01T00:00:00Z","","1.2200000286102295" +"NM-01872","16.399999618530273","16.399999618530273","","1958-04-15T00:00:00Z","","0" +"NM-06931","71.80000305175781","71.80000305175781","P","1952-06-12T00:00:00Z","","0" +"NM-25680","-104.11000061035156","-104.11000061035156","","1988-09-21T00:00:00Z","","0" +"NM-12467","97.93000030517578","97.93000030517578","","1956-01-18T00:00:00Z","","0" +"BC-0267","448.0899963378906","448.0899963378906","","2020-04-25T00:00:00Z","","0" +"NM-08524","15.5","15.5","","1955-10-15T00:00:00Z","","0" +"NM-11967","34.720001220703125","34.720001220703125","","1940-01-31T00:00:00Z","","0" +"NM-02482","42.93000030517578","42.93000030517578","","1996-03-05T00:00:00Z","","0" +"NM-03240","84.05999755859375","84.05999755859375","","1957-02-04T00:00:00Z","","0" +"NM-13522","85.05999755859375","85.05999755859375","","1986-04-18T00:00:00Z","","0" +"NM-11565","105.26000213623047","105.26000213623047","","1962-07-10T00:00:00Z","","0" +"AB-0122","540.0599975585938","540.0599975585938","","1997-08-22T00:00:00Z","","" +"NM-00317","272.1199951171875","272.1199951171875","","1983-01-31T00:00:00Z","","0" +"NM-22862","236.97000122070312","236.97000122070312","T","1984-03-13T00:00:00Z","","0" +"NM-01895","48.97999954223633","48.97999954223633","","2000-01-20T00:00:00Z","","0" +"AB-0070","149.02999877929688","149.02999877929688","","2002-01-22T00:00:00Z","","" +"BC-0213","124.73999786376953","124.73999786376953","","2016-06-07T00:00:00Z","","0" +"NM-02017","6.099999904632568","6.099999904632568","","1993-06-15T00:00:00Z","","0" +"NM-05332","255.4499969482422","255.4499969482422","","1980-01-02T00:00:00Z","","0" +"DE-0251","43.81999969482422","43.81999969482422","","2011-09-12T00:00:00Z","","0" +"NM-04050","224.10000610351562","224.10000610351562","P","1955-01-21T00:00:00Z","","0" +"NM-24874","48.59000015258789","48.59000015258789","","1962-06-07T00:00:00Z","","0" +"NM-24607","0.49000000953674316","0.49000000953674316","","1988-05-09T00:00:00Z","","0" +"NM-05962","39.560001373291016","39.560001373291016","","1955-08-04T00:00:00Z","","0" +"NM-01833","310","310","","1990-04-10T00:00:00Z","","0" +"NM-24981","151.88999938964844","151.88999938964844","","1960-08-15T00:00:00Z","","0" +"NM-28255","-0.03999999910593033","-0.03999999910593033","","1952-01-05T00:00:00Z","","0" +"NM-02207","17","17","","1956-02-15T00:00:00Z","","0" +"NM-17249","55.13999938964844","55.13999938964844","","1955-01-25T00:00:00Z","","0" +"NM-00212","95.02999877929688","95.02999877929688","","1978-01-06T00:00:00Z","","0" +"NM-28258","146.25","146.25","","2005-05-05T00:00:00Z","","0" +"NM-17393","21.639999389648438","21.639999389648438","","1936-04-20T00:00:00Z","","0" +"NM-23240","231.7899932861328","231.7899932861328","Z","1997-05-06T00:00:00Z","","0" +"NM-26061","128.67999267578125","128.67999267578125","","1978-01-26T00:00:00Z","","0" +"NM-01986","8.300000190734863","8.300000190734863","","1951-02-15T00:00:00Z","","0" +"NM-11771","43.369998931884766","43.369998931884766","","1936-09-23T00:00:00Z","","0" +"BC-0253","231.3699951171875","231.3699951171875","","2016-06-02T00:00:00Z","","0" +"NM-16349","8","8","","1951-01-01T00:00:00Z","","0" +"NM-06474","111.11000061035156","111.11000061035156","","1971-12-15T00:00:00Z","","0" +"NM-00353","114.25","114.25","","2016-02-04T00:00:00Z","","0" +"NM-02384","10","10","","1968-05-15T00:00:00Z","","0" +"NM-11560","77.9800033569336","77.9800033569336","","1954-07-14T00:00:00Z","","0" +"NM-13644","34.209999084472656","34.209999084472656","","1939-01-31T00:00:00Z","","0" +"NM-07510","24.760000228881836","24.760000228881836","","1961-05-31T00:00:00Z","","0" +"NM-05737","102.55999755859375","102.55999755859375","","1952-07-16T00:00:00Z","","0" +"NM-02306","28.100000381469727","28.100000381469727","","1996-01-31T00:00:00Z","","0" +"SB-0299","129.24000549316406","129.24000549316406","","1982-04-10T00:00:00Z","","0" +"NM-16196","41.290000915527344","41.290000915527344","","1994-11-22T00:00:00Z","","0" +"NM-23205","63.5","63.5","","2006-06-29T00:00:00Z","","0" +"NM-04509","98.80000305175781","98.80000305175781","","1960-01-06T00:00:00Z","","0" +"NM-03154","81","81","","1965-07-14T00:00:00Z","","0" +"NM-02005","5.800000190734863","5.800000190734863","","1995-03-15T00:00:00Z","","0" +"NM-02556","43.20000076293945","43.20000076293945","","1991-01-30T00:00:00Z","","0" +"NM-11980","65.08000183105469","65.08000183105469","","1959-01-13T00:00:00Z","","0" +"NM-02772","35.41999816894531","35.41999816894531","","1982-11-01T00:00:00Z","","0" +"EB-388","90.94000244140625","89.51000213623047","","2009-11-15T00:00:00Z","","1.4299999475479126" +"NM-26718","52.150001525878906","52.150001525878906","","1956-06-07T00:00:00Z","","0" +"NM-03387","37.9900016784668","37.9900016784668","","1991-04-04T00:00:00Z","","0" +"NM-05450","168.6199951171875","168.6199951171875","","1987-10-15T00:00:00Z","","0" +"NM-27415","58.58000183105469","58.58000183105469","","1956-01-11T00:00:00Z","","0" +"NM-22396","194.08999633789062","194.08999633789062","R","1991-12-18T00:00:00Z","","0" +"NM-20120","72.83999633789062","72.83999633789062","","1958-02-11T00:00:00Z","","0" +"NM-00644","68.30999755859375","68.30999755859375","","1975-10-01T00:00:00Z","","0" +"BC-0147","481.2699890136719","481.2699890136719","","2017-10-04T00:00:00Z","","0" +"NM-28251","63.630001068115234","63.630001068115234","","1999-11-25T00:00:00Z","","0" +"NM-05622","68","68","","1936-02-10T00:00:00Z","","0" +"NM-05316","141.94000244140625","141.94000244140625","","1992-02-04T00:00:00Z","","0" +"NM-20667","13.65999984741211","13.65999984741211","","1955-11-03T00:00:00Z","","0" +"NM-00627","63.369998931884766","63.369998931884766","","1991-03-27T00:00:00Z","","0" +"NM-11471","129.42999267578125","129.42999267578125","","1977-04-29T00:00:00Z","","0" +"NM-14064","34.880001068115234","34.880001068115234","","1942-02-12T00:00:00Z","","0" +"NM-06595","73.86000061035156","73.86000061035156","","1941-03-11T00:00:00Z","","0" +"NM-02006","8.600000381469727","8.600000381469727","","1962-01-15T00:00:00Z","","0" +"NM-03862","169.66000366210938","169.66000366210938","","1978-01-16T00:00:00Z","","0" +"SO-0175","8.319999694824219","7.919999599456787","","2021-03-13T00:00:00Z","0001-01-01T15:26:00Z","0.4000000059604645" +"NM-17296","32.75","32.75","","1949-01-07T00:00:00Z","","0" +"NM-13604","26.940000534057617","26.940000534057617","","1941-01-25T00:00:00Z","","0" +"EB-357","236.13099670410156","234.13099670410156","T","2002-02-04T00:00:00Z","","2" +"NM-01066","100.47000122070312","100.47000122070312","","1948-01-20T00:00:00Z","","0" +"NM-02207","10.600000381469727","10.600000381469727","","2000-02-18T00:00:00Z","","0" +"NM-02988","48.20000076293945","48.20000076293945","","1982-01-12T00:00:00Z","","0" +"PC-102","552","550","","2011-04-12T00:00:00Z","","2" +"NM-02244","80.81999969482422","80.81999969482422","","1948-01-16T00:00:00Z","","0" +"NM-00812","44.56999969482422","44.56999969482422","","1963-01-02T00:00:00Z","","0" +"AB-0210","167.94000244140625","167.94000244140625","","2010-02-05T00:00:00Z","","" +"NM-00494","40.849998474121094","40.849998474121094","","1964-09-15T00:00:00Z","","0" +"NM-02576","31.06999969482422","31.06999969482422","","2003-01-23T00:00:00Z","","0" +"NM-11857","25.3799991607666","25.3799991607666","","1965-01-06T00:00:00Z","","0" +"NM-07142","84.5999984741211","84.5999984741211","","1977-02-03T00:00:00Z","","0" +"TV-137","9.510000228881836","9.110000610351562","","2011-08-02T00:00:00Z","","0.4000000059604645" +"NM-28250","79.02999877929688","79.02999877929688","","1994-01-05T00:00:00Z","","0" +"NM-20539","87.62000274658203","87.62000274658203","","1977-01-20T00:00:00Z","","0" +"NM-13635","-19.479999542236328","-19.479999542236328","","1916-01-07T00:00:00Z","","0" +"NM-02209","99","99","","1953-06-01T00:00:00Z","","0" +"AR-0226","33.0099983215332","31.619998931884766","","2018-07-25T00:00:00Z","0001-01-01T08:30:00Z","1.3899999856948853" +"NM-03262","99.69999694824219","99.69999694824219","","2004-04-12T00:00:00Z","","0" +"NM-02207","14.300000190734863","14.300000190734863","","1968-12-15T00:00:00Z","","0" +"NM-01898","25.68000030517578","25.68000030517578","","1992-11-10T00:00:00Z","","0" +"NM-11857","12.359999656677246","12.359999656677246","","1942-01-21T00:00:00Z","","0" +"NM-22980","11.40999984741211","11.40999984741211","Z","2008-07-22T00:00:00Z","","0" +"NM-05765","52.93000030517578","52.93000030517578","","1940-05-07T00:00:00Z","","0" +"TV-218","213.3000030517578","212.6999969482422","","2002-07-30T00:00:00Z","","0.6000000238418579" +"NM-27202","138.1300048828125","138.1300048828125","","2012-09-14T00:00:00Z","","0" +"NM-11924","0.800000011920929","0.800000011920929","","1946-01-06T00:00:00Z","","0" +"NM-02005","9.199999809265137","9.199999809265137","","1972-02-15T00:00:00Z","","0" +"NM-00384","34.709999084472656","34.709999084472656","","1963-02-25T00:00:00Z","","0" +"NM-01311","126.55000305175781","126.55000305175781","","2006-07-14T00:00:00Z","","0" +"DE-0244","100.80000305175781","100.80000305175781","","2002-02-19T00:00:00Z","","0" +"NM-13531","3.799999952316284","3.799999952316284","","1959-08-06T00:00:00Z","","0" +"NM-02407","29.959999084472656","29.959999084472656","","1944-09-12T00:00:00Z","","0" +"NM-20375","63.099998474121094","63.099998474121094","","1943-11-22T00:00:00Z","","0" +"NM-02831","60.150001525878906","60.150001525878906","","1969-04-01T00:00:00Z","","0" +"SB-0164","65","65","","1950-06-06T00:00:00Z","","0" +"NM-07821","47.52000045776367","47.52000045776367","","1977-01-19T00:00:00Z","","0" +"NM-05255","267.44000244140625","267.44000244140625","","1970-12-10T00:00:00Z","","0" +"NM-28257","31.209999084472656","31.209999084472656","","2006-04-05T00:00:00Z","","0" +"NM-14535","87.81999969482422","87.81999969482422","","1983-12-15T00:00:00Z","","0" +"NM-02976","104.30000305175781","104.30000305175781","","1982-01-08T00:00:00Z","","0" +"DE-0178","50.810001373291016","50.810001373291016","","2005-12-01T00:00:00Z","","0" +"SB-0299","145.47999572753906","145.47999572753906","","1981-07-20T00:00:00Z","","0" +"NM-13594","35.310001373291016","35.310001373291016","","1961-09-22T00:00:00Z","","0" +"NM-11961","21.700000762939453","21.700000762939453","","1945-01-14T00:00:00Z","","0" +"NM-07641","-137.2899932861328","-137.2899932861328","","1908-09-09T00:00:00Z","","0" +"NM-01490","229","229","","2012-03-13T00:00:00Z","","0" +"NM-06085","26.829999923706055","26.829999923706055","","1975-07-02T00:00:00Z","","0" +"NM-28015","499.0299987792969","499.0299987792969","S","2015-06-02T00:00:00Z","","0" +"NM-03419","34.0099983215332","34.0099983215332","Z","2000-02-28T00:00:00Z","","0" +"NM-01291","82.54000091552734","82.54000091552734","","1989-08-30T00:00:00Z","","0" +"SM-0055","222.1199951171875","220.1199951171875","","2015-07-15T00:00:00Z","","2" +"NM-27247","36.029998779296875","36.029998779296875","","1992-10-20T00:00:00Z","","0" +"NM-08362","118.0999984741211","118.0999984741211","P","1990-08-30T00:00:00Z","","0" +"NM-11550","-11","-11","","1908-06-08T00:00:00Z","","0" +"NM-01872","8.300000190734863","8.300000190734863","","1968-09-15T00:00:00Z","","0" +"NM-02622","159.74000549316406","159.74000549316406","","1966-02-07T00:00:00Z","","0" +"NM-10892","78.86000061035156","78.86000061035156","","1962-01-22T00:00:00Z","","0" +"EB-276","173.9199981689453","173.9199981689453","","1977-01-30T00:00:00Z","","0" +"NM-14129","-8.800000190734863","-8.800000190734863","","1910-02-04T00:00:00Z","","0" +"NM-28253","48.540000915527344","48.540000915527344","","1983-06-15T00:00:00Z","","0" +"NM-12725","24.850000381469727","24.850000381469727","P","1953-05-25T00:00:00Z","","0" +"NM-01654","22","22","","1957-06-28T00:00:00Z","","0" +"NM-04404","129.35000610351562","129.35000610351562","","1974-01-07T00:00:00Z","","0" +"EB-482","18.329999923706055","18.329999923706055","","1986-06-30T00:00:00Z","","0" +"NM-28257","-4.619999885559082","-4.619999885559082","","2020-01-24T00:00:00Z","","0" +"NM-02518","8.100000381469727","8.100000381469727","","1968-02-15T00:00:00Z","","0" +"NM-04340","14.1899995803833","14.1899995803833","","2016-02-12T00:00:00Z","","0" +"NM-28257","-2","-2","","1992-05-25T00:00:00Z","","0" +"NM-15409","81.30000305175781","81.30000305175781","","1970-02-10T00:00:00Z","","0" +"AB-0179","185.94000244140625","185.94000244140625","","2004-07-28T00:00:00Z","","" +"NM-05309","7.599999904632568","7.599999904632568","","1946-03-15T00:00:00Z","","0" +"NM-16627","50.54999923706055","50.54999923706055","","1972-03-06T00:00:00Z","","0" +"NM-00664","476.6499938964844","476.6499938964844","","1957-11-14T00:00:00Z","","0" +"NM-17375","18.399999618530273","18.399999618530273","R","1966-04-11T00:00:00Z","","0" +"NM-12771","63.900001525878906","63.900001525878906","","1963-08-13T00:00:00Z","","0" +"NM-08648","41.560001373291016","41.560001373291016","","1939-07-23T00:00:00Z","","0" +"NM-03117","33.2400016784668","33.2400016784668","","1966-01-13T00:00:00Z","","0" +"SM-0043","103.25","101.94999694824219","","2008-04-15T00:00:00Z","","1.2999999523162842" +"NM-02173","87.80000305175781","87.80000305175781","","1987-07-09T00:00:00Z","","0" +"NM-08031","-26.40999984741211","-26.40999984741211","","1909-11-08T00:00:00Z","","0" +"NM-08760","-52.97999954223633","-52.97999954223633","","1910-02-21T00:00:00Z","","0" +"NM-03692","201.0399932861328","201.0399932861328","","1956-03-29T00:00:00Z","","0" +"NM-10588","-55.290000915527344","-55.290000915527344","","1906-10-09T00:00:00Z","","0" +"NM-01986","5.800000190734863","5.800000190734863","","1991-04-15T00:00:00Z","","0" +"NM-21863","5.309999942779541","5.309999942779541","Z","2010-08-27T00:00:00Z","","0" +"NM-13413","-56.439998626708984","-56.439998626708984","","1952-01-02T00:00:00Z","","0" +"NM-03747","53.439998626708984","53.439998626708984","","1952-05-22T00:00:00Z","","0" +"NM-03455","292.20001220703125","292.20001220703125","","1959-11-10T00:00:00Z","","0" +"NM-00094","1.409999966621399","1.409999966621399","","1964-12-07T00:00:00Z","","0" +"NM-13286","62.439998626708984","62.439998626708984","","1956-01-30T00:00:00Z","","0" +"NM-25680","-98.5199966430664","-98.5199966430664","","1988-04-19T00:00:00Z","","0" +"NM-04005","124.68000030517578","124.68000030517578","","1987-01-20T00:00:00Z","","0" +"NM-07944","-34.34000015258789","-34.34000015258789","","1913-08-07T00:00:00Z","","0" +"NM-02547","60.650001525878906","60.650001525878906","","1955-12-12T00:00:00Z","","0" +"NM-08498","43.709999084472656","43.709999084472656","","1981-02-24T00:00:00Z","","0" +"NM-02772","143.08999633789062","143.08999633789062","","1970-06-01T00:00:00Z","","0" +"NM-17396","46.279998779296875","46.279998779296875","","1939-03-13T00:00:00Z","","0" +"DE-0099","92.02999877929688","92.02999877929688","","2003-01-14T00:00:00Z","","0" +"MI-0014","300","300","Z","1950-12-31T00:00:00Z","","0" +"NM-01568","72.41000366210938","72.41000366210938","","1990-03-20T00:00:00Z","","0" +"NM-08647","23.920000076293945","23.920000076293945","","1949-01-18T00:00:00Z","","0" +"EB-483","344","344","","1990-07-31T00:00:00Z","","0" +"NM-16675","18.079999923706055","18.079999923706055","R","1934-10-17T00:00:00Z","","0" +"NM-20097","33.66999816894531","33.66999816894531","","1944-08-19T00:00:00Z","","0" +"NM-20555","108.2300033569336","108.2300033569336","","1972-02-16T00:00:00Z","","0" +"EB-295","498.55999755859375","498.55999755859375","","2007-10-03T00:00:00Z","","0" +"NM-10566","79.98999786376953","79.98999786376953","","1960-07-01T00:00:00Z","","0" +"NM-28250","90.58999633789062","90.58999633789062","","1988-06-15T00:00:00Z","","0" +"BC-0337","","290.5","","2021-11-10T00:00:00Z","","0" +"NM-16303","171.88999938964844","171.88999938964844","","1989-01-06T00:00:00Z","","0" +"NM-21050","755","755","","1935-07-01T00:00:00Z","","0" +"NM-02518","8.300000190734863","8.300000190734863","","2002-05-15T00:00:00Z","","0" +"NM-28253","26.540000915527344","26.540000915527344","","1986-06-25T00:00:00Z","","0" +"NM-25651","13.399999618530273","13.399999618530273","","1970-05-27T00:00:00Z","","0" +"NM-02487","9","9","","1962-09-15T00:00:00Z","","0" +"NM-27706","50.900001525878906","50.900001525878906","","1959-01-06T00:00:00Z","","0" +"NM-01022","445.6099853515625","445.6099853515625","","1993-01-06T00:00:00Z","","0" +"NM-14293","4.289999961853027","4.289999961853027","","1970-01-20T00:00:00Z","","0" +"NM-02684","20.420000076293945","20.420000076293945","","1958-01-17T00:00:00Z","","0" +"NM-22280","360.44000244140625","360.44000244140625","","2010-03-08T00:00:00Z","","0" +"NM-01029","407.8999938964844","407.8999938964844","A","2009-02-21T00:00:00Z","","0" +"NM-00474","50.150001525878906","50.150001525878906","","1987-01-06T00:00:00Z","","0" +"NM-04258","10.0600004196167","10.0600004196167","","2009-10-29T00:00:00Z","","0" +"NM-11357","155.6699981689453","155.6699981689453","","1976-04-07T00:00:00Z","","0" +"NM-07330","129.10000610351562","129.10000610351562","","1954-04-09T00:00:00Z","","0" +"NM-02707","20.34000015258789","20.34000015258789","","1954-01-20T00:00:00Z","","0" +"NM-12911","79.55999755859375","79.55999755859375","","1950-09-11T00:00:00Z","","0" +"NM-05689","92.47000122070312","92.47000122070312","","1959-11-09T00:00:00Z","","0" +"NM-05524","78.25","78.25","","1940-05-08T00:00:00Z","","0" +"NM-01914","17.729999542236328","17.729999542236328","","1995-02-15T00:00:00Z","","0" +"AB-0102","578.5800170898438","578.5800170898438","","2003-06-04T00:00:00Z","","" +"NM-26736","176.75","176.75","","1957-12-04T00:00:00Z","","0" +"NM-04506","68.33999633789062","68.33999633789062","","1950-01-05T00:00:00Z","","0" +"NM-05309","16","16","","1956-10-15T00:00:00Z","","0" +"NM-21845","2.819999933242798","2.819999933242798","Z","2008-04-22T00:00:00Z","","0" +"NM-17165","27.43000030517578","27.43000030517578","","1935-01-13T00:00:00Z","","0" +"NM-17923","69.91999816894531","69.91999816894531","","1987-02-04T00:00:00Z","","0" +"DE-0112","36.43000030517578","36.43000030517578","","2006-02-01T00:00:00Z","","0" +"NM-05292","43.15999984741211","43.15999984741211","","1944-01-13T00:00:00Z","","0" +"NM-28255","184.77999877929688","184.77999877929688","","1972-08-05T00:00:00Z","","0" +"NM-03373","53.97999954223633","53.97999954223633","","2006-09-14T00:00:00Z","","0" +"AB-0058","167.1999969482422","167.1999969482422","","1992-11-01T00:00:00Z","","0" +"NM-05554","95.6500015258789","95.6500015258789","","1953-01-08T00:00:00Z","","0" +"NM-22756","34.68000030517578","34.68000030517578","","1953-07-21T00:00:00Z","","0" +"AB-0165","484.67999267578125","484.67999267578125","","2006-01-12T00:00:00Z","","" +"NM-09813","23.219999313354492","23.219999313354492","","1950-09-12T00:00:00Z","","0" +"NM-05813","123.33000183105469","123.33000183105469","","1991-05-16T00:00:00Z","","0" +"NM-10143","30.8799991607666","30.8799991607666","","1944-07-27T00:00:00Z","","0" +"NM-01947","5.400000095367432","5.400000095367432","","1998-03-15T00:00:00Z","","0" +"EB-480","566.02001953125","563.02001953125","Z","2005-10-31T00:00:00Z","","3" +"NM-01990","18.1299991607666","18.1299991607666","","2015-02-11T00:00:00Z","","0" +"NM-04451","109.5","109.5","P","1962-06-20T00:00:00Z","","0" +"SO-0269","","","D","2016-09-21T00:00:00Z","","1.2200000286102295" +"NM-03005","68.95999908447266","68.95999908447266","","2004-08-21T00:00:00Z","","0" +"NM-00685","23.959999084472656","23.959999084472656","","1954-09-10T00:00:00Z","","0" +"NM-02316","186.88999938964844","186.88999938964844","","1978-01-11T00:00:00Z","","0" +"NM-08247","145.94000244140625","145.94000244140625","","2015-12-16T00:00:00Z","","0" +"NM-16047","44.709999084472656","44.709999084472656","","1995-02-16T00:00:00Z","","0" +"NM-10007","-19.479999542236328","-19.479999542236328","","1915-08-06T00:00:00Z","","0" +"NM-00561","68.4800033569336","68.4800033569336","","1961-02-06T00:00:00Z","","0" +"NM-19887","32.02000045776367","32.02000045776367","","1955-09-14T00:00:00Z","","0" +"NM-01947","5.300000190734863","5.300000190734863","","1987-01-15T00:00:00Z","","0" +"NM-27202","137.82000732421875","137.82000732421875","","2013-12-30T00:00:00Z","","0" +"NM-13543","57.59000015258789","57.59000015258789","","1981-02-11T00:00:00Z","","0" +"EB-220","133.05999755859375","132.41000366210938","","2008-10-01T00:00:00Z","","0.6499999761581421" +"NM-23241","248.83999633789062","248.83999633789062","Z","1996-09-03T00:00:00Z","","0" +"NM-02717","30.6299991607666","30.6299991607666","","1943-09-15T00:00:00Z","","0" +"NM-07904","14.550000190734863","14.550000190734863","","2012-05-17T00:00:00Z","","0" +"NM-28251","77.2300033569336","77.2300033569336","","1989-08-05T00:00:00Z","","0" +"NM-12317","49.06999969482422","49.06999969482422","","1941-01-22T00:00:00Z","","0" +"NM-09081","26.139999389648438","26.139999389648438","","1945-05-01T00:00:00Z","","0" +"NM-05516","9.199999809265137","9.199999809265137","","1963-02-15T00:00:00Z","","0" +"NM-28257","47.93000030517578","47.93000030517578","","1994-08-15T00:00:00Z","","0" +"NM-21680","328.07000732421875","328.07000732421875","","2011-12-07T00:00:00Z","","0" +"NM-02837","72.2300033569336","72.2300033569336","","2006-01-12T00:00:00Z","","0" +"NM-06268","17.600000381469727","17.600000381469727","","1966-05-15T00:00:00Z","","0" +"NM-19959","37.06999969482422","37.06999969482422","","1946-10-02T00:00:00Z","","0" +"NM-24338","52.79999923706055","52.79999923706055","","1980-08-20T00:00:00Z","","0" +"NM-25800","55.93000030517578","55.93000030517578","","1970-08-08T00:00:00Z","","0" +"NM-11045","93.75","93.75","","1984-01-12T00:00:00Z","","0" +"NM-10099","129.5500030517578","129.5500030517578","","1974-12-20T00:00:00Z","","0" +"NM-03322","80.01000213623047","80.01000213623047","","1986-08-14T00:00:00Z","","0" +"NM-27517","112.95999908447266","112.95999908447266","","1997-01-31T00:00:00Z","","0" +"NM-13594","20.799999237060547","20.799999237060547","","1970-01-26T00:00:00Z","","0" +"NM-19070","58.279998779296875","58.279998779296875","R","1972-02-10T00:00:00Z","","0" +"NM-14346","22.299999237060547","22.299999237060547","","1956-01-03T00:00:00Z","","0" +"NM-13953","-11.399999618530273","-11.399999618530273","","1911-10-15T00:00:00Z","","0" +"NM-28258","180.97000122070312","180.97000122070312","","1996-08-15T00:00:00Z","","0" +"NM-01788","5.079999923706055","5.079999923706055","","1997-01-31T00:00:00Z","","0" +"NM-28252","25.18000030517578","25.18000030517578","","1953-12-05T00:00:00Z","","0" +"NM-26751","203.47000122070312","203.47000122070312","","1964-04-15T00:00:00Z","","0" +"NM-06734","58.4900016784668","58.4900016784668","","1967-01-25T00:00:00Z","","0" +"NM-03426","356.42999267578125","356.42999267578125","T","1992-07-07T00:00:00Z","","0" +"NM-02443","86.12999725341797","86.12999725341797","","1997-01-16T00:00:00Z","","0" +"BC-0049","107.08000183105469","107.08000183105469","","2011-12-21T00:00:00Z","","0" +"NM-09348","-84.16000366210938","-84.16000366210938","","1906-04-13T00:00:00Z","","0" +"NM-01278","97.47000122070312","97.47000122070312","","1950-02-08T00:00:00Z","","0" +"NM-27951","34.29999923706055","34.29999923706055","","1956-05-07T00:00:00Z","","0" +"NM-04300","133.8300018310547","133.8300018310547","","1957-12-27T00:00:00Z","","0" +"AB-0037","332.05999755859375","332.05999755859375","","1998-02-05T00:00:00Z","","" +"NM-14593","140.74000549316406","140.74000549316406","","1957-05-02T00:00:00Z","","0" +"NM-00606","92.29000091552734","92.29000091552734","","2006-01-25T00:00:00Z","","0" +"NM-02443","96.36000061035156","96.36000061035156","","2003-10-08T00:00:00Z","","0" +"NM-03329","19.729999542236328","19.729999542236328","","1990-05-03T00:00:00Z","","0" +"BC-0190","165.6300048828125","165.6300048828125","","2011-02-18T00:00:00Z","","0" +"NM-02758","313.29998779296875","313.29998779296875","","1964-09-23T00:00:00Z","","0" +"NM-18893","399.69000244140625","399.69000244140625","","1975-01-03T00:00:00Z","","0" +"NM-21898","98","98","","1988-11-17T00:00:00Z","","0" +"NM-17716","3.9700000286102295","3.9700000286102295","","1947-06-25T00:00:00Z","","0" +"NM-28251","75.43000030517578","75.43000030517578","","1989-06-15T00:00:00Z","","0" +"NM-13790","-28.719999313354492","-28.719999313354492","","1915-12-09T00:00:00Z","","0" +"NM-00486","63.369998931884766","63.369998931884766","","2000-01-04T00:00:00Z","","0" +"DE-0345","72.9000015258789","69.9000015258789","","2015-12-08T00:00:00Z","","3" +"NM-02476","60.95000076293945","60.95000076293945","","1955-01-27T00:00:00Z","","0" +"NM-13886","53.63999938964844","53.63999938964844","","1991-06-11T00:00:00Z","","0" +"NM-02740","96.86000061035156","96.86000061035156","","1997-01-03T00:00:00Z","","0" +"NM-11388","39.72999954223633","39.72999954223633","","1949-11-17T00:00:00Z","","0" +"NM-21004","27.469999313354492","27.469999313354492","","1950-02-10T00:00:00Z","","0" +"NM-03248","23.700000762939453","23.700000762939453","","1971-01-26T00:00:00Z","","0" +"DE-0085","90.4800033569336","90.4800033569336","","2000-10-17T00:00:00Z","","0" +"NM-13769","24.93000030517578","24.93000030517578","S","1954-02-01T00:00:00Z","","0" +"NM-17989","19.1299991607666","19.1299991607666","P","1961-06-07T00:00:00Z","","0" +"NM-02487","9","9","","1990-12-15T00:00:00Z","","0" +"EB-479","287","287","","1994-03-31T00:00:00Z","","0" +"NM-00366","86.5999984741211","86.5999984741211","","1983-02-07T00:00:00Z","","0" +"NM-02471","166.41000366210938","166.41000366210938","","1963-10-02T00:00:00Z","","0" +"NM-14293","4.860000133514404","4.860000133514404","","1960-05-03T00:00:00Z","","0" +"NM-28254","113.95999908447266","113.95999908447266","","1989-05-05T00:00:00Z","","0" +"NM-02852","63.849998474121094","63.849998474121094","","1969-01-10T00:00:00Z","","0" +"NM-02256","7","7","","1960-10-15T00:00:00Z","","0" +"NM-01295","104.75","104.75","","1983-04-01T00:00:00Z","","0" +"NM-16774","18.40999984741211","18.40999984741211","","1942-07-21T00:00:00Z","","0" +"NM-03757","36.65999984741211","36.65999984741211","","1950-12-01T00:00:00Z","","0" +"NM-02702","48.65999984741211","48.65999984741211","","1978-06-01T00:00:00Z","","0" +"NM-17716","5.230000019073486","5.230000019073486","","1939-05-18T00:00:00Z","","0" +"NM-06063","21.100000381469727","21.100000381469727","","1947-09-19T00:00:00Z","","0" +"NM-00072","275","275","","1956-04-11T00:00:00Z","","0" +"NM-05762","58.18000030517578","58.18000030517578","","1957-09-05T00:00:00Z","","0" +"DE-0106","38.130001068115234","38.130001068115234","","2010-09-13T00:00:00Z","","0" +"BC-0105","138","138","","2014-03-11T00:00:00Z","","0" +"BC-0149","236.75","236.75","","2015-09-01T00:00:00Z","","0" +"NM-01961","92.2300033569336","92.2300033569336","","1956-03-13T00:00:00Z","","0" +"NM-10906","21.549999237060547","21.549999237060547","","1942-06-23T00:00:00Z","","0" +"DE-0106","39.209999084472656","39.209999084472656","","2007-05-01T00:00:00Z","","0" +"NM-14092","-6.78000020980835","-6.78000020980835","","1906-03-09T00:00:00Z","","0" +"NM-28255","185.55999755859375","185.55999755859375","","2003-07-03T00:00:00Z","","0" +"NM-22466","121","121","R","1990-01-02T00:00:00Z","","0" +"NM-16537","11.770000457763672","11.770000457763672","","1933-03-12T00:00:00Z","","0" +"NM-15173","22","22","","1955-01-14T00:00:00Z","","0" +"NM-22627","39.970001220703125","39.970001220703125","","2007-11-29T00:00:00Z","","0" +"NM-06076","46.68000030517578","46.68000030517578","","1959-01-15T00:00:00Z","","0" +"NM-17635","10.180000305175781","10.180000305175781","","1940-05-21T00:00:00Z","","0" +"NM-02415","67.9000015258789","67.9000015258789","P","1962-11-26T00:00:00Z","","0" +"EB-358","274.5979919433594","272.5979919433594","","2002-01-18T00:00:00Z","","2" +"NM-06085","26.719999313354492","26.719999313354492","","1974-10-02T00:00:00Z","","0" +"NM-28256","286.489990234375","286.489990234375","","2000-08-04T00:00:00Z","","0" +"NM-10385","65.93000030517578","65.93000030517578","","1976-03-04T00:00:00Z","","0" +"AB-0052","48.70000076293945","48.70000076293945","","2009-10-06T00:00:00Z","","" +"BC-0161","79.83000183105469","79.83000183105469","","2015-12-01T00:00:00Z","","0" +"NM-02527","10.800000190734863","10.800000190734863","","1968-04-15T00:00:00Z","","0" +"DE-0165","46.97999954223633","46.97999954223633","","2016-09-29T00:00:00Z","","0" +"NM-25912","281.94000244140625","281.94000244140625","","1967-04-12T00:00:00Z","","0" +"NM-13013","68.87000274658203","68.87000274658203","","1967-01-15T00:00:00Z","","0" +"NM-08040","132.7899932861328","132.7899932861328","","1982-02-08T00:00:00Z","","0" +"NM-01879","11.40999984741211","11.40999984741211","","2001-12-11T00:00:00Z","","0" +"NM-01894","71.8499984741211","71.8499984741211","","2002-11-19T00:00:00Z","","0" +"DE-0074","88.5","88.5","","2005-11-29T00:00:00Z","","0" +"NM-08524","9.600000381469727","9.600000381469727","","1966-08-15T00:00:00Z","","0" +"NM-05367","103.37000274658203","103.37000274658203","S","1966-01-25T00:00:00Z","","0" +"BC-0139","429.4200134277344","429.4200134277344","","2013-09-05T00:00:00Z","","0" +"NM-12071","72.38999938964844","72.38999938964844","","1981-01-07T00:00:00Z","","0" +"NM-28253","29.270000457763672","29.270000457763672","","1961-04-25T00:00:00Z","","0" +"NM-00559","96.7699966430664","96.7699966430664","","1976-03-23T00:00:00Z","","0" +"NM-26962","122.38999938964844","124.98999786376953","","1998-02-05T00:00:00Z","","0" +"NM-13425","386.4100036621094","386.4100036621094","","1966-05-01T00:00:00Z","","0" +"NM-02115","26.899999618530273","26.899999618530273","","1959-04-20T00:00:00Z","","0" +"ED-0217","29","29","","1947-11-05T00:00:00Z","","0" +"NM-04223","11.880000114440918","11.880000114440918","","1976-01-15T00:00:00Z","","0" +"NM-24810","150.41000366210938","150.41000366210938","","1959-10-08T00:00:00Z","","0" +"BW-0441","90","90","","1968-09-08T00:00:00Z","","0" +"NM-05980","57.900001525878906","57.900001525878906","","1935-02-03T00:00:00Z","","0" +"NM-22111","8.319999694824219","8.319999694824219","Z","2010-08-24T00:00:00Z","","0" +"NM-19174","322.04998779296875","322.04998779296875","","1980-06-12T00:00:00Z","","0" +"NM-17562","35.70000076293945","35.70000076293945","P","1948-07-29T00:00:00Z","","0" +"NM-11198","43.2599983215332","43.2599983215332","","1971-03-09T00:00:00Z","","0" +"NM-12349","21.049999237060547","21.049999237060547","","1942-01-28T00:00:00Z","","0" +"NM-08052","274.7900085449219","274.7900085449219","","1997-01-13T00:00:00Z","","0" +"NM-01878","74.58999633789062","74.58999633789062","","1984-01-03T00:00:00Z","","0" +"NM-03378","26.030000686645508","26.030000686645508","","1974-01-03T00:00:00Z","","0" +"NM-13899","8.569999694824219","8.569999694824219","","1960-03-31T00:00:00Z","","0" +"NM-08143","11.869999885559082","11.869999885559082","","2016-08-04T00:00:00Z","","0" +"NM-00804","105.98999786376953","105.98999786376953","","2011-01-11T00:00:00Z","","0" +"NM-03390","34.790000915527344","34.790000915527344","","2002-03-12T00:00:00Z","","0" +"NM-01868","8.5","8.5","","1997-01-15T00:00:00Z","","0" +"NM-12330","83.80000305175781","83.80000305175781","","1953-01-26T00:00:00Z","","0" +"NM-04487","10.1899995803833","10.1899995803833","","2009-10-29T00:00:00Z","","0" +"NM-12043","63.279998779296875","63.279998779296875","","1966-02-15T00:00:00Z","","0" +"UC-0112","238.83999633789062","238.83999633789062","","1981-01-31T00:00:00Z","","0" +"NM-11331","11.220000267028809","11.220000267028809","","1977-07-16T00:00:00Z","","0" +"NM-17015","88.95999908447266","88.95999908447266","","1982-03-19T00:00:00Z","","0" +"NM-03376","21.920000076293945","21.920000076293945","Z","1997-06-18T00:00:00Z","","0" +"NM-04232","25.959999084472656","25.959999084472656","","1952-11-07T00:00:00Z","","0" +"BC-0057","199.02000427246094","199.02000427246094","","2018-12-20T00:00:00Z","","0" +"NM-03090","61.779998779296875","61.779998779296875","","1968-01-10T00:00:00Z","","0" +"NM-02152","7.699999809265137","7.699999809265137","","1996-04-15T00:00:00Z","","0" +"NM-01884","10.449999809265137","10.449999809265137","","2007-03-29T00:00:00Z","","0" +"NM-17716","4.849999904632568","4.849999904632568","","1947-12-11T00:00:00Z","","0" +"NM-28375","201","201","","2017-06-20T00:00:00Z","","0" +"NM-00643","109.2300033569336","109.2300033569336","","1976-12-01T00:00:00Z","","0" +"NM-06676","13","13","","1979-02-15T00:00:00Z","","0" +"NM-13597","-40.27000045776367","-40.27000045776367","","1907-09-18T00:00:00Z","","0" +"NM-03356","91.0999984741211","91.0999984741211","","1967-08-04T00:00:00Z","","0" +"NM-01863","14.399999618530273","14.399999618530273","","1998-11-19T00:00:00Z","","0" +"NM-28259","83.41000366210938","83.41000366210938","","1994-01-05T00:00:00Z","","0" +"NM-05497","96.13999938964844","96.13999938964844","","1951-07-21T00:00:00Z","","0" +"NM-10957","40","40","","1946-06-20T00:00:00Z","","0" +"AB-0208","760.4199829101562","760.4199829101562","T","1984-11-26T00:00:00Z","","" +"EB-012","414.75","414.75","","1971-01-07T00:00:00Z","","0" +"NM-17716","1.5199999809265137","1.5199999809265137","","1945-03-08T00:00:00Z","","0" +"NM-23292","82.81999969482422","82.81999969482422","","2024-08-14T00:00:00Z","0001-01-01T10:40:00Z","0" +"EB-263","0.8100000023841858","0.8100000023841858","","2012-08-08T00:00:00Z","","0" +"WL-0088","79.29166412353516","76.69166564941406","","2003-01-26T00:00:00Z","","2.5999999046325684" +"NM-28011","497.6300048828125","497.6300048828125","S","2015-09-04T00:00:00Z","","0" +"NM-27571","23.06999969482422","23.06999969482422","","1965-12-01T00:00:00Z","","0" +"NM-02420","52.20000076293945","52.20000076293945","","1997-02-04T00:00:00Z","","0" +"NM-23793","130.5800018310547","130.5800018310547","","1965-01-19T00:00:00Z","","0" +"NM-08791","35.95000076293945","35.95000076293945","","1961-02-02T00:00:00Z","","0" +"NM-16678","21.940000534057617","21.940000534057617","P","1967-01-04T00:00:00Z","","0" +"NM-02006","7.5","7.5","","1947-10-15T00:00:00Z","","0" +"DE-0376","17.950000762939453","14.980000495910645","","2015-12-08T00:00:00Z","","2.9700000286102295" +"UC-0033","117.69000244140625","117.69000244140625","","2010-08-25T00:00:00Z","","0" +"NM-03338","8.649999618530273","8.649999618530273","","1989-07-31T00:00:00Z","","0" +"NM-04600","76.5","76.5","P","1986-03-19T00:00:00Z","","0" +"DE-0228","130.42999267578125","130.42999267578125","","2013-04-23T00:00:00Z","","0" +"NM-02527","9.699999809265137","9.699999809265137","","1960-04-15T00:00:00Z","","0" +"NM-00643","109.62999725341797","109.62999725341797","","1978-08-01T00:00:00Z","","0" +"NM-07117","32.86000061035156","32.86000061035156","","2003-07-10T00:00:00Z","","0" +"NM-17689","","","D","1984-03-13T00:00:00Z","","0" +"AB-0200","195.47999572753906","195.47999572753906","","2007-02-05T00:00:00Z","","" +"NM-02591","17","17","","1956-01-15T00:00:00Z","","0" +"NM-02656","118.76000213623047","118.76000213623047","","2008-01-17T00:00:00Z","","0" +"NM-02658","220.3000030517578","220.3000030517578","","1948-05-18T00:00:00Z","","0" +"NM-09926","32.650001525878906","32.650001525878906","","1967-12-01T00:00:00Z","","0" +"NM-27527","36.5099983215332","36.5099983215332","","1966-03-31T00:00:00Z","","0" +"NM-07376","228.82000732421875","228.82000732421875","","1969-02-28T00:00:00Z","","0" +"NM-13868","-11.109999656677246","-11.109999656677246","","1912-06-04T00:00:00Z","","0" +"NM-02831","52.400001525878906","52.400001525878906","","1985-11-15T00:00:00Z","","0" +"NM-10736","12.949999809265137","12.949999809265137","","1957-01-09T00:00:00Z","","0" +"NM-02761","100.4000015258789","100.4000015258789","","1986-01-08T00:00:00Z","","0" +"NM-10069","9.8100004196167","9.8100004196167","","1971-08-05T00:00:00Z","","0" +"EB-413","207.8000030517578","207.8000030517578","","2014-01-10T00:00:00Z","","0" +"NM-02196","22.34000015258789","22.34000015258789","","2010-06-01T00:00:00Z","","0" +"NM-09081","71.95999908447266","71.95999908447266","","1957-01-11T00:00:00Z","","0" +"NM-11678","19.020000457763672","19.020000457763672","","1941-01-24T00:00:00Z","","0" +"NM-26604","72.76000213623047","72.76000213623047","","1986-01-29T00:00:00Z","","0" +"NM-03417","18.600000381469727","18.600000381469727","","1953-01-05T00:00:00Z","","0" +"NM-26567","128.5500030517578","128.5500030517578","","1996-01-22T00:00:00Z","","0" +"NM-05571","91.8499984741211","91.8499984741211","","1957-11-27T00:00:00Z","","0" +"NM-06694","171.0399932861328","171.0399932861328","","1991-05-01T00:00:00Z","","0" +"AB-0112","23.600000381469727","23.600000381469727","","2006-10-19T00:00:00Z","","" +"NM-07579","69.33999633789062","69.33999633789062","","1970-01-12T00:00:00Z","","0" +"NM-12564","30.170000076293945","30.170000076293945","","1965-09-14T00:00:00Z","","0" +"NM-22774","158.41000366210938","158.41000366210938","","1988-04-01T00:00:00Z","","0" +"DE-0247","107.76000213623047","107.76000213623047","","2013-03-01T00:00:00Z","","0" +"NM-24873","143.66000366210938","143.66000366210938","","1958-09-29T00:00:00Z","","0" +"NM-24516","18.5","18.5","","1973-05-31T00:00:00Z","","0" +"NM-05125","106.5","106.5","","1954-12-28T00:00:00Z","","0" +"NM-01830","4.900000095367432","4.900000095367432","","1995-02-27T00:00:00Z","","0" +"NM-02101","","","D","1964-09-15T00:00:00Z","","0" +"NM-28258","99.0199966430664","99.0199966430664","","1988-01-15T00:00:00Z","","0" +"NM-18280","294.3699951171875","294.3699951171875","","2002-03-13T00:00:00Z","","0" +"NM-06676","8.300000190734863","8.300000190734863","","1984-12-15T00:00:00Z","","0" +"NM-08524","12","12","","1968-10-15T00:00:00Z","","0" +"PC-009","154.9199981689453","157.8000030517578","R","1998-04-04T00:00:00Z","","0" +"NM-28250","84.93000030517578","84.93000030517578","","2006-03-06T00:00:00Z","","0" +"NM-07201","74.62000274658203","74.62000274658203","","1966-01-13T00:00:00Z","","0" +"NM-06856","25.270000457763672","25.270000457763672","","1968-01-22T00:00:00Z","","0" +"NM-02142","113.5199966430664","113.5199966430664","","1963-01-16T00:00:00Z","","0" +"NM-28254","124.19999694824219","124.19999694824219","","2008-08-15T00:00:00Z","","0" +"NM-11766","16.440000534057617","16.440000534057617","","1948-01-24T00:00:00Z","","0" +"NM-11603","35.279998779296875","35.279998779296875","","1986-02-05T00:00:00Z","","0" +"NM-04925","43.779998779296875","43.779998779296875","","1958-07-30T00:00:00Z","","0" +"WL-0267","185.42999267578125","183.80999755859375","","2022-02-10T00:00:00Z","0001-01-01T15:45:00Z","1.399999976158142" +"NM-03391","27.600000381469727","27.600000381469727","","1995-01-18T00:00:00Z","","0" +"NM-03394","18.979999542236328","18.979999542236328","","2005-03-17T00:00:00Z","","0" +"NM-08150","-72.61000061035156","-72.61000061035156","","1907-01-29T00:00:00Z","","0" +"NM-28253","20.040000915527344","20.040000915527344","","1987-04-05T00:00:00Z","","0" +"NM-13235","3.2699999809265137","3.2699999809265137","","1961-05-10T00:00:00Z","","0" +"NM-04834","35.5","35.5","S","1951-03-16T00:00:00Z","","0" +"UC-0117","106.81999969482422","106.81999969482422","","2012-02-19T00:00:00Z","","0" +"SO-0179","5.840000152587891","4.910000324249268","","2016-04-12T00:00:00Z","","0.9300000071525574" +"NM-21693","85.95999908447266","85.95999908447266","P","1949-11-04T00:00:00Z","","0" +"NM-01928","17.110000610351562","17.110000610351562","","1975-01-21T00:00:00Z","","0" +"EB-478","287","287","","1998-10-31T00:00:00Z","","0" +"NM-00308","66.4800033569336","66.4800033569336","","2016-02-03T00:00:00Z","","0" +"NM-16978","39.56999969482422","39.56999969482422","","1952-01-22T00:00:00Z","","0" +"NM-19218","293.0400085449219","293.0400085449219","","1982-01-13T00:00:00Z","","0" +"NM-09520","3.299999952316284","3.299999952316284","","1958-09-25T00:00:00Z","","0" +"NM-05757","86.66999816894531","86.66999816894531","R","1946-09-25T00:00:00Z","","0" +"AB-0162","487.6199951171875","487.6199951171875","","2014-05-20T00:00:00Z","","" +"NM-03258","47.88999938964844","47.88999938964844","","1967-02-15T00:00:00Z","","0" +"NM-21679","341.8399963378906","341.8399963378906","","2016-08-10T00:00:00Z","","0" +"DE-0085","90.30000305175781","90.30000305175781","","2007-06-18T00:00:00Z","","0" +"NM-13425","401.17999267578125","401.17999267578125","","1964-12-01T00:00:00Z","","0" +"NM-02121","114.25","114.25","","1992-02-04T00:00:00Z","","0" +"NM-13031","36.939998626708984","36.939998626708984","P","1961-02-09T00:00:00Z","","0" +"NM-14802","105.30000305175781","105.30000305175781","","1976-12-23T00:00:00Z","","0" +"NM-13106","9.399999618530273","9.399999618530273","","1958-10-06T00:00:00Z","","0" +"NM-21652","","","D","2004-06-28T00:00:00Z","","0" +"NM-20121","27.639999389648438","27.639999389648438","P","1977-02-24T00:00:00Z","","0" +"NM-09973","42.93000030517578","42.93000030517578","","1954-09-15T00:00:00Z","","0" +"SA-0310","980","980","","1977-10-27T00:00:00Z","","0" +"NM-02309","238.1999969482422","238.1999969482422","P","1977-02-15T00:00:00Z","","0" +"NM-28254","26.049999237060547","26.049999237060547","","2005-03-04T00:00:00Z","","0" +"NM-16575","21.170000076293945","21.170000076293945","","1952-07-26T00:00:00Z","","0" +"NM-13630","-35.06999969482422","-35.06999969482422","","1908-06-05T00:00:00Z","","0" +"NM-12967","1.9800000190734863","1.9800000190734863","","1979-10-10T00:00:00Z","","0" +"EB-012","141.5","141.5","","1975-08-30T00:00:00Z","","0" +"NM-02657","76.4000015258789","76.4000015258789","","1989-01-24T00:00:00Z","","0" +"NM-03314","127.69000244140625","127.69000244140625","","1985-02-20T00:00:00Z","","0" +"NM-04660","140.10000610351562","140.10000610351562","","1981-01-06T00:00:00Z","","0" +"AB-0077","6.489999771118164","6.489999771118164","","2010-10-12T00:00:00Z","","" +"EB-283","260.4800109863281","260.4800109863281","","1996-02-08T00:00:00Z","","0" +"NM-11455","125.05000305175781","125.05000305175781","","1961-01-24T00:00:00Z","","0" +"NM-02530","107.41000366210938","107.41000366210938","","1992-02-05T00:00:00Z","","0" +"NM-01884","11.520000457763672","11.520000457763672","","2010-10-14T00:00:00Z","","0" +"NM-02222","98.12999725341797","98.12999725341797","","1981-01-15T00:00:00Z","","0" +"NM-02164","10.140000343322754","10.140000343322754","","2003-01-24T00:00:00Z","","0" +"NM-05292","37.22999954223633","37.22999954223633","","1932-02-21T00:00:00Z","","0" +"EB-609","250.27999877929688","250.27999877929688","","2011-02-07T00:00:00Z","","0" +"NM-28253","28.139999389648438","28.139999389648438","","1958-06-15T00:00:00Z","","0" +"NM-21580","6.889999866485596","6.889999866485596","Z","2008-04-15T00:00:00Z","","0" +"NM-07225","198.6999969482422","198.6999969482422","","1971-09-01T00:00:00Z","","0" +"NM-03650","30.84000015258789","30.84000015258789","","2008-06-26T00:00:00Z","","0" +"NM-09243","53.220001220703125","53.220001220703125","","1976-02-20T00:00:00Z","","0" +"NM-16857","24.59000015258789","24.59000015258789","","1946-11-27T00:00:00Z","","0" +"BC-0010","","129.9499969482422","","2020-11-01T00:00:00Z","","1.350000023841858" +"NM-01971","8.399999618530273","8.399999618530273","","1980-02-15T00:00:00Z","","0" +"NM-24881","424.4700012207031","424.4700012207031","","1974-02-16T00:00:00Z","","0" +"NM-16681","26.530000686645508","26.530000686645508","","1945-01-22T00:00:00Z","","0" +"NM-11266","15","15","","1937-09-29T00:00:00Z","","0" +"NM-11075","50.880001068115234","50.880001068115234","","1955-01-10T00:00:00Z","","0" +"NM-19961","49.65999984741211","49.65999984741211","","1946-12-03T00:00:00Z","","0" +"NM-22677","5.659999847412109","5.659999847412109","Z","2010-01-27T00:00:00Z","","0" +"NM-00427","76.27999877929688","76.27999877929688","","1980-01-03T00:00:00Z","","0" +"NM-10940","-12.550000190734863","-12.550000190734863","","1910-06-14T00:00:00Z","","0" +"NM-19874","255.8000030517578","255.8000030517578","","1978-01-06T00:00:00Z","","0" +"DA-0017","192","192","","1968-01-30T00:00:00Z","","0" +"EB-416","268","268","Z","1999-09-30T00:00:00Z","","0" +"NM-02477","71.55000305175781","71.55000305175781","","1990-06-28T00:00:00Z","","0" +"NM-05189","40.75","40.75","","1952-01-28T00:00:00Z","","0" +"NM-00486","63.7400016784668","63.7400016784668","","1989-01-06T00:00:00Z","","0" +"NM-21266","4.159999847412109","4.159999847412109","","1993-10-21T00:00:00Z","","0" +"NM-17660","26.940000534057617","26.940000534057617","","1977-01-19T00:00:00Z","","0" +"NM-01889","17.3799991607666","17.3799991607666","","2003-12-22T00:00:00Z","","0" +"NM-11801","82.87999725341797","82.87999725341797","","1971-02-24T00:00:00Z","","0" +"NM-02396","8.800000190734863","8.800000190734863","","1977-04-15T00:00:00Z","","0" +"NM-06092","315.1000061035156","315.1000061035156","P","1974-03-19T00:00:00Z","","0" +"NM-02199","9.010000228881836","9.010000228881836","","1998-02-09T00:00:00Z","","0" +"NM-02209","106","106","","1959-04-01T00:00:00Z","","0" +"AB-0165","479.1300048828125","479.1300048828125","","1998-10-02T00:00:00Z","","" +"NM-00686","59.9900016784668","59.9900016784668","","2001-04-26T00:00:00Z","","0" +"NM-19782","74.02999877929688","74.02999877929688","","1974-01-05T00:00:00Z","","0" +"NM-07382","75.69999694824219","75.69999694824219","","1948-10-06T00:00:00Z","","0" +"SB-0170","158.19000244140625","158.19000244140625","","1995-02-08T00:00:00Z","","0" +"NM-02622","166.4600067138672","166.4600067138672","","1975-11-01T00:00:00Z","","0" +"NM-10119","-63.369998931884766","-63.369998931884766","","1906-07-12T00:00:00Z","","0" +"NM-01155","392.7799987792969","392.7799987792969","","2015-03-12T00:00:00Z","","0" +"NM-00047","57.36000061035156","57.36000061035156","","1964-09-16T00:00:00Z","","0" +"WL-0086","41.54166793823242","39.78166961669922","","1996-01-17T00:00:00Z","","1.7599999904632568" +"NM-10600","28","28","R","1949-07-15T00:00:00Z","","0" +"EB-217","61.5","60.20000076293945","","2003-01-23T00:00:00Z","","1.2999999523162842" +"NM-19905","174.9199981689453","174.9199981689453","","1982-01-29T00:00:00Z","","0" +"NM-13623","26.989999771118164","26.989999771118164","","1955-11-04T00:00:00Z","","0" +"NM-02367","10.859999656677246","10.859999656677246","","1983-08-16T00:00:00Z","","0" +"NM-12292","39.25","39.25","","1965-01-05T00:00:00Z","","0" +"BC-0230","137.22999572753906","137.22999572753906","","2015-09-04T00:00:00Z","","0" +"NM-21658","403","403","S","1975-06-01T00:00:00Z","","0" +"NM-17779","109.2699966430664","109.2699966430664","","2002-12-06T00:00:00Z","","0" +"NM-28023","485.8500061035156","485.8500061035156","S","2015-04-26T00:00:00Z","","0" +"NM-02741","118","118","","2001-03-14T00:00:00Z","","0" +"NM-13006","-42.58000183105469","-42.58000183105469","","1913-01-24T00:00:00Z","","0" +"SB-0299","129.0500030517578","129.0500030517578","","1991-09-10T00:00:00Z","","0" +"NM-00549","84.61000061035156","84.61000061035156","","2001-01-18T00:00:00Z","","0" +"NM-03985","28.940000534057617","28.940000534057617","","1950-05-23T00:00:00Z","","0" +"NM-08470","261","261","","1987-01-26T00:00:00Z","","0" +"NM-02209","106.87000274658203","106.87000274658203","","2001-02-06T00:00:00Z","","0" +"NM-03047","65.1500015258789","65.1500015258789","","1972-01-05T00:00:00Z","","0" +"NM-25300","159.3699951171875","159.3699951171875","","1978-01-23T00:00:00Z","","0" +"NM-11565","86.16999816894531","86.16999816894531","","1955-03-09T00:00:00Z","","0" +"DE-0242","109.77999877929688","109.77999877929688","","2000-10-26T00:00:00Z","","0" +"NM-03388","63.77000045776367","63.77000045776367","","2006-03-01T00:00:00Z","","0" +"NM-16355","196.5","196.5","P","1962-01-17T00:00:00Z","","0" +"NM-03032","28.979999542236328","28.979999542236328","","1951-03-28T00:00:00Z","","0" +"AB-0124","548.510009765625","548.510009765625","","2004-09-23T00:00:00Z","","" +"NM-28012","478.2300109863281","478.2300109863281","S","2015-05-19T00:00:00Z","","0" +"EB-163","694","692.7999877929688","","1997-09-30T00:00:00Z","","1.2000000476837158" +"NM-02352","8.5","8.5","","1971-12-15T00:00:00Z","","0" +"AB-0074","18.729999542236328","18.729999542236328","","2002-08-05T00:00:00Z","","" +"NM-04116","48.900001525878906","48.900001525878906","","1958-01-10T00:00:00Z","","0" +"EB-484","460.42999267578125","459.8299865722656","Z","1997-08-31T00:00:00Z","","0.6000000238418579" +"NM-03387","36.56999969482422","36.56999969482422","","1990-05-04T00:00:00Z","","0" +"NM-04771","103","103","","1960-07-05T00:00:00Z","","0" +"NM-06030","34.11000061035156","34.11000061035156","","2006-10-17T00:00:00Z","","0" +"NM-14396","7.269999980926514","7.269999980926514","","1968-11-19T00:00:00Z","","0" +"CX-0107","37.099998474121094","37.099998474121094","","1946-01-29T00:00:00Z","","0" +"NM-03141","387.32000732421875","387.32000732421875","","1980-01-08T00:00:00Z","","0" +"NM-27253","33.08000183105469","33.08000183105469","P","1963-01-06T00:00:00Z","","0" +"NM-03795","6.730000019073486","6.730000019073486","","1949-01-31T00:00:00Z","","0" +"NM-06996","57.36000061035156","57.36000061035156","","2004-04-06T00:00:00Z","","0" +"SM-0076","213.6999969482422","212.45999145507812","","2006-12-08T00:00:00Z","","1.2400000095367432" +"NM-02020","357.2699890136719","357.2699890136719","","1963-07-02T00:00:00Z","","0" +"NM-21219","5.71999979019165","5.71999979019165","","1958-09-05T00:00:00Z","","0" +"NM-02017","7.5","7.5","","1950-03-15T00:00:00Z","","0" +"DE-0039","443.29998779296875","443.29998779296875","","2021-05-20T00:00:00Z","0001-01-01T13:30:00Z","0" +"NM-06172","97.80999755859375","97.80999755859375","","1942-01-15T00:00:00Z","","0" +"NM-15474","30","30","","1974-11-25T00:00:00Z","","0" +"NM-24863","204.02000427246094","204.02000427246094","S","1961-02-06T00:00:00Z","","0" +"NM-28253","9.4399995803833","9.4399995803833","","1960-01-05T00:00:00Z","","0" +"NM-05972","26.799999237060547","26.799999237060547","","1940-09-05T00:00:00Z","","0" +"WL-0086","51.20833206176758","49.448333740234375","","1997-01-14T00:00:00Z","","1.7599999904632568" +"NM-01806","307.010009765625","307.010009765625","","1987-02-12T00:00:00Z","","0" +"NM-03256","26.649999618530273","26.649999618530273","","1988-07-12T00:00:00Z","","0" +"NM-00812","49.84000015258789","49.84000015258789","","1958-07-24T00:00:00Z","","0" +"NM-09392","18.829999923706055","18.829999923706055","","1946-01-11T00:00:00Z","","0" +"NM-02657","20.68000030517578","20.68000030517578","","1945-01-08T00:00:00Z","","0" +"NM-03729","45.97999954223633","45.97999954223633","","1978-01-26T00:00:00Z","","0" +"EB-276","155.8000030517578","155.8000030517578","","1969-05-21T00:00:00Z","","0" +"NM-02384","8.300000190734863","8.300000190734863","","1951-10-15T00:00:00Z","","0" +"EB-482","220","220","P","1988-07-31T00:00:00Z","","0" +"NM-15157","15.010000228881836","15.010000228881836","","1988-12-13T00:00:00Z","","0" +"NM-06200","278.4100036621094","278.4100036621094","","1984-02-14T00:00:00Z","","0" +"NM-17127","31.040000915527344","31.040000915527344","","1943-11-27T00:00:00Z","","0" +"NM-14207","35.5099983215332","35.5099983215332","","1984-01-25T00:00:00Z","","0" +"NM-09058","100.25","100.25","","1984-01-04T00:00:00Z","","0" +"NM-24557","110.12999725341797","110.12999725341797","","1988-02-09T00:00:00Z","","0" +"NM-11758","24.899999618530273","24.899999618530273","P","1958-01-16T00:00:00Z","","0" +"NM-07280","147.97000122070312","147.97000122070312","","1969-02-28T00:00:00Z","","0" +"NM-01874","85.02999877929688","85.02999877929688","","1997-01-29T00:00:00Z","","0" +"NM-13120","5.199999809265137","5.199999809265137","","1969-10-30T00:00:00Z","","0" +"NM-07904","22.299999237060547","22.299999237060547","","2015-02-23T00:00:00Z","","0" +"NM-02794","57.900001525878906","57.900001525878906","","1952-03-11T00:00:00Z","","0" +"NM-16762","3.869999885559082","3.869999885559082","","1952-11-20T00:00:00Z","","0" +"SA-0022","316.30999755859375","314.7099914550781","","2017-02-16T00:00:00Z","0001-01-01T13:18:00Z","1.600000023841858" +"SB-0299","158.66000366210938","158.66000366210938","","2018-09-15T00:00:00Z","","0" +"NM-28251","87.73999786376953","87.73999786376953","","1977-02-15T00:00:00Z","","0" +"SM-0074","146","145.50999450683594","","2008-12-17T00:00:00Z","","0.49000000953674316" +"NM-02101","3.9000000953674316","3.9000000953674316","","1948-08-15T00:00:00Z","","0" +"NM-17716","4.929999828338623","4.929999828338623","","1946-08-07T00:00:00Z","","0" +"NM-13012","32.439998626708984","32.439998626708984","","1938-04-18T00:00:00Z","","0" +"NM-01893","19.309999465942383","19.309999465942383","","1996-04-17T00:00:00Z","","0" +"NM-14802","109.26000213623047","109.26000213623047","","1976-07-15T00:00:00Z","","0" +"NM-17346","30.709999084472656","30.709999084472656","","1946-01-26T00:00:00Z","","0" +"NM-15457","94.16000366210938","94.16000366210938","","1956-08-27T00:00:00Z","","0" +"NM-02620","12.100000381469727","12.100000381469727","","1989-01-15T00:00:00Z","","0" +"NM-28253","33.290000915527344","33.290000915527344","","1982-10-25T00:00:00Z","","0" +"NM-03903","329.7099914550781","329.7099914550781","","1976-03-26T00:00:00Z","","0" +"NM-21054","19.040000915527344","19.040000915527344","R","1992-04-22T00:00:00Z","","0" +"NM-02757","18.40999984741211","18.40999984741211","","1970-08-10T00:00:00Z","","0" +"NM-23252","287","287","","1986-11-15T00:00:00Z","","0" +"NM-14069","-12.550000190734863","-12.550000190734863","","1915-12-24T00:00:00Z","","0" +"NM-16882","14.390000343322754","14.390000343322754","","1934-06-19T00:00:00Z","","0" +"NM-08957","48.400001525878906","48.400001525878906","","1966-03-08T00:00:00Z","","0" +"NM-21915","70.5199966430664","70.5199966430664","T","1984-12-17T00:00:00Z","","0" +"DE-0127","42.959999084472656","42.959999084472656","","2016-09-19T00:00:00Z","","0" +"NM-03389","32.279998779296875","32.279998779296875","","2011-09-06T00:00:00Z","","0" +"NM-26644","18.649999618530273","18.649999618530273","","2012-03-07T00:00:00Z","","0" +"NM-02556","-98.0199966430664","-98.0199966430664","","1910-01-02T00:00:00Z","","0" +"NM-28257","70.69999694824219","70.69999694824219","","1974-03-15T00:00:00Z","","0" +"NM-23205","55.630001068115234","55.630001068115234","Z","1997-09-02T00:00:00Z","","0" +"NM-13594","32.34000015258789","32.34000015258789","","1958-06-24T00:00:00Z","","0" +"NM-00253","20.889999389648438","20.889999389648438","","1979-06-01T00:00:00Z","","0" +"UC-0034","93.0199966430664","93.0199966430664","","2011-08-31T00:00:00Z","","0" +"NM-03073","","","D","2004-02-27T00:00:00Z","","0" +"SB-0814","481","481","","1973-01-01T00:00:00Z","","0" +"BC-0156","152.16000366210938","152.16000366210938","","1992-01-15T00:00:00Z","","0" +"NM-01683","456.989990234375","456.989990234375","","1986-12-04T00:00:00Z","","0" +"TV-174","17.459999084472656","16.399999618530273","","2006-07-12T00:00:00Z","","1.059999942779541" +"NM-28257","-2","-2","","1985-01-05T00:00:00Z","","0" +"NM-22700","3.5899999141693115","3.5899999141693115","Z","2008-02-05T00:00:00Z","","0" +"BC-0350","","295.8699951171875","","2023-03-22T00:00:00Z","","0" +"NM-02164","8.550000190734863","8.550000190734863","","1992-08-19T00:00:00Z","","0" +"UC-0033","96.48999786376953","96.48999786376953","","1993-10-13T00:00:00Z","","0" +"NM-28258","144.49000549316406","144.49000549316406","","1993-10-15T00:00:00Z","","0" +"EB-264","11.520000457763672","11.520000457763672","Z","1998-12-17T00:00:00Z","","0" +"NM-03431","457.6700134277344","457.6700134277344","","1988-09-29T00:00:00Z","","0" +"AB-0109","36.310001373291016","36.310001373291016","","2005-11-09T00:00:00Z","","" +"NM-11017","29.329999923706055","29.329999923706055","","1945-11-21T00:00:00Z","","0" +"NM-05632","16.899999618530273","16.899999618530273","","1941-01-07T00:00:00Z","","0" +"NM-08201","83.2699966430664","83.2699966430664","","1991-02-20T00:00:00Z","","0" +"SO-0165","10.899999618530273","8.979999542236328","","2020-12-15T00:00:00Z","","1.9199999570846558" +"SA-0030","240.8699951171875","238.7899932861328","","2021-03-16T00:00:00Z","0001-01-01T13:33:00Z","2.0799999237060547" +"NM-03125","","","O","2003-01-29T00:00:00Z","","0" +"NM-11005","-16.020000457763672","-16.020000457763672","","1912-01-04T00:00:00Z","","0" +"NM-20097","38.16999816894531","38.16999816894531","","1949-01-15T00:00:00Z","","0" +"NM-20992","250.27000427246094","250.27000427246094","","1982-01-08T00:00:00Z","","0" +"NM-03975","186.22999572753906","186.22999572753906","","1982-01-12T00:00:00Z","","0" +"NM-00185","14.899999618530273","14.899999618530273","","1955-03-15T00:00:00Z","","0" +"NM-09730","29.75","29.75","","1957-01-05T00:00:00Z","","0" +"NM-11871","62.220001220703125","62.220001220703125","","1964-02-18T00:00:00Z","","0" +"NM-06360","44.25","44.25","","1992-11-04T00:00:00Z","","0" +"NM-17489","22.479999542236328","22.479999542236328","","1937-01-10T00:00:00Z","","0" +"NM-02005","8.899999618530273","8.899999618530273","","1971-02-15T00:00:00Z","","0" +"DE-0120","37.029998779296875","37.029998779296875","","2011-10-10T00:00:00Z","","0" +"NM-02560","125.33000183105469","125.33000183105469","","1998-03-13T00:00:00Z","","0" +"NM-11922","135.42999267578125","135.42999267578125","","1958-08-25T00:00:00Z","","0" +"NM-02509","86.75","86.75","R","1979-03-14T00:00:00Z","","0" +"NM-28252","41","41","","1991-09-25T00:00:00Z","","0" +"NM-28254","86.69999694824219","86.69999694824219","","2016-05-15T00:00:00Z","","0" +"NM-28249","172.64999389648438","172.64999389648438","","1956-08-09T00:00:00Z","","0" +"NM-23799","126.58999633789062","126.58999633789062","","1965-01-19T00:00:00Z","","0" +"NM-02006","8","8","","1992-02-15T00:00:00Z","","0" +"NM-01875","159.88999938964844","159.88999938964844","","1967-01-19T00:00:00Z","","0" +"NM-04804","86.12999725341797","86.12999725341797","","1953-01-12T00:00:00Z","","0" +"NM-09696","22.760000228881836","22.760000228881836","","1940-02-17T00:00:00Z","","0" +"NM-02965","90.94999694824219","90.94999694824219","","2005-02-15T00:00:00Z","","0" +"NM-06427","200.94000244140625","200.94000244140625","","1993-08-24T00:00:00Z","","0" +"NM-15387","90.44999694824219","90.44999694824219","","1985-01-08T00:00:00Z","","0" +"NM-09513","-108.41999816894531","-108.41999816894531","","1908-12-28T00:00:00Z","","0" +"NM-00783","14.779999732971191","14.779999732971191","","1960-05-26T00:00:00Z","","0" +"NM-00527","41.5099983215332","41.5099983215332","","1949-01-21T00:00:00Z","","0" +"NM-05277","74.6500015258789","74.6500015258789","","1947-01-10T00:00:00Z","","0" +"NM-02349","14.800000190734863","14.800000190734863","","1970-01-15T00:00:00Z","","0" +"NM-28257","57.2400016784668","57.2400016784668","","1970-09-15T00:00:00Z","","0" +"NM-22433","26.459999084472656","26.459999084472656","","1984-06-29T00:00:00Z","","0" +"NM-01948","5.099999904632568","5.099999904632568","","1990-11-15T00:00:00Z","","0" +"NM-00583","43.25","43.25","","1990-01-03T00:00:00Z","","0" +"NM-01404","32.349998474121094","32.349998474121094","","2015-06-26T00:00:00Z","","0" +"NM-27333","27.549999237060547","27.549999237060547","","1998-02-05T00:00:00Z","","0" +"NM-02384","9.100000381469727","9.100000381469727","","1963-12-15T00:00:00Z","","0" +"NM-15082","173.14999389648438","173.14999389648438","","1980-01-16T00:00:00Z","","0" +"QU-004","53.099998474121094","50.82999801635742","","2021-10-12T00:00:00Z","0001-01-01T15:02:00Z","2.2699999809265137" +"NM-08189","9.199999809265137","9.199999809265137","","1963-10-15T00:00:00Z","","0" +"WL-0089","55.375","52.82500076293945","","1998-03-26T00:00:00Z","","2.549999952316284" +"NM-03441","25.059999465942383","25.059999465942383","Z","1997-12-08T00:00:00Z","","0" +"NM-17295","30","30","","1933-07-08T00:00:00Z","","0" +"DE-0075","87.0199966430664","87.0199966430664","","2007-12-05T00:00:00Z","","0" +"NM-01899","41.470001220703125","41.470001220703125","","2007-10-24T00:00:00Z","","0" +"NM-02017","9.899999618530273","9.899999618530273","","1955-01-15T00:00:00Z","","0" +"NM-11017","31.68000030517578","31.68000030517578","","1937-01-13T00:00:00Z","","0" +"WL-0086","89.91666412353516","88.15666198730469","","2004-04-22T00:00:00Z","","1.7599999904632568" +"NM-22875","231.97999572753906","231.97999572753906","","1944-09-17T00:00:00Z","","0" +"NM-22163","400","400","","1993-07-19T00:00:00Z","","0" +"NM-12600","56.70000076293945","56.70000076293945","S","1938-04-18T00:00:00Z","","0" +"NM-13092","7.869999885559082","7.869999885559082","","1970-01-20T00:00:00Z","","0" +"NM-20263","63.470001220703125","63.470001220703125","","1953-01-21T00:00:00Z","","0" +"NM-02005","6.300000190734863","6.300000190734863","","1953-08-15T00:00:00Z","","0" +"NM-03260","6.210000038146973","6.210000038146973","","1990-12-03T00:00:00Z","","0" +"NM-20804","18.479999542236328","18.479999542236328","","1946-09-06T00:00:00Z","","0" +"NM-25341","124.19000244140625","124.19000244140625","","1982-02-10T00:00:00Z","","0" +"NM-24405","2.109999895095825","2.109999895095825","","1968-10-14T00:00:00Z","","0" +"NM-02284","14.739999771118164","14.739999771118164","","2011-03-21T00:00:00Z","","0" +"NM-28254","53","53","","2008-11-05T00:00:00Z","","0" +"NM-01869","28.690000534057617","28.690000534057617","","1954-03-19T00:00:00Z","","0" +"NM-28258","97.25","97.25","","1987-02-25T00:00:00Z","","0" +"NM-11373","52.779998779296875","52.779998779296875","","1981-02-04T00:00:00Z","","0" +"NM-14384","48","48","","1979-02-01T00:00:00Z","","0" +"NM-27259","91.12999725341797","91.12999725341797","","1962-01-15T00:00:00Z","","0" +"NM-03421","30.799999237060547","30.799999237060547","T","1985-12-31T00:00:00Z","","0" +"NM-20375","64.0999984741211","64.0999984741211","","1946-12-03T00:00:00Z","","0" +"NM-04834","46.439998626708984","46.439998626708984","R","1953-05-14T00:00:00Z","","0" +"AB-0068","151.50999450683594","151.50999450683594","","1998-05-06T00:00:00Z","","" +"NM-17269","36.25","36.25","","1944-01-20T00:00:00Z","","0" +"NM-13899","3.6500000953674316","3.6500000953674316","","1969-02-28T00:00:00Z","","0" +"NM-08428","46.41999816894531","46.41999816894531","","1946-01-31T00:00:00Z","","0" +"NM-01712","158.1999969482422","158.1999969482422","","1995-07-31T00:00:00Z","","0" +"NM-00404","187.66000366210938","187.66000366210938","","2016-01-05T00:00:00Z","","0" +"EB-484","617.510009765625","616.9100341796875","P","2005-02-28T00:00:00Z","","0.6000000238418579" +"NM-13138","28.389999389648438","28.389999389648438","","1979-02-08T00:00:00Z","","0" +"BC-0102","356.489990234375","356.489990234375","","2020-05-02T00:00:00Z","","0" +"EB-483","438.1499938964844","438.1499938964844","Z","2004-11-30T00:00:00Z","","0" +"NM-14535","87.87000274658203","87.87000274658203","","1975-01-06T00:00:00Z","","0" +"NM-00355","12.930000305175781","12.930000305175781","","2009-02-25T00:00:00Z","","0" +"NM-06596","51.2400016784668","51.2400016784668","","1932-02-13T00:00:00Z","","0" +"NM-11538","61.88999938964844","61.88999938964844","","1972-01-12T00:00:00Z","","0" +"QY-0274","","","D","1955-04-20T00:00:00Z","","0" +"AB-0145","1047.719970703125","1047.719970703125","","1987-04-15T00:00:00Z","","0" +"NM-17716","2.700000047683716","2.700000047683716","","1932-03-29T00:00:00Z","","0" +"NM-03345","112.58000183105469","112.58000183105469","","1977-01-18T00:00:00Z","","0" +"NM-27266","26.149999618530273","26.149999618530273","","1978-01-19T00:00:00Z","","0" +"NM-11919","1.6299999952316284","1.6299999952316284","","1944-01-06T00:00:00Z","","0" +"NM-07159","82.86000061035156","82.86000061035156","","2008-05-20T00:00:00Z","","0" +"NM-03467","430.20001220703125","430.20001220703125","T","1987-01-20T00:00:00Z","","0" +"NM-17452","68.62000274658203","68.62000274658203","","1955-07-22T00:00:00Z","","0" +"NM-08974","-63.369998931884766","-63.369998931884766","","1906-07-21T00:00:00Z","","0" +"NM-14177","299.3999938964844","299.3999938964844","","1969-01-06T00:00:00Z","","0" +"NM-00808","15.5600004196167","15.5600004196167","","2010-03-24T00:00:00Z","","0" +"NM-02006","7.900000095367432","7.900000095367432","Z","1949-01-15T00:00:00Z","","0" +"NM-17301","53.119998931884766","53.119998931884766","","1982-03-12T00:00:00Z","","0" +"NM-14727","91.6500015258789","91.6500015258789","","1962-01-23T00:00:00Z","","0" +"EB-415","159.9199981689453","159.9199981689453","","2014-01-10T00:00:00Z","","0" +"SO-0146","11.680000305175781","11.100000381469727","","2021-08-19T00:00:00Z","0001-01-01T14:44:00Z","0.5799999833106995" +"NM-03615","187.97999572753906","187.97999572753906","","1973-02-01T00:00:00Z","","0" +"NM-02209","107","107","","1964-02-01T00:00:00Z","","0" +"NM-00436","53.369998931884766","53.369998931884766","","1986-01-14T00:00:00Z","","0" +"NM-13846","-4.46999979019165","-4.46999979019165","","1909-09-08T00:00:00Z","","0" +"SB-0060","145.3000030517578","145.3000030517578","","1998-01-15T00:00:00Z","","0" +"NM-06145","57.4900016784668","57.4900016784668","","1954-01-28T00:00:00Z","","0" +"NM-09843","-61.060001373291016","-61.060001373291016","","1905-06-30T00:00:00Z","","0" +"NM-14464","157.89999389648438","157.89999389648438","","1981-02-04T00:00:00Z","","0" +"NM-00226","41.709999084472656","41.709999084472656","","1985-01-18T00:00:00Z","","0" +"SO-0178","7.809999942779541","7.670000076293945","","2018-04-11T00:00:00Z","0001-01-01T11:37:00Z","0.14000000059604645" +"NM-24943","45.150001525878906","45.150001525878906","","1971-01-11T00:00:00Z","","0" +"NM-05977","92.7699966430664","92.7699966430664","","1942-10-16T00:00:00Z","","0" +"NM-23503","15.40999984741211","15.40999984741211","","1956-10-29T00:00:00Z","","0" +"NM-11017","35.20000076293945","35.20000076293945","P","1937-10-20T00:00:00Z","","0" +"NM-01337","73.55999755859375","73.55999755859375","","1988-10-24T00:00:00Z","","0" +"NM-12627","37.25","37.25","","1990-12-19T00:00:00Z","","0" +"NM-02905","141.99000549316406","141.99000549316406","","1995-01-13T00:00:00Z","","0" +"NM-26720","130.75999450683594","130.75999450683594","A","2011-02-23T00:00:00Z","","0" +"NM-24313","37.20000076293945","37.20000076293945","","1983-03-01T00:00:00Z","","0" +"NM-16215","160.89999389648438","160.89999389648438","","1953-01-28T00:00:00Z","","0" +"NM-28255","122.77999877929688","122.77999877929688","","1966-09-25T00:00:00Z","","0" +"NM-11869","21.510000228881836","21.510000228881836","","1946-11-15T00:00:00Z","","0" +"NM-02026","55.66999816894531","55.66999816894531","","1952-04-24T00:00:00Z","","0" +"NM-23592","260","260","","1900-05-01T00:00:00Z","","0" +"NM-10566","48.04999923706055","48.04999923706055","","1952-12-01T00:00:00Z","","0" +"NM-00294","9.600000381469727","9.600000381469727","","1969-01-07T00:00:00Z","","0" +"NM-13145","10.34000015258789","10.34000015258789","","1961-02-15T00:00:00Z","","0" +"AB-0076","6.119999885559082","6.119999885559082","","2002-02-20T00:00:00Z","","" +"NM-13273","-19.600000381469727","-19.600000381469727","","1940-01-09T00:00:00Z","","0" +"NM-00705","116.94999694824219","116.94999694824219","","2009-01-07T00:00:00Z","","0" +"EB-220","131.50999450683594","131.50999450683594","","2004-08-30T00:00:00Z","","0" +"NM-23214","575","575","","1968-02-01T00:00:00Z","","0" +"NM-16588","26.329999923706055","26.329999923706055","","1963-01-02T00:00:00Z","","0" +"SA-0419","18.799999237060547","18.799999237060547","","1952-12-12T00:00:00Z","","0" +"NM-01948","10.5","10.5","","1954-05-15T00:00:00Z","","0" +"NM-01392","66.18000030517578","66.18000030517578","","2009-03-03T00:00:00Z","","0" +"NM-12604","33.65999984741211","33.65999984741211","","1969-01-14T00:00:00Z","","0" +"NM-03013","85.44000244140625","85.44000244140625","","1994-01-04T00:00:00Z","","0" +"NM-19683","352.760009765625","352.760009765625","","1982-01-28T00:00:00Z","","0" +"NM-00721","81.91999816894531","81.91999816894531","","2013-03-28T00:00:00Z","","0" +"NM-23391","261.0299987792969","261.0299987792969","","1953-12-18T00:00:00Z","","0" +"NM-10074","41.54999923706055","41.54999923706055","","1961-03-02T00:00:00Z","","0" +"QY-0351","25.5","25.5","","1954-11-05T00:00:00Z","","0" +"NM-28251","71.08999633789062","71.08999633789062","","1989-01-25T00:00:00Z","","0" +"NM-00956","336.75","336.75","","1972-01-05T00:00:00Z","","0" +"NM-03323","70.58999633789062","70.58999633789062","Z","1991-05-28T00:00:00Z","","0" +"NM-20609","104.33000183105469","104.33000183105469","","1986-10-15T00:00:00Z","","0" +"NM-03027","46.290000915527344","46.290000915527344","","1988-01-12T00:00:00Z","","0" +"EB-266","13.760000228881836","13.760000228881836","","1998-09-16T00:00:00Z","","0" +"NM-10577","-63.369998931884766","-63.369998931884766","","1907-06-26T00:00:00Z","","0" +"AB-0038","343.1099853515625","343.1099853515625","","1999-02-16T00:00:00Z","","" +"NM-21316","66.69999694824219","66.69999694824219","","1950-07-11T00:00:00Z","","0" +"NM-28259","87.58000183105469","87.58000183105469","","1990-11-25T00:00:00Z","","0" +"NM-21944","47.279998779296875","47.279998779296875","","1952-10-15T00:00:00Z","","0" +"NM-26921","49.18000030517578","52.18000030517578","","1998-06-01T00:00:00Z","","0" +"NM-03385","39.79999923706055","39.79999923706055","","1990-08-01T00:00:00Z","","0" +"SB-0053","90.0199966430664","90.0199966430664","","2010-01-13T00:00:00Z","","0" +"NM-02352","9.199999809265137","9.199999809265137","","1978-12-15T00:00:00Z","","0" +"NM-13187","45.380001068115234","45.380001068115234","P","1961-02-07T00:00:00Z","","0" +"NM-02720","54.66999816894531","54.66999816894531","","1963-09-30T00:00:00Z","","0" +"NM-23791","128.9499969482422","128.9499969482422","","1965-01-20T00:00:00Z","","0" +"NM-03661","36.47999954223633","36.47999954223633","","1981-02-18T00:00:00Z","","0" +"NM-07153","97.44999694824219","97.44999694824219","","2004-04-07T00:00:00Z","","0" +"NM-12921","-40.27000045776367","-40.27000045776367","","1909-12-29T00:00:00Z","","0" +"SV-0112","305.79998779296875","303.79998779296875","","2017-02-19T00:00:00Z","","2" +"NM-20474","60.86000061035156","60.86000061035156","","1948-01-20T00:00:00Z","","0" +"NM-00677","60.029998779296875","60.029998779296875","","1966-09-27T00:00:00Z","","0" +"NM-17716","3.9600000381469727","3.9600000381469727","","1946-05-31T00:00:00Z","","0" +"NM-13121","5.019999980926514","5.019999980926514","","1983-07-13T00:00:00Z","","0" +"NM-10792","-6.619999885559082","-6.619999885559082","","1911-02-14T00:00:00Z","","0" +"NM-28257","-27.479999542236328","-27.479999542236328","","1993-12-25T00:00:00Z","","0" +"NM-01839","8.979999542236328","8.979999542236328","","2013-01-31T00:00:00Z","","0" +"NM-02535","11.460000038146973","11.460000038146973","","1998-01-12T00:00:00Z","","0" +"NM-17398","19.030000686645508","19.030000686645508","R","1946-07-26T00:00:00Z","","0" +"NM-08861","64.75","64.75","","1961-01-14T00:00:00Z","","0" +"NM-26448","7.090000152587891","7.090000152587891","","2004-02-20T00:00:00Z","","0" +"NM-28257","-7.619999885559082","-7.619999885559082","","2006-10-18T00:00:00Z","","0" +"NM-00245","82","82","","1956-05-02T00:00:00Z","","0" +"NM-02352","8.300000190734863","8.300000190734863","","1996-02-14T00:00:00Z","","0" +"EB-220","127","127","","1979-03-07T00:00:00Z","","0" +"NM-20935","169.55999755859375","169.55999755859375","","1997-03-17T00:00:00Z","","0" +"NM-09968","44.77000045776367","44.77000045776367","","1957-01-16T00:00:00Z","","0" +"NM-04124","22.709999084472656","22.709999084472656","","2016-02-24T00:00:00Z","","0" +"NM-14535","87.76000213623047","87.76000213623047","","1976-03-05T00:00:00Z","","0" +"NM-03319","118.33000183105469","118.33000183105469","","1980-01-30T00:00:00Z","","0" +"NM-12922","25.219999313354492","25.219999313354492","","1966-02-16T00:00:00Z","","0" +"NM-22703","257","257","","2009-11-02T00:00:00Z","","0" +"NM-04859","50","50","","1940-01-12T00:00:00Z","","0" +"NM-03698","220.1699981689453","220.1699981689453","","2008-02-05T00:00:00Z","","0" +"NM-11339","3.75","3.75","","1976-10-14T00:00:00Z","","0" +"NM-00812","39.560001373291016","39.560001373291016","","1984-08-21T00:00:00Z","","0" +"NM-10655","47.47999954223633","47.47999954223633","","1958-03-25T00:00:00Z","","0" +"NM-00208","59.400001525878906","59.400001525878906","","1954-05-05T00:00:00Z","","0" +"NM-18302","30.170000076293945","30.170000076293945","","1995-02-10T00:00:00Z","","0" +"NM-02209","102.94000244140625","102.94000244140625","","1987-05-28T00:00:00Z","","0" +"NM-03378","31.770000457763672","31.770000457763672","","1995-04-17T00:00:00Z","","0" +"NM-02396","6.099999904632568","6.099999904632568","","1962-08-15T00:00:00Z","","0" +"NM-02669","56.36000061035156","56.36000061035156","","1971-05-01T00:00:00Z","","0" +"NM-03349","35.290000915527344","35.290000915527344","Z","2000-02-04T00:00:00Z","","0" +"NM-02163","10.1899995803833","10.1899995803833","","2002-11-14T00:00:00Z","","0" +"NM-27334","12.779999732971191","12.779999732971191","","1965-12-02T00:00:00Z","","0" +"NM-02620","8.699999809265137","8.699999809265137","","1980-06-15T00:00:00Z","","0" +"NM-26769","-6.980000019073486","-6.980000019073486","","1981-12-22T00:00:00Z","","0" +"NM-05347","6.5","6.5","","1947-07-15T00:00:00Z","","0" +"NM-02310","84.61000061035156","84.61000061035156","","1962-12-27T00:00:00Z","","0" +"NM-02043","5.5","5.5","","1987-09-15T00:00:00Z","","0" +"NM-12466","10.5","10.5","","1957-12-02T00:00:00Z","","0" +"NM-15101","82.66000366210938","82.66000366210938","","1999-01-12T00:00:00Z","","0" +"NM-12925","41.959999084472656","41.959999084472656","","1981-03-10T00:00:00Z","","0" +"NM-02004","9.100000381469727","9.100000381469727","","1965-02-15T00:00:00Z","","0" +"NM-28252","39.04999923706055","39.04999923706055","","1955-09-05T00:00:00Z","","0" +"NM-08524","11","11","","2001-04-15T00:00:00Z","","0" +"NM-09846","-49.5099983215332","-49.5099983215332","","1913-01-13T00:00:00Z","","0" +"NM-01948","3.700000047683716","3.700000047683716","","1989-05-15T00:00:00Z","","0" +"NM-16799","20.559999465942383","20.559999465942383","","1942-01-28T00:00:00Z","","0" +"EB-224","25.690000534057617","25.690000534057617","","1958-07-25T00:00:00Z","","0" +"SB-0299","126.48999786376953","126.48999786376953","","1980-12-10T00:00:00Z","","0" +"NM-13289","36.41999816894531","36.41999816894531","R","1930-05-14T00:00:00Z","","0" +"NM-04313","91.54000091552734","91.54000091552734","","1971-01-19T00:00:00Z","","0" +"WL-0052","10.970000267028809","10.270000457763672","","2019-10-23T00:00:00Z","0001-01-01T13:00:00Z","0.699999988079071" +"NM-03047","68.87999725341797","68.87999725341797","","1989-01-05T00:00:00Z","","0" +"DE-0111","34.93000030517578","34.93000030517578","","2007-07-09T00:00:00Z","","0" +"EB-266","7.369999885559082","7.369999885559082","","2011-06-15T00:00:00Z","","0" +"PC-055","212.5800018310547","211.5","","2020-03-05T00:00:00Z","0001-01-01T09:26:00Z","1.0800000429153442" +"NM-02701","36.869998931884766","36.869998931884766","","2005-01-25T00:00:00Z","","0" +"SA-0064","66.36000061035156","64.91999816894531","","1996-02-06T00:00:00Z","","1.440000057220459" +"NM-01796","6.800000190734863","6.800000190734863","","1964-09-15T00:00:00Z","","0" +"NM-02153","128.5","128.5","","1970-01-15T00:00:00Z","","0" +"NM-16494","107.5999984741211","107.5999984741211","","1997-02-21T00:00:00Z","","0" +"AB-0183","348.0799865722656","348.0799865722656","","1998-12-15T00:00:00Z","","" +"NM-17526","22.799999237060547","22.799999237060547","","1933-11-17T00:00:00Z","","0" +"NM-10635","29.059999465942383","29.059999465942383","","1955-03-10T00:00:00Z","","0" +"NM-11578","26.360000610351562","26.360000610351562","","1936-07-15T00:00:00Z","","0" +"NM-01868","7.900000095367432","7.900000095367432","","1997-05-15T00:00:00Z","","0" +"NM-01837","129.5","129.5","","1997-01-28T00:00:00Z","","0" +"EB-207","128.10000610351562","128.10000610351562","","1955-03-01T00:00:00Z","","0" +"NM-02592","71.2699966430664","71.2699966430664","","1993-01-05T00:00:00Z","","0" +"NM-13089","16.510000228881836","16.510000228881836","","1986-02-11T00:00:00Z","","0" +"WL-0183","34.790000915527344","33.77000045776367","","2022-08-18T00:00:00Z","0001-01-01T09:53:00Z","1.0199999809265137" +"NM-03005","68.62999725341797","68.62999725341797","Z","2001-04-26T00:00:00Z","","0" +"NM-11747","189.39999389648438","189.39999389648438","S","1982-08-02T00:00:00Z","","0" +"DE-0060","190.47999572753906","187.76998901367188","","1992-10-01T00:00:00Z","","2.7100000381469727" +"NM-00507","137.60000610351562","137.60000610351562","","2011-12-22T00:00:00Z","","0" +"NM-13231","8.699999809265137","8.699999809265137","","1947-02-03T00:00:00Z","","0" +"NM-03341","6.289999961853027","6.289999961853027","Z","2007-08-08T00:00:00Z","","0" +"NM-15490","76.55000305175781","76.55000305175781","","1956-08-30T00:00:00Z","","0" +"NM-00909","51.25","51.25","","2009-02-26T00:00:00Z","","0" +"AB-0113","217.5500030517578","217.5500030517578","","2007-04-03T00:00:00Z","","" +"NM-28258","192.33999633789062","192.33999633789062","","2001-08-15T00:00:00Z","","0" +"NM-10769","53.93000030517578","53.93000030517578","","1957-02-15T00:00:00Z","","0" +"NM-17716","6.050000190734863","6.050000190734863","","1948-10-24T00:00:00Z","","0" +"NM-28259","96.98999786376953","96.98999786376953","","1987-04-05T00:00:00Z","","0" +"NM-02443","95.87000274658203","95.87000274658203","","2003-04-09T00:00:00Z","","0" +"UC-0097","270.79998779296875","270.79998779296875","","2010-01-08T00:00:00Z","","0" +"NM-02072","90","90","","1979-01-16T00:00:00Z","","0" +"SO-0168","6.079999923706055","5.71999979019165","","2021-03-18T00:00:00Z","0001-01-01T10:53:00Z","0.36000001430511475" +"NM-24719","315.0799865722656","315.0799865722656","","1973-06-21T00:00:00Z","","0" +"NM-02636","192.25","192.25","","2004-01-27T00:00:00Z","","0" +"NM-03411","307.1700134277344","307.1700134277344","","2000-08-22T00:00:00Z","","0" +"NM-02209","106.6500015258789","106.6500015258789","","1957-09-05T00:00:00Z","","0" +"UC-0034","105","105","Z","2006-02-17T00:00:00Z","","0" +"NM-00381","13.859999656677246","13.859999656677246","","2011-05-16T00:00:00Z","","0" +"NM-02487","9","9","","1976-05-15T00:00:00Z","","0" +"NM-13837","-5.619999885559082","-5.619999885559082","","1911-06-04T00:00:00Z","","0" +"NM-13819","-4.46999979019165","-4.46999979019165","","1911-03-01T00:00:00Z","","0" +"NM-07225","194.82000732421875","194.82000732421875","","1974-10-01T00:00:00Z","","0" +"NM-16816","32.279998779296875","32.279998779296875","","1948-01-10T00:00:00Z","","0" +"SB-0299","114.70999908447266","114.70999908447266","","1980-02-15T00:00:00Z","","0" +"NM-28252","35.900001525878906","35.900001525878906","","1993-11-05T00:00:00Z","","0" +"NM-03277","115.66000366210938","115.66000366210938","","1962-02-07T00:00:00Z","","0" +"NM-03885","98.7300033569336","98.7300033569336","","1980-01-07T00:00:00Z","","0" +"SB-0057","98.13999938964844","98.13999938964844","","1971-02-23T00:00:00Z","","0" +"NM-23314","126.18000030517578","126.18000030517578","","1957-08-01T00:00:00Z","","0" +"NM-17716","0.5099999904632568","0.5099999904632568","","1942-07-12T00:00:00Z","","0" +"NM-04325","56.91999816894531","56.91999816894531","","1971-01-21T00:00:00Z","","0" +"NM-05705","128.0399932861328","128.0399932861328","","1957-01-15T00:00:00Z","","0" +"NM-18540","331.0400085449219","331.0400085449219","","2004-10-21T00:00:00Z","","0" +"NM-09123","411.760009765625","411.760009765625","","1941-01-07T00:00:00Z","","0" +"NM-11565","101.9000015258789","101.9000015258789","","1961-01-13T00:00:00Z","","0" +"NM-22889","472","472","","1993-03-23T00:00:00Z","","0" +"QY-0808","131.1999969482422","131.1999969482422","","1955-07-12T00:00:00Z","","0" +"SB-0375","50","50","","1991-12-06T00:00:00Z","","0" +"NM-17716","5.179999828338623","5.179999828338623","","1947-11-12T00:00:00Z","","0" +"NM-17716","2.5","2.5","","1943-10-05T00:00:00Z","","0" +"NM-22279","14.699999809265137","14.699999809265137","R","1992-08-24T00:00:00Z","","0" +"NM-02043","5.5","5.5","","1979-06-15T00:00:00Z","","0" +"NM-26751","202.58999633789062","202.58999633789062","","1955-09-02T00:00:00Z","","0" +"NM-01279","90.37999725341797","90.37999725341797","","1956-10-03T00:00:00Z","","0" +"NM-01839","7.53000020980835","7.53000020980835","","2007-02-27T00:00:00Z","","0" +"NM-02043","6","6","","1998-10-15T00:00:00Z","","0" +"NM-05972","30.43000030517578","30.43000030517578","","1951-05-09T00:00:00Z","","0" +"NM-21873","6.230000019073486","6.230000019073486","Z","2007-08-14T00:00:00Z","","0" +"NM-11112","29.989999771118164","29.989999771118164","","1938-06-15T00:00:00Z","","0" +"NM-02004","10.600000381469727","10.600000381469727","","1977-12-15T00:00:00Z","","0" +"NM-06057","100.7300033569336","100.7300033569336","","1996-02-29T00:00:00Z","","0" +"NM-19997","78.08000183105469","78.08000183105469","","1943-03-26T00:00:00Z","","0" +"NM-02676","71.02999877929688","71.02999877929688","","2011-01-21T00:00:00Z","","0" +"NM-26632","26.200000762939453","26.200000762939453","S","2012-10-11T00:00:00Z","","0" +"NM-01011","303.17999267578125","303.17999267578125","","1984-01-16T00:00:00Z","","0" +"EB-250","49.790000915527344","49.790000915527344","","1972-01-21T00:00:00Z","","0" +"NM-11260","68.80000305175781","68.80000305175781","","1991-03-08T00:00:00Z","","0" +"SO-0160","10.300000190734863","9.230000495910645","","2020-12-15T00:00:00Z","","1.0700000524520874" +"NM-28256","173.49000549316406","173.49000549316406","","2020-11-06T00:00:00Z","","0" +"NM-17618","10.930000305175781","10.930000305175781","","1933-01-14T00:00:00Z","","0" +"NM-13465","17.350000381469727","17.350000381469727","","1957-04-29T00:00:00Z","","0" +"NM-22609","14.829999923706055","14.829999923706055","","1947-06-04T00:00:00Z","","0" +"NM-13901","4.46999979019165","4.46999979019165","","1959-06-25T00:00:00Z","","0" +"NM-09004","55.779998779296875","55.779998779296875","","1950-01-04T00:00:00Z","","0" +"NM-25026","384","384","","1979-02-08T00:00:00Z","","0" +"NM-27199","473.9200134277344","473.9200134277344","","2011-10-18T00:00:00Z","","0" +"NM-12339","13.010000228881836","13.010000228881836","","1938-06-15T00:00:00Z","","0" +"NM-14535","87.4000015258789","87.4000015258789","","1973-04-25T00:00:00Z","","0" +"NM-06016","42.040000915527344","42.040000915527344","","1951-07-18T00:00:00Z","","0" +"NM-28250","80.02999877929688","80.02999877929688","","1993-01-05T00:00:00Z","","0" +"NM-08842","38.630001068115234","38.630001068115234","","1954-01-08T00:00:00Z","","0" +"NM-02288","6.579999923706055","6.579999923706055","","2009-11-24T00:00:00Z","","0" +"NM-04170","103.11000061035156","103.11000061035156","P","1967-02-14T00:00:00Z","","0" +"NM-04632","20.5","20.5","","1957-07-15T00:00:00Z","","0" +"NM-03679","184.58999633789062","184.58999633789062","","2000-12-29T00:00:00Z","","0" +"NM-28252","41.38999938964844","41.38999938964844","","1988-02-05T00:00:00Z","","0" +"NM-08783","146.36000061035156","146.36000061035156","","1951-09-13T00:00:00Z","","0" +"NM-28258","122.9000015258789","122.9000015258789","","1980-01-15T00:00:00Z","","0" +"EB-296","520.3400268554688","520.3400268554688","","2015-07-01T00:00:00Z","","0" +"NM-12718","34.220001220703125","34.220001220703125","","1947-09-10T00:00:00Z","","0" +"NM-04454","6.519999980926514","6.519999980926514","","1976-06-02T00:00:00Z","","0" +"NM-02017","5.400000095367432","5.400000095367432","","1946-08-15T00:00:00Z","","0" +"NM-28259","96.12999725341797","96.12999725341797","","1989-11-05T00:00:00Z","","0" +"NM-02393","66.66999816894531","66.66999816894531","","1945-09-13T00:00:00Z","","0" +"NM-11963","69.98999786376953","69.98999786376953","","1991-02-20T00:00:00Z","","0" +"NM-04205","32.150001525878906","32.150001525878906","","1956-01-13T00:00:00Z","","0" +"NM-28257","64.25","64.25","","2013-08-15T00:00:00Z","","0" +"NM-13017","13.100000381469727","13.100000381469727","","1957-12-02T00:00:00Z","","0" +"DE-0109","38.06999969482422","38.06999969482422","","2011-03-01T00:00:00Z","","0" +"NM-09374","29.700000762939453","29.700000762939453","","1937-04-19T00:00:00Z","","0" +"NM-18544","299.4800109863281","299.4800109863281","","1982-02-18T00:00:00Z","","0" +"NM-06790","541.7999877929688","541.7999877929688","","2011-01-11T00:00:00Z","","0" +"NM-24992","595.6400146484375","595.6400146484375","","2014-10-16T00:00:00Z","","0" +"QU-115","47.900001525878906","47.31999969482422","P","2012-08-15T00:00:00Z","","0.5799999833106995" +"QY-0461","127.5999984741211","127.5999984741211","","1954-04-26T00:00:00Z","","0" +"NM-20668","30.3700008392334","30.3700008392334","","1946-09-06T00:00:00Z","","0" +"NM-01424","47.09000015258789","47.09000015258789","","2003-03-26T00:00:00Z","","0" +"EB-122","452.7699890136719","452.7699890136719","","2002-12-31T00:00:00Z","","0" +"WL-0089","73.70833587646484","71.15833282470703","","2006-08-31T00:00:00Z","","2.549999952316284" +"NM-02043","7.400000095367432","7.400000095367432","","1954-11-15T00:00:00Z","","0" +"NM-28259","97.19999694824219","97.19999694824219","","1980-12-15T00:00:00Z","","0" +"NM-23605","324.0299987792969","324.0299987792969","","1986-09-25T00:00:00Z","","0" +"NM-01204","365.8500061035156","365.8500061035156","","2003-03-10T00:00:00Z","","0" +"AB-0124","537.2899780273438","537.2899780273438","","2012-01-04T00:00:00Z","","" +"NM-28254","126.61000061035156","126.61000061035156","","1980-06-05T00:00:00Z","","0" +"NM-21606","88.58000183105469","88.58000183105469","","1973-01-24T00:00:00Z","","0" +"BC-0239","311.2699890136719","311.2699890136719","","2019-07-31T00:00:00Z","","0" +"NM-10331","589.7000122070312","589.7000122070312","","1965-06-01T00:00:00Z","","0" +"NM-26586","8.260000228881836","8.260000228881836","","2013-07-11T00:00:00Z","","0" +"NM-23246","252.6699981689453","252.6699981689453","Z","1997-02-03T00:00:00Z","","0" +"NM-13234","2.5799999237060547","2.5799999237060547","","1957-03-11T00:00:00Z","","0" +"NM-11578","27.3700008392334","27.3700008392334","","1941-02-19T00:00:00Z","","0" +"NM-22678","5.53000020980835","5.53000020980835","Z","2007-01-12T00:00:00Z","","0" +"NM-19975","84.54000091552734","84.54000091552734","","1956-08-06T00:00:00Z","","0" +"NM-03419","33.84000015258789","33.84000015258789","Z","1997-07-25T00:00:00Z","","0" +"BC-0034","42.43000030517578","42.43000030517578","R","1991-11-14T00:00:00Z","","0" +"NM-02709","7.460000038146973","7.460000038146973","","1947-01-17T00:00:00Z","","0" +"WL-0089","63.29166793823242","60.741668701171875","","1999-05-20T00:00:00Z","","2.549999952316284" +"NM-02814","390.3500061035156","390.3500061035156","","2003-01-13T00:00:00Z","","0" +"NM-25507","81.61000061035156","81.61000061035156","","1968-08-29T00:00:00Z","","0" +"NM-05364","63.279998779296875","63.279998779296875","","1938-01-11T00:00:00Z","","0" +"NM-21542","6.670000076293945","6.670000076293945","X","1997-02-27T00:00:00Z","","0" +"NM-20369","138.61000061035156","138.61000061035156","R","1972-02-18T00:00:00Z","","0" +"NM-08180","44.11000061035156","44.11000061035156","P","1949-01-04T00:00:00Z","","0" +"NM-05575","76.97000122070312","76.97000122070312","","1954-01-23T00:00:00Z","","0" +"NM-02209","111.87999725341797","111.87999725341797","","2006-01-31T00:00:00Z","","0" +"NM-28254","106.5","106.5","","2013-05-24T00:00:00Z","","0" +"NM-02678","75.08999633789062","75.08999633789062","","1996-01-09T00:00:00Z","","0" +"NM-01888","10.449999809265137","10.449999809265137","","2008-01-18T00:00:00Z","","0" +"NM-03337","10.970000267028809","10.970000267028809","","1993-11-02T00:00:00Z","","0" +"NM-16272","146.6699981689453","146.6699981689453","","1989-01-13T00:00:00Z","","0" +"MI-0193","35","35","","1950-12-31T00:00:00Z","","0" +"NM-07114","76.5199966430664","76.5199966430664","","2003-04-10T00:00:00Z","","0" +"NM-01841","260.44000244140625","260.44000244140625","","1982-05-21T00:00:00Z","","0" +"NM-13833","-16.020000457763672","-16.020000457763672","","1908-06-16T00:00:00Z","","0" +"NM-28257","38.029998779296875","38.029998779296875","","1991-04-05T00:00:00Z","","0" +"AR-0210","12.050000190734863","11.319999694824219","","2019-04-10T00:00:00Z","0001-01-01T08:36:00Z","0.7300000190734863" +"NM-09597","82.19000244140625","82.19000244140625","","1963-11-20T00:00:00Z","","0" +"NM-27457","8.569999694824219","8.569999694824219","","1971-09-02T00:00:00Z","","0" +"NM-04143","28.989999771118164","28.989999771118164","","1959-03-11T00:00:00Z","","0" +"NM-14501","121.3499984741211","121.3499984741211","","1991-01-15T00:00:00Z","","0" +"NM-05417","97.80000305175781","97.80000305175781","P","1951-07-22T00:00:00Z","","0" +"NM-25026","433.1199951171875","433.1199951171875","","1981-02-28T00:00:00Z","","0" +"NM-09830","42.06999969482422","42.06999969482422","","1939-01-13T00:00:00Z","","0" +"EB-696","94.2300033569336","91.72000122070312","","2022-04-05T00:00:00Z","0001-01-01T10:20:00Z","2.509999990463257" +"NM-01926","6","6","","1970-05-15T00:00:00Z","","0" +"EB-300","198.5500030517578","198.5500030517578","","2014-03-06T00:00:00Z","","0" +"NM-17738","22.010000228881836","22.010000228881836","","1932-04-28T00:00:00Z","","0" +"NM-18416","256.1099853515625","256.1099853515625","","1969-01-07T00:00:00Z","","0" +"NM-23204","36.70000076293945","36.70000076293945","","2008-03-05T00:00:00Z","","0" +"SB-0544","197","197","","1973-08-23T00:00:00Z","","0" +"NM-07302","99.02999877929688","99.02999877929688","","1981-02-13T00:00:00Z","","0" +"NM-11230","224.25","224.25","","1981-01-27T00:00:00Z","","0" +"NM-02576","43.880001068115234","43.880001068115234","P","1990-06-28T00:00:00Z","","0" +"NM-21866","4.909999847412109","4.909999847412109","Z","2010-08-19T00:00:00Z","","0" +"NM-05292","39.970001220703125","39.970001220703125","","1937-09-15T00:00:00Z","","0" +"NM-03212","40.779998779296875","40.779998779296875","","1941-02-20T00:00:00Z","","0" +"NM-02669","53.06999969482422","53.06999969482422","","1992-12-22T00:00:00Z","","0" +"NM-13135","9.850000381469727","9.850000381469727","","1959-05-27T00:00:00Z","","0" +"NM-02867","64.83999633789062","64.83999633789062","","2001-02-01T00:00:00Z","","0" +"NM-19784","69.58999633789062","69.58999633789062","","1954-01-18T00:00:00Z","","0" +"NM-02651","160.99000549316406","160.99000549316406","","2006-01-24T00:00:00Z","","0" +"SV-0044","77.9000015258789","75.31666564941406","","2016-02-21T00:00:00Z","","2.5799999237060547" +"SB-0441","153.8000030517578","153.8000030517578","","1997-01-22T00:00:00Z","","0" +"NM-13980","-37.959999084472656","-37.959999084472656","","1910-12-14T00:00:00Z","","0" +"NM-12025","45.25","45.25","","1970-01-07T00:00:00Z","","0" +"AB-0107","422.3399963378906","422.3399963378906","","2015-03-16T00:00:00Z","","0" +"NM-10021","42.72999954223633","42.72999954223633","","1946-01-17T00:00:00Z","","0" +"NM-02196","23.670000076293945","23.670000076293945","","2010-09-16T00:00:00Z","","0" +"SM-0092","299.239990234375","297.2200012207031","","2008-06-19T00:00:00Z","","2.0199999809265137" +"NM-00662","33.7599983215332","33.7599983215332","","1962-09-27T00:00:00Z","","0" +"NM-28255","16.75","16.75","","1954-10-15T00:00:00Z","","0" +"QU-070","46.599998474121094","43.94999694824219","","2013-05-08T00:00:00Z","","2.6500000953674316" +"NM-19497","18.459999084472656","18.459999084472656","","1948-10-25T00:00:00Z","","0" +"MG-033","202.44000244140625","200.8300018310547","AA","2023-06-07T00:00:00Z","0001-01-01T15:30:00Z","1.6100000143051147" +"NM-13213","8.789999961853027","8.789999961853027","","1960-01-26T00:00:00Z","","0" +"NM-13170","14.470000267028809","14.470000267028809","P","1978-05-15T00:00:00Z","","0" +"DA-0019","18","18","","1968-06-20T00:00:00Z","","0" +"NM-03032","84.4000015258789","84.4000015258789","","2006-02-27T00:00:00Z","","0" +"NM-15786","67.23999786376953","67.23999786376953","","1995-02-14T00:00:00Z","","0" +"NM-13379","368.17999267578125","368.17999267578125","","1947-03-04T00:00:00Z","","0" +"NM-07704","29.290000915527344","29.290000915527344","R","1978-06-08T00:00:00Z","","0" +"NM-03859","50.20000076293945","50.20000076293945","","1955-09-28T00:00:00Z","","0" +"NM-28259","111.05999755859375","111.05999755859375","","2018-12-26T00:00:00Z","","0" +"NM-01985","9.600000381469727","9.600000381469727","","1969-04-15T00:00:00Z","","0" +"NM-28256","211.19000244140625","211.19000244140625","","1988-09-15T00:00:00Z","","0" +"NM-02101","9","9","","2002-03-15T00:00:00Z","","0" +"EB-266","10.359999656677246","10.359999656677246","","2010-07-14T00:00:00Z","","0" +"SO-0250","8.800000190734863","7.310000419616699","","2019-04-09T00:00:00Z","0001-01-01T15:15:00Z","1.4900000095367432" +"NM-15528","74.95999908447266","74.95999908447266","","1956-08-25T00:00:00Z","","0" +"NM-02207","13.899999618530273","13.899999618530273","","1983-03-15T00:00:00Z","","0" +"NM-20213","54.290000915527344","54.290000915527344","","1990-04-05T00:00:00Z","","0" +"NM-27317","212.39999389648438","212.39999389648438","","1992-09-01T00:00:00Z","","0" +"NM-02620","9.899999618530273","9.899999618530273","","2002-05-15T00:00:00Z","","0" +"EB-356","244.50999450683594","242.50999450683594","","2003-10-17T00:00:00Z","","2" +"NM-09402","148","148","","1961-01-04T00:00:00Z","","0" +"NM-19540","35.58000183105469","35.58000183105469","","1942-08-12T00:00:00Z","","0" +"NM-28252","36.79999923706055","36.79999923706055","","1996-10-15T00:00:00Z","","0" +"NM-07979","29.760000228881836","29.760000228881836","","1973-03-20T00:00:00Z","","0" +"NM-02635","25.649999618530273","25.649999618530273","","2015-01-15T00:00:00Z","","0" +"NM-01948","5.099999904632568","5.099999904632568","","1997-03-15T00:00:00Z","","0" +"NM-08524","15","15","","1955-11-15T00:00:00Z","","0" +"NM-24686","104","104","","1994-12-29T00:00:00Z","","0" +"NM-07010","49.70000076293945","49.70000076293945","","1966-07-21T00:00:00Z","","0" +"NM-17716","8.520000457763672","8.520000457763672","","1940-09-21T00:00:00Z","","0" +"NM-02109","57.4900016784668","57.4900016784668","","1991-01-07T00:00:00Z","","0" +"NM-13285","-21.790000915527344","-21.790000915527344","","1910-12-24T00:00:00Z","","0" +"NM-02510","85.93000030517578","85.93000030517578","","1993-06-02T00:00:00Z","","0" +"DE-0077","83.41999816894531","83.41999816894531","","2015-05-11T00:00:00Z","","0" +"NM-16537","6.630000114440918","6.630000114440918","","1943-03-28T00:00:00Z","","0" +"NM-11815","127.55000305175781","127.55000305175781","","1960-10-12T00:00:00Z","","0" +"NM-28253","12.5600004196167","12.5600004196167","","1961-11-25T00:00:00Z","","0" +"NM-13921","-6.199999809265137","-6.199999809265137","","1911-09-01T00:00:00Z","","0" +"SB-0442","175.8000030517578","175.8000030517578","","2011-10-20T00:00:00Z","","0" +"NM-14650","130.27999877929688","130.27999877929688","Z","1994-02-08T00:00:00Z","","0" +"NM-00644","122.7699966430664","122.7699966430664","","1987-07-08T00:00:00Z","","0" +"NM-21776","8.520000457763672","8.520000457763672","","1965-02-12T00:00:00Z","","0" +"NM-14190","31.1200008392334","31.1200008392334","","1986-02-26T00:00:00Z","","0" +"DE-0093","90.26000213623047","90.26000213623047","","2008-05-20T00:00:00Z","","0" +"TO-0436","66.69999694824219","66.69999694824219","","1950-07-11T00:00:00Z","","0" +"NM-09033","30.530000686645508","30.530000686645508","","1955-08-23T00:00:00Z","","0" +"NM-01898","78.54000091552734","78.54000091552734","","1997-10-03T00:00:00Z","","0" +"NM-16979","35.2400016784668","35.2400016784668","","1943-03-28T00:00:00Z","","0" +"NM-13145","13.720000267028809","13.720000267028809","","1959-04-22T00:00:00Z","","0" +"NM-20861","25.850000381469727","25.850000381469727","","1967-03-30T00:00:00Z","","0" +"NM-28253","15.539999961853027","15.539999961853027","","1996-03-25T00:00:00Z","","0" +"NM-10099","117.30000305175781","117.30000305175781","","1970-12-14T00:00:00Z","","0" +"NM-08071","8.600000381469727","8.600000381469727","","1968-02-15T00:00:00Z","","0" +"NM-10392","196.42999267578125","196.42999267578125","","1986-01-22T00:00:00Z","","0" +"NM-11944","-0.75","-0.75","","1945-01-02T00:00:00Z","","0" +"NM-28252","44.04999923706055","44.04999923706055","","1987-01-25T00:00:00Z","","0" +"NM-03397","26.59000015258789","26.59000015258789","","1991-04-04T00:00:00Z","","0" +"NM-07027","135.2899932861328","135.2899932861328","","1977-01-19T00:00:00Z","","0" +"NM-28254","24.6299991607666","24.6299991607666","","1954-11-15T00:00:00Z","","0" +"NM-20061","37.31999969482422","37.31999969482422","","1941-10-14T00:00:00Z","","0" +"NM-06596","50.349998474121094","50.349998474121094","","1931-11-14T00:00:00Z","","0" +"QY-0636","24.899999618530273","24.899999618530273","","1941-04-30T00:00:00Z","","0" +"NM-20229","64.05000305175781","64.05000305175781","","1956-01-12T00:00:00Z","","0" +"NM-13044","60.08000183105469","60.08000183105469","","1981-03-10T00:00:00Z","","0" +"EB-490","320.95001220703125","316.6500244140625","Z","2008-07-31T00:00:00Z","","4.300000190734863" +"NM-21723","49.20000076293945","49.20000076293945","","2007-02-07T00:00:00Z","","0" +"NM-05474","47.959999084472656","47.959999084472656","","1934-12-28T00:00:00Z","","0" +"NM-20685","18.520000457763672","18.520000457763672","","1943-06-18T00:00:00Z","","0" +"NM-26419","2.0899999141693115","2.0899999141693115","","1986-03-13T00:00:00Z","","0" +"NM-17127","34.72999954223633","34.72999954223633","P","1950-05-26T00:00:00Z","","0" +"BC-0038","238.52000427246094","238.52000427246094","","2019-11-02T00:00:00Z","","0" +"NM-21239","4.320000171661377","4.320000171661377","Z","2006-05-01T00:00:00Z","","0" +"NM-28250","105.66999816894531","105.66999816894531","","1979-05-25T00:00:00Z","","0" +"NM-00244","11.300000190734863","11.300000190734863","","1992-03-15T00:00:00Z","","0" +"NM-12525","52.79999923706055","52.79999923706055","","1991-01-03T00:00:00Z","","0" +"NM-13900","9.079999923706055","9.079999923706055","","1957-11-18T00:00:00Z","","0" +"NM-20263","54.70000076293945","54.70000076293945","","1946-02-06T00:00:00Z","","0" +"NM-02005","11.970000267028809","11.970000267028809","","2013-01-14T00:00:00Z","","0" +"NM-02282","398.9700012207031","398.9700012207031","","1984-12-01T00:00:00Z","","0" +"NM-05762","57.209999084472656","57.209999084472656","","1958-02-05T00:00:00Z","","0" +"NM-00367","139.19000244140625","139.19000244140625","","2003-06-18T00:00:00Z","","0" +"NM-28252","47.7400016784668","47.7400016784668","","2006-08-25T00:00:00Z","","0" +"NM-10929","267.8500061035156","267.8500061035156","","1966-02-16T00:00:00Z","","0" +"NM-04953","63.529998779296875","63.529998779296875","","1980-01-04T00:00:00Z","","0" +"NM-17935","111.22000122070312","111.22000122070312","","1991-01-07T00:00:00Z","","0" +"NM-28011","491.32000732421875","491.32000732421875","S","2015-05-16T00:00:00Z","","0" +"NM-07688","20.889999389648438","20.889999389648438","","1973-01-24T00:00:00Z","","0" +"NM-13511","-54.130001068115234","-54.130001068115234","","1912-05-23T00:00:00Z","","0" +"NM-21678","343.8599853515625","343.8599853515625","","2012-04-09T00:00:00Z","","0" +"NM-01882","122.8499984741211","122.8499984741211","P","1985-01-21T00:00:00Z","","0" +"NM-12986","80.5","80.5","","1976-05-12T00:00:00Z","","0" +"NM-02209","104.08000183105469","104.08000183105469","","1986-08-27T00:00:00Z","","0" +"QU-094","89.9000015258789","87.6500015258789","","2014-01-21T00:00:00Z","","2.25" +"SO-0216","17.510000228881836","16.100000381469727","","2020-10-17T00:00:00Z","0001-01-01T14:32:00Z","1.409999966621399" +"NM-02209","110","110","","1965-09-01T00:00:00Z","","0" +"NM-12933","29.790000915527344","29.790000915527344","","1989-01-24T00:00:00Z","","0" +"NM-03431","476.2699890136719","476.2699890136719","Z","1999-04-06T00:00:00Z","","0" +"NM-13145","14.550000190734863","14.550000190734863","","1959-01-07T00:00:00Z","","0" +"DE-0110","40.380001068115234","40.380001068115234","","2010-04-26T00:00:00Z","","0" +"NM-01947","4.699999809265137","4.699999809265137","","1962-04-15T00:00:00Z","","0" +"DE-0083","89.7699966430664","89.7699966430664","","2005-04-13T00:00:00Z","","0" +"WL-0091","49.70833206176758","46.938331604003906","","1986-09-10T00:00:00Z","","2.7699999809265137" +"NM-02209","91.4000015258789","91.4000015258789","","1950-11-28T00:00:00Z","","0" +"AB-0102","581.469970703125","581.469970703125","","1998-10-14T00:00:00Z","","" +"NM-00257","94.05000305175781","94.05000305175781","Z","2000-04-10T00:00:00Z","","0" +"NM-21285","8.029999732971191","8.029999732971191","","1959-05-06T00:00:00Z","","0" +"NM-14217","14.069999694824219","14.069999694824219","","1963-07-24T00:00:00Z","","0" +"EB-244","81.93000030517578","81.93000030517578","","1987-06-25T00:00:00Z","","0" +"NM-00643","108.56999969482422","108.56999969482422","","1985-01-23T00:00:00Z","","0" +"NM-00449","45.11000061035156","45.11000061035156","","2006-01-18T00:00:00Z","","0" +"NM-28253","39.540000915527344","39.540000915527344","","1989-07-25T00:00:00Z","","0" +"NM-02514","17.899999618530273","17.899999618530273","","1984-01-18T00:00:00Z","","0" +"NM-12392","259.5299987792969","259.5299987792969","","1957-05-01T00:00:00Z","","0" +"NM-02758","269.7799987792969","269.7799987792969","","1941-02-12T00:00:00Z","","0" +"NM-28258","110.80000305175781","110.80000305175781","","1971-02-05T00:00:00Z","","0" +"NM-04165","42.18000030517578","42.18000030517578","","1956-01-13T00:00:00Z","","0" +"AS-014","165.3000030517578","165.3000030517578","","2005-04-27T00:00:00Z","","0" +"NM-16734","9.5","9.5","","1967-10-05T00:00:00Z","","0" +"NM-02165","8.729999542236328","8.729999542236328","","2006-10-18T00:00:00Z","","0" +"EB-484","275.6300048828125","275.0299987792969","Z","1992-01-31T00:00:00Z","","0.6000000238418579" +"DE-0186","46.400001525878906","46.400001525878906","","2013-06-20T00:00:00Z","","0" +"NM-01986","7.699999809265137","7.699999809265137","","1962-03-15T00:00:00Z","","0" +"NM-10244","-28.139999389648438","-28.139999389648438","","1932-08-17T00:00:00Z","","0" +"NM-07382","79","79","","1954-12-31T00:00:00Z","","0" +"NM-17577","39.709999084472656","39.709999084472656","","1932-11-12T00:00:00Z","","0" +"NM-02384","7.800000190734863","7.800000190734863","","1966-10-15T00:00:00Z","","0" +"NM-02237","53.209999084472656","53.209999084472656","","1943-04-26T00:00:00Z","","0" +"NM-06268","13.300000190734863","13.300000190734863","","1969-07-15T00:00:00Z","","0" +"NM-28258","192.14999389648438","192.14999389648438","","2017-08-25T00:00:00Z","","0" +"NM-04455","20.1200008392334","20.1200008392334","","1958-09-25T00:00:00Z","","0" +"NM-26697","17.399999618530273","17.399999618530273","","1955-07-25T00:00:00Z","","0" +"NM-02702","-25.40999984741211","-25.40999984741211","","1997-12-05T00:00:00Z","","0" +"NM-07610","26.540000915527344","26.540000915527344","","1966-12-02T00:00:00Z","","0" +"NM-17716","4.739999771118164","4.739999771118164","","1948-01-30T00:00:00Z","","0" +"NM-02527","8.300000190734863","8.300000190734863","","1990-09-15T00:00:00Z","","0" +"NM-16980","29.610000610351562","29.610000610351562","","1977-05-18T00:00:00Z","","0" +"NM-13871","-9.09000015258789","-9.09000015258789","","1907-01-02T00:00:00Z","","0" +"NM-11560","75.31999969482422","75.31999969482422","","1951-03-15T00:00:00Z","","0" +"NM-22756","37.13999938964844","37.13999938964844","","1952-11-18T00:00:00Z","","0" +"NM-02260","31.799999237060547","31.799999237060547","","1951-01-11T00:00:00Z","","0" +"NM-02261","66.91000366210938","66.91000366210938","","1998-02-03T00:00:00Z","","0" +"DE-0099","90.26000213623047","90.26000213623047","","2009-04-30T00:00:00Z","","0" +"TV-200","75.36000061035156","74.08000183105469","","2012-08-09T00:00:00Z","","1.2799999713897705" +"NM-01894","66.83000183105469","66.83000183105469","","2006-12-19T00:00:00Z","","0" +"NM-03619","150.9199981689453","150.9199981689453","","1978-01-26T00:00:00Z","","0" +"SO-0271","1.590000033378601","-0.4099999666213989","","2019-11-06T00:00:00Z","0001-01-01T12:10:00Z","2" +"NM-02355","92.62999725341797","92.62999725341797","","1968-01-23T00:00:00Z","","0" +"DE-0096","93.12000274658203","93.12000274658203","","1999-11-24T00:00:00Z","","0" +"NM-25976","303.1000061035156","303.1000061035156","","1988-08-30T00:00:00Z","","0" +"NM-11920","1.4900000095367432","1.4900000095367432","","1962-04-02T00:00:00Z","","0" +"NM-28259","104.3499984741211","104.3499984741211","","1994-11-05T00:00:00Z","","0" +"NM-17087","23.350000381469727","23.350000381469727","","1944-01-21T00:00:00Z","","0" +"NM-27735","54.040000915527344","54.040000915527344","","1962-06-13T00:00:00Z","","0" +"NM-28258","179.64999389648438","179.64999389648438","","2018-06-25T00:00:00Z","","0" +"NM-14597","193.1999969482422","193.1999969482422","P","1986-04-10T00:00:00Z","","0" +"NM-02844","6.429999828338623","6.429999828338623","","2008-01-22T00:00:00Z","","0" +"NM-27194","366.5299987792969","366.5299987792969","","2008-10-16T00:00:00Z","","0" +"NM-01678","95.55000305175781","95.55000305175781","","1988-08-10T00:00:00Z","","0" +"NM-04586","64.33000183105469","64.33000183105469","","1952-03-28T00:00:00Z","","0" +"NM-20780","3.299999952316284","3.299999952316284","","1949-11-02T00:00:00Z","","0" +"NM-01896","20.6200008392334","20.6200008392334","","2015-01-20T00:00:00Z","","0" +"NM-28258","121.75","121.75","","1981-01-05T00:00:00Z","","0" +"NM-23203","12.670000076293945","12.670000076293945","Z","1997-06-03T00:00:00Z","","0" +"NM-10509","77.13999938964844","77.13999938964844","","1962-01-15T00:00:00Z","","0" +"NM-10599","122.62000274658203","122.62000274658203","P","1963-08-13T00:00:00Z","","0" +"EB-691","24.850000381469727","23.100000381469727","","2018-04-10T00:00:00Z","0001-01-01T08:24:00Z","1.75" +"NM-17102","65.0199966430664","65.0199966430664","","1960-01-09T00:00:00Z","","0" +"NM-05762","48.220001220703125","48.220001220703125","","1952-01-25T00:00:00Z","","0" +"NM-00443","168.27000427246094","168.27000427246094","","1996-02-16T00:00:00Z","","0" +"NM-28253","11.829999923706055","11.829999923706055","","1962-02-15T00:00:00Z","","0" +"NM-13815","-14.859999656677246","-14.859999656677246","","1915-01-08T00:00:00Z","","0" +"SB-0299","105.5199966430664","105.5199966430664","","1970-02-05T00:00:00Z","","0" +"NM-01586","55.83000183105469","55.83000183105469","","1988-04-14T00:00:00Z","","0" +"NM-05764","29.59000015258789","29.59000015258789","","1932-09-01T00:00:00Z","","0" +"NM-10366","36.220001220703125","36.220001220703125","","1966-01-12T00:00:00Z","","0" +"NM-22566","131.14999389648438","131.14999389648438","","1986-11-01T00:00:00Z","","0" +"NM-02591","13","13","","1986-03-15T00:00:00Z","","0" +"SD-0035","48","48","","1945-01-01T00:00:00Z","","0" +"NM-00716","363.79998779296875","363.79998779296875","","2008-12-02T00:00:00Z","","0" +"NM-00601","55.7400016784668","55.7400016784668","","1996-01-18T00:00:00Z","","0" +"NM-02163","13.010000228881836","13.010000228881836","","2004-04-12T00:00:00Z","","0" +"NM-00669","10.300000190734863","10.300000190734863","T","2008-05-01T00:00:00Z","","0" +"UC-0003","202.10000610351562","201.20001220703125","","2010-01-01T00:00:00Z","","0.8999999761581421" +"NM-07888","658.030029296875","658.030029296875","","1975-05-15T00:00:00Z","","0" +"NM-22377","14.4399995803833","14.4399995803833","","1983-02-02T00:00:00Z","","0" +"NM-10858","68.5","68.5","","1980-01-04T00:00:00Z","","0" +"NM-03378","21.020000457763672","21.020000457763672","","1959-01-23T00:00:00Z","","0" +"NM-19653","214.5500030517578","214.5500030517578","","1982-02-18T00:00:00Z","","0" +"NM-02256","6.300000190734863","6.300000190734863","","1992-09-15T00:00:00Z","","0" +"NM-17716","1.2100000381469727","1.2100000381469727","","1944-04-20T00:00:00Z","","0" +"NM-11323","4.110000133514404","4.110000133514404","","1983-08-26T00:00:00Z","","0" +"DE-0129","44.63999938964844","44.63999938964844","","2015-04-21T00:00:00Z","","0" +"NM-03435","79.91000366210938","79.91000366210938","","1989-03-14T00:00:00Z","","0" +"NM-03903","331.8500061035156","331.8500061035156","","1976-08-29T00:00:00Z","","0" +"NM-02287","2.9800000190734863","2.9800000190734863","","1994-06-21T00:00:00Z","","0" +"SB-0299","145.5","145.5","","2006-07-20T00:00:00Z","","0" +"NM-02520","4.300000190734863","4.300000190734863","","1960-07-15T00:00:00Z","","0" +"NM-13968","-3.309999942779541","-3.309999942779541","","1914-08-26T00:00:00Z","","0" +"NM-00451","49.5","49.5","","1993-07-07T00:00:00Z","","0" +"NM-13145","9.84000015258789","9.84000015258789","","1975-04-18T00:00:00Z","","0" +"NM-27432","34.119998931884766","34.119998931884766","","1937-05-17T00:00:00Z","","0" +"NM-25376","35.06999969482422","35.06999969482422","","1967-09-01T00:00:00Z","","0" +"NM-12600","51.29999923706055","51.29999923706055","","1938-08-28T00:00:00Z","","0" +"NM-20531","355.0799865722656","355.0799865722656","","1987-03-11T00:00:00Z","","0" +"NM-03903","330.4800109863281","330.4800109863281","","1974-09-04T00:00:00Z","","0" +"NM-04470","51.61000061035156","51.61000061035156","","1956-07-12T00:00:00Z","","0" +"NM-28255","90.80999755859375","90.80999755859375","","1967-10-05T00:00:00Z","","0" +"NM-04608","61.75","61.75","","1952-11-12T00:00:00Z","","0" +"SM-0054","16.860000610351562","14.410000801086426","","2007-04-19T00:00:00Z","","2.450000047683716" +"NM-02620","11.199999809265137","11.199999809265137","","1977-09-15T00:00:00Z","","0" +"NM-13314","16.309999465942383","16.309999465942383","","1979-01-04T00:00:00Z","","0" +"NM-00589","85.06999969482422","85.06999969482422","","2006-01-25T00:00:00Z","","0" +"NM-17200","0.6499999761581421","0.6499999761581421","","1938-11-01T00:00:00Z","","0" +"NM-13413","-81.8499984741211","-81.8499984741211","","1944-01-18T00:00:00Z","","0" +"NM-04632","10.699999809265137","10.699999809265137","","1959-03-15T00:00:00Z","","0" +"NM-00185","15.600000381469727","15.600000381469727","","1964-06-15T00:00:00Z","","0" +"SB-0057","97.9000015258789","97.9000015258789","","1973-02-26T00:00:00Z","","0" +"NM-05622","76.30000305175781","76.30000305175781","S","1945-07-18T00:00:00Z","","0" +"NM-03146","340.04998779296875","340.04998779296875","","1967-01-30T00:00:00Z","","0" +"NM-01447","231.35000610351562","231.35000610351562","","2009-03-25T00:00:00Z","","0" +"NM-02348","14.199999809265137","14.199999809265137","","2002-02-01T00:00:00Z","","0" +"NM-06126","68.05000305175781","68.05000305175781","","1976-01-16T00:00:00Z","","0" +"NM-02168","11.289999961853027","11.289999961853027","","2004-11-23T00:00:00Z","","0" +"NM-09553","72.9000015258789","72.9000015258789","","1970-01-09T00:00:00Z","","0" +"NM-01931","323.70001220703125","323.70001220703125","","1955-06-15T00:00:00Z","","0" +"NM-03467","439.45001220703125","439.45001220703125","","2004-09-01T00:00:00Z","","0" +"NM-03036","68.16999816894531","68.16999816894531","","1983-01-10T00:00:00Z","","0" +"NM-13888","5.71999979019165","5.71999979019165","","1958-07-29T00:00:00Z","","0" +"NM-08393","11.949999809265137","11.949999809265137","R","2016-04-06T00:00:00Z","","0" +"NM-12451","35.59000015258789","35.59000015258789","","1950-01-26T00:00:00Z","","0" +"SB-0097","120.16999816894531","120.16999816894531","","1967-01-25T00:00:00Z","","0" +"NM-28257","114.9000015258789","114.9000015258789","","1965-01-25T00:00:00Z","","0" +"NM-05575","98.1500015258789","98.1500015258789","P","1954-07-16T00:00:00Z","","0" +"NM-01701","34.150001525878906","34.150001525878906","","1980-07-29T00:00:00Z","","0" +"NM-03765","43.04999923706055","43.04999923706055","","1960-11-16T00:00:00Z","","0" +"EB-246","287.4200134277344","287.4200134277344","","2001-05-31T00:00:00Z","","0" +"DE-0352","15.350000381469727","12.350000381469727","","2014-10-04T00:00:00Z","","3" +"PB-0022","39.689998626708984","42.689998626708984","R","2016-04-13T00:00:00Z","","-3" +"NM-01761","54.81999969482422","54.81999969482422","","1959-11-04T00:00:00Z","","0" +"NM-28252","66.81999969482422","66.81999969482422","","1983-08-15T00:00:00Z","","0" +"NM-14265","422.3399963378906","422.3399963378906","","1961-04-01T00:00:00Z","","0" +"NM-02116","80.18000030517578","80.18000030517578","","1954-01-05T00:00:00Z","","0" +"NM-01872","15.899999618530273","15.899999618530273","","1965-07-15T00:00:00Z","","0" +"AB-0091","506.010009765625","506.010009765625","","2015-03-19T00:00:00Z","","0" +"NM-01891","55.15999984741211","55.15999984741211","","2003-02-18T00:00:00Z","","0" +"BC-0076","","263","","2020-07-25T00:00:00Z","","0.8299999833106995" +"NM-28254","20.229999542236328","20.229999542236328","","1987-12-15T00:00:00Z","","0" +"SB-0348","131.47000122070312","131.47000122070312","","1972-12-19T00:00:00Z","","0" +"NM-28024","475.4700012207031","475.4700012207031","S","2015-05-07T00:00:00Z","","0" +"NM-16832","27.420000076293945","27.420000076293945","","1949-01-12T00:00:00Z","","0" +"QY-0706","64","64","","1956-01-12T00:00:00Z","","0" +"NM-06375","199.00999450683594","199.00999450683594","","1967-01-25T00:00:00Z","","0" +"NM-02989","71.0199966430664","71.0199966430664","","1997-01-08T00:00:00Z","","0" +"NM-25427","58.79999923706055","58.79999923706055","","1982-04-20T00:00:00Z","","0" +"NM-11679","19.440000534057617","19.440000534057617","","1942-11-16T00:00:00Z","","0" +"NM-13865","5.300000190734863","5.300000190734863","","1958-08-25T00:00:00Z","","0" +"NM-07888","658.4500122070312","658.4500122070312","","1975-05-25T00:00:00Z","","0" +"NM-01565","-243.30999755859375","-243.30999755859375","","1988-06-16T00:00:00Z","","0" +"NM-00699","5.980000019073486","5.980000019073486","","2012-01-11T00:00:00Z","","0" +"NM-25166","11.65999984741211","11.65999984741211","","1970-10-02T00:00:00Z","","0" +"NM-28021","511.5299987792969","511.5299987792969","S","2015-04-25T00:00:00Z","","0" +"NM-06039","5.659999847412109","5.659999847412109","","1998-01-20T00:00:00Z","","0" +"NM-24976","134.42999267578125","134.42999267578125","","1962-02-15T00:00:00Z","","0" +"NM-02772","9.829999923706055","9.829999923706055","","2004-12-23T00:00:00Z","","0" +"NM-02018","58.650001525878906","58.650001525878906","","1951-01-06T00:00:00Z","","0" +"NM-03240","128.92999267578125","128.92999267578125","","2001-03-07T00:00:00Z","","0" +"SB-0288","107.7300033569336","107.7300033569336","","1962-04-30T00:00:00Z","","0" +"NM-26478","29.700000762939453","29.700000762939453","","1988-08-03T00:00:00Z","","0" +"AB-0110","34.16999816894531","34.16999816894531","","2003-02-19T00:00:00Z","","" +"NM-01863","15.869999885559082","15.869999885559082","","1957-01-11T00:00:00Z","","0" +"NM-22965","767.2999877929688","767.2999877929688","","1985-03-07T00:00:00Z","","0" +"NM-03401","7.610000133514404","7.610000133514404","","1992-02-28T00:00:00Z","","0" +"EB-389","110.08000183105469","108.0999984741211","","2009-02-15T00:00:00Z","","1.9800000190734863" +"NM-28368","133.61000061035156","133.61000061035156","","2017-06-20T00:00:00Z","","0" +"AB-0037","325.6400146484375","325.6400146484375","","2010-04-08T00:00:00Z","","" +"NM-14164","7","7","","1913-07-11T00:00:00Z","","0" +"NM-19944","23.110000610351562","23.110000610351562","P","1942-01-22T00:00:00Z","","0" +"NM-02283","19.420000076293945","19.420000076293945","","2001-05-24T00:00:00Z","","0" +"NM-12666","19.600000381469727","19.600000381469727","","1957-09-17T00:00:00Z","","0" +"NM-01947","7.900000095367432","7.900000095367432","","1955-06-15T00:00:00Z","","0" +"EB-416","218","218","Z","1990-10-31T00:00:00Z","","0" +"EB-387","98.75","97.51000213623047","","2000-07-01T00:00:00Z","","1.2400000095367432" +"NM-00257","93.01000213623047","93.01000213623047","","1992-04-23T00:00:00Z","","0" +"NM-03354","88.41999816894531","88.41999816894531","","1963-02-07T00:00:00Z","","0" +"NM-13949","44.02000045776367","44.02000045776367","","1958-01-27T00:00:00Z","","0" +"NM-12283","-50.66999816894531","-50.66999816894531","","1907-12-19T00:00:00Z","","0" +"NM-12886","23.899999618530273","23.899999618530273","","1981-08-03T00:00:00Z","","0" +"NM-11383","35.22999954223633","35.22999954223633","","1938-11-18T00:00:00Z","","0" +"NM-08362","78.0199966430664","78.0199966430664","","1990-09-28T00:00:00Z","","0" +"NM-13594","49.040000915527344","49.040000915527344","","1974-04-05T00:00:00Z","","0" +"NM-28254","99.37000274658203","99.37000274658203","","1965-05-15T00:00:00Z","","0" +"NM-01890","26.90999984741211","26.90999984741211","","1993-03-19T00:00:00Z","","0" +"BC-0351","163.1999969482422","163.1999969482422","","2019-01-11T00:00:00Z","","0" +"NM-27720","58.04999923706055","58.04999923706055","","1955-05-26T00:00:00Z","","0" +"AB-0215","155.77000427246094","155.77000427246094","","2007-01-10T00:00:00Z","","" +"NM-08892","-49.5099983215332","-49.5099983215332","","1905-11-18T00:00:00Z","","0" +"NM-03332","10.880000114440918","10.880000114440918","","1993-11-30T00:00:00Z","","0" +"NM-11282","58.099998474121094","58.099998474121094","","1956-09-10T00:00:00Z","","0" +"NM-28021","511.010009765625","511.010009765625","S","2015-04-26T00:00:00Z","","0" +"NM-03468","146.97999572753906","146.97999572753906","R","1992-03-02T00:00:00Z","","0" +"NM-27697","70.43000030517578","70.43000030517578","","1961-01-10T00:00:00Z","","0" +"NM-00251","204.6199951171875","204.6199951171875","P","1996-03-07T00:00:00Z","","0" +"NM-12781","97.7699966430664","97.7699966430664","S","1950-03-10T00:00:00Z","","0" +"NM-13594","5.199999809265137","5.199999809265137","","1960-02-02T00:00:00Z","","0" +"SB-0442","171.10000610351562","171.10000610351562","","2009-08-15T00:00:00Z","","0" +"EB-262","101.12000274658203","101.12000274658203","","2006-02-22T00:00:00Z","","0" +"NM-01897","11.779999732971191","11.779999732971191","","1990-11-30T00:00:00Z","","0" +"NM-04878","102.62000274658203","102.62000274658203","","1970-12-10T00:00:00Z","","0" +"NM-21847","7.619999885559082","7.619999885559082","Z","2009-03-11T00:00:00Z","","0" +"TV-272","265.79998779296875","263.0199890136719","","2005-04-08T00:00:00Z","","2.7799999713897705" +"NM-13863","-7.349999904632568","-7.349999904632568","","1906-06-19T00:00:00Z","","0" +"EB-482","275","275","Z","1992-08-31T00:00:00Z","","0" +"NM-11188","67.97000122070312","67.97000122070312","","1968-01-04T00:00:00Z","","0" +"NM-03396","22.219999313354492","22.219999313354492","R","2016-07-14T00:00:00Z","","0" +"NM-00185","13","13","","1998-02-15T00:00:00Z","","0" +"NM-04975","57.5","57.5","","1948-04-06T00:00:00Z","","0" +"NM-03903","329.0400085449219","329.0400085449219","","1976-09-28T00:00:00Z","","0" +"NM-02196","20.780000686645508","20.780000686645508","","2010-01-25T00:00:00Z","","0" +"NM-07442","34.90999984741211","34.90999984741211","P","1968-05-23T00:00:00Z","","0" +"NM-09188","48.7400016784668","48.7400016784668","","1981-01-15T00:00:00Z","","0" +"NM-28252","33.70000076293945","33.70000076293945","","1996-11-25T00:00:00Z","","0" +"BC-0104","116.8499984741211","116.8499984741211","","2014-12-09T00:00:00Z","","0" +"NM-03380","","","D","2003-09-24T00:00:00Z","","0" +"NM-28022","485.7300109863281","485.7300109863281","S","2015-04-15T00:00:00Z","","0" +"NM-20485","44.720001220703125","44.720001220703125","","1982-03-18T00:00:00Z","","0" +"TO-0451","88.80000305175781","88.80000305175781","","1950-02-22T00:00:00Z","","0" +"NM-00246","21.350000381469727","21.350000381469727","","1988-02-18T00:00:00Z","","0" +"NM-06344","159.85000610351562","159.85000610351562","","1950-05-16T00:00:00Z","","0" +"NM-02752","79.6500015258789","79.6500015258789","","1977-04-27T00:00:00Z","","0" +"NM-03331","10.729999542236328","10.729999542236328","","1989-02-28T00:00:00Z","","0" +"NM-11672","172.3800048828125","172.3800048828125","S","1953-03-27T00:00:00Z","","0" +"NM-00378","41.06999969482422","41.06999969482422","","1960-01-19T00:00:00Z","","0" +"NM-05775","67.83999633789062","67.83999633789062","","1961-01-07T00:00:00Z","","0" +"NM-14982","25.399999618530273","25.399999618530273","","1976-02-11T00:00:00Z","","0" +"NM-07731","16.200000762939453","16.200000762939453","","1926-08-27T00:00:00Z","","0" +"NM-01839","3.630000114440918","3.630000114440918","","1966-12-13T00:00:00Z","","0" +"NM-11359","180.8699951171875","180.8699951171875","","1964-01-08T00:00:00Z","","0" +"NM-26743","14.5","14.5","","1986-08-19T00:00:00Z","","0" +"NM-28257","11.619999885559082","11.619999885559082","","1967-11-25T00:00:00Z","","0" +"NM-28258","129.22000122070312","129.22000122070312","","2004-04-15T00:00:00Z","","0" +"NM-07881","11.880000114440918","11.880000114440918","","1934-04-17T00:00:00Z","","0" +"NM-11486","15.029999732971191","15.029999732971191","","1958-10-09T00:00:00Z","","0" +"NM-11928","-0.550000011920929","-0.550000011920929","","1961-06-01T00:00:00Z","","0" +"BC-0135","","353.1300048828125","","2023-03-30T00:00:00Z","","1.1100000143051147" +"AB-0179","186.10000610351562","186.10000610351562","","2005-05-26T00:00:00Z","","" +"NM-01571","13.720000267028809","13.720000267028809","","2011-02-15T00:00:00Z","","0" +"NM-08646","47.970001220703125","47.970001220703125","","1961-03-24T00:00:00Z","","0" +"NM-28258","181.5500030517578","181.5500030517578","","1988-10-05T00:00:00Z","","0" +"NM-02591","","","D","1956-06-15T00:00:00Z","","0" +"NM-23176","7.909999847412109","7.909999847412109","","1974-01-22T00:00:00Z","","0" +"NM-12666","16.079999923706055","16.079999923706055","","1947-05-13T00:00:00Z","","0" +"NM-28020","465.239990234375","465.239990234375","S","2015-05-09T00:00:00Z","","0" +"DE-0111","34.869998931884766","34.869998931884766","","2007-06-11T00:00:00Z","","0" +"NM-02591","","","D","1965-03-15T00:00:00Z","","0" +"NM-00645","30.959999084472656","30.959999084472656","","1952-11-20T00:00:00Z","","0" +"NM-02169","8.130000114440918","8.130000114440918","","2001-09-20T00:00:00Z","","0" +"NM-02396","10.100000381469727","10.100000381469727","","1979-06-15T00:00:00Z","","0" +"NM-28252","27.899999618530273","27.899999618530273","","1953-04-25T00:00:00Z","","0" +"DE-0109","38.65999984741211","38.65999984741211","","2009-06-01T00:00:00Z","","0" +"NM-02873","85.7300033569336","85.7300033569336","","1985-01-09T00:00:00Z","","0" +"NM-12197","15.220000267028809","15.220000267028809","","1940-04-01T00:00:00Z","","0" +"NM-28259","72.5999984741211","72.5999984741211","","1957-01-25T00:00:00Z","","0" +"NM-17277","88.33000183105469","88.33000183105469","","1987-01-09T00:00:00Z","","0" +"NM-08627","40.5","40.5","","1971-01-18T00:00:00Z","","0" +"NM-08416","-99.18000030517578","-99.18000030517578","","1906-07-24T00:00:00Z","","0" +"NM-11279","60.54999923706055","60.54999923706055","","1963-02-21T00:00:00Z","","0" +"NM-10566","65.94000244140625","65.94000244140625","","1956-05-01T00:00:00Z","","0" +"EB-229","215.55999755859375","221.55999755859375","","1981-06-30T00:00:00Z","","-6" +"NM-16620","15.59000015258789","15.59000015258789","","1934-12-08T00:00:00Z","","0" +"NM-19955","22.3700008392334","22.3700008392334","","1953-05-29T00:00:00Z","","0" +"NM-03462","115.69999694824219","115.69999694824219","","1946-02-26T00:00:00Z","","0" +"NM-20452","193.25999450683594","193.25999450683594","","2001-02-13T00:00:00Z","","0" +"NM-10739","58.689998626708984","58.689998626708984","","1992-01-07T00:00:00Z","","0" +"NM-14802","103.04000091552734","103.04000091552734","","1971-12-23T00:00:00Z","","0" +"DE-0130","43.220001220703125","43.220001220703125","","2014-03-10T00:00:00Z","","0" +"NM-11928","0.11999999731779099","0.11999999731779099","","1955-03-15T00:00:00Z","","0" +"NM-22435","602.2999877929688","602.2999877929688","","2009-12-23T00:00:00Z","","0" +"NM-06417","54.130001068115234","54.130001068115234","","1976-01-13T00:00:00Z","","0" +"NM-04632","9.600000381469727","9.600000381469727","","1989-02-02T00:00:00Z","","0" +"SA-0184","19.729999542236328","19.149999618530273","","2010-05-04T00:00:00Z","","0.5799999833106995" +"NM-14096","-47.20000076293945","-47.20000076293945","","1911-05-19T00:00:00Z","","0" +"NM-09682","464.79998779296875","464.79998779296875","","1970-02-01T00:00:00Z","","0" +"NM-02487","7.699999809265137","7.699999809265137","","2001-05-15T00:00:00Z","","0" +"OG-0028","415.239990234375","415.239990234375","","2023-01-25T00:00:00Z","0001-01-01T16:28:00Z","0" +"AB-0083","502","502","R","1985-05-06T00:00:00Z","","0" +"NM-06037","6.230000019073486","6.230000019073486","","1998-01-21T00:00:00Z","","0" +"NM-03194","51.68000030517578","51.68000030517578","","1990-04-03T00:00:00Z","","0" +"NM-04632","8.5","8.5","","1950-05-15T00:00:00Z","","0" +"NM-06676","11.600000381469727","11.600000381469727","","1968-10-15T00:00:00Z","","0" +"NM-24610","158.63999938964844","158.63999938964844","","1975-01-16T00:00:00Z","","0" +"NM-00253","21.100000381469727","21.100000381469727","","1980-02-01T00:00:00Z","","0" +"NM-04093","125.94999694824219","125.94999694824219","","1972-11-30T00:00:00Z","","0" +"NM-19578","44.68000030517578","44.68000030517578","P","1975-12-04T00:00:00Z","","0" +"NM-00525","69.80999755859375","69.80999755859375","","1995-01-05T00:00:00Z","","0" +"NM-14535","92.69999694824219","92.69999694824219","","1981-08-05T00:00:00Z","","0" +"NM-13298","129.02999877929688","129.02999877929688","","1968-08-01T00:00:00Z","","0" +"SO-0176","8.989999771118164","8.9399995803833","","2021-08-20T00:00:00Z","0001-01-01T15:09:00Z","0.05000000074505806" +"NM-28250","105.81999969482422","105.81999969482422","","1977-12-25T00:00:00Z","","0" +"NM-11487","18.1200008392334","18.1200008392334","","1961-01-16T00:00:00Z","","0" +"SB-0891","69.7699966430664","69.7699966430664","","1956-09-12T00:00:00Z","","0" +"NM-28259","133.66000366210938","133.66000366210938","","2011-11-05T00:00:00Z","","0" +"NM-08788","47.470001220703125","47.470001220703125","","1955-09-20T00:00:00Z","","0" +"TB-0071","197.5500030517578","195.5800018310547","","2009-12-17T00:00:00Z","","1.9700000286102295" +"NM-17908","23.790000915527344","23.790000915527344","R","1951-01-11T00:00:00Z","","0" +"NM-00169","9.449999809265137","9.449999809265137","","1983-01-26T00:00:00Z","","0" +"NM-22675","6.079999923706055","6.079999923706055","Z","2009-06-03T00:00:00Z","","0" +"NM-11293","192.1199951171875","192.1199951171875","","1990-12-06T00:00:00Z","","0" +"NM-02794","40.709999084472656","40.709999084472656","","1941-12-09T00:00:00Z","","0" +"NM-02017","9","9","","1952-04-15T00:00:00Z","","0" +"NM-13368","-44.88999938964844","-44.88999938964844","","1911-05-23T00:00:00Z","","0" +"NM-22992","4","4","Z","2008-10-20T00:00:00Z","","0" +"NM-10756","55.060001373291016","55.060001373291016","","1952-09-17T00:00:00Z","","0" +"NM-10331","587.8800048828125","587.8800048828125","","1965-10-01T00:00:00Z","","0" +"NM-01955","4.400000095367432","4.400000095367432","","1986-02-01T00:00:00Z","","0" +"NM-15390","95.11000061035156","95.11000061035156","","1975-03-26T00:00:00Z","","0" +"NM-26486","122.69999694824219","122.69999694824219","","2002-06-26T00:00:00Z","","0" +"EM-0001","","","D","2016-07-21T00:00:00Z","","0.5" +"NM-25833","179.5800018310547","179.5800018310547","","1981-02-03T00:00:00Z","","0" +"DE-0062","22.8799991607666","20.799999237060547","","1998-06-16T00:00:00Z","","2.0799999237060547" +"NM-28178","55.83000183105469","55.83000183105469","","1978-01-06T00:00:00Z","","0" +"NM-28256","83.45999908447266","83.45999908447266","","1977-02-15T00:00:00Z","","0" +"NM-07881","12.130000114440918","12.130000114440918","","1938-03-20T00:00:00Z","","0" +"NM-01565","-262.2300109863281","-262.2300109863281","","1989-01-08T00:00:00Z","","0" +"NM-01244","8.270000457763672","8.270000457763672","","1992-12-15T00:00:00Z","","0" +"NM-02615","3.109999895095825","3.109999895095825","","1973-04-27T00:00:00Z","","0" +"NM-02392","279.0199890136719","279.0199890136719","","1976-12-10T00:00:00Z","","0" +"NM-11388","42.02000045776367","42.02000045776367","","1935-09-17T00:00:00Z","","0" +"NM-12353","29.600000381469727","29.600000381469727","","1937-07-05T00:00:00Z","","0" +"NM-04060","36.97999954223633","36.97999954223633","","1953-06-13T00:00:00Z","","0" +"NM-24611","101.19999694824219","101.19999694824219","","1981-08-01T00:00:00Z","","0" +"NM-12750","30.690000534057617","30.690000534057617","","1947-03-25T00:00:00Z","","0" +"TV-217","279.9700012207031","279.3699951171875","","2002-03-05T00:00:00Z","","0.6000000238418579" +"NM-01863","22.75","22.75","","2014-02-13T00:00:00Z","","0" +"NM-02197","11.039999961853027","11.039999961853027","","1997-11-14T00:00:00Z","","0" +"NM-17313","59.54999923706055","59.54999923706055","","1954-11-22T00:00:00Z","","0" +"NM-15848","152.2899932861328","152.2899932861328","","1956-08-24T00:00:00Z","","0" +"NM-28259","110.4000015258789","110.4000015258789","","1972-11-05T00:00:00Z","","0" +"EB-268","","","F","1986-07-29T00:00:00Z","","" +"NM-04340","8.90999984741211","8.90999984741211","","2005-01-26T00:00:00Z","","0" +"NM-02229","154.25","154.25","","1975-01-14T00:00:00Z","","0" +"NM-04657","4.809999942779541","4.809999942779541","","1952-12-17T00:00:00Z","","0" +"AB-0122","539.3400268554688","539.3400268554688","","1997-06-20T00:00:00Z","","" +"NM-10635","30.010000228881836","30.010000228881836","","1975-08-06T00:00:00Z","","0" +"NM-09822","-47.20000076293945","-47.20000076293945","","1931-12-16T00:00:00Z","","0" +"NM-03019","104.9800033569336","104.9800033569336","","1980-01-07T00:00:00Z","","0" +"EB-245","183.85000610351562","183.85000610351562","","1986-12-15T00:00:00Z","","0" +"NM-19893","53.81999969482422","53.81999969482422","","1948-01-19T00:00:00Z","","0" +"NM-28252","41.70000076293945","41.70000076293945","","1994-08-25T00:00:00Z","","0" +"NM-28202","36.86000061035156","36.86000061035156","","1973-01-31T00:00:00Z","","0" +"NM-02287","5.78000020980835","5.78000020980835","","1994-01-28T00:00:00Z","","0" +"NM-05775","65.91000366210938","65.91000366210938","","1959-01-21T00:00:00Z","","0" +"AB-0210","172.4199981689453","172.4199981689453","","1996-11-14T00:00:00Z","","" +"WL-0090","29.20833396911621","26.82833480834961","","1992-09-24T00:00:00Z","","2.380000114440918" +"NM-01490","221.72000122070312","221.72000122070312","","2008-08-11T00:00:00Z","","0" +"NM-16394","123.95999908447266","123.95999908447266","","1963-01-02T00:00:00Z","","0" +"TB-0018","331.3999938964844","330.8999938964844","R","2010-04-18T00:00:00Z","","0.5" +"QU-154","","","D","2015-03-18T00:00:00Z","","-4.119999885559082" +"NM-28008","5.420000076293945","5.420000076293945","Z","2005-09-07T00:00:00Z","","0" +"NM-02268","78.29000091552734","78.29000091552734","","1972-01-21T00:00:00Z","","0" +"NM-28016","490.0400085449219","490.0400085449219","S","2015-05-25T00:00:00Z","","0" +"NM-27754","99.94999694824219","99.94999694824219","","1974-06-27T00:00:00Z","","0" +"NM-02669","60.04999923706055","60.04999923706055","","1998-11-05T00:00:00Z","","0" +"NM-02216","158.8000030517578","158.8000030517578","","1968-01-24T00:00:00Z","","0" +"NM-27311","355.8399963378906","355.8399963378906","","1995-02-22T00:00:00Z","","0" +"NM-05347","10.899999618530273","10.899999618530273","","1959-01-15T00:00:00Z","","0" +"NM-17371","39.70000076293945","39.70000076293945","","1944-08-07T00:00:00Z","","0" +"NM-07053","231.9199981689453","231.9199981689453","","1978-01-30T00:00:00Z","","0" +"NM-09642","66","66","","1954-12-02T00:00:00Z","","0" +"EB-266","15.220000267028809","15.220000267028809","","2002-04-24T00:00:00Z","","0" +"NM-20657","81.95999908447266","81.95999908447266","","1997-03-17T00:00:00Z","","0" +"NM-06401","15.5","15.5","","1968-01-28T00:00:00Z","","0" +"NM-14535","85.04000091552734","85.04000091552734","","1982-02-15T00:00:00Z","","0" +"NM-12412","-35.650001525878906","-35.650001525878906","","1910-06-02T00:00:00Z","","0" +"NM-17562","23.43000030517578","23.43000030517578","","1948-05-28T00:00:00Z","","0" +"DE-0091","90.18000030517578","90.18000030517578","","1999-12-14T00:00:00Z","","0" +"NM-02198","9.5","9.5","","2001-07-27T00:00:00Z","","0" +"NM-00378","53.060001373291016","53.060001373291016","","1977-01-07T00:00:00Z","","0" +"NM-00585","43.849998474121094","43.849998474121094","","1984-01-04T00:00:00Z","","0" +"NM-02162","119.0199966430664","119.0199966430664","","1980-01-03T00:00:00Z","","0" +"DE-0131","31.219999313354492","31.219999313354492","","2006-01-04T00:00:00Z","","0" +"NM-27720","50.97999954223633","50.97999954223633","","1950-05-25T00:00:00Z","","0" +"NM-07000","98.44999694824219","98.44999694824219","","1964-01-08T00:00:00Z","","0" +"NM-02035","104.91999816894531","104.91999816894531","","2009-01-29T00:00:00Z","","0" +"NM-02005","","","D","2014-01-16T00:00:00Z","","0" +"NM-16587","12.239999771118164","12.239999771118164","","1940-01-29T00:00:00Z","","0" +"NM-26614","647.6799926757812","646.6300048828125","AA","2023-08-23T00:00:00Z","0001-01-01T08:45:00Z","1.0499999523162842" +"EB-483","597.5399780273438","597.5399780273438","P","2006-11-30T00:00:00Z","","0" +"NM-14146","104.13999938964844","104.13999938964844","R","1970-07-24T00:00:00Z","","0" +"SB-0299","131.8000030517578","131.8000030517578","","1971-08-30T00:00:00Z","","0" +"NM-01806","308.6199951171875","308.6199951171875","","2002-02-21T00:00:00Z","","0" +"QY-0708","38.599998474121094","38.599998474121094","","1945-11-30T00:00:00Z","","0" +"NM-10696","119.27999877929688","119.27999877929688","","1958-10-09T00:00:00Z","","0" +"NM-02004","6.300000190734863","6.300000190734863","","1962-08-15T00:00:00Z","","0" +"NM-03434","45.83000183105469","45.83000183105469","","2004-04-21T00:00:00Z","","0" +"NM-02004","5.900000095367432","5.900000095367432","","1975-04-15T00:00:00Z","","0" +"NM-12615","18.700000762939453","18.700000762939453","","1986-02-14T00:00:00Z","","0" +"NM-24217","16.40999984741211","16.40999984741211","","2012-11-02T00:00:00Z","","0" +"NM-01638","8.479999542236328","8.479999542236328","","2012-02-02T00:00:00Z","","0" +"NM-03197","333.20001220703125","333.20001220703125","","1974-01-03T00:00:00Z","","0" +"NM-01907","55.400001525878906","55.400001525878906","","1992-02-06T00:00:00Z","","0" +"NM-07525","71.87999725341797","71.87999725341797","","1996-03-14T00:00:00Z","","0" +"TO-0128","99.5","99.5","R","1950-06-08T00:00:00Z","","0" +"NM-11488","24.670000076293945","24.670000076293945","","1958-03-07T00:00:00Z","","0" +"NM-17316","24.520000457763672","24.520000457763672","","1937-01-10T00:00:00Z","","0" +"DE-0303","40.93000030517578","40.93000030517578","","2012-01-23T00:00:00Z","","0" +"SA-0061","24.600000381469727","24.14000129699707","","2015-02-12T00:00:00Z","","0.46000000834465027" +"DE-0106","45.279998779296875","45.279998779296875","","2016-07-27T00:00:00Z","","0" +"NM-02831","45.5","45.5","","2004-09-15T00:00:00Z","","0" +"NM-02165","9.6899995803833","9.6899995803833","","2013-08-05T00:00:00Z","","0" +"NM-11795","36.97999954223633","36.97999954223633","","1933-06-06T00:00:00Z","","0" +"NM-01756","45.31999969482422","45.31999969482422","","1976-02-06T00:00:00Z","","0" +"NM-02992","109.62000274658203","109.62000274658203","","1993-01-04T00:00:00Z","","0" +"NM-00647","42.81999969482422","42.81999969482422","","1949-01-21T00:00:00Z","","0" +"NM-03473","23.809999465942383","23.809999465942383","","1998-08-03T00:00:00Z","","0" +"NM-00094","1.7000000476837158","1.7000000476837158","","1965-03-01T00:00:00Z","","0" +"NM-02165","9.329999923706055","9.329999923706055","","2005-12-22T00:00:00Z","","0" +"NM-06110","17.649999618530273","17.649999618530273","","1973-10-31T00:00:00Z","","0" +"NM-02282","397.8399963378906","397.8399963378906","","1970-03-01T00:00:00Z","","0" +"NM-00367","131.75999450683594","131.75999450683594","","1999-11-05T00:00:00Z","","0" +"WL-0137","87.68000030517578","85.58000183105469","","2020-10-15T00:00:00Z","0001-01-01T14:23:00Z","2.0999999046325684" +"NM-02560","99.75","99.75","","1962-04-01T00:00:00Z","","0" +"NM-02307","166.7899932861328","166.7899932861328","","2013-01-21T00:00:00Z","","0" +"NM-03281","88.2699966430664","88.2699966430664","","1992-02-06T00:00:00Z","","0" +"NM-12197","17.209999084472656","17.209999084472656","","1941-06-10T00:00:00Z","","0" +"NM-28251","73.93000030517578","73.93000030517578","","2004-09-03T00:00:00Z","","0" +"NM-11672","186.00999450683594","186.00999450683594","","1958-07-24T00:00:00Z","","0" +"NM-14671","37.83000183105469","37.83000183105469","","1977-04-26T00:00:00Z","","0" +"NM-13834","-14.859999656677246","-14.859999656677246","","1906-03-06T00:00:00Z","","0" +"NM-17690","6.449999809265137","6.449999809265137","","1984-03-13T00:00:00Z","","0" +"NM-10470","-54.130001068115234","-54.130001068115234","","1906-07-14T00:00:00Z","","0" +"NM-28259","143.2899932861328","143.2899932861328","","1959-09-25T00:00:00Z","","0" +"NM-27822","12.779999732971191","12.779999732971191","","1964-07-09T00:00:00Z","","0" +"NM-04404","90.33999633789062","90.33999633789062","","1952-01-29T00:00:00Z","","0" +"NM-01952","335.7200012207031","335.7200012207031","","1997-01-29T00:00:00Z","","0" +"NM-12285","-31.030000686645508","-31.030000686645508","","1909-09-28T00:00:00Z","","0" +"NM-08146","46","46","","1954-01-01T00:00:00Z","","0" +"NM-13771","-8.800000190734863","-8.800000190734863","","1912-06-04T00:00:00Z","","0" +"NM-02711","63.25","63.25","","1958-08-27T00:00:00Z","","0" +"NM-24711","248.77999877929688","248.77999877929688","","1980-08-13T00:00:00Z","","0" +"NM-20103","14.289999961853027","14.289999961853027","","1946-02-20T00:00:00Z","","0" +"NM-21624","378.80999755859375","378.80999755859375","","1992-04-07T00:00:00Z","","0" +"NM-17200","4.110000133514404","4.110000133514404","","1935-08-12T00:00:00Z","","0" +"NM-02484","33.310001373291016","33.310001373291016","","1996-09-20T00:00:00Z","","0" +"NM-02710","29.25","29.25","","1979-01-01T00:00:00Z","","0" +"NM-02209","105.68000030517578","105.68000030517578","","1993-04-21T00:00:00Z","","0" +"NM-12161","142.72999572753906","142.72999572753906","","1964-02-14T00:00:00Z","","0" +"NM-04288","38.59000015258789","38.59000015258789","R","1968-02-22T00:00:00Z","","0" +"NM-14705","54.02000045776367","54.02000045776367","","1950-07-11T00:00:00Z","","0" +"NM-01847","8.710000038146973","8.710000038146973","","1994-01-13T00:00:00Z","","0" +"NM-10125","18.469999313354492","18.469999313354492","","1960-01-22T00:00:00Z","","0" +"NM-02349","13.899999618530273","13.899999618530273","","1987-02-01T00:00:00Z","","0" +"NM-01565","-264.7699890136719","-264.7699890136719","","1988-05-02T00:00:00Z","","0" +"NM-16659","81.33000183105469","81.33000183105469","","1987-01-07T00:00:00Z","","0" +"NM-16862","31.469999313354492","31.469999313354492","","1966-01-05T00:00:00Z","","0" +"NM-11539","46.75","46.75","","1957-01-11T00:00:00Z","","0" +"NM-28253","14.34000015258789","14.34000015258789","","2001-05-04T00:00:00Z","","0" +"NM-02286","9.970000267028809","9.970000267028809","","2004-11-23T00:00:00Z","","0" +"AB-0050","565.8200073242188","565.8200073242188","","1993-04-05T00:00:00Z","","" +"NM-01007","368.489990234375","368.489990234375","","1993-01-06T00:00:00Z","","0" +"NM-02207","12","12","","1983-09-15T00:00:00Z","","0" +"EB-019","45.849998474121094","44.849998474121094","","2011-10-05T00:00:00Z","","1" +"NM-28008","5.96999979019165","5.96999979019165","Z","2005-11-29T00:00:00Z","","0" +"NM-02456","54.31999969482422","54.31999969482422","","1966-01-24T00:00:00Z","","0" +"NM-02256","7.199999809265137","7.199999809265137","","1961-02-15T00:00:00Z","","0" +"NM-23934","74.05999755859375","74.05999755859375","R","1965-09-28T00:00:00Z","","0" +"BC-0170","304.7300109863281","304.7300109863281","","2020-05-03T00:00:00Z","","0" +"NM-09961","55.599998474121094","55.599998474121094","","1961-03-29T00:00:00Z","","0" +"NM-06527","154.8800048828125","154.8800048828125","","1990-09-18T00:00:00Z","","0" +"DE-0083","90.19999694824219","90.19999694824219","","2014-04-29T00:00:00Z","","0" +"NM-08325","4.96999979019165","4.96999979019165","","1994-03-15T00:00:00Z","","0" +"NM-05661","85.22000122070312","85.22000122070312","","1953-01-15T00:00:00Z","","0" +"NM-04571","98.5999984741211","98.5999984741211","","1959-03-24T00:00:00Z","","0" +"NM-28259","102.47000122070312","102.47000122070312","","1978-12-05T00:00:00Z","","0" +"SB-0299","126.69000244140625","126.69000244140625","","2005-03-25T00:00:00Z","","0" +"NM-14089","-9.65999984741211","-9.65999984741211","P","1909-06-06T00:00:00Z","","0" +"NM-01412","90.55999755859375","90.55999755859375","","1999-02-23T00:00:00Z","","0" +"NM-19163","28.06999969482422","28.06999969482422","","1970-02-10T00:00:00Z","","0" +"NM-25599","9.0600004196167","9.0600004196167","","1987-02-11T00:00:00Z","","0" +"NM-14348","21.979999542236328","21.979999542236328","","1961-05-10T00:00:00Z","","0" +"NM-21875","6.409999847412109","6.409999847412109","Z","2006-08-17T00:00:00Z","","0" +"NM-02622","169.82000732421875","169.82000732421875","","1978-01-04T00:00:00Z","","0" +"SO-0264","","","D","2021-01-06T00:00:00Z","0001-01-01T13:24:00Z","1.149999976158142" +"NM-17394","39.11000061035156","39.11000061035156","R","1949-07-30T00:00:00Z","","0" +"NM-14006","221.22000122070312","221.22000122070312","","1959-09-15T00:00:00Z","","0" +"NM-19090","381.54998779296875","381.54998779296875","","1982-03-03T00:00:00Z","","0" +"AB-0068","150.6999969482422","150.6999969482422","","1996-08-15T00:00:00Z","","" +"AB-0213","155.02999877929688","155.02999877929688","","1996-12-12T00:00:00Z","","" +"NM-02164","16.31999969482422","16.31999969482422","","2002-01-16T00:00:00Z","","0" +"NM-02207","19","19","","1958-04-15T00:00:00Z","","0" +"NM-09481","400.7200012207031","400.7200012207031","","1994-02-17T00:00:00Z","","0" +"QY-0051","15.399999618530273","15.399999618530273","","1955-05-17T00:00:00Z","","0" +"NM-13827","-51.81999969482422","-51.81999969482422","","1907-12-05T00:00:00Z","","0" +"EB-012","150.89999389648438","150.89999389648438","","1973-05-17T00:00:00Z","","0" +"NM-17257","23.260000228881836","23.260000228881836","","1935-01-10T00:00:00Z","","0" +"NM-12407","52.70000076293945","52.70000076293945","","1986-02-19T00:00:00Z","","0" +"NM-15639","51.88999938964844","51.88999938964844","","1965-05-13T00:00:00Z","","0" +"NM-06914","65.52999877929688","65.52999877929688","","2005-07-27T00:00:00Z","","0" +"WL-0086","56.04166793823242","54.28166961669922","","1998-01-13T00:00:00Z","","1.7599999904632568" +"NM-27348","133.8000030517578","133.8000030517578","","1983-01-12T00:00:00Z","","0" +"DE-0244","100.9800033569336","100.9800033569336","","2012-02-13T00:00:00Z","","0" +"EB-220","127.19999694824219","127.19999694824219","","1979-10-31T00:00:00Z","","0" +"NM-27518","86.3499984741211","86.3499984741211","","2011-04-22T00:00:00Z","","0" +"NM-25617","70.4800033569336","70.4800033569336","","1991-01-31T00:00:00Z","","0" +"NM-21308","22.5","22.5","","1962-07-17T00:00:00Z","","0" +"AB-0134","542.6900024414062","542.6900024414062","","2006-03-27T00:00:00Z","","" +"NM-22981","12.890000343322754","12.890000343322754","Z","2007-11-07T00:00:00Z","","0" +"NM-17424","56.29999923706055","56.29999923706055","","1940-01-23T00:00:00Z","","0" +"NM-28254","123.0999984741211","123.0999984741211","","2000-07-15T00:00:00Z","","0" +"NM-06542","69.19999694824219","69.19999694824219","","1965-10-26T00:00:00Z","","0" +"NM-10945","-27.56999969482422","-27.56999969482422","","1908-03-20T00:00:00Z","","0" +"SA-0046","169.52000427246094","169.02000427246094","","2022-02-22T00:00:00Z","0001-01-01T15:30:00Z","0.5" +"NM-00915","206.27999877929688","206.27999877929688","","1986-01-09T00:00:00Z","","0" +"NM-02242","75.37000274658203","75.37000274658203","R","1971-01-26T00:00:00Z","","0" +"NM-02147","123.05999755859375","123.05999755859375","","1961-01-11T00:00:00Z","","0" +"NM-00727","32.83000183105469","32.83000183105469","","1984-01-04T00:00:00Z","","0" +"NM-02207","","","D","1955-09-15T00:00:00Z","","0" +"DE-0194","50.08000183105469","50.08000183105469","","2016-05-25T00:00:00Z","","0" +"NM-14802","104.06999969482422","104.06999969482422","","1978-02-01T00:00:00Z","","0" +"NM-02702","-19.969999313354492","-19.969999313354492","","1991-10-10T00:00:00Z","","0" +"NM-07023","56.95000076293945","56.95000076293945","","1960-01-15T00:00:00Z","","0" +"NM-11188","72.31999969482422","72.31999969482422","","1984-01-04T00:00:00Z","","0" +"MI-0294","15","15","","1950-12-31T00:00:00Z","","0" +"NM-03820","87.26000213623047","87.26000213623047","","1960-01-27T00:00:00Z","","0" +"NM-05516","10.699999809265137","10.699999809265137","","1975-01-15T00:00:00Z","","0" +"NM-13983","-14.279999732971191","-14.279999732971191","","1907-03-07T00:00:00Z","","0" +"NM-09268","135.77999877929688","135.77999877929688","","1952-01-08T00:00:00Z","","0" +"NM-09730","32.54999923706055","32.54999923706055","","1960-01-22T00:00:00Z","","0" +"EM-0006","","","D","2015-02-14T00:00:00Z","","0.800000011920929" +"NM-28259","106.04000091552734","106.04000091552734","","1990-04-05T00:00:00Z","","0" +"NM-06440","86.9000015258789","86.9000015258789","","1948-12-18T00:00:00Z","","0" +"NM-01277","150.25","150.25","","1957-02-13T00:00:00Z","","0" +"NM-27281","24.829999923706055","24.829999923706055","","1948-12-21T00:00:00Z","","0" +"NM-15572","111.44000244140625","111.44000244140625","","1975-03-07T00:00:00Z","","0" +"NM-02208","18","18","","2007-02-01T00:00:00Z","","0" +"NM-17598","159.17999267578125","159.17999267578125","","1995-03-29T00:00:00Z","","0" +"NM-19296","333.8500061035156","333.8500061035156","","1973-01-03T00:00:00Z","","0" +"NM-09787","17.889999389648438","17.889999389648438","","1952-01-09T00:00:00Z","","0" +"NM-02282","399.17999267578125","399.17999267578125","","1984-11-01T00:00:00Z","","0" +"NM-21843","217.1199951171875","217.1199951171875","","2009-04-17T00:00:00Z","","0" +"NM-03396","15.720000267028809","15.720000267028809","Z","2000-02-04T00:00:00Z","","0" +"NM-25855","93","93","","1963-09-30T00:00:00Z","","0" +"NM-01279","79.69999694824219","79.69999694824219","","1974-01-15T00:00:00Z","","0" +"NM-28258","190.35000610351562","190.35000610351562","","2017-09-05T00:00:00Z","","0" +"SV-0074","298.70001220703125","297.1166687011719","","2015-10-29T00:00:00Z","","1.5833333730697632" +"NM-28255","49.90999984741211","49.90999984741211","","2013-03-05T00:00:00Z","","0" +"NM-01890","51.900001525878906","51.900001525878906","","2002-07-25T00:00:00Z","","0" +"NM-01109","106.72000122070312","106.72000122070312","","1972-02-18T00:00:00Z","","0" +"SB-0426","114.97000122070312","114.97000122070312","","1972-12-20T00:00:00Z","","0" +"WL-0021","34.290000915527344","33.59000015258789","","2009-02-01T00:00:00Z","","0.699999988079071" +"NM-00781","30.09000015258789","30.09000015258789","","1964-01-08T00:00:00Z","","0" +"UC-0037","179","179","","1955-01-01T00:00:00Z","","0" +"NM-28252","53.25","53.25","","1986-06-25T00:00:00Z","","0" +"NM-07069","117.13999938964844","117.13999938964844","","1965-11-16T00:00:00Z","","0" +"NM-14293","5.670000076293945","5.670000076293945","","1963-09-04T00:00:00Z","","0" +"SM-0031","220.8800048828125","220.19000244140625","","2007-06-11T00:00:00Z","","0.6899999976158142" +"NM-21545","12.800000190734863","12.800000190734863","Z","2004-12-20T00:00:00Z","","0" +"NM-09473","26.440000534057617","26.440000534057617","","1954-08-02T00:00:00Z","","0" +"NM-02845","100.55000305175781","100.55000305175781","","1996-03-21T00:00:00Z","","0" +"NM-07160","81.05000305175781","81.05000305175781","","2005-10-05T00:00:00Z","","0" +"UC-0127","224.9600067138672","224.9600067138672","","2011-02-10T00:00:00Z","","0" +"NM-11780","38.810001373291016","38.810001373291016","","1939-02-03T00:00:00Z","","0" +"NM-28016","494.30999755859375","494.30999755859375","S","2015-06-05T00:00:00Z","","0" +"NM-01926","6.5","6.5","","1982-11-15T00:00:00Z","","0" +"NM-05977","92.44999694824219","92.44999694824219","","1939-01-12T00:00:00Z","","0" +"BC-0225","29.719999313354492","29.719999313354492","","2016-06-02T00:00:00Z","","0" +"NM-28259","153.4600067138672","153.4600067138672","","1972-06-25T00:00:00Z","","0" +"SB-0299","138.6199951171875","138.6199951171875","","1981-05-20T00:00:00Z","","0" +"NM-11279","60.130001068115234","60.130001068115234","","1960-03-21T00:00:00Z","","0" +"NM-03032","44.959999084472656","44.959999084472656","","1958-03-21T00:00:00Z","","0" +"NM-13588","-18.329999923706055","-18.329999923706055","","1910-10-03T00:00:00Z","","0" +"NM-27309","272.1600036621094","272.1600036621094","","1996-08-27T00:00:00Z","","0" +"NM-16681","29.739999771118164","29.739999771118164","","1932-07-30T00:00:00Z","","0" +"NM-13846","-7.639999866485596","-7.639999866485596","","1907-09-13T00:00:00Z","","0" +"NM-06268","10.5","10.5","","1987-08-15T00:00:00Z","","0" +"NM-23336","112.80999755859375","112.80999755859375","P","1948-08-04T00:00:00Z","","0" +"NM-07868","17.170000076293945","17.170000076293945","","1966-02-07T00:00:00Z","","0" +"NM-23607","13","13","","1986-02-17T00:00:00Z","","0" +"MI-0143","59.79999923706055","59.79999923706055","","1947-10-01T00:00:00Z","","0" +"NM-21589","3.7699999809265137","3.7699999809265137","Z","2007-08-13T00:00:00Z","","0" +"NM-03695","227.8300018310547","227.8300018310547","","1977-01-20T00:00:00Z","","0" +"NM-04584","39.040000915527344","39.040000915527344","","1962-05-28T00:00:00Z","","0" +"NM-20997","21.8700008392334","21.8700008392334","","1957-02-06T00:00:00Z","","0" +"NM-17041","21.770000457763672","21.770000457763672","","1944-09-24T00:00:00Z","","0" +"NM-19709","289.4100036621094","289.4100036621094","","1969-02-06T00:00:00Z","","0" +"NM-01358","75.83999633789062","75.83999633789062","","1988-01-27T00:00:00Z","","0" +"NM-28253","27.950000762939453","27.950000762939453","","1960-06-05T00:00:00Z","","0" +"NM-08265","36.220001220703125","36.220001220703125","","1957-01-03T00:00:00Z","","0" +"NM-04723","64.25","64.25","P","1940-01-10T00:00:00Z","","0" +"NM-26434","19.6299991607666","19.6299991607666","","1988-09-22T00:00:00Z","","0" +"QY-0219","65.80000305175781","65.80000305175781","","1953-04-02T00:00:00Z","","0" +"NM-14325","59.93000030517578","59.93000030517578","","1979-03-09T00:00:00Z","","0" +"NM-01885","20.43000030517578","20.43000030517578","","2010-07-15T00:00:00Z","","0" +"BC-0039","300.6499938964844","300.6499938964844","","2020-04-28T00:00:00Z","","0" +"NM-07888","658.5999755859375","658.5999755859375","","1975-05-27T00:00:00Z","","0" +"NM-28257","66.04000091552734","66.04000091552734","","1956-05-25T00:00:00Z","","0" +"NM-05975","40.599998474121094","40.599998474121094","","1992-10-23T00:00:00Z","","0" +"NM-01986","6.800000190734863","6.800000190734863","","1959-10-15T00:00:00Z","","0" +"UC-0001","206.89999389648438","206.89999389648438","","2008-02-19T00:00:00Z","","0" +"NM-17716","4.739999771118164","4.739999771118164","","1946-09-11T00:00:00Z","","0" +"NM-11323","4.369999885559082","4.369999885559082","","1981-05-27T00:00:00Z","","0" +"UC-0132","86.38999938964844","86.38999938964844","","2014-03-25T00:00:00Z","","0" +"NM-17716","0.8999999761581421","0.8999999761581421","","1943-12-28T00:00:00Z","","0" +"NM-14115","66.19999694824219","66.19999694824219","","1959-11-24T00:00:00Z","","0" +"NM-02239","39.58000183105469","39.58000183105469","","1993-02-03T00:00:00Z","","0" +"NM-09785","85.19999694824219","85.19999694824219","","1942-01-14T00:00:00Z","","0" +"OG-0096","368.6600036621094","368.3600158691406","AA","2023-01-25T00:00:00Z","0001-01-01T15:19:00Z","0.30000001192092896" +"NM-14347","43.04999923706055","43.04999923706055","R","1970-08-31T00:00:00Z","","0" +"NM-12607","45.939998626708984","45.939998626708984","","1939-11-08T00:00:00Z","","0" +"QU-011","61.380001068115234","60.56999969482422","","2012-06-22T00:00:00Z","","0.8100000023841858" +"NM-12764","22.40999984741211","22.40999984741211","","1986-01-30T00:00:00Z","","0" +"EB-261","10.100000381469727","8.300000190734863","","2009-11-05T00:00:00Z","","1.7999999523162842" +"BC-0283","","94.19999694824219","","2020-07-31T00:00:00Z","","1.75" +"NM-12600","59.08000183105469","59.08000183105469","","1938-11-21T00:00:00Z","","0" +"NM-00506","74.5","74.5","","1989-01-05T00:00:00Z","","0" +"NM-06676","11.399999618530273","11.399999618530273","","1974-02-15T00:00:00Z","","0" +"SM-0130","28.459999084472656","28.459999084472656","","1993-08-25T00:00:00Z","","0" +"NM-22390","51.20000076293945","51.20000076293945","","1983-03-03T00:00:00Z","","0" +"NM-06087","17.1299991607666","17.1299991607666","","1977-01-27T00:00:00Z","","0" +"AB-0069","154.2899932861328","154.2899932861328","","2012-05-24T00:00:00Z","","" +"NM-11445","67.11000061035156","67.11000061035156","","1958-01-10T00:00:00Z","","0" +"EB-487","352.20001220703125","348.70001220703125","Z","2004-10-31T00:00:00Z","","3.5" +"NM-21374","229.50999450683594","229.50999450683594","","1987-03-01T00:00:00Z","","0" +"BC-0031","219.77000427246094","219.77000427246094","","2012-06-12T00:00:00Z","","0" +"NM-01869","79.29000091552734","79.29000091552734","","1997-01-22T00:00:00Z","","0" +"NM-09373","-109.56999969482422","-109.56999969482422","","1909-11-09T00:00:00Z","","0" +"NM-02721","46.06999969482422","46.06999969482422","","2008-02-07T00:00:00Z","","0" +"NM-28251","76.62999725341797","76.62999725341797","","2009-09-15T00:00:00Z","","0" +"NM-08217","88.88999938964844","88.88999938964844","","1963-01-07T00:00:00Z","","0" +"NM-02169","6.400000095367432","6.400000095367432","R","1984-12-06T00:00:00Z","","0" +"NM-13588","-30.450000762939453","-30.450000762939453","","1907-09-18T00:00:00Z","","0" +"BC-0225","27.389999389648438","27.389999389648438","","2020-04-26T00:00:00Z","","0" +"NM-03170","72.63999938964844","72.63999938964844","","1990-04-11T00:00:00Z","","0" +"NM-07290","145.52000427246094","145.52000427246094","","1982-02-08T00:00:00Z","","0" +"NM-01770","58.5099983215332","58.5099983215332","P","1953-05-12T00:00:00Z","","0" +"NM-27291","18.850000381469727","18.850000381469727","","1983-01-19T00:00:00Z","","0" +"NM-17753","39.369998931884766","39.369998931884766","","1997-03-19T00:00:00Z","","0" +"AB-0038","356.6099853515625","356.6099853515625","","1998-08-12T00:00:00Z","","" +"NM-24521","18.510000228881836","18.510000228881836","","1988-01-08T00:00:00Z","","0" +"NM-17127","29.950000762939453","29.950000762939453","","1942-09-25T00:00:00Z","","0" +"NM-11442","93.43000030517578","93.43000030517578","","1955-01-25T00:00:00Z","","0" +"NM-01823","327","327","","1991-01-03T00:00:00Z","","0" +"NM-00686","60.150001525878906","60.150001525878906","","2000-08-02T00:00:00Z","","0" +"NM-01894","91.52999877929688","91.52999877929688","","1991-11-01T00:00:00Z","","0" +"NM-00645","29.780000686645508","29.780000686645508","","1950-01-15T00:00:00Z","","0" +"NM-11926","40.7599983215332","40.7599983215332","","1946-01-30T00:00:00Z","","0" +"NM-02702","-27.329999923706055","-27.329999923706055","","1995-11-30T00:00:00Z","","0" +"NM-00643","101.30000305175781","101.30000305175781","Z","1997-12-22T00:00:00Z","","0" +"NM-28254","22.399999618530273","22.399999618530273","","1999-11-15T00:00:00Z","","0" +"NM-27728","73.13999938964844","73.13999938964844","","1964-01-24T00:00:00Z","","0" +"NM-05762","58.81999969482422","58.81999969482422","","1958-08-05T00:00:00Z","","0" +"NM-17693","6.96999979019165","6.96999979019165","","1985-04-23T00:00:00Z","","0" +"NM-28259","108.95999908447266","108.95999908447266","","2017-03-15T00:00:00Z","","0" +"NM-22091","20.649999618530273","20.649999618530273","","1960-08-02T00:00:00Z","","0" +"NM-03845","6.110000133514404","6.110000133514404","","2011-03-02T00:00:00Z","","0" +"NM-18769","29.1200008392334","29.1200008392334","","1972-02-14T00:00:00Z","","0" +"NM-11624","85.58000183105469","85.58000183105469","","1993-01-06T00:00:00Z","","0" +"NM-23391","251.5","251.5","","1947-12-11T00:00:00Z","","0" +"NM-17402","23.68000030517578","23.68000030517578","","1990-04-26T00:00:00Z","","0" +"NM-13225","165.8800048828125","165.8800048828125","","1956-01-11T00:00:00Z","","0" +"NM-17665","75.79000091552734","75.79000091552734","","1949-01-05T00:00:00Z","","0" +"NM-28252","65.9800033569336","65.9800033569336","","1975-08-05T00:00:00Z","","0" +"NM-01048","275.8599853515625","275.8599853515625","","1972-01-25T00:00:00Z","","0" +"NM-02006","7.599999904632568","7.599999904632568","","1991-11-15T00:00:00Z","","0" +"NM-00489","52.56999969482422","52.56999969482422","","1971-02-12T00:00:00Z","","0" +"NM-10942","43.34000015258789","43.34000015258789","","1956-01-30T00:00:00Z","","0" +"NM-10044","7.050000190734863","7.050000190734863","","1978-05-24T00:00:00Z","","0" +"NM-03065","228.42999267578125","228.42999267578125","","1987-01-13T00:00:00Z","","0" +"NM-17716","2.309999942779541","2.309999942779541","","1944-09-24T00:00:00Z","","0" +"NM-02207","7.5","7.5","","1949-05-15T00:00:00Z","","0" +"SO-0188","9.0600004196167","8.25","","2017-05-02T00:00:00Z","0001-01-01T14:19:00Z","0.8100000023841858" +"NM-14115","66.55000305175781","66.55000305175781","","1959-01-14T00:00:00Z","","0" +"NM-22913","50.5099983215332","50.5099983215332","R","1991-02-14T00:00:00Z","","0" +"TV-124","138.86000061035156","136.97999572753906","","2011-12-13T00:00:00Z","","1.8799999952316284" +"EB-373","116.3499984741211","115.75","","2020-05-19T00:00:00Z","0001-01-01T12:00:00Z","0.6000000238418579" +"BC-0156","180.10000610351562","180.10000610351562","","2002-05-17T00:00:00Z","","0" +"NM-02809","30.110000610351562","30.110000610351562","","1958-07-25T00:00:00Z","","0" +"TB-0131","55.04999923706055","55.04999923706055","R","2010-10-15T00:00:00Z","","0" +"NM-26459","39.43000030517578","39.43000030517578","","1988-01-14T00:00:00Z","","0" +"NM-03893","153.63999938964844","153.63999938964844","","1975-01-17T00:00:00Z","","0" +"NM-13749","3","3","","1915-02-15T00:00:00Z","","0" +"NM-00253","22.469999313354492","22.469999313354492","","1989-05-22T00:00:00Z","","0" +"NM-28250","104.86000061035156","104.86000061035156","","1973-12-15T00:00:00Z","","0" +"NM-03387","44.08000183105469","44.08000183105469","Z","1996-09-26T00:00:00Z","","0" +"NM-07327","21.84000015258789","21.84000015258789","","1971-12-07T00:00:00Z","","0" +"NM-06131","403.6000061035156","403.6000061035156","","1966-01-06T00:00:00Z","","0" +"BC-0136","","169.9499969482422","","2021-10-30T00:00:00Z","","1.559999942779541" +"AB-0143","257","257","","1982-06-01T00:00:00Z","","0" +"NM-02512","21.540000915527344","21.540000915527344","","2014-03-11T00:00:00Z","","0" +"NM-01707","22.079999923706055","22.079999923706055","","2012-10-10T00:00:00Z","","0" +"NM-00329","14.850000381469727","14.850000381469727","","1975-01-08T00:00:00Z","","0" +"NM-22529","254.32000732421875","254.32000732421875","","1958-11-20T00:00:00Z","","0" +"DE-0310","46.540000915527344","46.540000915527344","","2014-09-22T00:00:00Z","","0" +"BC-0181","414.30999755859375","414.30999755859375","","2017-01-31T00:00:00Z","","0" +"NM-00084","90.86000061035156","90.86000061035156","","1953-12-15T00:00:00Z","","0" +"NM-11730","133.60000610351562","133.60000610351562","","1956-01-26T00:00:00Z","","0" +"NM-00303","43.630001068115234","43.630001068115234","","2013-01-31T00:00:00Z","","0" +"NM-02004","9.899999618530273","9.899999618530273","","2001-12-15T00:00:00Z","","0" +"NM-05420","16.450000762939453","16.450000762939453","","1952-11-11T00:00:00Z","","0" +"NM-12729","107.4000015258789","107.4000015258789","","1984-01-30T00:00:00Z","","0" +"NM-02287","4.679999828338623","4.679999828338623","","2012-08-15T00:00:00Z","","0" +"SA-0179","157.5","156.35000610351562","","2010-05-04T00:00:00Z","","1.149999976158142" +"NM-08217","84","84","","1948-10-01T00:00:00Z","","0" +"NM-16990","13.430000305175781","13.430000305175781","","1952-05-26T00:00:00Z","","0" +"NM-05672","144.52999877929688","144.52999877929688","","1964-01-15T00:00:00Z","","0" +"NM-02017","5.199999809265137","5.199999809265137","","1997-07-15T00:00:00Z","","0" +"NM-05080","73.37999725341797","73.37999725341797","","1947-03-21T00:00:00Z","","0" +"NM-07926","118.19999694824219","118.19999694824219","","1947-06-25T00:00:00Z","","0" +"NM-17716","2.3299999237060547","2.3299999237060547","","1943-09-05T00:00:00Z","","0" +"WL-0088","46.125","43.525001525878906","","1996-12-05T00:00:00Z","","2.5999999046325684" +"SB-0289","108.3499984741211","108.3499984741211","","1979-01-24T00:00:00Z","","0" +"NM-12748","44.349998474121094","44.349998474121094","","1937-08-12T00:00:00Z","","0" +"NM-10566","108.48999786376953","108.48999786376953","","1955-04-01T00:00:00Z","","0" +"NM-02019","101.98999786376953","101.98999786376953","","1960-11-09T00:00:00Z","","0" +"NM-17716","5.53000020980835","5.53000020980835","","1949-03-26T00:00:00Z","","0" +"NM-01868","9.300000190734863","9.300000190734863","","1963-04-15T00:00:00Z","","0" +"NM-03297","45.939998626708984","45.939998626708984","","1950-02-10T00:00:00Z","","0" +"ED-0105","35.79999923706055","35.79999923706055","","1949-05-23T00:00:00Z","","0" +"NM-02758","315.8999938964844","315.8999938964844","","1983-09-22T00:00:00Z","","0" +"BC-0201","","110.29000091552734","","2021-10-30T00:00:00Z","","-0.4000000059604645" +"NM-11184","58.29999923706055","58.29999923706055","","1960-01-19T00:00:00Z","","0" +"NM-04668","150.60000610351562","150.60000610351562","","1982-01-29T00:00:00Z","","0" +"EB-012","417.17999267578125","417.17999267578125","","1970-05-04T00:00:00Z","","0" +"NM-00498","55.369998931884766","55.369998931884766","Z","2007-06-06T00:00:00Z","","0" +"NM-13838","-6.78000020980835","-6.78000020980835","","1906-09-06T00:00:00Z","","0" +"NM-19787","132.88999938964844","132.88999938964844","","2012-06-05T00:00:00Z","","0" +"EB-161","419.3299865722656","418.0799865722656","","1986-04-30T00:00:00Z","","1.25" +"NM-01584","68.7300033569336","68.7300033569336","","1997-01-16T00:00:00Z","","0" +"NM-00367","130.41000366210938","130.41000366210938","","1981-10-01T00:00:00Z","","0" +"NM-12716","25.43000030517578","25.43000030517578","","1966-02-15T00:00:00Z","","0" +"NM-28258","96.25","96.25","","1987-02-15T00:00:00Z","","0" +"NM-20587","20.809999465942383","20.809999465942383","","1948-03-24T00:00:00Z","","0" +"NM-02597","81.69000244140625","81.69000244140625","","1990-03-08T00:00:00Z","","0" +"NM-17048","14.520000457763672","14.520000457763672","","1935-03-16T00:00:00Z","","0" +"NM-28258","159.14999389648438","159.14999389648438","","1983-05-15T00:00:00Z","","0" +"SO-0185","7.010000228881836","6.600000381469727","","2021-01-20T00:00:00Z","0001-01-01T13:35:00Z","0.4099999964237213" +"NM-09016","29.899999618530273","29.899999618530273","","1944-01-06T00:00:00Z","","0" +"NM-01796","4.5","4.5","","1963-07-15T00:00:00Z","","0" +"AB-0213","155.0800018310547","155.0800018310547","","1997-07-09T00:00:00Z","","" +"EB-209","65.58000183105469","64.33000183105469","","1975-06-27T00:00:00Z","","1.25" +"NM-13504","30.350000381469727","30.350000381469727","P","1977-08-04T00:00:00Z","","0" +"NM-02536","331.44000244140625","331.44000244140625","","1993-02-09T00:00:00Z","","0" +"NM-09285","54.5099983215332","54.5099983215332","","1991-01-17T00:00:00Z","","0" +"AB-0179","186.3300018310547","186.3300018310547","","2009-08-04T00:00:00Z","","" +"NM-12056","78.97000122070312","78.97000122070312","","1945-11-13T00:00:00Z","","0" +"EB-246","334.69000244140625","334.69000244140625","","2000-06-14T00:00:00Z","","0" +"NM-11454","84.2300033569336","84.2300033569336","","1977-04-24T00:00:00Z","","0" +"NM-08071","10.100000381469727","10.100000381469727","","1983-03-15T00:00:00Z","","0" +"NM-00559","97.3499984741211","97.3499984741211","","1986-01-14T00:00:00Z","","0" +"NM-28255","18.850000381469727","18.850000381469727","","1948-10-05T00:00:00Z","","0" +"AB-0114","213.0500030517578","213.0500030517578","","1999-03-30T00:00:00Z","","0" +"NM-02209","108.4000015258789","108.4000015258789","","1971-03-01T00:00:00Z","","0" +"NM-05490","84.25","84.25","","1946-11-07T00:00:00Z","","0" +"NM-13234","2.359999895095825","2.359999895095825","","1957-03-25T00:00:00Z","","0" +"NM-21503","11.890000343322754","11.890000343322754","","2002-01-17T00:00:00Z","","0" +"NM-13899","9.819999694824219","9.819999694824219","","1960-10-04T00:00:00Z","","0" +"NM-28254","120.37000274658203","120.37000274658203","","1973-06-05T00:00:00Z","","0" +"NM-02861","105.0999984741211","105.0999984741211","","1976-02-18T00:00:00Z","","0" +"NM-02396","10.199999809265137","10.199999809265137","","1967-07-15T00:00:00Z","","0" +"NM-28012","479.7900085449219","479.7900085449219","S","2015-05-15T00:00:00Z","","0" +"NM-28254","21.100000381469727","21.100000381469727","","1996-11-15T00:00:00Z","","0" +"SA-0108","84.19000244140625","80.76000213623047","","2011-09-14T00:00:00Z","","3.430000066757202" +"NM-20160","57.5","57.5","","1949-08-03T00:00:00Z","","0" +"NM-02772","135.4600067138672","135.4600067138672","","1983-09-15T00:00:00Z","","0" +"NM-20263","53.77000045776367","53.77000045776367","","1945-01-26T00:00:00Z","","0" +"NM-05347","11.300000190734863","11.300000190734863","","1982-02-15T00:00:00Z","","0" +"AB-0101","712.239990234375","712.239990234375","","2012-10-19T00:00:00Z","","" +"NM-00791","26.360000610351562","26.360000610351562","","1974-02-05T00:00:00Z","","0" +"NM-28251","69.73999786376953","69.73999786376953","","1991-10-25T00:00:00Z","","0" +"NM-13900","5.340000152587891","5.340000152587891","","1960-03-31T00:00:00Z","","0" +"NM-14265","422.29998779296875","422.29998779296875","","1960-03-23T00:00:00Z","","0" +"NM-01904","39.58000183105469","39.58000183105469","","1957-01-21T00:00:00Z","","0" +"NM-28254","15.199999809265137","15.199999809265137","","2010-03-05T00:00:00Z","","0" +"NM-04534","79.04000091552734","79.04000091552734","","1955-03-18T00:00:00Z","","0" +"DE-0114","","","D","2016-03-23T00:00:00Z","","0" +"SA-0134","116.5","116.12999725341797","","2020-09-11T00:00:00Z","","0.3700000047683716" +"NM-03427","19.450000762939453","19.450000762939453","","1993-06-16T00:00:00Z","","0" +"NM-02165","7.989999771118164","7.989999771118164","","2007-10-23T00:00:00Z","","0" +"NM-12711","33.630001068115234","33.630001068115234","","1935-04-02T00:00:00Z","","0" +"NM-20927","117.7300033569336","117.7300033569336","","1952-02-15T00:00:00Z","","0" +"NM-20438","321.260009765625","321.260009765625","","1969-01-08T00:00:00Z","","0" +"SM-0153","92.9800033569336","91.2800064086914","","2008-12-15T00:00:00Z","","1.7000000476837158" +"NM-21242","2.0999999046325684","2.0999999046325684","Z","2006-08-10T00:00:00Z","","0" +"NM-00367","131.82000732421875","131.82000732421875","","1999-05-07T00:00:00Z","","0" +"AR-0052","23.260000228881836","22.760000228881836","","2018-03-28T00:00:00Z","0001-01-01T14:32:00Z","0.5" +"NM-09818","-65.68000030517578","-65.68000030517578","","1907-09-20T00:00:00Z","","0" +"NM-01796","5.099999904632568","5.099999904632568","","1952-07-15T00:00:00Z","","0" +"BC-0194","225.14999389648438","225.14999389648438","","2013-12-04T00:00:00Z","","0" +"EB-483","334.20001220703125","334.20001220703125","Z","2008-08-31T00:00:00Z","","0" +"NM-06783","312.5","312.5","","2009-11-05T00:00:00Z","","0" +"NM-01587","10","10","","1992-01-28T00:00:00Z","","0" +"NM-00213","169.39999389648438","169.39999389648438","","1991-09-26T00:00:00Z","","0" +"NM-20061","57.099998474121094","57.099998474121094","","1958-09-08T00:00:00Z","","0" +"NM-17396","45.130001068115234","45.130001068115234","","1935-06-16T00:00:00Z","","0" +"NM-11282","43.900001525878906","43.900001525878906","","1948-09-17T00:00:00Z","","0" +"NM-14153","2.2699999809265137","2.2699999809265137","","1950-01-30T00:00:00Z","","0" +"NM-08179","37.16999816894531","37.16999816894531","S","1949-01-04T00:00:00Z","","0" +"SB-0299","131.7899932861328","131.7899932861328","","1971-09-15T00:00:00Z","","0" +"NM-09374","26.540000915527344","26.540000915527344","","1942-09-27T00:00:00Z","","0" +"NM-00665","197.57000732421875","197.57000732421875","","2011-10-12T00:00:00Z","","0" +"NM-00784","9.010000228881836","9.010000228881836","","1956-05-01T00:00:00Z","","0" +"DE-0111","37.56999969482422","37.56999969482422","","2009-08-24T00:00:00Z","","0" +"NM-02207","9","9","","1953-04-15T00:00:00Z","","0" +"NM-01971","7.800000190734863","7.800000190734863","","1994-02-20T00:00:00Z","","0" +"NM-12496","12.630000114440918","12.630000114440918","","1957-07-18T00:00:00Z","","0" +"NM-21743","43.25","43.25","Z","1997-01-23T00:00:00Z","","0" +"NM-01033","79.94999694824219","79.94999694824219","","2007-02-09T00:00:00Z","","0" +"NM-15329","60.95000076293945","60.95000076293945","","1989-11-14T00:00:00Z","","0" +"NM-01875","139.77000427246094","139.77000427246094","","1954-07-24T00:00:00Z","","0" +"NM-02349","13","13","","1963-10-15T00:00:00Z","","0" +"NM-20237","16.459999084472656","16.459999084472656","","1946-09-05T00:00:00Z","","0" +"NM-00593","52.5","52.5","","1961-02-06T00:00:00Z","","0" +"NM-23515","32.33000183105469","32.33000183105469","","2003-03-13T00:00:00Z","","0" +"SB-0244","85.87999725341797","85.87999725341797","","1978-01-19T00:00:00Z","","0" +"AB-0215","155.3300018310547","155.3300018310547","","2008-10-07T00:00:00Z","","" +"TV-219","267.5799865722656","266.41998291015625","","2006-05-10T00:00:00Z","","1.159999966621399" +"DE-0076","86.41000366210938","86.41000366210938","","2006-05-08T00:00:00Z","","0" +"NM-23243","235.1999969482422","233.1999969482422","","2015-11-22T00:00:00Z","","2" +"NM-06030","33.689998626708984","33.689998626708984","","2003-07-21T00:00:00Z","","0" +"NM-21587","2.119999885559082","2.119999885559082","Z","2005-04-28T00:00:00Z","","0" +"NM-20263","56.65999984741211","56.65999984741211","","1946-12-03T00:00:00Z","","0" +"NM-21005","101.38999938964844","101.38999938964844","","2015-03-12T00:00:00Z","","0" +"EB-483","22.399999618530273","22.399999618530273","","1980-05-20T00:00:00Z","","" +"TB-0236","116.19000244140625","114.54000091552734","","2010-04-28T00:00:00Z","","1.649999976158142" +"DE-0321","35.5099983215332","35.5099983215332","","2014-11-04T00:00:00Z","","0" +"SA-0043","125.58999633789062","123.93999481201172","","2012-02-24T00:00:00Z","","1.649999976158142" +"NM-02054","8.800000190734863","8.800000190734863","","1988-02-01T00:00:00Z","","0" +"NM-11628","90.87000274658203","90.87000274658203","","1996-03-15T00:00:00Z","","0" +"NM-20343","51.2599983215332","51.2599983215332","","1948-07-30T00:00:00Z","","0" +"NM-07511","56.040000915527344","56.040000915527344","","1958-11-06T00:00:00Z","","0" +"NM-13285","-24.100000381469727","-24.100000381469727","","1911-01-30T00:00:00Z","","0" +"NM-10651","-64.52999877929688","-64.52999877929688","","1907-09-04T00:00:00Z","","0" +"NM-10137","-33.34000015258789","-33.34000015258789","","1926-01-06T00:00:00Z","","0" +"NM-14207","41.439998626708984","41.439998626708984","P","1963-10-01T00:00:00Z","","0" +"NM-01282","118.41000366210938","118.41000366210938","R","1971-01-12T00:00:00Z","","0" +"NM-06268","13.699999809265137","13.699999809265137","","1959-11-15T00:00:00Z","","0" +"AR-0008","12.199999809265137","11.550000190734863","","2019-04-02T00:00:00Z","0001-01-01T11:24:00Z","0.6499999761581421" +"NM-17716","4.78000020980835","4.78000020980835","","1948-01-14T00:00:00Z","","0" +"NM-17548","19.010000228881836","19.010000228881836","","1958-09-09T00:00:00Z","","0" +"NM-06638","38.84000015258789","38.84000015258789","","1949-01-29T00:00:00Z","","0" +"NM-01359","8.020000457763672","8.020000457763672","","1986-09-10T00:00:00Z","","0" +"NM-28256","234.69000244140625","234.69000244140625","","1985-04-15T00:00:00Z","","0" +"EB-483","438.1499938964844","438.1499938964844","Z","2005-05-31T00:00:00Z","","0" +"NM-12765","44.09000015258789","44.09000015258789","","1981-08-25T00:00:00Z","","0" +"NM-01791","311.7699890136719","311.7699890136719","","1986-05-20T00:00:00Z","","0" +"NM-02413","164.19000244140625","164.19000244140625","","1980-01-15T00:00:00Z","","0" +"NM-13512","-61.63999938964844","-61.63999938964844","","1908-03-10T00:00:00Z","","0" +"NM-28022","485.80999755859375","485.80999755859375","S","2015-04-25T00:00:00Z","","0" +"NM-07149","100.73999786376953","100.73999786376953","","2001-01-24T00:00:00Z","","0" +"NM-27517","121.80000305175781","121.80000305175781","","1967-01-09T00:00:00Z","","0" +"NM-27838","43.380001068115234","43.380001068115234","","1982-03-25T00:00:00Z","","0" +"NM-03712","106.7699966430664","106.7699966430664","","1965-08-05T00:00:00Z","","0" +"NM-09682","415.05999755859375","415.05999755859375","","1982-03-24T00:00:00Z","","0" +"NM-09380","-79.54000091552734","-79.54000091552734","","1908-12-28T00:00:00Z","","0" +"EB-288","184","184","","1995-10-31T00:00:00Z","","0" +"NM-03024","94.55000305175781","94.55000305175781","","1976-01-07T00:00:00Z","","0" +"DE-0111","36.650001525878906","36.650001525878906","","2009-01-26T00:00:00Z","","0" +"SM-0130","30.969999313354492","30.969999313354492","","1974-02-12T00:00:00Z","","0" +"NM-02207","7.300000190734863","7.300000190734863","","1947-05-15T00:00:00Z","","0" +"NM-17989","18.540000915527344","18.540000915527344","P","1941-03-25T00:00:00Z","","0" +"NM-03903","331.5400085449219","331.5400085449219","","1976-08-26T00:00:00Z","","0" +"NM-02768","108.30000305175781","108.30000305175781","","1959-09-17T00:00:00Z","","0" +"NM-18685","304.30999755859375","304.30999755859375","","1971-01-07T00:00:00Z","","0" +"NM-02224","96.9800033569336","96.9800033569336","","1982-01-19T00:00:00Z","","0" +"WL-0086","34.83333206176758","33.073333740234375","","1994-03-31T00:00:00Z","","1.7599999904632568" +"NM-22866","52.63999938964844","52.63999938964844","","1954-02-04T00:00:00Z","","0" +"NM-28253","10.1899995803833","10.1899995803833","","2004-12-23T00:00:00Z","","0" +"NM-22844","90.2300033569336","90.2300033569336","","1943-06-15T00:00:00Z","","0" +"NM-05762","57.41999816894531","57.41999816894531","","1958-01-05T00:00:00Z","","0" +"NM-21504","6.96999979019165","6.96999979019165","","1999-04-16T00:00:00Z","","0" +"JM-033","129.52999877929688","129.52999877929688","R","2009-02-05T00:00:00Z","","0" +"BC-0006","33.599998474121094","33.599998474121094","","2019-04-18T00:00:00Z","","0" +"NM-28255","9.989999771118164","9.989999771118164","","1993-11-25T00:00:00Z","","0" +"NM-15713","66.08999633789062","66.08999633789062","","1990-01-10T00:00:00Z","","0" +"NM-19382","104.94999694824219","104.94999694824219","","1969-02-25T00:00:00Z","","0" +"NM-04925","32.43000030517578","32.43000030517578","","1950-09-26T00:00:00Z","","0" +"NM-22648","181.52000427246094","181.52000427246094","","1953-04-01T00:00:00Z","","0" +"SB-0037","210","210","","1970-05-22T00:00:00Z","","0" +"NM-28009","498.67999267578125","498.67999267578125","S","2015-06-03T00:00:00Z","","0" +"NM-13728","-11.399999618530273","-11.399999618530273","","1911-12-06T00:00:00Z","","0" +"NM-08783","154.4499969482422","154.4499969482422","","1955-03-10T00:00:00Z","","0" +"NM-07719","44.59000015258789","44.59000015258789","","1939-11-27T00:00:00Z","","0" +"NM-02831","20.889999389648438","20.889999389648438","","1949-07-01T00:00:00Z","","0" +"NM-18725","150.88999938964844","150.88999938964844","","1955-03-23T00:00:00Z","","0" +"NM-09821","40.40999984741211","40.40999984741211","","1976-02-27T00:00:00Z","","0" +"NM-18381","251.44000244140625","251.44000244140625","","1987-01-07T00:00:00Z","","0" +"NM-03435","128.32000732421875","128.32000732421875","","2016-05-09T00:00:00Z","","0" +"NM-14705","68.05999755859375","68.05999755859375","","1957-07-11T00:00:00Z","","0" +"NM-18921","54.93000030517578","54.93000030517578","","1972-02-10T00:00:00Z","","0" +"NM-07018","215.9600067138672","215.9600067138672","","1954-01-07T00:00:00Z","","0" +"NM-17220","34.68000030517578","34.68000030517578","","1944-01-20T00:00:00Z","","0" +"NM-02224","90.29000091552734","90.29000091552734","","1957-01-16T00:00:00Z","","0" +"NM-26627","22.760000228881836","22.760000228881836","S","2011-12-07T00:00:00Z","","0" +"NM-23333","7.46999979019165","7.46999979019165","","1958-07-11T00:00:00Z","","0" +"NM-17716","3.5899999141693115","3.5899999141693115","","1945-08-23T00:00:00Z","","0" +"NM-06277","225.60000610351562","225.60000610351562","","1975-03-22T00:00:00Z","","0" +"NM-07114","77.44999694824219","77.44999694824219","","2006-10-05T00:00:00Z","","0" +"NM-23122","26.020000457763672","26.020000457763672","","1983-03-10T00:00:00Z","","0" +"NM-10007","-28.719999313354492","-28.719999313354492","","1918-01-02T00:00:00Z","","0" +"NM-02396","7.800000190734863","7.800000190734863","","1961-02-15T00:00:00Z","","0" +"NM-14815","100.8499984741211","100.8499984741211","","1958-04-01T00:00:00Z","","0" +"DE-0308","47.31999969482422","47.31999969482422","","2015-03-10T00:00:00Z","","0" +"NM-25166","11.220000267028809","11.220000267028809","","1968-10-14T00:00:00Z","","0" +"NM-05554","81.69000244140625","81.69000244140625","","1940-03-12T00:00:00Z","","0" +"NM-02209","102.13999938964844","102.13999938964844","","1960-01-14T00:00:00Z","","0" +"NM-12158","-47.20000076293945","-47.20000076293945","","1910-03-09T00:00:00Z","","0" +"NM-13145","14.020000457763672","14.020000457763672","","1960-03-01T00:00:00Z","","0" +"NM-12341","4.110000133514404","4.110000133514404","","1937-07-15T00:00:00Z","","0" +"NM-02090","17.350000381469727","17.350000381469727","","2007-02-26T00:00:00Z","","0" +"NM-13746","-10.239999771118164","-10.239999771118164","","1905-06-09T00:00:00Z","","0" +"NM-02493","44.119998931884766","44.119998931884766","","1991-01-03T00:00:00Z","","0" +"BC-0186","462.5199890136719","462.5199890136719","","2013-09-03T00:00:00Z","","0" +"NM-09312","7.329999923706055","7.329999923706055","","1975-09-18T00:00:00Z","","0" +"NM-02772","170.66000366210938","170.66000366210938","","1965-07-01T00:00:00Z","","0" +"EB-484","649.8499755859375","649.25","P","2007-11-30T00:00:00Z","","0.6000000238418579" +"NM-16978","26.700000762939453","26.700000762939453","","1945-01-23T00:00:00Z","","0" +"NM-17048","26.670000076293945","26.670000076293945","","1950-07-25T00:00:00Z","","0" +"NM-20049","22.100000381469727","22.100000381469727","","1941-11-30T00:00:00Z","","0" +"NM-07881","12.319999694824219","12.319999694824219","","1965-02-19T00:00:00Z","","0" +"NM-02785","32.310001373291016","32.310001373291016","","1966-02-14T00:00:00Z","","0" +"NM-14405","22.940000534057617","22.940000534057617","","1966-01-11T00:00:00Z","","0" +"WS-015","3.5999999046325684","3.5999999046325684","","2010-07-08T00:00:00Z","","0" +"NM-03331","10.140000343322754","10.140000343322754","","1990-05-03T00:00:00Z","","0" +"NM-08153","12.680000305175781","12.680000305175781","","1949-03-15T00:00:00Z","","0" +"NM-23391","274.17999267578125","274.17999267578125","","1955-08-10T00:00:00Z","","0" +"NM-28258","121.12999725341797","121.12999725341797","","1977-02-15T00:00:00Z","","0" +"NM-12808","70.20999908447266","70.20999908447266","","1953-04-01T00:00:00Z","","0" +"NM-02710","30.540000915527344","30.540000915527344","","1975-02-10T00:00:00Z","","0" +"NM-21634","483.2300109863281","483.2300109863281","","1991-06-13T00:00:00Z","","0" +"DE-0112","40.41999816894531","40.41999816894531","","2009-05-11T00:00:00Z","","0" +"NM-01891","85.51000213623047","85.51000213623047","","1989-04-20T00:00:00Z","","0" +"NM-05732","11.130000114440918","11.130000114440918","","2016-06-20T00:00:00Z","","0" +"DE-0080","81.98999786376953","81.98999786376953","","2015-05-11T00:00:00Z","","0" +"TV-217","276.29998779296875","275.6999816894531","","2006-12-01T00:00:00Z","","0.6000000238418579" +"MI-0162","160","160","Z","1950-01-01T00:00:00Z","","0" +"NM-02396","7.400000095367432","7.400000095367432","","1990-10-15T00:00:00Z","","0" +"NM-13970","-10.529999732971191","-10.529999732971191","","1911-12-20T00:00:00Z","","0" +"NM-14192","37.43000030517578","37.43000030517578","","1955-03-08T00:00:00Z","","0" +"NM-05793","36.95000076293945","36.95000076293945","","1934-02-10T00:00:00Z","","0" +"NM-22529","264.0199890136719","264.0199890136719","","1964-01-22T00:00:00Z","","0" +"NM-17716","1.1299999952316284","1.1299999952316284","","1944-05-16T00:00:00Z","","0" +"NM-02663","58.7599983215332","58.7599983215332","","1976-03-04T00:00:00Z","","0" +"NM-09569","58.58000183105469","58.58000183105469","","1986-01-30T00:00:00Z","","0" +"SB-0258","65","65","","2000-01-01T00:00:00Z","","0" +"DE-0231","105.7300033569336","105.7300033569336","","1999-10-18T00:00:00Z","","0" +"NM-03908","146.33999633789062","146.33999633789062","","1977-01-15T00:00:00Z","","0" +"NM-04845","77.80000305175781","77.80000305175781","","1976-01-08T00:00:00Z","","0" +"NM-17716","3.890000104904175","3.890000104904175","","1946-10-03T00:00:00Z","","0" +"NM-02184","20.739999771118164","20.739999771118164","","2004-01-21T00:00:00Z","","0" +"NM-03296","1.8600000143051147","1.8600000143051147","","1989-02-21T00:00:00Z","","0" +"NM-08071","12.699999809265137","12.699999809265137","","1978-05-15T00:00:00Z","","0" +"NM-28252","38.5","38.5","","2001-06-15T00:00:00Z","","0" +"NM-02527","10.600000381469727","10.600000381469727","","1985-03-15T00:00:00Z","","0" +"EB-012","200","200","","1991-12-31T00:00:00Z","","0" +"NM-15486","30.600000381469727","30.600000381469727","","1985-01-22T00:00:00Z","","0" +"NM-17209","46.189998626708984","46.189998626708984","R","1946-03-27T00:00:00Z","","0" +"NM-23679","214","214","","1993-09-07T00:00:00Z","","0" +"SA-0046","169.22000122070312","168.72000122070312","R","2023-02-21T00:00:00Z","0001-01-01T15:45:00Z","0.5" +"NM-08526","11.399999618530273","11.399999618530273","","1976-01-14T00:00:00Z","","0" +"WL-0021","41.900001525878906","41.20000076293945","","2006-11-01T00:00:00Z","","0.699999988079071" +"NM-03376","31.09000015258789","31.09000015258789","","2008-02-29T00:00:00Z","","0" +"NM-28252","47.400001525878906","47.400001525878906","","2004-09-03T00:00:00Z","","0" +"NM-02617","92.23999786376953","92.23999786376953","","1963-09-30T00:00:00Z","","0" +"NM-14293","4.380000114440918","4.380000114440918","","1973-01-16T00:00:00Z","","0" +"NM-02067","85.45999908447266","85.45999908447266","","1967-01-26T00:00:00Z","","0" +"SA-0119","109.58000183105469","106.91999816894531","","2009-11-04T00:00:00Z","","2.6600000858306885" +"NM-13797","19.030000686645508","19.030000686645508","","1957-06-04T00:00:00Z","","0" +"NM-20277","84.79000091552734","84.79000091552734","","1977-02-09T00:00:00Z","","0" +"NM-03984","396.989990234375","396.989990234375","","1955-02-11T00:00:00Z","","0" +"NM-10942","30.200000762939453","30.200000762939453","","1947-01-17T00:00:00Z","","0" +"QY-0846","152.10000610351562","152.10000610351562","","1955-08-24T00:00:00Z","","0" +"NM-12197","18.739999771118164","18.739999771118164","","1946-11-15T00:00:00Z","","0" +"NM-14059","-18.329999923706055","-18.329999923706055","","1911-01-21T00:00:00Z","","0" +"NM-27576","27.329999923706055","27.329999923706055","","1977-01-26T00:00:00Z","","0" +"NM-11211","43.20000076293945","43.20000076293945","","1981-01-08T00:00:00Z","","0" +"NM-15676","116.8499984741211","116.8499984741211","","1970-02-11T00:00:00Z","","0" +"NM-02493","34.349998474121094","34.349998474121094","","1992-02-04T00:00:00Z","","0" +"NM-00645","31.200000762939453","31.200000762939453","","1988-01-07T00:00:00Z","","0" +"NM-02957","149.75","149.75","","1970-03-12T00:00:00Z","","0" +"NM-05347","8.800000190734863","8.800000190734863","","1961-11-15T00:00:00Z","","0" +"NM-03411","303.8599853515625","303.8599853515625","Z","1997-03-26T00:00:00Z","","0" +"NM-03372","127.4800033569336","127.4800033569336","","1979-01-17T00:00:00Z","","0" +"NM-04831","65.2300033569336","65.2300033569336","","1956-05-10T00:00:00Z","","0" +"AR-0046","24.670000076293945","24.200000762939453","","2019-04-01T00:00:00Z","0001-01-01T14:20:00Z","0.4699999988079071" +"NM-20018","39.81999969482422","39.81999969482422","","1957-02-05T00:00:00Z","","0" +"SO-0126","12.600000381469727","12.039999961853027","","2021-10-25T00:00:00Z","0001-01-01T14:58:00Z","0.5600000023841858" +"NM-17716","4.670000076293945","4.670000076293945","","1946-07-24T00:00:00Z","","0" +"NM-07075","53.04999923706055","53.04999923706055","","1953-01-06T00:00:00Z","","0" +"NM-20699","16.549999237060547","16.549999237060547","","1961-02-13T00:00:00Z","","0" +"NM-17651","41.45000076293945","41.45000076293945","","1994-01-04T00:00:00Z","","0" +"NM-14006","219.57000732421875","219.57000732421875","","1958-09-18T00:00:00Z","","0" +"AB-0069","149.5","149.5","","1999-09-30T00:00:00Z","","" +"NM-21624","","","D","2003-07-21T00:00:00Z","","0" +"NM-05484","79.05999755859375","79.05999755859375","","1958-01-11T00:00:00Z","","0" +"NM-28253","44.279998779296875","44.279998779296875","","1973-05-25T00:00:00Z","","0" +"NM-10852","55.150001525878906","55.150001525878906","","1956-01-12T00:00:00Z","","0" +"BC-0186","489.1199951171875","489.1199951171875","","2017-01-31T00:00:00Z","","0" +"NM-16222","11.069999694824219","11.069999694824219","","1966-10-26T00:00:00Z","","0" +"NM-16353","132.92999267578125","132.92999267578125","","1961-01-12T00:00:00Z","","0" +"NM-01272","598.7899780273438","598.7899780273438","","1985-01-24T00:00:00Z","","0" +"NM-01426","320.6600036621094","320.6600036621094","","2013-08-12T00:00:00Z","","0" +"NM-02864","22.43000030517578","22.43000030517578","","1963-01-05T00:00:00Z","","0" +"SB-0217","196.42999267578125","196.42999267578125","","1962-02-12T00:00:00Z","","0" +"NM-08401","391.5","391.5","","1973-07-19T00:00:00Z","","0" +"NM-14361","55.150001525878906","55.150001525878906","","1952-11-06T00:00:00Z","","0" +"AB-0143","310","310","","1984-10-01T00:00:00Z","","0" +"NM-10994","39.97999954223633","39.97999954223633","","1984-02-08T00:00:00Z","","0" +"NM-11405","91.7300033569336","91.7300033569336","P","1950-01-20T00:00:00Z","","0" +"NM-22484","437.1000061035156","437.1000061035156","Z","2000-01-12T00:00:00Z","","0" +"NM-21940","22.260000228881836","22.260000228881836","","1961-07-07T00:00:00Z","","0" +"NM-00273","61.599998474121094","61.599998474121094","","2011-12-20T00:00:00Z","","0" +"NM-10172","-42.58000183105469","-42.58000183105469","","1907-12-23T00:00:00Z","","0" +"NM-01761","53.93000030517578","53.93000030517578","","1974-01-17T00:00:00Z","","0" +"NM-12106","54.279998779296875","54.279998779296875","P","1966-02-08T00:00:00Z","","0" +"WL-0032","145.38999938964844","143.91000366210938","R","2018-03-02T00:00:00Z","","1.4800000190734863" +"NM-02620","9.600000381469727","9.600000381469727","","2000-10-15T00:00:00Z","","0" +"NM-11723","-29.8799991607666","-29.8799991607666","","1906-03-29T00:00:00Z","","0" +"NM-25215","211.75","211.75","","1981-02-12T00:00:00Z","","0" +"NM-19852","55.43000030517578","55.43000030517578","S","1945-08-04T00:00:00Z","","0" +"NM-09675","-5.619999885559082","-5.619999885559082","","1908-03-16T00:00:00Z","","0" +"NM-24514","162","162","","1978-03-03T00:00:00Z","","0" +"NM-02807","55.68000030517578","55.68000030517578","","1994-01-26T00:00:00Z","","0" +"NM-07340","132.58999633789062","132.58999633789062","","1972-02-15T00:00:00Z","","0" +"NM-02591","13.600000381469727","13.600000381469727","","2000-01-15T00:00:00Z","","0" +"NM-06905","120.97000122070312","120.97000122070312","","1970-02-25T00:00:00Z","","0" +"NM-18359","260.6199951171875","260.6199951171875","","1977-01-07T00:00:00Z","","0" +"AR-0026","14.170000076293945","13.619999885559082","","2016-10-18T00:00:00Z","","0.550000011920929" +"NM-28252","40.5","40.5","","1993-08-05T00:00:00Z","","0" +"NM-27262","93.7699966430664","93.7699966430664","","1978-01-26T00:00:00Z","","0" +"NM-13900","7.409999847412109","7.409999847412109","","1957-02-11T00:00:00Z","","0" +"NM-02352","6.800000190734863","6.800000190734863","","1962-08-15T00:00:00Z","","0" +"NM-01868","8.399999618530273","8.399999618530273","","1981-08-15T00:00:00Z","","0" +"NM-08507","338.5299987792969","338.5299987792969","","1975-01-07T00:00:00Z","","0" +"NM-02101","5.300000190734863","5.300000190734863","","1997-07-15T00:00:00Z","","0" +"NM-14293","4.929999828338623","4.929999828338623","","1960-04-12T00:00:00Z","","0" +"NM-28258","162.25","162.25","","2021-12-06T00:00:00Z","","0" +"NM-12353","32.34000015258789","32.34000015258789","","1955-09-26T00:00:00Z","","0" +"NM-02702","-8.3100004196167","-8.3100004196167","","2004-12-15T00:00:00Z","","0" +"NM-02856","31.690000534057617","31.690000534057617","","1971-02-09T00:00:00Z","","0" +"NM-02134","","","O","2006-03-22T00:00:00Z","","0" +"EB-245","193.27999877929688","193.27999877929688","","1988-06-20T00:00:00Z","","0" +"NM-03349","35.45000076293945","35.45000076293945","","1999-11-30T00:00:00Z","","0" +"NM-16538","11.800000190734863","11.800000190734863","","1953-03-26T00:00:00Z","","0" +"NM-11324","56.7599983215332","56.7599983215332","","1964-02-13T00:00:00Z","","0" +"NM-07719","38.209999084472656","38.209999084472656","","1942-05-11T00:00:00Z","","0" +"NM-16985","23.559999465942383","23.559999465942383","","1940-01-27T00:00:00Z","","0" +"NM-13588","-28.719999313354492","-28.719999313354492","","1911-11-13T00:00:00Z","","0" +"AB-0038","346.95001220703125","346.95001220703125","","2010-08-09T00:00:00Z","","" +"NM-03428","5.980000019073486","5.980000019073486","","1993-03-11T00:00:00Z","","0" +"NM-16796","77.87999725341797","77.87999725341797","","1972-01-14T00:00:00Z","","0" +"NM-05565","175.6199951171875","175.6199951171875","","1970-12-01T00:00:00Z","","0" +"NM-01462","384.8699951171875","384.8699951171875","","1982-08-30T00:00:00Z","","0" +"NM-28257","7.25","7.25","","2018-09-25T00:00:00Z","","0" +"NM-00213","144.75999450683594","144.75999450683594","","2000-02-09T00:00:00Z","","0" +"NM-15599","107.83999633789062","107.83999633789062","","1980-02-27T00:00:00Z","","0" +"NM-26693","14.920000076293945","14.920000076293945","","1956-08-08T00:00:00Z","","0" +"NM-21724","36.0099983215332","36.0099983215332","","2010-02-05T00:00:00Z","","0" +"NM-13832","6.150000095367432","6.150000095367432","","1954-02-01T00:00:00Z","","0" +"NM-01903","132.47000122070312","132.47000122070312","","1985-01-21T00:00:00Z","","0" +"NM-03639","7.090000152587891","7.090000152587891","A","2012-09-18T00:00:00Z","","0" +"NM-02799","19.850000381469727","19.850000381469727","","1979-02-08T00:00:00Z","","0" +"NM-05709","53.68000030517578","53.68000030517578","","1942-03-11T00:00:00Z","","0" +"NM-17371","40.459999084472656","40.459999084472656","","1945-07-31T00:00:00Z","","0" +"NM-04705","215.19000244140625","215.19000244140625","","1996-09-23T00:00:00Z","","0" +"NM-28016","495.9599914550781","495.9599914550781","S","2015-06-02T00:00:00Z","","0" +"NM-03877","25.299999237060547","25.299999237060547","","1965-01-06T00:00:00Z","","0" +"NM-07330","128.0399932861328","128.0399932861328","","1953-03-12T00:00:00Z","","0" +"NM-17716","2.569999933242798","2.569999933242798","","1932-02-27T00:00:00Z","","0" +"NM-08189","8","8","","1960-07-15T00:00:00Z","","0" +"RA-013","54.68000030517578","57.779998779296875","AA","2023-09-14T00:00:00Z","0001-01-01T10:03:00Z","-3.0999999046325684" +"SO-0259","13.170000076293945","11.619999885559082","","2018-02-28T00:00:00Z","0001-01-01T11:24:00Z","1.5499999523162842" +"NM-08404","73.54000091552734","73.54000091552734","","1971-01-29T00:00:00Z","","0" +"NM-00525","74.61000061035156","74.61000061035156","","1981-01-07T00:00:00Z","","0" +"NM-19682","272.6499938964844","272.6499938964844","","1988-10-01T00:00:00Z","","0" +"NM-26233","159.6999969482422","159.6999969482422","","1988-02-23T00:00:00Z","","0" +"NM-25313","89.66999816894531","89.66999816894531","","1967-06-13T00:00:00Z","","0" +"DE-0073","89.23999786376953","89.23999786376953","","1996-02-20T00:00:00Z","","0" +"NM-21678","355.44000244140625","355.44000244140625","","2005-04-12T00:00:00Z","","0" +"NM-01035","44.869998931884766","44.869998931884766","","1960-01-21T00:00:00Z","","0" +"NM-06731","345.29998779296875","345.29998779296875","","2011-12-20T00:00:00Z","","0" +"NM-20343","48.59000015258789","48.59000015258789","","1942-03-26T00:00:00Z","","0" +"NM-22667","197.67999267578125","197.67999267578125","P","1993-01-27T00:00:00Z","","0" +"NM-20573","255.39999389648438","255.39999389648438","","1962-03-21T00:00:00Z","","0" +"NM-20560","10.350000381469727","10.350000381469727","","1963-02-07T00:00:00Z","","0" +"NM-01948","6","6","","1980-11-15T00:00:00Z","","0" +"NM-11768","32.22999954223633","32.22999954223633","","1952-01-18T00:00:00Z","","0" +"NM-12485","11.279999732971191","11.279999732971191","","1974-04-18T00:00:00Z","","0" +"NM-02286","9.1899995803833","9.1899995803833","","2009-09-04T00:00:00Z","","0" +"NM-07149","99.47000122070312","99.47000122070312","","1999-10-26T00:00:00Z","","0" +"EB-261","5.590000152587891","3.7900002002716064","","1999-08-27T00:00:00Z","","1.7999999523162842" +"NM-16674","18.639999389648438","18.639999389648438","","1937-08-26T00:00:00Z","","0" +"NM-01239","23.559999465942383","23.559999465942383","","1994-02-08T00:00:00Z","","0" +"UC-0078","163.1999969482422","163.1999969482422","","1989-01-10T00:00:00Z","","0" +"NM-01204","349.6400146484375","349.6400146484375","","1988-06-14T00:00:00Z","","0" +"NM-12808","93.79000091552734","93.79000091552734","","1963-10-01T00:00:00Z","","0" +"NM-02840","7","7","","1982-08-04T00:00:00Z","","0" +"NM-08685","24.719999313354492","24.719999313354492","","1981-02-24T00:00:00Z","","0" +"NM-02264","105.6500015258789","105.6500015258789","","1965-01-12T00:00:00Z","","0" +"NM-02168","8.550000190734863","8.550000190734863","","1998-08-03T00:00:00Z","","0" +"NM-02840","7.539999961853027","7.539999961853027","","1973-08-17T00:00:00Z","","0" +"NM-08755","35.56999969482422","35.56999969482422","","1930-02-20T00:00:00Z","","0" +"NM-00354","28.18000030517578","28.18000030517578","","1976-01-28T00:00:00Z","","0" +"NM-28259","131.39999389648438","131.39999389648438","","1990-08-15T00:00:00Z","","0" +"TO-0478","117.0999984741211","117.0999984741211","","1950-02-08T00:00:00Z","","0" +"NM-04509","82.4800033569336","82.4800033569336","","1954-01-26T00:00:00Z","","0" +"NM-00644","134.83999633789062","134.83999633789062","Z","2006-06-28T00:00:00Z","","0" +"NM-01985","9.699999809265137","9.699999809265137","","1959-01-15T00:00:00Z","","0" +"NM-02777","124.05000305175781","124.05000305175781","","2003-01-22T00:00:00Z","","0" +"NM-02223","203.14999389648438","203.14999389648438","","2008-02-13T00:00:00Z","","0" +"NM-26512","71.08000183105469","71.08000183105469","","2004-05-12T00:00:00Z","","0" +"NM-00645","31.040000915527344","31.040000915527344","","1953-01-10T00:00:00Z","","0" +"NM-14826","155.9499969482422","155.9499969482422","","1963-11-18T00:00:00Z","","0" +"NM-03403","6.019999980926514","6.019999980926514","","2001-03-14T00:00:00Z","","0" +"NM-22679","4.460000038146973","4.460000038146973","Z","2009-07-23T00:00:00Z","","0" +"NM-13563","1.4199999570846558","1.4199999570846558","","1959-05-13T00:00:00Z","","0" +"NM-18474","80.2699966430664","80.2699966430664","P","1962-03-15T00:00:00Z","","0" +"NM-16327","133.74000549316406","133.74000549316406","","1961-01-18T00:00:00Z","","0" +"NM-13891","-26.40999984741211","-26.40999984741211","","1912-12-20T00:00:00Z","","0" +"ED-0314","52.29999923706055","52.29999923706055","P","1947-09-22T00:00:00Z","","0" +"NM-01319","195.5399932861328","195.5399932861328","R","2007-04-19T00:00:00Z","","0" +"NM-06344","137.8800048828125","137.8800048828125","","1945-11-20T00:00:00Z","","0" +"NM-01901","14.460000038146973","14.460000038146973","","2005-02-03T00:00:00Z","","0" +"SB-0299","118.48999786376953","118.48999786376953","","1976-01-01T00:00:00Z","","0" +"NM-01955","4.599999904632568","4.599999904632568","","1995-01-15T00:00:00Z","","0" +"EB-416","275","275","Z","1995-01-31T00:00:00Z","","0" +"NM-02314","7.900000095367432","7.900000095367432","","1947-12-15T00:00:00Z","","0" +"NM-02250","30.110000610351562","30.110000610351562","","1931-10-11T00:00:00Z","","0" +"EB-312","54.709999084472656","61.709999084472656","","2011-10-05T00:00:00Z","","-7" +"NM-00618","52.529998779296875","52.529998779296875","","2007-12-18T00:00:00Z","","0" +"NM-28255","96.4000015258789","96.4000015258789","","1955-07-05T00:00:00Z","","0" +"NM-06137","18.110000610351562","18.110000610351562","","1959-07-28T00:00:00Z","","0" +"NM-02772","158.00999450683594","158.00999450683594","","1996-06-14T00:00:00Z","","0" +"NM-02072","92.66000366210938","92.66000366210938","P","1953-07-17T00:00:00Z","","0" +"NM-15044","451.4800109863281","451.4800109863281","","1960-02-01T00:00:00Z","","0" +"AB-0039","350.95001220703125","350.95001220703125","","2011-12-08T00:00:00Z","","" +"NM-01909","6.199999809265137","6.199999809265137","","1993-02-26T00:00:00Z","","0" +"NM-11895","111.79000091552734","111.79000091552734","","1956-09-10T00:00:00Z","","0" +"NM-15044","451.7900085449219","451.7900085449219","","1961-04-01T00:00:00Z","","0" +"NM-02813","165.2899932861328","165.2899932861328","","1956-03-05T00:00:00Z","","0" +"AB-0053","47.369998931884766","47.369998931884766","","2001-02-26T00:00:00Z","","" +"NM-03281","75.55000305175781","75.55000305175781","","2003-01-23T00:00:00Z","","0" +"NM-27432","34.29999923706055","34.29999923706055","","1936-08-14T00:00:00Z","","0" +"NM-14330","50.43000030517578","50.43000030517578","","1967-01-26T00:00:00Z","","0" +"NM-02758","257.9800109863281","257.9800109863281","","1944-02-17T00:00:00Z","","0" +"NM-00384","61.08000183105469","61.08000183105469","","1988-01-08T00:00:00Z","","0" +"NM-25264","69.2699966430664","69.2699966430664","","1967-04-13T00:00:00Z","","0" +"TV-122","100.5999984741211","99.0999984741211","R","2015-10-06T00:00:00Z","","1.5" +"NM-08071","11.699999809265137","11.699999809265137","","1982-11-15T00:00:00Z","","0" +"NM-28253","34.939998626708984","34.939998626708984","","2010-08-15T00:00:00Z","","0" +"NM-02288","5.309999942779541","5.309999942779541","","2008-03-11T00:00:00Z","","0" +"NM-12261","19.329999923706055","19.329999923706055","","1943-01-13T00:00:00Z","","0" +"NM-20160","56.40999984741211","56.40999984741211","","1948-05-31T00:00:00Z","","0" +"BC-0246","120.06999969482422","120.06999969482422","","2015-12-02T00:00:00Z","","0" +"SB-0432","55.25","55.25","","1984-01-16T00:00:00Z","","0" +"BW-0755","51.29999923706055","51.29999923706055","","1956-05-11T00:00:00Z","","0" +"NM-00714","213.67999267578125","213.67999267578125","","2008-11-03T00:00:00Z","","0" +"NM-22289","35.68000030517578","35.68000030517578","","2006-09-14T00:00:00Z","","0" +"NM-21503","12.34000015258789","12.34000015258789","","2007-07-30T00:00:00Z","","0" +"NM-28016","489.760009765625","489.760009765625","S","2015-05-17T00:00:00Z","","0" +"AB-0180","159.13999938964844","159.13999938964844","","2007-04-04T00:00:00Z","","" +"NM-09408","280.9200134277344","280.9200134277344","","1954-10-22T00:00:00Z","","0" +"NM-00226","28.459999084472656","28.459999084472656","","1995-02-16T00:00:00Z","","0" +"NM-28253","26.540000915527344","26.540000915527344","","1959-10-05T00:00:00Z","","0" +"NM-28258","177.74000549316406","177.74000549316406","","1982-07-05T00:00:00Z","","0" +"NM-08071","9","9","","1952-02-15T00:00:00Z","","0" +"EB-298","158.89999389648438","158.89999389648438","","2010-03-17T00:00:00Z","","0" +"NM-13414","76.87999725341797","76.87999725341797","","1959-09-17T00:00:00Z","","0" +"NM-00185","13.399999618530273","13.399999618530273","","1979-08-15T00:00:00Z","","0" +"NM-22435","607.25","607.25","","2006-02-11T00:00:00Z","","0" +"NM-13797","19.049999237060547","19.049999237060547","","1957-05-20T00:00:00Z","","0" +"NM-02758","258.7900085449219","258.7900085449219","","1943-06-18T00:00:00Z","","0" +"UC-0075","59.22999954223633","59.22999954223633","","1981-01-28T00:00:00Z","","0" +"NM-28020","465.55999755859375","465.55999755859375","S","2015-04-27T00:00:00Z","","0" +"NM-27810","30.979999542236328","30.979999542236328","R","2006-02-28T00:00:00Z","","0" +"NM-05818","83.4000015258789","83.4000015258789","S","1958-01-13T00:00:00Z","","0" +"NM-21561","6.320000171661377","6.320000171661377","Z","2010-02-19T00:00:00Z","","0" +"SV-0031","231.8000030517578","230.1300048828125","","2018-06-03T00:00:00Z","","1.6699999570846558" +"NM-02028","160.86000061035156","160.86000061035156","","1997-02-07T00:00:00Z","","0" +"NM-06076","36.4900016784668","36.4900016784668","","1937-02-28T00:00:00Z","","0" +"DE-0185","48.150001525878906","48.150001525878906","","2010-06-11T00:00:00Z","","0" +"NM-02207","11.399999618530273","11.399999618530273","","1971-10-15T00:00:00Z","","0" +"EB-276","235","235","P","1987-03-31T00:00:00Z","","0" +"NM-00185","12.800000190734863","12.800000190734863","","1984-04-15T00:00:00Z","","0" +"NM-28252","45.849998474121094","45.849998474121094","","2004-06-25T00:00:00Z","","0" +"NM-02007","336.25","336.25","","1936-04-25T00:00:00Z","","0" +"SB-0299","112.63999938964844","112.63999938964844","","1990-02-12T00:00:00Z","","0" +"NM-00204","83.2699966430664","83.2699966430664","","2013-05-30T00:00:00Z","","0" +"NM-03646","67.38999938964844","67.38999938964844","","2006-02-15T00:00:00Z","","0" +"TV-174","16.93000030517578","15.870000839233398","","2005-11-09T00:00:00Z","","1.059999942779541" +"NM-04858","46.310001373291016","46.310001373291016","","1952-09-09T00:00:00Z","","0" +"NM-03333","10.369999885559082","10.369999885559082","Z","1997-06-17T00:00:00Z","","0" +"NM-23514","43.220001220703125","43.220001220703125","","2006-01-12T00:00:00Z","","0" +"NM-02006","8.5","8.5","","1952-07-15T00:00:00Z","","0" +"SB-0299","125.44999694824219","125.44999694824219","","1992-09-05T00:00:00Z","","0" +"NM-02116","98.19000244140625","98.19000244140625","","1963-01-15T00:00:00Z","","0" +"NM-01887","67.05999755859375","67.05999755859375","","2007-09-07T00:00:00Z","","0" +"EB-651","134.19000244140625","134.19000244140625","","2006-11-08T00:00:00Z","","0" +"NM-02506","121.5199966430664","121.5199966430664","","2008-01-14T00:00:00Z","","0" +"NM-00198","15.510000228881836","15.510000228881836","","1967-01-26T00:00:00Z","","0" +"WL-0090","41.04166793823242","38.66166687011719","","1996-10-17T00:00:00Z","","2.380000114440918" +"NM-02209","95.36000061035156","95.36000061035156","","1952-11-01T00:00:00Z","","0" +"NM-10439","38.91999816894531","38.91999816894531","","1947-01-16T00:00:00Z","","0" +"NM-13223","68.66999816894531","68.66999816894531","","1948-05-11T00:00:00Z","","0" +"NM-13900","7.099999904632568","7.099999904632568","","1962-06-20T00:00:00Z","","0" +"PC-028","50.16999816894531","53.06999969482422","","1998-02-05T00:00:00Z","","0" +"NM-15113","33.79999923706055","33.79999923706055","","1966-01-03T00:00:00Z","","0" +"NM-14213","-21.790000915527344","-21.790000915527344","","1911-10-15T00:00:00Z","","0" +"AB-0111","30.450000762939453","30.450000762939453","","2011-01-06T00:00:00Z","","" +"NM-24923","118.8499984741211","118.8499984741211","","1953-12-15T00:00:00Z","","0" +"NM-28259","127.36000061035156","127.36000061035156","","2007-08-06T00:00:00Z","","0" +"NM-11909","40.810001373291016","40.810001373291016","","1937-03-29T00:00:00Z","","0" +"NM-28252","73.26000213623047","73.26000213623047","","1976-08-15T00:00:00Z","","0" +"BW-0505","69.18000030517578","69.18000030517578","","1953-08-31T00:00:00Z","","0" +"NM-06030","40.439998626708984","40.439998626708984","","2005-06-29T00:00:00Z","","0" +"NM-08191","76.4000015258789","76.4000015258789","","1963-07-23T00:00:00Z","","0" +"NM-17296","37.18000030517578","37.18000030517578","","1952-01-25T00:00:00Z","","0" +"NM-24337","151.00999450683594","151.00999450683594","","1973-08-28T00:00:00Z","","0" +"NM-28256","126.88999938964844","126.88999938964844","","1980-10-25T00:00:00Z","","0" +"NM-09380","-42.58000183105469","-42.58000183105469","","1908-06-17T00:00:00Z","","0" +"NM-03396","11.119999885559082","11.119999885559082","","1989-06-12T00:00:00Z","","0" +"NM-00719","157.64999389648438","157.64999389648438","","2003-03-06T00:00:00Z","","0" +"NM-13254","9.350000381469727","9.350000381469727","","1959-06-10T00:00:00Z","","0" +"NM-01746","85.58999633789062","85.58999633789062","","1956-01-16T00:00:00Z","","0" +"NM-01770","51.5","51.5","","1961-11-13T00:00:00Z","","0" +"SM-0027","526.780029296875","526.780029296875","","2006-12-19T00:00:00Z","","0" +"NM-04079","72.80000305175781","72.80000305175781","","1978-01-17T00:00:00Z","","0" +"SB-0225","140.8000030517578","140.8000030517578","","1990-02-09T00:00:00Z","","0" +"NM-15207","185.1699981689453","185.1699981689453","","1985-01-09T00:00:00Z","","0" +"NM-09858","2.9000000953674316","2.9000000953674316","","1963-01-07T00:00:00Z","","0" +"NM-16463","106.05999755859375","106.05999755859375","","1967-01-12T00:00:00Z","","0" +"NM-03689","115.05999755859375","115.05999755859375","","1958-05-06T00:00:00Z","","0" +"NM-03344","77.33000183105469","77.33000183105469","R","1984-11-23T00:00:00Z","","0" +"NM-00498","55.790000915527344","55.790000915527344","Z","2006-04-10T00:00:00Z","","0" +"NM-13748","-3.309999942779541","-3.309999942779541","","1907-03-14T00:00:00Z","","0" +"NM-13902","6.800000190734863","6.800000190734863","","1972-01-15T00:00:00Z","","0" +"TC-240","344.9200134277344","343.3700256347656","","2014-09-02T00:00:00Z","","1.5499999523162842" +"NM-13122","10.680000305175781","10.680000305175781","","1959-01-07T00:00:00Z","","0" +"NM-05253","16.350000381469727","16.350000381469727","","1978-02-21T00:00:00Z","","0" +"NM-02265","242.1300048828125","242.1300048828125","","1974-03-20T00:00:00Z","","0" +"NM-00645","32.880001068115234","32.880001068115234","","2003-08-26T00:00:00Z","","0" +"NM-22252","415.7300109863281","415.7300109863281","","2006-12-11T00:00:00Z","","0" +"NM-11920","1.7699999809265137","1.7699999809265137","","1947-05-29T00:00:00Z","","0" +"NM-20434","75.4800033569336","75.4800033569336","","1982-03-17T00:00:00Z","","0" +"NM-28251","74.12999725341797","74.12999725341797","","2008-10-24T00:00:00Z","","0" +"NM-03389","29.6200008392334","29.6200008392334","","1992-12-14T00:00:00Z","","0" +"NM-17716","4.550000190734863","4.550000190734863","","1934-06-18T00:00:00Z","","0" +"TO-0323","23.700000762939453","23.700000762939453","","1950-07-06T00:00:00Z","","0" +"NM-16601","11.949999809265137","11.949999809265137","","1946-03-25T00:00:00Z","","0" +"NM-07076","125.94999694824219","125.94999694824219","P","1997-02-24T00:00:00Z","","0" +"NM-20164","49.4900016784668","49.4900016784668","","1951-03-30T00:00:00Z","","0" +"DE-0106","37.970001220703125","37.970001220703125","","2006-07-17T00:00:00Z","","0" +"NM-03115","11.380000114440918","11.380000114440918","R","1985-04-23T00:00:00Z","","0" +"NM-24878","42.93000030517578","42.93000030517578","","1974-03-12T00:00:00Z","","0" +"NM-05044","18.5","18.5","","1975-01-07T00:00:00Z","","0" +"NM-01725","-159","-159","","1977-11-21T00:00:00Z","","0" +"NM-02839","242.4600067138672","242.4600067138672","","2006-01-12T00:00:00Z","","0" +"NM-02758","294.2200012207031","294.2200012207031","","1988-09-21T00:00:00Z","","0" +"NM-02816","23.530000686645508","23.530000686645508","","1986-01-13T00:00:00Z","","0" +"NM-17716","8.149999618530273","8.149999618530273","","1941-01-20T00:00:00Z","","0" +"NM-08963","32.119998931884766","32.119998931884766","R","1966-03-08T00:00:00Z","","0" +"NM-23377","93.5","93.5","","1993-01-26T00:00:00Z","","0" +"NM-18303","293.739990234375","293.739990234375","","2001-08-21T00:00:00Z","","0" +"NM-13576","26.5","26.5","R","1971-03-18T00:00:00Z","","0" +"NM-01872","9.300000190734863","9.300000190734863","","1963-10-15T00:00:00Z","","0" +"NM-16745","70.69999694824219","70.69999694824219","","1980-01-08T00:00:00Z","","0" +"NM-03266","168.0500030517578","168.0500030517578","","2000-02-01T00:00:00Z","","0" +"NM-26708","14.9399995803833","14.9399995803833","","1957-04-18T00:00:00Z","","0" +"NM-04132","14.100000381469727","14.100000381469727","","1953-02-11T00:00:00Z","","0" +"NM-28254","145.39999389648438","145.39999389648438","","2002-06-14T00:00:00Z","","0" +"NM-05718","79.52999877929688","79.52999877929688","","1931-08-28T00:00:00Z","","0" +"NM-01893","24.040000915527344","24.040000915527344","","1998-05-05T00:00:00Z","","0" +"NM-02024","125.19999694824219","125.19999694824219","","1981-01-05T00:00:00Z","","0" +"NM-03328","91.87000274658203","91.87000274658203","","2000-01-11T00:00:00Z","","0" +"NM-03192","54.970001220703125","54.970001220703125","","1958-12-16T00:00:00Z","","0" +"NM-03373","45.720001220703125","45.720001220703125","","1992-03-19T00:00:00Z","","0" +"NM-10805","72.12000274658203","72.12000274658203","","1972-01-13T00:00:00Z","","0" +"NM-27871","74","74","","1974-06-21T00:00:00Z","","0" +"BW-0457","213","213","","1941-10-30T00:00:00Z","","0" +"NM-06348","28.600000381469727","28.600000381469727","","1946-09-27T00:00:00Z","","0" +"NM-02689","94.31999969482422","94.31999969482422","","2009-01-14T00:00:00Z","","0" +"NM-26486","121.2699966430664","121.2699966430664","","2003-10-06T00:00:00Z","","0" +"NM-20452","194.47000122070312","194.47000122070312","","2008-05-01T00:00:00Z","","0" +"NM-09678","57.77000045776367","57.77000045776367","","1981-02-18T00:00:00Z","","0" +"NM-17152","59.20000076293945","59.20000076293945","","1956-01-19T00:00:00Z","","0" +"NM-02728","40.900001525878906","40.900001525878906","","1945-01-10T00:00:00Z","","0" +"NM-21293","12.09000015258789","12.09000015258789","","1980-01-28T00:00:00Z","","0" +"NM-23293","116.69000244140625","116.69000244140625","R","1961-05-10T00:00:00Z","","0" +"NM-02669","57.459999084472656","57.459999084472656","","1971-07-01T00:00:00Z","","0" +"NM-00020","90.12999725341797","90.12999725341797","","2013-12-10T00:00:00Z","","0" +"NM-01451","371.1700134277344","371.1700134277344","","1985-05-08T00:00:00Z","","0" +"NM-02287","4.840000152587891","4.840000152587891","","1995-05-13T00:00:00Z","","0" +"EB-276","179.3300018310547","179.3300018310547","","1978-11-01T00:00:00Z","","0" +"NM-10092","59.29999923706055","59.29999923706055","P","1950-07-20T00:00:00Z","","0" +"NM-28255","166.61000061035156","166.61000061035156","","2005-08-05T00:00:00Z","","0" +"NM-14111","-24.100000381469727","-24.100000381469727","","1912-12-17T00:00:00Z","","0" +"NM-07749","111.6500015258789","111.6500015258789","","1972-02-16T00:00:00Z","","0" +"NM-09289","90.5","90.5","","1958-03-18T00:00:00Z","","0" +"NM-18012","229.7899932861328","229.7899932861328","","1982-03-17T00:00:00Z","","0" +"NM-06996","57.31999969482422","57.31999969482422","","2003-10-09T00:00:00Z","","0" +"NM-01337","79.7699966430664","79.7699966430664","","1992-05-21T00:00:00Z","","0" +"EB-163","685","683.7999877929688","","1999-10-31T00:00:00Z","","1.2000000476837158" +"NM-14396","6.630000114440918","6.630000114440918","","1968-03-26T00:00:00Z","","0" +"NM-20441","36.29999923706055","36.29999923706055","","1956-02-15T00:00:00Z","","0" +"NM-27544","78.55000305175781","78.55000305175781","","1972-01-20T00:00:00Z","","0" +"NM-18026","34.689998626708984","34.689998626708984","P","1959-01-15T00:00:00Z","","0" +"NM-11836","54.72999954223633","54.72999954223633","","1945-01-14T00:00:00Z","","0" +"NM-28255","28.90999984741211","28.90999984741211","","1978-01-15T00:00:00Z","","0" +"NM-12463","58.790000915527344","58.790000915527344","","1961-02-13T00:00:00Z","","0" +"NM-14279","6.619999885559082","6.619999885559082","","1947-02-05T00:00:00Z","","0" +"EB-012","98.20999908447266","98.20999908447266","","1961-02-07T00:00:00Z","","0" +"NM-28259","142.10000610351562","142.10000610351562","","1982-09-25T00:00:00Z","","0" +"NM-05287","54.189998626708984","54.189998626708984","","1940-01-06T00:00:00Z","","0" +"NM-11556","40.54999923706055","40.54999923706055","","1938-04-22T00:00:00Z","","0" +"SB-0299","133.66000366210938","133.66000366210938","","2009-12-25T00:00:00Z","","0" +"NM-12749","24.520000457763672","24.520000457763672","","1937-11-19T00:00:00Z","","0" +"NM-22981","12.029999732971191","12.029999732971191","Z","2009-08-19T00:00:00Z","","0" +"DE-0069","194.77000427246094","191.29000854492188","","1991-11-15T00:00:00Z","","3.4800000190734863" +"NM-00578","105.05999755859375","105.05999755859375","","1996-01-19T00:00:00Z","","0" +"NM-23050","77.25","77.25","P","1947-07-07T00:00:00Z","","0" +"WL-0179","27.549999237060547","26","AA","2023-08-24T00:00:00Z","0001-01-01T12:44:00Z","1.5499999523162842" +"NM-03650","32.2400016784668","32.2400016784668","","2001-11-07T00:00:00Z","","0" +"NM-28257","22.59000015258789","22.59000015258789","","2005-05-25T00:00:00Z","","0" +"NM-28256","184.75","184.75","","1999-05-15T00:00:00Z","","0" +"NM-03372","141.5500030517578","141.5500030517578","S","1993-02-08T00:00:00Z","","0" +"WL-0315","107.20999908447266","107.20999908447266","AA","2023-01-31T00:00:00Z","0001-01-01T10:25:00Z","0" +"NM-02702","46.58000183105469","46.58000183105469","","1994-08-25T00:00:00Z","","0" +"NM-10299","59.97999954223633","59.97999954223633","R","1961-03-02T00:00:00Z","","0" +"SV-0142","104.0999984741211","102.2699966430664","","2017-12-03T00:00:00Z","","1.8300000429153442" +"NM-28250","79.83000183105469","79.83000183105469","","2000-06-05T00:00:00Z","","0" +"NM-16943","9.819999694824219","9.819999694824219","","1941-11-26T00:00:00Z","","0" +"NM-15412","405","405","","1956-05-31T00:00:00Z","","0" +"TV-204","41.709999084472656","40.7599983215332","","2012-06-04T00:00:00Z","","0.949999988079071" +"NM-28254","94.69999694824219","94.69999694824219","","1961-06-15T00:00:00Z","","0" +"NM-09508","24.260000228881836","24.260000228881836","","1964-01-14T00:00:00Z","","0" +"NM-00242","33.09000015258789","33.09000015258789","","1993-01-07T00:00:00Z","","0" +"NM-00498","55.779998779296875","55.779998779296875","Z","2006-02-23T00:00:00Z","","0" +"NM-17716","1.399999976158142","1.399999976158142","","1945-01-03T00:00:00Z","","0" +"NM-03421","38.459999084472656","38.459999084472656","","1995-04-19T00:00:00Z","","0" +"NM-14351","595.219970703125","595.219970703125","","1966-04-01T00:00:00Z","","0" +"EB-483","333.5","333.5","P","1998-11-30T00:00:00Z","","0" +"NM-14802","105.91000366210938","105.91000366210938","","1982-10-25T00:00:00Z","","0" +"NM-05516","10.899999618530273","10.899999618530273","","1976-11-15T00:00:00Z","","0" +"NM-02017","8.699999809265137","8.699999809265137","","1975-05-15T00:00:00Z","","0" +"NM-14007","-17.170000076293945","-17.170000076293945","","1935-01-22T00:00:00Z","","0" +"AB-0076","7.039999961853027","7.039999961853027","","2004-07-27T00:00:00Z","","" +"SM-0008","183.60000610351562","182.3100128173828","","2007-04-17T00:00:00Z","","1.2899999618530273" +"NM-15174","35.47999954223633","35.47999954223633","","1966-01-02T00:00:00Z","","0" +"NM-13135","5.210000038146973","5.210000038146973","","1979-02-23T00:00:00Z","","0" +"NM-12491","41.310001373291016","41.310001373291016","","1967-01-03T00:00:00Z","","0" +"NM-13414","40.099998474121094","40.099998474121094","","1948-05-11T00:00:00Z","","0" +"DE-0070","201.66000366210938","199.80999755859375","","2000-09-27T00:00:00Z","","1.850000023841858" +"NM-00366","130.38999938964844","130.38999938964844","","2006-10-04T00:00:00Z","","0" +"NM-28252","35.45000076293945","35.45000076293945","","1961-01-25T00:00:00Z","","0" +"NM-04700","45.29999923706055","45.29999923706055","","1949-02-01T00:00:00Z","","0" +"NM-04155","107.36000061035156","107.36000061035156","","1967-01-25T00:00:00Z","","0" +"NM-11885","12.109999656677246","12.109999656677246","","1950-01-23T00:00:00Z","","0" +"NM-11928","-1.4199999570846558","-1.4199999570846558","","1942-03-17T00:00:00Z","","0" +"NM-02831","58.4900016784668","58.4900016784668","","1980-12-17T00:00:00Z","","0" +"NM-02101","9.699999809265137","9.699999809265137","","1952-12-15T00:00:00Z","","0" +"NM-13936","-7.929999828338623","-7.929999828338623","","1911-06-06T00:00:00Z","","0" +"NM-02727","27.920000076293945","27.920000076293945","","1983-01-10T00:00:00Z","","0" +"NM-12175","54.470001220703125","54.470001220703125","","1956-01-12T00:00:00Z","","0" +"NM-17520","113.19999694824219","113.19999694824219","","1966-03-02T00:00:00Z","","0" +"NM-01787","242.1999969482422","242.1999969482422","P","1962-08-17T00:00:00Z","","0" +"NM-21586","4.78000020980835","4.78000020980835","Z","2006-05-08T00:00:00Z","","0" +"NM-05511","154","154","P","1957-08-12T00:00:00Z","","0" +"DE-0193","46.7599983215332","46.7599983215332","","2007-06-20T00:00:00Z","","0" +"NM-01868","7","7","","1988-05-15T00:00:00Z","","0" +"NM-28011","492.29998779296875","492.29998779296875","S","2015-05-30T00:00:00Z","","0" +"NM-11571","169.7100067138672","169.7100067138672","","1958-01-21T00:00:00Z","","0" +"NM-27696","201.85000610351562","201.85000610351562","","1987-02-11T00:00:00Z","","0" +"NM-04925","32.459999084472656","32.459999084472656","","1951-01-11T00:00:00Z","","0" +"NM-19611","179.14999389648438","179.14999389648438","","1962-03-22T00:00:00Z","","0" +"NM-28255","119.41000366210938","119.41000366210938","","2017-03-24T00:00:00Z","","0" +"NM-25667","23.700000762939453","23.700000762939453","","1959-08-12T00:00:00Z","","0" +"EB-012","175","175","","1985-01-31T00:00:00Z","","0" +"NM-19969","57.619998931884766","57.619998931884766","","1946-12-02T00:00:00Z","","0" +"NM-24006","143","143","","1990-06-23T00:00:00Z","","0" +"BC-0049","107.08000183105469","107.08000183105469","","2012-09-12T00:00:00Z","","0" +"EB-220","127.30000305175781","127.30000305175781","","1980-06-15T00:00:00Z","","0" +"NM-07219","395.1300048828125","395.1300048828125","","2012-03-29T00:00:00Z","","0" +"NM-28252","50.2400016784668","50.2400016784668","","2012-04-06T00:00:00Z","","0" +"NM-02501","76.5199966430664","76.5199966430664","P","1962-01-25T00:00:00Z","","0" +"NM-28250","94.33000183105469","94.33000183105469","","2014-07-07T00:00:00Z","","0" +"NM-02348","14.199999809265137","14.199999809265137","","1997-02-11T00:00:00Z","","0" +"NM-06172","102.66999816894531","102.66999816894531","","1951-01-04T00:00:00Z","","0" +"NM-01858","9.960000038146973","9.960000038146973","","1981-01-16T00:00:00Z","","0" +"EB-339","138.77999877929688","136.77999877929688","","2005-06-08T00:00:00Z","","2" +"DE-0109","36.380001068115234","36.380001068115234","","2008-04-28T00:00:00Z","","0" +"NM-28251","62.529998779296875","62.529998779296875","","1998-04-15T00:00:00Z","","0" +"NM-12808","13.1899995803833","13.1899995803833","","1925-11-01T00:00:00Z","","0" +"AB-0069","149.44000244140625","149.44000244140625","","2000-04-04T00:00:00Z","","" +"NM-05622","71.58000183105469","71.58000183105469","","1940-05-08T00:00:00Z","","0" +"NM-02244","99.5199966430664","99.5199966430664","","1962-01-19T00:00:00Z","","0" +"SM-0064","60.70000076293945","58.79999923706055","","2006-10-16T00:00:00Z","","1.899999976158142" +"NM-02109","27.049999237060547","27.049999237060547","","1952-05-22T00:00:00Z","","0" +"NM-01989","9.140000343322754","9.140000343322754","","1995-01-26T00:00:00Z","","0" +"NM-16620","15.569999694824219","15.569999694824219","","1951-11-28T00:00:00Z","","0" +"NM-07963","49.20000076293945","49.20000076293945","","1981-01-14T00:00:00Z","","0" +"BC-0128","530.5800170898438","530.5800170898438","","2015-09-13T00:00:00Z","","0" +"NM-03041","37.25","37.25","","1957-01-18T00:00:00Z","","0" +"NM-26741","184.5399932861328","184.5399932861328","","1962-02-20T00:00:00Z","","0" +"BC-0003","168.85000610351562","168.85000610351562","","2014-06-05T00:00:00Z","","0" +"NM-14038","-12.550000190734863","-12.550000190734863","","1910-09-09T00:00:00Z","","0" +"EB-270","212.08999633789062","212.08999633789062","","2004-10-13T00:00:00Z","","0" +"NM-03424","12.729999542236328","12.729999542236328","","2004-03-01T00:00:00Z","","0" +"NM-02208","9","9","","1990-12-15T00:00:00Z","","0" +"NM-14293","5.769999980926514","5.769999980926514","","1959-06-17T00:00:00Z","","0" +"NM-11943","-0.38999998569488525","-0.38999998569488525","","1947-03-26T00:00:00Z","","0" +"NM-00766","41.400001525878906","41.400001525878906","","2010-01-26T00:00:00Z","","0" +"NM-00794","72.37999725341797","72.37999725341797","","2010-10-04T00:00:00Z","","0" +"NM-10085","13.779999732971191","13.779999732971191","","1942-01-14T00:00:00Z","","0" +"NM-21245","3.0299999713897705","3.0299999713897705","Z","2005-10-03T00:00:00Z","","0" +"NM-24071","36.380001068115234","36.380001068115234","","1983-02-08T00:00:00Z","","0" +"NM-02158","8.899999618530273","8.899999618530273","","1998-03-15T00:00:00Z","","0" +"NM-04494","10.75","10.75","","1983-01-25T00:00:00Z","","0" +"BC-0219","29.75","29.75","","2018-04-02T00:00:00Z","","0" +"QU-055","26.809999465942383","25.469999313354492","","2014-09-02T00:00:00Z","","1.340000033378601" +"NM-17853","129.67999267578125","129.67999267578125","","1966-09-07T00:00:00Z","","0" +"NM-09621","62.61000061035156","62.61000061035156","","1976-02-19T00:00:00Z","","0" +"NM-13033","285.0199890136719","285.0199890136719","","1959-07-13T00:00:00Z","","0" +"NM-09058","99.23999786376953","99.23999786376953","","1983-01-04T00:00:00Z","","0" +"NM-19346","376.8900146484375","376.8900146484375","","1993-01-06T00:00:00Z","","0" +"NM-22888","323.07000732421875","323.07000732421875","","2015-11-05T00:00:00Z","","0" +"NM-02518","5.5","5.5","","1952-11-15T00:00:00Z","","0" +"NM-04479","64.36000061035156","64.36000061035156","","1948-11-22T00:00:00Z","","0" +"NM-02384","7.199999809265137","7.199999809265137","","1981-07-15T00:00:00Z","","0" +"NM-08788","55.560001373291016","55.560001373291016","","1967-01-03T00:00:00Z","","0" +"NM-10769","57.11000061035156","57.11000061035156","","1963-07-01T00:00:00Z","","0" +"NM-03197","340.1600036621094","340.1600036621094","","1977-01-04T00:00:00Z","","0" +"NM-14802","105.93000030517578","105.93000030517578","","1981-05-05T00:00:00Z","","0" +"BC-0176","","338.20001220703125","","2020-08-04T00:00:00Z","","1.2699999809265137" +"NM-01746","93.80999755859375","93.80999755859375","","1970-01-13T00:00:00Z","","0" +"NM-10600","26.299999237060547","26.299999237060547","","1960-01-20T00:00:00Z","","0" +"NM-27326","17.010000228881836","17.010000228881836","","1957-01-07T00:00:00Z","","0" +"NM-02287","5.760000228881836","5.760000228881836","","2004-04-14T00:00:00Z","","0" +"SB-0288","107.91000366210938","107.91000366210938","","1962-09-30T00:00:00Z","","0" +"NM-03404","6.150000095367432","6.150000095367432","Z","2000-04-04T00:00:00Z","","0" +"NM-24274","305","305","","1979-12-13T00:00:00Z","","0" +"NM-08014","49.65999984741211","49.65999984741211","","1957-07-30T00:00:00Z","","0" +"NM-02745","208.00999450683594","208.00999450683594","","1972-01-13T00:00:00Z","","0" +"NM-28021","468.04998779296875","468.04998779296875","S","2015-04-20T00:00:00Z","","0" +"NM-20160","69.3499984741211","69.3499984741211","","1952-07-30T00:00:00Z","","0" +"NM-03053","73.83999633789062","73.83999633789062","","1965-02-17T00:00:00Z","","0" +"QU-110","7.769999980926514","10.789999961853027","","2014-09-04T00:00:00Z","","-3.0199999809265137" +"NM-28252","43.349998474121094","43.349998474121094","","2004-10-05T00:00:00Z","","0" +"NM-15843","101.08000183105469","101.08000183105469","","1970-02-13T00:00:00Z","","0" +"NM-02591","15.300000190734863","15.300000190734863","","1962-02-15T00:00:00Z","","0" +"NM-02996","63.58000183105469","63.58000183105469","","2006-03-03T00:00:00Z","","0" +"NM-02772","164.02999877929688","164.02999877929688","","1998-07-06T00:00:00Z","","0" +"BC-0194","225.17999267578125","225.17999267578125","","2014-03-05T00:00:00Z","","0" +"NM-11988","57.16999816894531","57.16999816894531","","1996-01-03T00:00:00Z","","0" +"NM-22639","27.56999969482422","27.56999969482422","","2014-12-02T00:00:00Z","","0" +"NM-02514","17.110000610351562","15.710000991821289","","2020-02-19T00:00:00Z","0001-01-01T12:43:00Z","1.399999976158142" +"NM-21584","4.849999904632568","4.849999904632568","Z","2010-02-19T00:00:00Z","","0" +"NM-28008","4.980000019073486","4.980000019073486","Z","2006-08-09T00:00:00Z","","0" +"NM-02831","57.16999816894531","57.16999816894531","","1983-12-01T00:00:00Z","","0" +"NM-10010","140.7899932861328","140.7899932861328","","1955-01-14T00:00:00Z","","0" +"NM-27365","109.44999694824219","109.44999694824219","","1968-01-02T00:00:00Z","","0" +"NM-28251","75.62999725341797","75.62999725341797","","2010-07-25T00:00:00Z","","0" +"NM-27446","23.639999389648438","23.639999389648438","","1957-06-25T00:00:00Z","","0" +"NM-02509","63.880001068115234","63.880001068115234","","1957-01-15T00:00:00Z","","0" +"NM-02072","67.44999694824219","67.44999694824219","","1955-03-17T00:00:00Z","","0" +"SV-0082","585.2999877929688","583.5499877929688","","2015-10-25T00:00:00Z","","1.75" +"BC-0010","126.9800033569336","126.9800033569336","","2019-04-18T00:00:00Z","","0" +"NM-17660","11.4399995803833","11.4399995803833","","1956-01-20T00:00:00Z","","0" +"NM-00395","35.72999954223633","35.72999954223633","","1961-01-15T00:00:00Z","","0" +"NM-02004","7.400000095367432","7.400000095367432","","1963-04-15T00:00:00Z","","0" +"NM-17577","38.619998931884766","38.619998931884766","","1938-11-01T00:00:00Z","","0" +"AB-0070","153.5","153.5","","2010-01-05T00:00:00Z","","" +"NM-16762","2.3299999237060547","2.3299999237060547","","1941-03-27T00:00:00Z","","0" +"NM-08246","22.450000762939453","22.450000762939453","","1936-02-14T00:00:00Z","","0" +"NM-02006","12.199999809265137","12.199999809265137","","1955-10-15T00:00:00Z","","0" +"NM-03380","63.29999923706055","63.29999923706055","","2001-09-24T00:00:00Z","","0" +"NM-28254","87","87","","2020-10-26T00:00:00Z","","0" +"NM-01800","166.55999755859375","166.55999755859375","","1976-01-03T00:00:00Z","","0" +"NM-23757","128.5399932861328","128.5399932861328","","1965-01-22T00:00:00Z","","0" +"BC-0174","296.67999267578125","296.67999267578125","","2012-12-12T00:00:00Z","","0" +"SB-0933","208.5","208.5","","1960-03-23T00:00:00Z","","0" +"NM-28253","11.0600004196167","11.0600004196167","","1999-10-25T00:00:00Z","","0" +"NM-03341","6.659999847412109","6.659999847412109","Z","2003-10-02T00:00:00Z","","0" +"BC-0201","110.33000183105469","110.33000183105469","","2020-04-24T00:00:00Z","","0" +"NM-28254","24.450000762939453","24.450000762939453","","1970-01-15T00:00:00Z","","0" +"NM-02260","49.689998626708984","49.689998626708984","","1986-01-08T00:00:00Z","","0" +"DE-0245","102.79000091552734","102.79000091552734","","2007-03-08T00:00:00Z","","0" +"DE-0112","40.5099983215332","40.5099983215332","","2009-08-31T00:00:00Z","","0" +"NM-12711","33.779998779296875","33.779998779296875","","1938-03-20T00:00:00Z","","0" +"NM-11121","34.7400016784668","34.7400016784668","P","1966-02-17T00:00:00Z","","0" +"NM-02797","2.950000047683716","2.950000047683716","","1981-11-16T00:00:00Z","","0" +"NM-07952","46.5099983215332","46.5099983215332","","1976-02-11T00:00:00Z","","0" +"NM-11578","26.270000457763672","26.270000457763672","","1931-04-30T00:00:00Z","","0" +"NM-01889","12.069999694824219","12.069999694824219","","1992-11-17T00:00:00Z","","0" +"NM-00395","34.15999984741211","34.15999984741211","","1950-07-21T00:00:00Z","","0" +"NM-00251","205.00999450683594","205.00999450683594","","1986-03-19T00:00:00Z","","0" +"SB-0299","117.30000305175781","117.30000305175781","","1966-08-05T00:00:00Z","","0" +"NM-02365","52.400001525878906","52.400001525878906","","1955-12-13T00:00:00Z","","0" +"NM-27571","23.579999923706055","23.579999923706055","","1972-01-04T00:00:00Z","","0" +"NM-02349","17.799999237060547","17.799999237060547","","1994-02-09T00:00:00Z","","0" +"NM-11424","81.44999694824219","81.44999694824219","","1949-01-24T00:00:00Z","","0" +"NM-28252","64.69999694824219","64.69999694824219","","1979-06-25T00:00:00Z","","0" +"NM-13731","35.33000183105469","35.33000183105469","","1957-01-10T00:00:00Z","","0" +"NM-17716","-0.23000000417232513","-0.23000000417232513","","1943-04-20T00:00:00Z","","0" +"NM-03712","102.0999984741211","102.0999984741211","","1962-08-20T00:00:00Z","","0" +"NM-16831","6.090000152587891","6.090000152587891","","1951-01-12T00:00:00Z","","0" +"NM-23602","123","123","","1980-03-26T00:00:00Z","","0" +"NM-02441","70.88999938964844","70.88999938964844","","2000-07-12T00:00:00Z","","0" +"NM-10638","-93.4000015258789","-93.4000015258789","","1913-01-22T00:00:00Z","","0" +"EB-484","511.25","510.6499938964844","Z","2005-12-31T00:00:00Z","","0.6000000238418579" +"TB-0113","69.08000183105469","68.1300048828125","","2009-10-16T00:00:00Z","","0.949999988079071" +"NM-02005","8.399999618530273","8.399999618530273","","1984-11-15T00:00:00Z","","0" +"NM-18282","48.83000183105469","48.83000183105469","P","1972-02-11T00:00:00Z","","0" +"EB-235","53.099998474121094","53.099998474121094","","1981-03-20T00:00:00Z","","0" +"DE-0061","81","78.62000274658203","","2013-06-01T00:00:00Z","","2.380000114440918" +"NM-14535","84.63999938964844","84.63999938964844","","1971-03-15T00:00:00Z","","0" +"NM-03387","48.2400016784668","48.2400016784668","","2003-09-25T00:00:00Z","","0" +"NM-11871","66.9000015258789","66.9000015258789","","1967-01-03T00:00:00Z","","0" +"NM-04231","27.219999313354492","27.219999313354492","","1933-03-05T00:00:00Z","","0" +"SB-0442","169.6999969482422","169.6999969482422","","2009-06-10T00:00:00Z","","0" +"NM-18121","44.459999084472656","44.459999084472656","","1967-01-17T00:00:00Z","","0" +"TV-187","26.989999771118164","25.079999923706055","","2012-04-09T00:00:00Z","","1.909999966621399" +"NM-17703","25.6200008392334","25.6200008392334","","1963-02-26T00:00:00Z","","0" +"NM-17716","3.5799999237060547","3.5799999237060547","","1945-08-07T00:00:00Z","","0" +"NM-17618","12.140000343322754","12.140000343322754","","1934-02-28T00:00:00Z","","0" +"NM-02352","7.400000095367432","7.400000095367432","","2000-11-15T00:00:00Z","","0" +"NM-28252","42.36000061035156","42.36000061035156","","1988-12-05T00:00:00Z","","0" +"NM-20562","11.930000305175781","11.930000305175781","","1943-02-04T00:00:00Z","","0" +"NM-27993","425.30999755859375","425.30999755859375","","2015-10-27T00:00:00Z","","0" +"EB-485","423.6499938964844","422.6499938964844","P","2002-12-31T00:00:00Z","","1" +"NM-12338","127.80000305175781","127.80000305175781","","1958-09-23T00:00:00Z","","0" +"NM-01985","8.100000381469727","8.100000381469727","","1989-10-15T00:00:00Z","","0" +"NM-01530","148.35000610351562","148.35000610351562","Z","1990-07-19T00:00:00Z","","0" +"NM-02349","19.5","19.5","","1965-08-15T00:00:00Z","","0" +"NM-04753","68.72000122070312","68.72000122070312","","1976-01-08T00:00:00Z","","0" +"NM-17503","29.31999969482422","29.31999969482422","","1967-01-25T00:00:00Z","","0" +"NM-03427","24.469999313354492","24.469999313354492","","2006-09-14T00:00:00Z","","0" +"NM-03425","11.8100004196167","11.8100004196167","","1992-12-17T00:00:00Z","","0" +"NM-12534","11.850000381469727","11.850000381469727","","1942-02-05T00:00:00Z","","0" +"NM-15197","122.56999969482422","122.56999969482422","","1990-01-25T00:00:00Z","","0" +"NM-21219","6.809999942779541","6.809999942779541","","1961-01-24T00:00:00Z","","0" +"NM-01212","127.79000091552734","127.79000091552734","","1993-03-24T00:00:00Z","","0" +"NM-24810","159.75","159.75","P","1964-10-29T00:00:00Z","","0" +"NM-01868","17.399999618530273","17.399999618530273","","1956-09-15T00:00:00Z","","0" +"NM-28252","37.5","37.5","","1995-05-15T00:00:00Z","","0" +"NM-28259","109.5199966430664","109.5199966430664","","1955-07-05T00:00:00Z","","0" +"NM-01926","6.599999904632568","6.599999904632568","","1954-09-15T00:00:00Z","","0" +"AB-0144","465","465","","1988-01-15T00:00:00Z","","" +"NM-02794","62.91999816894531","62.91999816894531","","1953-05-13T00:00:00Z","","0" +"NM-02991","59.56999969482422","59.56999969482422","","1984-01-18T00:00:00Z","","0" +"NM-03155","387.1099853515625","387.1099853515625","","1994-01-05T00:00:00Z","","0" +"NM-02521","246.39999389648438","246.39999389648438","","1962-08-21T00:00:00Z","","0" +"NM-03378","19.3700008392334","19.3700008392334","","1957-10-30T00:00:00Z","","0" +"NM-17716","5.269999980926514","5.269999980926514","","1948-05-21T00:00:00Z","","0" +"NM-11928","-0.3100000023841858","-0.3100000023841858","","1949-11-29T00:00:00Z","","0" +"NM-01295","99.80000305175781","99.80000305175781","","1991-07-09T00:00:00Z","","0" +"NM-17271","70.6500015258789","70.6500015258789","","1962-06-01T00:00:00Z","","0" +"NM-13425","399.29998779296875","399.29998779296875","","1960-03-01T00:00:00Z","","0" +"NM-10940","-27.56999969482422","-27.56999969482422","","1910-03-07T00:00:00Z","","0" +"NM-25680","-100.2300033569336","-100.2300033569336","","1988-03-01T00:00:00Z","","0" +"AR-0073","6.53000020980835","6.090000152587891","","2015-08-20T00:00:00Z","","0.4399999976158142" +"NM-04195","171.8800048828125","171.8800048828125","","1998-01-08T00:00:00Z","","0" +"NM-15793","89","89","","1981-07-09T00:00:00Z","","0" +"NM-02284","12.930000305175781","12.930000305175781","","2007-12-07T00:00:00Z","","0" +"DE-0238","104.72000122070312","104.72000122070312","","2002-11-04T00:00:00Z","","0" +"NM-08842","54.95000076293945","54.95000076293945","","1970-01-06T00:00:00Z","","0" +"NM-02583","174.19000244140625","174.19000244140625","","2011-01-24T00:00:00Z","","0" +"SM-0015","264.5899963378906","264.489990234375","","2008-10-13T00:00:00Z","","0.10000000149011612" +"NM-28255","19.90999984741211","19.90999984741211","","2014-12-15T00:00:00Z","","0" +"NM-27552","88.77999877929688","88.77999877929688","","1977-02-01T00:00:00Z","","0" +"NM-02866","123.8499984741211","123.8499984741211","","1964-01-09T00:00:00Z","","0" +"NM-10469","-28.719999313354492","-28.719999313354492","","1911-02-19T00:00:00Z","","0" +"NM-00498","55.75","55.75","Z","2006-12-08T00:00:00Z","","0" +"BC-0009","121.27999877929688","121.27999877929688","","2014-06-02T00:00:00Z","","0" +"NM-17716","2.940000057220459","2.940000057220459","","1946-11-26T00:00:00Z","","0" +"SB-0299","138.0500030517578","138.0500030517578","","2010-11-15T00:00:00Z","","0" +"NM-21526","310.3999938964844","310.3999938964844","","1992-05-08T00:00:00Z","","0" +"NM-06537","121.9800033569336","121.9800033569336","","1968-01-23T00:00:00Z","","0" +"NM-11942","1.9600000381469727","1.9600000381469727","","1949-07-19T00:00:00Z","","0" +"NM-17716","3.049999952316284","3.049999952316284","","1945-06-10T00:00:00Z","","0" +"NM-13859","-9.09000015258789","-9.09000015258789","","1910-09-12T00:00:00Z","","0" +"EB-268","30.510000228881836","30.510000228881836","","1997-06-24T00:00:00Z","","0" +"NM-01858","9.819999694824219","9.819999694824219","","1962-12-27T00:00:00Z","","0" +"NM-05972","34.029998779296875","34.029998779296875","","1969-01-16T00:00:00Z","","0" +"NM-00644","133.3699951171875","133.3699951171875","","1977-06-01T00:00:00Z","","0" +"SB-0030","115.54000091552734","115.54000091552734","","2007-04-18T00:00:00Z","","0" +"NM-01516","174.17999267578125","174.17999267578125","R","2015-02-23T00:00:00Z","","0" +"EB-242","53.36000061035156","52.560001373291016","","2012-01-14T00:00:00Z","","0.800000011920929" +"NM-02069","387.6700134277344","387.6700134277344","","1995-01-30T00:00:00Z","","0" +"NM-00645","32.34000015258789","32.34000015258789","","2005-10-14T00:00:00Z","","0" +"NM-17716","6.130000114440918","6.130000114440918","","1948-10-14T00:00:00Z","","0" +"NM-10381","-52.97999954223633","-52.97999954223633","","1908-08-25T00:00:00Z","","0" +"NM-27582","84.5999984741211","84.5999984741211","","1977-01-14T00:00:00Z","","0" +"NM-06162","82.4000015258789","82.4000015258789","","1984-12-13T00:00:00Z","","0" +"NM-17404","60.380001068115234","60.380001068115234","","1975-08-12T00:00:00Z","","0" +"NM-14802","103.77999877929688","103.77999877929688","","1978-12-01T00:00:00Z","","0" +"NM-10769","60.540000915527344","60.540000915527344","","1971-01-13T00:00:00Z","","0" +"NM-16831","8.619999885559082","8.619999885559082","","1953-03-26T00:00:00Z","","0" +"NM-03698","215.55999755859375","215.55999755859375","","2003-01-14T00:00:00Z","","0" +"NM-02669","60.13999938964844","60.13999938964844","","1991-09-27T00:00:00Z","","0" +"DE-0107","33.5099983215332","33.5099983215332","","2001-12-11T00:00:00Z","","0" +"NM-07671","29.700000762939453","29.700000762939453","","1948-05-24T00:00:00Z","","0" +"NM-08476","13.350000381469727","13.350000381469727","","2008-05-13T00:00:00Z","","0" +"NM-12725","24.360000610351562","24.360000610351562","P","1958-01-17T00:00:00Z","","0" +"NM-21082","26.1200008392334","26.1200008392334","","1962-02-08T00:00:00Z","","0" +"NM-26427","2.569999933242798","2.569999933242798","","1986-03-20T00:00:00Z","","0" +"NM-01899","66.91999816894531","66.91999816894531","","2005-12-21T00:00:00Z","","0" +"NM-28257","-18.18000030517578","-18.18000030517578","","1998-10-25T00:00:00Z","","0" +"AB-0162","489.0199890136719","489.0199890136719","","2013-01-16T00:00:00Z","","" +"NM-07652","83.70999908447266","83.70999908447266","","1969-01-13T00:00:00Z","","0" +"NM-01921","38.869998931884766","38.869998931884766","","1996-07-02T00:00:00Z","","0" +"NM-03455","292.54998779296875","292.54998779296875","","1959-10-08T00:00:00Z","","0" +"NM-20598","144.14999389648438","144.14999389648438","P","1955-08-02T00:00:00Z","","0" +"NM-16781","42.29999923706055","42.29999923706055","","1965-02-18T00:00:00Z","","0" +"NM-01796","5.300000190734863","5.300000190734863","","1947-12-15T00:00:00Z","","0" +"NM-28254","35.04999923706055","35.04999923706055","","1970-12-15T00:00:00Z","","0" +"BC-0151","115.31999969482422","115.31999969482422","","2013-06-13T00:00:00Z","","0" +"NM-05404","173.8000030517578","173.8000030517578","P","1961-07-30T00:00:00Z","","0" +"EB-488","395.70001220703125","392.70001220703125","Z","2007-04-30T00:00:00Z","","3" +"NM-02710","36.54999923706055","36.54999923706055","","1980-05-01T00:00:00Z","","0" +"NM-02518","7.199999809265137","7.199999809265137","","1960-10-15T00:00:00Z","","0" +"NM-02520","11.800000190734863","11.800000190734863","Z","1973-08-15T00:00:00Z","","0" +"NM-00644","8.890000343322754","8.890000343322754","","1999-01-08T00:00:00Z","","0" +"NM-07114","76.08000183105469","76.08000183105469","","2002-04-03T00:00:00Z","","0" +"NM-02684","20.729999542236328","20.729999542236328","","1962-01-19T00:00:00Z","","0" +"NM-03615","201.35000610351562","201.35000610351562","","1977-01-26T00:00:00Z","","0" +"WL-0150","392.489990234375","391.8899841308594","","2019-09-05T00:00:00Z","0001-01-01T09:43:00Z","0.6000000238418579" +"NM-17716","-1.5099999904632568","-1.5099999904632568","","1942-01-29T00:00:00Z","","0" +"NM-02101","5.800000190734863","5.800000190734863","","1970-06-15T00:00:00Z","","0" +"NM-20998","19.420000076293945","19.420000076293945","","1942-08-14T00:00:00Z","","0" +"AB-0067","150.9600067138672","150.9600067138672","","2008-10-16T00:00:00Z","","" +"NM-12564","29.729999542236328","29.729999542236328","","1961-06-28T00:00:00Z","","0" +"NM-10710","19.600000381469727","19.600000381469727","","1956-01-17T00:00:00Z","","0" +"NM-17142","41.08000183105469","41.08000183105469","","1957-03-12T00:00:00Z","","0" +"NM-02781","71.05999755859375","71.05999755859375","","1967-01-27T00:00:00Z","","0" +"NM-00644","137.97000122070312","137.97000122070312","","1973-06-01T00:00:00Z","","0" +"NM-10458","17.799999237060547","17.799999237060547","","1984-01-25T00:00:00Z","","0" +"NM-03401","11.550000190734863","11.550000190734863","","2005-09-07T00:00:00Z","","0" +"EB-266","16.420000076293945","16.420000076293945","","2001-05-31T00:00:00Z","","0" +"NM-07075","48","48","","1950-07-18T00:00:00Z","","0" +"NM-08071","9.100000381469727","9.100000381469727","","1960-11-15T00:00:00Z","","0" +"NM-27478","84.44000244140625","84.44000244140625","","1961-01-03T00:00:00Z","","0" +"NM-00700","46.459999084472656","46.459999084472656","","1981-02-13T00:00:00Z","","0" +"NM-10756","55.790000915527344","55.790000915527344","","1953-11-23T00:00:00Z","","0" +"NM-11771","46.91999816894531","46.91999816894531","","1937-07-19T00:00:00Z","","0" +"NM-25868","12.1899995803833","12.1899995803833","","1966-12-14T00:00:00Z","","0" +"NM-11961","45.54999923706055","45.54999923706055","","1974-01-11T00:00:00Z","","0" +"NM-03300","44.65999984741211","44.65999984741211","","1948-08-10T00:00:00Z","","0" +"NM-03326","26.5","26.5","","1957-02-07T00:00:00Z","","0" +"NM-00946","297.2200012207031","297.2200012207031","","1984-01-18T00:00:00Z","","0" +"SO-0180","10.84000015258789","10","","2021-10-25T00:00:00Z","0001-01-01T07:30:00Z","0.8399999737739563" +"NM-14082","196.5","196.5","","1960-01-08T00:00:00Z","","0" +"NM-03429","47.459999084472656","47.459999084472656","","2002-09-19T00:00:00Z","","0" +"NM-04551","73.06999969482422","73.06999969482422","","1953-01-21T00:00:00Z","","0" +"NM-06791","513.2000122070312","513.2000122070312","Z","2010-03-10T00:00:00Z","","0" +"NM-22154","6.46999979019165","6.46999979019165","Z","2009-08-04T00:00:00Z","","0" +"NM-20237","17.68000030517578","17.68000030517578","","1949-02-14T00:00:00Z","","0" +"AB-0105","413.5","413.5","","2009-03-10T00:00:00Z","","" +"NM-11965","12.649999618530273","12.649999618530273","","1946-01-24T00:00:00Z","","0" +"BC-0097","","191","","2021-10-27T00:00:00Z","","1.809999942779541" +"NM-03311","84.08999633789062","84.08999633789062","","1985-02-20T00:00:00Z","","0" +"NM-21558","6.559999942779541","6.559999942779541","Z","2005-11-30T00:00:00Z","","0" +"NM-11541","107.43000030517578","107.43000030517578","","1955-01-24T00:00:00Z","","0" +"NM-02283","26.040000915527344","26.040000915527344","","2007-10-22T00:00:00Z","","0" +"NM-17087","27.479999542236328","27.479999542236328","","1940-01-27T00:00:00Z","","0" +"NM-08664","-93.4000015258789","-93.4000015258789","","1905-07-08T00:00:00Z","","0" +"NM-03365","49.04999923706055","49.04999923706055","","1999-02-22T00:00:00Z","","0" +"NM-01992","111.12000274658203","111.12000274658203","","1980-01-04T00:00:00Z","","0" +"NM-03421","28.940000534057617","28.940000534057617","T","1983-04-25T00:00:00Z","","0" +"NM-03002","46.4900016784668","46.4900016784668","","1958-01-24T00:00:00Z","","0" +"NM-16942","24.90999984741211","24.90999984741211","","1956-01-16T00:00:00Z","","0" +"NM-02493","30.579999923706055","30.579999923706055","","2005-01-31T00:00:00Z","","0" +"NM-28251","69.2300033569336","69.2300033569336","","2008-02-15T00:00:00Z","","0" +"SA-0009","264.8999938964844","268.5","S","2009-02-23T00:00:00Z","","-3.5999999046325684" +"AB-0113","216.63999938964844","216.63999938964844","","2000-02-24T00:00:00Z","","" +"NM-00574","72.79000091552734","72.79000091552734","","2000-01-05T00:00:00Z","","0" +"NM-07874","53.68000030517578","53.68000030517578","","1968-03-13T00:00:00Z","","0" +"BC-0216","100.20999908447266","100.20999908447266","","2016-03-10T00:00:00Z","","0" +"NM-00543","54.88999938964844","54.88999938964844","","1987-01-08T00:00:00Z","","0" +"NM-00395","43.31999969482422","43.31999969482422","","1997-01-03T00:00:00Z","","0" +"NM-03323","72.54000091552734","72.54000091552734","Z","1996-05-08T00:00:00Z","","0" +"NM-02029","7.800000190734863","7.800000190734863","","1997-07-15T00:00:00Z","","0" +"NM-10144","34.150001525878906","34.150001525878906","","1989-01-26T00:00:00Z","","0" +"NM-05963","31.8799991607666","31.8799991607666","","1940-03-14T00:00:00Z","","0" +"SV-0006","151.5","149.8333282470703","","2015-04-26T00:00:00Z","","1.6666666269302368" +"NM-12466","11.130000114440918","11.130000114440918","","1959-12-10T00:00:00Z","","0" +"NM-03420","40.59000015258789","40.59000015258789","Z","1996-04-29T00:00:00Z","","0" +"NM-16626","39.150001525878906","39.150001525878906","","1966-01-05T00:00:00Z","","0" +"NM-00643","103.19999694824219","103.19999694824219","","2003-11-25T00:00:00Z","","0" +"NM-00534","62.75","62.75","","1990-01-05T00:00:00Z","","0" +"NM-05490","88.80999755859375","88.80999755859375","","1955-01-10T00:00:00Z","","0" +"NM-05827","63.130001068115234","63.130001068115234","","1968-01-26T00:00:00Z","","0" +"NM-01891","42.779998779296875","42.779998779296875","","1993-01-20T00:00:00Z","","0" +"BC-0185","432.45001220703125","432.45001220703125","","2015-06-04T00:00:00Z","","0" +"NM-21430","44.90999984741211","44.90999984741211","","1950-08-22T00:00:00Z","","0" +"NM-22409","150.14999389648438","150.14999389648438","","1979-05-01T00:00:00Z","","0" +"EB-217","57.599998474121094","56.29999923706055","","1974-10-31T00:00:00Z","","1.2999999523162842" +"NM-01955","7.199999809265137","7.199999809265137","","1956-11-15T00:00:00Z","","0" +"NM-07160","74.06999969482422","74.06999969482422","","2009-06-17T00:00:00Z","","0" +"NM-06090","70.80000305175781","70.80000305175781","","1936-11-22T00:00:00Z","","0" +"NM-02256","5.099999904632568","5.099999904632568","","1967-06-15T00:00:00Z","","0" +"NM-01898","78.33000183105469","78.33000183105469","","2009-01-26T00:00:00Z","","0" +"SM-0066","35.900001525878906","36.25","","2008-07-15T00:00:00Z","","-0.3499999940395355" +"AB-0162","486.07000732421875","486.07000732421875","","1999-02-26T00:00:00Z","","" +"NM-07275","9.579999923706055","9.579999923706055","","1951-05-08T00:00:00Z","","0" +"NM-01985","14.449999809265137","14.449999809265137","","2004-02-25T00:00:00Z","","0" +"DE-0082","90.48999786376953","90.48999786376953","","2013-05-07T00:00:00Z","","0" +"AB-0039","350.55999755859375","350.55999755859375","","1999-12-02T00:00:00Z","","" +"NM-02090","86.2699966430664","86.2699966430664","S","1960-04-08T00:00:00Z","","0" +"NM-00680","48.5","48.5","","2001-07-13T00:00:00Z","","0" +"SB-0275","226.41000366210938","226.41000366210938","","2009-01-21T00:00:00Z","","0" +"NM-00380","","","W","2016-01-06T00:00:00Z","","0" +"AR-0219","5.769999980926514","4.639999866485596","","2018-07-24T00:00:00Z","0001-01-01T13:14:00Z","1.1299999952316284" +"NM-01565","-242.85000610351562","-242.85000610351562","","1988-05-13T00:00:00Z","","0" +"NM-12705","15.579999923706055","15.579999923706055","","1981-03-04T00:00:00Z","","0" +"AB-0165","481.79998779296875","481.79998779296875","","2014-10-06T00:00:00Z","","" +"NM-13092","8.800000190734863","8.800000190734863","","1973-07-17T00:00:00Z","","0" +"NM-07225","191.05999755859375","191.05999755859375","","2015-09-28T00:00:00Z","","0" +"NM-19906","34.86000061035156","34.86000061035156","","1942-09-23T00:00:00Z","","0" +"SB-0299","101.12000274658203","101.12000274658203","","1967-01-20T00:00:00Z","","0" +"WL-0090","41.54166793823242","39.16166687011719","","1989-12-21T00:00:00Z","","2.380000114440918" +"NM-14955","42.95000076293945","42.95000076293945","","1972-02-08T00:00:00Z","","0" +"NM-17057","38.86000061035156","38.86000061035156","","1955-01-19T00:00:00Z","","0" +"NM-02520","6.699999809265137","6.699999809265137","","2002-05-15T00:00:00Z","","0" +"NM-11420","61.349998474121094","61.349998474121094","","1970-01-08T00:00:00Z","","0" +"NM-06676","11.5","11.5","","1966-12-15T00:00:00Z","","0" +"NM-01698","38.59000015258789","38.59000015258789","","1998-05-19T00:00:00Z","","0" +"NM-02309","174.05999755859375","174.05999755859375","","1996-02-02T00:00:00Z","","0" +"NM-00366","133.33999633789062","133.33999633789062","","1984-05-25T00:00:00Z","","0" +"NM-06848","13.670000076293945","13.670000076293945","","1952-01-12T00:00:00Z","","0" +"NM-12551","104.04000091552734","104.04000091552734","","1963-09-30T00:00:00Z","","0" +"NM-05765","50.68000030517578","50.68000030517578","","1933-06-17T00:00:00Z","","0" +"NM-06600","50.189998626708984","50.189998626708984","","1948-01-07T00:00:00Z","","0" +"NM-01299","96.9800033569336","96.9800033569336","","2006-09-26T00:00:00Z","","0" +"NM-12375","25.670000076293945","25.670000076293945","","1972-01-12T00:00:00Z","","0" +"NM-28252","62.150001525878906","62.150001525878906","","1970-05-25T00:00:00Z","","0" +"NM-00064","113.6500015258789","113.6500015258789","","1983-01-25T00:00:00Z","","0" +"AB-0037","337.0799865722656","337.0799865722656","","1997-10-23T00:00:00Z","","" +"NM-13778","-9.09000015258789","-9.09000015258789","","1906-09-06T00:00:00Z","","0" +"NM-05349","38.97999954223633","38.97999954223633","","1955-07-13T00:00:00Z","","0" +"NM-02548","50.66999816894531","50.66999816894531","","1991-01-30T00:00:00Z","","0" +"NM-02134","317.0400085449219","317.0400085449219","","1996-02-13T00:00:00Z","","0" +"NM-17716","4.75","4.75","","1949-08-29T00:00:00Z","","0" +"NM-22953","392.20001220703125","392.20001220703125","","1958-04-22T00:00:00Z","","0" +"NM-02215","155.39999389648438","155.39999389648438","","1969-01-15T00:00:00Z","","0" +"NM-04554","133.5800018310547","133.5800018310547","","1992-02-04T00:00:00Z","","0" +"NM-10270","12.460000038146973","12.460000038146973","","1974-01-10T00:00:00Z","","0" +"NM-13014","234.47999572753906","234.47999572753906","","1947-06-30T00:00:00Z","","0" +"NM-00353","69.44999694824219","69.44999694824219","","1953-11-20T00:00:00Z","","0" +"NM-02195","70.55999755859375","70.55999755859375","","1951-01-10T00:00:00Z","","0" +"NM-01888","9.859999656677246","9.859999656677246","","2006-12-19T00:00:00Z","","0" +"EB-337","201.80999755859375","201.80999755859375","","2013-10-23T00:00:00Z","","0" +"NM-14337","59.63999938964844","59.63999938964844","","1930-08-07T00:00:00Z","","0" +"NM-18497","271.989990234375","271.989990234375","R","1962-03-08T00:00:00Z","","0" +"NM-14031","-17.170000076293945","-17.170000076293945","","1911-10-12T00:00:00Z","","0" +"NM-00229","67.06999969482422","67.06999969482422","","2010-09-14T00:00:00Z","","0" +"NM-00974","349.8500061035156","349.8500061035156","","1978-08-08T00:00:00Z","","0" +"EB-387","98.44000244140625","97.20000457763672","","1999-01-27T00:00:00Z","","1.2400000095367432" +"NM-03016","183.22000122070312","183.22000122070312","","1993-01-08T00:00:00Z","","0" +"NM-01796","7","7","","1979-04-15T00:00:00Z","","0" +"NM-12230","50.619998931884766","50.619998931884766","","1966-02-15T00:00:00Z","","0" +"NM-02017","7.800000190734863","7.800000190734863","","1962-05-15T00:00:00Z","","0" +"NM-11566","-28.719999313354492","-28.719999313354492","","1907-03-21T00:00:00Z","","0" +"NM-03047","52.04999923706055","52.04999923706055","","1961-01-11T00:00:00Z","","0" +"EB-156","313.1600036621094","310.33001708984375","","2000-07-20T00:00:00Z","","2.8299999237060547" +"NM-27692","104.4800033569336","104.4800033569336","","1972-01-26T00:00:00Z","","0" +"NM-13124","-51.81999969482422","-51.81999969482422","","1907-12-11T00:00:00Z","","0" +"HS-061","11.25","8.899999618530273","","2021-04-06T00:00:00Z","0001-01-01T12:21:00Z","2.3499999046325684" +"NM-02772","134.3800048828125","134.3800048828125","","1984-07-01T00:00:00Z","","0" +"NM-28250","67.58999633789062","67.58999633789062","","1997-08-25T00:00:00Z","","0" +"NM-27722","34.25","34.25","","1948-01-07T00:00:00Z","","0" +"NM-02710","39.33000183105469","39.33000183105469","","1982-01-01T00:00:00Z","","0" +"NM-02163","15.350000381469727","15.350000381469727","","2006-07-12T00:00:00Z","","0" +"EB-229","217.6699981689453","223.6699981689453","","1984-10-22T00:00:00Z","","-6" +"NM-03392","149.57000732421875","149.57000732421875","Z","1991-02-05T00:00:00Z","","0" +"BC-0208","187.89999389648438","187.89999389648438","","2015-11-30T00:00:00Z","","0" +"NM-16575","24.40999984741211","24.40999984741211","","1955-03-17T00:00:00Z","","0" +"SO-0196","11.460000038146973","10.489999771118164","","2021-09-17T00:00:00Z","0001-01-01T14:55:00Z","0.9700000286102295" +"NM-03627","28.100000381469727","28.100000381469727","","2003-03-12T00:00:00Z","","0" +"NM-04632","14.100000381469727","14.100000381469727","","1958-05-15T00:00:00Z","","0" +"NM-17702","19.65999984741211","19.65999984741211","","1948-01-07T00:00:00Z","","0" +"NM-25279","-85","-85","","1977-11-18T00:00:00Z","","0" +"NM-18146","167.5500030517578","167.5500030517578","","1954-02-28T00:00:00Z","","0" +"NM-03990","","","O","2001-02-27T00:00:00Z","","0" +"NM-01787","283.8399963378906","283.8399963378906","","1978-01-03T00:00:00Z","","0" +"NM-03463","218.60000610351562","218.60000610351562","","1951-10-30T00:00:00Z","","0" +"NM-14067","-9.09000015258789","-9.09000015258789","","1907-03-08T00:00:00Z","","0" +"SM-0117","23.389999389648438","23.389999389648438","","1983-02-10T00:00:00Z","","0" +"NM-12392","256.1000061035156","256.1000061035156","","1979-08-01T00:00:00Z","","0" +"NM-14361","59.25","59.25","","1952-09-03T00:00:00Z","","0" +"NM-16882","15.470000267028809","15.470000267028809","","1939-05-19T00:00:00Z","","0" +"NM-03424","11.649999618530273","11.649999618530273","","2005-09-07T00:00:00Z","","0" +"NM-13667","39.54999923706055","39.54999923706055","","1939-02-02T00:00:00Z","","0" +"EB-270","221.66000366210938","221.66000366210938","","1999-06-23T00:00:00Z","","0" +"NM-12259","155.85000610351562","155.85000610351562","P","1961-03-23T00:00:00Z","","0" +"NM-04464","106.5","106.5","","1964-01-07T00:00:00Z","","0" +"NM-25680","-97.45999908447266","-97.45999908447266","","1988-06-26T00:00:00Z","","0" +"NM-26781","20.049999237060547","20.049999237060547","P","1993-03-26T00:00:00Z","","0" +"NM-12597","60.63999938964844","60.63999938964844","","1947-11-06T00:00:00Z","","0" +"NM-02367","25.56999969482422","25.56999969482422","","1957-04-25T00:00:00Z","","0" +"NM-21915","68.26000213623047","68.26000213623047","R","1992-05-21T00:00:00Z","","0" +"NM-28259","48.369998931884766","48.369998931884766","","1951-06-05T00:00:00Z","","0" +"NM-01948","5.900000095367432","5.900000095367432","","1966-11-15T00:00:00Z","","0" +"NM-01796","6","6","","1972-03-15T00:00:00Z","","0" +"NM-02664","73.43000030517578","73.43000030517578","","2005-01-24T00:00:00Z","","0" +"NM-08024","12.699999809265137","12.699999809265137","","1962-02-15T00:00:00Z","","0" +"EB-246","258.4100036621094","258.4100036621094","","1987-01-25T00:00:00Z","","0" +"NM-16451","47.459999084472656","47.459999084472656","","1982-02-24T00:00:00Z","","0" +"NM-08168","64.5999984741211","64.5999984741211","","1954-05-28T00:00:00Z","","0" +"NM-13908","-24.100000381469727","-24.100000381469727","","1913-01-01T00:00:00Z","","0" +"NM-16245","180.5","180.5","","1980-06-25T00:00:00Z","","0" +"NM-02260","34.869998931884766","34.869998931884766","","1954-03-26T00:00:00Z","","0" +"NM-28250","79.02999877929688","79.02999877929688","","2002-03-05T00:00:00Z","","0" +"NM-04470","59.779998779296875","59.779998779296875","","1962-08-17T00:00:00Z","","0" +"NM-22621","29.329999923706055","29.329999923706055","","1983-03-23T00:00:00Z","","0" +"NM-02669","59.59000015258789","59.59000015258789","","1978-12-01T00:00:00Z","","0" +"NM-15802","83","83","","1979-11-10T00:00:00Z","","0" +"SB-0299","104.83999633789062","104.83999633789062","","1970-02-28T00:00:00Z","","0" +"NM-04570","53.77000045776367","53.77000045776367","","1948-11-21T00:00:00Z","","0" +"NM-11017","37.970001220703125","37.970001220703125","P","1934-08-18T00:00:00Z","","0" +"NM-07868","16.780000686645508","16.780000686645508","","1968-01-02T00:00:00Z","","0" +"NM-22529","279.8500061035156","279.8500061035156","","1971-01-14T00:00:00Z","","0" +"NM-04052","253","253","","1913-08-21T00:00:00Z","","0" +"NM-21631","434.07000732421875","434.07000732421875","","2007-12-26T00:00:00Z","","0" +"NM-14631","53.2599983215332","53.2599983215332","","1961-01-04T00:00:00Z","","0" +"NM-02005","6.699999809265137","6.699999809265137","","1975-10-15T00:00:00Z","","0" +"WL-0086","42.125","40.3650016784668","","1994-08-02T00:00:00Z","","1.7599999904632568" +"NM-23004","5.53000020980835","5.53000020980835","Z","2008-10-15T00:00:00Z","","0" +"NM-01695","32.630001068115234","32.630001068115234","","1987-07-28T00:00:00Z","","0" +"NM-09488","8.399999618530273","8.399999618530273","","1972-07-28T00:00:00Z","","0" +"SA-0019","72.36000061035156","72.05999755859375","","2018-02-20T00:00:00Z","0001-01-01T15:26:00Z","0.30000001192092896" +"NM-03197","345.45001220703125","345.45001220703125","","1991-01-06T00:00:00Z","","0" +"NM-14513","114.04000091552734","114.04000091552734","","1991-01-16T00:00:00Z","","0" +"NM-04579","60.900001525878906","60.900001525878906","","1941-11-09T00:00:00Z","","0" +"SV-0127","297.3999938964844","295.8999938964844","","2016-08-13T00:00:00Z","","1.5" +"NM-18828","348.7099914550781","348.7099914550781","","2015-01-28T00:00:00Z","","0" +"NM-01773","310.3500061035156","310.3500061035156","","2012-01-27T00:00:00Z","","0" +"SB-0299","127.16999816894531","127.16999816894531","","1976-04-05T00:00:00Z","","0" +"NM-14281","-14.859999656677246","-14.859999656677246","","1910-12-15T00:00:00Z","","0" +"NM-10376","32.56999969482422","32.56999969482422","","1950-01-12T00:00:00Z","","0" +"NM-08232","995.25","995.25","","1957-02-01T00:00:00Z","","0" +"NM-04389","81.63999938964844","81.63999938964844","","1992-02-18T00:00:00Z","","0" +"NM-13619","-26.40999984741211","-26.40999984741211","","1908-09-18T00:00:00Z","","0" +"NM-13513","-9.890000343322754","-9.890000343322754","","1909-06-15T00:00:00Z","","0" +"NM-02196","23.530000686645508","23.530000686645508","","2007-06-18T00:00:00Z","","0" +"NM-15702","61.470001220703125","61.470001220703125","R","1975-02-26T00:00:00Z","","0" +"NM-01447","272.55999755859375","272.55999755859375","","1988-03-10T00:00:00Z","","0" +"NM-03419","34.4900016784668","34.4900016784668","","2000-12-13T00:00:00Z","","0" +"NM-10092","39.33000183105469","39.33000183105469","","1948-09-27T00:00:00Z","","0" +"WL-0091","49.79166793823242","47.02166748046875","","1991-04-18T00:00:00Z","","2.7699999809265137" +"BC-0043","378.2699890136719","378.2699890136719","","2014-12-01T00:00:00Z","","0" +"NM-10655","46.34000015258789","46.34000015258789","","1955-09-01T00:00:00Z","","0" +"NM-28254","79.5999984741211","79.5999984741211","","1972-03-05T00:00:00Z","","0" +"NM-13121","5.260000228881836","5.260000228881836","","1977-10-26T00:00:00Z","","0" +"NM-00367","120.43000030517578","120.43000030517578","","1974-03-01T00:00:00Z","","0" +"NM-03269","301.8999938964844","301.8999938964844","","1981-01-09T00:00:00Z","","0" +"NM-12967","2.2200000286102295","2.2200000286102295","","1978-09-07T00:00:00Z","","0" +"NM-02809","31.43000030517578","31.43000030517578","","1958-02-27T00:00:00Z","","0" +"SD-0055","26.399999618530273","26.399999618530273","","1950-01-17T00:00:00Z","","0" +"AB-0165","479.2699890136719","479.2699890136719","","1998-08-28T00:00:00Z","","" +"NM-02852","64.37999725341797","64.37999725341797","","1968-01-03T00:00:00Z","","0" +"NM-02806","9.670000076293945","9.670000076293945","","2004-01-26T00:00:00Z","","0" +"NM-03685","74.9000015258789","74.9000015258789","","1993-01-26T00:00:00Z","","0" +"SB-0914","","","D","2020-08-19T00:00:00Z","0001-01-01T09:36:00Z","" +"NM-05610","150.5","150.5","P","1953-03-19T00:00:00Z","","0" +"NM-02665","78.22000122070312","78.22000122070312","","1979-02-22T00:00:00Z","","0" +"NM-07962","94.54000091552734","94.54000091552734","","2005-01-31T00:00:00Z","","0" +"TB-0173","52.779998779296875","51.47999954223633","","2009-09-29T00:00:00Z","","1.2999999523162842" +"NM-01872","9.5","9.5","","1973-02-15T00:00:00Z","","0" +"NM-28009","498.7200012207031","498.7200012207031","S","2015-05-18T00:00:00Z","","0" +"EB-288","92.83999633789062","92.83999633789062","","1974-04-04T00:00:00Z","","0" +"NM-27326","24","24","","1972-01-07T00:00:00Z","","0" +"NM-28259","82.68000030517578","82.68000030517578","","1959-05-15T00:00:00Z","","0" +"NM-15044","461.6000061035156","461.6000061035156","","1976-12-01T00:00:00Z","","0" +"NM-10906","26.719999313354492","26.719999313354492","","1944-07-20T00:00:00Z","","0" +"NM-28253","26.5","26.5","","1976-01-05T00:00:00Z","","0" +"NM-02773","61.060001373291016","61.060001373291016","","1984-03-01T00:00:00Z","","0" +"NM-28259","187.66000366210938","187.66000366210938","","2012-08-15T00:00:00Z","","0" +"NM-03903","331.04998779296875","331.04998779296875","","1976-06-01T00:00:00Z","","0" +"NM-03313","315.7699890136719","315.7699890136719","","1992-09-01T00:00:00Z","","0" +"NM-00627","63.70000076293945","63.70000076293945","","1994-01-03T00:00:00Z","","0" +"NM-00669","8.729999542236328","8.729999542236328","","2010-03-25T00:00:00Z","","0" +"EB-085","371.3900146484375","378.8900146484375","","1982-10-12T00:00:00Z","","-7.5" +"DE-0242","110.4000015258789","110.4000015258789","","2010-06-28T00:00:00Z","","0" +"NM-22446","156.72000122070312","156.72000122070312","Z","2000-01-25T00:00:00Z","","0" +"NM-01858","11.65999984741211","11.65999984741211","","2004-01-29T00:00:00Z","","0" +"NM-23200","6.059999942779541","6.059999942779541","","1992-03-27T00:00:00Z","","0" +"NM-28256","270.8900146484375","270.8900146484375","","1983-08-25T00:00:00Z","","0" +"NM-11550","-18.479999542236328","-18.479999542236328","","1908-09-20T00:00:00Z","","0" +"NM-02396","6","6","","1986-11-15T00:00:00Z","","0" +"AR-0017","2.259999990463257","1.659999966621399","","2018-09-25T00:00:00Z","0001-01-01T08:14:00Z","0.6000000238418579" +"NM-01800","151.0399932861328","151.0399932861328","","1971-01-19T00:00:00Z","","0" +"NM-01895","59.08000183105469","59.08000183105469","","2002-12-16T00:00:00Z","","0" +"NM-28255","2.25","2.25","","1951-12-05T00:00:00Z","","0" +"NM-12485","11.470000267028809","11.470000267028809","","1968-10-09T00:00:00Z","","0" +"BC-0133","328.5899963378906","328.5899963378906","","2010-12-15T00:00:00Z","","0" +"NM-21894","5.769999980926514","5.769999980926514","Z","2010-08-27T00:00:00Z","","0" +"NM-11322","2.450000047683716","2.450000047683716","","1970-04-02T00:00:00Z","","0" +"NM-12893","20.56999969482422","20.56999969482422","P","1963-07-24T00:00:00Z","","0" +"NM-25223","368.8399963378906","368.8399963378906","","1968-06-21T00:00:00Z","","0" +"NM-19505","88.22000122070312","88.22000122070312","","1972-02-24T00:00:00Z","","0" +"SO-0200","14.449999809265137","13.609999656677246","","2021-03-12T00:00:00Z","0001-01-01T13:15:00Z","0.8399999737739563" +"NM-01926","4.400000095367432","4.400000095367432","","1984-08-15T00:00:00Z","","0" +"DE-0122","35.790000915527344","35.790000915527344","","2005-11-10T00:00:00Z","","0" +"NM-02314","17.100000381469727","17.100000381469727","","1957-06-15T00:00:00Z","","0" +"NM-14802","99.95999908447266","99.95999908447266","","1968-05-24T00:00:00Z","","0" +"NM-00539","188.4600067138672","188.4600067138672","","1961-03-23T00:00:00Z","","0" +"UC-0134","8.649999618530273","8.649999618530273","","2002-03-22T00:00:00Z","","0" +"NM-02654","116.54000091552734","116.54000091552734","","1999-08-26T00:00:00Z","","0" +"NM-12762","28.65999984741211","28.65999984741211","P","1966-02-16T00:00:00Z","","0" +"NM-03394","18.209999084472656","18.209999084472656","Z","2010-02-24T00:00:00Z","","0" +"NM-03205","440.70001220703125","440.70001220703125","","1995-01-05T00:00:00Z","","0" +"NM-03231","20.979999542236328","20.979999542236328","","1946-05-14T00:00:00Z","","0" +"NM-28250","82.12999725341797","82.12999725341797","","2002-12-15T00:00:00Z","","0" +"BC-0013","72.31999969482422","72.31999969482422","","2014-03-03T00:00:00Z","","0" +"NM-08153","14.729999542236328","14.729999542236328","","1949-07-21T00:00:00Z","","0" +"NM-10732","38.560001373291016","38.560001373291016","","1939-11-08T00:00:00Z","","0" +"NM-20974","190.85000610351562","190.85000610351562","","1968-01-29T00:00:00Z","","0" +"NM-02487","9.100000381469727","9.100000381469727","","1960-09-15T00:00:00Z","","0" +"NM-24271","59","59","","1980-12-10T00:00:00Z","","0" +"NM-07141","87.2300033569336","87.2300033569336","","2005-10-05T00:00:00Z","","0" +"EB-209","65.83000183105469","64.58000183105469","","1976-06-07T00:00:00Z","","1.25" +"NM-21909","459.3800048828125","459.3800048828125","S","2013-12-04T00:00:00Z","","0" +"NM-13969","-9.65999984741211","-9.65999984741211","","1905-10-06T00:00:00Z","","0" +"NM-02090","81.79000091552734","81.79000091552734","","1958-08-04T00:00:00Z","","0" +"HS-002","14.210000038146973","12.210000038146973","","2013-12-11T00:00:00Z","","2" +"NM-02188","150.92999267578125","150.92999267578125","","1982-03-02T00:00:00Z","","0" +"NM-05242","371","371","","1968-04-12T00:00:00Z","","0" +"NM-11869","22.18000030517578","22.18000030517578","","1943-07-15T00:00:00Z","","0" +"NM-28250","82.33000183105469","82.33000183105469","","2000-10-05T00:00:00Z","","0" +"NM-14200","-16.020000457763672","-16.020000457763672","","1908-12-08T00:00:00Z","","0" +"NM-01854","74.19000244140625","74.19000244140625","","1962-01-26T00:00:00Z","","0" +"NM-11711","68.62000274658203","68.62000274658203","","1942-01-22T00:00:00Z","","0" +"AB-0213","157.35000610351562","157.35000610351562","","2014-06-18T00:00:00Z","","" +"AB-0037","339.6700134277344","339.6700134277344","","2002-10-30T00:00:00Z","","" +"NM-07116","177.4600067138672","177.4600067138672","","1979-02-01T00:00:00Z","","0" +"NM-13631","-44.88999938964844","-44.88999938964844","","1907-09-18T00:00:00Z","","0" +"NM-20061","47.689998626708984","47.689998626708984","","1948-05-30T00:00:00Z","","0" +"NM-01888","7.449999809265137","7.449999809265137","","1995-08-22T00:00:00Z","","0" +"NM-10366","28.780000686645508","28.780000686645508","","1962-01-23T00:00:00Z","","0" +"EB-012","181.32000732421875","181.32000732421875","","1984-11-30T00:00:00Z","","0" +"NM-05570","150.3800048828125","150.3800048828125","","1979-01-09T00:00:00Z","","0" +"NM-03073","244.89999389648438","244.89999389648438","","1994-01-06T00:00:00Z","","0" +"NM-28252","44.79999923706055","44.79999923706055","","1991-07-25T00:00:00Z","","0" +"NM-13594","49.63999938964844","49.63999938964844","","1972-06-26T00:00:00Z","","0" +"NM-28257","82.69999694824219","82.69999694824219","","1960-07-05T00:00:00Z","","0" +"NM-28259","138","138","","1969-09-25T00:00:00Z","","0" +"NM-11539","50.45000076293945","50.45000076293945","","1984-01-04T00:00:00Z","","0" +"NM-00224","56.02000045776367","56.02000045776367","","1960-01-12T00:00:00Z","","0" +"NM-22678","4.150000095367432","4.150000095367432","Z","2008-04-29T00:00:00Z","","0" +"NM-20638","34.70000076293945","34.70000076293945","","1972-02-16T00:00:00Z","","0" +"NM-00977","222.3800048828125","222.3800048828125","","2015-01-29T00:00:00Z","","0" +"EB-485","488.45001220703125","487.45001220703125","P","1992-09-30T00:00:00Z","","1" +"BC-0141","514.6400146484375","514.6400146484375","","2013-09-17T00:00:00Z","","0" +"NM-03444","51.900001525878906","51.900001525878906","Z","1995-07-05T00:00:00Z","","0" +"DE-0177","47.18000030517578","47.18000030517578","","2009-04-27T00:00:00Z","","0" +"DE-0111","38.08000183105469","38.08000183105469","","2008-06-02T00:00:00Z","","0" +"NM-03460","163.9499969482422","163.9499969482422","","1955-02-11T00:00:00Z","","0" +"NM-13944","-9.779999732971191","-9.779999732971191","","1914-01-28T00:00:00Z","","0" +"NM-00673","56.72999954223633","56.72999954223633","","1967-01-20T00:00:00Z","","0" +"NM-00227","137.8300018310547","137.8300018310547","","1996-02-14T00:00:00Z","","0" +"NM-28252","47.380001068115234","47.380001068115234","","1963-03-15T00:00:00Z","","0" +"NM-13735","-51.81999969482422","-51.81999969482422","","1912-01-26T00:00:00Z","","0" +"NM-14259","-14.859999656677246","-14.859999656677246","","1912-01-15T00:00:00Z","","0" +"WL-0031","370.7900085449219","369.6700134277344","","2017-04-26T00:00:00Z","","1.1200000047683716" +"NM-26677","181","181","","1962-08-20T00:00:00Z","","0" +"NM-03388","46.630001068115234","46.630001068115234","","1989-04-26T00:00:00Z","","0" +"NM-07426","194.19000244140625","194.19000244140625","","1955-04-26T00:00:00Z","","0" +"NM-01785","323.9599914550781","323.9599914550781","","1985-02-15T00:00:00Z","","0" +"NM-02682","22.920000076293945","22.920000076293945","","1949-01-15T00:00:00Z","","0" +"NM-13162","6.900000095367432","6.900000095367432","","1937-11-30T00:00:00Z","","0" +"NM-28257","-7.619999885559082","-7.619999885559082","","2006-10-25T00:00:00Z","","0" +"NM-02586","274.30999755859375","274.30999755859375","","1972-07-01T00:00:00Z","","0" +"NM-24296","12.630000114440918","12.630000114440918","","1992-02-05T00:00:00Z","","0" +"NM-14220","-6.78000020980835","-6.78000020980835","","1909-09-17T00:00:00Z","","0" +"NM-02556","108.9800033569336","108.9800033569336","","1991-07-21T00:00:00Z","","0" +"NM-17655","91.41999816894531","91.41999816894531","","1980-07-21T00:00:00Z","","0" +"EB-413","207.61000061035156","207.61000061035156","","2011-10-28T00:00:00Z","","0" +"EB-246","328","328","","1988-07-25T00:00:00Z","","0" +"NM-02583","166.6300048828125","166.6300048828125","","1994-02-18T00:00:00Z","","0" +"NM-11467","158.91000366210938","158.91000366210938","","1956-02-08T00:00:00Z","","0" +"NM-13594","28.34000015258789","28.34000015258789","","1976-02-05T00:00:00Z","","0" +"DE-0094","90.29000091552734","90.29000091552734","","2016-06-13T00:00:00Z","","0" +"NM-25139","","","D","2003-01-08T00:00:00Z","","0" +"NM-10099","192.14999389648438","192.14999389648438","","1982-09-15T00:00:00Z","","0" +"NM-02075","382.5400085449219","382.5400085449219","","1991-12-31T00:00:00Z","","0" +"NM-12285","-21.790000915527344","-21.790000915527344","","1911-06-09T00:00:00Z","","0" +"NM-03713","92.73999786376953","92.73999786376953","","1973-01-25T00:00:00Z","","0" +"NM-09008","100","100","","1958-10-31T00:00:00Z","","0" +"NM-19959","46.70000076293945","46.70000076293945","","1956-09-18T00:00:00Z","","0" +"NM-10434","56.38999938964844","56.38999938964844","","1981-01-07T00:00:00Z","","0" +"EB-140","282.29998779296875","282.29998779296875","","2003-10-29T00:00:00Z","","0" +"AR-0209","4.480000019073486","2.120000123977661","","2017-06-01T00:00:00Z","0001-01-01T15:24:00Z","2.359999895095825" +"NM-08424","24.850000381469727","24.850000381469727","","1957-01-16T00:00:00Z","","0" +"NM-02772","38.63999938964844","38.63999938964844","","1951-05-01T00:00:00Z","","0" +"NM-05375","70.18000030517578","70.18000030517578","","1939-01-15T00:00:00Z","","0" +"NM-02059","72.4800033569336","72.4800033569336","","1978-01-05T00:00:00Z","","0" +"NM-05709","48.349998474121094","48.349998474121094","","1932-07-09T00:00:00Z","","0" +"NM-05972","33.150001525878906","33.150001525878906","","1960-04-08T00:00:00Z","","0" +"NM-28251","68.30000305175781","68.30000305175781","","2004-03-25T00:00:00Z","","0" +"NM-02729","45.130001068115234","45.130001068115234","","1947-01-24T00:00:00Z","","0" +"NM-13803","-9.09000015258789","-9.09000015258789","","1906-09-10T00:00:00Z","","0" +"NM-25680","-98.18000030517578","-98.18000030517578","","1988-04-23T00:00:00Z","","0" +"NM-28011","496.80999755859375","496.80999755859375","S","2015-06-03T00:00:00Z","","0" +"NM-03112","314.4599914550781","314.4599914550781","","1990-01-04T00:00:00Z","","0" +"NM-22038","153.75","153.75","","1974-01-01T00:00:00Z","","0" +"NM-28257","-1.149999976158142","-1.149999976158142","","2012-12-26T00:00:00Z","","0" +"NM-02208","7.699999809265137","7.699999809265137","","1994-11-15T00:00:00Z","","0" +"NM-28259","136.25999450683594","136.25999450683594","","2000-06-05T00:00:00Z","","0" +"NM-18487","314.80999755859375","314.80999755859375","","2004-04-20T00:00:00Z","","0" +"AB-0092","494.9100036621094","494.9100036621094","","1998-09-14T00:00:00Z","","" +"NM-21360","245.25","245.25","","2016-07-06T00:00:00Z","","0" +"SA-0025","16.780000686645508","19.030000686645508","","2013-02-27T00:00:00Z","","-2.25" +"NM-05757","93.3499984741211","93.3499984741211","","1964-01-16T00:00:00Z","","0" +"NM-09290","175.39999389648438","175.39999389648438","","1955-04-06T00:00:00Z","","0" +"NM-02137","171.85000610351562","171.85000610351562","","2003-01-27T00:00:00Z","","0" +"NM-02652","69.18000030517578","69.18000030517578","","1962-01-23T00:00:00Z","","0" +"NM-14351","590.3099975585938","590.3099975585938","","1959-10-01T00:00:00Z","","0" +"EB-261","7.320000171661377","5.520000457763672","","2006-01-24T00:00:00Z","","1.7999999523162842" +"NM-20620","26.649999618530273","26.649999618530273","","1944-06-09T00:00:00Z","","0" +"TC-350","59.599998474121094","59.599998474121094","","1955-07-27T00:00:00Z","","0" +"NM-00956","338.1300048828125","338.1300048828125","","1975-01-03T00:00:00Z","","0" +"SA-0010","187.86000061035156","186.74000549316406","","2019-02-19T00:00:00Z","0001-01-01T11:52:00Z","1.1200000047683716" +"NM-02955","127.02999877929688","127.02999877929688","","1970-02-13T00:00:00Z","","0" +"NM-21504","6.739999771118164","6.739999771118164","","2006-08-21T00:00:00Z","","0" +"NM-24992","594.0499877929688","594.0499877929688","","2000-04-28T00:00:00Z","","0" +"NM-00307","36.02000045776367","36.02000045776367","","1995-06-20T00:00:00Z","","0" +"NM-00435","48.720001220703125","48.720001220703125","","1960-01-18T00:00:00Z","","0" +"NM-00257","94.68000030517578","94.68000030517578","","1972-09-01T00:00:00Z","","0" +"DE-0194","51.61000061035156","51.61000061035156","","2015-04-17T00:00:00Z","","0" +"NM-03506","151.1699981689453","151.1699981689453","","1978-01-31T00:00:00Z","","0" +"EB-219","69.25","67.75","","1980-01-18T00:00:00Z","","1.5" +"NM-10769","60.2400016784668","60.2400016784668","","1967-01-06T00:00:00Z","","0" +"NM-11928","-0.75","-0.75","","1945-08-01T00:00:00Z","","0" +"NM-01892","9.479999542236328","9.479999542236328","","1985-01-16T00:00:00Z","","0" +"NM-13902","8.550000190734863","8.550000190734863","","1971-10-15T00:00:00Z","","0" +"NM-24507","22.940000534057617","22.940000534057617","","1988-02-05T00:00:00Z","","0" +"NM-01904","87.72000122070312","87.72000122070312","","1975-01-16T00:00:00Z","","0" +"NM-01948","6","6","","1988-03-15T00:00:00Z","","0" +"NM-21552","389.29998779296875","389.29998779296875","","2005-08-31T00:00:00Z","","0" +"NM-28258","174.14999389648438","174.14999389648438","","2011-05-25T00:00:00Z","","0" +"NM-02043","5.699999809265137","5.699999809265137","","1984-08-15T00:00:00Z","","0" +"NM-03344","74.9000015258789","74.9000015258789","R","1993-01-11T00:00:00Z","","0" +"AB-0180","151.82000732421875","151.82000732421875","","1998-04-23T00:00:00Z","","" +"UC-0100","149.72999572753906","149.72999572753906","","1996-01-26T00:00:00Z","","0" +"NM-01891","53.31999969482422","53.31999969482422","","2000-03-21T00:00:00Z","","0" +"NM-28255","49.209999084472656","49.209999084472656","","1985-10-05T00:00:00Z","","0" +"NM-00721","84.13999938964844","84.13999938964844","","2014-05-28T00:00:00Z","","0" +"NM-02198","17.93000030517578","17.93000030517578","","2004-08-26T00:00:00Z","","0" +"NM-00204","50.81999969482422","50.81999969482422","","2008-11-04T00:00:00Z","","0" +"NM-20287","241.99000549316406","241.99000549316406","","1977-02-23T00:00:00Z","","0" +"NM-24150","607.1599731445312","607.1599731445312","","1982-08-17T00:00:00Z","","0" +"NM-13878","-28.719999313354492","-28.719999313354492","","1908-12-07T00:00:00Z","","0" +"NM-06262","405.5","405.5","","1977-04-01T00:00:00Z","","0" +"NM-03924","8.470000267028809","8.470000267028809","","2013-09-17T00:00:00Z","","0" +"NM-12677","25.25","25.25","","1961-02-08T00:00:00Z","","0" +"NM-05080","69.0999984741211","69.0999984741211","","1945-03-20T00:00:00Z","","0" +"NM-03397","22.3700008392334","22.3700008392334","","2016-08-22T00:00:00Z","","0" +"NM-02567","59.38999938964844","59.38999938964844","","1990-02-16T00:00:00Z","","0" +"NM-23204","39.900001525878906","39.900001525878906","","2008-08-29T00:00:00Z","","0" +"TC-316","259.8999938964844","259.8999938964844","","1956-06-06T00:00:00Z","","0" +"NM-24553","102.19000244140625","102.19000244140625","","1988-05-09T00:00:00Z","","0" +"NM-12934","15.529999732971191","15.529999732971191","","1949-02-04T00:00:00Z","","0" +"NM-28259","94.30000305175781","94.30000305175781","","1992-10-25T00:00:00Z","","0" +"NM-02281","28.309999465942383","28.309999465942383","","2006-10-17T00:00:00Z","","0" +"EB-517","245.9199981689453","245.9199981689453","","1996-09-26T00:00:00Z","","0" +"NM-12085","84.0199966430664","84.0199966430664","","1986-01-17T00:00:00Z","","0" +"NM-09682","467.69000244140625","467.69000244140625","","1966-01-01T00:00:00Z","","0" +"WL-0103","185.14999389648438","185.14999389648438","","2017-06-26T00:00:00Z","0001-01-01T12:12:00Z","0" +"NM-20913","414.5","414.5","","1995-08-30T00:00:00Z","","0" +"UC-0015","190.97000122070312","190.97000122070312","","2008-08-07T00:00:00Z","","0" +"NM-28012","480.2200012207031","480.2200012207031","S","2015-06-04T00:00:00Z","","0" +"NM-28009","498.7099914550781","498.7099914550781","S","2015-05-26T00:00:00Z","","0" +"NM-19787","132.3300018310547","132.3300018310547","","1999-06-15T00:00:00Z","","0" +"NM-10099","199.07000732421875","199.07000732421875","","1979-07-13T00:00:00Z","","0" +"NM-19586","108.62000274658203","108.62000274658203","R","1955-08-17T00:00:00Z","","0" +"NM-02006","7.599999904632568","7.599999904632568","","1987-10-15T00:00:00Z","","0" +"NM-17645","85.72000122070312","85.72000122070312","","1991-01-08T00:00:00Z","","0" +"NM-13775","-6.079999923706055","-6.079999923706055","","1912-09-20T00:00:00Z","","0" +"SO-0171","4.639999866485596","3.7099997997283936","","2018-02-27T00:00:00Z","0001-01-01T11:55:00Z","0.9300000071525574" +"NM-02813","173.72000122070312","173.72000122070312","","1992-01-14T00:00:00Z","","0" +"QU-089","98.0999984741211","96.0999984741211","","2014-04-10T00:00:00Z","","2" +"NM-00486","63.189998626708984","63.189998626708984","","2002-01-03T00:00:00Z","","0" +"NM-21541","357.4800109863281","357.4800109863281","","1993-01-06T00:00:00Z","","0" +"NM-05136","54.33000183105469","54.33000183105469","","1981-09-16T00:00:00Z","","0" +"NM-27289","146.3000030517578","146.3000030517578","","1990-09-12T00:00:00Z","","0" +"TB-0122","66.33999633789062","64.8699951171875","","2010-08-26T00:00:00Z","","1.4700000286102295" +"NM-25870","28","28","","1960-02-19T00:00:00Z","","0" +"NM-04647","73.66000366210938","73.66000366210938","","1954-06-14T00:00:00Z","","0" +"WL-0090","77.83333587646484","75.45333862304688","","2003-02-25T00:00:00Z","","2.380000114440918" +"NM-03090","48.08000183105469","48.08000183105469","","1960-01-11T00:00:00Z","","0" +"NM-22725","7.78000020980835","7.78000020980835","Z","2008-04-30T00:00:00Z","","0" +"NM-16537","9.069999694824219","9.069999694824219","","1933-10-20T00:00:00Z","","0" +"NM-01986","5.900000095367432","5.900000095367432","","1993-09-15T00:00:00Z","","0" +"AB-0190","882.22998046875","882.22998046875","","1988-07-25T00:00:00Z","","" +"DE-0244","100.47000122070312","100.47000122070312","","1998-02-24T00:00:00Z","","0" +"NM-10007","-42.58000183105469","-42.58000183105469","","1913-12-19T00:00:00Z","","0" +"NM-21887","6.199999809265137","6.199999809265137","Z","2005-12-02T00:00:00Z","","0" +"NM-10514","13.649999618530273","13.649999618530273","","1957-01-08T00:00:00Z","","0" +"NM-24131","19.260000228881836","19.260000228881836","","1985-10-23T00:00:00Z","","0" +"NM-13921","-6.199999809265137","-6.199999809265137","","1908-03-25T00:00:00Z","","0" +"DE-0187","52.25","52.25","","2005-04-11T00:00:00Z","","0" +"NM-03003","83.94999694824219","83.94999694824219","","1979-01-05T00:00:00Z","","0" +"NM-14271","185.1999969482422","185.1999969482422","","1966-09-26T00:00:00Z","","0" +"NM-05775","50.130001068115234","50.130001068115234","","1949-01-21T00:00:00Z","","0" +"NM-21662","19.290000915527344","19.290000915527344","","1952-02-26T00:00:00Z","","0" +"NM-17635","9.550000190734863","9.550000190734863","","1939-01-19T00:00:00Z","","0" +"NM-16833","29.010000228881836","29.010000228881836","","1956-01-17T00:00:00Z","","0" +"NM-05632","20.889999389648438","20.889999389648438","","1948-05-21T00:00:00Z","","0" +"NM-21819","22.059999465942383","22.059999465942383","","1958-08-18T00:00:00Z","","0" +"NM-28258","130.60000610351562","130.60000610351562","","1997-10-25T00:00:00Z","","0" +"NM-12489","-14.859999656677246","-14.859999656677246","","1908-03-17T00:00:00Z","","0" +"SM-0066","35.310001373291016","35.65999984741211","","2008-06-17T00:00:00Z","","-0.3499999940395355" +"NM-01887","75.20999908447266","75.20999908447266","","1992-01-23T00:00:00Z","","0" +"NM-28255","23.149999618530273","23.149999618530273","","1953-10-25T00:00:00Z","","0" +"DE-0110","","","D","2016-04-14T00:00:00Z","","0" +"NM-02209","107","107","","1960-04-01T00:00:00Z","","0" +"NM-12931","48.16999816894531","48.16999816894531","","1955-01-13T00:00:00Z","","0" +"NM-11986","25.219999313354492","25.219999313354492","","1940-01-22T00:00:00Z","","0" +"NM-03244","49.54999923706055","49.54999923706055","","1968-02-26T00:00:00Z","","0" +"NM-21222","","","D","2004-09-27T00:00:00Z","","0" +"NM-01701","34.279998779296875","34.279998779296875","","2001-07-06T00:00:00Z","","0" +"SB-0299","117.12000274658203","117.12000274658203","","1985-03-01T00:00:00Z","","0" +"NM-07688","21.059999465942383","21.059999465942383","","1979-02-21T00:00:00Z","","0" +"SB-0655","320","320","","1971-01-15T00:00:00Z","","0" +"AB-0077","6.369999885559082","6.369999885559082","","2011-07-25T00:00:00Z","","" +"NM-02794","66.2300033569336","66.2300033569336","","1957-01-18T00:00:00Z","","0" +"NM-02168","7.320000171661377","7.320000171661377","","1995-08-17T00:00:00Z","","0" +"NM-08444","54.439998626708984","54.439998626708984","","1962-01-25T00:00:00Z","","0" +"NM-28251","65.18000030517578","65.18000030517578","","1998-06-05T00:00:00Z","","0" +"DE-0332","27.709999084472656","27.709999084472656","","2014-11-05T00:00:00Z","","0" +"NM-16754","17.079999923706055","17.079999923706055","","1936-01-15T00:00:00Z","","0" +"NM-03992","366.8999938964844","366.8999938964844","","1964-01-10T00:00:00Z","","0" +"NM-01351","208.57000732421875","208.57000732421875","R","1993-03-25T00:00:00Z","","0" +"NM-16788","1.2000000476837158","1.2000000476837158","","1950-07-26T00:00:00Z","","0" +"NM-26141","15.800000190734863","15.800000190734863","","1959-10-12T00:00:00Z","","0" +"NM-13340","-9.949999809265137","-9.949999809265137","","1910-12-24T00:00:00Z","","0" +"NM-10963","87.94999694824219","87.94999694824219","","1954-01-18T00:00:00Z","","0" +"NM-14447","132.0800018310547","132.0800018310547","","1954-01-08T00:00:00Z","","0" +"NM-08838","54.90999984741211","54.90999984741211","","1941-01-13T00:00:00Z","","0" +"NM-00498","55.90999984741211","55.90999984741211","","2009-01-07T00:00:00Z","","0" +"NM-09995","159.5800018310547","159.5800018310547","","1971-02-18T00:00:00Z","","0" +"NM-10966","63.16999816894531","63.16999816894531","","1961-02-02T00:00:00Z","","0" +"NM-09583","69.94000244140625","69.94000244140625","","1977-05-03T00:00:00Z","","0" +"NM-22866","53.11000061035156","53.11000061035156","","1960-03-02T00:00:00Z","","0" +"BC-0239","309.07000732421875","309.07000732421875","","2017-06-23T00:00:00Z","","0" +"NM-07198","11.34000015258789","11.34000015258789","P","2007-04-06T00:00:00Z","","0" +"DE-0131","32.599998474121094","32.599998474121094","","2002-10-25T00:00:00Z","","0" +"NM-17340","70.3499984741211","70.3499984741211","","1967-01-04T00:00:00Z","","0" +"NM-10649","-33.34000015258789","-33.34000015258789","","1912-05-16T00:00:00Z","","0" +"NM-25805","60","60","","1958-03-15T00:00:00Z","","0" +"NM-02028","150.5","150.5","","1987-01-29T00:00:00Z","","0" +"EB-483","312","312","","1993-01-31T00:00:00Z","","0" +"NM-02109","58.119998931884766","58.119998931884766","","1994-01-11T00:00:00Z","","0" +"DE-0111","39.380001068115234","39.380001068115234","","2010-04-26T00:00:00Z","","0" +"AB-0091","501.92999267578125","501.92999267578125","","2006-01-18T00:00:00Z","","" +"NM-28259","180.16000366210938","180.16000366210938","","2011-09-05T00:00:00Z","","0" +"NM-27281","47.810001373291016","47.810001373291016","","1983-01-05T00:00:00Z","","0" +"NM-28254","61.15999984741211","61.15999984741211","","1959-10-15T00:00:00Z","","0" +"NM-02337","190.5500030517578","190.5500030517578","","1983-01-05T00:00:00Z","","0" +"NM-06467","358.8999938964844","358.8999938964844","","1996-09-05T00:00:00Z","","0" +"NM-19123","400.6099853515625","400.6099853515625","","1991-01-03T00:00:00Z","","0" +"NM-23705","38.84000015258789","38.84000015258789","R","1983-02-23T00:00:00Z","","0" +"NM-08189","9.899999618530273","9.899999618530273","","1961-10-15T00:00:00Z","","0" +"NM-09860","39.81999969482422","39.81999969482422","","1955-01-05T00:00:00Z","","0" +"EB-276","152.67999267578125","152.67999267578125","","1969-08-25T00:00:00Z","","0" +"NM-02166","10.729999542236328","10.729999542236328","","1976-01-12T00:00:00Z","","0" +"NM-17716","1.559999942779541","1.559999942779541","","1945-03-15T00:00:00Z","","0" +"NM-11178","57.16999816894531","57.16999816894531","","1991-03-13T00:00:00Z","","0" +"NM-16789","7.360000133514404","7.360000133514404","","1954-03-22T00:00:00Z","","0" +"NM-28259","118.94999694824219","118.94999694824219","","1985-10-05T00:00:00Z","","0" +"NM-00473","119.08000183105469","119.08000183105469","","2000-01-04T00:00:00Z","","0" +"NM-02141","133.82000732421875","133.82000732421875","","1983-01-11T00:00:00Z","","0" +"NM-01926","8.899999618530273","8.899999618530273","","1956-10-15T00:00:00Z","","0" +"SB-0299","148.55999755859375","148.55999755859375","","2014-08-20T00:00:00Z","","0" +"NM-01345","245.89999389648438","245.89999389648438","","2002-03-15T00:00:00Z","","0" +"NM-04464","136.27999877929688","136.27999877929688","","1974-01-07T00:00:00Z","","0" +"NM-28258","156.25","156.25","","2021-12-15T00:00:00Z","","0" +"SB-0112","164.35000610351562","164.35000610351562","","1996-01-10T00:00:00Z","","0" +"NM-01927","92.91000366210938","92.91000366210938","","1953-01-20T00:00:00Z","","0" +"NM-01426","332.1199951171875","332.1199951171875","","2013-03-05T00:00:00Z","","0" +"NM-11660","64.69000244140625","64.69000244140625","","1971-02-19T00:00:00Z","","0" +"EB-276","286","286","S","1989-11-30T00:00:00Z","","0" +"NM-02331","187.64999389648438","187.64999389648438","","1999-01-26T00:00:00Z","","0" +"NM-02487","10.699999809265137","10.699999809265137","","1969-01-15T00:00:00Z","","0" +"NM-02781","88.2300033569336","88.2300033569336","S","2003-01-16T00:00:00Z","","0" +"NM-01702","73.93000030517578","73.93000030517578","","2012-10-10T00:00:00Z","","0" +"NM-00366","129.50999450683594","129.50999450683594","","1993-06-07T00:00:00Z","","0" +"NM-03388","62.540000915527344","62.540000915527344","","2001-09-25T00:00:00Z","","0" +"NM-10987","-26.40999984741211","-26.40999984741211","","1908-06-09T00:00:00Z","","0" +"EB-479","136","136","","1986-01-31T00:00:00Z","","0" +"NM-11706","132.4600067138672","132.4600067138672","","1955-02-21T00:00:00Z","","0" +"NM-02591","12.100000381469727","12.100000381469727","","1973-10-15T00:00:00Z","","0" +"NM-09178","24.799999237060547","24.799999237060547","","1948-07-24T00:00:00Z","","0" +"EB-012","100.23999786376953","100.23999786376953","","1958-04-21T00:00:00Z","","0" +"NM-25381","42.29999923706055","42.29999923706055","","1977-05-03T00:00:00Z","","0" +"NM-16979","74.83999633789062","74.83999633789062","","1962-03-15T00:00:00Z","","0" +"QY-0001","36.79999923706055","36.79999923706055","","1955-06-15T00:00:00Z","","0" +"NM-01451","393.1400146484375","393.1400146484375","","2014-03-20T00:00:00Z","","0" +"NM-13741","313.4100036621094","313.4100036621094","","1947-06-16T00:00:00Z","","0" +"NM-22549","165.75999450683594","165.75999450683594","","1958-09-08T00:00:00Z","","0" +"DE-0121","32.40999984741211","32.40999984741211","","2002-08-29T00:00:00Z","","0" +"NM-10096","11.130000114440918","11.130000114440918","","1974-07-22T00:00:00Z","","0" +"NM-06093","91.94999694824219","91.94999694824219","","1982-01-21T00:00:00Z","","0" +"NM-01986","7","7","","1991-02-01T00:00:00Z","","0" +"NM-01847","10.149999618530273","10.149999618530273","","1973-01-26T00:00:00Z","","0" +"BC-0410","","250.69000244140625","","2021-03-05T00:00:00Z","","0" +"NM-23386","126.37999725341797","126.37999725341797","","1984-09-11T00:00:00Z","","0" +"NM-02017","7.400000095367432","7.400000095367432","","1983-04-15T00:00:00Z","","0" +"NM-05347","8.399999618530273","8.399999618530273","","1984-08-15T00:00:00Z","","0" +"NM-04662","73.79000091552734","73.79000091552734","","1944-09-13T00:00:00Z","","0" +"NM-24751","109.44000244140625","109.44000244140625","","1975-10-15T00:00:00Z","","0" +"NM-01908","120.11000061035156","120.11000061035156","","1958-01-08T00:00:00Z","","0" +"EB-288","208.64999389648438","208.64999389648438","Z","2005-12-31T00:00:00Z","","0" +"NM-23514","53.099998474121094","53.099998474121094","","2006-08-14T00:00:00Z","","0" +"NM-21876","6.980000019073486","6.980000019073486","Z","2005-07-13T00:00:00Z","","0" +"NM-28256","201.33999633789062","201.33999633789062","","1980-06-05T00:00:00Z","","0" +"EB-416","275.5799865722656","275.5799865722656","Z","2006-03-31T00:00:00Z","","0" +"NM-28253","45.900001525878906","45.900001525878906","","1967-09-05T00:00:00Z","","0" +"DE-0110","40.29999923706055","40.29999923706055","","2008-10-20T00:00:00Z","","0" +"NM-28251","93.05000305175781","93.05000305175781","","1975-07-15T00:00:00Z","","0" +"NM-20683","22.270000457763672","22.270000457763672","","1950-02-09T00:00:00Z","","0" +"NM-21503","9.390000343322754","9.390000343322754","","2014-04-11T00:00:00Z","","0" +"NM-00480","59.040000915527344","59.040000915527344","P","1951-05-23T00:00:00Z","","0" +"NM-12339","17.93000030517578","17.93000030517578","R","1947-03-15T00:00:00Z","","0" +"NM-10331","588.5900268554688","588.5900268554688","","1965-08-01T00:00:00Z","","0" +"NM-24758","239.75999450683594","239.75999450683594","","1973-07-13T00:00:00Z","","0" +"DE-0189","49.5","49.5","","2016-03-29T00:00:00Z","","0" +"NM-09389","8.119999885559082","8.119999885559082","","1974-08-01T00:00:00Z","","0" +"NM-08953","56.04999923706055","56.04999923706055","","1991-03-13T00:00:00Z","","0" +"NM-12405","10.479999542236328","10.479999542236328","","1939-07-27T00:00:00Z","","0" +"NM-01022","450.6099853515625","450.6099853515625","","1996-08-09T00:00:00Z","","0" +"NM-01868","11.800000190734863","11.800000190734863","","1979-02-15T00:00:00Z","","0" +"NM-01565","-249.5399932861328","-249.5399932861328","","1988-09-23T00:00:00Z","","0" +"NM-01889","18.1299991607666","18.1299991607666","","2004-02-27T00:00:00Z","","0" +"NM-27693","24.75","24.75","","1977-01-27T00:00:00Z","","0" +"NM-11017","60.029998779296875","60.029998779296875","P","1962-06-20T00:00:00Z","","0" +"NM-01965","105.7699966430664","105.7699966430664","","2007-02-23T00:00:00Z","","0" +"NM-07179","240.0500030517578","240.0500030517578","","2010-08-03T00:00:00Z","","0" +"NM-02349","16.5","16.5","","1974-01-15T00:00:00Z","","0" +"NM-09944","8.329999923706055","8.329999923706055","","1940-01-10T00:00:00Z","","0" +"NM-12338","88.8499984741211","88.8499984741211","","1960-01-13T00:00:00Z","","0" +"NM-00296","8.170000076293945","8.170000076293945","R","2006-05-08T00:00:00Z","","0" +"NM-03331","10.029999732971191","10.029999732971191","","1990-08-08T00:00:00Z","","0" +"NM-12339","22.899999618530273","22.899999618530273","","1939-06-22T00:00:00Z","","0" +"NM-02861","101.12999725341797","101.12999725341797","","1991-01-29T00:00:00Z","","0" +"NM-09316","125.12999725341797","125.12999725341797","","1966-09-26T00:00:00Z","","0" +"NM-15028","223.13999938964844","223.13999938964844","P","1963-07-24T00:00:00Z","","0" +"SB-0299","117.19999694824219","117.19999694824219","","1992-11-05T00:00:00Z","","0" +"NM-25942","227.3000030517578","227.3000030517578","","1986-02-05T00:00:00Z","","0" +"NM-06422","69.04000091552734","69.04000091552734","","1953-09-29T00:00:00Z","","0" +"NM-17716","3.5999999046325684","3.5999999046325684","","1945-08-29T00:00:00Z","","0" +"NM-21887","5.210000038146973","5.210000038146973","Z","2006-08-17T00:00:00Z","","0" +"NM-28259","157.3000030517578","157.3000030517578","","2001-07-25T00:00:00Z","","0" +"EB-012","360","360","","1994-10-31T00:00:00Z","","0" +"NM-19284","194.97999572753906","194.97999572753906","","1987-03-03T00:00:00Z","","0" +"NM-10429","-87.62999725341797","-87.62999725341797","","1908-12-16T00:00:00Z","","0" +"NM-00384","78.26000213623047","78.26000213623047","","2007-08-29T00:00:00Z","","0" +"NM-28257","48.650001525878906","48.650001525878906","","2014-07-07T00:00:00Z","","0" +"NM-14235","-7.929999828338623","-7.929999828338623","","1912-09-02T00:00:00Z","","0" +"NM-20949","189.8000030517578","189.8000030517578","Z","1993-05-11T00:00:00Z","","0" +"NM-07148","85.55999755859375","85.55999755859375","","2007-01-11T00:00:00Z","","0" +"NM-13624","-4.46999979019165","-4.46999979019165","","1910-10-04T00:00:00Z","","0" +"NM-19287","38.40999984741211","38.40999984741211","S","2006-03-01T00:00:00Z","","0" +"NM-17716","1.2300000190734863","1.2300000190734863","","1943-06-30T00:00:00Z","","0" +"NM-03673","77.12999725341797","77.12999725341797","","1985-01-21T00:00:00Z","","0" +"AB-0162","490.1199951171875","490.1199951171875","","2011-01-31T00:00:00Z","","" +"NM-05096","138.0800018310547","138.0800018310547","","1972-08-30T00:00:00Z","","0" +"NM-22466","49.5","49.5","R","1990-10-09T00:00:00Z","","0" +"AB-0037","329.8900146484375","329.8900146484375","","2011-07-27T00:00:00Z","","" +"NM-14535","91.5","91.5","","1972-09-18T00:00:00Z","","0" +"EB-305","24.690000534057617","22.690000534057617","","2016-04-05T00:00:00Z","","2" +"NM-05716","104.66999816894531","104.66999816894531","S","1948-07-20T00:00:00Z","","0" +"NM-28256","235.9499969482422","235.9499969482422","","2001-08-24T00:00:00Z","","0" +"NM-06406","417.1000061035156","417.1000061035156","","1976-12-10T00:00:00Z","","0" +"NM-04857","34.40999984741211","34.40999984741211","","1948-04-01T00:00:00Z","","0" +"EB-012","233","233","","1984-02-29T00:00:00Z","","0" +"NM-02936","25.350000381469727","25.350000381469727","","1995-01-06T00:00:00Z","","0" +"NM-13382","-81.8499984741211","-81.8499984741211","","1910-12-24T00:00:00Z","","0" +"BC-0289","","78","","2020-10-31T00:00:00Z","","1.7300000190734863" +"NM-19784","70.81999969482422","70.81999969482422","","1962-01-18T00:00:00Z","","0" +"NM-00647","87.72000122070312","87.72000122070312","","1982-01-06T00:00:00Z","","0" +"NM-02287","7.130000114440918","7.130000114440918","","1996-02-14T00:00:00Z","","0" +"NM-07524","73.19999694824219","73.19999694824219","","1991-07-10T00:00:00Z","","0" +"NM-06676","11","11","","1970-02-15T00:00:00Z","","0" +"BC-0015","128.08999633789062","128.08999633789062","","2013-03-22T00:00:00Z","","0" +"NM-03295","28.290000915527344","28.290000915527344","","1976-02-24T00:00:00Z","","0" +"QU-037","430.6099853515625","428.8499755859375","","2013-02-18T00:00:00Z","","1.7599999904632568" +"NM-01969","46.84000015258789","46.84000015258789","","1990-01-17T00:00:00Z","","0" +"NM-09017","56.41999816894531","56.41999816894531","","1986-04-02T00:00:00Z","","0" +"NM-13821","-2.1600000858306885","-2.1600000858306885","","1909-09-09T00:00:00Z","","0" +"NM-06865","20.229999542236328","20.229999542236328","","1986-03-19T00:00:00Z","","0" +"SM-0130","28.760000228881836","28.760000228881836","","1993-01-29T00:00:00Z","","0" +"NM-28255","21.360000610351562","21.360000610351562","","1975-01-05T00:00:00Z","","0" +"NM-17665","75.29000091552734","75.29000091552734","","1946-07-27T00:00:00Z","","0" +"NM-02017","8.899999618530273","8.899999618530273","","1974-09-15T00:00:00Z","","0" +"NM-06601","227.72000122070312","227.72000122070312","","1995-02-22T00:00:00Z","","0" +"NM-20814","104.73999786376953","104.73999786376953","","1997-01-31T00:00:00Z","","0" +"NM-13561","4.699999809265137","4.699999809265137","","1958-06-16T00:00:00Z","","0" +"NM-22673","5.75","5.75","Z","2009-06-03T00:00:00Z","","0" +"NM-12080","82.69000244140625","82.69000244140625","","1991-02-21T00:00:00Z","","0" +"NM-03018","95.37999725341797","95.37999725341797","","1988-01-13T00:00:00Z","","0" +"NM-02279","41.689998626708984","41.689998626708984","","2010-06-22T00:00:00Z","","0" +"NM-21630","481.04998779296875","481.04998779296875","","2007-12-26T00:00:00Z","","0" +"NM-14348","21.399999618530273","21.399999618530273","","1960-10-31T00:00:00Z","","0" +"NM-15265","108.12999725341797","108.12999725341797","","1974-01-07T00:00:00Z","","0" +"NM-02281","21.510000228881836","21.510000228881836","","2001-02-23T00:00:00Z","","0" +"SO-0169","10.869999885559082","10.229999542236328","","2021-11-13T00:00:00Z","0001-01-01T09:40:00Z","0.6399999856948853" +"NM-03441","25.110000610351562","25.110000610351562","Z","1996-03-01T00:00:00Z","","0" +"NM-02349","20.600000381469727","20.600000381469727","","1956-01-15T00:00:00Z","","0" +"NM-19552","173.82000732421875","173.82000732421875","","1971-09-28T00:00:00Z","","0" +"NM-06026","37.7400016784668","37.7400016784668","","1963-01-17T00:00:00Z","","0" +"NM-11556","42.900001525878906","42.900001525878906","","1938-08-08T00:00:00Z","","0" +"NM-17716","3.109999895095825","3.109999895095825","","1947-02-25T00:00:00Z","","0" +"NM-10745","62.900001525878906","62.900001525878906","","1983-01-05T00:00:00Z","","0" +"NM-28257","68.0999984741211","68.0999984741211","","1957-11-25T00:00:00Z","","0" +"NM-13383","34.349998474121094","34.349998474121094","","1960-01-11T00:00:00Z","","0" +"NM-27208","134.3000030517578","134.3000030517578","","1976-02-09T00:00:00Z","","0" +"NM-10331","587.8599853515625","587.8599853515625","","1964-06-01T00:00:00Z","","0" +"NM-00643","105.93000030517578","105.93000030517578","","2006-11-06T00:00:00Z","","0" +"NM-24130","15.329999923706055","15.329999923706055","","1985-08-16T00:00:00Z","","0" +"NM-01955","8.199999809265137","8.199999809265137","Z","1980-05-15T00:00:00Z","","0" +"NM-03129","24.540000915527344","24.540000915527344","","1966-01-07T00:00:00Z","","0" +"TB-0117","215.10000610351562","213.85000610351562","R","2010-06-15T00:00:00Z","","1.25" +"NM-11943","0.9300000071525574","0.9300000071525574","","1956-01-23T00:00:00Z","","0" +"NM-21552","369.8599853515625","369.8599853515625","","1992-11-06T00:00:00Z","","0" +"NM-03045","68.68000030517578","68.68000030517578","","1983-01-10T00:00:00Z","","0" +"NM-02620","8.199999809265137","8.199999809265137","","1995-10-15T00:00:00Z","","0" +"NM-06653","55.70000076293945","55.70000076293945","","1946-08-23T00:00:00Z","","0" +"NM-02518","8.800000190734863","8.800000190734863","","1955-08-15T00:00:00Z","","0" +"SB-0299","135.38999938964844","135.38999938964844","","2006-05-05T00:00:00Z","","0" +"NM-02811","96.18000030517578","96.18000030517578","","2015-01-14T00:00:00Z","","0" +"BW-0474","162","162","","1954-04-09T00:00:00Z","","0" +"EB-650","113.19999694824219","113.19999694824219","","2008-06-03T00:00:00Z","","0" +"NM-17347","11.84000015258789","11.84000015258789","","1995-03-10T00:00:00Z","","0" +"DE-0244","100.41999816894531","100.41999816894531","","1998-05-13T00:00:00Z","","0" +"QU-081","32.79999923706055","30.899999618530273","","2013-05-10T00:00:00Z","","1.899999976158142" +"NM-03903","328.70001220703125","328.70001220703125","","1974-10-19T00:00:00Z","","0" +"NM-24761","135.7899932861328","135.7899932861328","","1959-10-07T00:00:00Z","","0" +"NM-17716","7.730000019073486","7.730000019073486","","1940-06-18T00:00:00Z","","0" +"NM-00213","172.24000549316406","172.24000549316406","","1981-11-01T00:00:00Z","","0" +"NM-12056","77.19999694824219","77.19999694824219","","1940-01-26T00:00:00Z","","0" +"NM-28259","97.05000305175781","97.05000305175781","","1990-11-05T00:00:00Z","","0" +"NM-15844","74.88999938964844","74.88999938964844","","1970-02-17T00:00:00Z","","0" +"NM-02669","67.5","67.5","","2004-02-25T00:00:00Z","","0" +"NM-17716","4.159999847412109","4.159999847412109","","1946-06-12T00:00:00Z","","0" +"EB-182","439","437.79998779296875","","2001-06-05T00:00:00Z","","1.2000000476837158" +"NM-02159","101.51000213623047","101.51000213623047","","1962-01-03T00:00:00Z","","0" +"SV-0090","146","143.75","","2016-06-19T00:00:00Z","","2.25" +"NM-13939","-17.170000076293945","-17.170000076293945","","1907-06-11T00:00:00Z","","0" +"NM-19910","45.439998626708984","45.439998626708984","","1954-01-19T00:00:00Z","","0" +"NM-25680","-99.19000244140625","-99.19000244140625","","1988-04-07T00:00:00Z","","0" +"NM-23901","","","F","1990-08-08T00:00:00Z","","0" +"NM-01384","202.52999877929688","202.52999877929688","","2010-03-23T00:00:00Z","","0" +"NM-20124","68.04000091552734","68.04000091552734","","1958-01-27T00:00:00Z","","0" +"NM-22202","338.5","338.5","","1962-05-22T00:00:00Z","","0" +"NM-03440","9.25","9.25","Z","1997-04-07T00:00:00Z","","0" +"NM-02632","9.079999923706055","9.079999923706055","","1958-01-27T00:00:00Z","","0" +"NM-07777","48.5","48.5","","1976-02-11T00:00:00Z","","0" +"NM-28012","479.92999267578125","479.92999267578125","S","2015-05-16T00:00:00Z","","0" +"NM-22296","33.720001220703125","33.720001220703125","","1993-01-04T00:00:00Z","","0" +"NM-01893","14.600000381469727","14.600000381469727","","2008-09-09T00:00:00Z","","0" +"NM-05045","63.58000183105469","63.58000183105469","","1953-01-13T00:00:00Z","","0" +"NM-08071","7.5","7.5","","1974-09-15T00:00:00Z","","0" +"NM-02091","110.94999694824219","110.94999694824219","P","1958-07-08T00:00:00Z","","0" +"NM-28252","44","44","","1991-08-15T00:00:00Z","","0" +"NM-28014","498.5799865722656","498.5799865722656","S","2015-05-25T00:00:00Z","","0" +"NM-05447","18.309999465942383","18.309999465942383","","1955-11-09T00:00:00Z","","0" +"NM-04632","19.5","19.5","","1956-09-15T00:00:00Z","","0" +"NM-01884","10.520000457763672","10.520000457763672","","2001-04-23T00:00:00Z","","0" +"NM-24935","12.300000190734863","12.300000190734863","","1980-05-15T00:00:00Z","","0" +"NM-12197","32.040000915527344","32.040000915527344","","1959-05-19T00:00:00Z","","0" +"NM-12300","-72.61000061035156","-72.61000061035156","","1907-09-24T00:00:00Z","","0" +"NM-02029","8.300000190734863","8.300000190734863","","1996-10-15T00:00:00Z","","0" +"NM-01972","66.45999908447266","66.45999908447266","","1951-01-16T00:00:00Z","","0" +"SB-0299","128.83999633789062","128.83999633789062","","2006-01-10T00:00:00Z","","0" +"NM-08377","38.060001373291016","38.060001373291016","","1981-01-15T00:00:00Z","","0" +"NM-13968","-10.819999694824219","-10.819999694824219","","1907-06-10T00:00:00Z","","0" +"NM-26595","","","D","2012-05-08T00:00:00Z","","0" +"NM-02163","14.050000190734863","14.050000190734863","","2003-06-24T00:00:00Z","","0" +"NM-10635","29.940000534057617","29.940000534057617","","1974-08-07T00:00:00Z","","0" +"NM-23149","76.7699966430664","76.7699966430664","P","1948-06-10T00:00:00Z","","0" +"BC-0008","56.040000915527344","56.040000915527344","T","1984-10-02T00:00:00Z","","0" +"NM-01948","5.800000190734863","5.800000190734863","","1961-04-15T00:00:00Z","","0" +"NM-10331","589.030029296875","589.030029296875","","1967-04-01T00:00:00Z","","0" +"NM-02412","37.709999084472656","37.709999084472656","","1957-11-19T00:00:00Z","","0" +"NM-17982","157.02999877929688","157.02999877929688","","1961-01-13T00:00:00Z","","0" +"NM-02717","63.380001068115234","63.380001068115234","","2015-01-29T00:00:00Z","","0" +"NM-02005","4.199999809265137","4.199999809265137","","1958-08-15T00:00:00Z","","0" +"NM-26235","43.70000076293945","43.70000076293945","","1954-10-20T00:00:00Z","","0" +"NM-14203","-33.34000015258789","-33.34000015258789","","1912-12-14T00:00:00Z","","0" +"NM-02329","59.5099983215332","59.5099983215332","","2009-09-30T00:00:00Z","","0" +"NM-12158","-37.959999084472656","-37.959999084472656","","1908-06-10T00:00:00Z","","0" +"NM-00237","8.359999656677246","8.359999656677246","","1962-11-15T00:00:00Z","","0" +"NM-21776","8.4399995803833","8.4399995803833","","1958-01-29T00:00:00Z","","0" +"SA-0024","23.899999618530273","23.899999618530273","","1978-11-16T00:00:00Z","","0" +"NM-02195","109.12999725341797","109.12999725341797","","1968-01-24T00:00:00Z","","0" +"NM-12903","39.33000183105469","39.33000183105469","","1938-02-03T00:00:00Z","","0" +"NM-17471","12.15999984741211","12.15999984741211","","1942-07-23T00:00:00Z","","0" +"NM-00439","229.75","229.75","","1989-02-14T00:00:00Z","","0" +"NM-06314","204.22999572753906","204.22999572753906","","1960-01-20T00:00:00Z","","0" +"NM-22445","214.8800048828125","214.8800048828125","","1957-10-31T00:00:00Z","","0" +"NM-00213","158.61000061035156","158.61000061035156","","2002-04-24T00:00:00Z","","0" +"NM-02384","8","8","","1983-05-15T00:00:00Z","","0" +"NM-03133","347.69000244140625","347.69000244140625","","1975-01-04T00:00:00Z","","0" +"NM-03221","36.939998626708984","36.939998626708984","","1990-04-19T00:00:00Z","","0" +"NM-08839","95.5199966430664","95.5199966430664","","1955-08-04T00:00:00Z","","0" +"NM-08665","40.540000915527344","40.540000915527344","","1939-02-06T00:00:00Z","","0" +"NM-01763","47.5099983215332","47.5099983215332","","1981-01-12T00:00:00Z","","0" +"NM-03078","136.8000030517578","136.8000030517578","","2000-12-11T00:00:00Z","","0" +"NM-02457","105.06999969482422","105.06999969482422","","1979-01-30T00:00:00Z","","0" +"NM-11035","35.06999969482422","35.06999969482422","","1957-01-08T00:00:00Z","","0" +"NM-02022","94.77999877929688","94.77999877929688","","1970-01-21T00:00:00Z","","0" +"NM-23309","108.5999984741211","108.5999984741211","","1961-02-15T00:00:00Z","","0" +"DE-0142","84.70999908447266","84.70999908447266","","2011-05-23T00:00:00Z","","0" +"NM-02649","19.170000076293945","19.170000076293945","","1995-02-10T00:00:00Z","","0" +"NM-21360","244.99000549316406","244.99000549316406","","2010-02-05T00:00:00Z","","0" +"NM-18079","104.95999908447266","104.95999908447266","R","1965-07-30T00:00:00Z","","0" +"NM-26772","321.5400085449219","321.5400085449219","","2013-12-09T00:00:00Z","","0" +"NM-07163","77.62000274658203","77.62000274658203","","2007-07-10T00:00:00Z","","0" +"EB-016","221.33999633789062","227.94000244140625","","2013-02-07T00:00:00Z","","-6.599999904632568" +"NM-12204","53.900001525878906","53.900001525878906","","1963-01-08T00:00:00Z","","0" +"NM-07773","48.11000061035156","48.11000061035156","","1973-01-23T00:00:00Z","","0" +"AB-0212","154.75999450683594","154.75999450683594","","1997-04-01T00:00:00Z","","" +"NM-02070","352.1000061035156","352.1000061035156","","1992-03-25T00:00:00Z","","0" +"QY-0646","21","21","","1956-01-09T00:00:00Z","","0" +"NM-21381","27.93000030517578","27.93000030517578","R","1992-01-17T00:00:00Z","","0" +"NM-09561","-100.33000183105469","-100.33000183105469","","1907-12-10T00:00:00Z","","0" +"QY-0588","59.400001525878906","59.400001525878906","","1952-03-28T00:00:00Z","","0" +"NM-13092","10.630000114440918","10.630000114440918","","1965-01-26T00:00:00Z","","0" +"NM-17607","76.16000366210938","76.16000366210938","","1982-03-12T00:00:00Z","","0" +"SO-0234","5.920000076293945","5.019999980926514","","2021-04-09T00:00:00Z","0001-01-01T15:40:00Z","0.8999999761581421" +"NM-02250","47.970001220703125","47.970001220703125","","1949-05-19T00:00:00Z","","0" +"NM-00244","12.699999809265137","12.699999809265137","","1997-05-15T00:00:00Z","","0" +"NM-11928","0.25999999046325684","0.25999999046325684","","1954-03-15T00:00:00Z","","0" +"NM-02648","29.530000686645508","29.530000686645508","","1963-01-08T00:00:00Z","","0" +"NM-22403","98.54000091552734","98.54000091552734","Z","1995-06-14T00:00:00Z","","0" +"NM-01896","6.989999771118164","6.989999771118164","","1995-05-25T00:00:00Z","","0" +"NM-06268","10","10","","1948-01-15T00:00:00Z","","0" +"NM-02674","13.569999694824219","13.569999694824219","R","1956-01-24T00:00:00Z","","0" +"NM-28255","22.610000610351562","22.610000610351562","","1985-11-25T00:00:00Z","","0" +"NM-25250","26.15999984741211","26.15999984741211","","1985-08-28T00:00:00Z","","0" +"NM-03390","28.290000915527344","28.290000915527344","","2015-08-28T00:00:00Z","","0" +"NM-01565","-243.30999755859375","-243.30999755859375","","1988-06-18T00:00:00Z","","0" +"WL-0090","35.70833206176758","33.328330993652344","","1996-02-13T00:00:00Z","","2.380000114440918" +"BC-0198","334.2200012207031","334.2200012207031","","2018-04-08T00:00:00Z","","0" +"DE-0186","","","D","2016-06-30T00:00:00Z","","0" +"QY-0006","40.400001525878906","40.400001525878906","P","1955-06-14T00:00:00Z","","0" +"NM-04053","282.8800048828125","282.8800048828125","","1975-01-16T00:00:00Z","","0" +"NM-00808","20.6200008392334","20.6200008392334","","2013-03-29T00:00:00Z","","0" +"NM-12353","27.850000381469727","27.850000381469727","","1943-12-01T00:00:00Z","","0" +"NM-08804","19.68000030517578","19.68000030517578","","1954-09-14T00:00:00Z","","0" +"NM-00983","321.5299987792969","321.5299987792969","","1984-01-17T00:00:00Z","","0" +"NM-12933","18.700000762939453","18.700000762939453","","1958-03-13T00:00:00Z","","0" +"TV-157","156.4600067138672","155.32000732421875","","2018-12-05T00:00:00Z","0001-01-01T15:50:00Z","1.1399999856948853" +"NM-08071","7","7","","1973-08-15T00:00:00Z","","0" +"TV-180","270.3599853515625","275.7599792480469","R","2011-03-16T00:00:00Z","","-5.400000095367432" +"NM-03353","56.93000030517578","56.93000030517578","","2007-08-31T00:00:00Z","","0" +"NM-01728","179.74000549316406","179.74000549316406","","2007-08-08T00:00:00Z","","0" +"NM-12808","17.690000534057617","17.690000534057617","","1925-09-01T00:00:00Z","","0" +"NM-10185","25.700000762939453","25.700000762939453","","1966-07-20T00:00:00Z","","0" +"DE-0258","89.05999755859375","89.05999755859375","","2018-12-17T00:00:00Z","","0" +"AB-0144","442.4800109863281","442.4800109863281","","2006-07-06T00:00:00Z","","" +"NM-12339","16.889999389648438","16.889999389648438","","1955-03-09T00:00:00Z","","0" +"NM-01948","8.300000190734863","8.300000190734863","","1964-06-15T00:00:00Z","","0" +"NM-01868","10.899999618530273","10.899999618530273","","1977-05-15T00:00:00Z","","0" +"NM-28259","139.55999755859375","139.55999755859375","","2013-03-18T00:00:00Z","","0" +"NM-01904","38.470001220703125","38.470001220703125","","1956-01-23T00:00:00Z","","0" +"NM-19969","78","78","P","1954-05-25T00:00:00Z","","0" +"EB-163","695","693.7999877929688","","1983-05-31T00:00:00Z","","1.2000000476837158" +"NM-02158","5.800000190734863","5.800000190734863","","2001-09-15T00:00:00Z","","0" +"NM-19189","295.1199951171875","295.1199951171875","","1982-01-28T00:00:00Z","","0" +"SB-0299","140.5500030517578","140.5500030517578","","2014-04-30T00:00:00Z","","0" +"NM-10906","23.979999542236328","23.979999542236328","","1938-07-01T00:00:00Z","","0" +"NM-05368","89.08000183105469","89.08000183105469","","1955-01-13T00:00:00Z","","0" +"NM-12339","10.65999984741211","10.65999984741211","","1942-08-17T00:00:00Z","","0" +"NM-02004","6.900000095367432","6.900000095367432","","1971-09-15T00:00:00Z","","0" +"NM-07136","126.88999938964844","126.88999938964844","","2002-01-08T00:00:00Z","","0" +"NM-03972","273.29998779296875","273.29998779296875","","1971-01-19T00:00:00Z","","0" +"SM-0068","260.1300048828125","260.1300048828125","","1900-05-16T00:00:00Z","","0" +"NM-28255","59.810001373291016","59.810001373291016","","2011-11-05T00:00:00Z","","0" +"NM-14088","-4.46999979019165","-4.46999979019165","","1909-03-03T00:00:00Z","","0" +"NM-10087","19.149999618530273","19.149999618530273","","1944-01-13T00:00:00Z","","0" +"NM-02607","35.0099983215332","35.0099983215332","","2009-01-08T00:00:00Z","","0" +"NM-09301","6.53000020980835","6.53000020980835","","1994-03-16T00:00:00Z","","0" +"NM-22243","147.9499969482422","147.9499969482422","","1958-11-20T00:00:00Z","","0" +"NM-05380","70.12000274658203","70.12000274658203","","1940-07-04T00:00:00Z","","0" +"NM-07114","76.97000122070312","76.97000122070312","","2004-04-07T00:00:00Z","","0" +"NM-17716","4.670000076293945","4.670000076293945","","1949-05-13T00:00:00Z","","0" +"NM-23422","906.4600219726562","906.4600219726562","P","1987-02-15T00:00:00Z","","0" +"NM-11920","1.690000057220459","1.690000057220459","","1946-11-05T00:00:00Z","","0" +"NM-22343","86.9000015258789","86.9000015258789","","1962-07-24T00:00:00Z","","0" +"NM-07988","267","267","","1967-12-26T00:00:00Z","","0" +"NM-05590","60.970001220703125","60.970001220703125","","1932-09-01T00:00:00Z","","0" +"NM-28258","137.5800018310547","137.5800018310547","","2005-10-25T00:00:00Z","","0" +"NM-09922","57.5","57.5","","1949-01-07T00:00:00Z","","0" +"SO-0251","13.039999961853027","11.470000267028809","","2020-07-23T00:00:00Z","0001-01-01T12:04:00Z","1.5700000524520874" +"QY-0273","160","160","","1954-01-01T00:00:00Z","","0" +"WL-0087","52.54166793823242","50.86166763305664","","1996-11-19T00:00:00Z","","1.6799999475479126" +"NM-02797","3.75","3.75","","1979-06-27T00:00:00Z","","0" +"NM-01397","-91.80000305175781","-91.80000305175781","","2009-08-05T00:00:00Z","","0" +"NM-02288","12.09000015258789","12.09000015258789","","2014-10-28T00:00:00Z","","0" +"NM-23972","107.62999725341797","107.62999725341797","","1967-04-15T00:00:00Z","","0" +"NM-28250","86.93000030517578","86.93000030517578","","2009-02-05T00:00:00Z","","0" +"NM-28254","43.939998626708984","43.939998626708984","","1993-10-15T00:00:00Z","","0" +"NM-12338","112.62000274658203","112.62000274658203","P","1952-07-10T00:00:00Z","","0" +"NM-02207","11.5","11.5","","1959-10-15T00:00:00Z","","0" +"NM-27224","56.720001220703125","56.720001220703125","","1958-01-10T00:00:00Z","","0" +"SB-0111","222.3699951171875","222.3699951171875","","1973-02-27T00:00:00Z","","0" +"NM-09379","-40.27000045776367","-40.27000045776367","","1918-08-28T00:00:00Z","","0" +"NM-02441","72.9000015258789","72.9000015258789","","2002-04-03T00:00:00Z","","0" +"NM-02195","123.44999694824219","123.44999694824219","","1993-01-04T00:00:00Z","","0" +"NM-11331","10.279999732971191","10.279999732971191","","1973-04-27T00:00:00Z","","0" +"NM-27487","9.4399995803833","9.4399995803833","","1994-01-14T00:00:00Z","","0" +"NM-22012","45.65999984741211","45.65999984741211","","1988-05-02T00:00:00Z","","0" +"NM-14193","-19.479999542236328","-19.479999542236328","P","1910-05-22T00:00:00Z","","0" +"NM-02466","73.37999725341797","73.37999725341797","","1960-04-11T00:00:00Z","","0" +"NM-03768","28.030000686645508","28.030000686645508","","1998-01-21T00:00:00Z","","0" +"NM-14535","87.80000305175781","87.80000305175781","","1974-03-15T00:00:00Z","","0" +"DE-0118","","","D","2011-10-10T00:00:00Z","","0" +"BC-0182","435.2099914550781","435.2099914550781","","2014-06-10T00:00:00Z","","0" +"EB-389","110.19999694824219","108.2199935913086","","2011-05-05T00:00:00Z","","1.9800000190734863" +"NM-03679","186.89999389648438","186.89999389648438","","1992-04-14T00:00:00Z","","0" +"NM-02352","5.400000095367432","5.400000095367432","","1986-07-15T00:00:00Z","","0" +"NM-11088","28.3799991607666","28.3799991607666","","1937-11-29T00:00:00Z","","0" +"NM-01966","192.1999969482422","192.1999969482422","P","1993-01-22T00:00:00Z","","0" +"NM-01048","272.3800048828125","272.3800048828125","","2007-05-22T00:00:00Z","","0" +"NM-14631","53.65999984741211","53.65999984741211","","1958-08-25T00:00:00Z","","0" +"NM-02833","25.06999969482422","25.06999969482422","","1958-08-26T00:00:00Z","","0" +"NM-12000","98.38999938964844","98.38999938964844","","1961-01-11T00:00:00Z","","0" +"NM-00658","61.08000183105469","61.08000183105469","","2006-01-17T00:00:00Z","","0" +"NM-11007","270.6499938964844","270.6499938964844","","1959-01-07T00:00:00Z","","0" +"NM-03424","11.630000114440918","11.630000114440918","","1992-12-17T00:00:00Z","","0" +"NM-28258","118.44999694824219","118.44999694824219","","1987-11-05T00:00:00Z","","0" +"NM-12483","36.0099983215332","36.0099983215332","","1942-02-03T00:00:00Z","","0" +"NM-08647","27.260000228881836","27.260000228881836","","1940-04-14T00:00:00Z","","0" +"NM-13425","401.2699890136719","401.2699890136719","","1961-12-01T00:00:00Z","","0" +"NM-28253","14.4399995803833","14.4399995803833","","2010-03-25T00:00:00Z","","0" +"NM-10331","589.1699829101562","589.1699829101562","","1964-11-01T00:00:00Z","","0" +"NM-28253","23.139999389648438","23.139999389648438","","2017-10-06T00:00:00Z","","0" +"NM-28011","497.3500061035156","497.3500061035156","S","2015-06-05T00:00:00Z","","0" +"BC-0129","23.600000381469727","23.600000381469727","","2012-03-14T00:00:00Z","","0" +"NM-16513","83.37999725341797","83.37999725341797","","1986-12-02T00:00:00Z","","0" +"NM-05347","9.899999618530273","9.899999618530273","","1971-12-15T00:00:00Z","","0" +"DE-0124","36.65999984741211","36.65999984741211","","2003-06-23T00:00:00Z","","0" +"NM-02145","73.7300033569336","73.7300033569336","","1966-01-17T00:00:00Z","","0" +"NM-05516","13.399999618530273","13.399999618530273","","1982-01-15T00:00:00Z","","0" +"NM-20343","49.56999969482422","49.56999969482422","","1945-06-12T00:00:00Z","","0" +"NM-02177","15.800000190734863","15.800000190734863","","1978-01-24T00:00:00Z","","0" +"UC-0116","134.6999969482422","134.6999969482422","","2008-02-10T00:00:00Z","","0" +"NM-16566","17.350000381469727","17.350000381469727","","1949-09-27T00:00:00Z","","0" +"NM-28252","32.29999923706055","32.29999923706055","","1996-02-25T00:00:00Z","","0" +"NM-02651","103.30000305175781","103.30000305175781","","1958-01-23T00:00:00Z","","0" +"NM-13791","-10.239999771118164","-10.239999771118164","","1907-03-08T00:00:00Z","","0" +"NM-28253","13.640000343322754","13.640000343322754","","1997-05-05T00:00:00Z","","0" +"BC-0369","","209.2100067138672","","2021-10-18T00:00:00Z","","1.8200000524520874" +"EB-429","77.01000213623047","77.01000213623047","","1962-06-07T00:00:00Z","","" +"BC-0033","126.73999786376953","126.73999786376953","","2014-09-06T00:00:00Z","","0" +"NM-21632","452.7200012207031","452.7200012207031","","2004-09-27T00:00:00Z","","0" +"BC-0326","","324.20001220703125","","2021-12-15T00:00:00Z","","1.6399999856948853" +"NM-02394","66.7699966430664","66.7699966430664","","1932-01-09T00:00:00Z","","0" +"NM-01898","45.83000183105469","45.83000183105469","","2001-04-23T00:00:00Z","","0" +"NM-11909","34.400001525878906","34.400001525878906","","1932-06-15T00:00:00Z","","0" +"NM-02092","126.69999694824219","126.69999694824219","P","1964-08-06T00:00:00Z","","0" +"NM-14483","36.720001220703125","36.720001220703125","","1956-05-16T00:00:00Z","","0" +"NM-22969","321.3599853515625","321.3599853515625","T","1985-09-06T00:00:00Z","","0" +"WL-0168","39.720001220703125","38.790000915527344","AA","2023-04-19T00:00:00Z","0001-01-01T13:30:00Z","0.9300000071525574" +"NM-16038","85","85","","1964-10-29T00:00:00Z","","0" +"NM-13145","14.220000267028809","14.220000267028809","","1957-05-20T00:00:00Z","","0" +"NM-26497","5.079999923706055","5.079999923706055","","2003-05-14T00:00:00Z","","0" +"NM-02035","107.72000122070312","107.72000122070312","","2013-01-23T00:00:00Z","","0" +"QY-0138","50.29999923706055","50.29999923706055","P","1955-06-15T00:00:00Z","","0" +"NM-13970","-9.09000015258789","-9.09000015258789","","1909-12-01T00:00:00Z","","0" +"NM-02669","58.13999938964844","58.13999938964844","","1984-03-01T00:00:00Z","","0" +"NM-20389","106.27999877929688","106.27999877929688","","1984-08-30T00:00:00Z","","0" +"NM-13033","292.1499938964844","292.1499938964844","","1961-10-04T00:00:00Z","","0" +"NM-00922","38.13999938964844","38.13999938964844","","2002-03-07T00:00:00Z","","0" +"UC-0050","117.7699966430664","117.7699966430664","","1996-01-24T00:00:00Z","","0" +"NM-03335","9.319999694824219","9.319999694824219","","1989-10-31T00:00:00Z","","0" +"DE-0099","92.77999877929688","92.77999877929688","","2004-05-26T00:00:00Z","","0" +"NM-14051","-11.399999618530273","-11.399999618530273","","1909-09-16T00:00:00Z","","0" +"NM-14235","-9.449999809265137","-9.449999809265137","","1909-09-17T00:00:00Z","","0" +"NM-22421","9.829999923706055","9.829999923706055","","1947-02-03T00:00:00Z","","0" +"NM-01868","8.5","8.5","","1989-03-15T00:00:00Z","","0" +"NM-19239","319.239990234375","319.239990234375","","1982-01-28T00:00:00Z","","0" +"QY-0059","160.3000030517578","160.3000030517578","","1952-09-21T00:00:00Z","","0" +"TV-219","267.0199890136719","265.8599853515625","","2011-12-15T00:00:00Z","","1.159999966621399" +"NM-09130","49.349998474121094","49.349998474121094","","1971-01-11T00:00:00Z","","0" +"DE-0069","201.74000549316406","198.260009765625","","2004-09-09T00:00:00Z","","3.4800000190734863" +"NM-01775","201.19000244140625","201.19000244140625","","1970-01-12T00:00:00Z","","0" +"NM-18749","10.539999961853027","10.539999961853027","","1990-03-08T00:00:00Z","","0" +"NM-12603","25.100000381469727","25.100000381469727","T","1966-03-27T00:00:00Z","","0" +"NM-01891","47.16999816894531","47.16999816894531","","1998-01-16T00:00:00Z","","0" +"NM-27364","42.91999816894531","42.91999816894531","","2015-12-16T00:00:00Z","","0" +"NM-26662","17.149999618530273","17.149999618530273","","2011-09-02T00:00:00Z","","0" +"NM-01193","412.1199951171875","412.1199951171875","T","1982-09-01T00:00:00Z","","0" +"SB-0299","117.13999938964844","117.13999938964844","","1973-05-10T00:00:00Z","","0" +"NM-28250","102.23999786376953","102.23999786376953","","1984-01-25T00:00:00Z","","0" +"NM-28259","133.94000244140625","133.94000244140625","","1985-05-25T00:00:00Z","","0" +"NM-17517","53.630001068115234","53.630001068115234","","1956-01-25T00:00:00Z","","0" +"NM-02681","51.79999923706055","51.79999923706055","","1984-01-26T00:00:00Z","","0" +"DE-0106","38.54999923706055","38.54999923706055","","2007-12-20T00:00:00Z","","0" +"NM-13298","132.60000610351562","132.60000610351562","","1965-01-28T00:00:00Z","","0" +"NM-06676","8.899999618530273","8.899999618530273","","1950-05-15T00:00:00Z","","0" +"NM-01192","56.45000076293945","56.45000076293945","","2003-03-05T00:00:00Z","","0" +"NM-10599","105.33000183105469","105.33000183105469","","1959-01-21T00:00:00Z","","0" +"NM-15986","159.86000061035156","159.86000061035156","","1975-02-27T00:00:00Z","","0" +"NM-13928","-77.2300033569336","-77.2300033569336","","1910-12-14T00:00:00Z","","0" +"NM-02990","56.33000183105469","56.33000183105469","P","1954-07-21T00:00:00Z","","0" +"SO-0250","13.09000015258789","11.600000381469727","","2021-07-13T00:00:00Z","0001-01-01T09:35:00Z","1.4900000095367432" +"NM-09172","38.34000015258789","38.34000015258789","","1976-02-20T00:00:00Z","","0" +"NM-10308","44.97999954223633","44.97999954223633","P","1961-02-15T00:00:00Z","","0" +"NM-02667","68.3499984741211","68.3499984741211","","1953-01-12T00:00:00Z","","0" +"NM-02693","159.61000061035156","159.61000061035156","","1975-01-15T00:00:00Z","","0" +"NM-08246","22.950000762939453","22.950000762939453","","1940-02-03T00:00:00Z","","0" +"DE-0070","200.25","198.39999389648438","","2004-10-05T00:00:00Z","","1.850000023841858" +"NM-08881","36.02000045776367","36.02000045776367","P","1961-03-10T00:00:00Z","","0" +"DE-0098","91.44999694824219","91.44999694824219","","2000-10-17T00:00:00Z","","0" +"NM-00944","271.0299987792969","271.0299987792969","","1987-01-16T00:00:00Z","","0" +"NM-22058","280","280","","1981-07-08T00:00:00Z","","0" +"NM-03799","1.5399999618530273","1.5399999618530273","S","1940-09-08T00:00:00Z","","0" +"NM-22150","7.389999866485596","7.389999866485596","Z","2009-08-04T00:00:00Z","","0" +"NM-02669","48.5","48.5","","1968-12-01T00:00:00Z","","0" +"NM-17271","73.94000244140625","73.94000244140625","","1963-12-01T00:00:00Z","","0" +"SM-0237","19.6299991607666","18.67999839782715","","2009-04-15T00:00:00Z","","0.949999988079071" +"NM-01882","134.35000610351562","134.35000610351562","","2005-02-27T00:00:00Z","","0" +"NM-05080","82.3499984741211","82.3499984741211","","1949-11-17T00:00:00Z","","0" +"NM-10906","18.59000015258789","18.59000015258789","","1939-03-01T00:00:00Z","","0" +"NM-18181","46.93000030517578","46.93000030517578","P","1977-01-27T00:00:00Z","","0" +"NM-02062","383.75","383.75","","1968-01-03T00:00:00Z","","0" +"NM-27349","93.37999725341797","93.37999725341797","P","1965-08-18T00:00:00Z","","0" +"NM-28254","14.199999809265137","14.199999809265137","","1948-11-05T00:00:00Z","","0" +"NM-20998","19.290000915527344","19.290000915527344","","1941-07-12T00:00:00Z","","0" +"NM-10573","226.14999389648438","226.14999389648438","P","1961-03-15T00:00:00Z","","0" +"NM-28257","-1","-1","","1985-12-15T00:00:00Z","","0" +"NM-20451","195.67999267578125","195.67999267578125","","2009-06-29T00:00:00Z","","0" +"NM-01788","4.429999828338623","4.429999828338623","","1983-01-12T00:00:00Z","","0" +"NM-00435","69.02999877929688","69.02999877929688","","1982-01-05T00:00:00Z","","0" +"NM-21576","4.889999866485596","4.889999866485596","Z","2004-06-18T00:00:00Z","","0" +"NM-02209","86","86","","1947-11-01T00:00:00Z","","0" +"NM-02017","7.900000095367432","7.900000095367432","","1987-01-15T00:00:00Z","","0" +"NM-02481","77.72000122070312","77.72000122070312","","2002-01-10T00:00:00Z","","0" +"NM-23333","8.199999809265137","8.199999809265137","","1959-09-11T00:00:00Z","","0" +"AB-0179","182.39999389648438","182.39999389648438","","2001-10-24T00:00:00Z","","" +"NM-28250","93.93000030517578","93.93000030517578","","2011-08-25T00:00:00Z","","0" +"NM-02006","9.399999618530273","9.399999618530273","","1965-11-15T00:00:00Z","","0" +"NM-02168","28.65999984741211","28.65999984741211","","2015-05-19T00:00:00Z","","0" +"NM-04770","68.69999694824219","68.69999694824219","","1955-01-17T00:00:00Z","","0" +"TB-0018","328.4800109863281","327.9800109863281","","2010-12-22T00:00:00Z","","0.5" +"NM-13463","34.20000076293945","34.20000076293945","","1954-01-10T00:00:00Z","","0" +"NM-17661","99.37000274658203","99.37000274658203","","1980-01-09T00:00:00Z","","0" +"NM-02397","343.4599914550781","343.4599914550781","","1993-05-04T00:00:00Z","","0" +"NM-03925","325.04998779296875","325.04998779296875","","1974-06-14T00:00:00Z","","0" +"NM-13854","-10.239999771118164","-10.239999771118164","","1906-09-07T00:00:00Z","","0" +"NM-11335","189.1300048828125","189.1300048828125","","1967-01-04T00:00:00Z","","0" +"NM-09116","45.83000183105469","45.83000183105469","P","1961-03-08T00:00:00Z","","0" +"NM-10198","64.31999969482422","64.31999969482422","","1981-04-02T00:00:00Z","","0" +"NM-02006","8","8","","1986-03-15T00:00:00Z","","0" +"NM-18634","57.619998931884766","57.619998931884766","","1990-02-20T00:00:00Z","","0" +"NM-22493","252.3699951171875","252.3699951171875","","1956-12-18T00:00:00Z","","0" +"BC-0057","204.02000427246094","204.02000427246094","","2019-04-22T00:00:00Z","","0" +"NM-02352","6.400000095367432","6.400000095367432","","1949-11-15T00:00:00Z","","0" +"DE-0191","48.2400016784668","48.2400016784668","","2009-05-01T00:00:00Z","","0" +"NM-06223","69.8499984741211","69.8499984741211","","1996-02-21T00:00:00Z","","0" +"NM-02794","69.43000030517578","69.43000030517578","Z","1996-08-16T00:00:00Z","","0" +"AB-0070","153.24000549316406","153.24000549316406","","2010-04-29T00:00:00Z","","" +"AB-0093","491.67999267578125","491.67999267578125","","2003-01-30T00:00:00Z","","" +"NM-07881","12.279999732971191","12.279999732971191","","1945-09-22T00:00:00Z","","0" +"BC-0170","296.8299865722656","296.8299865722656","","2015-09-08T00:00:00Z","","0" +"NM-10949","50.650001525878906","50.650001525878906","","1949-01-20T00:00:00Z","","0" +"NM-11928","-0.5600000023841858","-0.5600000023841858","","1945-10-01T00:00:00Z","","0" +"NM-02144","74.87000274658203","74.87000274658203","","1952-01-11T00:00:00Z","","0" +"NM-17704","31.360000610351562","31.360000610351562","","1949-01-07T00:00:00Z","","0" +"NM-06720","66.91000366210938","66.91000366210938","","1970-12-17T00:00:00Z","","0" +"NM-06408","20.950000762939453","20.950000762939453","","1958-01-08T00:00:00Z","","0" +"NM-21960","47.09000015258789","47.09000015258789","T","1984-09-27T00:00:00Z","","0" +"NM-11901","13.75","13.75","","1941-01-25T00:00:00Z","","0" +"NM-11046","15.399999618530273","15.399999618530273","","1941-01-20T00:00:00Z","","0" +"NM-04978","340.6700134277344","340.6700134277344","","2004-01-13T00:00:00Z","","0" +"NM-02006","12.399999618530273","12.399999618530273","","1955-07-15T00:00:00Z","","0" +"NM-28257","-11.550000190734863","-11.550000190734863","","2011-02-05T00:00:00Z","","0" +"NM-01948","10.300000190734863","10.300000190734863","","1958-02-15T00:00:00Z","","0" +"NM-12364","-32.189998626708984","-32.189998626708984","","1909-09-24T00:00:00Z","","0" +"NM-01948","5.599999904632568","5.599999904632568","","1948-10-15T00:00:00Z","","0" +"NM-12392","261.4200134277344","261.4200134277344","","1964-10-01T00:00:00Z","","0" +"EB-170","181.0500030517578","178.35000610351562","","2010-09-23T00:00:00Z","","2.700000047683716" +"NM-02831","58.20000076293945","58.20000076293945","","1977-01-01T00:00:00Z","","0" +"NM-28257","14.5","14.5","","1981-02-15T00:00:00Z","","0" +"NM-03240","139.22999572753906","139.22999572753906","","2006-01-24T00:00:00Z","","0" +"NM-13728","-18.329999923706055","-18.329999923706055","","1905-06-19T00:00:00Z","","0" +"NM-02384","7.199999809265137","7.199999809265137","","1948-10-15T00:00:00Z","","0" +"NM-20620","26.670000076293945","26.670000076293945","","1947-02-19T00:00:00Z","","0" +"NM-28259","71.16000366210938","71.16000366210938","","1956-12-15T00:00:00Z","","0" +"NM-26887","16.3700008392334","18.3700008392334","R","1998-06-10T00:00:00Z","","0" +"NM-03903","329.3500061035156","329.3500061035156","","1976-03-23T00:00:00Z","","0" +"NM-21284","6.03000020980835","6.03000020980835","","1959-08-18T00:00:00Z","","0" +"DE-0272","89.62000274658203","89.62000274658203","","2019-06-24T00:00:00Z","","0" +"NM-04582","59.95000076293945","59.95000076293945","","1941-01-09T00:00:00Z","","0" +"NM-10917","-13.710000038146973","-13.710000038146973","","1910-10-14T00:00:00Z","","0" +"NM-04470","40.47999954223633","40.47999954223633","","1947-01-11T00:00:00Z","","0" +"EB-246","259.9700012207031","259.9700012207031","","1987-04-15T00:00:00Z","","0" +"NM-16578","15.300000190734863","15.300000190734863","","1935-01-17T00:00:00Z","","0" +"LC-030","","","D","2011-10-05T00:00:00Z","","0.699999988079071" +"NM-17324","35.220001220703125","35.220001220703125","","1945-01-18T00:00:00Z","","0" +"NM-06125","117.1500015258789","117.1500015258789","","1971-11-19T00:00:00Z","","0" +"NM-23567","164.82000732421875","164.82000732421875","","1983-03-23T00:00:00Z","","0" +"NM-17716","3.240000009536743","3.240000009536743","","1945-07-28T00:00:00Z","","0" +"NM-01986","6.599999904632568","6.599999904632568","","1984-11-15T00:00:00Z","","0" +"NM-02728","94.23999786376953","94.23999786376953","","2004-01-14T00:00:00Z","","0" +"NM-28257","53.40999984741211","53.40999984741211","","1970-05-15T00:00:00Z","","0" +"NM-16601","13.050000190734863","13.050000190734863","","1933-05-14T00:00:00Z","","0" +"NM-28253","27","27","","1972-02-15T00:00:00Z","","0" +"NM-12443","-24.100000381469727","-24.100000381469727","","1913-08-06T00:00:00Z","","0" +"NM-11803","-12.550000190734863","-12.550000190734863","","1908-12-23T00:00:00Z","","0" +"ED-0162","49.29999923706055","49.29999923706055","","1948-02-04T00:00:00Z","","0" +"NM-28254","71.0999984741211","71.0999984741211","","2020-11-06T00:00:00Z","","0" +"NM-02168","14.119999885559082","14.119999885559082","","2010-10-15T00:00:00Z","","0" +"NM-22296","26.09000015258789","26.09000015258789","","1981-03-11T00:00:00Z","","0" +"NM-18125","44.40999984741211","44.40999984741211","","1976-01-06T00:00:00Z","","0" +"NM-22956","899.3499755859375","899.3499755859375","","2002-09-26T00:00:00Z","","0" +"SA-0059","135.25999450683594","133.97000122070312","","2015-02-19T00:00:00Z","","1.2899999618530273" +"NM-01239","24.979999542236328","24.979999542236328","","1983-08-12T00:00:00Z","","0" +"NM-11679","36.310001373291016","36.310001373291016","","1948-09-17T00:00:00Z","","0" +"NM-21692","159.2899932861328","159.2899932861328","","2007-03-13T00:00:00Z","","0" +"NM-01281","396","396","","1984-12-01T00:00:00Z","","0" +"NM-01108","131.02999877929688","131.02999877929688","","1997-01-30T00:00:00Z","","0" +"AB-0109","33.36000061035156","33.36000061035156","","2000-02-08T00:00:00Z","","" +"NM-02331","184.00999450683594","184.00999450683594","","2013-01-21T00:00:00Z","","0" +"NM-22027","20.399999618530273","20.399999618530273","","1961-02-15T00:00:00Z","","0" +"NM-05762","37.880001068115234","37.880001068115234","","1945-02-21T00:00:00Z","","0" +"NM-21650","","","D","2004-06-27T00:00:00Z","","0" +"NM-10566","54.52000045776367","54.52000045776367","","1956-01-01T00:00:00Z","","0" +"SA-0167","56.61000061035156","56.400001525878906","","2010-06-29T00:00:00Z","","0.20999999344348907" +"NM-02169","8.140000343322754","8.140000343322754","","2005-04-19T00:00:00Z","","0" +"NM-12961","35.90999984741211","35.90999984741211","","1986-02-04T00:00:00Z","","0" +"EB-294","169.91000366210938","172.30999755859375","","2001-10-01T00:00:00Z","","-2.4000000953674316" +"BC-0299","207.85000610351562","207.85000610351562","","2018-09-19T00:00:00Z","","0" +"NM-18890","121.79000091552734","121.79000091552734","","1966-04-11T00:00:00Z","","0" +"NM-00543","62.130001068115234","62.130001068115234","","1995-01-04T00:00:00Z","","0" +"NM-02518","6.400000095367432","6.400000095367432","","1966-08-15T00:00:00Z","","0" +"NM-02209","106.7300033569336","106.7300033569336","","1969-02-01T00:00:00Z","","0" +"NM-08189","11","11","","1966-02-15T00:00:00Z","","0" +"NM-01947","7.599999904632568","7.599999904632568","","1965-05-15T00:00:00Z","","0" +"NM-01872","9.600000381469727","9.600000381469727","","1972-12-15T00:00:00Z","","0" +"NM-13735","-55.290000915527344","-55.290000915527344","","1911-10-18T00:00:00Z","","0" +"NM-01336","226.82000732421875","226.82000732421875","","2005-09-08T00:00:00Z","","0" +"DE-0099","92.08999633789062","92.08999633789062","","1999-07-01T00:00:00Z","","0" +"NM-02527","10.800000190734863","10.800000190734863","","1979-12-15T00:00:00Z","","0" +"SV-0014","164.1999969482422","163.3699951171875","","2019-08-10T00:00:00Z","","0.8299999833106995" +"NM-01066","116.62000274658203","116.62000274658203","","1975-01-03T00:00:00Z","","0" +"NM-02493","79.68000030517578","79.68000030517578","","1969-10-15T00:00:00Z","","0" +"NM-22015","24.600000381469727","24.600000381469727","R","1993-03-23T00:00:00Z","","0" +"NM-28025","4.309999942779541","4.309999942779541","","2016-05-23T00:00:00Z","","0" +"NM-03957","36.709999084472656","36.709999084472656","","1952-11-28T00:00:00Z","","0" +"NM-09770","95","95","","1954-12-27T00:00:00Z","","0" +"NM-17527","32.0099983215332","32.0099983215332","","1936-09-21T00:00:00Z","","0" +"NM-12506","-12.550000190734863","-12.550000190734863","","1912-05-27T00:00:00Z","","0" +"NM-28257","14.850000381469727","14.850000381469727","","1995-03-15T00:00:00Z","","0" +"NM-28253","54.79999923706055","54.79999923706055","","1978-04-25T00:00:00Z","","0" +"NM-01889","23.979999542236328","23.979999542236328","","2000-10-25T00:00:00Z","","0" +"NM-02650","38.70000076293945","38.70000076293945","P","1963-10-01T00:00:00Z","","0" +"NM-02280","14.34000015258789","14.34000015258789","","1994-08-29T00:00:00Z","","0" +"NM-10165","-7.929999828338623","-7.929999828338623","","1926-08-14T00:00:00Z","","0" +"NM-02543","72.41999816894531","72.41999816894531","","1964-01-09T00:00:00Z","","0" +"NM-28250","103.12000274658203","103.12000274658203","","1984-04-05T00:00:00Z","","0" +"NM-05878","116.94999694824219","116.94999694824219","","1955-04-11T00:00:00Z","","0" +"NM-00367","113.70999908447266","113.70999908447266","","1992-03-26T00:00:00Z","","0" +"NM-08447","29.329999923706055","29.329999923706055","","1961-01-18T00:00:00Z","","0" +"NM-28258","158.5500030517578","158.5500030517578","","2016-10-05T00:00:00Z","","0" +"NM-02101","6.199999809265137","6.199999809265137","","1982-06-15T00:00:00Z","","0" +"NM-01895","28.530000686645508","28.530000686645508","","2001-04-23T00:00:00Z","","0" +"NM-27329","185.1300048828125","185.1300048828125","","1988-03-17T00:00:00Z","","0" +"NM-28010","498.8699951171875","498.8699951171875","S","2015-06-01T00:00:00Z","","0" +"NM-13827","-49.5099983215332","-49.5099983215332","","1905-10-17T00:00:00Z","","0" +"NM-01565","-238.00999450683594","-238.00999450683594","","1988-05-21T00:00:00Z","","0" +"NM-11679","24.420000076293945","24.420000076293945","","1944-11-21T00:00:00Z","","0" +"EB-337","201.83999633789062","201.83999633789062","","2013-07-11T00:00:00Z","","0" +"NM-04987","107.7699966430664","107.7699966430664","","1996-03-06T00:00:00Z","","0" +"NM-28256","80.38999938964844","80.38999938964844","","2016-02-15T00:00:00Z","","0" +"NM-03385","38.79999923706055","38.79999923706055","","1989-06-27T00:00:00Z","","0" +"NM-12943","2.0999999046325684","2.0999999046325684","","1978-12-20T00:00:00Z","","0" +"AR-0042","16.93000030517578","15.450000762939453","","2015-08-19T00:00:00Z","","1.4800000190734863" +"NM-17436","46.77000045776367","46.77000045776367","","1974-07-11T00:00:00Z","","0" +"NM-03720","58.43000030517578","58.43000030517578","","1951-01-15T00:00:00Z","","0" +"NM-14192","38.709999084472656","38.709999084472656","","1956-05-04T00:00:00Z","","0" +"NM-03045","82.5199966430664","82.5199966430664","A","2010-02-22T00:00:00Z","","0" +"HS-066","80.4800033569336","75.81000518798828","","2013-01-09T00:00:00Z","","4.670000076293945" +"NM-01097","206.25","206.25","R","1972-02-02T00:00:00Z","","0" +"NM-14535","89","89","","1978-01-05T00:00:00Z","","0" +"DE-0106","36.90999984741211","36.90999984741211","","2006-01-11T00:00:00Z","","0" +"NM-02634","16.989999771118164","16.989999771118164","","2000-02-23T00:00:00Z","","0" +"NM-28259","129.72999572753906","129.72999572753906","","1968-10-15T00:00:00Z","","0" +"NM-00297","49.470001220703125","49.470001220703125","","1977-01-07T00:00:00Z","","0" +"SM-0118","87.55000305175781","87.55000305175781","","1984-01-19T00:00:00Z","","0" +"NM-11556","41.43000030517578","41.43000030517578","","1938-05-17T00:00:00Z","","0" +"EB-488","406.1300048828125","403.1300048828125","Z","2006-12-31T00:00:00Z","","3" +"NM-09682","436.19000244140625","436.19000244140625","","1977-06-30T00:00:00Z","","0" +"NM-14848","95.87000274658203","95.87000274658203","","1963-08-13T00:00:00Z","","0" +"WL-0086","33.04166793823242","31.281667709350586","","1994-03-08T00:00:00Z","","1.7599999904632568" +"NM-01867","60.88999938964844","60.88999938964844","","1965-01-16T00:00:00Z","","0" +"NM-02017","7.400000095367432","7.400000095367432","","1995-02-22T00:00:00Z","","0" +"NM-05731","133.64999389648438","133.64999389648438","","1969-01-16T00:00:00Z","","0" +"NM-02535","11.319999694824219","11.319999694824219","","2000-07-07T00:00:00Z","","0" +"NM-00367","136.72000122070312","136.72000122070312","Z","2005-08-10T00:00:00Z","","0" +"NM-03893","148.33999633789062","148.33999633789062","","1980-01-09T00:00:00Z","","0" +"NM-11704","107.0199966430664","107.0199966430664","S","1983-05-10T00:00:00Z","","0" +"EB-277","240.02000427246094","240.02000427246094","","1995-01-10T00:00:00Z","","0" +"NM-12642","30.3799991607666","30.3799991607666","","1976-04-09T00:00:00Z","","0" +"NM-04591","66.61000061035156","66.61000061035156","P","1950-09-27T00:00:00Z","","0" +"SM-0153","99.5","97.80000305175781","","2007-10-15T00:00:00Z","","1.7000000476837158" +"NM-02799","18.549999237060547","18.549999237060547","","1983-02-02T00:00:00Z","","0" +"NM-10214","33.709999084472656","33.709999084472656","","1949-01-23T00:00:00Z","","0" +"NM-00276","161.25999450683594","161.25999450683594","","2009-01-28T00:00:00Z","","0" +"NM-00257","95.3499984741211","95.3499984741211","","1991-05-28T00:00:00Z","","0" +"NM-26748","20.809999465942383","20.809999465942383","","1986-08-19T00:00:00Z","","0" +"EB-337","202.47000122070312","202.47000122070312","","2010-10-18T00:00:00Z","","0" +"NM-06343","68.29000091552734","68.29000091552734","","1968-03-07T00:00:00Z","","0" +"NM-00603","73","73","","1986-01-08T00:00:00Z","","0" +"NM-13135","8.6899995803833","8.6899995803833","","1972-10-16T00:00:00Z","","0" +"NM-01872","7.5","7.5","","1986-10-15T00:00:00Z","","0" +"NM-06339","49.2599983215332","49.2599983215332","","1970-12-02T00:00:00Z","","0" +"SO-0070","191.3000030517578","191.3000030517578","","1949-12-21T00:00:00Z","","0" +"NM-02031","120.41999816894531","120.41999816894531","","1981-01-06T00:00:00Z","","0" +"NM-20560","10.510000228881836","10.510000228881836","","1960-02-12T00:00:00Z","","0" +"SA-0497","98","98","","1972-10-29T00:00:00Z","","0" +"NM-04834","33.209999084472656","33.209999084472656","","1952-03-28T00:00:00Z","","0" +"NM-28252","46.70000076293945","46.70000076293945","","1988-10-05T00:00:00Z","","0" +"NM-05762","55.91999816894531","55.91999816894531","","1957-03-04T00:00:00Z","","0" +"NM-28254","21.200000762939453","21.200000762939453","","1997-11-15T00:00:00Z","","0" +"UC-0127","217.3300018310547","217.3300018310547","","2013-03-07T00:00:00Z","","0" +"NM-14237","90.4000015258789","90.4000015258789","","1984-03-15T00:00:00Z","","0" +"NM-02152","7.599999904632568","7.599999904632568","","1996-08-15T00:00:00Z","","0" +"NM-27609","113.8499984741211","113.8499984741211","","1966-03-17T00:00:00Z","","0" +"NM-02527","9.800000190734863","9.800000190734863","","1976-01-15T00:00:00Z","","0" +"NM-03423","21.639999389648438","21.639999389648438","","1994-05-03T00:00:00Z","","0" +"NM-28255","124.37000274658203","124.37000274658203","","1962-03-25T00:00:00Z","","0" +"NM-14031","-13.710000038146973","-13.710000038146973","","1910-09-09T00:00:00Z","","0" +"NM-02606","69.19000244140625","69.19000244140625","","1990-03-07T00:00:00Z","","0" +"NM-17876","136.77999877929688","136.77999877929688","","1954-02-17T00:00:00Z","","0" +"NM-02990","21.450000762939453","21.450000762939453","","1951-01-12T00:00:00Z","","0" +"NM-10096","9.880000114440918","9.880000114440918","","1982-10-21T00:00:00Z","","0" +"NM-09305","10.899999618530273","10.899999618530273","","1945-01-20T00:00:00Z","","0" +"NM-03226","44.119998931884766","44.119998931884766","","1954-11-04T00:00:00Z","","0" +"NM-17885","192.85000610351562","192.85000610351562","","1977-01-04T00:00:00Z","","0" +"NM-22866","52.619998931884766","52.619998931884766","","1960-01-04T00:00:00Z","","0" +"NM-27480","190.2899932861328","190.2899932861328","","1999-02-02T00:00:00Z","","0" +"NM-12105","-49.5099983215332","-49.5099983215332","","1913-01-16T00:00:00Z","","0" +"NM-02772","36.4900016784668","36.4900016784668","","2002-10-25T00:00:00Z","","0" +"NM-28022","485.69000244140625","485.69000244140625","S","2015-05-07T00:00:00Z","","0" +"NM-02591","12.399999618530273","12.399999618530273","","1970-07-15T00:00:00Z","","0" +"EB-341","101.5199966430664","108.0199966430664","","2007-05-18T00:00:00Z","","-6.5" +"NM-01239","33.84000015258789","33.84000015258789","","1974-01-14T00:00:00Z","","0" +"NM-01434","79.29000091552734","79.29000091552734","R","2008-01-31T00:00:00Z","","0" +"NM-02017","8.399999618530273","8.399999618530273","","1962-01-15T00:00:00Z","","0" +"NM-03428","5.829999923706055","5.829999923706055","","2002-06-06T00:00:00Z","","0" +"NM-04333","50.29999923706055","50.29999923706055","","1956-10-25T00:00:00Z","","0" +"NM-28258","185.5500030517578","185.5500030517578","","2002-06-25T00:00:00Z","","0" +"NM-28174","115.81999969482422","115.81999969482422","","1974-02-06T00:00:00Z","","0" +"NM-03041","74.9000015258789","74.9000015258789","","2008-03-17T00:00:00Z","","0" +"NM-02158","9.399999618530273","9.399999618530273","","2002-03-15T00:00:00Z","","0" +"NM-03378","15.539999961853027","15.539999961853027","","1957-01-31T00:00:00Z","","0" +"NM-03152","162.4600067138672","162.4600067138672","","1995-02-23T00:00:00Z","","0" +"NM-21537","8.130000114440918","8.130000114440918","X","1997-01-22T00:00:00Z","","0" +"NM-13298","129.7100067138672","129.7100067138672","","1968-01-18T00:00:00Z","","0" +"NM-00799","16.979999542236328","16.979999542236328","R","2010-05-24T00:00:00Z","","0" +"NM-00644","100.33000183105469","100.33000183105469","","1977-05-01T00:00:00Z","","0" +"NM-01769","38.720001220703125","38.720001220703125","","1954-09-17T00:00:00Z","","0" +"NM-05117","84.37999725341797","84.37999725341797","","1952-01-24T00:00:00Z","","0" +"NM-05347","8.800000190734863","8.800000190734863","","1963-10-15T00:00:00Z","","0" +"NM-20882","161.38999938964844","161.38999938964844","","1982-02-19T00:00:00Z","","0" +"EB-020","159.05999755859375","157.86000061035156","","1973-08-27T00:00:00Z","","1.2000000476837158" +"NM-09846","-56.439998626708984","-56.439998626708984","","1908-03-20T00:00:00Z","","0" +"NM-17048","16.709999084472656","16.709999084472656","","1945-09-24T00:00:00Z","","0" +"NM-01623","127.37999725341797","127.37999725341797","","1986-02-05T00:00:00Z","","0" +"NM-01791","331.7799987792969","331.7799987792969","","1995-08-14T00:00:00Z","","0" +"NM-11263","40","40","","1947-09-11T00:00:00Z","","0" +"DA-0052","58","58","","1964-12-15T00:00:00Z","","0" +"NM-02273","19.399999618530273","19.399999618530273","","1995-02-22T00:00:00Z","","0" +"NM-21723","29.31999969482422","29.31999969482422","","2012-02-02T00:00:00Z","","0" +"NM-00480","54.68000030517578","54.68000030517578","","1955-07-15T00:00:00Z","","0" +"NM-20578","12.279999732971191","12.279999732971191","","1962-02-08T00:00:00Z","","0" +"AB-0068","153.63999938964844","153.63999938964844","","2000-11-09T00:00:00Z","","" +"EB-276","185.5800018310547","185.5800018310547","","1973-11-29T00:00:00Z","","0" +"NM-27951","36.380001068115234","36.380001068115234","","1959-02-04T00:00:00Z","","0" +"NM-13797","22.15999984741211","22.15999984741211","","1957-04-08T00:00:00Z","","0" +"NM-03175","338.4100036621094","338.4100036621094","","1991-01-04T00:00:00Z","","0" +"NM-13216","66.5","66.5","","1966-02-16T00:00:00Z","","0" +"SA-0201","41.599998474121094","40.14999771118164","","2010-09-15T00:00:00Z","","1.4500000476837158" +"QU-110","6.340000152587891","9.360000610351562","","2015-03-18T00:00:00Z","","-3.0199999809265137" +"NM-28250","84.33000183105469","84.33000183105469","","2002-09-25T00:00:00Z","","0" +"NM-02560","136.6199951171875","136.6199951171875","","2017-10-02T00:00:00Z","0001-01-01T11:29:00Z","0" +"NM-09817","31.670000076293945","31.670000076293945","","1941-12-10T00:00:00Z","","0" +"BC-0054","259.7699890136719","259.7699890136719","","2016-03-10T00:00:00Z","","0" +"NM-02424","31.899999618530273","31.899999618530273","","1960-11-22T00:00:00Z","","0" +"DE-0108","41.75","41.75","","2009-06-15T00:00:00Z","","0" +"NM-10352","104.80000305175781","104.80000305175781","","1968-01-02T00:00:00Z","","0" +"NM-01326","51.290000915527344","51.290000915527344","","2013-08-22T00:00:00Z","","0" +"NM-08783","150.75999450683594","150.75999450683594","","1954-11-17T00:00:00Z","","0" +"NM-13441","-10.819999694824219","-10.819999694824219","","1911-05-23T00:00:00Z","","0" +"NM-13839","-5.039999961853027","-5.039999961853027","","1907-06-08T00:00:00Z","","0" +"NM-15626","110.4800033569336","110.4800033569336","","1995-01-24T00:00:00Z","","0" +"NM-12948","42.150001525878906","42.150001525878906","","1948-02-02T00:00:00Z","","0" +"NM-02240","54.470001220703125","54.470001220703125","","1988-01-28T00:00:00Z","","0" +"NM-13731","35.02000045776367","35.02000045776367","","1958-12-29T00:00:00Z","","0" +"NM-02287","6.230000019073486","6.230000019073486","","1997-10-02T00:00:00Z","","0" +"NM-13584","27.959999084472656","27.959999084472656","","1967-01-10T00:00:00Z","","0" +"NM-24757","148.33999633789062","148.33999633789062","","1960-02-11T00:00:00Z","","0" +"NM-18922","377.8699951171875","377.8699951171875","","1966-01-12T00:00:00Z","","0" +"NM-17716","5.78000020980835","5.78000020980835","","1948-07-24T00:00:00Z","","0" +"NM-28252","25.399999618530273","25.399999618530273","","1955-01-25T00:00:00Z","","0" +"NM-09403","-74.91999816894531","-74.91999816894531","","1906-10-10T00:00:00Z","","0" +"NM-25876","161.22000122070312","161.22000122070312","","1973-02-01T00:00:00Z","","0" +"NM-28019","480.79998779296875","480.79998779296875","S","2015-04-25T00:00:00Z","","0" +"EB-483","31.25","31.25","","1986-02-28T00:00:00Z","","0" +"NM-13715","-0.9399999976158142","-0.9399999976158142","","1912-12-28T00:00:00Z","","0" +"NM-07773","47.29999923706055","47.29999923706055","","1961-01-23T00:00:00Z","","0" +"NM-09313","45.869998931884766","45.869998931884766","","1954-07-17T00:00:00Z","","0" +"NM-28256","270.989990234375","270.989990234375","","2020-06-25T00:00:00Z","","0" +"NM-00720","5.389999866485596","5.389999866485596","Z","2007-07-03T00:00:00Z","","0" +"NM-24503","104.9800033569336","104.9800033569336","","1993-01-28T00:00:00Z","","0" +"NM-19458","257.260009765625","257.260009765625","","1962-03-22T00:00:00Z","","0" +"SD-0068","36.29999923706055","36.29999923706055","","1963-09-26T00:00:00Z","","0" +"NM-17140","39.5","39.5","","1972-03-07T00:00:00Z","","0" +"EB-244","135.1999969482422","135.1999969482422","","2011-02-04T00:00:00Z","","0" +"NM-21871","452.92999267578125","452.92999267578125","","2011-11-18T00:00:00Z","","0" +"NM-15582","105.02999877929688","105.02999877929688","R","1986-08-19T00:00:00Z","","0" +"NM-02264","98.41999816894531","98.41999816894531","","1960-01-14T00:00:00Z","","0" +"NM-03331","11.010000228881836","11.010000228881836","Z","1998-07-07T00:00:00Z","","0" +"NM-01712","149.61000061035156","149.61000061035156","","1992-02-28T00:00:00Z","","0" +"NM-03487","110.93000030517578","110.93000030517578","","1967-04-08T00:00:00Z","","0" +"NM-01767","134.52000427246094","134.52000427246094","","1981-01-20T00:00:00Z","","0" +"NM-17538","89.16999816894531","89.16999816894531","","2006-02-27T00:00:00Z","","0" +"NM-14550","17.459999084472656","17.459999084472656","","1938-02-08T00:00:00Z","","0" +"NM-00387","42.130001068115234","42.130001068115234","","1957-01-11T00:00:00Z","","0" +"NM-11741","138.1699981689453","138.1699981689453","","1961-01-13T00:00:00Z","","0" +"EB-276","157.8800048828125","157.8800048828125","","1970-03-16T00:00:00Z","","0" +"NM-02231","120.68000030517578","120.68000030517578","","1979-01-15T00:00:00Z","","0" +"EB-288","124.16999816894531","124.16999816894531","","1978-08-01T00:00:00Z","","0" +"NM-24338","55.70000076293945","55.70000076293945","","1981-06-05T00:00:00Z","","0" +"NM-05582","120.37000274658203","120.37000274658203","","1973-01-29T00:00:00Z","","0" +"BC-0118","32.29999923706055","32.29999923706055","","2017-10-14T00:00:00Z","","0" +"NM-03336","11.399999618530273","11.399999618530273","","1994-04-07T00:00:00Z","","0" +"WL-0002","527.7000122070312","526.510009765625","","2019-11-14T00:00:00Z","0001-01-01T12:20:00Z","1.190000057220459" +"SA-0037","45.880001068115234","44.130001068115234","","2016-02-16T00:00:00Z","","1.75" +"NM-08524","11.399999618530273","11.399999618530273","","1983-10-15T00:00:00Z","","0" +"NM-14059","-22.950000762939453","-22.950000762939453","","1907-01-05T00:00:00Z","","0" +"NM-21380","40.099998474121094","40.099998474121094","","1949-02-17T00:00:00Z","","0" +"NM-12349","23.43000030517578","23.43000030517578","","1938-02-01T00:00:00Z","","0" +"UC-0039","168.25","168.25","","2010-01-15T00:00:00Z","","0" +"NM-08362","22.719999313354492","22.719999313354492","","1960-12-29T00:00:00Z","","0" +"NM-07516","42.27000045776367","42.27000045776367","","1959-01-07T00:00:00Z","","0" +"NM-14825","41.54999923706055","41.54999923706055","","1991-01-23T00:00:00Z","","0" +"NM-16456","15.829999923706055","15.829999923706055","","1976-09-16T00:00:00Z","","0" +"NM-12068","158.58999633789062","158.58999633789062","P","1961-03-23T00:00:00Z","","0" +"NM-01947","5.699999809265137","5.699999809265137","","1952-08-15T00:00:00Z","","0" +"NM-14802","104.86000061035156","104.86000061035156","","1973-12-14T00:00:00Z","","0" +"NM-00238","32.459999084472656","32.459999084472656","","1998-01-06T00:00:00Z","","0" +"SB-0442","173.39999389648438","173.39999389648438","","2011-11-30T00:00:00Z","","0" +"NM-16887","52.279998779296875","52.279998779296875","","1977-01-11T00:00:00Z","","0" +"NM-12546","46.93000030517578","46.93000030517578","","1966-02-15T00:00:00Z","","0" +"NM-05920","54.59000015258789","54.59000015258789","","1939-03-16T00:00:00Z","","0" +"NM-28251","85.12999725341797","85.12999725341797","","1985-05-05T00:00:00Z","","0" +"NM-02535","13.729999542236328","13.729999542236328","","1998-07-08T00:00:00Z","","0" +"DE-0310","46.689998626708984","46.689998626708984","","2015-12-08T00:00:00Z","","0" +"NM-06847","150.8800048828125","150.8800048828125","","1996-02-13T00:00:00Z","","0" +"NM-12600","53.5","53.5","","1938-11-03T00:00:00Z","","0" +"DE-0065","21.010000228881836","19.110000610351562","","2005-10-24T00:00:00Z","","1.899999976158142" +"NM-04582","75.30999755859375","75.30999755859375","","1953-01-12T00:00:00Z","","0" +"NM-13944","-11.970000267028809","-11.970000267028809","","1907-09-14T00:00:00Z","","0" +"NM-10549","402.760009765625","402.760009765625","","1989-02-02T00:00:00Z","","0" +"NM-28252","63.75","63.75","","1968-06-25T00:00:00Z","","0" +"NM-16992","80","80","","1978-08-05T00:00:00Z","","0" +"NM-28254","74.19999694824219","74.19999694824219","","1953-04-15T00:00:00Z","","0" +"NM-11869","21.450000762939453","21.450000762939453","","1940-10-09T00:00:00Z","","0" +"SB-0511","1137","1137","P","1986-07-19T00:00:00Z","","0" +"NM-03240","129.39999389648438","129.39999389648438","","1982-08-30T00:00:00Z","","0" +"NM-17716","8.220000267028809","8.220000267028809","","1940-08-19T00:00:00Z","","0" +"DE-0085","90.5199966430664","90.5199966430664","","2003-01-14T00:00:00Z","","0" +"NM-25232","210.92999267578125","210.92999267578125","","1980-01-29T00:00:00Z","","0" +"SM-0055","224.0500030517578","222.0500030517578","","2007-09-27T00:00:00Z","","2" +"NM-28020","465.6099853515625","465.6099853515625","S","2015-04-26T00:00:00Z","","0" +"NM-14039","-19.479999542236328","-19.479999542236328","","1906-06-22T00:00:00Z","","0" +"EB-479","133","133","","1993-03-31T00:00:00Z","","0" +"NM-19786","132.5399932861328","132.5399932861328","","2011-02-28T00:00:00Z","","0" +"NM-25667","17.799999237060547","17.799999237060547","","1957-08-01T00:00:00Z","","0" +"NM-02280","21.34000015258789","21.34000015258789","","2000-05-23T00:00:00Z","","0" +"NM-00014","50.70000076293945","50.70000076293945","","1994-03-11T00:00:00Z","","0" +"NM-06756","13.960000038146973","13.960000038146973","","2013-04-24T00:00:00Z","","0" +"DE-0264","84.08999633789062","84.08999633789062","","2018-03-23T00:00:00Z","","0" +"NM-02548","36.54999923706055","36.54999923706055","","1958-01-28T00:00:00Z","","0" +"NM-13425","396.54998779296875","396.54998779296875","","1972-10-01T00:00:00Z","","0" +"NM-03397","25.299999237060547","25.299999237060547","","1993-09-02T00:00:00Z","","0" +"NM-01893","12.029999732971191","12.029999732971191","","1992-12-17T00:00:00Z","","0" +"EB-481","542.0999755859375","542.0999755859375","P","2008-07-31T00:00:00Z","","0" +"NM-04925","42.630001068115234","42.630001068115234","","1958-11-13T00:00:00Z","","0" +"NM-25049","51.79999923706055","51.79999923706055","P","1987-02-13T00:00:00Z","","0" +"NM-16897","38.75","38.75","","1948-01-10T00:00:00Z","","0" +"NM-13573","48.31999969482422","48.31999969482422","","1957-06-25T00:00:00Z","","0" +"EB-429","46.43000030517578","46.43000030517578","","1951-08-30T00:00:00Z","","" +"NM-01885","27.59000015258789","27.59000015258789","","2011-06-02T00:00:00Z","","0" +"NM-13120","4.78000020980835","4.78000020980835","","1957-08-08T00:00:00Z","","0" +"NM-09282","14.699999809265137","14.699999809265137","","1973-01-12T00:00:00Z","","0" +"NM-14833","22.75","22.75","","1950-07-12T00:00:00Z","","0" +"NM-12477","12.680000305175781","12.680000305175781","","1989-01-23T00:00:00Z","","0" +"NM-02283","28.479999542236328","28.479999542236328","","2011-03-16T00:00:00Z","","0" +"NM-17716","2.990000009536743","2.990000009536743","","1947-01-06T00:00:00Z","","0" +"NM-17780","34.84000015258789","34.84000015258789","","1995-03-23T00:00:00Z","","0" +"NM-28254","61.5","61.5","","1953-06-15T00:00:00Z","","0" +"NM-12297","8.65999984741211","8.65999984741211","","1960-11-17T00:00:00Z","","0" +"NM-07330","130.3000030517578","130.3000030517578","","1954-01-18T00:00:00Z","","0" +"NM-01439","35.400001525878906","35.400001525878906","","1987-02-12T00:00:00Z","","0" +"NM-11675","114.8499984741211","114.8499984741211","","1960-01-18T00:00:00Z","","0" +"NM-23070","475","475","R","1980-06-24T00:00:00Z","","0" +"NM-11282","36.5","36.5","","1943-12-04T00:00:00Z","","0" +"SB-0299","131.0500030517578","131.0500030517578","","2006-04-05T00:00:00Z","","0" +"NM-00253","22.559999465942383","22.559999465942383","","1983-01-01T00:00:00Z","","0" +"NM-02216","176.97999572753906","176.97999572753906","","1982-02-19T00:00:00Z","","0" +"NM-14802","103.51000213623047","103.51000213623047","","1971-12-06T00:00:00Z","","0" +"NM-11244","69.11000061035156","69.11000061035156","","1986-02-04T00:00:00Z","","0" +"NM-05455","52.63999938964844","52.63999938964844","","1947-03-21T00:00:00Z","","0" +"NM-02642","114.52999877929688","114.52999877929688","","2007-02-02T00:00:00Z","","0" +"NM-00647","72.4000015258789","72.4000015258789","","1971-02-19T00:00:00Z","","0" +"NM-13935","-14.859999656677246","-14.859999656677246","","1905-06-12T00:00:00Z","","0" +"UC-0108","69.37999725341797","69.37999725341797","","1981-02-03T00:00:00Z","","0" +"DE-0060","204.64999389648438","201.9399871826172","","2011-12-15T00:00:00Z","","2.7100000381469727" +"EB-220","133.66000366210938","133.010009765625","","2017-04-05T00:00:00Z","0001-01-01T13:20:00Z","0.6499999761581421" +"NM-07137","90.16999816894531","90.16999816894531","","2005-10-05T00:00:00Z","","0" +"DE-0210","133.63999938964844","133.63999938964844","","2013-04-23T00:00:00Z","","0" +"NM-11383","36.150001525878906","36.150001525878906","","1943-05-17T00:00:00Z","","0" +"EB-012","93.55999755859375","93.55999755859375","","1959-05-11T00:00:00Z","","0" +"EB-276","400","400","P","1988-05-31T00:00:00Z","","0" +"NM-00920","266.2099914550781","266.2099914550781","","2012-02-16T00:00:00Z","","0" +"NM-01985","9.800000190734863","9.800000190734863","","1970-10-15T00:00:00Z","","0" +"NM-00149","36.58000183105469","36.58000183105469","","2001-02-27T00:00:00Z","","0" +"NM-13968","-11.680000305175781","-11.680000305175781","","1907-01-02T00:00:00Z","","0" +"NM-28254","33.540000915527344","33.540000915527344","","1960-02-25T00:00:00Z","","0" +"NM-12896","-8.800000190734863","-8.800000190734863","","1910-09-17T00:00:00Z","","0" +"NM-22966","789.6300048828125","789.6300048828125","","1989-11-02T00:00:00Z","","0" +"NM-02232","90.30999755859375","90.30999755859375","","1950-09-21T00:00:00Z","","0" +"NM-00955","331.1199951171875","331.1199951171875","","1997-01-21T00:00:00Z","","0" +"NM-20060","14.3100004196167","14.3100004196167","","1942-01-21T00:00:00Z","","0" +"NM-06180","","","O","2013-01-16T00:00:00Z","","0" +"NM-14423","29.68000030517578","29.68000030517578","","1979-03-21T00:00:00Z","","0" +"NM-20560","11.420000076293945","11.420000076293945","","1948-10-26T00:00:00Z","","0" +"NM-18426","9.300000190734863","9.300000190734863","","1949-08-04T00:00:00Z","","0" +"NM-12733","37.709999084472656","37.709999084472656","","1966-02-16T00:00:00Z","","0" +"NM-17271","63.630001068115234","63.630001068115234","","1958-01-26T00:00:00Z","","0" +"NM-08509","72.5199966430664","72.5199966430664","","1966-02-18T00:00:00Z","","0" +"NM-05623","74.08999633789062","74.08999633789062","","1942-01-09T00:00:00Z","","0" +"NM-08648","41.75","41.75","","1941-03-15T00:00:00Z","","0" +"NM-16716","","","O","2005-01-25T00:00:00Z","","0" +"NM-06180","260.75","260.75","","1959-05-01T00:00:00Z","","0" +"NM-10933","56.630001068115234","56.630001068115234","R","1971-03-03T00:00:00Z","","0" +"NM-01986","7.599999904632568","7.599999904632568","","1973-04-15T00:00:00Z","","0" +"NM-11489","41.9900016784668","41.9900016784668","","1961-01-23T00:00:00Z","","0" +"EB-485","339.70001220703125","338.70001220703125","P","1997-04-30T00:00:00Z","","1" +"NM-02005","4.900000095367432","4.900000095367432","","1984-09-15T00:00:00Z","","0" +"NM-05120","83.83999633789062","83.83999633789062","R","1952-01-24T00:00:00Z","","0" +"NM-00257","93.61000061035156","93.61000061035156","Z","1999-05-07T00:00:00Z","","0" +"NM-13754","-28.719999313354492","-28.719999313354492","","1906-06-23T00:00:00Z","","0" +"NM-01931","326.4200134277344","326.4200134277344","","1960-07-20T00:00:00Z","","0" +"NM-03420","37.29999923706055","37.29999923706055","","1995-02-21T00:00:00Z","","0" +"SO-0256","13.079999923706055","11.869999885559082","","2019-03-01T00:00:00Z","","1.2100000381469727" +"NM-01876","84.83000183105469","84.83000183105469","","1972-11-30T00:00:00Z","","0" +"EB-298","159.8000030517578","159.8000030517578","","2010-01-11T00:00:00Z","","0" +"NM-03029","56.150001525878906","56.150001525878906","","1957-01-21T00:00:00Z","","0" +"WL-0086","59.79166793823242","58.03166961669922","","1998-08-20T00:00:00Z","","1.7599999904632568" +"NM-28011","489.3399963378906","489.3399963378906","S","2015-05-18T00:00:00Z","","0" +"NM-02407","38.2400016784668","38.2400016784668","","1955-01-12T00:00:00Z","","0" +"NM-07101","31.200000762939453","31.200000762939453","","2006-07-12T00:00:00Z","","0" +"NM-12175","56.5","56.5","","1958-01-10T00:00:00Z","","0" +"NM-02352","6.800000190734863","6.800000190734863","","1994-08-15T00:00:00Z","","0" +"EB-009","68.58000183105469","75.08000183105469","","1991-07-01T00:00:00Z","","-6.5" +"NM-28253","13.869999885559082","13.869999885559082","","1956-10-25T00:00:00Z","","0" +"EB-365","121.9000015258789","118.9000015258789","","2008-07-21T00:00:00Z","","3" +"NM-01022","442.989990234375","442.989990234375","","1986-01-10T00:00:00Z","","0" +"NM-01947","3.200000047683716","3.200000047683716","","1948-08-15T00:00:00Z","","0" +"NM-00257","92.81999969482422","92.81999969482422","","2001-01-16T00:00:00Z","","0" +"NM-08974","-5.78000020980835","-5.78000020980835","","1909-02-26T00:00:00Z","","0" +"NM-11920","1.659999966621399","1.659999966621399","","1946-03-26T00:00:00Z","","0" +"WL-0145","33.2599983215332","31.35999870300293","","2022-03-03T00:00:00Z","0001-01-01T11:09:00Z","1.899999976158142" +"NM-16681","29.520000457763672","29.520000457763672","","1933-12-17T00:00:00Z","","0" +"EB-284","263.6600036621094","263.6600036621094","","1995-08-09T00:00:00Z","","0" +"SO-0132","7.139999866485596","6.480000019073486","","2021-11-13T00:00:00Z","0001-01-01T15:00:00Z","0.6600000262260437" +"NM-12331","119.54000091552734","119.54000091552734","R","1979-02-14T00:00:00Z","","0" +"NM-02702","11.3100004196167","11.3100004196167","","1982-11-01T00:00:00Z","","0" +"NM-28259","102.16999816894531","102.16999816894531","","1975-12-15T00:00:00Z","","0" +"NM-22710","7.570000171661377","7.570000171661377","Z","2009-06-16T00:00:00Z","","0" +"NM-28258","102.6500015258789","102.6500015258789","","1996-02-05T00:00:00Z","","0" +"NM-02466","87.8499984741211","87.8499984741211","","1961-08-11T00:00:00Z","","0" +"NM-22047","117.12999725341797","117.12999725341797","","1986-05-28T00:00:00Z","","0" +"NM-01895","76.44000244140625","76.44000244140625","","2005-11-07T00:00:00Z","","0" +"NM-02281","24.719999313354492","24.719999313354492","","2003-06-24T00:00:00Z","","0" +"NM-01035","34.91999816894531","34.91999816894531","","1947-04-01T00:00:00Z","","0" +"SB-0053","55.31999969482422","55.31999969482422","","1960-01-26T00:00:00Z","","0" +"NM-19959","47.189998626708984","47.189998626708984","","1959-03-16T00:00:00Z","","0" +"AB-0035","394.760009765625","394.760009765625","","2000-12-04T00:00:00Z","","" +"NM-02287","6.559999942779541","6.559999942779541","","2003-03-18T00:00:00Z","","0" +"NM-06121","98.80000305175781","98.80000305175781","","1954-06-15T00:00:00Z","","0" +"AB-0075","7.489999771118164","7.489999771118164","","1998-12-16T00:00:00Z","","" +"NM-18297","77.95999908447266","77.95999908447266","","1967-01-18T00:00:00Z","","0" +"NM-02737","101.62999725341797","101.62999725341797","","2006-01-24T00:00:00Z","","0" +"NM-08648","38.310001373291016","38.310001373291016","","1943-05-26T00:00:00Z","","0" +"NM-14265","422.20001220703125","422.20001220703125","","1959-09-01T00:00:00Z","","0" +"NM-03182","382.54998779296875","382.54998779296875","","1991-01-03T00:00:00Z","","0" +"DE-0095","92.4800033569336","92.4800033569336","","1999-10-19T00:00:00Z","","0" +"NM-12600","50.54999923706055","50.54999923706055","","1938-10-02T00:00:00Z","","0" +"EB-267","14.970000267028809","14.970000267028809","","2001-03-29T00:00:00Z","","0" +"NM-21813","570.8499755859375","570.8499755859375","Z","1998-02-02T00:00:00Z","","0" +"NM-18294","82.38999938964844","82.38999938964844","","1982-02-19T00:00:00Z","","0" +"TV-273","67.05000305175781","64.60000610351562","","2006-12-01T00:00:00Z","","2.450000047683716" +"NM-01565","-253.7899932861328","-253.7899932861328","","1988-11-01T00:00:00Z","","0" +"NM-23335","382","382","","1983-11-01T00:00:00Z","","0" +"NM-11165","41.9900016784668","41.9900016784668","","1976-03-17T00:00:00Z","","0" +"NM-16473","65.12999725341797","65.12999725341797","","1973-01-03T00:00:00Z","","0" +"BC-0100","101.05999755859375","101.05999755859375","","2019-07-21T00:00:00Z","","0" +"NM-28253","8.539999961853027","8.539999961853027","","1991-11-15T00:00:00Z","","0" +"NM-01565","-257.4800109863281","-257.4800109863281","","1988-12-25T00:00:00Z","","0" +"NM-11597","117.44999694824219","117.44999694824219","","1960-03-24T00:00:00Z","","0" +"NM-03903","331.1400146484375","331.1400146484375","","1976-08-05T00:00:00Z","","0" +"NM-10082","61.279998779296875","61.279998779296875","","1981-04-01T00:00:00Z","","0" +"DE-0304","42.18000030517578","42.18000030517578","","2015-07-20T00:00:00Z","","0" +"NM-21295","128.42999267578125","128.42999267578125","","2003-12-05T00:00:00Z","","0" +"NM-01872","9.600000381469727","9.600000381469727","","1960-11-15T00:00:00Z","","0" +"NM-03238","87.54000091552734","87.54000091552734","","1986-09-04T00:00:00Z","","0" +"NM-02207","9","9","","1952-06-15T00:00:00Z","","0" +"NM-14833","31.219999313354492","31.219999313354492","","1956-05-03T00:00:00Z","","0" +"NM-02414","15.149999618530273","15.149999618530273","","1958-01-08T00:00:00Z","","0" +"NM-12442","-41.43000030517578","-41.43000030517578","","1908-09-25T00:00:00Z","","0" +"NM-02393","67.87999725341797","67.87999725341797","","1946-11-09T00:00:00Z","","0" +"NM-03369","54.959999084472656","54.959999084472656","R","1995-10-30T00:00:00Z","","0" +"NM-02911","94.91000366210938","94.91000366210938","","2006-03-09T00:00:00Z","","0" +"NM-13873","-4.46999979019165","-4.46999979019165","","1908-09-03T00:00:00Z","","0" +"NM-21525","297.19000244140625","297.19000244140625","","2003-09-28T00:00:00Z","","0" +"SB-0299","137.22999572753906","137.22999572753906","","1982-06-05T00:00:00Z","","0" +"NM-02620","6.900000095367432","6.900000095367432","","1985-07-15T00:00:00Z","","0" +"NM-05874","56.540000915527344","56.540000915527344","","1947-01-12T00:00:00Z","","0" +"EB-012","156.16000366210938","156.16000366210938","","1973-10-18T00:00:00Z","","0" +"NM-20029","49.61000061035156","49.61000061035156","","1950-02-08T00:00:00Z","","0" +"NM-07095","84.86000061035156","84.86000061035156","","2008-12-10T00:00:00Z","","0" +"NM-03859","49.29999923706055","49.29999923706055","","1956-12-31T00:00:00Z","","0" +"NM-02034","297.17999267578125","297.17999267578125","","1975-01-03T00:00:00Z","","0" +"NM-28256","175.19000244140625","175.19000244140625","","2010-05-05T00:00:00Z","","0" +"NM-06060","23.079999923706055","23.079999923706055","","1953-01-24T00:00:00Z","","0" +"NM-16904","70.05000305175781","70.05000305175781","","1972-01-18T00:00:00Z","","0" +"DE-0113","33.91999816894531","33.91999816894531","","2005-12-28T00:00:00Z","","0" +"NM-00783","12.020000457763672","12.020000457763672","","2013-06-01T00:00:00Z","","0" +"DE-0252","","","D","2014-10-30T00:00:00Z","","0" +"NM-01269","98.72000122070312","98.72000122070312","","1958-08-19T00:00:00Z","","0" +"NM-01926","3.4000000953674316","3.4000000953674316","","1948-08-15T00:00:00Z","","0" +"NM-03037","85.83000183105469","85.83000183105469","","1982-01-09T00:00:00Z","","0" +"NM-21293","11.880000114440918","11.880000114440918","","1978-08-17T00:00:00Z","","0" +"NM-11919","1.9900000095367432","1.9900000095367432","","1950-09-28T00:00:00Z","","0" +"NM-02794","65.56999969482422","65.56999969482422","","1952-09-03T00:00:00Z","","0" +"NM-03354","95.12999725341797","95.12999725341797","","1967-02-15T00:00:00Z","","0" +"NM-12496","12.140000343322754","12.140000343322754","","1970-04-02T00:00:00Z","","0" +"NM-01889","16.889999389648438","16.889999389648438","","2000-12-19T00:00:00Z","","0" +"NM-01800","119.31999969482422","119.31999969482422","","1991-01-08T00:00:00Z","","0" +"NM-02349","13.800000190734863","13.800000190734863","","1953-09-15T00:00:00Z","","0" +"NM-07095","84.62000274658203","84.62000274658203","","2007-10-01T00:00:00Z","","0" +"NM-01010","273.67999267578125","273.67999267578125","","1988-01-11T00:00:00Z","","0" +"NM-06595","80.91999816894531","80.91999816894531","","1956-09-07T00:00:00Z","","0" +"NM-13090","157","157","","1963-08-08T00:00:00Z","","0" +"NM-01740","146.6199951171875","146.6199951171875","","1980-01-24T00:00:00Z","","0" +"NM-27614","20.8700008392334","20.8700008392334","R","1963-01-22T00:00:00Z","","0" +"NM-15323","95.2300033569336","95.2300033569336","","1964-10-27T00:00:00Z","","0" +"NM-02471","143.69000244140625","143.69000244140625","","1992-11-03T00:00:00Z","","0" +"NM-05762","47.40999984741211","47.40999984741211","","1950-09-23T00:00:00Z","","0" +"NM-10513","51.34000015258789","51.34000015258789","","1945-01-13T00:00:00Z","","0" +"NM-16931","35.79999923706055","35.79999923706055","","1948-01-09T00:00:00Z","","0" +"NM-01986","9.199999809265137","9.199999809265137","","1952-05-15T00:00:00Z","","0" +"BC-0236","227.6300048828125","227.6300048828125","","2016-03-08T00:00:00Z","","0" +"NM-01796","6.5","6.5","","1996-02-14T00:00:00Z","","0" +"NM-08648","44.27000045776367","44.27000045776367","","1971-01-12T00:00:00Z","","0" +"MI-0184","60","60","","1950-12-31T00:00:00Z","","0" +"NM-01558","49.27000045776367","49.27000045776367","","2011-03-11T00:00:00Z","","0" +"NM-01579","21.969999313354492","21.969999313354492","","1997-01-28T00:00:00Z","","0" +"NM-08189","11.300000190734863","11.300000190734863","","1957-04-15T00:00:00Z","","0" +"NM-02043","5.900000095367432","5.900000095367432","","1983-07-15T00:00:00Z","","0" +"NM-07716","54.22999954223633","54.22999954223633","","1991-07-03T00:00:00Z","","0" +"NM-09000","-74.91999816894531","-74.91999816894531","","1907-12-13T00:00:00Z","","0" +"NM-27415","56.130001068115234","56.130001068115234","","1955-01-07T00:00:00Z","","0" +"NM-20648","254.19000244140625","254.19000244140625","","1986-10-15T00:00:00Z","","0" +"NM-05632","17.299999237060547","17.299999237060547","","1939-11-07T00:00:00Z","","0" +"NM-10681","53.349998474121094","53.349998474121094","","1939-08-26T00:00:00Z","","0" +"SA-0069","35.689998626708984","35.689998626708984","","1996-02-06T00:00:00Z","","0" +"EM-0001","6.5","6","","2016-09-14T00:00:00Z","","0.5" +"NM-02165","10.199999809265137","10.199999809265137","","2013-09-17T00:00:00Z","","0" +"NM-00680","57.29999923706055","57.29999923706055","P","1959-03-25T00:00:00Z","","0" +"NM-23333","7.630000114440918","7.630000114440918","","1958-05-12T00:00:00Z","","0" +"NM-05516","17.299999237060547","17.299999237060547","","1955-12-15T00:00:00Z","","0" +"NM-05563","69.8499984741211","69.8499984741211","","1939-06-30T00:00:00Z","","0" +"NM-12158","-40.27000045776367","-40.27000045776367","","1909-09-27T00:00:00Z","","0" +"EB-276","153.5800018310547","153.5800018310547","","1970-02-09T00:00:00Z","","0" +"NM-12317","48.439998626708984","48.439998626708984","","1960-01-08T00:00:00Z","","0" +"NM-01898","62.45000076293945","62.45000076293945","","2002-12-16T00:00:00Z","","0" +"NM-02622","171.19000244140625","171.19000244140625","","1979-01-01T00:00:00Z","","0" +"NM-22925","338.44000244140625","338.44000244140625","","1987-05-05T00:00:00Z","","0" +"NM-07458","23.989999771118164","23.989999771118164","","1959-01-27T00:00:00Z","","0" +"NM-05920","70.29000091552734","70.29000091552734","","1956-03-07T00:00:00Z","","0" +"NM-06027","58.779998779296875","58.779998779296875","","1931-11-14T00:00:00Z","","0" +"EB-220","127.19000244140625","127.19000244140625","","1980-03-10T00:00:00Z","","0" +"NM-04155","110.62000274658203","110.62000274658203","","1971-01-28T00:00:00Z","","0" +"NM-14068","-7.929999828338623","-7.929999828338623","","1909-03-03T00:00:00Z","","0" +"NM-27193","118.45999908447266","118.45999908447266","","2014-12-06T00:00:00Z","","0" +"NM-01929","360.5799865722656","360.5799865722656","","2009-01-28T00:00:00Z","","0" +"NM-01761","49.459999084472656","49.459999084472656","","1949-07-26T00:00:00Z","","0" +"NM-03405","10.380000114440918","10.380000114440918","","2005-03-21T00:00:00Z","","0" +"NM-13594","23.110000610351562","23.110000610351562","","1969-02-14T00:00:00Z","","0" +"NM-01398","-33.36000061035156","-33.36000061035156","E","1987-02-12T00:00:00Z","","0" +"NM-05632","17.360000610351562","17.360000610351562","","1945-07-17T00:00:00Z","","0" +"NM-02303","90.95999908447266","90.95999908447266","","1967-08-09T00:00:00Z","","0" +"NM-16788","4.059999942779541","4.059999942779541","","1948-03-30T00:00:00Z","","0" +"NM-00433","88.97000122070312","88.97000122070312","","1993-01-05T00:00:00Z","","0" +"NM-03397","25.139999389648438","25.139999389648438","Z","2010-02-23T00:00:00Z","","0" +"NM-03299","43.90999984741211","43.90999984741211","","1950-08-09T00:00:00Z","","0" +"BC-0079","256.260009765625","256.260009765625","","2013-09-09T00:00:00Z","","0" +"NM-23181","98.44999694824219","98.44999694824219","","1956-07-20T00:00:00Z","","0" +"NM-28202","37.90999984741211","37.90999984741211","","1975-01-23T00:00:00Z","","0" +"NM-06996","57.209999084472656","57.209999084472656","","2003-10-02T00:00:00Z","","0" +"NM-21724","47.13999938964844","47.13999938964844","","2007-04-02T00:00:00Z","","0" +"NM-28103","558.1199951171875","558.1199951171875","","2006-02-09T00:00:00Z","","0" +"NM-00539","187.85000610351562","187.85000610351562","","1990-12-07T00:00:00Z","","0" +"NM-28257","29.649999618530273","29.649999618530273","","2017-03-24T00:00:00Z","","0" +"DA-0004","364","364","","1968-01-30T00:00:00Z","","0" +"NM-11670","38.810001373291016","38.810001373291016","","1984-02-09T00:00:00Z","","0" +"SA-0129","475.32000732421875","473.6100158691406","","2021-02-24T00:00:00Z","0001-01-01T13:48:00Z","1.7100000381469727" +"NM-28255","148.2100067138672","148.2100067138672","","2021-04-05T00:00:00Z","","0" +"SV-0081","646.2000122070312","644.530029296875","","2018-07-22T00:00:00Z","","1.6699999570846558" +"NM-02017","7.5","7.5","","1974-11-15T00:00:00Z","","0" +"NM-03982","119.79000091552734","119.79000091552734","","1972-11-30T00:00:00Z","","0" +"NM-01021","283.9800109863281","283.9800109863281","","1991-11-13T00:00:00Z","","0" +"NM-17716","0.7400000095367432","0.7400000095367432","","1942-06-26T00:00:00Z","","0" +"NM-03933","62.33000183105469","62.33000183105469","","1955-11-17T00:00:00Z","","0" +"NM-17716","5.670000076293945","5.670000076293945","","1949-05-03T00:00:00Z","","0" +"NM-02282","402.6199951171875","402.6199951171875","","1972-05-01T00:00:00Z","","0" +"NM-03445","65.5","65.5","","2006-09-28T00:00:00Z","","0" +"NM-09461","113.25","113.25","","1965-01-12T00:00:00Z","","0" +"NM-28253","13.739999771118164","13.739999771118164","","2008-02-25T00:00:00Z","","0" +"AB-0124","544.219970703125","544.219970703125","","1998-09-15T00:00:00Z","","" +"NM-13254","10.5","10.5","","1957-06-17T00:00:00Z","","0" +"NM-01875","139.16000366210938","139.16000366210938","","1954-05-26T00:00:00Z","","0" +"NM-13378","17.530000686645508","17.530000686645508","Z","1992-09-30T00:00:00Z","","0" +"NM-28259","58.810001373291016","58.810001373291016","","1956-01-05T00:00:00Z","","0" +"NM-05516","17.100000381469727","17.100000381469727","","1965-11-15T00:00:00Z","","0" +"NM-04335","65.08999633789062","65.08999633789062","","1970-01-14T00:00:00Z","","0" +"NM-22296","33.93000030517578","33.93000030517578","","1992-11-25T00:00:00Z","","0" +"NM-02659","10.069999694824219","10.069999694824219","P","1963-09-04T00:00:00Z","","0" +"NM-28257","55.04999923706055","55.04999923706055","","2012-07-25T00:00:00Z","","0" +"NM-11920","2.130000114440918","2.130000114440918","","1960-01-04T00:00:00Z","","0" +"NM-11976","43.56999969482422","43.56999969482422","","1991-04-04T00:00:00Z","","0" +"NM-00413","62.47999954223633","62.47999954223633","","1989-01-04T00:00:00Z","","0" +"NM-23029","26.729999542236328","26.729999542236328","","1988-02-18T00:00:00Z","","0" +"NM-10116","165.4499969482422","165.4499969482422","","1971-03-24T00:00:00Z","","0" +"NM-00583","43.279998779296875","43.279998779296875","","1995-01-03T00:00:00Z","","0" +"NM-02811","87.75","87.75","P","1955-09-09T00:00:00Z","","0" +"NM-24036","100","100","","1977-01-18T00:00:00Z","","0" +"NM-02831","60.77000045776367","60.77000045776367","","1976-03-01T00:00:00Z","","0" +"NM-00185","12.699999809265137","12.699999809265137","","1950-10-15T00:00:00Z","","0" +"NM-02586","272.82000732421875","272.82000732421875","","1976-01-01T00:00:00Z","","0" +"NM-10459","-63.369998931884766","-63.369998931884766","","1906-04-09T00:00:00Z","","0" +"NM-20757","89.12999725341797","89.12999725341797","","1982-02-17T00:00:00Z","","0" +"DE-0279","83.58000183105469","83.58000183105469","","2016-03-24T00:00:00Z","","0" +"NM-08758","14.5","14.5","","1958-03-17T00:00:00Z","","0" +"NM-08761","11.779999732971191","11.779999732971191","","1994-04-24T00:00:00Z","","0" +"MI-0208","71.66999816894531","71.66999816894531","","1947-09-01T00:00:00Z","","0" +"NM-13255","26.239999771118164","26.239999771118164","","1981-02-17T00:00:00Z","","0" +"NM-00385","52.130001068115234","52.130001068115234","","2006-02-22T00:00:00Z","","0" +"NM-19973","247.1999969482422","247.1999969482422","","1955-08-21T00:00:00Z","","0" +"NM-14281","-13.710000038146973","-13.710000038146973","","1908-06-01T00:00:00Z","","0" +"NM-06110","18.18000030517578","18.18000030517578","","1975-03-27T00:00:00Z","","0" +"NM-20045","32.68000030517578","32.68000030517578","","1946-02-07T00:00:00Z","","0" +"NM-05493","64.19999694824219","64.19999694824219","","1931-09-13T00:00:00Z","","0" +"NM-17464","48.189998626708984","48.189998626708984","","1941-05-21T00:00:00Z","","0" +"NM-02538","11.239999771118164","11.239999771118164","","1965-01-08T00:00:00Z","","0" +"NM-28254","150.50999450683594","150.50999450683594","","1976-08-25T00:00:00Z","","0" +"NM-01723","174.14999389648438","174.14999389648438","","2011-09-01T00:00:00Z","","0" +"NM-25166","12.020000457763672","12.020000457763672","","1972-01-18T00:00:00Z","","0" +"NM-02280","44.5","44.5","","2013-07-09T00:00:00Z","","0" +"NM-28182","212.8000030517578","212.8000030517578","","1980-01-30T00:00:00Z","","0" +"NM-03887","39.54999923706055","39.54999923706055","","1953-03-18T00:00:00Z","","0" +"NM-07530","26.600000381469727","26.600000381469727","","1996-01-23T00:00:00Z","","0" +"NM-01885","23.270000457763672","23.270000457763672","","2009-01-26T00:00:00Z","","0" +"NM-01404","44.11000061035156","44.11000061035156","","2011-01-06T00:00:00Z","","0" +"NM-05420","18","18","P","1953-11-21T00:00:00Z","","0" +"NM-18199","53.45000076293945","53.45000076293945","","1982-04-21T00:00:00Z","","0" +"NM-23838","95.76000213623047","95.76000213623047","","1967-12-05T00:00:00Z","","0" +"BW-0286","172","172","","1969-02-05T00:00:00Z","","0" +"EB-315","14.359999656677246","20.360000610351562","","2012-02-15T00:00:00Z","","-6" +"NM-02207","17.100000381469727","17.100000381469727","","1978-02-15T00:00:00Z","","0" +"NM-13984","-8.800000190734863","-8.800000190734863","","1908-03-26T00:00:00Z","","0" +"NM-24836","223.39999389648438","223.39999389648438","","1971-02-18T00:00:00Z","","0" +"NM-20969","217.77000427246094","217.77000427246094","","1991-01-03T00:00:00Z","","0" +"NM-02219","72.61000061035156","72.61000061035156","","1971-01-28T00:00:00Z","","0" +"NM-19503","392.989990234375","392.989990234375","","1987-01-10T00:00:00Z","","0" +"NM-02591","14.800000190734863","14.800000190734863","","1967-05-15T00:00:00Z","","0" +"NM-21557","7.03000020980835","7.03000020980835","Z","2009-12-18T00:00:00Z","","0" +"NM-00937","256.5199890136719","256.5199890136719","","1983-01-10T00:00:00Z","","0" +"NM-01829","316.6300048828125","316.6300048828125","","1993-01-23T00:00:00Z","","0" +"DE-0064","18.690000534057617","16.790000915527344","","1998-06-16T00:00:00Z","","1.899999976158142" +"NM-03007","85.05000305175781","85.05000305175781","Z","1988-08-02T00:00:00Z","","0" +"NM-28259","88.70999908447266","88.70999908447266","","1989-12-05T00:00:00Z","","0" +"NM-28257","56.040000915527344","56.040000915527344","","1993-07-15T00:00:00Z","","0" +"NM-00273","52.869998931884766","52.869998931884766","","2001-02-01T00:00:00Z","","0" +"NM-17628","43.189998626708984","43.189998626708984","","1935-03-16T00:00:00Z","","0" +"NM-24731","370","370","","1966-01-11T00:00:00Z","","0" +"NM-03046","10.75","10.75","","1990-07-06T00:00:00Z","","0" +"NM-27234","5.059999942779541","5.059999942779541","","1998-01-09T00:00:00Z","","0" +"NM-17993","32.65999984741211","32.65999984741211","P","1977-02-02T00:00:00Z","","0" +"NM-06030","42.11000061035156","42.11000061035156","","2007-06-14T00:00:00Z","","0" +"WL-0040","55.22999954223633","53.790000915527344","","2024-11-14T00:00:00Z","0001-01-01T15:40:00Z","1.440000057220459" +"NM-17968","38.56999969482422","38.56999969482422","","1977-01-27T00:00:00Z","","0" +"NM-05736","136.60000610351562","136.60000610351562","P","1961-04-14T00:00:00Z","","0" +"NM-15109","189.14999389648438","189.14999389648438","","1990-02-02T00:00:00Z","","0" +"NM-02520","7.5","7.5","","1979-03-15T00:00:00Z","","0" +"NM-00185","13.800000190734863","13.800000190734863","","1966-04-15T00:00:00Z","","0" +"NM-06731","345.29998779296875","345.29998779296875","","2011-01-13T00:00:00Z","","0" +"NM-02629","-16.600000381469727","-16.600000381469727","","1958-01-15T00:00:00Z","","0" +"NM-02167","22.270000457763672","22.270000457763672","","2013-10-31T00:00:00Z","","0" +"NM-13335","-5.159999847412109","-5.159999847412109","","1909-09-24T00:00:00Z","","0" +"NM-21960","41.279998779296875","41.279998779296875","R","1990-02-22T00:00:00Z","","0" +"NM-02004","8.800000190734863","8.800000190734863","","1995-12-15T00:00:00Z","","0" +"NM-04789","62.09000015258789","62.09000015258789","","1955-05-18T00:00:00Z","","0" +"NM-16649","82","82","","1991-08-10T00:00:00Z","","0" +"NM-03344","74.77999877929688","74.77999877929688","R","1993-12-29T00:00:00Z","","0" +"NM-00257","93.97000122070312","93.97000122070312","Z","1999-07-13T00:00:00Z","","0" +"NM-02282","399.489990234375","399.489990234375","","1963-12-01T00:00:00Z","","0" +"NM-02164","7.909999847412109","7.909999847412109","","1994-10-11T00:00:00Z","","0" +"NM-23515","31.8700008392334","31.8700008392334","","2006-05-11T00:00:00Z","","0" +"NM-11026","135.83999633789062","135.83999633789062","","1972-05-01T00:00:00Z","","0" +"NM-13778","-9.65999984741211","-9.65999984741211","","1907-03-07T00:00:00Z","","0" +"NM-13263","7.880000114440918","7.880000114440918","","1941-02-01T00:00:00Z","","0" +"NM-02510","90.12999725341797","90.12999725341797","","1993-08-03T00:00:00Z","","0" +"TO-0123","108.5","108.5","","1949-11-18T00:00:00Z","","0" +"NM-28256","95.94000244140625","95.94000244140625","","2003-03-05T00:00:00Z","","0" +"NM-11051","53.47999954223633","53.47999954223633","P","1966-03-09T00:00:00Z","","0" +"NM-26734","108.76000213623047","108.76000213623047","","1988-03-15T00:00:00Z","","0" +"TC-424","37.36000061035156","36.56999969482422","","2017-11-07T00:00:00Z","0001-01-01T08:19:00Z","0.7900000214576721" +"NM-28259","100.79000091552734","100.79000091552734","","1954-09-05T00:00:00Z","","0" +"UC-0035","83.16000366210938","83.16000366210938","","1976-01-27T00:00:00Z","","0" +"NM-01985","8","8","","1993-03-15T00:00:00Z","","0" +"NM-20969","217.9199981689453","217.9199981689453","","1982-01-08T00:00:00Z","","0" +"NM-20941","146.72000122070312","146.72000122070312","","1977-02-24T00:00:00Z","","0" +"NM-05021","186.3000030517578","186.3000030517578","P","1956-09-18T00:00:00Z","","0" +"NM-23843","93.87999725341797","93.87999725341797","","1966-02-09T00:00:00Z","","0" +"NM-14001","99.87999725341797","99.87999725341797","","1991-01-22T00:00:00Z","","0" +"BC-0125","278.5","278.5","","2015-09-04T00:00:00Z","","0" +"NM-02840","6.28000020980835","6.28000020980835","","1973-01-15T00:00:00Z","","0" +"NM-23342","14.1899995803833","14.1899995803833","","1980-06-17T00:00:00Z","","0" +"TV-222","45.310001373291016","44.58000183105469","","2011-08-01T00:00:00Z","","0.7300000190734863" +"NM-25089","544","544","","1959-09-16T00:00:00Z","","0" +"NM-17618","9.020000457763672","9.020000457763672","","1944-12-02T00:00:00Z","","0" +"NM-12005","84.93000030517578","84.93000030517578","","1981-02-03T00:00:00Z","","0" +"NM-02537","209.8800048828125","209.8800048828125","","1975-01-23T00:00:00Z","","0" +"NM-23135","4.150000095367432","4.150000095367432","Z","2009-02-13T00:00:00Z","","0" +"DE-0108","42.599998474121094","42.599998474121094","","2009-09-16T00:00:00Z","","0" +"SA-0020","19.459999084472656","19.459999084472656","","2001-02-05T00:00:00Z","","0" +"SO-0257","14.819999694824219","13.1899995803833","","2021-01-13T00:00:00Z","0001-01-01T09:52:00Z","1.6299999952316284" +"NM-24935","15.319999694824219","15.319999694824219","","1982-03-09T00:00:00Z","","0" +"NM-14781","37.849998474121094","37.849998474121094","","1962-01-24T00:00:00Z","","0" +"NM-11560","79.62000274658203","79.62000274658203","","1960-01-21T00:00:00Z","","0" +"NM-14326","28.700000762939453","28.700000762939453","","1941-02-04T00:00:00Z","","0" +"NM-19016","336.17999267578125","336.17999267578125","S","1977-02-02T00:00:00Z","","0" +"NM-08000","310.3500061035156","310.3500061035156","","1970-01-13T00:00:00Z","","0" +"NM-08390","50.70000076293945","50.70000076293945","","1986-01-08T00:00:00Z","","0" +"NM-25379","49.060001373291016","49.060001373291016","","1977-04-22T00:00:00Z","","0" +"NM-21546","14.069999694824219","14.069999694824219","Z","2006-05-02T00:00:00Z","","0" +"NM-20500","268.5299987792969","268.5299987792969","","1986-10-08T00:00:00Z","","0" +"NM-03349","35.45000076293945","35.45000076293945","","2003-02-04T00:00:00Z","","0" +"NM-20895","23.149999618530273","23.149999618530273","","1941-09-09T00:00:00Z","","0" +"NM-04769","50.880001068115234","50.880001068115234","","1940-09-07T00:00:00Z","","0" +"NM-07163","95.37000274658203","95.37000274658203","","2005-01-28T00:00:00Z","","0" +"EB-288","100.58000183105469","100.58000183105469","","1973-07-05T00:00:00Z","","0" +"NM-01871","285.44000244140625","285.44000244140625","","1998-02-20T00:00:00Z","","0" +"EB-487","351.70001220703125","348.20001220703125","Z","2008-08-31T00:00:00Z","","3.5" +"NM-14350","-61.060001373291016","-61.060001373291016","","1913-07-02T00:00:00Z","","0" +"NM-01912","12.75","12.75","","1971-01-25T00:00:00Z","","0" +"NM-23088","110.26000213623047","110.26000213623047","","1992-12-16T00:00:00Z","","0" +"NM-28252","45.150001525878906","45.150001525878906","","2007-07-16T00:00:00Z","","0" +"NM-09688","38.61000061035156","38.61000061035156","","1942-01-14T00:00:00Z","","0" +"NM-22969","318.25","318.25","","1987-11-30T00:00:00Z","","0" +"NM-08542","-49.5099983215332","-49.5099983215332","","1914-01-17T00:00:00Z","","0" +"NM-08471","15.979999542236328","15.979999542236328","","1967-01-03T00:00:00Z","","0" +"NM-28250","80.2300033569336","80.2300033569336","","1999-10-05T00:00:00Z","","0" +"NM-25118","448","448","","1973-04-25T00:00:00Z","","0" +"NM-00677","61.4900016784668","61.4900016784668","","1971-01-28T00:00:00Z","","0" +"NM-28257","-20.31999969482422","-20.31999969482422","","1993-10-25T00:00:00Z","","0" +"NM-02396","7.300000190734863","7.300000190734863","","1959-05-15T00:00:00Z","","0" +"NM-01825","42.380001068115234","42.380001068115234","","1974-06-14T00:00:00Z","","0" +"NM-01140","237.25999450683594","237.25999450683594","","1997-02-11T00:00:00Z","","0" +"NM-03396","12.479999542236328","12.479999542236328","","2016-08-22T00:00:00Z","","0" +"NM-10955","59.060001373291016","59.060001373291016","","1961-02-09T00:00:00Z","","0" +"NM-18197","246.89999389648438","246.89999389648438","","1967-01-16T00:00:00Z","","0" +"NM-00599","40.209999084472656","40.209999084472656","","1951-01-19T00:00:00Z","","0" +"NM-01494","11.75","11.75","P","2009-03-03T00:00:00Z","","0" +"NM-14535","96.05000305175781","96.05000305175781","","1974-08-26T00:00:00Z","","0" +"NM-05727","32.939998626708984","32.939998626708984","","1948-07-22T00:00:00Z","","0" +"NM-12405","27.139999389648438","27.139999389648438","","1958-05-14T00:00:00Z","","0" +"NM-24468","133.7899932861328","133.7899932861328","","1988-03-03T00:00:00Z","","0" +"NM-12410","1.5","1.5","","1908-06-11T00:00:00Z","","0" +"NM-28237","","","D","2012-01-12T00:00:00Z","","0" +"NM-22119","38.470001220703125","38.470001220703125","","2015-03-25T00:00:00Z","","0" +"UC-0042","130.97000122070312","130.97000122070312","","1968-03-07T00:00:00Z","","0" +"NM-01028","265.3999938964844","265.3999938964844","","1981-05-11T00:00:00Z","","0" +"NM-09665","70.69000244140625","70.69000244140625","","1976-03-02T00:00:00Z","","0" +"BC-0050","295.3500061035156","295.3500061035156","","2016-03-07T00:00:00Z","","0" +"NM-04259","8.600000381469727","8.600000381469727","","1985-02-01T00:00:00Z","","0" +"NM-14002","-18.329999923706055","-18.329999923706055","","1906-09-12T00:00:00Z","","0" +"NM-02411","166.05999755859375","166.05999755859375","","1980-01-15T00:00:00Z","","0" +"NM-17716","5.579999923706055","5.579999923706055","","1949-02-21T00:00:00Z","","0" +"EB-012","422","422","","1972-10-12T00:00:00Z","","0" +"NM-28255","71.30999755859375","71.30999755859375","","2021-03-15T00:00:00Z","","0" +"NM-01033","75.95999908447266","75.95999908447266","","2008-08-04T00:00:00Z","","0" +"NM-10665","45.099998474121094","45.099998474121094","","1979-02-10T00:00:00Z","","0" +"NM-19382","95.3499984741211","95.3499984741211","","1954-11-04T00:00:00Z","","0" +"QY-0624","61.599998474121094","61.599998474121094","","1956-01-11T00:00:00Z","","0" +"NM-00748","133.47999572753906","133.47999572753906","","1959-09-25T00:00:00Z","","0" +"NM-14217","14.34000015258789","14.34000015258789","","1963-10-01T00:00:00Z","","0" +"NM-11944","-0.6200000047683716","-0.6200000047683716","","1941-02-26T00:00:00Z","","0" +"NM-10460","44.310001373291016","44.310001373291016","","1952-01-06T00:00:00Z","","0" +"NM-02620","15.670000076293945","15.670000076293945","","2013-08-14T00:00:00Z","","0" +"NM-21876","6.980000019073486","6.980000019073486","Z","2009-03-18T00:00:00Z","","0" +"NM-03440","9.670000076293945","9.670000076293945","Z","1998-02-03T00:00:00Z","","0" +"NM-22581","330.7699890136719","330.7699890136719","","2011-02-25T00:00:00Z","","0" +"NM-03047","","","D","2005-03-08T00:00:00Z","","0" +"BC-0174","299.5799865722656","299.5799865722656","","2015-03-12T00:00:00Z","","0" +"NM-01825","47.9900016784668","47.9900016784668","","1989-12-26T00:00:00Z","","0" +"NM-13862","-8.510000228881836","-8.510000228881836","","1906-06-18T00:00:00Z","","0" +"NM-04662","94.94999694824219","94.94999694824219","","1956-03-09T00:00:00Z","","0" +"NM-04632","10.300000190734863","10.300000190734863","","1953-02-15T00:00:00Z","","0" +"SV-0071","315.6000061035156","313.6000061035156","","2019-05-19T00:00:00Z","","2" +"NM-10633","105","105","","1976-05-18T00:00:00Z","","0" +"NM-03673","74.12000274658203","74.12000274658203","","1987-02-10T00:00:00Z","","0" +"NM-00955","299.1499938964844","299.1499938964844","","1974-01-04T00:00:00Z","","0" +"NM-21567","4.21999979019165","4.21999979019165","Z","2008-04-25T00:00:00Z","","0" +"NM-04036","17.100000381469727","17.100000381469727","","1984-03-12T00:00:00Z","","0" +"NM-02035","103.97000122070312","103.97000122070312","","1985-01-09T00:00:00Z","","0" +"NM-02985","91.63999938964844","91.63999938964844","","1997-01-22T00:00:00Z","","0" +"NM-06065","282","282","","1969-01-13T00:00:00Z","","0" +"HS-029","11.529999732971191","11.529999732971191","","2012-10-26T00:00:00Z","","0" +"NM-26736","187.11000061035156","187.11000061035156","","1971-02-04T00:00:00Z","","0" +"NM-02491","84.4800033569336","84.4800033569336","","1997-01-27T00:00:00Z","","0" +"NM-01971","7.300000190734863","7.300000190734863","","1960-07-15T00:00:00Z","","0" +"NM-13853","-8.800000190734863","-8.800000190734863","","1910-09-12T00:00:00Z","","0" +"NM-01841","281.489990234375","281.489990234375","","1998-06-29T00:00:00Z","","0" +"NM-17716","4.71999979019165","4.71999979019165","","1946-09-13T00:00:00Z","","0" +"NM-04975","68.02999877929688","68.02999877929688","","1957-11-14T00:00:00Z","","0" +"NM-02710","29.889999389648438","29.889999389648438","","1974-08-01T00:00:00Z","","0" +"NM-01305","235.8699951171875","235.8699951171875","","2006-03-15T00:00:00Z","","0" +"NM-19539","32.400001525878906","32.400001525878906","","1956-02-13T00:00:00Z","","0" +"NM-13428","80.33000183105469","80.33000183105469","","1986-04-18T00:00:00Z","","0" +"NM-09178","24.270000457763672","24.270000457763672","","1933-04-18T00:00:00Z","","0" +"NM-04770","54.81999969482422","54.81999969482422","","1948-01-13T00:00:00Z","","0" +"NM-04948","103.97000122070312","103.97000122070312","","1966-10-18T00:00:00Z","","0" +"NM-11396","55.279998779296875","55.279998779296875","","1961-01-23T00:00:00Z","","0" +"NM-02831","65.69000244140625","65.69000244140625","","1983-07-05T00:00:00Z","","0" +"BC-0097","127.79000091552734","127.79000091552734","","2014-12-02T00:00:00Z","","0" +"NM-17295","31.440000534057617","31.440000534057617","","1933-08-13T00:00:00Z","","0" +"NM-18290","39.529998779296875","39.529998779296875","","1972-01-14T00:00:00Z","","0" +"NM-09085","-44.88999938964844","-44.88999938964844","","1913-08-28T00:00:00Z","","0" +"NM-28252","67.87000274658203","67.87000274658203","","1979-10-05T00:00:00Z","","0" +"NM-02373","158.6199951171875","158.6199951171875","","1985-02-26T00:00:00Z","","0" +"NM-02377","140.1999969482422","140.1999969482422","","1982-03-02T00:00:00Z","","0" +"NM-25680","-97.6500015258789","-97.6500015258789","","1988-06-22T00:00:00Z","","0" +"NM-01887","53.779998779296875","53.779998779296875","","2002-05-20T00:00:00Z","","0" +"NM-01247","44.470001220703125","44.470001220703125","","1993-02-23T00:00:00Z","","0" +"NM-00703","28.540000915527344","28.540000915527344","","1976-05-27T00:00:00Z","","0" +"EB-288","220","220","Z","2003-02-28T00:00:00Z","","0" +"NM-05347","8.300000190734863","8.300000190734863","","1985-07-15T00:00:00Z","","0" +"NM-20196","46.5099983215332","46.5099983215332","R","1948-05-31T00:00:00Z","","0" +"NM-04643","139.1199951171875","139.1199951171875","","1983-01-11T00:00:00Z","","0" +"NM-02758","270.9200134277344","270.9200134277344","R","1940-10-07T00:00:00Z","","0" +"DE-0108","39.029998779296875","39.029998779296875","","2008-12-08T00:00:00Z","","0" +"SO-0247","11.479999542236328","10.75999927520752","","2021-06-16T00:00:00Z","0001-01-01T13:20:00Z","0.7200000286102295" +"NM-07685","42.7400016784668","42.7400016784668","P","1935-01-15T00:00:00Z","","0" +"SB-0299","126.20999908447266","126.20999908447266","","1981-12-01T00:00:00Z","","0" +"NM-02768","101.0999984741211","101.0999984741211","","1955-07-08T00:00:00Z","","0" +"NM-05661","80.87999725341797","80.87999725341797","","1942-01-14T00:00:00Z","","0" +"SO-0145","8.029999732971191","7.679999828338623","","2021-06-16T00:00:00Z","0001-01-01T14:10:00Z","0.3499999940395355" +"NM-01872","9.100000381469727","9.100000381469727","","1968-11-15T00:00:00Z","","0" +"NM-26237","170.75","170.75","","1981-02-17T00:00:00Z","","0" +"NM-09463","-98.0199966430664","-98.0199966430664","","1907-12-10T00:00:00Z","","0" +"SB-0346","159.2100067138672","159.2100067138672","","1951-02-05T00:00:00Z","","0" +"NM-12431","30.809999465942383","30.809999465942383","","1951-09-20T00:00:00Z","","0" +"NM-09176","66.98999786376953","66.98999786376953","","1954-09-17T00:00:00Z","","0" +"NM-15803","27.700000762939453","27.700000762939453","","1977-06-21T00:00:00Z","","0" +"NM-00316","7.960000038146973","7.960000038146973","","1968-01-22T00:00:00Z","","0" +"NM-02179","15.600000381469727","15.600000381469727","","1990-02-08T00:00:00Z","","0" +"AB-0053","52.2400016784668","52.2400016784668","","2002-08-06T00:00:00Z","","" +"NM-01247","56.790000915527344","56.790000915527344","","1958-09-29T00:00:00Z","","0" +"DE-0110","39.79999923706055","39.79999923706055","","2010-09-20T00:00:00Z","","0" +"NM-24971","1297","1297","","1986-09-29T00:00:00Z","","0" +"NM-10600","13.119999885559082","13.119999885559082","R","1947-01-15T00:00:00Z","","0" +"NM-00387","83.86000061035156","83.86000061035156","","2007-01-12T00:00:00Z","","0" +"NM-28023","486.2699890136719","486.2699890136719","S","2015-05-09T00:00:00Z","","0" +"AB-0065","167.5","167.5","","2000-08-17T00:00:00Z","","" +"DE-0321","36.529998779296875","36.529998779296875","","2014-08-06T00:00:00Z","","0" +"NM-08524","10.199999809265137","10.199999809265137","","1984-06-15T00:00:00Z","","0" +"NM-19341","341.7900085449219","341.7900085449219","","1977-02-01T00:00:00Z","","0" +"NM-08497","69.11000061035156","69.11000061035156","","1961-01-26T00:00:00Z","","0" +"NM-00925","162.25999450683594","162.25999450683594","","1954-03-05T00:00:00Z","","0" +"NM-04677","1.600000023841858","1.600000023841858","","1972-01-13T00:00:00Z","","0" +"NM-28253","39.13999938964844","39.13999938964844","","1963-04-25T00:00:00Z","","0" +"NM-12600","46.11000061035156","46.11000061035156","","1937-10-25T00:00:00Z","","0" +"AR-0081","44.189998626708984","43.09000015258789","","2016-10-20T00:00:00Z","","1.100000023841858" +"NM-12968","12.640000343322754","12.640000343322754","","1957-09-11T00:00:00Z","","0" +"NM-00383","30.139999389648438","30.139999389648438","","1968-01-22T00:00:00Z","","0" +"NM-12933","19.8700008392334","19.8700008392334","","1959-11-19T00:00:00Z","","0" +"NM-14069","-6.78000020980835","-6.78000020980835","","1912-12-11T00:00:00Z","","0" +"NM-28252","11.569999694824219","11.569999694824219","","1948-01-15T00:00:00Z","","0" +"NM-01375","176.44000244140625","176.44000244140625","","1970-08-20T00:00:00Z","","0" +"NM-22965","767.5700073242188","767.5700073242188","","1985-02-12T00:00:00Z","","0" +"NM-00385","39.189998626708984","39.189998626708984","","1942-03-30T00:00:00Z","","0" +"NM-14802","78.81999969482422","78.81999969482422","","1958-12-30T00:00:00Z","","0" +"NM-02772","9.90999984741211","9.90999984741211","","2001-12-24T00:00:00Z","","0" +"NM-26734","128.72999572753906","128.72999572753906","","1962-02-20T00:00:00Z","","0" +"DE-0240","106.9800033569336","106.9800033569336","","2004-05-13T00:00:00Z","","0" +"SB-0299","112.52999877929688","112.52999877929688","","1996-05-15T00:00:00Z","","0" +"NM-03110","313.7699890136719","313.7699890136719","","1986-01-13T00:00:00Z","","0" +"NM-05716","104.11000061035156","104.11000061035156","S","1950-09-21T00:00:00Z","","0" +"NM-16863","19.56999969482422","19.56999969482422","","1953-01-21T00:00:00Z","","0" +"NM-02352","6.699999809265137","6.699999809265137","","1991-07-15T00:00:00Z","","0" +"NM-27457","8.300000190734863","8.300000190734863","","1976-09-17T00:00:00Z","","0" +"EB-208","228.2899932861328","228.2899932861328","","1998-02-19T00:00:00Z","","0" +"BC-0166","233.13999938964844","233.13999938964844","","2017-10-07T00:00:00Z","","0" +"NM-05762","47.810001373291016","47.810001373291016","","1952-03-25T00:00:00Z","","0" +"NM-28265","571.6300048828125","571.6300048828125","","2018-03-27T00:00:00Z","","0" +"NM-19784","70.33999633789062","70.33999633789062","","1955-10-15T00:00:00Z","","0" +"NM-26736","178.10000610351562","178.10000610351562","","1958-12-04T00:00:00Z","","0" +"NM-03162","382.3800048828125","382.3800048828125","","1980-01-05T00:00:00Z","","0" +"NM-13872","-5.909999847412109","-5.909999847412109","","1908-03-25T00:00:00Z","","0" +"NM-21741","59.59000015258789","59.59000015258789","","1960-02-18T00:00:00Z","","0" +"NM-01761","52.560001373291016","52.560001373291016","","1961-01-13T00:00:00Z","","0" +"NM-01052","379.17999267578125","379.17999267578125","","1978-01-06T00:00:00Z","","0" +"TV-275","241.75999450683594","239.45999145507812","","2007-12-01T00:00:00Z","","2.299999952316284" +"SV-0117","171.5","169.5833282470703","","2015-02-15T00:00:00Z","","1.9166666269302368" +"SB-0045","1135.5899658203125","1135.5899658203125","","2013-11-06T00:00:00Z","","0" +"NM-11445","66.16000366210938","66.16000366210938","","1956-01-10T00:00:00Z","","0" +"NM-02207","15.600000381469727","15.600000381469727","","1955-08-15T00:00:00Z","","0" +"NM-11744","41.84000015258789","41.84000015258789","","1981-05-14T00:00:00Z","","0" +"NM-13594","33.2400016784668","33.2400016784668","","1980-10-24T00:00:00Z","","0" +"NM-02560","110.80000305175781","110.80000305175781","","1968-05-01T00:00:00Z","","0" +"NM-00589","98.58999633789062","98.58999633789062","","2010-12-08T00:00:00Z","","0" +"NM-02831","31.5","31.5","","2001-02-05T00:00:00Z","","0" +"NM-02793","25.719999313354492","25.719999313354492","","2005-01-14T00:00:00Z","","0" +"NM-28140","6.400000095367432","6.400000095367432","","1986-02-03T00:00:00Z","","0" +"NM-17855","111.94000244140625","111.94000244140625","","1962-01-17T00:00:00Z","","0" +"NM-09171","-47.20000076293945","-47.20000076293945","","1911-01-30T00:00:00Z","","0" +"NM-03236","69.3499984741211","69.3499984741211","R","1948-08-10T00:00:00Z","","0" +"NM-06110","17.5","17.5","","1975-07-03T00:00:00Z","","0" +"NM-23923","21.760000228881836","21.760000228881836","","1950-06-21T00:00:00Z","","0" +"NM-02004","8","8","","1994-05-15T00:00:00Z","","0" +"NM-05760","381","381","P","1968-09-20T00:00:00Z","","0" +"AB-0162","486.989990234375","486.989990234375","","2000-03-23T00:00:00Z","","" +"NM-28257","73.97000122070312","73.97000122070312","","1954-09-25T00:00:00Z","","0" +"NM-14196","-28.719999313354492","-28.719999313354492","","1905-10-16T00:00:00Z","","0" +"NM-17430","94.4800033569336","94.4800033569336","","1982-03-18T00:00:00Z","","0" +"NM-27610","66.06999969482422","66.06999969482422","","1984-01-19T00:00:00Z","","0" +"SM-0016","213.13999938964844","211.99000549316406","","2006-06-13T00:00:00Z","","1.149999976158142" +"NM-02990","48.290000915527344","48.290000915527344","","1987-08-18T00:00:00Z","","0" +"NM-18207","199.25999450683594","199.25999450683594","","1972-01-12T00:00:00Z","","0" +"NM-13475","71.5199966430664","71.5199966430664","P","1966-02-08T00:00:00Z","","0" +"NM-17735","54.45000076293945","54.45000076293945","","1972-01-13T00:00:00Z","","0" +"SV-0096","127.5","126.33000183105469","","2019-07-13T00:00:00Z","","1.1699999570846558" +"NM-28251","94.55999755859375","94.55999755859375","","1971-07-15T00:00:00Z","","0" +"NM-27234","5","5","","1954-01-19T00:00:00Z","","0" +"NM-19296","337.70001220703125","337.70001220703125","","1976-01-07T00:00:00Z","","0" +"NM-02005","7.800000190734863","7.800000190734863","","1953-07-15T00:00:00Z","","0" +"NM-12132","54.58000183105469","54.58000183105469","P","1976-03-25T00:00:00Z","","0" +"NM-22445","216.4499969482422","216.4499969482422","","1958-11-20T00:00:00Z","","0" +"NM-10058","10.300000190734863","10.300000190734863","","1972-10-16T00:00:00Z","","0" +"NM-01961","109.37000274658203","109.37000274658203","P","1953-05-13T00:00:00Z","","0" +"NM-02518","8.699999809265137","8.699999809265137","","1978-03-15T00:00:00Z","","0" +"NM-17716","7.579999923706055","7.579999923706055","","1940-05-13T00:00:00Z","","0" +"DE-0084","88.87999725341797","88.87999725341797","","1997-02-07T00:00:00Z","","0" +"NM-11942","1.190000057220459","1.190000057220459","","1942-03-17T00:00:00Z","","0" +"TO-0086","83.19999694824219","83.19999694824219","","1950-02-08T00:00:00Z","","0" +"EB-413","206.1199951171875","206.1199951171875","","2005-07-20T00:00:00Z","","0" +"NM-02256","8.199999809265137","8.199999809265137","","1953-02-15T00:00:00Z","","0" +"NM-28258","171.25","171.25","","2014-04-04T00:00:00Z","","0" +"NM-20703","18.799999237060547","18.799999237060547","P","1995-03-16T00:00:00Z","","0" +"NM-00937","227.14999389648438","227.14999389648438","","1967-01-05T00:00:00Z","","0" +"NM-13667","52.119998931884766","52.119998931884766","","1955-01-21T00:00:00Z","","0" +"NM-00355","10.09000015258789","10.09000015258789","","1962-01-04T00:00:00Z","","0" +"NM-18413","66.8499984741211","66.8499984741211","","1977-03-17T00:00:00Z","","0" +"NM-03030","88.13999938964844","88.13999938964844","","1985-01-14T00:00:00Z","","0" +"QY-0471","","","D","1954-05-21T00:00:00Z","","0" +"NM-13623","21.81999969482422","21.81999969482422","R","1939-11-27T00:00:00Z","","0" +"NM-16588","28.479999542236328","28.479999542236328","","1964-01-08T00:00:00Z","","0" +"NM-11643","87.19000244140625","87.19000244140625","","1941-06-09T00:00:00Z","","0" +"EB-363","149.99000549316406","145.79000854492188","","2004-06-10T00:00:00Z","","4.199999809265137" +"NM-27541","48.130001068115234","48.130001068115234","","1959-09-22T00:00:00Z","","0" +"NM-00761","33.75","33.75","","1960-11-23T00:00:00Z","","0" +"NM-17716","5.400000095367432","5.400000095367432","","1947-09-08T00:00:00Z","","0" +"NM-01239","19.979999542236328","19.979999542236328","","1986-01-06T00:00:00Z","","0" +"NM-13122","7.130000114440918","7.130000114440918","","1960-04-06T00:00:00Z","","0" +"NM-21679","362.8500061035156","362.8500061035156","","2002-06-13T00:00:00Z","","0" +"AB-0092","496.8800048828125","496.8800048828125","","2000-07-19T00:00:00Z","","" +"BC-0175","248.97000122070312","248.97000122070312","","2014-12-04T00:00:00Z","","0" +"NM-21446","7.480000019073486","7.480000019073486","","1957-10-29T00:00:00Z","","0" +"NM-07959","13.430000305175781","13.430000305175781","","1980-01-17T00:00:00Z","","0" +"NM-03205","441.3399963378906","441.3399963378906","","1983-01-08T00:00:00Z","","0" +"NM-21655","42.2400016784668","42.2400016784668","","1988-02-18T00:00:00Z","","0" +"SA-0053","85.52999877929688","84.62999725341797","R","2009-02-12T00:00:00Z","","0.8999999761581421" +"NM-13630","-52.97999954223633","-52.97999954223633","","1915-01-08T00:00:00Z","","0" +"NM-20223","68.13999938964844","68.13999938964844","","1986-10-23T00:00:00Z","","0" +"NM-00977","222.05999755859375","222.05999755859375","","2005-03-14T00:00:00Z","","0" +"NM-06190","230.05999755859375","230.05999755859375","","1954-01-27T00:00:00Z","","0" +"NM-02384","12.100000381469727","12.100000381469727","","1966-02-15T00:00:00Z","","0" +"NM-01868","7.099999904632568","7.099999904632568","","1994-12-15T00:00:00Z","","0" +"NM-00987","348.25","348.25","","1973-01-03T00:00:00Z","","0" +"NM-21576","3.990000009536743","3.990000009536743","Z","2004-05-07T00:00:00Z","","0" +"NM-11904","48.06999969482422","48.06999969482422","","1951-01-22T00:00:00Z","","0" +"NM-01926","5","5","","1988-07-15T00:00:00Z","","0" +"NM-22993","121","121","","1988-11-01T00:00:00Z","","0" +"NM-13979","46.869998931884766","46.869998931884766","","1960-10-14T00:00:00Z","","0" +"NM-27857","16.639999389648438","16.639999389648438","A","2010-02-19T00:00:00Z","","0" +"WL-0021","27.979999542236328","27.279998779296875","","2008-07-01T00:00:00Z","","0.699999988079071" +"NM-02256","4.300000190734863","4.300000190734863","","1946-07-15T00:00:00Z","","0" +"NM-28256","255.49000549316406","255.49000549316406","","2020-05-26T00:00:00Z","","0" +"NM-12029","76.04000091552734","76.04000091552734","","1986-01-08T00:00:00Z","","0" +"AB-0162","487.739990234375","487.739990234375","","2014-07-23T00:00:00Z","","" +"NM-14447","122.01000213623047","122.01000213623047","","1951-01-15T00:00:00Z","","0" +"NM-22393","29","29","","2011-12-30T00:00:00Z","","0" +"NM-03376","25.709999084472656","25.709999084472656","","1989-08-31T00:00:00Z","","0" +"TV-108","112.25","118.91999816894531","R","2011-08-03T00:00:00Z","","-6.670000076293945" +"NM-16415","30.510000228881836","30.510000228881836","P","1966-04-05T00:00:00Z","","0" +"NM-02840","6.619999885559082","6.619999885559082","","1974-10-21T00:00:00Z","","0" +"NM-03179","32.02000045776367","32.02000045776367","","1979-12-19T00:00:00Z","","0" +"NM-11365","66.75","66.75","","1961-02-06T00:00:00Z","","0" +"NM-19363","30.690000534057617","30.690000534057617","P","1977-02-23T00:00:00Z","","0" +"NM-07447","16.280000686645508","16.280000686645508","","1961-04-10T00:00:00Z","","0" +"NM-28259","163.97999572753906","163.97999572753906","","1977-06-25T00:00:00Z","","0" +"NM-13831","-40.27000045776367","-40.27000045776367","","1905-10-17T00:00:00Z","","0" +"NM-06676","9.100000381469727","9.100000381469727","","1962-12-15T00:00:00Z","","0" +"NM-05418","132.92999267578125","132.92999267578125","P","1954-05-18T00:00:00Z","","0" +"NM-13425","394.760009765625","394.760009765625","","1977-04-01T00:00:00Z","","0" +"NM-01392","57.15999984741211","57.15999984741211","","2014-03-04T00:00:00Z","","0" +"DE-0147","74.22000122070312","74.22000122070312","","2011-11-29T00:00:00Z","","0" +"NM-13092","8.3100004196167","8.3100004196167","","1970-12-21T00:00:00Z","","0" +"BC-0071","327.17999267578125","327.17999267578125","","2015-09-02T00:00:00Z","","0" +"NM-04255","144.35000610351562","144.35000610351562","","1969-02-28T00:00:00Z","","0" +"NM-03029","78.33000183105469","78.33000183105469","","1984-01-19T00:00:00Z","","0" +"NM-05753","64.1500015258789","64.1500015258789","","1950-01-06T00:00:00Z","","0" +"NM-11435","89.94999694824219","89.94999694824219","","1954-01-19T00:00:00Z","","0" +"NM-07074","28.299999237060547","28.299999237060547","","1934-02-04T00:00:00Z","","0" +"NM-02940","36.0099983215332","36.0099983215332","","1995-01-10T00:00:00Z","","0" +"NM-13279","-31.030000686645508","-31.030000686645508","","1914-07-16T00:00:00Z","","0" +"NM-06996","57.11000061035156","57.11000061035156","","2002-07-11T00:00:00Z","","0" +"AB-0179","188.13999938964844","188.13999938964844","","2009-02-03T00:00:00Z","","" +"NM-04487","14.399999618530273","14.399999618530273","","2012-03-08T00:00:00Z","","0" +"NM-26663","22.889999389648438","22.889999389648438","","2011-12-09T00:00:00Z","","0" +"NM-26547","17.829999923706055","17.829999923706055","R","1981-01-28T00:00:00Z","","0" +"NM-20051","24.1200008392334","24.1200008392334","","1951-02-14T00:00:00Z","","0" +"NM-00618","58.619998931884766","58.619998931884766","","2014-12-15T00:00:00Z","","0" +"NM-20100","31.729999542236328","31.729999542236328","","1942-10-20T00:00:00Z","","0" +"NM-08758","12.979999542236328","12.979999542236328","","1956-09-17T00:00:00Z","","0" +"NM-03331","10.300000190734863","10.300000190734863","","1988-07-28T00:00:00Z","","0" +"NM-28250","107.95999908447266","107.95999908447266","","1979-10-05T00:00:00Z","","0" +"NM-08268","10.989999771118164","10.989999771118164","","1974-09-03T00:00:00Z","","0" +"NM-02831","40.90999984741211","40.90999984741211","","1988-02-22T00:00:00Z","","0" +"SB-0299","134.3000030517578","134.3000030517578","","1976-04-30T00:00:00Z","","0" +"NM-21687","144","144","","1995-05-19T00:00:00Z","","0" +"NM-13876","12.270000457763672","12.270000457763672","","1975-01-18T00:00:00Z","","0" +"NM-02831","56.61000061035156","56.61000061035156","","1985-06-19T00:00:00Z","","0" +"NM-13944","-4.46999979019165","-4.46999979019165","","1913-08-18T00:00:00Z","","0" +"NM-10146","46.0099983215332","46.0099983215332","","1971-03-30T00:00:00Z","","0" +"NM-18283","72.75","72.75","","1966-12-13T00:00:00Z","","0" +"NM-23407","608.9500122070312","608.9500122070312","","1983-04-26T00:00:00Z","","0" +"NM-02325","174.7899932861328","174.7899932861328","","1978-01-11T00:00:00Z","","0" +"NM-28257","16.239999771118164","16.239999771118164","","1973-11-05T00:00:00Z","","0" +"NM-13232","70.30000305175781","70.30000305175781","","1978-01-03T00:00:00Z","","0" +"DE-0109","38.380001068115234","38.380001068115234","","2009-09-16T00:00:00Z","","0" +"NM-06263","135.85000610351562","135.85000610351562","","1975-01-27T00:00:00Z","","0" +"NM-02560","105.87999725341797","105.87999725341797","","1964-08-01T00:00:00Z","","0" +"NM-05199","153.3300018310547","153.3300018310547","","1993-01-25T00:00:00Z","","0" +"NM-00213","156.25","156.25","","1990-04-19T00:00:00Z","","0" +"NM-00760","16.200000762939453","16.200000762939453","","2013-03-27T00:00:00Z","","0" +"EB-288","207.14999389648438","207.14999389648438","Z","2004-12-31T00:00:00Z","","0" +"NM-22147","5.849999904632568","5.849999904632568","Z","2010-08-24T00:00:00Z","","0" +"SB-0304","144.1999969482422","144.1999969482422","","1997-10-20T00:00:00Z","","0" +"NM-01759","48.22999954223633","48.22999954223633","","1972-05-01T00:00:00Z","","0" +"NM-19786","132.2100067138672","132.2100067138672","","2010-02-03T00:00:00Z","","0" +"NM-02352","5.300000190734863","5.300000190734863","","1950-08-15T00:00:00Z","","0" +"NM-17332","16.639999389648438","16.639999389648438","","1964-01-19T00:00:00Z","","0" +"NM-14333","19.93000030517578","19.93000030517578","","1958-01-08T00:00:00Z","","0" +"NM-23293","102.29000091552734","102.29000091552734","P","1948-06-10T00:00:00Z","","0" +"NM-02314","9.199999809265137","9.199999809265137","","1986-02-15T00:00:00Z","","0" +"NM-00213","178.86000061035156","178.86000061035156","","1958-04-01T00:00:00Z","","0" +"NM-20258","182.4199981689453","182.4199981689453","","1955-08-15T00:00:00Z","","0" +"NM-15323","92.41999816894531","92.41999816894531","","1995-01-19T00:00:00Z","","0" +"NM-02177","13.920000076293945","13.920000076293945","","2005-01-25T00:00:00Z","","0" +"NM-13856","29","29","","1982-06-17T00:00:00Z","","0" +"NM-01796","5.400000095367432","5.400000095367432","","1974-12-15T00:00:00Z","","0" +"NM-28251","76.8499984741211","76.8499984741211","","1987-05-25T00:00:00Z","","0" +"NM-02043","6.599999904632568","6.599999904632568","","1979-02-15T00:00:00Z","","0" +"NM-18937","105.44999694824219","105.44999694824219","","1974-10-17T00:00:00Z","","0" +"EB-266","12.4399995803833","12.4399995803833","","2007-02-21T00:00:00Z","","0" +"EB-276","136","136","S","1985-06-30T00:00:00Z","","0" +"NM-02757","20.479999542236328","20.479999542236328","","1978-01-19T00:00:00Z","","0" +"NM-15538","122","122","","1984-02-07T00:00:00Z","","0" +"NM-18697","65.41000366210938","65.41000366210938","","1955-01-29T00:00:00Z","","0" +"SA-0031","141.5","140.5","","2011-05-17T00:00:00Z","","1" +"NM-03360","97.37000274658203","97.37000274658203","","1985-02-19T00:00:00Z","","0" +"NM-19964","20.329999923706055","20.329999923706055","","1947-02-18T00:00:00Z","","0" +"NM-19346","376.1000061035156","376.1000061035156","","1983-01-07T00:00:00Z","","0" +"NM-03004","86.04000091552734","86.04000091552734","","1983-01-10T00:00:00Z","","0" +"NM-01912","8.90999984741211","8.90999984741211","","1985-01-25T00:00:00Z","","0" +"SO-0174","7.019999980926514","6.46999979019165","","2022-02-03T00:00:00Z","0001-01-01T09:20:00Z","0.550000011920929" +"NM-03468","151.55999755859375","151.55999755859375","","2015-09-09T00:00:00Z","","0" +"NM-28255","152.2100067138672","152.2100067138672","","2014-06-16T00:00:00Z","","0" +"NM-07495","81.12000274658203","81.12000274658203","","1969-03-18T00:00:00Z","","0" +"NM-06852","89.44000244140625","89.44000244140625","","2005-05-11T00:00:00Z","","0" +"BC-0213","125.08999633789062","125.08999633789062","","2013-02-11T00:00:00Z","","0" +"NM-03382","114.51000213623047","114.51000213623047","","1979-01-25T00:00:00Z","","0" +"NM-28250","87.83000183105469","87.83000183105469","","2011-01-14T00:00:00Z","","0" +"NM-11358","5.400000095367432","5.400000095367432","","1975-03-18T00:00:00Z","","0" +"NM-22679","5.619999885559082","5.619999885559082","Z","2005-12-05T00:00:00Z","","0" +"NM-01971","6.599999904632568","6.599999904632568","","2001-07-15T00:00:00Z","","0" +"NM-10635","29.209999084472656","29.209999084472656","","1953-03-16T00:00:00Z","","0" +"DE-0127","46.70000076293945","46.70000076293945","","2014-03-10T00:00:00Z","","0" +"NM-01891","50.869998931884766","50.869998931884766","","2002-04-09T00:00:00Z","","0" +"NM-04026","318.1000061035156","318.1000061035156","","1970-01-06T00:00:00Z","","0" +"NM-00456","138.10000610351562","138.10000610351562","P","2010-12-11T00:00:00Z","","0" +"NM-01868","10.899999618530273","10.899999618530273","","1959-03-15T00:00:00Z","","0" +"NM-28018","486.2900085449219","486.2900085449219","S","2015-04-18T00:00:00Z","","0" +"NM-10756","45.84000015258789","45.84000015258789","","1938-07-22T00:00:00Z","","0" +"EB-485","462.9200134277344","461.9200134277344","P","2006-11-30T00:00:00Z","","1" +"NM-19887","42.060001373291016","42.060001373291016","","1964-09-16T00:00:00Z","","0" +"NM-02227","124.41000366210938","124.41000366210938","","1981-01-09T00:00:00Z","","0" +"NM-10058","7.519999980926514","7.519999980926514","","1976-05-19T00:00:00Z","","0" +"NM-27371","147.32000732421875","147.32000732421875","","1963-07-09T00:00:00Z","","0" +"NM-20576","66.31999969482422","66.31999969482422","","1958-06-23T00:00:00Z","","0" +"NM-10853","58.52000045776367","58.52000045776367","","1981-01-07T00:00:00Z","","0" +"SB-0432","36.79999923706055","36.79999923706055","","1975-01-16T00:00:00Z","","0" +"NM-16873","39.83000183105469","39.83000183105469","","1956-01-18T00:00:00Z","","0" +"NM-04070","43.880001068115234","43.880001068115234","","1969-11-04T00:00:00Z","","0" +"NM-09267","134.60000610351562","134.60000610351562","","1976-02-19T00:00:00Z","","0" +"NM-07135","148.25","148.25","","2002-01-11T00:00:00Z","","0" +"NM-13121","7","7","","1970-12-21T00:00:00Z","","0" +"NM-15444","105.19999694824219","105.19999694824219","","1969-01-21T00:00:00Z","","0" +"NM-28258","128.14999389648438","128.14999389648438","","1984-12-05T00:00:00Z","","0" +"NM-03118","9.630000114440918","9.630000114440918","","1964-06-30T00:00:00Z","","0" +"NM-01365","-76","-76","","1950-06-21T00:00:00Z","","0" +"DE-0106","35.900001525878906","35.900001525878906","","2005-10-17T00:00:00Z","","0" +"NM-03644","149.52999877929688","149.52999877929688","","1986-02-05T00:00:00Z","","0" +"NM-03592","7.539999961853027","7.539999961853027","","2012-01-31T00:00:00Z","","0" +"NM-01505","123.7699966430664","123.7699966430664","","1983-03-28T00:00:00Z","","0" +"NM-17716","4","4","","1949-07-21T00:00:00Z","","0" +"NM-17643","25.40999984741211","25.40999984741211","","1937-02-19T00:00:00Z","","0" +"NM-13144","-29.1200008392334","-29.1200008392334","","1957-11-01T00:00:00Z","","0" +"EB-263","6","6","","2000-04-06T00:00:00Z","","0" +"NM-12913","43.099998474121094","43.099998474121094","","1981-03-10T00:00:00Z","","0" +"EB-209","65.70999908447266","64.45999908447266","","1980-04-08T00:00:00Z","","1.25" +"NM-22116","2.450000047683716","2.450000047683716","Z","2010-08-24T00:00:00Z","","0" +"NM-02209","81","81","","1940-11-01T00:00:00Z","","0" +"NM-17716","2.819999933242798","2.819999933242798","","1946-02-01T00:00:00Z","","0" +"NM-02101","8.899999618530273","8.899999618530273","","1971-01-15T00:00:00Z","","0" +"NM-00367","134.50999450683594","134.50999450683594","","2010-06-07T00:00:00Z","","0" +"SB-0299","125.94000244140625","125.94000244140625","","1991-05-07T00:00:00Z","","0" +"NM-02591","14.5","14.5","","1979-12-15T00:00:00Z","","0" +"NM-02811","58.279998779296875","58.279998779296875","","1948-03-11T00:00:00Z","","0" +"NM-03405","11.300000190734863","11.300000190734863","","2006-03-01T00:00:00Z","","0" +"NM-21617","476.2799987792969","476.2799987792969","","1990-08-24T00:00:00Z","","0" +"NM-13162","5.829999923706055","5.829999923706055","","1938-03-01T00:00:00Z","","0" +"NM-02224","89.18000030517578","89.18000030517578","","1947-01-11T00:00:00Z","","0" +"NM-28057","20.6200008392334","20.6200008392334","","1998-01-14T00:00:00Z","","0" +"QU-090","61.7599983215332","59.7599983215332","","2014-07-25T00:00:00Z","","2" +"NM-12798","26.969999313354492","26.969999313354492","","1970-01-07T00:00:00Z","","0" +"NM-06262","405.20001220703125","405.20001220703125","","1977-01-03T00:00:00Z","","0" +"BC-0439","","138.39999389648438","","2021-03-11T00:00:00Z","","1.7999999523162842" +"NM-02076","115.58000183105469","115.58000183105469","","1970-01-14T00:00:00Z","","0" +"NM-05800","2.819999933242798","2.819999933242798","","1974-06-27T00:00:00Z","","0" +"NM-05645","87.87999725341797","87.87999725341797","","1949-01-20T00:00:00Z","","0" +"NM-08234","31.959999084472656","31.959999084472656","","1933-05-15T00:00:00Z","","0" +"NM-00283","312.1000061035156","312.1000061035156","","1984-02-23T00:00:00Z","","0" +"NM-24991","53.779998779296875","53.779998779296875","","1970-04-09T00:00:00Z","","0" +"NM-10085","17.420000076293945","17.420000076293945","","1940-01-10T00:00:00Z","","0" +"TV-143","123.08000183105469","121.9000015258789","","2012-08-08T00:00:00Z","","1.1799999475479126" +"NM-24711","257.75","257.75","","1965-06-21T00:00:00Z","","0" +"NM-01337","89.6500015258789","89.6500015258789","","1997-07-22T00:00:00Z","","0" +"NM-17989","18.549999237060547","18.549999237060547","","1935-08-12T00:00:00Z","","0" +"NM-28257","-0.46000000834465027","-0.46000000834465027","","2014-10-06T00:00:00Z","","0" +"NM-13424","102.44000244140625","102.44000244140625","","1965-01-06T00:00:00Z","","0" +"EB-482","23","23","","1987-01-31T00:00:00Z","","0" +"EB-250","72.83000183105469","72.83000183105469","","1967-02-28T00:00:00Z","","0" +"NM-04986","75.93000030517578","75.93000030517578","","1974-01-18T00:00:00Z","","0" +"NM-04608","68.2699966430664","68.2699966430664","","1955-03-19T00:00:00Z","","0" +"DE-0088","92.33999633789062","92.33999633789062","","2012-10-16T00:00:00Z","","0" +"NM-02693","77.54000091552734","77.54000091552734","","2003-01-23T00:00:00Z","","0" +"NM-04464","101.16999816894531","101.16999816894531","","1962-01-05T00:00:00Z","","0" +"NM-03248","30.06999969482422","30.06999969482422","","2004-04-12T00:00:00Z","","0" +"NM-17716","3.069999933242798","3.069999933242798","","1945-06-11T00:00:00Z","","0" +"NM-13340","-13.710000038146973","-13.710000038146973","","1909-03-15T00:00:00Z","","0" +"NM-02158","7.699999809265137","7.699999809265137","","1999-05-15T00:00:00Z","","0" +"NM-02198","19.31999969482422","19.31999969482422","","2006-08-22T00:00:00Z","","0" +"NM-02288","5.679999828338623","5.679999828338623","","1992-01-21T00:00:00Z","","0" +"NM-26499","34.52000045776367","34.52000045776367","","1988-09-20T00:00:00Z","","0" +"NM-01377","106.5","106.5","","2002-03-15T00:00:00Z","","0" +"NM-02108","10.5","10.5","","1993-01-27T00:00:00Z","","0" +"NM-20733","222.52000427246094","222.52000427246094","","1986-10-09T00:00:00Z","","0" +"NM-05874","47.560001373291016","47.560001373291016","","1944-01-12T00:00:00Z","","0" +"NM-00366","108.66000366210938","108.66000366210938","","1995-03-21T00:00:00Z","","0" +"AB-0112","24.649999618530273","24.649999618530273","Z","2010-04-13T00:00:00Z","","" +"NM-02352","6.900000095367432","6.900000095367432","","1946-03-15T00:00:00Z","","0" +"NM-16781","42.54999923706055","42.54999923706055","","1963-01-04T00:00:00Z","","0" +"NM-01022","442.44000244140625","442.44000244140625","","1984-08-30T00:00:00Z","","0" +"NM-05369","18.260000228881836","18.260000228881836","","1949-11-22T00:00:00Z","","0" +"WS-021","2.700000047683716","2.700000047683716","","2011-01-14T00:00:00Z","","0" +"QU-005","27.1200008392334","26.23000144958496","","2013-09-06T00:00:00Z","","0.8899999856948853" +"NM-19893","64.8499984741211","64.8499984741211","","1951-09-27T00:00:00Z","","0" +"NM-01921","38.709999084472656","38.709999084472656","","1996-01-16T00:00:00Z","","0" +"NM-13645","25.959999084472656","25.959999084472656","","1944-02-08T00:00:00Z","","0" +"NM-13307","34.18000030517578","34.18000030517578","","1971-03-18T00:00:00Z","","0" +"NM-07054","65.1500015258789","65.1500015258789","","2006-04-12T00:00:00Z","","0" +"NM-10477","56.72999954223633","56.72999954223633","S","1950-01-12T00:00:00Z","","0" +"NM-22322","18.780000686645508","18.780000686645508","","2010-02-16T00:00:00Z","","0" +"NM-08093","17.1299991607666","17.1299991607666","","1955-01-06T00:00:00Z","","0" +"NM-28250","98.5199966430664","98.5199966430664","","1986-06-15T00:00:00Z","","0" +"NM-01291","100.93000030517578","100.93000030517578","","1953-06-10T00:00:00Z","","0" +"NM-28253","26.239999771118164","26.239999771118164","","1996-06-15T00:00:00Z","","0" +"NM-02684","34.279998779296875","34.279998779296875","","2009-01-14T00:00:00Z","","0" +"NM-13594","13.300000190734863","13.300000190734863","","1956-11-06T00:00:00Z","","0" +"NM-02659","7.5","7.5","P","1960-01-21T00:00:00Z","","0" +"NM-13003","80","80","","1991-07-09T00:00:00Z","","0" +"NM-01841","238.75999450683594","238.75999450683594","","1968-06-20T00:00:00Z","","0" +"DE-0191","49.689998626708984","49.689998626708984","","2015-12-16T00:00:00Z","","0" +"DE-0123","","","D","2013-02-26T00:00:00Z","","0" +"NM-20053","168.17999267578125","168.17999267578125","","1955-08-20T00:00:00Z","","0" +"NM-28252","62.29999923706055","62.29999923706055","","1979-11-05T00:00:00Z","","0" +"NM-03093","90.58999633789062","90.58999633789062","","1985-01-10T00:00:00Z","","0" +"NM-02484","39.95000076293945","39.95000076293945","","1989-02-21T00:00:00Z","","0" +"NM-02487","10","10","","1961-10-15T00:00:00Z","","0" +"NM-13162","8.6899995803833","8.6899995803833","R","1937-07-27T00:00:00Z","","0" +"NM-04975","60.61000061035156","60.61000061035156","P","1951-11-26T00:00:00Z","","0" +"NM-27425","230.1999969482422","230.1999969482422","","1968-11-25T00:00:00Z","","0" +"NM-03372","","","O","2001-03-07T00:00:00Z","","0" +"NM-26510","132.72999572753906","132.72999572753906","","2003-09-18T00:00:00Z","","0" +"SB-0001","276.54998779296875","276.54998779296875","","2013-06-13T00:00:00Z","","0" +"NM-27602","84.19999694824219","84.19999694824219","","1967-01-27T00:00:00Z","","0" +"NM-24963","100","100","","1979-05-22T00:00:00Z","","0" +"AB-0038","356.29998779296875","356.29998779296875","","1998-09-17T00:00:00Z","","" +"NM-21589","4","4","Z","2005-12-01T00:00:00Z","","0" +"NM-10452","64.3499984741211","64.3499984741211","","1966-01-12T00:00:00Z","","0" +"NM-11176","57.20000076293945","57.20000076293945","","1966-02-15T00:00:00Z","","0" +"NM-05309","6.900000095367432","6.900000095367432","","1948-01-15T00:00:00Z","","0" +"DE-0071","208.02000427246094","205.4199981689453","","2014-06-25T00:00:00Z","","2.5999999046325684" +"NM-05718","82.5999984741211","82.5999984741211","","1934-10-08T00:00:00Z","","0" +"NM-00067","414.5899963378906","414.5899963378906","R","1981-02-19T00:00:00Z","","0" +"NM-21848","7.630000114440918","7.630000114440918","Z","2009-03-11T00:00:00Z","","0" +"NM-01908","112.12999725341797","112.12999725341797","","1954-03-25T00:00:00Z","","0" +"NM-13594","10.460000038146973","10.460000038146973","","1960-11-21T00:00:00Z","","0" +"NM-23683","1182.010009765625","1182.010009765625","","2012-08-31T00:00:00Z","","0" +"NM-10460","41.810001373291016","41.810001373291016","","1951-01-16T00:00:00Z","","0" +"NM-03462","136.4600067138672","136.4600067138672","","1948-01-01T00:00:00Z","","0" +"SB-0299","143.22000122070312","143.22000122070312","","1979-07-15T00:00:00Z","","0" +"NM-08057","50.66999816894531","50.66999816894531","","1961-02-23T00:00:00Z","","0" +"NM-10177","45.63999938964844","45.63999938964844","","1991-02-07T00:00:00Z","","0" +"UC-0109","109.95999908447266","109.95999908447266","","2011-08-16T00:00:00Z","","0" +"DE-0097","93.58999633789062","93.58999633789062","","1999-07-27T00:00:00Z","","0" +"DE-0254","87.9000015258789","87.9000015258789","","2017-03-16T00:00:00Z","","0" +"NM-17876","148.42999267578125","148.42999267578125","","1961-01-19T00:00:00Z","","0" +"NM-01908","156.3800048828125","156.3800048828125","P","1953-07-28T00:00:00Z","","0" +"NM-08912","39.56999969482422","39.56999969482422","","1959-06-10T00:00:00Z","","0" +"NM-01887","57.470001220703125","57.470001220703125","","2011-04-27T00:00:00Z","","0" +"TV-272","264.4599914550781","261.67999267578125","","2006-05-10T00:00:00Z","","2.7799999713897705" +"BC-0007","187.0399932861328","187.0399932861328","","2018-04-03T00:00:00Z","","0" +"NM-01926","7","7","","1972-12-15T00:00:00Z","","0" +"NM-05490","85.72000122070312","85.72000122070312","","1950-01-09T00:00:00Z","","0" +"NM-01926","6.900000095367432","6.900000095367432","","1960-03-15T00:00:00Z","","0" +"NM-02168","9.510000228881836","9.510000228881836","","1993-01-20T00:00:00Z","","0" +"NM-20137","146.38999938964844","146.38999938964844","","1997-03-05T00:00:00Z","","0" +"NM-20343","48.52000045776367","48.52000045776367","","1941-11-30T00:00:00Z","","0" +"NM-19959","40.63999938964844","40.63999938964844","","1950-07-22T00:00:00Z","","0" +"NM-00245","80.58999633789062","80.58999633789062","","1967-01-25T00:00:00Z","","0" +"NM-28258","187.4499969482422","187.4499969482422","","2013-05-15T00:00:00Z","","0" +"NM-11969","50.25","50.25","","1957-01-11T00:00:00Z","","0" +"NM-04657","6.449999809265137","6.449999809265137","","1952-09-20T00:00:00Z","","0" +"EB-265","181.74000549316406","181.74000549316406","","2001-07-18T00:00:00Z","","0" +"NM-28252","36.599998474121094","36.599998474121094","","2000-05-15T00:00:00Z","","0" +"NM-28256","102.69000244140625","102.69000244140625","","2014-12-15T00:00:00Z","","0" +"DE-0131","31.950000762939453","31.950000762939453","","2006-10-23T00:00:00Z","","0" +"NM-13353","-24.100000381469727","-24.100000381469727","","1911-11-21T00:00:00Z","","0" +"NM-05290","91","91","","1970-12-10T00:00:00Z","","0" +"EB-269","287.45001220703125","287.45001220703125","","2004-03-17T00:00:00Z","","0" +"NM-26733","138.33999633789062","138.33999633789062","","1959-02-10T00:00:00Z","","0" +"NM-00253","21.600000381469727","21.600000381469727","","2004-08-30T00:00:00Z","","0" +"NM-02050","81.55999755859375","81.55999755859375","","1991-06-11T00:00:00Z","","0" +"NM-21660","475.75","475.75","","1992-06-09T00:00:00Z","","0" +"NM-01057","7.369999885559082","7.369999885559082","","1958-04-02T00:00:00Z","","0" +"NM-05623","64.80000305175781","64.80000305175781","","1931-12-24T00:00:00Z","","0" +"NM-00965","44.31999969482422","44.31999969482422","","1980-01-10T00:00:00Z","","0" +"NM-21661","463","463","R","1985-03-07T00:00:00Z","","0" +"UC-0036","150.42999267578125","150.42999267578125","","1973-02-01T00:00:00Z","","0" +"SM-0142","602.4000244140625","600.8200073242188","","2008-08-14T00:00:00Z","","1.5800000429153442" +"NM-07959","11.020000457763672","11.020000457763672","","1961-05-22T00:00:00Z","","0" +"BC-0012","","75.9000015258789","","2020-11-01T00:00:00Z","","1.100000023841858" +"NM-14508","38.529998779296875","38.529998779296875","","1954-05-17T00:00:00Z","","0" +"NM-28024","483.45001220703125","483.45001220703125","S","2015-04-17T00:00:00Z","","0" +"NM-25680","-105.16000366210938","-105.16000366210938","","1988-11-23T00:00:00Z","","0" +"BC-0084","117.45999908447266","117.45999908447266","","2014-12-02T00:00:00Z","","0" +"NM-00765","32.619998931884766","32.619998931884766","","2013-09-18T00:00:00Z","","0" +"NM-08393","11.399999618530273","11.399999618530273","","2010-04-26T00:00:00Z","","0" +"NM-02548","50.130001068115234","50.130001068115234","","1990-05-30T00:00:00Z","","0" +"NM-24213","23.540000915527344","23.540000915527344","","2011-06-30T00:00:00Z","","0" +"DE-0111","33.43000030517578","33.43000030517578","","2006-02-16T00:00:00Z","","0" +"NM-00720","14.4399995803833","14.4399995803833","","2009-03-17T00:00:00Z","","0" +"BC-0002","321.7099914550781","321.7099914550781","","2014-12-09T00:00:00Z","","0" +"NM-02384","12.5","12.5","","1972-06-15T00:00:00Z","","0" +"NM-14820","130.42999267578125","130.42999267578125","","1953-03-09T00:00:00Z","","0" +"NM-20576","67.26000213623047","67.26000213623047","S","1949-06-03T00:00:00Z","","0" +"NM-26678","91.5999984741211","91.5999984741211","","1958-02-17T00:00:00Z","","0" +"NM-02450","280.04998779296875","280.04998779296875","P","1970-02-25T00:00:00Z","","0" +"DE-0097","91.44999694824219","91.44999694824219","","2008-12-08T00:00:00Z","","0" +"DE-0261","87.37000274658203","87.37000274658203","","2019-06-24T00:00:00Z","","0" +"NM-02224","94.16999816894531","94.16999816894531","","1970-01-27T00:00:00Z","","0" +"NM-02990","34.869998931884766","34.869998931884766","","1959-03-11T00:00:00Z","","0" +"NM-06087","15.970000267028809","15.970000267028809","","1960-01-08T00:00:00Z","","0" +"NM-02394","81.4000015258789","81.4000015258789","","1963-08-08T00:00:00Z","","0" +"NM-00600","66.30999755859375","66.30999755859375","","1989-01-05T00:00:00Z","","0" +"NM-17989","18.34000015258789","18.34000015258789","P","1947-09-14T00:00:00Z","","0" +"NM-27608","24.790000915527344","24.790000915527344","","1995-02-24T00:00:00Z","","0" +"NM-07144","56.84000015258789","56.84000015258789","","1986-03-07T00:00:00Z","","0" +"NM-15881","73.20999908447266","73.20999908447266","P","1980-01-10T00:00:00Z","","0" +"NM-04115","33.220001220703125","33.220001220703125","","2004-01-20T00:00:00Z","","0" +"NM-02282","400.8999938964844","400.8999938964844","","1990-05-17T00:00:00Z","","0" +"NM-28140","5.699999809265137","5.699999809265137","","1987-03-20T00:00:00Z","","0" +"NM-27474","83","83","","1956-07-20T00:00:00Z","","0" +"NM-11424","82.66999816894531","82.66999816894531","","1950-01-21T00:00:00Z","","0" +"WL-0307","93.47000122070312","92.44000244140625","R","2022-07-13T00:00:00Z","0001-01-01T16:10:00Z","1.0299999713897705" +"EB-229","215.47000122070312","221.47000122070312","","1979-04-06T00:00:00Z","","-6" +"NM-15552","101.51000213623047","101.51000213623047","","1972-01-06T00:00:00Z","","0" +"NM-04274","32.56999969482422","32.56999969482422","","1976-06-18T00:00:00Z","","0" +"NM-13223","62.16999816894531","62.16999816894531","","1943-05-17T00:00:00Z","","0" +"NM-17628","60.63999938964844","60.63999938964844","P","1938-11-04T00:00:00Z","","0" +"NM-28257","-13.5600004196167","-13.5600004196167","","2004-02-16T00:00:00Z","","0" +"NM-02757","16.520000457763672","16.520000457763672","","1948-05-14T00:00:00Z","","0" +"NM-02114","62.90999984741211","62.90999984741211","","1981-01-15T00:00:00Z","","0" +"NM-10063","8.140000343322754","8.140000343322754","","1975-04-16T00:00:00Z","","0" +"NM-10296","112.7300033569336","112.7300033569336","","1979-02-28T00:00:00Z","","0" +"NM-01793","160.32000732421875","160.32000732421875","","1976-01-03T00:00:00Z","","0" +"NM-15659","19.829999923706055","19.829999923706055","","1982-09-02T00:00:00Z","","0" +"NM-09178","23.1200008392334","23.1200008392334","","1947-03-26T00:00:00Z","","0" +"NM-03654","36.029998779296875","36.029998779296875","","2002-11-19T00:00:00Z","","0" +"NM-01893","14.430000305175781","14.430000305175781","","2005-12-21T00:00:00Z","","0" +"NM-06794","9.949999809265137","9.949999809265137","","1974-01-22T00:00:00Z","","0" +"NM-00643","100.4800033569336","100.4800033569336","","2001-01-26T00:00:00Z","","0" +"NM-28017","486.55999755859375","486.55999755859375","S","2015-04-27T00:00:00Z","","0" +"NM-09317","-74.91999816894531","-74.91999816894531","","1905-06-30T00:00:00Z","","0" +"NM-10571","14.779999732971191","14.779999732971191","","1939-08-16T00:00:00Z","","0" +"NM-27294","198.24000549316406","198.24000549316406","","1990-09-12T00:00:00Z","","0" +"EB-667","248.17999267578125","245.1999969482422","","2015-04-13T00:00:00Z","","2.9800000190734863" +"NM-21526","310.25","310.25","","1992-07-10T00:00:00Z","","0" +"NM-21239","3.990000009536743","3.990000009536743","Z","2009-07-27T00:00:00Z","","0" +"NM-20625","24.280000686645508","24.280000686645508","","1952-02-18T00:00:00Z","","0" +"NM-25568","29.190000534057617","29.190000534057617","","1963-09-16T00:00:00Z","","0" +"NM-07957","46.20000076293945","46.20000076293945","","1942-01-12T00:00:00Z","","0" +"NM-02702","6.820000171661377","6.820000171661377","","1978-12-01T00:00:00Z","","0" +"TV-167","243.80999755859375","242.20999145507812","","2011-12-16T00:00:00Z","","1.600000023841858" +"NM-12597","101.3499984741211","101.3499984741211","","1963-09-30T00:00:00Z","","0" +"NM-20769","24.15999984741211","24.15999984741211","","1943-10-01T00:00:00Z","","0" +"NM-01898","36.63999938964844","36.63999938964844","","2005-02-18T00:00:00Z","","0" +"NM-13977","-10.239999771118164","-10.239999771118164","","1910-09-21T00:00:00Z","","0" +"AR-0018","2.640000104904175","1.290000081062317","","2017-01-24T00:00:00Z","0001-01-01T14:01:00Z","1.350000023841858" +"NM-06571","57.97999954223633","57.97999954223633","","1991-04-25T00:00:00Z","","0" +"NM-21567","5.75","5.75","Z","2004-03-10T00:00:00Z","","0" +"NM-17237","23.729999542236328","23.729999542236328","","1980-05-07T00:00:00Z","","0" +"NM-28018","486.0400085449219","486.0400085449219","S","2015-04-24T00:00:00Z","","0" +"NM-01204","349.4700012207031","349.4700012207031","Z","1994-01-12T00:00:00Z","","0" +"NM-17626","74.80999755859375","74.80999755859375","","1947-05-28T00:00:00Z","","0" +"NM-03178","101.88999938964844","101.88999938964844","","1979-12-19T00:00:00Z","","0" +"NM-03388","13.930000305175781","13.930000305175781","","1960-09-06T00:00:00Z","","0" +"NM-00084","89.76000213623047","89.76000213623047","","1952-05-21T00:00:00Z","","0" +"NM-13071","4.800000190734863","4.800000190734863","","1978-09-18T00:00:00Z","","0" +"NM-04851","87.94999694824219","87.94999694824219","","1953-11-06T00:00:00Z","","0" +"NM-01955","6.400000095367432","6.400000095367432","","1972-08-15T00:00:00Z","","0" +"NM-14271","161.36000061035156","161.36000061035156","","1963-11-18T00:00:00Z","","0" +"NM-26425","5.400000095367432","5.400000095367432","","1986-02-28T00:00:00Z","","0" +"SB-0299","130.25","130.25","","2005-12-25T00:00:00Z","","0" +"SM-0092","274.29998779296875","272.2799987792969","","2007-02-28T00:00:00Z","","2.0199999809265137" +"NM-00273","53.02000045776367","53.02000045776367","","1981-02-10T00:00:00Z","","0" +"EB-222","131.3000030517578","128.8000030517578","","1992-07-01T00:00:00Z","","2.5" +"NM-03390","33.939998626708984","33.939998626708984","Z","1996-09-26T00:00:00Z","","0" +"NM-17200","4.400000095367432","4.400000095367432","","1933-08-12T00:00:00Z","","0" +"NM-03660","25.3799991607666","25.3799991607666","","1986-01-29T00:00:00Z","","0" +"NM-00645","31.649999618530273","31.649999618530273","","1996-08-07T00:00:00Z","","0" +"NM-18010","217.1999969482422","217.1999969482422","","1987-01-09T00:00:00Z","","0" +"NM-28257","11.270000457763672","11.270000457763672","","1973-12-15T00:00:00Z","","0" +"NM-02756","19.219999313354492","19.219999313354492","","1974-01-11T00:00:00Z","","0" +"NM-22769","426","426","","1988-09-12T00:00:00Z","","0" +"NM-13223","92.69000244140625","92.69000244140625","","1959-05-18T00:00:00Z","","0" +"NM-14802","105.66999816894531","105.66999816894531","","1975-08-05T00:00:00Z","","0" +"NM-08645","40.65999984741211","40.65999984741211","","1940-02-03T00:00:00Z","","0" +"NM-13497","151.94000244140625","151.94000244140625","","1974-12-15T00:00:00Z","","0" +"SA-0439","83.5","83.5","","1952-12-04T00:00:00Z","","0" +"NM-28256","81.38999938964844","81.38999938964844","","1985-01-15T00:00:00Z","","0" +"NM-20682","69.51000213623047","69.51000213623047","","1976-10-20T00:00:00Z","","0" +"NM-09799","6.599999904632568","6.599999904632568","","1967-01-10T00:00:00Z","","0" +"NM-21598","400","400","","1955-02-01T00:00:00Z","","0" +"NM-01791","300.7900085449219","300.7900085449219","","1986-02-21T00:00:00Z","","0" +"NM-21883","16.290000915527344","16.290000915527344","","1988-01-28T00:00:00Z","","0" +"NM-18088","222.8699951171875","222.8699951171875","","1987-02-11T00:00:00Z","","0" +"NM-12711","33.16999816894531","33.16999816894531","","1956-01-12T00:00:00Z","","0" +"NM-14396","6.739999771118164","6.739999771118164","","1972-03-31T00:00:00Z","","0" +"NM-14362","131.1999969482422","131.1999969482422","T","1971-04-08T00:00:00Z","","0" +"NM-05762","37.689998626708984","37.689998626708984","","1944-01-11T00:00:00Z","","0" +"DE-0111","33.93000030517578","33.93000030517578","","2005-12-28T00:00:00Z","","0" +"NM-11679","34.58000183105469","34.58000183105469","","1948-11-05T00:00:00Z","","0" +"NM-28257","15.399999618530273","15.399999618530273","","1998-05-15T00:00:00Z","","0" +"NM-27258","47.66999816894531","47.66999816894531","","1983-01-18T00:00:00Z","","0" +"NM-14030","-16.020000457763672","-16.020000457763672","","1931-12-15T00:00:00Z","","0" +"NM-08638","-74.91999816894531","-74.91999816894531","","1905-07-07T00:00:00Z","","0" +"NM-01568","71.5","71.5","","1988-03-14T00:00:00Z","","0" +"BC-0208","188.8300018310547","188.8300018310547","","2014-08-12T00:00:00Z","","0" +"NM-00831","57.400001525878906","57.400001525878906","","2003-07-22T00:00:00Z","","0" +"NM-02452","136.39999389648438","136.39999389648438","","1964-07-31T00:00:00Z","","0" +"NM-02946","71.7300033569336","71.7300033569336","","1980-01-16T00:00:00Z","","0" +"NM-27432","32.75","32.75","","1940-11-07T00:00:00Z","","0" +"NM-00218","62.560001373291016","62.560001373291016","","1949-11-09T00:00:00Z","","0" +"NM-10529","47.25","47.25","","1951-01-16T00:00:00Z","","0" +"NM-03747","54.810001373291016","54.810001373291016","","1983-01-25T00:00:00Z","","0" +"NM-21306","6.880000114440918","6.880000114440918","","1948-08-11T00:00:00Z","","0" +"NM-03600","93","93","","1997-01-14T00:00:00Z","","0" +"NM-02378","158.67999267578125","158.67999267578125","","1994-01-11T00:00:00Z","","0" +"NM-04608","76.88999938964844","76.88999938964844","","1958-11-13T00:00:00Z","","0" +"NM-27337","81.83000183105469","81.83000183105469","","1998-01-30T00:00:00Z","","0" +"NM-11388","41.880001068115234","41.880001068115234","","1937-07-05T00:00:00Z","","0" +"NM-11010","66.86000061035156","66.86000061035156","","1971-02-26T00:00:00Z","","0" +"NM-02352","6.599999904632568","6.599999904632568","","1991-06-15T00:00:00Z","","0" +"NM-28257","40.650001525878906","40.650001525878906","","1983-04-15T00:00:00Z","","0" +"NM-23211","20.739999771118164","20.739999771118164","","1954-11-05T00:00:00Z","","0" +"NM-27202","137.8699951171875","137.8699951171875","","2009-07-15T00:00:00Z","","0" +"NM-01074","40.83000183105469","40.83000183105469","","1982-03-23T00:00:00Z","","0" +"NM-21503","12.260000228881836","12.260000228881836","","2008-10-15T00:00:00Z","","0" +"NM-28257","-8.470000267028809","-8.470000267028809","","1998-10-15T00:00:00Z","","0" +"NM-14763","56.279998779296875","56.279998779296875","","1965-01-06T00:00:00Z","","0" +"NM-23446","157.8000030517578","157.8000030517578","","1959-05-04T00:00:00Z","","0" +"NM-00740","91.83999633789062","91.83999633789062","","2013-11-19T00:00:00Z","","0" +"NM-10302","-47.20000076293945","-47.20000076293945","","1910-02-10T00:00:00Z","","0" +"NM-07881","12.770000457763672","12.770000457763672","","1935-05-17T00:00:00Z","","0" +"NM-11727","79.12000274658203","79.12000274658203","","1948-01-22T00:00:00Z","","0" +"NM-03417","18.329999923706055","18.329999923706055","","1993-02-24T00:00:00Z","","0" +"NM-02238","168.77000427246094","168.77000427246094","P","1982-01-28T00:00:00Z","","0" +"NM-02125","133.1999969482422","133.1999969482422","","1969-01-15T00:00:00Z","","0" +"NM-12841","8.0600004196167","8.0600004196167","","1961-02-28T00:00:00Z","","0" +"NM-06914","64.86000061035156","64.86000061035156","","2003-07-08T00:00:00Z","","0" +"BC-0206","39.119998931884766","39.119998931884766","","2012-05-31T00:00:00Z","","0" +"NM-28259","150.9199981689453","150.9199981689453","","1991-07-05T00:00:00Z","","0" +"NM-02075","381.94000244140625","381.94000244140625","","1988-12-05T00:00:00Z","","0" +"NM-09558","74.83000183105469","74.83000183105469","","1994-03-01T00:00:00Z","","0" +"NM-03903","329.6099853515625","329.6099853515625","","1975-11-05T00:00:00Z","","0" +"NM-00765","32.2599983215332","32.2599983215332","","2011-03-24T00:00:00Z","","0" +"NM-02487","7.400000095367432","7.400000095367432","","1998-05-15T00:00:00Z","","0" +"NM-01885","22.059999465942383","22.059999465942383","","2006-08-23T00:00:00Z","","0" +"NM-03903","330.2900085449219","330.2900085449219","","1976-09-24T00:00:00Z","","0" +"NM-00014","38","38","","1967-01-24T00:00:00Z","","0" +"NM-28257","3.799999952316284","3.799999952316284","","1979-02-05T00:00:00Z","","0" +"NM-01890","99.13999938964844","99.13999938964844","","2004-05-17T00:00:00Z","","0" +"NM-07275","10.1899995803833","10.1899995803833","","1956-05-09T00:00:00Z","","0" +"NM-28048","414","414","S","1983-06-12T00:00:00Z","","0" +"SO-0226","","","D","2018-08-09T00:00:00Z","0001-01-01T15:26:00Z","0.8500000238418579" +"NM-11298","60.97999954223633","60.97999954223633","","1965-08-06T00:00:00Z","","0" +"NM-17872","79.86000061035156","79.86000061035156","","1968-02-08T00:00:00Z","","0" +"NM-07815","25.030000686645508","25.030000686645508","","1931-01-21T00:00:00Z","","0" +"NM-11976","45.849998474121094","45.849998474121094","","1961-02-06T00:00:00Z","","0" +"SB-0299","137.2899932861328","137.2899932861328","","1974-08-25T00:00:00Z","","0" +"NM-24217","13.729999542236328","13.729999542236328","","2011-10-05T00:00:00Z","","0" +"AB-0179","177.9600067138672","177.9600067138672","","1997-12-19T00:00:00Z","","" +"AB-0212","155.8000030517578","155.8000030517578","","1997-10-22T00:00:00Z","","" +"NM-02520","5.199999809265137","5.199999809265137","","2002-06-15T00:00:00Z","","0" +"NM-03287","91.69999694824219","91.69999694824219","","1997-02-05T00:00:00Z","","0" +"NM-27516","28.200000762939453","28.200000762939453","","1962-01-16T00:00:00Z","","0" +"SB-0299","131.25","131.25","","2009-01-15T00:00:00Z","","0" +"DE-0071","200.3699951171875","197.76998901367188","","1992-03-01T00:00:00Z","","2.5999999046325684" +"BC-0008","75.0199966430664","75.0199966430664","","2017-06-13T00:00:00Z","","0" +"OG-0087","339.25","336.54998779296875","","2023-01-24T00:00:00Z","","2.700000047683716" +"NM-03335","13.239999771118164","13.239999771118164","","2002-06-06T00:00:00Z","","0" +"NM-02168","10.989999771118164","10.989999771118164","","2010-11-18T00:00:00Z","","0" +"SB-0299","135.1999969482422","135.1999969482422","","1981-10-05T00:00:00Z","","0" +"NM-24759","93.4000015258789","93.4000015258789","","1978-08-24T00:00:00Z","","0" +"NM-01875","187.2899932861328","187.2899932861328","","2001-07-13T00:00:00Z","","0" +"NM-11383","47.66999816894531","47.66999816894531","","1946-09-10T00:00:00Z","","0" +"NM-10787","12.829999923706055","12.829999923706055","","1963-08-12T00:00:00Z","","0" +"NM-28255","7.570000171661377","7.570000171661377","","1950-01-15T00:00:00Z","","0" +"NM-06103","97.62000274658203","97.62000274658203","","1955-11-09T00:00:00Z","","0" +"NM-17424","51.459999084472656","51.459999084472656","","1944-05-12T00:00:00Z","","0" +"NM-02412","35.400001525878906","35.400001525878906","","1957-08-10T00:00:00Z","","0" +"NM-12600","58.5","58.5","","1938-11-06T00:00:00Z","","0" +"NM-14715","158.60000610351562","158.60000610351562","","1980-01-18T00:00:00Z","","0" +"NM-13165","137.2100067138672","137.2100067138672","","1956-01-25T00:00:00Z","","0" +"NM-12598","88.22000122070312","88.22000122070312","","1979-02-02T00:00:00Z","","0" +"NM-03212","41.380001068115234","41.380001068115234","","1970-02-17T00:00:00Z","","0" +"NM-07435","197.55999755859375","197.55999755859375","","1953-06-12T00:00:00Z","","0" +"NM-12976","45.2400016784668","45.2400016784668","R","1966-02-10T00:00:00Z","","0" +"NM-03394","24.100000381469727","24.100000381469727","","2007-08-28T00:00:00Z","","0" +"NM-03535","26.40999984741211","26.40999984741211","","1997-01-18T00:00:00Z","","0" +"NM-11982","83.19999694824219","83.19999694824219","","1989-01-17T00:00:00Z","","0" +"NM-11023","8.699999809265137","8.699999809265137","","1938-01-28T00:00:00Z","","0" +"NM-02021","96.68000030517578","96.68000030517578","","1973-01-24T00:00:00Z","","0" +"NM-28252","37.369998931884766","37.369998931884766","","1958-05-05T00:00:00Z","","0" +"NM-22225","71.75","71.75","","1953-07-21T00:00:00Z","","0" +"NM-21636","396.0899963378906","396.0899963378906","","1993-01-04T00:00:00Z","","0" +"BC-0110","","216.6999969482422","","2021-03-14T00:00:00Z","","2.5" +"NM-11560","77.44000244140625","77.44000244140625","","1953-07-22T00:00:00Z","","0" +"NM-02520","7","7","Z","1975-11-15T00:00:00Z","","0" +"NM-13751","-3.309999942779541","-3.309999942779541","","1908-12-01T00:00:00Z","","0" +"NM-24711","252.52000427246094","252.52000427246094","","1985-08-20T00:00:00Z","","0" +"NM-02017","11.300000190734863","11.300000190734863","","1965-08-15T00:00:00Z","","0" +"NM-06791","513.2000122070312","513.2000122070312","","2011-03-15T00:00:00Z","","0" +"NM-02535","12.9399995803833","12.9399995803833","","1996-01-24T00:00:00Z","","0" +"NM-17637","115.37999725341797","115.37999725341797","","1982-03-11T00:00:00Z","","0" +"NM-05521","74.33000183105469","74.33000183105469","","1941-01-08T00:00:00Z","","0" +"NM-08862","73.8499984741211","73.8499984741211","S","1958-01-20T00:00:00Z","","0" +"NM-02518","5.199999809265137","5.199999809265137","","1984-06-15T00:00:00Z","","0" +"NM-16733","43.380001068115234","43.380001068115234","","1987-01-06T00:00:00Z","","0" +"NM-25309","35.18000030517578","35.18000030517578","","1992-01-30T00:00:00Z","","0" +"NM-02669","61.599998474121094","61.599998474121094","","1999-05-07T00:00:00Z","","0" +"SB-0444","40.40999984741211","40.40999984741211","","1963-02-08T00:00:00Z","","0" +"NM-07049","498.4800109863281","498.4800109863281","","2006-07-12T00:00:00Z","","0" +"NM-03139","342.6700134277344","342.6700134277344","","1987-01-10T00:00:00Z","","0" +"NM-07225","200.1999969482422","200.1999969482422","","1974-06-01T00:00:00Z","","0" +"NM-20073","177.94000244140625","177.94000244140625","","1962-03-22T00:00:00Z","","0" +"NM-03291","246.60000610351562","246.60000610351562","","1981-01-09T00:00:00Z","","0" +"NM-26246","236","236","","1982-09-23T00:00:00Z","","0" +"NM-07671","28.299999237060547","28.299999237060547","","1947-03-26T00:00:00Z","","0" +"NM-00297","52.41999816894531","52.41999816894531","","1964-02-10T00:00:00Z","","0" +"NM-01829","310.29998779296875","310.29998779296875","","1974-07-16T00:00:00Z","","0" +"NM-08844","-33.34000015258789","-33.34000015258789","","1910-11-29T00:00:00Z","","0" +"EB-286","493.29998779296875","492.29998779296875","","1974-12-09T00:00:00Z","","1" +"UC-0033","97.91000366210938","97.91000366210938","","1995-04-18T00:00:00Z","","0" +"BC-0115","","255.41000366210938","","2021-03-14T00:00:00Z","","1.5499999523162842" +"NM-23658","123.33000183105469","123.33000183105469","P","1983-03-29T00:00:00Z","","0" +"NM-13162","12.829999923706055","12.829999923706055","","1957-11-20T00:00:00Z","","0" +"NM-20261","98.16000366210938","98.16000366210938","","2002-02-28T00:00:00Z","","0" +"NM-02101","9","9","","1960-02-15T00:00:00Z","","0" +"NM-03260","6.090000152587891","6.090000152587891","","1992-01-09T00:00:00Z","","0" +"NM-01885","36.709999084472656","36.709999084472656","","2015-06-16T00:00:00Z","","0" +"DE-0272","85.81999969482422","85.81999969482422","","2016-12-13T00:00:00Z","","0" +"NM-01995","63.91999816894531","63.91999816894531","","1952-01-29T00:00:00Z","","0" +"NM-05681","92.58000183105469","92.58000183105469","","1952-11-05T00:00:00Z","","0" +"NM-02560","121.66000366210938","121.66000366210938","","1984-12-01T00:00:00Z","","0" +"NM-21643","428.9100036621094","428.9100036621094","","1992-06-05T00:00:00Z","","0" +"NM-01034","304.6300048828125","304.6300048828125","","1990-03-02T00:00:00Z","","0" +"NM-01947","5","5","","1947-03-15T00:00:00Z","","0" +"NM-20097","32.689998626708984","32.689998626708984","","1943-09-14T00:00:00Z","","0" +"NM-18743","70.77999877929688","70.77999877929688","","1992-02-20T00:00:00Z","","0" +"NM-02591","11.899999618530273","11.899999618530273","","1985-08-15T00:00:00Z","","0" +"NM-26622","131.67999267578125","131.67999267578125","","2012-10-10T00:00:00Z","","0" +"NM-00355","11.1899995803833","11.1899995803833","","1974-01-22T00:00:00Z","","0" +"EB-012","101.19999694824219","101.19999694824219","","1961-09-25T00:00:00Z","","0" +"NM-03068","139.27000427246094","139.27000427246094","","1966-01-10T00:00:00Z","","0" +"NM-09123","394.489990234375","394.489990234375","","1942-02-16T00:00:00Z","","0" +"NM-04236","14.920000076293945","14.920000076293945","","1958-01-09T00:00:00Z","","0" +"NM-10630","52.06999969482422","52.06999969482422","","1986-02-20T00:00:00Z","","0" +"NM-28258","146.0500030517578","146.0500030517578","","1970-05-15T00:00:00Z","","0" +"NM-20625","21.950000762939453","21.950000762939453","","1950-02-09T00:00:00Z","","0" +"NM-17928","161.39999389648438","161.39999389648438","","1959-09-17T00:00:00Z","","0" +"NM-11282","67.4000015258789","67.4000015258789","","1958-08-27T00:00:00Z","","0" +"NM-07375","15.329999923706055","15.329999923706055","","1981-02-19T00:00:00Z","","0" +"NM-22015","25.200000762939453","25.200000762939453","R","1992-03-09T00:00:00Z","","0" +"NM-22199","13.680000305175781","13.680000305175781","","1954-11-22T00:00:00Z","","0" +"NM-10099","117.11000061035156","117.11000061035156","","1979-02-15T00:00:00Z","","0" +"NM-02831","38.400001525878906","38.400001525878906","","1991-01-25T00:00:00Z","","0" +"NM-11017","29.860000610351562","29.860000610351562","","1935-06-15T00:00:00Z","","0" +"NM-03965","43.70000076293945","43.70000076293945","","1974-06-14T00:00:00Z","","0" +"NM-00522","77.16999816894531","77.16999816894531","","1985-01-09T00:00:00Z","","0" +"NM-18121","62.880001068115234","62.880001068115234","","1982-01-08T00:00:00Z","","0" +"NM-13275","175.13999938964844","175.13999938964844","","1994-01-25T00:00:00Z","","0" +"NM-05347","13.899999618530273","13.899999618530273","","1965-08-15T00:00:00Z","","0" +"NM-02457","87.16000366210938","87.16000366210938","","1966-06-02T00:00:00Z","","0" +"NM-05516","10.199999809265137","10.199999809265137","","1977-02-15T00:00:00Z","","0" +"EB-022","168.1999969482422","171.39999389648438","","1989-02-01T00:00:00Z","","-3.200000047683716" +"NM-28371","70.75","70.75","","2017-06-20T00:00:00Z","","0" +"DE-0231","106.55999755859375","106.55999755859375","","2005-12-12T00:00:00Z","","0" +"NM-05645","90.52999877929688","90.52999877929688","","1951-01-09T00:00:00Z","","0" +"DE-0074","88.6500015258789","88.6500015258789","","2017-05-22T00:00:00Z","","0" +"NM-10965","41.54999923706055","41.54999923706055","","1942-02-03T00:00:00Z","","0" +"NM-28255","157.61000061035156","157.61000061035156","","2013-09-05T00:00:00Z","","0" +"NM-24356","84.29000091552734","84.29000091552734","","1988-03-15T00:00:00Z","","0" +"AB-0039","350.6199951171875","350.6199951171875","","2000-01-04T00:00:00Z","","" +"NM-02207","11.399999618530273","11.399999618530273","","1995-02-22T00:00:00Z","","0" +"NM-02282","401.57000732421875","401.57000732421875","","1984-05-01T00:00:00Z","","0" +"NM-19959","29.81999969482422","29.81999969482422","","1942-01-21T00:00:00Z","","0" +"NM-08071","7.900000095367432","7.900000095367432","","1970-09-15T00:00:00Z","","0" +"NM-01791","315.17999267578125","315.17999267578125","","1998-10-25T00:00:00Z","","0" +"NM-13899","8.350000381469727","8.350000381469727","","1963-02-27T00:00:00Z","","0" +"NM-08765","13.399999618530273","13.399999618530273","","1954-09-14T00:00:00Z","","0" +"NM-01566","51.25","51.25","","1968-07-02T00:00:00Z","","0" +"NM-02560","122.19999694824219","122.19999694824219","","1988-08-25T00:00:00Z","","0" +"NM-11889","1.9900000095367432","1.9900000095367432","","1957-07-05T00:00:00Z","","0" +"NM-28250","82.62999725341797","82.62999725341797","","1994-09-15T00:00:00Z","","0" +"NM-03331","10.930000305175781","10.930000305175781","","1992-02-27T00:00:00Z","","0" +"NM-03436","68.95999908447266","68.95999908447266","","1947-08-06T00:00:00Z","","0" +"NM-01926","5.300000190734863","5.300000190734863","","1973-09-15T00:00:00Z","","0" +"NM-00226","39.72999954223633","39.72999954223633","","2008-09-09T00:00:00Z","","0" +"NM-15456","95.7699966430664","95.7699966430664","","1970-02-10T00:00:00Z","","0" +"AB-0039","352.9700012207031","352.9700012207031","","2011-01-06T00:00:00Z","","" +"NM-28255","121.54000091552734","121.54000091552734","","1999-07-25T00:00:00Z","","0" +"SB-0275","208.5","208.5","","1972-12-18T00:00:00Z","","0" +"AB-0037","336.94000244140625","336.94000244140625","","1998-11-13T00:00:00Z","","" +"NM-12515","105.86000061035156","105.86000061035156","","1981-02-06T00:00:00Z","","0" +"NM-28252","33.20000076293945","33.20000076293945","","1993-01-05T00:00:00Z","","0" +"NM-00361","2.569999933242798","2.569999933242798","","2009-02-25T00:00:00Z","","0" +"NM-12060","-67.98999786376953","-67.98999786376953","","1907-09-24T00:00:00Z","","0" +"NM-01793","138.39999389648438","138.39999389648438","","1995-01-13T00:00:00Z","","0" +"NM-12749","24.5","24.5","","1939-04-20T00:00:00Z","","0" +"NM-11342","43.099998474121094","43.099998474121094","","1955-01-11T00:00:00Z","","0" +"NM-13846","-2.8499999046325684","-2.8499999046325684","","1915-07-03T00:00:00Z","","0" +"NM-02442","71.5999984741211","71.5999984741211","","2004-09-15T00:00:00Z","","0" +"NM-17227","36.08000183105469","36.08000183105469","","1937-01-13T00:00:00Z","","0" +"NM-01077","359.42999267578125","359.42999267578125","","2007-05-22T00:00:00Z","","0" +"BC-0266","164.24000549316406","164.24000549316406","","2017-09-29T00:00:00Z","","0" +"DE-0093","90.12999725341797","90.12999725341797","","1999-06-02T00:00:00Z","","0" +"NM-02005","4.699999809265137","4.699999809265137","","1980-09-15T00:00:00Z","","0" +"NM-03177","337.8900146484375","337.8900146484375","","1996-01-10T00:00:00Z","","0" +"NM-01790","284.3299865722656","284.3299865722656","","1992-01-30T00:00:00Z","","0" +"NM-00213","203.1199951171875","203.1199951171875","","1976-09-01T00:00:00Z","","0" +"NM-28257","-14.779999732971191","-14.779999732971191","","2001-03-05T00:00:00Z","","0" +"NM-12921","-35.650001525878906","-35.650001525878906","","1909-09-22T00:00:00Z","","0" +"NM-24150","645","645","","1995-07-31T00:00:00Z","","0" +"NM-03416","78.1500015258789","78.1500015258789","","2007-03-07T00:00:00Z","","0" +"NM-00603","77.55000305175781","77.55000305175781","","2006-01-04T00:00:00Z","","0" +"NM-04194","112.88999938964844","112.88999938964844","","1981-12-28T00:00:00Z","","0" +"EB-306","21.030000686645508","19.23000144958496","","2012-02-14T00:00:00Z","","1.7999999523162842" +"NM-00257","94.56999969482422","94.56999969482422","","1975-11-01T00:00:00Z","","0" +"BC-0074","121.19000244140625","121.19000244140625","","2012-12-11T00:00:00Z","","0" +"NM-16640","4.639999866485596","4.639999866485596","","1945-07-30T00:00:00Z","","0" +"NM-27415","65.87000274658203","65.87000274658203","","1966-02-09T00:00:00Z","","0" +"NM-19506","81.9000015258789","81.9000015258789","","1954-05-06T00:00:00Z","","0" +"NM-10143","33.63999938964844","33.63999938964844","","1937-03-15T00:00:00Z","","0" +"NM-02178","9.010000228881836","9.010000228881836","","1997-02-04T00:00:00Z","","0" +"NM-22015","26.420000076293945","26.420000076293945","R","1991-11-18T00:00:00Z","","0" +"NM-00820","93.4000015258789","93.4000015258789","","1984-01-05T00:00:00Z","","0" +"NM-28253","25.549999237060547","25.549999237060547","","1973-01-05T00:00:00Z","","0" +"NM-12565","81.0999984741211","81.0999984741211","P","1963-07-23T00:00:00Z","","0" +"NM-28010","498.6600036621094","498.6600036621094","S","2015-05-15T00:00:00Z","","0" +"NM-09702","-49.5099983215332","-49.5099983215332","","1926-08-17T00:00:00Z","","0" +"NM-24928","36.16999816894531","36.16999816894531","","1987-02-10T00:00:00Z","","0" +"NM-28252","51.16999816894531","51.16999816894531","","1960-08-15T00:00:00Z","","0" +"NM-03037","86.69999694824219","86.69999694824219","","1987-01-12T00:00:00Z","","0" +"NM-03262","99.44000244140625","99.44000244140625","","2003-01-10T00:00:00Z","","0" +"NM-28258","168.9499969482422","168.9499969482422","","2006-06-05T00:00:00Z","","0" +"NM-05764","29.489999771118164","29.489999771118164","","1931-10-11T00:00:00Z","","0" +"NM-08940","8.5","8.5","","1959-11-10T00:00:00Z","","0" +"NM-06937","77.5199966430664","77.5199966430664","","1965-12-02T00:00:00Z","","0" +"NM-02527","7.5","7.5","","1999-08-15T00:00:00Z","","0" +"NM-28255","165.47000122070312","165.47000122070312","","1969-08-05T00:00:00Z","","0" +"SB-0299","124.94000244140625","124.94000244140625","","1999-04-20T00:00:00Z","","0" +"NM-28251","88.61000061035156","88.61000061035156","","1982-04-15T00:00:00Z","","0" +"NM-03729","46.900001525878906","46.900001525878906","","1981-01-20T00:00:00Z","","0" +"NM-03313","303.75","303.75","R","1983-05-06T00:00:00Z","","0" +"NM-02576","53.439998626708984","53.439998626708984","P","1990-08-30T00:00:00Z","","0" +"NM-03235","45.0099983215332","45.0099983215332","","1946-02-20T00:00:00Z","","0" +"NM-04186","23.770000457763672","23.770000457763672","","1946-05-23T00:00:00Z","","0" +"NM-02523","62.4900016784668","62.4900016784668","","2004-01-30T00:00:00Z","","0" +"NM-02384","8","8","","1991-05-15T00:00:00Z","","0" +"NM-06862","44","44","","1933-10-15T00:00:00Z","","0" +"NM-25718","83.41999816894531","83.41999816894531","R","1981-02-14T00:00:00Z","","0" +"NM-27371","-50.5","-50.5","","1907-06-27T00:00:00Z","","0" +"NM-00643","108.18000030517578","108.18000030517578","Z","2010-01-13T00:00:00Z","","0" +"NM-03342","12.9399995803833","12.9399995803833","X","1997-01-22T00:00:00Z","","0" +"NM-03060","164.5800018310547","164.5800018310547","","1982-12-16T00:00:00Z","","0" +"NM-02990","25.520000457763672","25.520000457763672","","1952-09-21T00:00:00Z","","0" +"SB-0299","132.5399932861328","132.5399932861328","","2006-12-10T00:00:00Z","","0" +"NM-03698","221.42999267578125","221.42999267578125","","1980-01-24T00:00:00Z","","0" +"NM-22779","365","365","","1976-08-01T00:00:00Z","","0" +"NM-02609","-49.5099983215332","-49.5099983215332","","1913-12-01T00:00:00Z","","0" +"NM-20619","111.22000122070312","111.22000122070312","","1991-11-14T00:00:00Z","","0" +"AB-0083","502","502","S","1983-10-03T00:00:00Z","","0" +"NM-16566","21.780000686645508","21.780000686645508","","1953-11-18T00:00:00Z","","0" +"NM-02107","385.9200134277344","385.9200134277344","","1999-01-27T00:00:00Z","","0" +"NM-14396","6.199999809265137","6.199999809265137","","1981-08-26T00:00:00Z","","0" +"NM-05516","8.699999809265137","8.699999809265137","","1950-02-15T00:00:00Z","","0" +"NM-04770","74.7699966430664","74.7699966430664","","1958-01-16T00:00:00Z","","0" +"NM-03078","136.86000061035156","136.86000061035156","R","1983-12-02T00:00:00Z","","0" +"NM-16128","62.68000030517578","62.68000030517578","","1975-02-28T00:00:00Z","","0" +"NM-17206","74.97000122070312","74.97000122070312","","1966-01-07T00:00:00Z","","0" +"NM-03429","47.369998931884766","47.369998931884766","","2002-06-06T00:00:00Z","","0" +"EB-267","15.880000114440918","15.880000114440918","","2015-12-16T00:00:00Z","","0" +"NM-22851","41.04999923706055","41.04999923706055","","1988-03-08T00:00:00Z","","0" +"NM-14361","46.88999938964844","46.88999938964844","","1948-11-03T00:00:00Z","","0" +"NM-02384","8.5","8.5","","1993-11-15T00:00:00Z","","0" +"NM-05490","88.63999938964844","88.63999938964844","","1954-03-18T00:00:00Z","","0" +"NM-00253","23.440000534057617","23.440000534057617","","2009-06-11T00:00:00Z","","0" +"UC-0100","154.7100067138672","154.7100067138672","","2015-02-07T00:00:00Z","","0" +"NM-10439","60.369998931884766","60.369998931884766","","1956-01-23T00:00:00Z","","0" +"NM-28258","196.0500030517578","196.0500030517578","","2017-06-26T00:00:00Z","","0" +"NM-02908","104.12000274658203","104.12000274658203","","2000-02-16T00:00:00Z","","0" +"BC-0003","","178.10000610351562","","2020-07-24T00:00:00Z","","2.059999942779541" +"NM-28255","104.61000061035156","104.61000061035156","","2012-05-07T00:00:00Z","","0" +"NM-11263","41.91999816894531","41.91999816894531","","1936-05-18T00:00:00Z","","0" +"BC-0264","","304.20001220703125","","2021-11-10T00:00:00Z","","1.5" +"NM-20042","54.20000076293945","54.20000076293945","P","1955-09-14T00:00:00Z","","0" +"NM-02794","49.349998474121094","49.349998474121094","","1947-01-31T00:00:00Z","","0" +"NM-13246","91.3499984741211","91.3499984741211","","1956-10-01T00:00:00Z","","0" +"NM-01986","9.800000190734863","9.800000190734863","","1957-10-15T00:00:00Z","","0" +"QY-0645","28.899999618530273","28.899999618530273","","1951-01-09T00:00:00Z","","0" +"NM-16762","2.759999990463257","2.759999990463257","","1948-07-28T00:00:00Z","","0" +"NM-08524","","","D","2014-06-11T00:00:00Z","","0" +"NM-21360","245.0800018310547","245.0800018310547","","2014-10-07T00:00:00Z","","0" +"NM-06098","25.25","25.25","","1977-06-10T00:00:00Z","","0" +"NM-05762","40.31999969482422","40.31999969482422","","1947-02-01T00:00:00Z","","0" +"EB-298","166.00999450683594","166.00999450683594","","2011-02-07T00:00:00Z","","0" +"EB-362","133.7100067138672","131.510009765625","","2004-06-10T00:00:00Z","","2.200000047683716" +"NM-02831","45.95000076293945","45.95000076293945","","2003-07-03T00:00:00Z","","0" +"NM-09632","34.90999984741211","34.90999984741211","","1976-02-26T00:00:00Z","","0" +"NM-28258","94.83999633789062","94.83999633789062","","1993-01-15T00:00:00Z","","0" +"NM-28255","67.51000213623047","67.51000213623047","","2021-11-05T00:00:00Z","","0" +"NM-07971","8.34000015258789","8.34000015258789","","1954-03-28T00:00:00Z","","0" +"EB-012","410.6000061035156","410.6000061035156","","1970-08-11T00:00:00Z","","0" +"NM-00073","43.529998779296875","43.529998779296875","","1988-02-10T00:00:00Z","","0" +"NM-01986","6.300000190734863","6.300000190734863","","1985-05-15T00:00:00Z","","0" +"NM-01948","4.599999904632568","4.599999904632568","","1980-07-15T00:00:00Z","","0" +"EB-208","226.4600067138672","226.4600067138672","R","1974-07-02T00:00:00Z","","0" +"NM-13011","-5.159999847412109","-5.159999847412109","","1911-04-19T00:00:00Z","","0" +"NM-02006","9","9","","1972-11-15T00:00:00Z","","0" +"NM-01893","23.860000610351562","23.860000610351562","","2000-05-24T00:00:00Z","","0" +"NM-01866","12.199999809265137","12.199999809265137","","2005-02-16T00:00:00Z","","0" +"NM-28014","498.70001220703125","498.70001220703125","S","2015-06-01T00:00:00Z","","0" +"NM-28256","107.38999938964844","107.38999938964844","","1981-10-25T00:00:00Z","","0" +"NM-02487","12.399999618530273","12.399999618530273","","1965-07-15T00:00:00Z","","0" +"NM-06990","49.97999954223633","49.97999954223633","","1964-01-12T00:00:00Z","","0" +"NM-05169","18.43000030517578","18.43000030517578","","1948-07-24T00:00:00Z","","0" +"NM-03668","64","64","","1995-02-22T00:00:00Z","","0" +"NM-12295","60.599998474121094","60.599998474121094","","1957-01-16T00:00:00Z","","0" +"NM-23292","87","87","","2014-01-05T00:00:00Z","","0" +"SO-0131","3.2899999618530273","1.9800000190734863","","2021-03-18T00:00:00Z","0001-01-01T15:09:00Z","1.309999942779541" +"NM-01896","8.640000343322754","8.640000343322754","","1997-12-16T00:00:00Z","","0" +"DE-0108","39.7599983215332","39.7599983215332","","2008-04-28T00:00:00Z","","0" +"NM-06794","11.130000114440918","11.130000114440918","P","1968-01-22T00:00:00Z","","0" +"NM-00282","55.400001525878906","55.400001525878906","","1975-01-07T00:00:00Z","","0" +"NM-03349","41.0099983215332","41.0099983215332","Z","1993-07-07T00:00:00Z","","0" +"NM-18642","42.970001220703125","42.970001220703125","S","1974-07-09T00:00:00Z","","0" +"NM-01891","55.709999084472656","55.709999084472656","","2015-09-01T00:00:00Z","","0" +"AB-0184","358.4800109863281","358.4800109863281","","2008-07-31T00:00:00Z","","" +"NM-13999","-24.100000381469727","-24.100000381469727","","1909-09-14T00:00:00Z","","0" +"NM-03090","31.399999618530273","31.399999618530273","","1954-01-22T00:00:00Z","","0" +"DE-0089","90.23999786376953","90.23999786376953","","2009-04-30T00:00:00Z","","0" +"NM-05796","173.85000610351562","173.85000610351562","","1991-05-08T00:00:00Z","","0" +"NM-19083","387.9800109863281","387.9800109863281","","1982-02-26T00:00:00Z","","0" +"NM-13019","12.539999961853027","12.539999961853027","","1957-05-06T00:00:00Z","","0" +"NM-11282","40.189998626708984","40.189998626708984","","1947-01-24T00:00:00Z","","0" +"NM-28258","145.5500030517578","145.5500030517578","","1979-11-05T00:00:00Z","","0" +"SM-0043","92.81999969482422","91.5199966430664","","2008-09-16T00:00:00Z","","1.2999999523162842" +"NM-13966","-10.239999771118164","-10.239999771118164","","1911-12-05T00:00:00Z","","0" +"NM-10099","110.80000305175781","110.80000305175781","","1971-01-05T00:00:00Z","","0" +"NM-25873","12","12","","1972-01-19T00:00:00Z","","0" +"NM-12751","128.94000244140625","128.94000244140625","","1963-09-25T00:00:00Z","","0" +"NM-15327","79.13999938964844","79.13999938964844","","1990-01-24T00:00:00Z","","0" +"NM-08981","-77.2300033569336","-77.2300033569336","","1913-01-16T00:00:00Z","","0" +"NM-28256","232.91000366210938","232.91000366210938","","2004-07-15T00:00:00Z","","0" +"NM-02543","54.220001220703125","54.220001220703125","","2003-01-23T00:00:00Z","","0" +"NM-22487","56.880001068115234","56.880001068115234","T","1984-04-18T00:00:00Z","","0" +"NM-07225","199.0399932861328","199.0399932861328","","1971-06-01T00:00:00Z","","0" +"NM-27499","108.51000213623047","108.51000213623047","","1975-01-06T00:00:00Z","","0" +"AB-0162","485.6700134277344","485.6700134277344","","1998-10-16T00:00:00Z","","" +"NM-26425","7.760000228881836","7.760000228881836","","1987-11-20T00:00:00Z","","0" +"NM-28250","78.52999877929688","78.52999877929688","","1996-02-05T00:00:00Z","","0" +"NM-10069","8.640000343322754","8.640000343322754","","1969-04-22T00:00:00Z","","0" +"NM-08434","92.80000305175781","92.80000305175781","","1976-02-17T00:00:00Z","","0" +"NM-17716","1.8200000524520874","1.8200000524520874","","1943-08-04T00:00:00Z","","0" +"NM-05267","64","64","","1941-08-30T00:00:00Z","","0" +"NM-11388","42.27000045776367","42.27000045776367","","1954-09-15T00:00:00Z","","0" +"SB-0299","118.79000091552734","118.79000091552734","","1995-11-25T00:00:00Z","","0" +"NM-09519","3.5299999713897705","3.5299999713897705","","1950-09-12T00:00:00Z","","0" +"NM-02314","9.5","9.5","","1953-01-15T00:00:00Z","","0" +"NM-18045","34.2400016784668","34.2400016784668","","1987-01-14T00:00:00Z","","0" +"NM-28250","106.68000030517578","106.68000030517578","","1971-06-25T00:00:00Z","","0" +"NM-11772","98.33999633789062","98.33999633789062","","1955-01-26T00:00:00Z","","0" +"NM-10665","70.25","70.25","","1957-01-04T00:00:00Z","","0" +"NM-22493","255.9199981689453","255.9199981689453","","1959-12-01T00:00:00Z","","0" +"BC-0102","326.5899963378906","326.5899963378906","","2013-12-26T00:00:00Z","","0" +"EB-258","114.38999938964844","113.29000091552734","","2012-01-15T00:00:00Z","","1.100000023841858" +"NM-02352","11.100000381469727","11.100000381469727","","1955-04-15T00:00:00Z","","0" +"NM-02851","25.8700008392334","25.8700008392334","","1956-04-10T00:00:00Z","","0" +"NM-02520","9.300000190734863","9.300000190734863","","1956-05-15T00:00:00Z","","0" +"NM-28251","79.02999877929688","79.02999877929688","","2012-11-15T00:00:00Z","","0" +"NM-02006","7.300000190734863","7.300000190734863","","1990-06-15T00:00:00Z","","0" +"NM-19774","28.299999237060547","28.299999237060547","","1950-07-28T00:00:00Z","","0" +"NM-02493","40.18000030517578","40.18000030517578","","1993-08-30T00:00:00Z","","0" +"NM-02976","128.0800018310547","128.0800018310547","P","2011-04-18T00:00:00Z","","0" +"NM-13539","77.4000015258789","77.4000015258789","","1979-03-21T00:00:00Z","","0" +"NM-11101","-20.639999389648438","-20.639999389648438","","1910-06-13T00:00:00Z","","0" +"NM-17795","119.37999725341797","119.37999725341797","","2002-08-26T00:00:00Z","","0" +"NM-20068","29.510000228881836","29.510000228881836","","1943-07-24T00:00:00Z","","0" +"NM-26726","209.5","209.5","","1957-04-18T00:00:00Z","","0" +"NM-13594","30.780000686645508","30.780000686645508","","1956-03-30T00:00:00Z","","0" +"NM-18402","265.20001220703125","265.20001220703125","","1996-01-11T00:00:00Z","","0" +"NM-10331","584.530029296875","584.530029296875","","1963-09-01T00:00:00Z","","0" +"NM-03445","59.2400016784668","59.2400016784668","","2002-03-01T00:00:00Z","","0" +"NM-12905","40","40","","1960-01-12T00:00:00Z","","0" +"NM-11928","-0.7099999785423279","-0.7099999785423279","","1959-06-05T00:00:00Z","","0" +"BC-0167","330.20001220703125","330.20001220703125","","2013-12-27T00:00:00Z","","0" +"NM-13644","29.309999465942383","29.309999465942383","","1943-01-04T00:00:00Z","","0" +"NM-02979","30.899999618530273","30.899999618530273","","1975-01-06T00:00:00Z","","0" +"BC-0039","298.75","298.75","","2017-10-09T00:00:00Z","","0" +"NM-00527","72.37000274658203","72.37000274658203","","2001-01-04T00:00:00Z","","0" +"NM-20076","61.060001373291016","61.060001373291016","S","1977-03-01T00:00:00Z","","0" +"NM-05576","136.0500030517578","136.0500030517578","","1997-02-19T00:00:00Z","","0" +"NM-01986","8","8","","1971-12-15T00:00:00Z","","0" +"NM-14006","216.27000427246094","216.27000427246094","","1960-01-08T00:00:00Z","","0" +"NM-02466","99.20999908447266","99.20999908447266","","1959-08-07T00:00:00Z","","0" +"NM-10531","-6.78000020980835","-6.78000020980835","","1908-08-24T00:00:00Z","","0" +"NM-27457","8.529999732971191","8.529999732971191","","1974-07-01T00:00:00Z","","0" +"NM-13728","-6.78000020980835","-6.78000020980835","","1910-10-03T00:00:00Z","","0" +"NM-13623","30.739999771118164","30.739999771118164","","1948-09-15T00:00:00Z","","0" +"NM-05117","76.62999725341797","76.62999725341797","","1948-11-17T00:00:00Z","","0" +"EB-246","258.8900146484375","258.8900146484375","","1987-02-28T00:00:00Z","","0" +"NM-16979","72.68000030517578","72.68000030517578","","1959-03-13T00:00:00Z","","0" +"NM-08206","48.540000915527344","48.540000915527344","","1929-11-19T00:00:00Z","","0" +"NM-27909","127.80999755859375","127.80999755859375","","1995-01-25T00:00:00Z","","0" +"NM-01925","384.3999938964844","384.3999938964844","","2012-06-26T00:00:00Z","","0" +"BC-0094","28.739999771118164","28.739999771118164","","2019-04-22T00:00:00Z","","0" +"NM-07458","27.649999618530273","27.649999618530273","","1965-01-05T00:00:00Z","","0" +"NM-12600","46.43000030517578","46.43000030517578","","1937-09-24T00:00:00Z","","0" +"NM-00680","55.16999816894531","55.16999816894531","","1956-07-24T00:00:00Z","","0" +"NM-10641","19.25","19.25","","1961-01-17T00:00:00Z","","0" +"AB-0123","542.8800048828125","542.8800048828125","","2008-01-25T00:00:00Z","","" +"BC-0053","71.62999725341797","71.62999725341797","","2019-07-24T00:00:00Z","","0" +"NM-06344","152.69000244140625","152.69000244140625","","1948-01-12T00:00:00Z","","0" +"DE-0288","92.25","92.25","","2019-06-24T00:00:00Z","","0" +"NM-04313","106.88999938964844","106.88999938964844","","1998-01-13T00:00:00Z","","0" +"NM-14535","86.94999694824219","86.94999694824219","","1974-02-25T00:00:00Z","","0" +"SB-0299","130.3699951171875","130.3699951171875","","2009-01-25T00:00:00Z","","0" +"NM-02669","69.02999877929688","69.02999877929688","","2002-09-23T00:00:00Z","","0" +"QU-083","203.9499969482422","202.25","","2014-01-27T00:00:00Z","","1.7000000476837158" +"BW-0380","41","41","","1954-04-08T00:00:00Z","","0" +"NM-03654","35.130001068115234","35.130001068115234","","2010-07-23T00:00:00Z","","0" +"WL-0086","26.70833396911621","24.948333740234375","","1993-06-25T00:00:00Z","","1.7599999904632568" +"NM-21869","34.66999816894531","34.66999816894531","Z","1998-05-28T00:00:00Z","","0" +"NM-16640","0.699999988079071","0.699999988079071","","1942-01-30T00:00:00Z","","0" +"NM-03378","27.18000030517578","27.18000030517578","","1960-07-12T00:00:00Z","","0" +"NM-21576","4.789999961853027","4.789999961853027","Z","2011-10-28T00:00:00Z","","0" +"NM-11486","15.020000457763672","15.020000457763672","","1959-08-04T00:00:00Z","","0" +"NM-02799","11.550000190734863","11.550000190734863","","1950-01-27T00:00:00Z","","0" +"NM-03369","55.47999954223633","55.47999954223633","Z","2000-02-07T00:00:00Z","","0" +"NM-00781","30.899999618530273","30.899999618530273","","1957-11-14T00:00:00Z","","0" +"NM-28250","103.9000015258789","103.9000015258789","","1977-03-15T00:00:00Z","","0" +"NM-28253","40.040000915527344","40.040000915527344","","1984-09-25T00:00:00Z","","0" +"NM-10335","59.91999816894531","59.91999816894531","","1954-01-15T00:00:00Z","","0" +"NM-00972","96.05000305175781","96.05000305175781","","1974-09-30T00:00:00Z","","0" +"NM-10137","-104.94999694824219","-104.94999694824219","","1908-08-26T00:00:00Z","","0" +"BC-0270","","314.1000061035156","","2020-07-25T00:00:00Z","","-5" +"NM-00462","61.2599983215332","61.2599983215332","","1964-02-11T00:00:00Z","","0" +"NM-08681","72.16999816894531","72.16999816894531","","1955-03-25T00:00:00Z","","0" +"NM-13083","212.36000061035156","212.36000061035156","","1953-01-28T00:00:00Z","","0" +"NM-05976","61.720001220703125","61.720001220703125","P","1948-05-18T00:00:00Z","","0" +"NM-14802","105.69000244140625","105.69000244140625","","1984-08-15T00:00:00Z","","0" +"NM-08822","-35.650001525878906","-35.650001525878906","","1906-10-12T00:00:00Z","","0" +"NM-23935","69.13999938964844","69.13999938964844","","1965-09-28T00:00:00Z","","0" +"NM-17698","41","41","","2007-06-20T00:00:00Z","","0" +"NM-11005","-12.550000190734863","-12.550000190734863","","1912-02-03T00:00:00Z","","0" +"NM-05727","18.15999984741211","18.15999984741211","","1949-03-17T00:00:00Z","","0" +"DE-0112","","","D","2016-04-14T00:00:00Z","","0" +"NM-03261","7.449999809265137","7.449999809265137","","2000-12-11T00:00:00Z","","0" +"NM-02006","7.599999904632568","7.599999904632568","","1968-12-15T00:00:00Z","","0" +"NM-03397","18.280000686645508","18.280000686645508","","1961-07-06T00:00:00Z","","0" +"TV-196","247.41000366210938","252.60000610351562","","2013-12-18T00:00:00Z","","-5.190000057220459" +"SB-0299","135.25","135.25","","2007-05-15T00:00:00Z","","0" +"NM-13831","-35.650001525878906","-35.650001525878906","","1906-09-19T00:00:00Z","","0" +"AB-0123","542.0700073242188","542.0700073242188","","2008-04-02T00:00:00Z","","" +"NM-12877","6.179999828338623","6.179999828338623","","1981-08-20T00:00:00Z","","0" +"NM-19623","88.52999877929688","88.52999877929688","R","1991-09-30T00:00:00Z","","0" +"NM-21679","342.30999755859375","342.30999755859375","","2014-06-10T00:00:00Z","","0" +"EB-163","684","682.7999877929688","","1999-03-31T00:00:00Z","","1.2000000476837158" +"NM-17033","33.38999938964844","33.38999938964844","","1951-01-13T00:00:00Z","","0" +"NM-03369","56.119998931884766","56.119998931884766","","1993-10-08T00:00:00Z","","0" +"NM-23149","89.05999755859375","89.05999755859375","","1953-10-08T00:00:00Z","","0" +"NM-00353","76.25","76.25","","1982-01-06T00:00:00Z","","0" +"NM-10204","57.439998626708984","57.439998626708984","","1966-02-18T00:00:00Z","","0" +"NM-02443","76.9800033569336","76.9800033569336","","2008-06-19T00:00:00Z","","0" +"NM-05963","93.27999877929688","93.27999877929688","S","1947-05-19T00:00:00Z","","0" +"DE-0108","36.2400016784668","36.2400016784668","","2006-01-16T00:00:00Z","","0" +"BC-0038","","244.6999969482422","","2020-11-12T00:00:00Z","","1.5800000429153442" +"NM-20780","1.899999976158142","1.899999976158142","","1947-02-19T00:00:00Z","","0" +"WS-007","2.7899999618530273","2.7899999618530273","","2015-11-10T00:00:00Z","","0" +"NM-00195","18.18000030517578","18.18000030517578","","1961-01-10T00:00:00Z","","0" +"NM-01689","60.709999084472656","60.709999084472656","","2016-02-22T00:00:00Z","","0" +"NM-01849","308.8599853515625","308.8599853515625","","1984-02-22T00:00:00Z","","0" +"NM-00957","84.80000305175781","84.80000305175781","","2015-01-26T00:00:00Z","","0" +"NM-10755","77.86000061035156","77.86000061035156","","1979-01-03T00:00:00Z","","0" +"NM-07559","68.52999877929688","68.52999877929688","S","1958-01-20T00:00:00Z","","0" +"NM-05503","139.86000061035156","139.86000061035156","","1978-01-11T00:00:00Z","","0" +"NM-03228","73.3499984741211","73.3499984741211","","1981-02-26T00:00:00Z","","0" +"DE-0113","38.220001220703125","38.220001220703125","","2011-09-14T00:00:00Z","","0" +"NM-08362","96.0199966430664","96.0199966430664","","1990-07-31T00:00:00Z","","0" +"NM-20006","24.989999771118164","24.989999771118164","","1951-05-02T00:00:00Z","","0" +"NM-08396","248.30999755859375","248.30999755859375","","1971-02-11T00:00:00Z","","0" +"NM-04094","57.599998474121094","57.599998474121094","","1963-01-18T00:00:00Z","","0" +"NM-03908","147.44000244140625","147.44000244140625","","1968-01-16T00:00:00Z","","0" +"NM-01871","285.8800048828125","285.8800048828125","","2005-02-03T00:00:00Z","","0" +"DE-0119","32.75","32.75","","2007-10-22T00:00:00Z","","0" +"NM-02812","10.880000114440918","10.880000114440918","","1978-08-18T00:00:00Z","","0" +"NM-11657","50.27000045776367","50.27000045776367","","1953-01-15T00:00:00Z","","0" +"BC-0218","22.079999923706055","22.079999923706055","","2019-04-16T00:00:00Z","","0" +"NM-13106","8.489999771118164","8.489999771118164","","1968-10-09T00:00:00Z","","0" +"SB-0247","51","51","","1994-02-15T00:00:00Z","","0" +"NM-02168","8.859999656677246","8.859999656677246","","1993-03-16T00:00:00Z","","0" +"NM-03462","145.97999572753906","145.97999572753906","","1974-01-01T00:00:00Z","","0" +"NM-05094","96.81999969482422","96.81999969482422","","1980-01-08T00:00:00Z","","0" +"AB-0191","885.780029296875","885.780029296875","Z","1990-01-04T00:00:00Z","","" +"NM-00995","460","460","","1997-05-19T00:00:00Z","","0" +"NM-03461","60.459999084472656","60.459999084472656","R","1998-02-24T00:00:00Z","","0" +"NM-20927","110.16000366210938","110.16000366210938","","1948-10-26T00:00:00Z","","0" +"EB-261","6.910000324249268","5.1100006103515625","","2011-08-22T00:00:00Z","","1.7999999523162842" +"NM-28250","106.8499984741211","106.8499984741211","","1974-05-15T00:00:00Z","","0" +"NM-10803","-1.2200000286102295","-1.2200000286102295","","1963-01-10T00:00:00Z","","0" +"NM-02105","280","280","","1998-02-03T00:00:00Z","","0" +"NM-00196","59.5099983215332","59.5099983215332","","1966-01-12T00:00:00Z","","0" +"NM-06595","77.80000305175781","77.80000305175781","","1952-01-09T00:00:00Z","","0" +"SB-0299","133.2899932861328","133.2899932861328","","2013-03-10T00:00:00Z","","0" +"NM-14178","25","25","","1984-06-10T00:00:00Z","","0" +"NM-01269","74.2300033569336","74.2300033569336","","1985-08-14T00:00:00Z","","0" +"NM-02006","7.800000190734863","7.800000190734863","","1998-09-15T00:00:00Z","","0" +"NM-12943","3.9700000286102295","3.9700000286102295","","1978-08-07T00:00:00Z","","0" +"DE-0336","32.27000045776367","32.27000045776367","","2013-09-11T00:00:00Z","","0" +"NM-03903","328.8999938964844","328.8999938964844","","1976-03-13T00:00:00Z","","0" +"NM-01835","128.49000549316406","128.49000549316406","","1983-12-21T00:00:00Z","","0" +"NM-28251","80.12999725341797","80.12999725341797","","2018-10-05T00:00:00Z","","0" +"NM-11012","13.529999732971191","13.529999732971191","","1958-08-25T00:00:00Z","","0" +"NM-12668","131.6300048828125","131.6300048828125","","1973-01-09T00:00:00Z","","0" +"NM-05516","13.699999809265137","13.699999809265137","","1954-11-15T00:00:00Z","","0" +"NM-17048","16.760000228881836","16.760000228881836","","1939-07-18T00:00:00Z","","0" +"EB-488","513.25","510.25","P","2008-04-30T00:00:00Z","","3" +"NM-07275","9.699999809265137","9.699999809265137","","1944-04-12T00:00:00Z","","0" +"NM-07154","100.19999694824219","100.19999694824219","","2002-01-10T00:00:00Z","","0" +"SB-0299","124.69999694824219","124.69999694824219","","1991-09-25T00:00:00Z","","0" +"NM-06676","7.599999904632568","7.599999904632568","","1982-06-15T00:00:00Z","","0" +"NM-13165","146.60000610351562","146.60000610351562","P","1961-05-03T00:00:00Z","","0" +"NM-16650","42.81999969482422","42.81999969482422","","1950-01-11T00:00:00Z","","0" +"NM-14035","-64.29000091552734","-64.29000091552734","","1909-06-06T00:00:00Z","","0" +"NM-06353","113.91999816894531","113.91999816894531","","1945-03-30T00:00:00Z","","0" +"NM-12692","-13.239999771118164","-13.239999771118164","","1906-09-25T00:00:00Z","","0" +"NM-17892","53.31999969482422","53.31999969482422","","1961-01-10T00:00:00Z","","0" +"NM-09080","75.37999725341797","75.37999725341797","","1969-01-14T00:00:00Z","","0" +"SO-0080","","","D","1950-01-01T00:00:00Z","","0" +"NM-15172","20.079999923706055","20.079999923706055","","1988-12-22T00:00:00Z","","0" +"NM-13529","2.430000066757202","2.430000066757202","","1957-04-08T00:00:00Z","","0" +"NM-01972","107.91000366210938","107.91000366210938","","1965-01-07T00:00:00Z","","0" +"NM-28257","38.54999923706055","38.54999923706055","","2010-08-25T00:00:00Z","","0" +"NM-14065","23.440000534057617","23.440000534057617","","1989-01-11T00:00:00Z","","0" +"NM-07693","16.979999542236328","16.979999542236328","","1963-07-23T00:00:00Z","","0" +"NM-13135","5.739999771118164","5.739999771118164","","1981-08-26T00:00:00Z","","0" +"NM-02788","176.10000610351562","176.10000610351562","","2007-02-12T00:00:00Z","","0" +"NM-28021","503.2699890136719","503.2699890136719","S","2015-04-15T00:00:00Z","","0" +"SB-0299","147.3800048828125","147.3800048828125","","2020-05-10T00:00:00Z","","0" +"NM-01889","18.559999465942383","18.559999465942383","","2008-06-09T00:00:00Z","","0" +"DE-0238","104.62000274658203","104.62000274658203","","2003-11-03T00:00:00Z","","0" +"NM-03652","34.439998626708984","34.439998626708984","","2004-05-03T00:00:00Z","","0" +"NM-00425","58.41999816894531","58.41999816894531","","2001-01-12T00:00:00Z","","0" +"NM-08232","997.719970703125","997.719970703125","","1960-10-01T00:00:00Z","","0" +"NM-22187","424.5299987792969","424.5299987792969","","2014-10-08T00:00:00Z","","0" +"NM-11701","23.43000030517578","23.43000030517578","","1964-01-08T00:00:00Z","","0" +"NM-18410","220.64999389648438","220.64999389648438","","1972-01-10T00:00:00Z","","0" +"NM-00185","12.399999618530273","12.399999618530273","","1962-08-15T00:00:00Z","","0" +"NM-04152","13.739999771118164","13.739999771118164","","1956-01-17T00:00:00Z","","0" +"NM-18345","270.05999755859375","270.05999755859375","","1982-01-20T00:00:00Z","","0" +"NM-03662","19.68000030517578","19.68000030517578","","1998-03-02T00:00:00Z","","0" +"NM-07466","27.3700008392334","27.3700008392334","S","1981-02-04T00:00:00Z","","0" +"NM-02004","9.199999809265137","9.199999809265137","","1955-11-15T00:00:00Z","","0" +"SM-0117","38.810001373291016","38.810001373291016","","1968-01-16T00:00:00Z","","0" +"NM-03750","64.29000091552734","64.29000091552734","","1978-01-19T00:00:00Z","","0" +"NM-11370","79.43000030517578","79.43000030517578","","1957-11-25T00:00:00Z","","0" +"SB-0299","129.1999969482422","129.1999969482422","","2002-04-15T00:00:00Z","","0" +"NM-28257","-0.9399999976158142","-0.9399999976158142","","1994-05-15T00:00:00Z","","0" +"NM-13594","43.36000061035156","43.36000061035156","","1968-08-01T00:00:00Z","","0" +"NM-07117","32.75","32.75","","2008-01-09T00:00:00Z","","0" +"NM-01340","-2.5299999713897705","-2.5299999713897705","E","1983-04-06T00:00:00Z","","0" +"NM-17257","32.189998626708984","32.189998626708984","","1948-01-08T00:00:00Z","","0" +"NM-13164","-26.40999984741211","-26.40999984741211","","1909-06-25T00:00:00Z","","0" +"NM-17220","60.349998474121094","60.349998474121094","","1956-01-18T00:00:00Z","","0" +"NM-02314","9.699999809265137","9.699999809265137","","2002-01-15T00:00:00Z","","0" +"NM-03216","48","48","","2000-02-03T00:00:00Z","","0" +"NM-06268","11.399999618530273","11.399999618530273","","1962-11-15T00:00:00Z","","0" +"NM-03244","60.13999938964844","60.13999938964844","","1972-01-18T00:00:00Z","","0" +"NM-21923","10.1899995803833","10.1899995803833","","1988-11-28T00:00:00Z","","0" +"AB-0039","354.8699951171875","354.8699951171875","","2007-06-12T00:00:00Z","","" +"DE-0106","43.099998474121094","43.099998474121094","","2011-01-29T00:00:00Z","","0" +"NM-21724","28.280000686645508","28.280000686645508","","2013-05-24T00:00:00Z","","0" +"NM-20593","8","8","","1959-01-28T00:00:00Z","","0" +"NM-28253","20.639999389648438","20.639999389648438","","1996-05-05T00:00:00Z","","0" +"SB-0299","112.55000305175781","112.55000305175781","","1996-03-10T00:00:00Z","","0" +"NM-02443","94.94999694824219","94.94999694824219","","2002-07-10T00:00:00Z","","0" +"NM-07955","92.80999755859375","92.80999755859375","P","1954-07-01T00:00:00Z","","0" +"NM-27541","31.149999618530273","31.149999618530273","","1955-01-19T00:00:00Z","","0" +"NM-28257","50.54999923706055","50.54999923706055","","1984-05-15T00:00:00Z","","0" +"NM-02249","62.04999923706055","62.04999923706055","","1987-01-14T00:00:00Z","","0" +"NM-09530","109.44000244140625","109.44000244140625","","1947-01-11T00:00:00Z","","0" +"NM-06676","11.600000381469727","11.600000381469727","","1952-04-15T00:00:00Z","","0" +"NM-00257","94.80000305175781","94.80000305175781","Z","1994-04-18T00:00:00Z","","0" +"NM-03795","6.71999979019165","6.71999979019165","","1946-01-12T00:00:00Z","","0" +"NM-04407","111.7699966430664","111.7699966430664","","1976-01-22T00:00:00Z","","0" +"BC-0017","54.59000015258789","54.59000015258789","","2014-06-05T00:00:00Z","","0" +"NM-27362","33.56999969482422","33.56999969482422","","1968-05-23T00:00:00Z","","0" +"NM-02393","69.11000061035156","69.11000061035156","","1948-03-23T00:00:00Z","","0" +"NM-14351","593.260009765625","593.260009765625","","1981-05-01T00:00:00Z","","0" +"NM-14089","24.6299991607666","24.6299991607666","","1960-12-28T00:00:00Z","","0" +"NM-23368","112.83999633789062","112.83999633789062","","1948-12-09T00:00:00Z","","0" +"NM-10284","73.05999755859375","73.05999755859375","","1981-04-02T00:00:00Z","","0" +"NM-04850","85.69000244140625","85.69000244140625","","1965-10-19T00:00:00Z","","0" +"NM-02679","34.68000030517578","34.68000030517578","","1984-02-08T00:00:00Z","","0" +"NM-02772","0.8500000238418579","0.8500000238418579","","2000-01-05T00:00:00Z","","0" +"NM-23149","92.52999877929688","92.52999877929688","P","1955-08-10T00:00:00Z","","0" +"NM-07713","33.31999969482422","33.31999969482422","","1954-03-30T00:00:00Z","","0" +"NM-02167","35.599998474121094","35.599998474121094","","2013-08-05T00:00:00Z","","0" +"NM-02794","70.1500015258789","70.1500015258789","","2004-02-04T00:00:00Z","","0" +"NM-00686","60.70000076293945","60.70000076293945","","1983-02-07T00:00:00Z","","0" +"NM-02911","96.30000305175781","96.30000305175781","","1979-01-05T00:00:00Z","","0" +"NM-21002","28.90999984741211","28.90999984741211","","1990-03-21T00:00:00Z","","0" +"NM-01632","201.0800018310547","201.0800018310547","","2013-03-07T00:00:00Z","","0" +"NM-02758","313.75","313.75","","1982-01-19T00:00:00Z","","0" +"NM-02669","62.18000030517578","62.18000030517578","","1990-07-23T00:00:00Z","","0" +"NM-16998","22.010000228881836","22.010000228881836","","1936-07-20T00:00:00Z","","0" +"NM-17618","15.300000190734863","15.300000190734863","","1956-09-13T00:00:00Z","","0" +"NM-01295","123.37999725341797","123.37999725341797","","2005-09-09T00:00:00Z","","0" +"NM-24486","125","125","","1974-01-21T00:00:00Z","","0" +"NM-21188","56.86000061035156","56.86000061035156","","1955-12-02T00:00:00Z","","0" +"BC-0023","","61.5","","2023-03-15T00:00:00Z","","2.299999952316284" +"NM-21581","7.179999828338623","7.179999828338623","Z","2006-08-15T00:00:00Z","","0" +"AB-0089","201.6699981689453","201.6699981689453","Z","2000-02-04T00:00:00Z","","" +"NM-20532","109.33999633789062","109.33999633789062","R","1972-02-24T00:00:00Z","","0" +"NM-09004","88.48999786376953","88.48999786376953","","1956-09-29T00:00:00Z","","0" +"EB-266","12.15999984741211","12.15999984741211","","1999-09-24T00:00:00Z","","0" +"NM-15193","7.599999904632568","7.599999904632568","","1964-01-08T00:00:00Z","","0" +"NM-18334","214.13999938964844","214.13999938964844","","1965-02-16T00:00:00Z","","0" +"NM-09289","89.98999786376953","89.98999786376953","","1948-09-25T00:00:00Z","","0" +"NM-11649","37.59000015258789","37.59000015258789","","1963-08-14T00:00:00Z","","0" +"BC-0262","160.16000366210938","160.16000366210938","","2020-05-02T00:00:00Z","","0" +"NM-03943","103.72000122070312","103.72000122070312","P","1958-10-30T00:00:00Z","","0" +"SB-0299","133.64999389648438","133.64999389648438","","1998-06-15T00:00:00Z","","0" +"NM-02339","21.040000915527344","21.040000915527344","","1957-04-25T00:00:00Z","","0" +"NM-06956","262.5299987792969","262.5299987792969","","2011-09-14T00:00:00Z","","0" +"NM-05628","85.7300033569336","85.7300033569336","","1948-01-16T00:00:00Z","","0" +"NM-17715","5.949999809265137","5.949999809265137","","1932-01-06T00:00:00Z","","0" +"NM-09973","42.779998779296875","42.779998779296875","","1955-01-07T00:00:00Z","","0" +"NM-28251","72.83000183105469","72.83000183105469","","2006-06-05T00:00:00Z","","0" +"WL-0086","55.125","53.3650016784668","","1991-02-19T00:00:00Z","","1.7599999904632568" +"NM-06581","71.41000366210938","71.41000366210938","","1953-11-18T00:00:00Z","","0" +"NM-17928","159.5","159.5","","1956-11-12T00:00:00Z","","0" +"NM-07160","77.77999877929688","77.77999877929688","","1998-10-21T00:00:00Z","","0" +"NM-01269","76.6500015258789","76.6500015258789","","1948-04-05T00:00:00Z","","0" +"NM-03400","11.9399995803833","11.9399995803833","Z","1999-04-01T00:00:00Z","","0" +"NM-02648","37.5","37.5","","1984-01-24T00:00:00Z","","0" +"NM-08648","40.849998474121094","40.849998474121094","","1957-06-06T00:00:00Z","","0" +"NM-16664","25.329999923706055","25.329999923706055","","1962-01-17T00:00:00Z","","0" +"NM-01788","4.559999942779541","4.559999942779541","","2001-01-09T00:00:00Z","","0" +"NM-17627","73.9800033569336","73.9800033569336","","1977-01-19T00:00:00Z","","0" +"NM-13198","29","29","","1965-03-12T00:00:00Z","","0" +"DE-0096","93.2699966430664","93.2699966430664","","1999-08-10T00:00:00Z","","0" +"NM-01898","96.97000122070312","96.97000122070312","","2013-09-11T00:00:00Z","","0" +"NM-08106","64.2300033569336","64.2300033569336","R","1961-03-08T00:00:00Z","","0" +"NM-09827","-51.81999969482422","-51.81999969482422","","1906-07-14T00:00:00Z","","0" +"EB-219","69.05000305175781","67.55000305175781","","1979-10-03T00:00:00Z","","1.5" +"NM-07719","66.19000244140625","66.19000244140625","","1949-09-17T00:00:00Z","","0" +"NM-00214","61.18000030517578","61.18000030517578","","2006-02-22T00:00:00Z","","0" +"SA-0108","79.2300033569336","75.80000305175781","R","2010-05-06T00:00:00Z","","3.430000066757202" +"NM-01890","43.599998474121094","43.599998474121094","","1986-11-25T00:00:00Z","","0" +"NM-28258","140.3300018310547","140.3300018310547","","2006-03-24T00:00:00Z","","0" +"NM-22840","67.55000305175781","67.55000305175781","","2007-01-19T00:00:00Z","","0" +"NM-28037","27.84000015258789","27.84000015258789","","2016-05-05T00:00:00Z","","0" +"NM-13017","13.800000190734863","13.800000190734863","","1957-12-30T00:00:00Z","","0" +"DE-0096","92.9800033569336","92.9800033569336","","1999-08-03T00:00:00Z","","0" +"NM-19991","76.30999755859375","76.30999755859375","","1971-01-26T00:00:00Z","","0" +"TB-0129","19.81999969482422","19.010000228881836","","2009-09-04T00:00:00Z","","0.8100000023841858" +"NM-17618","10.09000015258789","10.09000015258789","","1945-11-23T00:00:00Z","","0" +"NM-27478","89.79000091552734","89.79000091552734","","2008-01-22T00:00:00Z","","0" +"NM-19494","33.349998474121094","33.349998474121094","","1982-03-24T00:00:00Z","","0" +"NM-01895","85.97000122070312","85.97000122070312","","2008-07-07T00:00:00Z","","0" +"NM-02356","138.17999267578125","138.17999267578125","","1964-01-09T00:00:00Z","","0" +"NM-03395","16.010000228881836","16.010000228881836","","1995-03-20T00:00:00Z","","0" +"NM-28252","36.900001525878906","36.900001525878906","","2002-04-05T00:00:00Z","","0" +"AB-0003","422.2300109863281","422.2300109863281","","1997-05-07T00:00:00Z","","" +"NM-13936","-11.109999656677246","-11.109999656677246","","1911-12-04T00:00:00Z","","0" +"NM-22694","5.510000228881836","5.510000228881836","Z","2005-12-05T00:00:00Z","","0" +"NM-00802","163.27999877929688","163.27999877929688","","2012-03-30T00:00:00Z","","0" +"NM-13213","10.100000381469727","10.100000381469727","","1961-08-25T00:00:00Z","","0" +"NM-24987","105.1500015258789","105.1500015258789","","1960-06-13T00:00:00Z","","0" +"NM-17715","6.46999979019165","6.46999979019165","","1947-01-15T00:00:00Z","","0" +"NM-02685","17.8799991607666","17.8799991607666","","2015-01-28T00:00:00Z","","0" +"NM-12844","10.319999694824219","10.319999694824219","","1959-04-30T00:00:00Z","","0" +"NM-05855","17.760000228881836","17.760000228881836","","1975-01-07T00:00:00Z","","0" +"NM-20132","77.66999816894531","77.66999816894531","","1961-02-13T00:00:00Z","","0" +"NM-00579","46.29999923706055","46.29999923706055","","1952-01-09T00:00:00Z","","0" +"NM-17908","26.709999084472656","26.709999084472656","","1954-01-25T00:00:00Z","","0" +"NM-01284","145.39999389648438","145.39999389648438","","1963-02-04T00:00:00Z","","0" +"NM-03150","379.7300109863281","379.7300109863281","","1984-01-18T00:00:00Z","","0" +"NM-01948","5.5","5.5","","1994-11-15T00:00:00Z","","0" +"DE-0124","35.599998474121094","35.599998474121094","","2007-10-22T00:00:00Z","","0" +"NM-08549","21.18000030517578","21.18000030517578","","1972-06-28T00:00:00Z","","0" +"NM-28022","486.239990234375","486.239990234375","S","2015-04-28T00:00:00Z","","0" +"NM-02096","369.9100036621094","369.9100036621094","","2016-03-29T00:00:00Z","","0" +"NM-26270","167.89999389648438","167.89999389648438","","1971-03-16T00:00:00Z","","0" +"NM-01985","10.800000190734863","10.800000190734863","","1999-02-15T00:00:00Z","","0" +"NM-11795","48.22999954223633","48.22999954223633","","1958-03-19T00:00:00Z","","0" +"NM-10815","16.809999465942383","16.809999465942383","","1944-01-22T00:00:00Z","","0" +"NM-02005","7","7","","1993-11-15T00:00:00Z","","0" +"NM-13215","7.889999866485596","7.889999866485596","","1938-11-01T00:00:00Z","","0" +"NM-21661","425","425","S","1970-01-01T00:00:00Z","","0" +"NM-21333","39.45000076293945","39.45000076293945","","1958-05-11T00:00:00Z","","0" +"NM-02168","22.600000381469727","22.600000381469727","","2003-08-20T00:00:00Z","","0" +"NM-02652","74.7699966430664","74.7699966430664","","1963-01-09T00:00:00Z","","0" +"NM-07704","29.020000457763672","29.020000457763672","R","1978-12-14T00:00:00Z","","0" +"NM-01986","8.420000076293945","8.420000076293945","","2013-01-28T00:00:00Z","","0" +"NM-01899","79.56999969482422","79.56999969482422","","1995-07-13T00:00:00Z","","0" +"NM-19995","65.5199966430664","65.5199966430664","P","1953-05-26T00:00:00Z","","0" +"NM-17106","49.25","49.25","","1954-03-22T00:00:00Z","","0" +"NM-17716","8.5600004196167","8.5600004196167","","1940-10-08T00:00:00Z","","0" +"NM-01573","31.40999984741211","31.40999984741211","","1989-02-04T00:00:00Z","","0" +"NM-28256","254.27000427246094","254.27000427246094","","1974-06-05T00:00:00Z","","0" +"NM-28259","120.33999633789062","120.33999633789062","","1970-05-15T00:00:00Z","","0" +"NM-25254","-58","-58","","1976-09-01T00:00:00Z","","0" +"BC-0020","","91.80000305175781","","2021-10-18T00:00:00Z","","1.149999976158142" +"NM-05292","39.459999084472656","39.459999084472656","","1937-02-20T00:00:00Z","","0" +"SO-0260","17.479999542236328","16.270000457763672","","2021-08-21T00:00:00Z","0001-01-01T09:14:00Z","1.2100000381469727" +"UC-0134","8.6899995803833","8.6899995803833","","1986-09-09T00:00:00Z","","0" +"TC-213","246.02000427246094","246.02000427246094","","2008-05-14T00:00:00Z","","0" +"NM-12742","26.6299991607666","26.6299991607666","","1955-01-13T00:00:00Z","","0" +"NM-03615","183.7100067138672","183.7100067138672","","1970-04-08T00:00:00Z","","0" +"NM-11869","21.170000076293945","21.170000076293945","","1944-03-25T00:00:00Z","","0" +"NM-04632","8.300000190734863","8.300000190734863","","1948-04-15T00:00:00Z","","0" +"NM-00409","103.66000366210938","103.66000366210938","","1996-02-08T00:00:00Z","","0" +"BC-0232","60.869998931884766","60.869998931884766","","2019-04-24T00:00:00Z","","0" +"NM-00176","40.18000030517578","40.18000030517578","","1956-01-11T00:00:00Z","","0" +"AB-0003","424.6499938964844","424.6499938964844","","2003-11-19T00:00:00Z","","" +"NM-11928","-0.800000011920929","-0.800000011920929","","1944-11-20T00:00:00Z","","0" +"NM-01011","299.9700012207031","299.9700012207031","","1990-01-04T00:00:00Z","","0" +"SM-0142","587.2999877929688","585.719970703125","","2009-04-14T00:00:00Z","","1.5800000429153442" +"NM-10099","168.9499969482422","168.9499969482422","","1979-10-05T00:00:00Z","","0" +"NM-22464","236.4600067138672","236.4600067138672","","2014-01-22T00:00:00Z","","0" +"NM-13414","37.220001220703125","37.220001220703125","","1952-01-29T00:00:00Z","","0" +"NM-28254","32.79999923706055","32.79999923706055","","2014-12-05T00:00:00Z","","0" +"EB-279","246.61000061035156","246.61000061035156","T","1994-07-12T00:00:00Z","","0" +"NM-00094","0.46000000834465027","0.46000000834465027","","1959-11-05T00:00:00Z","","0" +"NM-13966","-13.710000038146973","-13.710000038146973","","1906-09-07T00:00:00Z","","0" +"NM-20999","19.200000762939453","19.200000762939453","P","1953-02-24T00:00:00Z","","0" +"EB-245","216.61000061035156","216.61000061035156","","2005-09-27T00:00:00Z","","0" +"NM-14976","96.22000122070312","96.22000122070312","","1995-01-11T00:00:00Z","","0" +"TV-219","269.4599914550781","268.29998779296875","","2002-05-10T00:00:00Z","","1.159999966621399" +"NM-01770","49.650001525878906","49.650001525878906","","1962-04-05T00:00:00Z","","0" +"NM-01899","72.02999877929688","72.02999877929688","","1999-07-08T00:00:00Z","","0" +"NM-23744","127.38999938964844","127.38999938964844","R","1960-04-26T00:00:00Z","","0" +"NM-07773","46.220001220703125","46.220001220703125","","1975-01-14T00:00:00Z","","0" +"DE-0092","89.83999633789062","89.83999633789062","","2010-11-15T00:00:00Z","","0" +"NM-01927","114.58000183105469","114.58000183105469","","1963-01-05T00:00:00Z","","0" +"NM-03609","154.02000427246094","154.02000427246094","","1971-03-18T00:00:00Z","","0" +"LC-025","11.899999618530273","12.25","","2018-10-18T00:00:00Z","0001-01-01T09:53:00Z","-0.3499999940395355" +"NM-14361","41.52000045776367","41.52000045776367","","1947-03-12T00:00:00Z","","0" +"NM-17499","22.860000610351562","22.860000610351562","","1940-01-17T00:00:00Z","","0" +"NM-03392","148.99000549316406","148.99000549316406","","1989-02-23T00:00:00Z","","0" +"NM-27578","63.029998779296875","63.029998779296875","","1961-01-12T00:00:00Z","","0" +"NM-01985","12.600000381469727","12.600000381469727","","1964-05-15T00:00:00Z","","0" +"NM-00101","321.5899963378906","321.5899963378906","","2014-01-15T00:00:00Z","","0" +"NM-03903","330.67999267578125","330.67999267578125","","1975-08-31T00:00:00Z","","0" +"NM-28254","12.5","12.5","","2000-12-15T00:00:00Z","","0" +"NM-05554","88.58999633789062","88.58999633789062","T","1948-07-20T00:00:00Z","","0" +"AB-0191","886.8900146484375","886.8900146484375","","1993-12-29T00:00:00Z","","" +"NM-08978","42.20000076293945","42.20000076293945","","1983-04-13T00:00:00Z","","0" +"AB-0144","601.3499755859375","601.3499755859375","P","1986-10-15T00:00:00Z","","" +"QY-0092","3.0999999046325684","3.0999999046325684","","1955-04-11T00:00:00Z","","0" +"DE-0085","90.18000030517578","90.18000030517578","","1995-12-12T00:00:00Z","","0" +"NM-06899","138.33999633789062","138.33999633789062","","1972-01-20T00:00:00Z","","0" +"NM-01948","6.199999809265137","6.199999809265137","","1968-03-15T00:00:00Z","","0" +"EB-012","417","417","","1972-09-21T00:00:00Z","","0" +"NM-28253","38.540000915527344","38.540000915527344","","1986-07-25T00:00:00Z","","0" +"NM-04632","10.5","10.5","","1951-12-15T00:00:00Z","","0" +"NM-24218","24.010000228881836","24.010000228881836","","2010-11-12T00:00:00Z","","0" +"NM-06734","58.91999816894531","58.91999816894531","","1961-10-09T00:00:00Z","","0" +"NM-00452","70.19000244140625","70.19000244140625","","1982-01-05T00:00:00Z","","0" +"NM-02352","5.800000190734863","5.800000190734863","","1996-10-15T00:00:00Z","","0" +"NM-02487","8.199999809265137","8.199999809265137","","1974-02-15T00:00:00Z","","0" +"SV-0133","226.3000030517578","224.6300048828125","","2017-04-05T00:00:00Z","","1.6699999570846558" +"NM-28250","84.33000183105469","84.33000183105469","","2004-01-05T00:00:00Z","","0" +"SO-0255","15.989999771118164","14.34999942779541","","2020-10-03T00:00:00Z","","1.6399999856948853" +"EB-012","152.25","152.25","","1973-06-21T00:00:00Z","","0" +"AB-0002","421.7799987792969","421.7799987792969","","1997-05-30T00:00:00Z","","" +"NM-13822","-3.309999942779541","-3.309999942779541","","1910-03-22T00:00:00Z","","0" +"NM-19374","36.93000030517578","36.93000030517578","","1966-09-21T00:00:00Z","","0" +"NM-03387","44.68000030517578","44.68000030517578","","2014-02-26T00:00:00Z","","0" +"NM-02197","11.569999694824219","11.569999694824219","","1992-10-07T00:00:00Z","","0" +"SB-0299","132.0399932861328","132.0399932861328","","2012-03-10T00:00:00Z","","0" +"NM-23413","156.60000610351562","156.60000610351562","","1955-10-10T00:00:00Z","","0" +"NM-12687","43.369998931884766","43.369998931884766","","1942-02-03T00:00:00Z","","0" +"NM-28257","75.44999694824219","75.44999694824219","","1959-11-05T00:00:00Z","","0" +"NM-28009","498.6300048828125","498.6300048828125","S","2015-06-01T00:00:00Z","","0" +"EB-262","22.030000686645508","22.030000686645508","","2012-10-24T00:00:00Z","","0" +"NM-19697","90.44999694824219","90.44999694824219","","1968-01-25T00:00:00Z","","0" +"NM-10872","-81.8499984741211","-81.8499984741211","","1907-03-23T00:00:00Z","","0" +"NM-03428","6.96999979019165","6.96999979019165","","2001-12-20T00:00:00Z","","0" +"NM-28020","468.5299987792969","468.5299987792969","S","2015-04-18T00:00:00Z","","0" +"NM-11383","35.099998474121094","35.099998474121094","","1938-05-17T00:00:00Z","","0" +"NM-08941","-54.130001068115234","-54.130001068115234","","1908-02-21T00:00:00Z","","0" +"NM-07101","30.639999389648438","30.639999389648438","","2007-07-10T00:00:00Z","","0" +"EB-170","79.95999908447266","77.26000213623047","","1977-11-01T00:00:00Z","","2.700000047683716" +"AB-0004","416.32000732421875","416.32000732421875","","1998-03-19T00:00:00Z","","" +"DE-0110","36.150001525878906","36.150001525878906","","2006-07-17T00:00:00Z","","0" +"NM-13803","-5.909999847412109","-5.909999847412109","","1910-09-19T00:00:00Z","","0" +"NM-28250","88.83000183105469","88.83000183105469","","2005-09-05T00:00:00Z","","0" +"NM-21306","13.279999732971191","13.279999732971191","","1956-11-06T00:00:00Z","","0" +"SB-0299","135.89999389648438","135.89999389648438","","1975-06-25T00:00:00Z","","0" +"NM-21559","7.019999980926514","7.019999980926514","Z","2005-09-14T00:00:00Z","","0" +"SO-0168","7.320000171661377","6.960000038146973","","2021-01-06T00:00:00Z","0001-01-01T10:43:00Z","0.36000001430511475" +"NM-03462","160.80999755859375","160.80999755859375","","1971-12-01T00:00:00Z","","0" +"NM-02164","9.880000114440918","9.880000114440918","","1992-01-22T00:00:00Z","","0" +"NM-28255","74.01000213623047","74.01000213623047","","2016-03-15T00:00:00Z","","0" +"NM-07944","-66.68000030517578","-66.68000030517578","","1908-04-01T00:00:00Z","","0" +"NM-02844","6.159999847412109","6.159999847412109","","1989-01-05T00:00:00Z","","0" +"NM-00408","165.9499969482422","165.9499969482422","","1994-01-10T00:00:00Z","","0" +"NM-14042","-3.309999942779541","-3.309999942779541","","1907-03-08T00:00:00Z","","0" +"NM-28258","140.85000610351562","140.85000610351562","","1985-10-15T00:00:00Z","","0" +"SB-0299","146.66000366210938","146.66000366210938","","1977-09-01T00:00:00Z","","0" +"NM-28252","47.400001525878906","47.400001525878906","","1988-05-05T00:00:00Z","","0" +"NM-12148","46.560001373291016","46.560001373291016","P","1966-02-08T00:00:00Z","","0" +"NM-11920","2.0299999713897705","2.0299999713897705","","1959-11-02T00:00:00Z","","0" +"DE-0260","83.6500015258789","83.6500015258789","","2017-12-13T00:00:00Z","","0" +"NM-01955","3.0999999046325684","3.0999999046325684","","1991-07-15T00:00:00Z","","0" +"NM-03283","54.099998474121094","54.099998474121094","","1994-01-19T00:00:00Z","","0" +"NM-08220","31.239999771118164","31.239999771118164","","1961-03-03T00:00:00Z","","0" +"NM-01404","36.18000030517578","36.18000030517578","","2015-04-24T00:00:00Z","","0" +"NM-01868","14.970000267028809","14.970000267028809","","2012-06-28T00:00:00Z","","0" +"NM-01251","83.08999633789062","83.08999633789062","","1965-08-05T00:00:00Z","","0" +"NM-13944","-7.929999828338623","-7.929999828338623","","1908-06-26T00:00:00Z","","0" +"BW-0410","86.4000015258789","86.4000015258789","","1949-01-09T00:00:00Z","","0" +"NM-11409","50.400001525878906","50.400001525878906","","1976-03-23T00:00:00Z","","0" +"NM-00202","55.29999923706055","55.29999923706055","","1984-08-24T00:00:00Z","","0" +"NM-00621","55.93000030517578","55.93000030517578","","1956-01-09T00:00:00Z","","0" +"NM-09514","-44.88999938964844","-44.88999938964844","","1907-01-25T00:00:00Z","","0" +"SM-0056","318.32000732421875","317.57000732421875","","2008-12-18T00:00:00Z","","0.75" +"WL-0089","39.04166793823242","36.491668701171875","","1996-02-29T00:00:00Z","","2.549999952316284" +"NM-10460","65.4000015258789","65.4000015258789","","1996-01-11T00:00:00Z","","0" +"NM-17396","44.20000076293945","44.20000076293945","","1933-09-23T00:00:00Z","","0" +"NM-16800","30.969999313354492","30.969999313354492","","1992-03-10T00:00:00Z","","0" +"NM-10439","31.790000915527344","31.790000915527344","","1939-01-16T00:00:00Z","","0" +"NM-21233","3.140000104904175","3.140000104904175","Z","2009-06-02T00:00:00Z","","0" +"NM-00367","114.58000183105469","114.58000183105469","","1970-03-01T00:00:00Z","","0" +"NM-13771","-6.199999809265137","-6.199999809265137","","1911-06-07T00:00:00Z","","0" +"NM-12335","22.959999084472656","22.959999084472656","","1942-01-28T00:00:00Z","","0" +"NM-17099","27.829999923706055","27.829999923706055","","1938-02-09T00:00:00Z","","0" +"NM-12659","27.010000228881836","27.010000228881836","","1945-01-21T00:00:00Z","","0" +"BW-0350","114.87000274658203","114.87000274658203","","1969-01-09T00:00:00Z","","0" +"NM-28256","101.58999633789062","101.58999633789062","","1981-03-05T00:00:00Z","","0" +"NM-27951","38.33000183105469","38.33000183105469","","1960-12-14T00:00:00Z","","0" +"NM-17716","7.230000019073486","7.230000019073486","","1940-05-01T00:00:00Z","","0" +"NM-12806","70.25","70.25","","1955-01-13T00:00:00Z","","0" +"NM-12477","14.699999809265137","14.699999809265137","","1957-09-09T00:00:00Z","","0" +"DE-0067","21.690000534057617","20.09000015258789","","2004-04-05T00:00:00Z","","1.600000023841858" +"NM-27475","14.899999618530273","14.899999618530273","","1961-01-10T00:00:00Z","","0" +"NM-01986","5.900000095367432","5.900000095367432","","1982-09-15T00:00:00Z","","0" +"SO-0175","7.420000076293945","7.019999980926514","","2017-05-02T00:00:00Z","0001-01-01T14:41:00Z","0.4000000059604645" +"NM-28253","51.040000915527344","51.040000915527344","","1983-08-15T00:00:00Z","","0" +"NM-00288","69.94999694824219","69.94999694824219","","1971-01-19T00:00:00Z","","0" +"NM-01926","4.199999809265137","4.199999809265137","","1947-06-15T00:00:00Z","","0" +"NM-15310","104.26000213623047","104.26000213623047","","1970-02-18T00:00:00Z","","0" +"NM-11909","44.84000015258789","44.84000015258789","","1936-09-23T00:00:00Z","","0" +"NM-03349","38.20000076293945","38.20000076293945","","1992-07-13T00:00:00Z","","0" +"NM-05645","78.47000122070312","78.47000122070312","","1940-01-05T00:00:00Z","","0" +"NM-08476","16.6200008392334","16.6200008392334","","2004-05-12T00:00:00Z","","0" +"NM-09080","18.59000015258789","18.59000015258789","","1944-01-07T00:00:00Z","","0" +"NM-02487","10.5","10.5","","1977-03-15T00:00:00Z","","0" +"NM-04393","98.43000030517578","98.43000030517578","","1968-02-14T00:00:00Z","","0" +"NM-03632","139.1999969482422","139.1999969482422","","2006-03-01T00:00:00Z","","0" +"NM-16979","45.720001220703125","45.720001220703125","","1946-01-25T00:00:00Z","","0" +"NM-14308","35","35","","1962-02-23T00:00:00Z","","0" +"NM-02540","74.91999816894531","74.91999816894531","","1968-01-02T00:00:00Z","","0" +"WL-0089","85.45833587646484","82.90833282470703","","2005-03-28T00:00:00Z","","2.549999952316284" +"NM-14291","-21.139999389648438","-21.139999389648438","","1911-12-15T00:00:00Z","","0" +"NM-26518","49.599998474121094","49.599998474121094","","2003-10-23T00:00:00Z","","0" +"NM-03097","294.1499938964844","294.1499938964844","","1990-01-04T00:00:00Z","","0" +"NM-07499","87.05999755859375","87.05999755859375","","1999-01-20T00:00:00Z","","0" +"NM-13740","-5.619999885559082","-5.619999885559082","","1905-06-14T00:00:00Z","","0" +"NM-19965","27.760000228881836","27.760000228881836","","1944-09-21T00:00:00Z","","0" +"EM-0005","5.170000076293945","4.670000076293945","","2015-02-14T00:00:00Z","","0.5" +"NM-09682","436.6700134277344","436.6700134277344","","1977-07-22T00:00:00Z","","0" +"TV-100","516.030029296875","515.4600219726562","","2011-06-13T00:00:00Z","","0.5699999928474426" +"EB-261","7.269999980926514","5.470000267028809","","2002-02-12T00:00:00Z","","1.7999999523162842" +"NM-02085","9.569999694824219","9.569999694824219","","1963-07-26T00:00:00Z","","0" +"NM-09085","-70.30000305175781","-70.30000305175781","","1918-01-25T00:00:00Z","","0" +"NM-02762","176.9499969482422","176.9499969482422","","1994-01-26T00:00:00Z","","0" +"SB-0091","267","267","","1973-02-27T00:00:00Z","","0" +"NM-17147","80.94000244140625","80.94000244140625","","1972-01-20T00:00:00Z","","0" +"NM-28255","95.79000091552734","95.79000091552734","","2001-08-24T00:00:00Z","","0" +"WL-0086","60.125","58.3650016784668","","1998-08-10T00:00:00Z","","1.7599999904632568" +"NM-27721","43.06999969482422","43.06999969482422","","1966-04-19T00:00:00Z","","0" +"NM-21531","8.600000381469727","8.600000381469727","","1960-01-05T00:00:00Z","","0" +"NM-05689","76.11000061035156","76.11000061035156","","1935-12-08T00:00:00Z","","0" +"NM-13104","11.520000457763672","11.520000457763672","","1991-02-22T00:00:00Z","","0" +"NM-12069","78.98999786376953","78.98999786376953","","1955-01-17T00:00:00Z","","0" +"NM-09110","38.68000030517578","38.68000030517578","","1955-04-12T00:00:00Z","","0" +"NM-10099","128.89999389648438","128.89999389648438","","1974-01-04T00:00:00Z","","0" +"NM-03186","79.75","79.75","","1950-05-19T00:00:00Z","","0" +"NM-02772","65","65","","1951-09-01T00:00:00Z","","0" +"AB-0070","149.69000244140625","149.69000244140625","","1999-06-16T00:00:00Z","","" +"EB-245","184.27000427246094","184.27000427246094","","1987-02-05T00:00:00Z","","0" +"NM-02207","10.800000190734863","10.800000190734863","","1975-12-15T00:00:00Z","","0" +"NM-03943","42.810001373291016","42.810001373291016","","1955-02-14T00:00:00Z","","0" +"NM-04502","88.77999877929688","88.77999877929688","","1965-01-18T00:00:00Z","","0" +"NM-00253","19.329999923706055","19.329999923706055","","1973-03-01T00:00:00Z","","0" +"NM-02466","98.73999786376953","98.73999786376953","","1977-01-06T00:00:00Z","","0" +"NM-17716","7.28000020980835","7.28000020980835","","1940-01-02T00:00:00Z","","0" +"NM-17093","38.27000045776367","38.27000045776367","","1954-01-20T00:00:00Z","","0" +"NM-17716","8.34000015258789","8.34000015258789","","1940-11-21T00:00:00Z","","0" +"NM-02072","72.43000030517578","72.43000030517578","","1960-01-19T00:00:00Z","","0" +"NM-15930","55.04999923706055","55.04999923706055","","1970-02-17T00:00:00Z","","0" +"SB-0089","176.91000366210938","176.91000366210938","","1973-02-26T00:00:00Z","","0" +"NM-11919","1.6100000143051147","1.6100000143051147","","1948-05-28T00:00:00Z","","0" +"SB-0299","121.4800033569336","121.4800033569336","","1988-11-02T00:00:00Z","","0" +"NM-20061","45.650001525878906","45.650001525878906","","1952-03-28T00:00:00Z","","0" +"NM-00974","358.260009765625","358.260009765625","","1994-08-22T00:00:00Z","","0" +"NM-27327","11.739999771118164","11.739999771118164","","1981-01-20T00:00:00Z","","0" +"NM-28259","135.63999938964844","135.63999938964844","","1976-05-15T00:00:00Z","","0" +"NM-13748","-2.7300000190734863","-2.7300000190734863","","1908-12-29T00:00:00Z","","0" +"NM-02831","34.20000076293945","34.20000076293945","","1996-03-25T00:00:00Z","","0" +"NM-28255","42.70000076293945","42.70000076293945","","1949-03-15T00:00:00Z","","0" +"NM-02678","64.81999969482422","64.81999969482422","","1960-01-11T00:00:00Z","","0" +"NM-23241","242.6199951171875","242.6199951171875","Z","1996-03-01T00:00:00Z","","0" +"NM-17716","3.859999895095825","3.859999895095825","","1946-09-30T00:00:00Z","","0" +"NM-01986","5.300000190734863","5.300000190734863","","1992-05-15T00:00:00Z","","0" +"NM-27588","96.51000213623047","96.51000213623047","","1997-02-19T00:00:00Z","","0" +"NM-07082","70.87000274658203","70.87000274658203","","2006-03-22T00:00:00Z","","0" +"BC-0020","","93.5","","2023-03-15T00:00:00Z","","1.149999976158142" +"NM-05373","9.739999771118164","9.739999771118164","","1998-01-18T00:00:00Z","","0" +"NM-03007","96.8499984741211","96.8499984741211","","2003-07-08T00:00:00Z","","0" +"NM-26763","21.559999465942383","21.559999465942383","","1986-01-29T00:00:00Z","","0" +"NM-00054","151.39999389648438","151.39999389648438","","1990-11-15T00:00:00Z","","0" +"SB-0299","142.19000244140625","142.19000244140625","","2004-09-15T00:00:00Z","","0" +"NM-06996","57.09000015258789","57.09000015258789","","2003-01-09T00:00:00Z","","0" +"QY-0931","115.80000305175781","115.80000305175781","","1953-10-26T00:00:00Z","","0" +"NM-02018","73.97000122070312","73.97000122070312","","1958-01-16T00:00:00Z","","0" +"NM-10566","66.2699966430664","66.2699966430664","","1962-01-03T00:00:00Z","","0" +"NM-03339","10.069999694824219","10.069999694824219","","1991-04-29T00:00:00Z","","0" +"SB-0299","110.45999908447266","110.45999908447266","","1995-02-20T00:00:00Z","","0" +"NM-02772","140.86000061035156","140.86000061035156","","1965-08-01T00:00:00Z","","0" +"NM-28253","15.539999961853027","15.539999961853027","","2014-12-24T00:00:00Z","","0" +"NM-11346","51.81999969482422","51.81999969482422","","1947-01-24T00:00:00Z","","0" +"NM-11066","113.55000305175781","113.55000305175781","","1956-02-08T00:00:00Z","","0" +"NM-13971","-11.399999618530273","-11.399999618530273","","1911-12-04T00:00:00Z","","0" +"NM-00609","87.54000091552734","87.54000091552734","","1981-03-03T00:00:00Z","","0" +"NM-28257","22.100000381469727","22.100000381469727","","2003-03-14T00:00:00Z","","0" +"NM-00306","70.19000244140625","70.19000244140625","","1990-05-15T00:00:00Z","","0" +"NM-11928","0.5899999737739563","0.5899999737739563","","1957-03-05T00:00:00Z","","0" +"NM-00647","104.08000183105469","104.08000183105469","","2004-01-06T00:00:00Z","","0" +"NM-17475","41.97999954223633","41.97999954223633","","1952-01-23T00:00:00Z","","0" +"NM-05496","69.94999694824219","69.94999694824219","","1935-06-03T00:00:00Z","","0" +"DE-0068","204.25999450683594","200.27999877929688","","1996-07-16T00:00:00Z","","3.9800000190734863" +"NM-05972","28.040000915527344","28.040000915527344","","1946-01-08T00:00:00Z","","0" +"NM-22966","794.8599853515625","794.8599853515625","","1993-12-29T00:00:00Z","","0" +"NM-13106","6.480000019073486","6.480000019073486","","1977-05-20T00:00:00Z","","0" +"NM-20292","110.6500015258789","110.6500015258789","R","1957-01-08T00:00:00Z","","0" +"NM-02017","6.199999809265137","6.199999809265137","","1948-07-15T00:00:00Z","","0" +"NM-28259","91.1500015258789","91.1500015258789","","1959-11-15T00:00:00Z","","0" +"NM-13234","4.889999866485596","4.889999866485596","","1967-11-30T00:00:00Z","","0" +"NM-13978","-19.479999542236328","-19.479999542236328","","1916-01-21T00:00:00Z","","0" +"NM-20577","70.26000213623047","70.26000213623047","","1972-01-06T00:00:00Z","","0" +"MG-043","119.95999908447266","117.95999908447266","","2017-05-09T00:00:00Z","0001-01-01T14:30:00Z","2" +"NM-02209","101.52999877929688","101.52999877929688","","1956-12-05T00:00:00Z","","0" +"NM-13838","-6.489999771118164","-6.489999771118164","","1907-09-13T00:00:00Z","","0" +"SO-0251","11.9399995803833","10.369999885559082","","2021-01-13T00:00:00Z","","1.5700000524520874" +"NM-07027","142.72999572753906","142.72999572753906","","1987-10-14T00:00:00Z","","0" +"NM-22497","57.22999954223633","57.22999954223633","","1953-07-23T00:00:00Z","","0" +"NM-01971","6.900000095367432","6.900000095367432","","1949-03-15T00:00:00Z","","0" +"NM-11400","38.599998474121094","38.599998474121094","","1958-03-06T00:00:00Z","","0" +"NM-02305","177.8000030517578","177.8000030517578","","1980-01-10T00:00:00Z","","0" +"NM-01751","64.88999938964844","64.88999938964844","","1978-01-26T00:00:00Z","","0" +"NM-01759","51.119998931884766","51.119998931884766","","1974-11-01T00:00:00Z","","0" +"BC-0346","171.3000030517578","171.3000030517578","","2020-04-26T00:00:00Z","","0" +"NM-03349","36.04999923706055","36.04999923706055","","2005-11-08T00:00:00Z","","0" +"NM-05038","111.2300033569336","111.2300033569336","P","1953-07-18T00:00:00Z","","0" +"NM-17704","32.04999923706055","32.04999923706055","","1951-01-10T00:00:00Z","","0" +"NM-12175","54.75","54.75","","1957-01-22T00:00:00Z","","0" +"NM-00094","2.430000066757202","2.430000066757202","","1961-07-03T00:00:00Z","","0" +"NM-22421","11.649999618530273","11.649999618530273","","1952-04-24T00:00:00Z","","0" +"NM-08832","16.3700008392334","16.3700008392334","","1963-01-09T00:00:00Z","","0" +"NM-22981","11.819999694824219","11.819999694824219","Z","2009-05-27T00:00:00Z","","0" +"DE-0060","200.13999938964844","197.42999267578125","","2012-12-01T00:00:00Z","","2.7100000381469727" +"NM-03335","9.619999885559082","9.619999885559082","","1988-03-28T00:00:00Z","","0" +"NM-01884","12.529999732971191","12.529999732971191","","2009-02-19T00:00:00Z","","0" +"SB-0448","78.94999694824219","78.94999694824219","","1987-02-09T00:00:00Z","","0" +"NM-17928","161.35000610351562","161.35000610351562","","1961-01-19T00:00:00Z","","0" +"NM-25882","6","6","","1994-09-08T00:00:00Z","","0" +"NM-02412","16.549999237060547","16.549999237060547","","1941-03-11T00:00:00Z","","0" +"NM-10593","13.260000228881836","13.260000228881836","","1949-01-14T00:00:00Z","","0" +"NM-02772","12.5600004196167","12.5600004196167","","1943-03-01T00:00:00Z","","0" +"NM-03353","49.7400016784668","49.7400016784668","","1994-12-28T00:00:00Z","","0" +"AB-0092","497.30999755859375","497.30999755859375","","2003-03-13T00:00:00Z","","" +"NM-12442","-47.20000076293945","-47.20000076293945","","1913-01-17T00:00:00Z","","0" +"NM-01872","9.800000190734863","9.800000190734863","","1969-02-15T00:00:00Z","","0" +"ED-0073","30.5","30.5","","1950-01-20T00:00:00Z","","0" +"NM-03355","32.939998626708984","32.939998626708984","","1990-08-30T00:00:00Z","","0" +"SB-0299","144.47999572753906","144.47999572753906","","1978-06-20T00:00:00Z","","0" +"NM-03331","10.899999618530273","10.899999618530273","","1994-06-14T00:00:00Z","","0" +"NM-28017","486.1600036621094","486.1600036621094","S","2015-05-07T00:00:00Z","","0" +"NM-00713","11","11","","2003-03-03T00:00:00Z","","0" +"NM-01926","5.599999904632568","5.599999904632568","","1948-10-15T00:00:00Z","","0" +"NM-01986","7.800000190734863","7.800000190734863","","1997-01-15T00:00:00Z","","0" +"NM-28011","489.92999267578125","489.92999267578125","S","2015-05-25T00:00:00Z","","0" +"NM-01892","12.699999809265137","12.699999809265137","","2003-10-06T00:00:00Z","","0" +"NM-13174","318.75","318.75","","1947-07-14T00:00:00Z","","0" +"NM-11670","19.239999771118164","19.239999771118164","","1955-03-09T00:00:00Z","","0" +"NM-02175","99.75","99.75","","1952-05-16T00:00:00Z","","0" +"NM-21616","484.3699951171875","484.3699951171875","","1992-10-14T00:00:00Z","","0" +"NM-01035","42.91999816894531","42.91999816894531","","1953-11-19T00:00:00Z","","0" +"NM-09909","50.93000030517578","50.93000030517578","R","1966-02-21T00:00:00Z","","0" +"NM-02813","170.67999267578125","170.67999267578125","","1957-03-07T00:00:00Z","","0" +"NM-28257","-10.850000381469727","-10.850000381469727","","2012-01-13T00:00:00Z","","0" +"NM-02935","102.5","102.5","","1975-01-06T00:00:00Z","","0" +"NM-01204","347.5400085449219","347.5400085449219","","1998-05-18T00:00:00Z","","0" +"NM-03939","70.08000183105469","70.08000183105469","","1958-01-15T00:00:00Z","","0" +"NM-02347","138.82000732421875","138.82000732421875","","1984-02-07T00:00:00Z","","0" +"NM-02250","30.770000457763672","30.770000457763672","","1934-02-10T00:00:00Z","","0" +"NM-02831","34.599998474121094","34.599998474121094","","1995-03-24T00:00:00Z","","0" +"EB-270","222.4600067138672","222.4600067138672","Z","1998-10-28T00:00:00Z","","0" +"NM-02591","12.5","12.5","","1983-06-15T00:00:00Z","","0" +"NM-08936","7.809999942779541","7.809999942779541","","1971-10-19T00:00:00Z","","0" +"NM-00262","42.77000045776367","42.77000045776367","","1962-01-03T00:00:00Z","","0" +"NM-01568","72.26000213623047","72.26000213623047","","1993-01-28T00:00:00Z","","0" +"NM-11643","88.19000244140625","88.19000244140625","","1938-07-01T00:00:00Z","","0" +"NM-03090","73.2699966430664","73.2699966430664","","1980-01-08T00:00:00Z","","0" +"EB-339","139.7899932861328","137.5399932861328","","2017-04-05T00:00:00Z","0001-01-01T16:43:00Z","2.25" +"NM-22980","12.100000381469727","12.100000381469727","Z","2011-10-11T00:00:00Z","","0" +"NM-28259","92.5999984741211","92.5999984741211","","1984-01-25T00:00:00Z","","0" +"PC-102","558","556","","2014-03-13T00:00:00Z","","2" +"NM-28255","11.8100004196167","11.8100004196167","","1989-02-25T00:00:00Z","","0" +"NM-01925","384.3399963378906","384.3399963378906","","2011-02-28T00:00:00Z","","0" +"NM-15655","67.91999816894531","67.91999816894531","","1975-03-21T00:00:00Z","","0" +"NM-02676","89.04000091552734","89.04000091552734","","1979-01-30T00:00:00Z","","0" +"NM-11560","79.91999816894531","79.91999816894531","","1960-05-19T00:00:00Z","","0" +"NM-02314","8.5","8.5","","1982-12-15T00:00:00Z","","0" +"NM-26281","36.400001525878906","36.400001525878906","","1981-01-31T00:00:00Z","","0" +"NM-11679","32.25","32.25","","1945-07-20T00:00:00Z","","0" +"NM-20061","36.4900016784668","36.4900016784668","","1945-01-25T00:00:00Z","","0" +"WL-0087","67.125","65.44499969482422","","1999-07-14T00:00:00Z","","1.6799999475479126" +"NM-02282","401.44000244140625","401.44000244140625","","1996-07-19T00:00:00Z","","0" +"SV-0128","254.3000030517578","251.8800048828125","","2017-08-05T00:00:00Z","","2.4200000762939453" +"NM-02285","4.860000133514404","4.860000133514404","","2009-06-29T00:00:00Z","","0" +"DE-0206","132.88999938964844","132.88999938964844","","2013-04-23T00:00:00Z","","0" +"NM-22596","176.13999938964844","176.13999938964844","","1953-08-19T00:00:00Z","","0" +"NM-23026","56.09000015258789","56.09000015258789","","1948-08-04T00:00:00Z","","0" +"NM-00068","","","O","1999-01-21T00:00:00Z","","0" +"EB-609","255.35000610351562","255.35000610351562","","2008-04-08T00:00:00Z","","0" +"EB-229","215.57000732421875","221.57000732421875","","1979-07-24T00:00:00Z","","-6" +"AH-007","228.92999267578125","228.92999267578125","","2006-03-03T00:00:00Z","","0" +"NM-00501","191.0399932861328","191.0399932861328","","1990-12-05T00:00:00Z","","0" +"TO-0181","28.200000762939453","28.200000762939453","","1941-02-13T00:00:00Z","","0" +"NM-02285","6.800000190734863","6.800000190734863","","2005-11-08T00:00:00Z","","0" +"NM-06119","141.49000549316406","141.49000549316406","","1980-01-16T00:00:00Z","","0" +"NM-02701","37.130001068115234","37.130001068115234","","1994-02-24T00:00:00Z","","0" +"NM-21541","356.79998779296875","356.79998779296875","","1992-08-06T00:00:00Z","","0" +"NM-07028","169.47999572753906","169.47999572753906","","1983-01-28T00:00:00Z","","0" +"NM-28254","22.229999542236328","22.229999542236328","","1960-02-05T00:00:00Z","","0" +"NM-04141","115.9000015258789","115.9000015258789","","1972-04-12T00:00:00Z","","0" +"NM-05309","7.599999904632568","7.599999904632568","","1946-10-15T00:00:00Z","","0" +"NM-01796","7.5","7.5","","1978-06-15T00:00:00Z","","0" +"NM-01921","35.18000030517578","35.18000030517578","","1970-01-14T00:00:00Z","","0" +"NM-01534","50.599998474121094","50.599998474121094","","1995-07-26T00:00:00Z","","0" +"NM-02406","217.47000122070312","217.47000122070312","P","1971-02-15T00:00:00Z","","0" +"NM-02487","8.300000190734863","8.300000190734863","","1977-11-15T00:00:00Z","","0" +"NM-11592","131.42999267578125","131.42999267578125","","1969-01-09T00:00:00Z","","0" +"NM-00149","33.959999084472656","33.959999084472656","","2010-12-16T00:00:00Z","","0" +"NM-01004","255.3000030517578","255.3000030517578","","1975-01-06T00:00:00Z","","0" +"NM-13118","13.010000228881836","13.010000228881836","","1968-01-15T00:00:00Z","","0" +"NM-16620","15.130000114440918","15.130000114440918","","1940-01-30T00:00:00Z","","0" +"EB-276","129.19000244140625","129.19000244140625","","1959-10-19T00:00:00Z","","0" +"NM-10831","39.310001373291016","39.310001373291016","","1950-01-13T00:00:00Z","","0" +"TB-0187","","","D","2009-10-06T00:00:00Z","","0.800000011920929" +"NM-17716","2.880000114440918","2.880000114440918","","1946-03-31T00:00:00Z","","0" +"NM-06881","75.48999786376953","75.48999786376953","","1965-05-19T00:00:00Z","","0" +"NM-26765","31.719999313354492","31.719999313354492","","1981-01-27T00:00:00Z","","0" +"DE-0119","34.08000183105469","34.08000183105469","","2009-01-19T00:00:00Z","","0" +"NM-01872","8.399999618530273","8.399999618530273","","1970-09-15T00:00:00Z","","0" +"NM-16142","116.62999725341797","116.62999725341797","","1975-03-18T00:00:00Z","","0" +"NM-00330","15.8100004196167","15.8100004196167","R","2009-02-24T00:00:00Z","","0" +"NM-20147","112.2300033569336","112.2300033569336","","1969-02-25T00:00:00Z","","0" +"EB-276","405","405","P","1990-08-31T00:00:00Z","","0" +"WL-0090","47.45833206176758","45.078330993652344","","1986-10-01T00:00:00Z","","2.380000114440918" +"NM-11346","51.529998779296875","51.529998779296875","","1946-09-10T00:00:00Z","","0" +"NM-02017","7.400000095367432","7.400000095367432","","1969-09-15T00:00:00Z","","0" +"NM-17716","5.409999847412109","5.409999847412109","","1947-10-21T00:00:00Z","","0" +"DE-0244","100.61000061035156","100.61000061035156","","2000-08-07T00:00:00Z","","0" +"NM-16788","2.2899999618530273","2.2899999618530273","","1940-01-29T00:00:00Z","","0" +"NM-02518","9.199999809265137","9.199999809265137","","1964-06-15T00:00:00Z","","0" +"NM-01295","98.69000244140625","98.69000244140625","","1992-08-10T00:00:00Z","","0" +"BC-0174","300.67999267578125","300.67999267578125","","2015-06-04T00:00:00Z","","0" +"NM-28255","21.40999984741211","21.40999984741211","","1990-11-15T00:00:00Z","","0" +"NM-07888","541.1300048828125","541.1300048828125","","1969-03-01T00:00:00Z","","0" +"EB-282","275.0799865722656","275.0799865722656","","1994-04-19T00:00:00Z","","0" +"NM-05380","74.87999725341797","74.87999725341797","","1944-04-14T00:00:00Z","","0" +"NM-02729","52.369998931884766","52.369998931884766","","1963-08-13T00:00:00Z","","0" +"NM-28259","171.36000061035156","171.36000061035156","","2003-09-05T00:00:00Z","","0" +"NM-12060","-51.81999969482422","-51.81999969482422","","1915-01-04T00:00:00Z","","0" +"NM-01317","42.349998474121094","42.349998474121094","","2006-05-04T00:00:00Z","","0" +"NM-11633","63.790000915527344","63.790000915527344","","1991-04-03T00:00:00Z","","0" +"NM-05309","13","13","","1980-02-15T00:00:00Z","","0" +"NM-02196","38.59000015258789","38.59000015258789","","2014-10-29T00:00:00Z","","0" +"NM-02915","89.88999938964844","89.88999938964844","","1968-01-16T00:00:00Z","","0" +"NM-04727","220.5","220.5","P","1967-09-13T00:00:00Z","","0" +"NM-27195","143.49000549316406","143.49000549316406","","2012-09-13T00:00:00Z","","0" +"NM-04986","89.9000015258789","89.9000015258789","","1978-01-13T00:00:00Z","","0" +"NM-05516","10.699999809265137","10.699999809265137","","1974-09-15T00:00:00Z","","0" +"EB-276","188","188","","1973-10-25T00:00:00Z","","0" +"NM-13594","35.560001373291016","35.560001373291016","","1965-10-01T00:00:00Z","","0" +"AB-0162","489.1099853515625","489.1099853515625","","2012-10-05T00:00:00Z","","" +"NM-28254","17.899999618530273","17.899999618530273","","2015-01-26T00:00:00Z","","0" +"NM-01854","51.560001373291016","51.560001373291016","","1959-01-23T00:00:00Z","","0" +"NM-11990","-73.7699966430664","-73.7699966430664","","1907-01-18T00:00:00Z","","0" +"NM-02771","20.299999237060547","20.299999237060547","","1963-01-08T00:00:00Z","","0" +"NM-00329","13.850000381469727","13.850000381469727","","1960-07-20T00:00:00Z","","0" +"NM-02055","91.23999786376953","91.23999786376953","","1953-01-12T00:00:00Z","","0" +"NM-03462","138.11000061035156","138.11000061035156","","1947-11-01T00:00:00Z","","0" +"NM-00750","25.780000686645508","25.780000686645508","","1955-07-17T00:00:00Z","","0" +"AB-0077","5.800000190734863","5.800000190734863","","2004-09-20T00:00:00Z","","" +"NM-16404","90","90","","1951-01-01T00:00:00Z","","0" +"NM-21526","296.2699890136719","296.2699890136719","","2010-03-12T00:00:00Z","","0" +"QY-0024","83.30000305175781","83.30000305175781","P","1952-10-08T00:00:00Z","","0" +"NM-06216","13.380000114440918","13.380000114440918","","1984-06-11T00:00:00Z","","0" +"NM-28259","136.69000244140625","136.69000244140625","","1977-04-25T00:00:00Z","","0" +"SB-0299","107.23999786376953","107.23999786376953","","1966-09-25T00:00:00Z","","0" +"NM-12973","293","293","","1991-02-05T00:00:00Z","","0" +"NM-10761","-33.34000015258789","-33.34000015258789","","1912-05-29T00:00:00Z","","0" +"QY-0362","41","41","","1948-01-02T00:00:00Z","","0" +"NM-11889","1.159999966621399","1.159999966621399","","1941-10-01T00:00:00Z","","0" +"NM-12564","29.18000030517578","29.18000030517578","","1959-06-01T00:00:00Z","","0" +"NM-03400","9.609999656677246","9.609999656677246","","1992-02-28T00:00:00Z","","0" +"NM-10010","151.39999389648438","151.39999389648438","","1959-01-21T00:00:00Z","","0" +"NM-02282","401.3900146484375","401.3900146484375","","1985-08-01T00:00:00Z","","0" +"NM-21519","31.90999984741211","31.90999984741211","","1991-04-16T00:00:00Z","","0" +"NM-04242","","","O","1993-01-22T00:00:00Z","","0" +"NM-05681","71.12000274658203","71.12000274658203","","1943-08-10T00:00:00Z","","0" +"NM-05689","93.5","93.5","","1951-11-21T00:00:00Z","","0" +"SO-0190","10.8100004196167","10.130000114440918","","2020-12-15T00:00:00Z","","0.6800000071525574" +"NM-16744","28.040000915527344","28.040000915527344","","1961-06-07T00:00:00Z","","0" +"DE-0377","72.72000122070312","69.70999908447266","","2013-10-15T00:00:00Z","","3.009999990463257" +"NM-10166","79.05000305175781","79.05000305175781","","1953-01-14T00:00:00Z","","0" +"NM-24223","15.779999732971191","15.779999732971191","","2010-09-02T00:00:00Z","","0" +"BC-0036","276.44000244140625","276.44000244140625","","2015-03-09T00:00:00Z","","0" +"NM-02620","9","9","","1998-04-15T00:00:00Z","","0" +"NM-21204","0","0","","1935-03-21T00:00:00Z","","0" +"UC-0122","34.18000030517578","34.18000030517578","","1986-01-29T00:00:00Z","","0" +"DE-0089","90.62000274658203","90.62000274658203","","2017-11-13T00:00:00Z","","0" +"NM-03397","26.5","26.5","","1991-05-28T00:00:00Z","","0" +"NM-01914","17.68000030517578","17.68000030517578","","1976-12-27T00:00:00Z","","0" +"NM-05591","109.9000015258789","109.9000015258789","P","1954-09-02T00:00:00Z","","0" +"NM-05619","50.70000076293945","50.70000076293945","","1936-02-02T00:00:00Z","","0" +"NM-23200","5.889999866485596","5.889999866485596","Z","1990-10-04T00:00:00Z","","0" +"NM-18336","285.3999938964844","285.3999938964844","","2015-01-21T00:00:00Z","","0" +"NM-24987","99.12999725341797","99.12999725341797","","1958-09-25T00:00:00Z","","0" +"NM-17577","30.8799991607666","30.8799991607666","","1944-12-01T00:00:00Z","","0" +"NM-00788","198.47000122070312","198.47000122070312","","1989-02-21T00:00:00Z","","0" +"NM-05316","114.12999725341797","114.12999725341797","","1961-01-11T00:00:00Z","","0" +"NM-28251","76.7300033569336","76.7300033569336","","2019-05-15T00:00:00Z","","0" +"SV-0120","151","149.6699981689453","","2019-06-01T00:00:00Z","","1.3300000429153442" +"NM-21244","369.260009765625","369.260009765625","","2003-09-28T00:00:00Z","","0" +"NM-03378","30.350000381469727","30.350000381469727","","1983-03-31T00:00:00Z","","0" +"NM-07148","84.3499984741211","84.3499984741211","","2008-01-09T00:00:00Z","","0" +"NM-06344","181.61000061035156","181.61000061035156","","1954-01-11T00:00:00Z","","0" +"NM-11975","105.5","105.5","P","1951-03-14T00:00:00Z","","0" +"NM-00395","40.43000030517578","40.43000030517578","","1983-01-04T00:00:00Z","","0" +"NM-14566","74","74","P","1957-06-09T00:00:00Z","","0" +"NM-16574","12.739999771118164","12.739999771118164","","1943-09-27T00:00:00Z","","0" +"NM-02412","30.049999237060547","30.049999237060547","","1987-01-19T00:00:00Z","","0" +"EB-163","695","693.7999877929688","","1985-03-31T00:00:00Z","","1.2000000476837158" +"NM-06992","77.47000122070312","77.47000122070312","","2008-03-20T00:00:00Z","","0" +"NM-27728","86.44999694824219","86.44999694824219","","1977-01-20T00:00:00Z","","0" +"NM-01761","55.720001220703125","55.720001220703125","","1978-01-19T00:00:00Z","","0" +"NM-27255","25.3799991607666","25.3799991607666","","1958-11-18T00:00:00Z","","0" +"NM-00974","340.79998779296875","340.79998779296875","","1956-07-18T00:00:00Z","","0" +"NM-28020","465.3800048828125","465.3800048828125","S","2015-05-06T00:00:00Z","","0" +"DE-0306","47.16999816894531","47.16999816894531","","2014-12-09T00:00:00Z","","0" +"NM-18329","293.8800048828125","293.8800048828125","","2005-01-10T00:00:00Z","","0" +"NM-27973","44.91999816894531","44.91999816894531","","1993-02-17T00:00:00Z","","0" +"NM-03251","79.69999694824219","79.69999694824219","","2000-01-27T00:00:00Z","","0" +"NM-02623","182.0399932861328","182.0399932861328","","1999-02-02T00:00:00Z","","0" +"NM-03891","215.52000427246094","215.52000427246094","","1960-03-09T00:00:00Z","","0" +"NM-01713","115.62000274658203","115.62000274658203","","2011-01-26T00:00:00Z","","0" +"NM-02758","260.04998779296875","260.04998779296875","","1942-02-16T00:00:00Z","","0" +"NM-03734","34.70000076293945","34.70000076293945","","1962-04-05T00:00:00Z","","0" +"NM-00367","128.44000244140625","128.44000244140625","","1972-10-01T00:00:00Z","","0" +"NM-16972","20.84000015258789","20.84000015258789","","1945-01-23T00:00:00Z","","0" +"NM-04591","64.19000244140625","64.19000244140625","P","1948-04-02T00:00:00Z","","0" +"NM-21723","28.8799991607666","28.8799991607666","","2012-10-16T00:00:00Z","","0" +"NM-03761","60.97999954223633","60.97999954223633","P","1950-09-25T00:00:00Z","","0" +"NM-11891","14.829999923706055","14.829999923706055","","1939-01-24T00:00:00Z","","0" +"NM-28257","66.31999969482422","66.31999969482422","","1956-12-15T00:00:00Z","","0" +"NM-16780","25.8799991607666","25.8799991607666","","1951-05-26T00:00:00Z","","0" +"NM-04797","63.689998626708984","63.689998626708984","","1998-01-16T00:00:00Z","","0" +"NM-13604","36.599998474121094","36.599998474121094","","1961-01-06T00:00:00Z","","0" +"NM-20758","19.540000915527344","19.540000915527344","","1948-03-24T00:00:00Z","","0" +"NM-11539","47.20000076293945","47.20000076293945","","1969-01-16T00:00:00Z","","0" +"NM-15902","92.23999786376953","92.23999786376953","","1990-01-04T00:00:00Z","","0" +"NM-11518","37.599998474121094","37.599998474121094","","1934-10-24T00:00:00Z","","0" +"AB-0074","18.06999969482422","18.06999969482422","","2006-12-18T00:00:00Z","","" +"NM-28252","32.599998474121094","32.599998474121094","","1996-12-15T00:00:00Z","","0" +"NM-03425","12.180000305175781","12.180000305175781","","2003-09-24T00:00:00Z","","0" +"NM-09184","51.13999938964844","51.13999938964844","","1986-01-28T00:00:00Z","","0" +"NM-28256","73.47000122070312","73.47000122070312","","1977-02-05T00:00:00Z","","0" +"NM-01921","32","32","","1956-05-11T00:00:00Z","","0" +"NM-11070","32.5099983215332","32.5099983215332","","1952-01-15T00:00:00Z","","0" +"NM-05199","150.32000732421875","150.32000732421875","","1978-01-11T00:00:00Z","","0" +"NM-02196","20.25","20.25","","2005-01-26T00:00:00Z","","0" +"NM-28259","136.39999389648438","136.39999389648438","","1963-03-25T00:00:00Z","","0" +"NM-13853","-9.949999809265137","-9.949999809265137","","1912-09-19T00:00:00Z","","0" +"NM-01204","354.04998779296875","354.04998779296875","Z","2007-08-02T00:00:00Z","","0" +"NM-00213","180.47000122070312","180.47000122070312","","1963-06-01T00:00:00Z","","0" +"NM-17716","1.440000057220459","1.440000057220459","","1945-01-28T00:00:00Z","","0" +"NM-16972","59.20000076293945","59.20000076293945","","1961-01-10T00:00:00Z","","0" +"NM-14085","76.33000183105469","76.33000183105469","","1965-01-05T00:00:00Z","","0" +"NM-21894","6.46999979019165","6.46999979019165","Z","2005-09-16T00:00:00Z","","0" +"NM-21271","3.069999933242798","3.069999933242798","Z","2009-06-01T00:00:00Z","","0" +"NM-00099","74.94999694824219","74.94999694824219","","1961-01-19T00:00:00Z","","0" +"NM-01971","7.300000190734863","7.300000190734863","","1969-03-15T00:00:00Z","","0" +"NM-03812","55.599998474121094","55.599998474121094","","1957-01-15T00:00:00Z","","0" +"NM-28024","479.0299987792969","479.0299987792969","S","2015-04-24T00:00:00Z","","0" +"NM-02043","4.900000095367432","4.900000095367432","","1995-09-15T00:00:00Z","","0" +"NM-27486","25.639999389648438","25.639999389648438","","1963-11-21T00:00:00Z","","0" +"TV-196","247.41000366210938","252.60000610351562","","2015-06-01T00:00:00Z","","-5.190000057220459" +"NM-20913","415","415","","1996-03-28T00:00:00Z","","0" +"NM-10641","34.310001373291016","34.310001373291016","","1963-09-04T00:00:00Z","","0" +"NM-16720","33.20000076293945","33.20000076293945","","1974-01-16T00:00:00Z","","0" +"NM-26491","145.89999389648438","145.89999389648438","","2003-09-18T00:00:00Z","","0" +"NM-17271","44.0099983215332","44.0099983215332","","1950-03-01T00:00:00Z","","0" +"NM-23881","50.939998626708984","50.939998626708984","","1965-01-21T00:00:00Z","","0" +"NM-11679","23.530000686645508","23.530000686645508","","1944-03-25T00:00:00Z","","0" +"NM-13364","40.16999816894531","40.16999816894531","","1971-03-19T00:00:00Z","","0" +"NM-03662","31.799999237060547","31.799999237060547","","1966-02-07T00:00:00Z","","0" +"NM-10648","-42.58000183105469","-42.58000183105469","","1907-06-26T00:00:00Z","","0" +"NM-00644","29.639999389648438","29.639999389648438","","1980-01-01T00:00:00Z","","0" +"NM-25756","140.9199981689453","140.9199981689453","","1981-02-05T00:00:00Z","","0" +"SO-0229","10.220000267028809","9.40999984741211","","2019-09-29T00:00:00Z","0001-01-01T12:23:00Z","0.8100000023841858" +"NM-14093","-9.09000015258789","-9.09000015258789","","1907-06-12T00:00:00Z","","0" +"NM-19160","109.33999633789062","109.33999633789062","","1943-05-30T00:00:00Z","","0" +"NM-28253","4.900000095367432","4.900000095367432","","1961-02-05T00:00:00Z","","0" +"MI-0010","15.449999809265137","15.449999809265137","","1947-08-08T00:00:00Z","","0" +"NM-28251","85.2699966430664","85.2699966430664","","1982-03-05T00:00:00Z","","0" +"NM-02644","50.41999816894531","50.41999816894531","","1963-08-13T00:00:00Z","","0" +"NM-06139","111.38999938964844","111.38999938964844","","1967-08-08T00:00:00Z","","0" +"NM-11263","41.95000076293945","41.95000076293945","","1935-03-19T00:00:00Z","","0" +"NM-28024","479.3500061035156","479.3500061035156","S","2015-04-16T00:00:00Z","","0" +"NM-02005","9.100000381469727","9.100000381469727","","1967-01-15T00:00:00Z","","0" +"NM-02328","17.200000762939453","17.200000762939453","","2010-01-19T00:00:00Z","","0" +"NM-08271","11.15999984741211","11.15999984741211","","1975-11-03T00:00:00Z","","0" +"NM-14231","52.349998474121094","52.349998474121094","","1931-12-15T00:00:00Z","","0" +"EB-277","239.08999633789062","239.08999633789062","","1994-04-19T00:00:00Z","","0" +"NM-04632","18.299999237060547","18.299999237060547","","1956-07-15T00:00:00Z","","0" +"NM-03404","7.46999979019165","7.46999979019165","","2002-06-06T00:00:00Z","","0" +"NM-01768","67.1500015258789","67.1500015258789","","1976-02-05T00:00:00Z","","0" +"SV-0073","359.3999938964844","357.48333740234375","","2014-02-18T00:00:00Z","","1.9166666269302368" +"NM-03386","39.9900016784668","39.9900016784668","","1993-11-04T00:00:00Z","","0" +"WL-0013","70.76000213623047","69.16000366210938","","2017-03-02T00:00:00Z","0001-01-01T12:19:00Z","1.600000023841858" +"NM-18855","59.849998474121094","59.849998474121094","","1973-10-04T00:00:00Z","","0" +"MG-037","114.94999694824219","113.64999389648438","","2014-06-03T00:00:00Z","","1.2999999523162842" +"NM-21584","4.53000020980835","4.53000020980835","Z","2006-12-14T00:00:00Z","","0" +"BC-0054","","275.8999938964844","","2020-11-07T00:00:00Z","","0.7799999713897705" +"NM-21795","202.52000427246094","202.52000427246094","","1993-03-16T00:00:00Z","","0" +"NM-11017","31.6299991607666","31.6299991607666","P","1947-05-22T00:00:00Z","","0" +"NM-10892","77.05000305175781","77.05000305175781","","1960-11-17T00:00:00Z","","0" +"NM-01791","318.7900085449219","318.7900085449219","","1992-06-22T00:00:00Z","","0" +"DE-0110","35.619998931884766","35.619998931884766","","2006-05-03T00:00:00Z","","0" +"NM-13587","-59.5","-59.5","","1956-01-03T00:00:00Z","","0" +"DE-0241","107.47000122070312","107.47000122070312","","2008-08-08T00:00:00Z","","0" +"NM-19906","34.58000183105469","34.58000183105469","","1944-05-18T00:00:00Z","","0" +"NM-00948","229.0399932861328","229.0399932861328","","1997-03-06T00:00:00Z","","0" +"NM-17660","12.6899995803833","12.6899995803833","","1961-01-13T00:00:00Z","","0" +"NM-03650","31.84000015258789","31.84000015258789","","2006-11-06T00:00:00Z","","0" +"NM-28023","486.1199951171875","486.1199951171875","S","2015-04-17T00:00:00Z","","0" +"NM-00432","73.76000213623047","73.76000213623047","","1974-03-13T00:00:00Z","","0" +"NM-18986","232.1999969482422","232.1999969482422","","1962-03-15T00:00:00Z","","0" +"NM-08648","40.7599983215332","40.7599983215332","","1952-11-18T00:00:00Z","","0" +"NM-09682","460.07000732421875","460.07000732421875","","1974-02-01T00:00:00Z","","0" +"NM-14330","53.689998626708984","53.689998626708984","","1963-08-14T00:00:00Z","","0" +"NM-12401","82.95999908447266","82.95999908447266","","1954-01-26T00:00:00Z","","0" +"NM-05395","45.31999969482422","45.31999969482422","","1992-11-19T00:00:00Z","","0" +"EB-483","33.33000183105469","33.33000183105469","","1986-08-31T00:00:00Z","","0" +"NM-20776","22.600000381469727","22.600000381469727","","1949-02-16T00:00:00Z","","0" +"NM-01986","7.400000095367432","7.400000095367432","","1961-05-15T00:00:00Z","","0" +"NM-02282","399.2699890136719","399.2699890136719","","1972-09-01T00:00:00Z","","0" +"NM-01284","129.5","129.5","","1984-09-12T00:00:00Z","","0" +"NM-02384","8.300000190734863","8.300000190734863","","1958-11-15T00:00:00Z","","0" +"NM-01885","22.290000915527344","22.290000915527344","","2002-09-25T00:00:00Z","","0" +"NM-12034","9.949999809265137","9.949999809265137","","1941-01-25T00:00:00Z","","0" +"NM-26014","28","28","","1960-08-24T00:00:00Z","","0" +"NM-02282","399.7300109863281","399.7300109863281","","1989-09-25T00:00:00Z","","0" +"NM-21515","95.19999694824219","95.19999694824219","","1963-08-19T00:00:00Z","","0" +"NM-10099","156.47999572753906","156.47999572753906","","1980-05-26T00:00:00Z","","0" +"NM-23683","1180.800048828125","1180.800048828125","","2001-06-27T00:00:00Z","","0" +"NM-28252","62.45000076293945","62.45000076293945","","1981-05-05T00:00:00Z","","0" +"NM-04832","146.72000122070312","146.72000122070312","","1980-01-02T00:00:00Z","","0" +"NM-03979","113.58999633789062","113.58999633789062","P","1956-05-11T00:00:00Z","","0" +"NM-26792","90","90","","1992-11-28T00:00:00Z","","0" +"NM-01899","48.459999084472656","48.459999084472656","","1999-10-15T00:00:00Z","","0" +"NM-28258","112.05000305175781","112.05000305175781","","1990-12-05T00:00:00Z","","0" +"SA-0076","179.9499969482422","179.02000427246094","","2017-02-28T00:00:00Z","0001-01-01T12:55:00Z","0.9300000071525574" +"NM-02221","52.75","52.75","","1992-02-04T00:00:00Z","","0" +"NM-13144","-22.190000534057617","-22.190000534057617","","1957-08-08T00:00:00Z","","0" +"NM-02017","10.300000190734863","10.300000190734863","","1964-06-15T00:00:00Z","","0" +"NM-02587","46.15999984741211","46.15999984741211","","1963-11-22T00:00:00Z","","0" +"NM-10767","181.64999389648438","181.64999389648438","","1966-03-31T00:00:00Z","","0" +"NM-17527","28.700000762939453","28.700000762939453","","1943-01-28T00:00:00Z","","0" +"NM-28256","189.1300048828125","189.1300048828125","","1973-04-25T00:00:00Z","","0" +"AB-0124","547.7100219726562","547.7100219726562","","2003-07-29T00:00:00Z","","" +"NM-28258","159.3000030517578","159.3000030517578","","2017-11-06T00:00:00Z","","0" +"NM-02604","-58.75","-58.75","","1912-12-17T00:00:00Z","","0" +"NM-28258","158.25999450683594","158.25999450683594","","2004-05-14T00:00:00Z","","0" +"DE-0111","33.22999954223633","33.22999954223633","","2006-01-16T00:00:00Z","","0" +"NM-28259","119.86000061035156","119.86000061035156","","2014-11-25T00:00:00Z","","0" +"NM-28254","28.350000381469727","28.350000381469727","","1949-10-05T00:00:00Z","","0" +"EB-270","176.3000030517578","176.3000030517578","S","1988-08-10T00:00:00Z","","0" +"NM-01992","87.58999633789062","87.58999633789062","","1965-01-18T00:00:00Z","","0" +"NM-17685","6.920000076293945","6.920000076293945","","1983-08-01T00:00:00Z","","0" +"NM-28254","14","14","","2002-01-04T00:00:00Z","","0" +"NM-21940","18.649999618530273","18.649999618530273","","1974-01-04T00:00:00Z","","0" +"NM-05709","52.20000076293945","52.20000076293945","","1940-07-04T00:00:00Z","","0" +"NM-14421","-19.479999542236328","-19.479999542236328","","1912-09-02T00:00:00Z","","0" +"SA-0012","64.66999816894531","64.66999816894531","","1980-06-25T00:00:00Z","","0" +"DE-0073","89.38999938964844","89.38999938964844","","1999-08-10T00:00:00Z","","0" +"NM-10600","32.599998474121094","32.599998474121094","P","1945-09-15T00:00:00Z","","0" +"NM-09670","104.3499984741211","104.3499984741211","","1978-08-16T00:00:00Z","","0" +"NM-05983","69.4000015258789","69.4000015258789","P","1947-10-03T00:00:00Z","","0" +"NM-09104","442.6000061035156","442.6000061035156","","1958-01-29T00:00:00Z","","0" +"NM-11388","39.68000030517578","39.68000030517578","","1951-11-21T00:00:00Z","","0" +"NM-14168","-5.099999904632568","-5.099999904632568","","1956-01-03T00:00:00Z","","0" +"NM-16788","3.359999895095825","3.359999895095825","","1939-09-21T00:00:00Z","","0" +"NM-17716","1.7799999713897705","1.7799999713897705","","1944-11-23T00:00:00Z","","0" +"NM-02412","18.65999984741211","18.65999984741211","","1931-10-10T00:00:00Z","","0" +"NM-24468","133.88999938964844","133.88999938964844","","1988-02-09T00:00:00Z","","0" +"SB-0267","154.88999938964844","154.88999938964844","","1949-02-03T00:00:00Z","","0" +"NM-02320","178.88999938964844","178.88999938964844","","1995-02-20T00:00:00Z","","0" +"AB-0053","44.40999984741211","44.40999984741211","","2010-02-09T00:00:00Z","","" +"NM-11322","3.5","3.5","","1972-05-26T00:00:00Z","","0" +"NM-02685","11.359999656677246","11.359999656677246","","1965-01-06T00:00:00Z","","0" +"NM-28023","485.7900085449219","485.7900085449219","S","2015-05-08T00:00:00Z","","0" +"NM-17716","5.46999979019165","5.46999979019165","","1948-08-15T00:00:00Z","","0" +"SB-0299","139.16000366210938","139.16000366210938","","2014-04-15T00:00:00Z","","0" +"NM-01085","158.5399932861328","158.5399932861328","","2006-02-22T00:00:00Z","","0" +"NM-20120","61.150001525878906","61.150001525878906","","1950-11-02T00:00:00Z","","0" +"NM-01297","22.229999542236328","22.229999542236328","","1983-04-26T00:00:00Z","","0" +"NM-23205","61.900001525878906","61.900001525878906","","2008-09-29T00:00:00Z","","0" +"NM-01565","-250.92999267578125","-250.92999267578125","","1988-10-02T00:00:00Z","","0" +"SB-0299","130.5500030517578","130.5500030517578","","1973-08-22T00:00:00Z","","0" +"DE-0148","121.08999633789062","121.08999633789062","","2011-05-23T00:00:00Z","","0" +"NM-11560","74.8499984741211","74.8499984741211","","1944-11-21T00:00:00Z","","0" +"NM-20138","44.5","44.5","","1946-05-31T00:00:00Z","","0" +"NM-01547","-121.43000030517578","-121.43000030517578","E","1985-05-08T00:00:00Z","","0" +"NM-14383","-3.890000104904175","-3.890000104904175","","1907-06-12T00:00:00Z","","0" +"AB-0052","49.439998626708984","49.439998626708984","","1996-10-24T00:00:00Z","","0" +"NM-04975","73.77999877929688","73.77999877929688","","1962-01-05T00:00:00Z","","0" +"NM-01937","478.5799865722656","478.5799865722656","","2005-03-24T00:00:00Z","","0" +"NM-27692","98.9800033569336","98.9800033569336","","1962-01-17T00:00:00Z","","0" +"NM-05621","68.70999908447266","68.70999908447266","","1932-08-08T00:00:00Z","","0" +"NM-26540","164.8000030517578","164.8000030517578","","1957-02-15T00:00:00Z","","0" +"NM-21561","4.21999979019165","4.21999979019165","Z","2004-09-24T00:00:00Z","","0" +"NM-01335","144.6199951171875","144.6199951171875","","2008-04-11T00:00:00Z","","0" +"NM-04369","255.25999450683594","255.25999450683594","S","1996-02-28T00:00:00Z","","0" +"NM-00974","340.75","340.75","","1955-09-15T00:00:00Z","","0" +"NM-28254","122.5","122.5","","1978-09-05T00:00:00Z","","0" +"AB-0200","195.08999633789062","195.08999633789062","","2005-03-30T00:00:00Z","","" +"NM-09973","42.83000183105469","42.83000183105469","","1956-11-30T00:00:00Z","","0" +"NM-08940","8.170000076293945","8.170000076293945","","1958-02-04T00:00:00Z","","0" +"NM-28253","31.18000030517578","31.18000030517578","","1961-03-25T00:00:00Z","","0" +"NM-14221","-19.479999542236328","-19.479999542236328","","1909-09-17T00:00:00Z","","0" +"NM-02535","12.510000228881836","12.510000228881836","","1999-01-12T00:00:00Z","","0" +"NM-17628","45.65999984741211","45.65999984741211","","1956-11-14T00:00:00Z","","0" +"NM-02017","9.600000381469727","9.600000381469727","","1978-05-15T00:00:00Z","","0" +"NM-28253","22.139999389648438","22.139999389648438","","2021-02-25T00:00:00Z","","0" +"NM-13594","27.040000915527344","27.040000915527344","","1980-12-23T00:00:00Z","","0" +"NM-28259","136.44000244140625","136.44000244140625","","1987-08-25T00:00:00Z","","0" +"NM-03010","89.0199966430664","89.0199966430664","","1992-01-07T00:00:00Z","","0" +"NM-00077","21.809999465942383","21.809999465942383","","2003-01-28T00:00:00Z","","0" +"NM-09922","32.7400016784668","32.7400016784668","","1944-01-11T00:00:00Z","","0" +"NM-13196","20.93000030517578","20.93000030517578","","1981-02-20T00:00:00Z","","0" +"NM-19955","27","27","","1972-01-06T00:00:00Z","","0" +"NM-02287","4.230000019073486","4.230000019073486","","1997-06-09T00:00:00Z","","0" +"NM-02702","7.960000038146973","7.960000038146973","","1968-12-01T00:00:00Z","","0" +"NM-27393","27.639999389648438","27.639999389648438","","1943-01-26T00:00:00Z","","0" +"BC-0298","136.77000427246094","136.77000427246094","","2018-04-05T00:00:00Z","","0" +"EB-220","128.07000732421875","128.07000732421875","","1983-02-01T00:00:00Z","","0" +"NM-21869","36.290000915527344","36.290000915527344","Z","1999-01-05T00:00:00Z","","0" +"NM-00160","800","800","","1957-04-26T00:00:00Z","","0" +"NM-01756","46.02000045776367","46.02000045776367","","1981-01-20T00:00:00Z","","0" +"NM-01246","98.38999938964844","98.38999938964844","S","1986-04-01T00:00:00Z","","0" +"NM-04413","120.86000061035156","120.86000061035156","","1992-11-03T00:00:00Z","","0" +"NM-02396","11.5","11.5","","1965-08-15T00:00:00Z","","0" +"NM-03987","218.1999969482422","218.1999969482422","","1955-04-27T00:00:00Z","","0" +"SA-0144","26.81999969482422","24.68000030517578","","2009-12-14T00:00:00Z","","2.140000104904175" +"BC-0047","113.73999786376953","113.73999786376953","","2013-06-13T00:00:00Z","","0" +"NM-04404","104.43000030517578","104.43000030517578","","1957-08-07T00:00:00Z","","0" +"NM-07602","305","305","","1968-05-18T00:00:00Z","","0" +"AB-0106","425.17999267578125","425.17999267578125","","2000-08-17T00:00:00Z","","" +"NM-01868","16.700000762939453","16.700000762939453","","1957-12-15T00:00:00Z","","0" +"NM-02396","7","7","","1960-07-15T00:00:00Z","","0" +"NM-00507","58.13999938964844","58.13999938964844","","1977-01-07T00:00:00Z","","0" +"NM-03324","92.44000244140625","92.44000244140625","","2000-01-11T00:00:00Z","","0" +"NM-14217","19.450000762939453","19.450000762939453","","1940-01-30T00:00:00Z","","0" +"NM-13411","42.900001525878906","42.900001525878906","","1938-06-30T00:00:00Z","","0" +"NM-02092","88.01000213623047","88.01000213623047","","1968-08-17T00:00:00Z","","0" +"NM-28011","491.4700012207031","491.4700012207031","S","2015-05-27T00:00:00Z","","0" +"NM-17041","19.81999969482422","19.81999969482422","","1945-04-02T00:00:00Z","","0" +"NM-17716","4.639999866485596","4.639999866485596","","1949-05-31T00:00:00Z","","0" +"NM-05400","120.43000030517578","120.43000030517578","","1974-01-15T00:00:00Z","","0" +"AB-0179","178.9199981689453","178.9199981689453","","1999-08-24T00:00:00Z","","" +"NM-20301","14.800000190734863","14.800000190734863","","1951-01-19T00:00:00Z","","0" +"NM-00491","41.540000915527344","41.540000915527344","","1952-01-06T00:00:00Z","","0" +"NM-09025","13.609999656677246","13.609999656677246","","1976-12-01T00:00:00Z","","0" +"NM-02260","38.20000076293945","38.20000076293945","","1960-08-02T00:00:00Z","","0" +"NM-13573","21.31999969482422","21.31999969482422","","1970-01-08T00:00:00Z","","0" +"NM-16816","53.43000030517578","53.43000030517578","","1962-01-06T00:00:00Z","","0" +"NM-08758","5.010000228881836","5.010000228881836","","1949-05-16T00:00:00Z","","0" +"NM-02284","11.619999885559082","11.619999885559082","","2010-07-14T00:00:00Z","","0" +"NM-01791","290.92999267578125","290.92999267578125","","1981-12-19T00:00:00Z","","0" +"NM-16620","15.760000228881836","15.760000228881836","","1935-05-21T00:00:00Z","","0" +"NM-00803","34.2400016784668","34.2400016784668","","2013-01-09T00:00:00Z","","0" +"NM-26669","16.899999618530273","16.899999618530273","","2011-06-21T00:00:00Z","","0" +"NM-02169","6.809999942779541","6.809999942779541","","2010-07-14T00:00:00Z","","0" +"SB-0299","122.75","122.75","","1995-11-05T00:00:00Z","","0" +"NM-00367","137.0399932861328","137.0399932861328","Z","1999-08-26T00:00:00Z","","0" +"NM-01098","32.529998779296875","32.529998779296875","","1956-03-26T00:00:00Z","","0" +"NM-14535","85.98999786376953","85.98999786376953","","1984-03-15T00:00:00Z","","0" +"NM-12392","259.82000732421875","259.82000732421875","","1961-11-01T00:00:00Z","","0" +"BC-0132","80.93000030517578","80.93000030517578","","2013-12-04T00:00:00Z","","0" +"EB-268","","","F","1986-10-02T00:00:00Z","","" +"NM-06825","84.66999816894531","84.66999816894531","","2003-04-08T00:00:00Z","","0" +"NM-05950","92.19000244140625","92.19000244140625","","1992-01-29T00:00:00Z","","0" +"NM-13983","-7.239999771118164","-7.239999771118164","","1913-08-15T00:00:00Z","","0" +"NM-01397","-81.69999694824219","-81.69999694824219","","1988-02-25T00:00:00Z","","0" +"NM-02840","6.730000019073486","6.730000019073486","","1972-03-31T00:00:00Z","","0" +"NM-09077","7.920000076293945","7.920000076293945","","1994-04-23T00:00:00Z","","0" +"DE-0129","43.5","43.5","","2016-09-15T00:00:00Z","","0" +"NM-08878","27.079999923706055","27.079999923706055","","1929-09-19T00:00:00Z","","0" +"NM-08027","50.06999969482422","50.06999969482422","","1986-02-28T00:00:00Z","","0" +"NM-02006","7.199999809265137","7.199999809265137","","1981-08-15T00:00:00Z","","0" +"NM-22110","6.179999828338623","6.179999828338623","Z","2011-11-02T00:00:00Z","","0" +"NM-08143","14.90999984741211","14.90999984741211","","2013-11-19T00:00:00Z","","0" +"AB-0123","530.5399780273438","530.5399780273438","","2014-03-05T00:00:00Z","","" +"NM-28254","109","109","","1998-05-25T00:00:00Z","","0" +"NM-24271","58.900001525878906","58.900001525878906","","1979-10-31T00:00:00Z","","0" +"NM-02167","42.220001220703125","42.220001220703125","","2011-04-28T00:00:00Z","","0" +"NM-11040","-81.8499984741211","-81.8499984741211","","1912-05-29T00:00:00Z","","0" +"NM-01955","6.800000190734863","6.800000190734863","","1947-11-15T00:00:00Z","","0" +"NM-05420","14.020000457763672","14.020000457763672","","1948-05-21T00:00:00Z","","0" +"NM-09132","27.479999542236328","27.479999542236328","","1942-02-04T00:00:00Z","","0" +"BW-0164","117","117","","1954-02-21T00:00:00Z","","0" +"NM-27289","146.72000122070312","146.72000122070312","","1993-05-11T00:00:00Z","","0" +"EB-270","171.80999755859375","171.80999755859375","","2005-12-15T00:00:00Z","","0" +"NM-02215","141.1199951171875","141.1199951171875","","1961-01-10T00:00:00Z","","0" +"NM-11255","35.72999954223633","35.72999954223633","","1951-01-19T00:00:00Z","","0" +"AB-0212","156.1999969482422","156.1999969482422","","2008-03-04T00:00:00Z","","" +"NM-10588","-61.060001373291016","-61.060001373291016","","1906-07-14T00:00:00Z","","0" +"NM-28250","99.37999725341797","99.37999725341797","","1968-12-15T00:00:00Z","","0" +"NM-11041","-16.020000457763672","-16.020000457763672","","1909-09-27T00:00:00Z","","0" +"RA-080","9.65999984741211","8.4399995803833","AA","2023-09-19T00:00:00Z","0001-01-01T16:30:00Z","1.2200000286102295" +"NM-08549","20.739999771118164","20.739999771118164","","1972-10-06T00:00:00Z","","0" +"NM-02758","315.3299865722656","315.3299865722656","","1965-01-08T00:00:00Z","","0" +"NM-09670","12.579999923706055","12.579999923706055","","1944-01-11T00:00:00Z","","0" +"NM-04417","85.08999633789062","85.08999633789062","","1987-01-22T00:00:00Z","","0" +"NM-28254","72.0999984741211","72.0999984741211","","2000-09-25T00:00:00Z","","0" +"EB-207","161.8000030517578","161.8000030517578","","1968-02-05T00:00:00Z","","0" +"NM-21923","9.869999885559082","9.869999885559082","","1985-08-27T00:00:00Z","","0" +"NM-02329","63.099998474121094","63.099998474121094","","1988-03-16T00:00:00Z","","0" +"EB-484","719.1500244140625","718.550048828125","P","2000-03-31T00:00:00Z","","0.6000000238418579" +"NM-28254","30.56999969482422","30.56999969482422","","1980-12-25T00:00:00Z","","0" +"NM-21836","7.559999942779541","7.559999942779541","Z","2009-06-18T00:00:00Z","","0" +"NM-05954","63.58000183105469","63.58000183105469","","1947-01-09T00:00:00Z","","0" +"NM-10566","97.30000305175781","97.30000305175781","","1962-08-01T00:00:00Z","","0" +"NM-12075","0.8600000143051147","0.8600000143051147","","1984-01-27T00:00:00Z","","0" +"NM-06458","24.299999237060547","24.299999237060547","","1976-12-16T00:00:00Z","","0" +"NM-00687","50.849998474121094","50.849998474121094","","1957-09-25T00:00:00Z","","0" +"LC-006","3.6700000762939453","8.770000457763672","","2011-09-16T00:00:00Z","","-5.099999904632568" +"NM-02004","6.400000095367432","6.400000095367432","","1959-07-15T00:00:00Z","","0" +"NM-14082","188.5","188.5","","1954-02-03T00:00:00Z","","0" +"WL-0091","63.83333206176758","61.063331604003906","","2000-02-22T00:00:00Z","","2.7699999809265137" +"NM-00645","31.920000076293945","31.920000076293945","","1960-06-15T00:00:00Z","","0" +"NM-05217","158.77000427246094","158.77000427246094","","1974-01-15T00:00:00Z","","0" +"NM-07511","58.52000045776367","58.52000045776367","","1955-03-25T00:00:00Z","","0" +"NM-01971","7.5","7.5","","1967-01-15T00:00:00Z","","0" +"NM-09682","463.0199890136719","463.0199890136719","","1967-08-01T00:00:00Z","","0" +"DE-0094","90.04000091552734","90.04000091552734","","2003-10-13T00:00:00Z","","0" +"NM-02435","61.689998626708984","61.689998626708984","","1999-07-28T00:00:00Z","","0" +"NM-02314","8.600000381469727","8.600000381469727","","1994-12-15T00:00:00Z","","0" +"NM-28259","147.94000244140625","147.94000244140625","","1999-08-15T00:00:00Z","","0" +"NM-27264","62.56999969482422","62.56999969482422","","1957-01-09T00:00:00Z","","0" +"NM-03964","2.200000047683716","2.200000047683716","","2010-01-27T00:00:00Z","","0" +"NM-07888","659.6699829101562","659.6699829101562","","1975-06-18T00:00:00Z","","0" +"NM-24023","51","51","","1995-12-14T00:00:00Z","","0" +"NM-17618","11.020000457763672","11.020000457763672","","1933-02-11T00:00:00Z","","0" +"NM-02302","291.6000061035156","291.6000061035156","P","1979-03-06T00:00:00Z","","0" +"NM-12772","31.139999389648438","31.139999389648438","","1966-03-02T00:00:00Z","","0" +"NM-09511","10.550000190734863","10.550000190734863","","1957-08-27T00:00:00Z","","0" +"NM-01801","152.5800018310547","152.5800018310547","","1985-01-03T00:00:00Z","","0" +"NM-11500","154.0500030517578","154.0500030517578","","1981-01-28T00:00:00Z","","0" +"NM-28253","12.140000343322754","12.140000343322754","","1994-05-15T00:00:00Z","","0" +"EB-321","125","124.5","","1976-07-16T00:00:00Z","","0.5" +"NM-00253","18.84000015258789","18.84000015258789","","1988-01-25T00:00:00Z","","0" +"NM-01892","11.8100004196167","11.8100004196167","","2003-01-23T00:00:00Z","","0" +"NM-24818","23.920000076293945","23.920000076293945","","1962-02-15T00:00:00Z","","0" +"NM-27479","62.13999938964844","62.13999938964844","","1979-11-15T00:00:00Z","","0" +"NM-25940","50","50","","1975-03-13T00:00:00Z","","0" +"NM-20018","40.849998474121094","40.849998474121094","","1962-12-05T00:00:00Z","","0" +"NM-10307","386.6400146484375","386.6400146484375","","1989-01-19T00:00:00Z","","0" +"EB-483","323","323","P","1999-05-31T00:00:00Z","","0" +"NM-06676","13.100000381469727","13.100000381469727","","1968-06-15T00:00:00Z","","0" +"NM-22080","5.670000076293945","5.670000076293945","","1956-12-07T00:00:00Z","","0" +"DE-0109","35.560001373291016","35.560001373291016","","2008-01-02T00:00:00Z","","0" +"NM-16807","36.029998779296875","36.029998779296875","","1941-01-14T00:00:00Z","","0" +"NM-03419","27.25","27.25","","1990-02-07T00:00:00Z","","0" +"NM-18214","3.299999952316284","3.299999952316284","P","1977-02-01T00:00:00Z","","0" +"NM-02808","61.970001220703125","61.970001220703125","","1999-01-12T00:00:00Z","","0" +"NM-13558","33.34000015258789","33.34000015258789","","1986-02-07T00:00:00Z","","0" +"NM-03089","287.67999267578125","287.67999267578125","","2000-03-02T00:00:00Z","","0" +"NM-20451","193.97999572753906","193.97999572753906","","1998-12-16T00:00:00Z","","0" +"NM-01304","33.70000076293945","33.70000076293945","","1985-01-25T00:00:00Z","","0" +"NM-02678","79.27999877929688","79.27999877929688","","2000-01-06T00:00:00Z","","0" +"NM-05446","105.75","105.75","","1967-01-24T00:00:00Z","","0" +"NM-02794","77.72000122070312","77.72000122070312","","1966-01-11T00:00:00Z","","0" +"NM-03845","6.610000133514404","6.610000133514404","","2015-02-25T00:00:00Z","","0" +"NM-12384","44","44","","1981-01-14T00:00:00Z","","0" +"NM-03460","153.27000427246094","153.27000427246094","","1953-02-18T00:00:00Z","","0" +"NM-28044","397.6000061035156","397.6000061035156","","2007-03-16T00:00:00Z","","0" +"NM-00366","168.10000610351562","168.10000610351562","","1963-09-01T00:00:00Z","","0" +"NM-26753","199.10000610351562","199.10000610351562","","1956-02-21T00:00:00Z","","0" +"UC-0046","47.45000076293945","47.45000076293945","","1975-01-21T00:00:00Z","","0" +"NM-12808","15.1899995803833","15.1899995803833","","1940-01-01T00:00:00Z","","0" +"NM-00114","74.30999755859375","74.30999755859375","","1971-01-12T00:00:00Z","","0" +"NM-03341","5.869999885559082","5.869999885559082","Z","2009-08-26T00:00:00Z","","0" +"NM-09553","70.19000244140625","70.19000244140625","","1965-09-24T00:00:00Z","","0" +"SV-0024","120.19999694824219","118.28333282470703","","2016-01-30T00:00:00Z","","1.9166666269302368" +"NM-02005","6.699999809265137","6.699999809265137","","1965-07-15T00:00:00Z","","0" +"NM-08524","10","10","","1982-08-15T00:00:00Z","","0" +"NM-21489","15.279999732971191","15.279999732971191","R","1993-03-31T00:00:00Z","","0" +"NM-00176","40.400001525878906","40.400001525878906","","1946-09-05T00:00:00Z","","0" +"NM-02576","25.3700008392334","25.3700008392334","","1979-03-22T00:00:00Z","","0" +"NM-28251","70.87999725341797","70.87999725341797","","2004-06-04T00:00:00Z","","0" +"NM-02001","111.47000122070312","111.47000122070312","","1983-01-04T00:00:00Z","","0" +"EB-485","484","483","P","1996-03-31T00:00:00Z","","1" +"NM-13560","1.1299999952316284","1.1299999952316284","","1958-03-10T00:00:00Z","","0" +"NM-00099","88.55000305175781","88.55000305175781","","1993-01-11T00:00:00Z","","0" +"NM-02487","9.100000381469727","9.100000381469727","","1998-01-15T00:00:00Z","","0" +"NM-00716","363.8800048828125","363.8800048828125","","2009-03-03T00:00:00Z","","0" +"AB-0101","720.760009765625","720.760009765625","","2006-01-18T00:00:00Z","","" +"NM-01796","4.199999809265137","4.199999809265137","","1976-09-15T00:00:00Z","","0" +"EB-288","217.0399932861328","217.0399932861328","Z","2004-02-28T00:00:00Z","","0" +"NM-10238","41.95000076293945","41.95000076293945","","1955-01-07T00:00:00Z","","0" +"NM-06149","7.829999923706055","7.829999923706055","","1949-01-29T00:00:00Z","","0" +"BC-0011","59.849998474121094","59.849998474121094","","2017-01-19T00:00:00Z","","0" +"NM-02831","47.29999923706055","47.29999923706055","","1988-04-18T00:00:00Z","","0" +"NM-17716","8.260000228881836","8.260000228881836","","1940-12-03T00:00:00Z","","0" +"AB-0086","88.16999816894531","88.16999816894531","","2007-03-19T00:00:00Z","","" +"EB-148","274.1600036621094","272.3600158691406","","2000-12-12T00:00:00Z","","1.7999999523162842" +"NM-02993","21.59000015258789","21.59000015258789","","1963-01-02T00:00:00Z","","0" +"NM-02629","10.850000381469727","10.850000381469727","","1975-01-14T00:00:00Z","","0" +"NM-04796","34.47999954223633","34.47999954223633","","1950-01-17T00:00:00Z","","0" +"WL-0088","61.125","58.525001525878906","","2013-05-20T00:00:00Z","","2.5999999046325684" +"NM-02772","89.41000366210938","89.41000366210938","","2000-09-25T00:00:00Z","","0" +"NM-28258","177.60000610351562","177.60000610351562","","1979-04-25T00:00:00Z","","0" +"NM-08071","11.300000190734863","11.300000190734863","","1982-03-15T00:00:00Z","","0" +"NM-08940","6.940000057220459","6.940000057220459","","1957-04-08T00:00:00Z","","0" +"SA-0081","259.54998779296875","259.54998779296875","","2001-02-06T00:00:00Z","","" +"NM-08052","214.22999572753906","214.22999572753906","","1978-01-18T00:00:00Z","","0" +"NM-01986","7.900000095367432","7.900000095367432","","1948-03-15T00:00:00Z","","0" +"TV-218","213.02999877929688","212.42999267578125","","2011-09-08T00:00:00Z","","0.6000000238418579" +"AB-0069","152.83999633789062","152.83999633789062","","2006-07-19T00:00:00Z","","" +"NM-08955","78.12999725341797","78.12999725341797","","1976-02-19T00:00:00Z","","0" +"NM-02282","399.3800048828125","399.3800048828125","","1981-06-30T00:00:00Z","","0" +"NM-22122","4.409999847412109","4.409999847412109","Z","2010-02-01T00:00:00Z","","0" +"NM-20699","11.649999618530273","11.649999618530273","","1950-02-09T00:00:00Z","","0" +"NM-27207","78.55000305175781","78.55000305175781","","2008-10-15T00:00:00Z","","0" +"NM-28010","498.6400146484375","498.6400146484375","S","2015-05-15T00:00:00Z","","0" +"NM-16998","22.170000076293945","22.170000076293945","","1936-10-20T00:00:00Z","","0" +"NM-17033","65.5199966430664","65.5199966430664","","1962-01-05T00:00:00Z","","0" +"NM-27800","57.97999954223633","57.97999954223633","","1990-03-09T00:00:00Z","","0" +"NM-11331","10.069999694824219","10.069999694824219","","1982-08-02T00:00:00Z","","0" +"TB-0133","66.22000122070312","65.22000122070312","","2009-09-07T00:00:00Z","","1" +"NM-02974","183.8000030517578","183.8000030517578","","1991-02-26T00:00:00Z","","0" +"NM-04739","294.3299865722656","294.3299865722656","","1981-03-26T00:00:00Z","","0" +"WL-0091","46.04166793823242","43.27166748046875","","1997-05-07T00:00:00Z","","2.7699999809265137" +"NM-06634","214.3000030517578","214.3000030517578","","1972-06-06T00:00:00Z","","0" +"NM-28250","80.43000030517578","80.43000030517578","","1993-12-05T00:00:00Z","","0" +"NM-07730","-52.97999954223633","-52.97999954223633","","1908-06-23T00:00:00Z","","0" +"NM-02172","","","W","2014-01-15T00:00:00Z","","0" +"NM-11636","245.5800018310547","245.5800018310547","","1966-01-12T00:00:00Z","","0" +"NM-28018","486.2900085449219","486.2900085449219","S","2015-05-01T00:00:00Z","","0" +"SB-0299","119.70999908447266","119.70999908447266","","1997-11-30T00:00:00Z","","0" +"NM-13597","-37.959999084472656","-37.959999084472656","","1911-01-27T00:00:00Z","","0" +"NM-04677","2.1600000858306885","2.1600000858306885","","1952-09-06T00:00:00Z","","0" +"NM-02535","10.510000228881836","10.510000228881836","","1995-02-23T00:00:00Z","","0" +"NM-03329","23.360000610351562","23.360000610351562","","1994-06-14T00:00:00Z","","0" +"NM-07131","114.31999969482422","114.31999969482422","","2004-10-06T00:00:00Z","","0" +"NM-24457","14.930000305175781","14.930000305175781","","1973-05-31T00:00:00Z","","0" +"NM-27720","66.77999877929688","66.77999877929688","","1964-09-17T00:00:00Z","","0" +"SD-0214","38","38","","1962-11-07T00:00:00Z","","0" +"HS-088","0.3400000035762787","0.3400000035762787","","1939-03-29T00:00:00Z","","0" +"NM-05162","12.729999542236328","12.729999542236328","","1963-01-10T00:00:00Z","","0" +"NM-28259","128.8699951171875","128.8699951171875","","2008-04-25T00:00:00Z","","0" +"NM-28258","131.14999389648438","131.14999389648438","","1993-03-25T00:00:00Z","","0" +"NM-26714","62.099998474121094","62.099998474121094","","1956-08-08T00:00:00Z","","0" +"NM-02831","55.880001068115234","55.880001068115234","","1975-01-01T00:00:00Z","","0" +"NM-00279","145.91000366210938","145.91000366210938","","1969-01-27T00:00:00Z","","0" +"NM-01947","4.900000095367432","4.900000095367432","","1981-05-15T00:00:00Z","","0" +"NM-00261","16.700000762939453","16.700000762939453","","1957-04-26T00:00:00Z","","0" +"NM-05920","52.779998779296875","52.779998779296875","","1932-07-07T00:00:00Z","","0" +"NM-05681","130.3000030517578","130.3000030517578","S","1955-05-19T00:00:00Z","","0" +"NM-07225","196.9499969482422","196.9499969482422","","1975-08-01T00:00:00Z","","0" +"NM-08647","27.040000915527344","27.040000915527344","","1938-04-17T00:00:00Z","","0" +"NM-02512","13","13","","2006-10-03T00:00:00Z","","0" +"NM-26643","24.559999465942383","24.559999465942383","","2011-05-26T00:00:00Z","","0" +"NM-11076","58.150001525878906","58.150001525878906","S","1981-01-21T00:00:00Z","","0" +"NM-11920","1.409999966621399","1.409999966621399","","1942-08-18T00:00:00Z","","0" +"SA-0043","125.79000091552734","124.13999938964844","","2013-03-05T00:00:00Z","","1.649999976158142" +"NM-13313","-81.8499984741211","-81.8499984741211","","1915-07-31T00:00:00Z","","0" +"NM-17183","30.229999542236328","30.229999542236328","","1950-01-10T00:00:00Z","","0" +"NM-08822","-58.75","-58.75","","1906-04-18T00:00:00Z","","0" +"NM-02424","33.02000045776367","33.02000045776367","","1953-11-25T00:00:00Z","","0" +"NM-02269","34.75","34.75","","2001-01-19T00:00:00Z","","0" +"NM-19431","71.2300033569336","71.2300033569336","","1953-02-09T00:00:00Z","","0" +"NM-01027","309","309","","1974-01-03T00:00:00Z","","0" +"NM-00344","253.60000610351562","253.60000610351562","","1975-01-23T00:00:00Z","","0" +"NM-10640","-12.550000190734863","-12.550000190734863","","1915-08-10T00:00:00Z","","0" +"EB-220","130.00999450683594","130.00999450683594","","2003-02-13T00:00:00Z","","0" +"NM-03341","4.110000133514404","4.110000133514404","","1993-05-12T00:00:00Z","","0" +"EB-354","214.5399932861328","214.739990234375","","2012-09-12T00:00:00Z","","-0.20000000298023224" +"NM-00038","24.520000457763672","24.520000457763672","","1998-01-13T00:00:00Z","","0" +"NM-00448","97.41999816894531","97.41999816894531","","1975-01-07T00:00:00Z","","0" +"NM-00245","84.69000244140625","84.69000244140625","","1955-09-13T00:00:00Z","","0" +"NM-13017","13.850000381469727","13.850000381469727","","1959-12-10T00:00:00Z","","0" +"NM-11282","64.01000213623047","64.01000213623047","","1955-09-07T00:00:00Z","","0" +"NM-02281","22","22","","2001-06-21T00:00:00Z","","0" +"NM-24980","112.56999969482422","112.56999969482422","","1954-06-25T00:00:00Z","","0" +"NM-10295","49.599998474121094","49.599998474121094","","1952-01-11T00:00:00Z","","0" +"NM-28257","87.04000091552734","87.04000091552734","","1963-05-05T00:00:00Z","","0" +"NM-17336","52.5","52.5","","1953-01-24T00:00:00Z","","0" +"NM-07354","75.69000244140625","75.69000244140625","","1972-11-15T00:00:00Z","","0" +"NM-22529","253.7100067138672","253.7100067138672","","1958-01-28T00:00:00Z","","0" +"NM-05972","26","26","","1935-12-08T00:00:00Z","","0" +"NM-28255","13.010000228881836","13.010000228881836","","1990-01-15T00:00:00Z","","0" +"NM-02217","50.619998931884766","50.619998931884766","P","1960-04-05T00:00:00Z","","0" +"NM-13540","63.54999923706055","63.54999923706055","","1989-01-10T00:00:00Z","","0" +"NM-11432","41.9900016784668","41.9900016784668","","1976-03-24T00:00:00Z","","0" +"NM-03369","59.130001068115234","59.130001068115234","","2011-02-22T00:00:00Z","","0" +"NM-17626","82.11000061035156","82.11000061035156","","1955-05-26T00:00:00Z","","0" +"NM-23082","7.599999904632568","7.599999904632568","","2014-06-13T00:00:00Z","","0" +"NM-02794","48.939998626708984","48.939998626708984","","1947-03-15T00:00:00Z","","0" +"NM-03419","29.010000228881836","29.010000228881836","Z","1991-08-30T00:00:00Z","","0" +"DE-0113","34.11000061035156","34.11000061035156","","2006-01-04T00:00:00Z","","0" +"NM-20289","43.66999816894531","43.66999816894531","","1949-01-15T00:00:00Z","","0" +"NM-11754","55.099998474121094","55.099998474121094","","1945-01-12T00:00:00Z","","0" +"NM-17254","27.75","27.75","","1940-01-20T00:00:00Z","","0" +"SO-0249","8.359999656677246","7.149999618530273","","2019-09-27T00:00:00Z","0001-01-01T14:25:00Z","1.2100000381469727" +"LJ-004","48.20000076293945","46.60000228881836","","2013-04-16T00:00:00Z","","1.600000023841858" +"EB-161","441","439.75","","1989-07-31T00:00:00Z","","1.25" +"NM-00196","36.900001525878906","36.900001525878906","","1998-01-08T00:00:00Z","","0" +"NM-20310","52.20000076293945","52.20000076293945","","1945-01-26T00:00:00Z","","0" +"NM-02005","7.900000095367432","7.900000095367432","","2002-02-15T00:00:00Z","","0" +"SB-0299","111.58000183105469","111.58000183105469","","1967-05-20T00:00:00Z","","0" +"NM-02195","116.12000274658203","116.12000274658203","","1973-01-25T00:00:00Z","","0" +"NM-18174","70.66000366210938","70.66000366210938","","1987-02-04T00:00:00Z","","0" +"NM-23241","247.74000549316406","247.74000549316406","Z","1998-01-05T00:00:00Z","","0" +"NM-00474","52.650001525878906","52.650001525878906","","1958-01-15T00:00:00Z","","0" +"AB-0107","415.510009765625","415.510009765625","","1998-10-15T00:00:00Z","","" +"NM-03050","230.88999938964844","230.88999938964844","","2011-04-23T00:00:00Z","","0" +"NM-02026","56.5","56.5","","1952-10-23T00:00:00Z","","0" +"NM-11815","125.73999786376953","125.73999786376953","","1958-07-24T00:00:00Z","","0" +"NM-05099","21.59000015258789","21.59000015258789","","1968-01-29T00:00:00Z","","0" +"EB-484","696.0499877929688","695.4500122070312","P","1999-04-30T00:00:00Z","","0.6000000238418579" +"NM-28253","21.049999237060547","21.049999237060547","","2005-05-25T00:00:00Z","","0" +"NM-03223","371.57000732421875","371.57000732421875","","2000-12-11T00:00:00Z","","0" +"NM-02000","116.69000244140625","116.69000244140625","","1988-01-27T00:00:00Z","","0" +"NM-02101","3.9000000953674316","3.9000000953674316","","1990-07-15T00:00:00Z","","0" +"EB-244","101.16999816894531","101.16999816894531","","2004-04-27T00:00:00Z","","0" +"NM-02185","13.170000076293945","13.170000076293945","","1995-01-26T00:00:00Z","","0" +"NM-02004","7.300000190734863","7.300000190734863","","1947-10-15T00:00:00Z","","0" +"NM-28254","116.08999633789062","116.08999633789062","","1992-08-05T00:00:00Z","","0" +"NM-28254","81.0999984741211","81.0999984741211","","2008-09-05T00:00:00Z","","0" +"NM-09176","40.630001068115234","40.630001068115234","R","1950-07-14T00:00:00Z","","0" +"BC-0022","63.279998779296875","63.279998779296875","","2014-06-05T00:00:00Z","","0" +"NM-13557","24.899999618530273","24.899999618530273","P","1959-03-24T00:00:00Z","","0" +"NM-00185","9.899999618530273","9.899999618530273","","1971-02-15T00:00:00Z","","0" +"NM-02620","12.600000381469727","12.600000381469727","","2002-12-15T00:00:00Z","","0" +"NM-02004","7.400000095367432","7.400000095367432","","1952-08-15T00:00:00Z","","0" +"WS-007","3.319999933242798","3.319999933242798","","2012-08-29T00:00:00Z","","0" +"NM-02116","84.4800033569336","84.4800033569336","","1955-03-17T00:00:00Z","","0" +"EB-366","191.8000030517578","188.8000030517578","","2011-01-27T00:00:00Z","","3" +"NM-18207","198.10000610351562","198.10000610351562","","1967-01-26T00:00:00Z","","0" +"NM-00638","34.38999938964844","34.38999938964844","","2006-01-06T00:00:00Z","","0" +"NM-19997","78.0999984741211","78.0999984741211","","1943-02-02T00:00:00Z","","0" +"NM-13623","21.889999389648438","21.889999389648438","","1950-03-09T00:00:00Z","","0" +"NM-20607","127.87000274658203","127.87000274658203","","1982-01-26T00:00:00Z","","0" +"NM-02197","12.300000190734863","12.300000190734863","","1999-05-04T00:00:00Z","","0" +"NM-07828","29.450000762939453","29.450000762939453","","1930-06-01T00:00:00Z","","0" +"NM-03797","163.02999877929688","163.02999877929688","","1966-01-05T00:00:00Z","","0" +"NM-11770","48.31999969482422","48.31999969482422","","1938-11-30T00:00:00Z","","0" +"NM-21636","","","D","2005-08-31T00:00:00Z","","0" +"NM-00068","45.34000015258789","45.34000015258789","","1956-09-27T00:00:00Z","","0" +"NM-14221","-20.639999389648438","-20.639999389648438","","1912-12-14T00:00:00Z","","0" +"NM-00185","12.399999618530273","12.399999618530273","","2000-08-15T00:00:00Z","","0" +"NM-02225","86.33000183105469","86.33000183105469","A","2012-03-09T00:00:00Z","","0" +"NM-20576","67.05999755859375","67.05999755859375","","1959-09-21T00:00:00Z","","0" +"NM-01947","2.700000047683716","2.700000047683716","","2000-09-15T00:00:00Z","","0" +"NM-28252","59.290000915527344","59.290000915527344","","1972-03-05T00:00:00Z","","0" +"NM-15185","256.4200134277344","256.4200134277344","","1955-02-08T00:00:00Z","","0" +"UC-0034","93.25","93.25","","2014-08-06T00:00:00Z","","0" +"NM-14196","-26.40999984741211","-26.40999984741211","","1910-03-03T00:00:00Z","","0" +"NM-06782","72.0999984741211","72.0999984741211","","1965-11-02T00:00:00Z","","0" +"NM-03429","40.93000030517578","40.93000030517578","","1994-11-09T00:00:00Z","","0" +"SB-0112","164.52999877929688","164.52999877929688","","1995-02-08T00:00:00Z","","0" +"NM-13121","4.400000095367432","4.400000095367432","","1984-01-06T00:00:00Z","","0" +"NM-23309","101.47000122070312","101.47000122070312","","1981-07-20T00:00:00Z","","0" +"NM-01780","153.27000427246094","153.27000427246094","","1985-01-03T00:00:00Z","","0" +"PC-002","140.8000030517578","139.1999969482422","","2021-09-30T00:00:00Z","0001-01-01T10:38:00Z","1.600000023841858" +"NM-00862","11.149999618530273","11.149999618530273","","1991-02-07T00:00:00Z","","0" +"DE-0276","87.41999816894531","87.41999816894531","","2018-03-23T00:00:00Z","","0" +"NM-02004","9.399999618530273","9.399999618530273","","2001-03-15T00:00:00Z","","0" +"EB-209","66.66999816894531","65.41999816894531","","1984-05-04T00:00:00Z","","1.25" +"NM-02152","11.899999618530273","11.899999618530273","","2003-05-15T00:00:00Z","","0" +"NM-03632","119.25","119.25","","1991-01-26T00:00:00Z","","0" +"SM-0014","279.3299865722656","278.3299865722656","","2008-08-12T00:00:00Z","","1" +"NM-21522","304.8399963378906","304.8399963378906","","1992-03-04T00:00:00Z","","0" +"NM-14957","184.02999877929688","184.02999877929688","","1980-01-16T00:00:00Z","","0" +"EB-270","223.14999389648438","223.14999389648438","Z","1998-06-11T00:00:00Z","","0" +"NM-28250","80.4000015258789","80.4000015258789","","1999-10-15T00:00:00Z","","0" +"NM-20120","56.56999969482422","56.56999969482422","","1948-10-25T00:00:00Z","","0" +"NM-00094","0.8999999761581421","0.8999999761581421","","1978-02-21T00:00:00Z","","0" +"NM-01534","48.880001068115234","48.880001068115234","","1981-09-03T00:00:00Z","","0" +"NM-04459","145.75","145.75","","1992-12-10T00:00:00Z","","0" +"NM-23940","104.06999969482422","104.06999969482422","","1961-12-16T00:00:00Z","","0" +"NM-28250","103.33000183105469","103.33000183105469","","1971-04-05T00:00:00Z","","0" +"NM-14535","83.9800033569336","83.9800033569336","","1973-02-26T00:00:00Z","","0" +"NM-09902","34.599998474121094","34.599998474121094","","1960-01-11T00:00:00Z","","0" +"NM-00627","63.290000915527344","63.290000915527344","","1990-01-03T00:00:00Z","","0" +"NM-08646","51.45000076293945","51.45000076293945","","1963-09-24T00:00:00Z","","0" +"NM-08457","60.900001525878906","60.900001525878906","","1961-02-02T00:00:00Z","","0" +"NM-06956","255.10000610351562","255.10000610351562","","2009-03-26T00:00:00Z","","0" +"NM-17200","0.8199999928474426","0.8199999928474426","","1939-01-12T00:00:00Z","","0" +"NM-13665","-10.239999771118164","-10.239999771118164","","1905-10-20T00:00:00Z","","0" +"BC-0168","315.6499938964844","315.6499938964844","","2015-06-04T00:00:00Z","","0" +"NM-05976","53.70000076293945","53.70000076293945","","1934-12-29T00:00:00Z","","0" +"DE-0239","110.37000274658203","110.37000274658203","","2011-05-10T00:00:00Z","","0" +"NM-08127","22.25","22.25","","1991-03-25T00:00:00Z","","0" +"NM-28266","575.6900024414062","575.6900024414062","","2017-03-10T00:00:00Z","","0" +"NM-12481","36.2400016784668","36.2400016784668","","1950-01-16T00:00:00Z","","0" +"NM-08842","28.450000762939453","28.450000762939453","","1947-11-17T00:00:00Z","","0" +"NM-10509","58.189998626708984","58.189998626708984","","1952-01-07T00:00:00Z","","0" +"NM-22679","4.289999961853027","4.289999961853027","Z","2008-04-29T00:00:00Z","","0" +"NM-20310","61.47999954223633","61.47999954223633","","1965-02-15T00:00:00Z","","0" +"NM-03195","55.70000076293945","55.70000076293945","","2004-02-25T00:00:00Z","","0" +"NM-02587","48.279998779296875","48.279998779296875","","1963-08-30T00:00:00Z","","0" +"NM-02487","10.300000190734863","10.300000190734863","","1980-11-15T00:00:00Z","","0" +"NM-13792","-8.220000267028809","-8.220000267028809","","1911-12-19T00:00:00Z","","0" +"NM-01890","92.62000274658203","92.62000274658203","","2010-11-04T00:00:00Z","","0" +"UC-0108","70.37000274658203","70.37000274658203","","2011-01-27T00:00:00Z","","0" +"NM-14002","-18.329999923706055","-18.329999923706055","","1907-11-30T00:00:00Z","","0" +"SO-0250","9.329999923706055","7.840000152587891","","2019-03-06T00:00:00Z","","1.4900000095367432" +"NM-01490","123.51000213623047","123.51000213623047","","2006-07-19T00:00:00Z","","0" +"NM-27457","8.630000114440918","8.630000114440918","","1974-01-24T00:00:00Z","","0" +"NM-11578","26.290000915527344","26.290000915527344","","1936-03-16T00:00:00Z","","0" +"NM-01921","35.58000183105469","35.58000183105469","","1969-01-14T00:00:00Z","","0" +"NM-03762","41.06999969482422","41.06999969482422","","1958-11-15T00:00:00Z","","0" +"NM-01872","10.600000381469727","10.600000381469727","","1978-05-15T00:00:00Z","","0" +"NM-02163","26","26","","2015-06-15T00:00:00Z","","0" +"EB-482","342","342","Z","2000-02-28T00:00:00Z","","0" +"NM-02702","65.06999969482422","65.06999969482422","","1983-09-06T00:00:00Z","","0" +"NM-10297","49.380001068115234","49.380001068115234","","1953-03-16T00:00:00Z","","0" +"NM-27467","52.47999954223633","52.47999954223633","","2010-01-13T00:00:00Z","","0" +"DE-0118","","","D","2015-07-29T00:00:00Z","","0" +"NM-11697","145.22999572753906","145.22999572753906","","1999-01-06T00:00:00Z","","0" +"NM-28258","193.6699981689453","193.6699981689453","","1981-07-15T00:00:00Z","","0" +"NM-02807","94.16000366210938","94.16000366210938","","1963-09-04T00:00:00Z","","0" +"NM-01029","405.3399963378906","405.3399963378906","","1990-01-03T00:00:00Z","","0" +"NM-01948","7.099999904632568","7.099999904632568","","1962-01-15T00:00:00Z","","0" +"NM-14535","92.3499984741211","92.3499984741211","","1978-06-15T00:00:00Z","","0" +"NM-12922","18.600000381469727","18.600000381469727","","1976-04-09T00:00:00Z","","0" +"NM-03444","53.38999938964844","53.38999938964844","Z","1997-04-07T00:00:00Z","","0" +"NM-09501","126.41000366210938","126.41000366210938","","1949-01-08T00:00:00Z","","0" +"NM-02812","9.720000267028809","9.720000267028809","","2005-02-10T00:00:00Z","","0" +"NM-13653","-8.510000228881836","-8.510000228881836","","1925-09-11T00:00:00Z","","0" +"NM-11928","0.4399999976158142","0.4399999976158142","","1963-11-01T00:00:00Z","","0" +"NM-21293","12.470000267028809","12.470000267028809","","1957-07-08T00:00:00Z","","0" +"NM-28252","40.099998474121094","40.099998474121094","","2003-12-05T00:00:00Z","","0" +"NM-28253","12.59000015258789","12.59000015258789","","2006-01-13T00:00:00Z","","0" +"NM-16979","76.91999816894531","76.91999816894531","","1963-01-22T00:00:00Z","","0" +"NM-04470","44.650001525878906","44.650001525878906","","1951-07-20T00:00:00Z","","0" +"NM-02158","7.5","7.5","","1994-03-15T00:00:00Z","","0" +"NM-05762","46.099998474121094","46.099998474121094","","1949-11-01T00:00:00Z","","0" +"NM-09993","19.459999084472656","19.459999084472656","","1954-08-17T00:00:00Z","","0" +"NM-14363","139.5500030517578","139.5500030517578","","1981-02-24T00:00:00Z","","0" +"EB-231","130.44000244140625","129.94000244140625","","2014-02-26T00:00:00Z","","0.5" +"WL-0018","31.110000610351562","29.3700008392334","","2022-06-15T00:00:00Z","0001-01-01T13:20:00Z","1.7400000095367432" +"NM-09902","14.100000381469727","14.100000381469727","","1956-01-04T00:00:00Z","","0" +"NM-16675","15.720000267028809","15.720000267028809","","1935-05-21T00:00:00Z","","0" +"NM-13254","8.399999618530273","8.399999618530273","","1963-01-11T00:00:00Z","","0" +"NM-01897","10.970000267028809","10.970000267028809","","1999-08-04T00:00:00Z","","0" +"NM-17207","51.630001068115234","51.630001068115234","","1957-01-16T00:00:00Z","","0" +"NM-14891","161.3699951171875","161.3699951171875","","1985-01-08T00:00:00Z","","0" +"NM-03906","62","62","","1955-01-01T00:00:00Z","","0" +"NM-16119","28.389999389648438","28.389999389648438","","1994-04-13T00:00:00Z","","0" +"NM-05808","414.7900085449219","414.7900085449219","","1963-03-19T00:00:00Z","","0" +"EB-013","120.1500015258789","126.95000457763672","","1991-07-01T00:00:00Z","","-6.800000190734863" +"NM-14228","32.41999816894531","32.41999816894531","","1931-12-15T00:00:00Z","","0" +"NM-01899","54.220001220703125","54.220001220703125","","1998-01-23T00:00:00Z","","0" +"NM-17030","52.88999938964844","52.88999938964844","","1955-01-22T00:00:00Z","","0" +"NM-11891","17.479999542236328","17.479999542236328","","1951-01-22T00:00:00Z","","0" +"NM-15216","165.5","165.5","P","1965-03-04T00:00:00Z","","0" +"NM-12421","-66.83999633789062","-66.83999633789062","","1932-12-02T00:00:00Z","","0" +"NM-02548","50.66999816894531","50.66999816894531","","1991-12-05T00:00:00Z","","0" +"NM-01086","126.9000015258789","126.9000015258789","","1991-11-20T00:00:00Z","","0" +"NM-03403","6.480000019073486","6.480000019073486","","2012-08-28T00:00:00Z","","0" +"NM-13862","-14.859999656677246","-14.859999656677246","","1916-02-02T00:00:00Z","","0" +"NM-21242","2.5999999046325684","2.5999999046325684","Z","2006-02-17T00:00:00Z","","0" +"NM-03432","56.15999984741211","56.15999984741211","","1985-08-13T00:00:00Z","","0" +"NM-02341","183.49000549316406","183.49000549316406","","2012-03-16T00:00:00Z","","0" +"NM-02396","6.800000190734863","6.800000190734863","","1962-06-15T00:00:00Z","","0" +"NM-21679","354.2300109863281","354.2300109863281","","2005-11-09T00:00:00Z","","0" +"NM-27224","58.08000183105469","58.08000183105469","","1960-01-25T00:00:00Z","","0" +"NM-21308","22.469999313354492","22.469999313354492","","1960-11-10T00:00:00Z","","0" +"NM-06805","92.5199966430664","92.5199966430664","","2004-04-01T00:00:00Z","","0" +"NM-09289","89.97000122070312","89.97000122070312","","1951-07-25T00:00:00Z","","0" +"NM-28258","179.57000732421875","179.57000732421875","","2005-08-15T00:00:00Z","","0" +"SB-0299","125.25","125.25","","1974-10-15T00:00:00Z","","0" +"NM-01889","13.710000038146973","13.710000038146973","","2001-10-03T00:00:00Z","","0" +"DE-0122","36.09000015258789","36.09000015258789","","2006-01-11T00:00:00Z","","0" +"BC-0130","313.2799987792969","313.2799987792969","","2013-12-26T00:00:00Z","","0" +"NM-02620","8.399999618530273","8.399999618530273","","1999-06-15T00:00:00Z","","0" +"NM-02158","6.199999809265137","6.199999809265137","","1993-11-15T00:00:00Z","","0" +"TV-121","121.0999984741211","119.98999786376953","","2012-03-14T00:00:00Z","","1.1100000143051147" +"NM-12496","12.970000267028809","12.970000267028809","","1960-01-28T00:00:00Z","","0" +"NM-05361","7.659999847412109","7.659999847412109","","1998-07-28T00:00:00Z","","0" +"NM-01985","7","7","","1999-06-15T00:00:00Z","","0" +"NM-01954","357.1700134277344","357.1700134277344","","1994-02-21T00:00:00Z","","0" +"NM-00494","25.299999237060547","25.299999237060547","","1956-09-08T00:00:00Z","","0" +"NM-02282","401.8699951171875","401.8699951171875","","1978-06-01T00:00:00Z","","0" +"NM-24225","75","75","","1978-07-08T00:00:00Z","","0" +"NM-03372","127.91000366210938","127.91000366210938","","1980-01-31T00:00:00Z","","0" +"NM-28022","485.45001220703125","485.45001220703125","S","2015-05-06T00:00:00Z","","0" +"NM-28253","36.540000915527344","36.540000915527344","","1956-09-15T00:00:00Z","","0" +"NM-11397","61.529998779296875","61.529998779296875","","1955-05-30T00:00:00Z","","0" +"NM-03373","29.479999542236328","29.479999542236328","","1959-07-07T00:00:00Z","","0" +"NM-01932","349.3299865722656","349.3299865722656","","1970-01-28T00:00:00Z","","0" +"NM-28252","39.79999923706055","39.79999923706055","","2003-12-15T00:00:00Z","","0" +"NM-21285","8.539999961853027","8.539999961853027","","1960-10-19T00:00:00Z","","0" +"NM-10583","32.43000030517578","32.43000030517578","","1956-03-13T00:00:00Z","","0" +"BC-0151","113.01000213623047","113.01000213623047","","2012-06-12T00:00:00Z","","0" +"NM-05305","106.30000305175781","106.30000305175781","","1965-01-08T00:00:00Z","","0" +"DE-0070","201.1699981689453","199.3199920654297","","2006-04-18T00:00:00Z","","1.850000023841858" +"NM-02256","4.300000190734863","4.300000190734863","","1986-05-15T00:00:00Z","","0" +"NM-28017","486.45001220703125","486.45001220703125","S","2015-04-17T00:00:00Z","","0" +"SO-0153","12.34000015258789","11.5600004196167","","2021-08-19T00:00:00Z","0001-01-01T14:55:00Z","0.7799999713897705" +"NM-13036","8.100000381469727","8.100000381469727","","1974-01-24T00:00:00Z","","0" +"NM-05246","84.88999938964844","84.88999938964844","","1955-12-12T00:00:00Z","","0" +"NM-03275","18.950000762939453","18.950000762939453","","1998-02-04T00:00:00Z","","0" +"NM-13106","6.659999847412109","6.659999847412109","","1983-08-26T00:00:00Z","","0" +"NM-02284","15.460000038146973","15.460000038146973","","2011-06-07T00:00:00Z","","0" +"NM-28251","86.86000061035156","86.86000061035156","","1981-12-25T00:00:00Z","","0" +"NM-02477","61.099998474121094","61.099998474121094","","1992-12-04T00:00:00Z","","0" +"NM-01888","10.329999923706055","10.329999923706055","","2009-11-25T00:00:00Z","","0" +"NM-18538","315.6099853515625","315.6099853515625","","2015-01-21T00:00:00Z","","0" +"NM-18326","242.75","242.75","","1982-01-20T00:00:00Z","","0" +"BC-0242","","206.72999572753906","","2021-10-18T00:00:00Z","","2.1600000858306885" +"NM-20534","132.75","132.75","","1977-01-07T00:00:00Z","","0" +"NM-17209","46.9900016784668","46.9900016784668","","1949-09-26T00:00:00Z","","0" +"NM-28256","145.7899932861328","145.7899932861328","","2020-11-25T00:00:00Z","","0" +"NM-09207","-76.08000183105469","-76.08000183105469","","1908-08-26T00:00:00Z","","0" +"NM-13944","-10.239999771118164","-10.239999771118164","","1911-09-01T00:00:00Z","","0" +"NM-08234","33.18000030517578","33.18000030517578","","1939-01-12T00:00:00Z","","0" +"NM-05292","38.790000915527344","38.790000915527344","","1936-07-11T00:00:00Z","","0" +"NM-07121","98.04000091552734","98.04000091552734","","2001-01-25T00:00:00Z","","0" +"NM-20451","194.44000244140625","194.44000244140625","","1999-03-25T00:00:00Z","","0" +"NM-28259","156.1999969482422","156.1999969482422","","2021-05-25T00:00:00Z","","0" +"NM-06128","193.42999267578125","193.42999267578125","","1960-01-12T00:00:00Z","","0" +"NM-09000","-47.20000076293945","-47.20000076293945","","1908-12-29T00:00:00Z","","0" +"NM-02765","94.27999877929688","94.27999877929688","Z","1993-01-06T00:00:00Z","","0" +"NM-14351","592.6900024414062","592.6900024414062","","1972-07-01T00:00:00Z","","0" +"NM-12392","260.7699890136719","260.7699890136719","","1963-07-01T00:00:00Z","","0" +"AB-0065","173.0800018310547","173.0800018310547","","2009-06-02T00:00:00Z","","" +"NM-02311","100.62000274658203","100.62000274658203","","1959-01-07T00:00:00Z","","0" +"NM-01829","322.2799987792969","322.2799987792969","","2006-02-22T00:00:00Z","","0" +"NM-13291","72.8499984741211","72.8499984741211","","1966-01-13T00:00:00Z","","0" +"NM-02152","10","10","","1998-03-15T00:00:00Z","","0" +"NM-05367","102.11000061035156","102.11000061035156","","1956-11-08T00:00:00Z","","0" +"NM-17593","28.18000030517578","28.18000030517578","","1934-07-17T00:00:00Z","","0" +"NM-05752","59.529998779296875","59.529998779296875","","1950-09-23T00:00:00Z","","0" +"NM-16831","5.909999847412109","5.909999847412109","","1939-09-21T00:00:00Z","","0" +"NM-17454","62.279998779296875","62.279998779296875","","1961-06-08T00:00:00Z","","0" +"NM-11381","44.45000076293945","44.45000076293945","R","1971-03-09T00:00:00Z","","0" +"NM-02068","60.33000183105469","60.33000183105469","","1981-01-05T00:00:00Z","","0" +"DE-0064","19.329999923706055","17.43000030517578","","2013-06-01T00:00:00Z","","1.899999976158142" +"NM-01361","88.5","88.5","","1965-01-21T00:00:00Z","","0" +"NM-11527","71.1500015258789","71.1500015258789","","1973-02-13T00:00:00Z","","0" +"SB-0299","137.24000549316406","137.24000549316406","","2016-03-20T00:00:00Z","","0" +"NM-01955","4.099999904632568","4.099999904632568","","2002-01-15T00:00:00Z","","0" +"NM-21583","4.340000152587891","4.340000152587891","Z","2006-08-14T00:00:00Z","","0" +"SV-0100","84.30000305175781","82.3800048828125","","2017-08-05T00:00:00Z","","1.9199999570846558" +"SO-0234","5.940000057220459","5.039999961853027","","2021-05-08T00:00:00Z","0001-01-01T10:41:00Z","0.8999999761581421" +"NM-20452","195.3300018310547","195.3300018310547","","2015-09-16T00:00:00Z","","0" +"NM-03378","30","30","","1984-01-12T00:00:00Z","","0" +"NM-14859","30.899999618530273","30.899999618530273","","1978-01-31T00:00:00Z","","0" +"NM-07320","79.19000244140625","79.19000244140625","","1967-09-18T00:00:00Z","","0" +"NM-01780","163.14999389648438","163.14999389648438","","1970-01-28T00:00:00Z","","0" +"NM-18041","55.72999954223633","55.72999954223633","","2004-01-13T00:00:00Z","","0" +"NM-16689","32.7400016784668","32.7400016784668","","1953-11-16T00:00:00Z","","0" +"NM-01971","8.600000381469727","8.600000381469727","","1951-02-15T00:00:00Z","","0" +"NM-12297","41.90999984741211","41.90999984741211","P","1954-07-13T00:00:00Z","","0" +"NM-28015","498.760009765625","498.760009765625","S","2015-06-03T00:00:00Z","","0" +"NM-11990","-40.27000045776367","-40.27000045776367","","1908-09-23T00:00:00Z","","0" +"NM-10355","13.710000038146973","13.710000038146973","","1949-01-19T00:00:00Z","","0" +"NM-08661","135.83999633789062","135.83999633789062","","1961-01-23T00:00:00Z","","0" +"NM-02043","6.400000095367432","6.400000095367432","","1975-02-15T00:00:00Z","","0" +"NM-00754","76.05999755859375","76.05999755859375","","2013-01-09T00:00:00Z","","0" +"NM-13161","-24.100000381469727","-24.100000381469727","","1911-10-18T00:00:00Z","","0" +"NM-00935","276.4200134277344","276.4200134277344","","1990-01-04T00:00:00Z","","0" +"NM-25098","620","620","","1971-01-01T00:00:00Z","","0" +"NM-17716","5.21999979019165","5.21999979019165","","1949-12-22T00:00:00Z","","0" +"NM-12665","36.33000183105469","36.33000183105469","R","1971-03-04T00:00:00Z","","0" +"NM-13273","10.260000228881836","10.260000228881836","","1966-01-14T00:00:00Z","","0" +"NM-05855","18.75","18.75","","1973-10-31T00:00:00Z","","0" +"NM-17200","2.059999942779541","2.059999942779541","","1937-04-22T00:00:00Z","","0" +"NM-08180","44.630001068115234","44.630001068115234","","1966-09-26T00:00:00Z","","0" +"NM-04925","49.08000183105469","49.08000183105469","","1964-01-08T00:00:00Z","","0" +"NM-27281","45.029998779296875","45.029998779296875","","1971-01-13T00:00:00Z","","0" +"SB-0299","114.05999755859375","114.05999755859375","","1970-11-20T00:00:00Z","","0" +"NM-22648","168.66000366210938","168.66000366210938","","1960-03-02T00:00:00Z","","0" +"NM-15121","85.80999755859375","85.80999755859375","Z","1994-02-03T00:00:00Z","","0" +"NM-11388","46.130001068115234","46.130001068115234","","1980-07-22T00:00:00Z","","0" +"NM-03416","79.73999786376953","79.73999786376953","","2003-09-24T00:00:00Z","","0" +"DE-0199","52.5","52.5","","2016-03-29T00:00:00Z","","0" +"NM-00687","54","54","","1960-03-23T00:00:00Z","","0" +"NM-15158","14.829999923706055","14.829999923706055","","1952-01-13T00:00:00Z","","0" +"NM-02043","6.300000190734863","6.300000190734863","","1977-10-15T00:00:00Z","","0" +"AB-0111","34.810001373291016","34.810001373291016","Z","1999-01-07T00:00:00Z","","" +"NM-23282","23.690000534057617","23.690000534057617","","2006-07-18T00:00:00Z","","0" +"NM-04470","39.939998626708984","39.939998626708984","","1946-03-29T00:00:00Z","","0" +"BC-0162","216.5","216.5","","2018-12-20T00:00:00Z","","0" +"NM-05176","162.60000610351562","162.60000610351562","P","1959-06-16T00:00:00Z","","0" +"NM-01505","144.4600067138672","144.4600067138672","","1986-10-08T00:00:00Z","","0" +"NM-10407","62.83000183105469","62.83000183105469","","1961-01-16T00:00:00Z","","0" +"NM-17424","56.150001525878906","56.150001525878906","","1938-11-12T00:00:00Z","","0" +"NM-28255","98.20999908447266","98.20999908447266","","1976-10-05T00:00:00Z","","0" +"NM-28022","486.1000061035156","486.1000061035156","S","2015-04-17T00:00:00Z","","0" +"NM-10376","18.59000015258789","18.59000015258789","","1938-01-18T00:00:00Z","","0" +"NM-02005","6.699999809265137","6.699999809265137","","1981-04-15T00:00:00Z","","0" +"NM-22786","23.709999084472656","23.709999084472656","","1953-02-03T00:00:00Z","","0" +"NM-16891","38.47999954223633","38.47999954223633","","1966-04-14T00:00:00Z","","0" +"NM-03390","32.310001373291016","32.310001373291016","Z","2010-02-24T00:00:00Z","","0" +"QU-121","178.8000030517578","177.33999633789062","","2014-03-05T00:00:00Z","","1.4600000381469727" +"NM-20611","166.24000549316406","166.24000549316406","","1955-10-28T00:00:00Z","","0" +"NM-13864","50.209999084472656","50.209999084472656","","1957-01-02T00:00:00Z","","0" +"EB-163","695","693.7999877929688","","1984-09-30T00:00:00Z","","1.2000000476837158" +"NM-01868","8.100000381469727","8.100000381469727","","1989-01-15T00:00:00Z","","0" +"NM-14566","69.20999908447266","69.20999908447266","","1990-11-20T00:00:00Z","","0" +"NM-02191","95.19999694824219","95.19999694824219","","1992-02-07T00:00:00Z","","0" +"NM-16220","52.52000045776367","52.52000045776367","","1961-01-12T00:00:00Z","","0" +"NM-03388","42.060001373291016","42.060001373291016","S","1987-03-19T00:00:00Z","","0" +"NM-10099","133.72999572753906","133.72999572753906","","1975-12-19T00:00:00Z","","0" +"NM-08189","7.900000095367432","7.900000095367432","","1959-08-15T00:00:00Z","","0" +"NM-03385","36.7400016784668","36.7400016784668","","1988-12-27T00:00:00Z","","0" +"SB-0299","141.32000732421875","141.32000732421875","","1979-06-15T00:00:00Z","","0" +"NM-01286","69.54000091552734","69.54000091552734","","1947-01-03T00:00:00Z","","0" +"NM-02006","12.600000381469727","12.600000381469727","","1956-05-15T00:00:00Z","","0" +"NM-17009","42.45000076293945","42.45000076293945","","1961-01-16T00:00:00Z","","0" +"NM-01796","6.900000095367432","6.900000095367432","","1956-08-15T00:00:00Z","","0" +"NM-01890","84.94999694824219","84.94999694824219","","2013-09-17T00:00:00Z","","0" +"DE-0114","","","D","2016-10-20T00:00:00Z","","0" +"NM-05493","63.79999923706055","63.79999923706055","","1935-02-03T00:00:00Z","","0" +"NM-09983","267.989990234375","267.989990234375","","1955-01-07T00:00:00Z","","0" +"NM-16990","5.309999942779541","5.309999942779541","","1940-05-21T00:00:00Z","","0" +"NM-01035","47.599998474121094","47.599998474121094","","1969-01-15T00:00:00Z","","0" +"NM-03266","168.1199951171875","168.1199951171875","","1993-02-02T00:00:00Z","","0" +"NM-20289","43.68000030517578","43.68000030517578","","1953-05-30T00:00:00Z","","0" +"NM-00366","102.58000183105469","102.58000183105469","","1975-03-01T00:00:00Z","","0" +"NM-10589","-25.670000076293945","-25.670000076293945","","1943-01-12T00:00:00Z","","0" +"NM-07583","92.0999984741211","92.0999984741211","","1975-01-07T00:00:00Z","","0" +"NM-03421","31.8700008392334","31.8700008392334","","1984-08-03T00:00:00Z","","0" +"NM-01868","7.900000095367432","7.900000095367432","","1997-02-23T00:00:00Z","","0" +"NM-02804","122.63999938964844","122.63999938964844","","1967-01-27T00:00:00Z","","0" +"NM-16863","23.350000381469727","23.350000381469727","","1962-01-08T00:00:00Z","","0" +"NM-02256","5","5","","1949-08-15T00:00:00Z","","0" +"NM-01791","240.5500030517578","240.5500030517578","","1963-12-31T00:00:00Z","","0" +"NM-14031","-19.479999542236328","-19.479999542236328","","1911-11-11T00:00:00Z","","0" +"NM-00228","173.0500030517578","173.0500030517578","","1994-02-15T00:00:00Z","","0" +"NM-21538","27.489999771118164","27.489999771118164","","1993-06-15T00:00:00Z","","0" +"NM-28254","70.47000122070312","70.47000122070312","","1989-09-15T00:00:00Z","","0" +"NM-28255","61.18000030517578","61.18000030517578","","1987-05-25T00:00:00Z","","0" +"NM-02237","56.4900016784668","56.4900016784668","","1945-09-12T00:00:00Z","","0" +"UC-0129","","","O","2007-03-05T00:00:00Z","","0" +"NM-02004","12.800000190734863","12.800000190734863","S","1976-12-15T00:00:00Z","","0" +"AB-0216","239","239","","1974-04-01T00:00:00Z","","0" +"NM-13725","-17.170000076293945","-17.170000076293945","","1913-07-17T00:00:00Z","","0" +"NM-04976","8.300000190734863","8.300000190734863","","1978-01-06T00:00:00Z","","0" +"NM-02256","8.600000381469727","8.600000381469727","","1972-04-15T00:00:00Z","","0" +"NM-02180","14.529999732971191","14.529999732971191","","2009-01-05T00:00:00Z","","0" +"SB-0442","170.3000030517578","170.3000030517578","","2008-10-15T00:00:00Z","","0" +"NM-05340","76.47000122070312","76.47000122070312","","1951-07-21T00:00:00Z","","0" +"NM-28255","112","112","","1955-09-05T00:00:00Z","","0" +"NM-02384","12.300000190734863","12.300000190734863","","1964-11-15T00:00:00Z","","0" +"NM-28258","193.6999969482422","193.6999969482422","","1982-09-05T00:00:00Z","","0" +"NM-28255","104.61000061035156","104.61000061035156","","2019-05-24T00:00:00Z","","0" +"NM-28255","156.2100067138672","156.2100067138672","","1982-07-25T00:00:00Z","","0" +"NM-03089","294","294","","2003-04-02T00:00:00Z","","0" +"NM-02622","157.5399932861328","157.5399932861328","","1962-03-01T00:00:00Z","","0" +"EB-153","340.2200012207031","337.0199890136719","","2003-03-27T00:00:00Z","","3.200000047683716" +"NM-17075","41.88999938964844","41.88999938964844","","1950-01-10T00:00:00Z","","0" +"NM-05516","11.699999809265137","11.699999809265137","","1973-05-15T00:00:00Z","","0" +"NM-01926","7.300000190734863","7.300000190734863","","1962-01-15T00:00:00Z","","0" +"NM-17716","5.150000095367432","5.150000095367432","","1947-11-17T00:00:00Z","","0" +"NM-28254","74.93000030517578","74.93000030517578","","1952-09-25T00:00:00Z","","0" +"NM-06344","141.60000610351562","141.60000610351562","R","1944-06-22T00:00:00Z","","0" +"NM-11889","2.4600000381469727","2.4600000381469727","","1966-03-01T00:00:00Z","","0" +"NM-13823","19.729999542236328","19.729999542236328","","1937-09-30T00:00:00Z","","0" +"NM-01884","12.720000267028809","12.720000267028809","","2012-06-29T00:00:00Z","","0" +"SB-0088","161.52999877929688","161.52999877929688","","1970-01-08T00:00:00Z","","0" +"NM-00367","116.69000244140625","116.69000244140625","Z","1994-02-17T00:00:00Z","","0" +"NM-21252","2.3399999141693115","2.3399999141693115","Z","2009-06-02T00:00:00Z","","0" +"NM-10460","63.5099983215332","63.5099983215332","","1967-01-05T00:00:00Z","","0" +"DE-0108","37.849998474121094","37.849998474121094","","2007-08-08T00:00:00Z","","0" +"NM-28252","63.63999938964844","63.63999938964844","","1981-04-15T00:00:00Z","","0" +"NM-03391","29.09000015258789","29.09000015258789","","2011-07-08T00:00:00Z","","0" +"NM-09026","-4.179999828338623","-4.179999828338623","","1994-02-08T00:00:00Z","","0" +"SB-0275","234.08999633789062","234.08999633789062","","2017-02-28T00:00:00Z","","0" +"NM-22707","188.14999389648438","188.14999389648438","","2011-05-16T00:00:00Z","","0" +"NM-21915","68.43000030517578","68.43000030517578","R","1991-05-22T00:00:00Z","","0" +"NM-06997","133.8800048828125","133.8800048828125","","1975-01-27T00:00:00Z","","0" +"NM-28023","485.8299865722656","485.8299865722656","S","2015-04-24T00:00:00Z","","0" +"NM-01791","304.5899963378906","304.5899963378906","","1992-03-17T00:00:00Z","","0" +"NM-05542","123.83999633789062","123.83999633789062","","1986-03-05T00:00:00Z","","0" +"NM-01791","311.260009765625","311.260009765625","","1986-09-22T00:00:00Z","","0" +"NM-02836","24.5","24.5","","2007-02-05T00:00:00Z","","0" +"NM-02100","107.29000091552734","107.29000091552734","","1959-02-04T00:00:00Z","","0" +"NM-18519","147.99000549316406","147.99000549316406","","1982-02-18T00:00:00Z","","0" +"NM-10691","161.08999633789062","161.08999633789062","","1986-02-25T00:00:00Z","","0" +"NM-26278","155.60000610351562","155.60000610351562","","1972-01-07T00:00:00Z","","0" +"AB-0093","500.9700012207031","500.9700012207031","","2010-06-29T00:00:00Z","","" +"NM-12104","60.529998779296875","60.529998779296875","","1966-02-15T00:00:00Z","","0" +"NM-12521","590","590","","1935-04-01T00:00:00Z","","0" +"NM-01006","293.9100036621094","293.9100036621094","","1955-01-29T00:00:00Z","","0" +"NM-26677","178.6999969482422","178.6999969482422","","1960-11-09T00:00:00Z","","0" +"NM-21854","30","30","","1999-09-09T00:00:00Z","","0" +"NM-21678","356.1700134277344","356.1700134277344","","2005-05-19T00:00:00Z","","0" +"NM-00353","75.66999816894531","75.66999816894531","","1980-01-03T00:00:00Z","","0" +"RA-004","7.440000057220459","5.440000057220459","AA","2023-09-13T00:00:00Z","0001-01-01T14:30:00Z","2" +"NM-03403","5.380000114440918","5.380000114440918","","1993-06-16T00:00:00Z","","0" +"NM-00781","32.04999923706055","32.04999923706055","","2003-03-03T00:00:00Z","","0" +"NM-05059","155.5","155.5","","1987-01-30T00:00:00Z","","0" +"NM-10238","42.40999984741211","42.40999984741211","","1978-01-04T00:00:00Z","","0" +"UC-0014","78.04000091552734","78.04000091552734","","2010-01-01T00:00:00Z","","0" +"NM-02199","12.949999809265137","12.949999809265137","","2007-02-06T00:00:00Z","","0" +"NM-10099","138.8000030517578","138.8000030517578","","1970-03-25T00:00:00Z","","0" +"NM-03355","30.389999389648438","30.389999389648438","","1988-09-08T00:00:00Z","","0" +"NM-10074","75.9000015258789","75.9000015258789","","1996-02-01T00:00:00Z","","0" +"NM-10127","42.58000183105469","42.58000183105469","","1981-03-31T00:00:00Z","","0" +"NM-03069","193.75","193.75","","1977-01-19T00:00:00Z","","0" +"NM-28010","498.8500061035156","498.8500061035156","S","2015-06-01T00:00:00Z","","0" +"AB-0038","345.8299865722656","345.8299865722656","","2000-12-11T00:00:00Z","","" +"NM-24616","47.88999938964844","47.88999938964844","","1992-12-09T00:00:00Z","","0" +"NM-01246","101.18000030517578","101.18000030517578","R","1991-11-06T00:00:00Z","","0" +"NM-01644","158.8699951171875","158.8699951171875","","1990-11-27T00:00:00Z","","0" +"SO-0186","6.179999828338623","5.429999828338623","","2021-05-07T00:00:00Z","0001-01-01T17:20:00Z","0.75" +"NM-28012","479.7300109863281","479.7300109863281","S","2015-06-03T00:00:00Z","","0" +"NM-06391","84.93000030517578","84.93000030517578","","1948-12-20T00:00:00Z","","0" +"NM-02164","10.25","10.25","","1998-01-17T00:00:00Z","","0" +"NM-03443","39.290000915527344","39.290000915527344","","2004-03-23T00:00:00Z","","0" +"NM-02991","76.3499984741211","76.3499984741211","S","1989-08-08T00:00:00Z","","0" +"NM-27805","187.94000244140625","187.94000244140625","","2015-01-21T00:00:00Z","","0" +"NM-12882","86.69000244140625","86.69000244140625","","1963-01-07T00:00:00Z","","0" +"NM-00687","52.20000076293945","52.20000076293945","","1958-07-24T00:00:00Z","","0" +"NM-02987","64.31999969482422","64.31999969482422","","1988-01-13T00:00:00Z","","0" +"NM-07600","19.920000076293945","19.920000076293945","P","1976-01-30T00:00:00Z","","0" +"SB-0299","146.5399932861328","146.5399932861328","","2013-06-20T00:00:00Z","","0" +"NM-02658","213.9499969482422","213.9499969482422","","1946-01-12T00:00:00Z","","0" +"NM-27209","87.41999816894531","87.41999816894531","","1999-07-07T00:00:00Z","","0" +"AB-0053","52.61000061035156","52.61000061035156","","1999-09-30T00:00:00Z","","0" +"NM-02732","126.9000015258789","126.9000015258789","","1976-08-24T00:00:00Z","","0" +"NM-08410","32.7400016784668","32.7400016784668","R","1956-01-06T00:00:00Z","","0" +"NM-14350","-40.27000045776367","-40.27000045776367","","1911-01-22T00:00:00Z","","0" +"SB-0299","140.02999877929688","140.02999877929688","","1979-10-05T00:00:00Z","","0" +"NM-28416","75.69000244140625","75.69000244140625","","2017-12-22T00:00:00Z","","0" +"NM-01898","53.40999984741211","53.40999984741211","","1985-12-05T00:00:00Z","","0" +"NM-03628","33.400001525878906","33.400001525878906","","2003-03-12T00:00:00Z","","0" +"UC-0033","96.23999786376953","96.23999786376953","","1993-04-13T00:00:00Z","","0" +"NM-28252","55.790000915527344","55.790000915527344","","1973-01-15T00:00:00Z","","0" +"NM-06206","422.3699951171875","422.3699951171875","","1983-01-11T00:00:00Z","","0" +"NM-23252","285","285","","1982-05-01T00:00:00Z","","0" +"NM-27384","60.939998626708984","60.939998626708984","","2007-02-08T00:00:00Z","","0" +"NM-12403","-10.239999771118164","-10.239999771118164","","1907-03-19T00:00:00Z","","0" +"AB-0105","411.0799865722656","411.0799865722656","","2010-02-08T00:00:00Z","","" +"NM-02017","11.699999809265137","11.699999809265137","","1964-10-15T00:00:00Z","","0" +"NM-17470","26.719999313354492","26.719999313354492","","1948-11-22T00:00:00Z","","0" +"NM-06893","17.270000457763672","17.270000457763672","","1955-01-11T00:00:00Z","","0" +"EB-483","13.5","13.5","","1984-06-30T00:00:00Z","","0" +"TV-274","88.5","86.3499984741211","","2005-12-09T00:00:00Z","","2.1500000953674316" +"NM-12496","11.989999771118164","11.989999771118164","","1968-11-18T00:00:00Z","","0" +"NM-01279","88.51000213623047","88.51000213623047","","1961-02-15T00:00:00Z","","0" +"NM-02969","82.27999877929688","82.27999877929688","","1990-02-07T00:00:00Z","","0" +"NM-01948","9.899999618530273","9.899999618530273","","1964-09-15T00:00:00Z","","0" +"NM-07923","34.45000076293945","34.45000076293945","","1980-02-22T00:00:00Z","","0" +"NM-09148","338.6600036621094","338.6600036621094","","1942-06-22T00:00:00Z","","0" +"NM-21370","140.7100067138672","140.7100067138672","","2003-04-08T00:00:00Z","","0" +"NM-02181","10.239999771118164","10.239999771118164","","1997-02-04T00:00:00Z","","0" +"NM-00606","68.06999969482422","68.06999969482422","","1961-01-23T00:00:00Z","","0" +"NM-21719","45.38999938964844","45.38999938964844","S","1983-01-26T00:00:00Z","","0" +"NM-27626","64.98999786376953","64.98999786376953","","1960-01-07T00:00:00Z","","0" +"NM-08720","-51.81999969482422","-51.81999969482422","","1909-11-10T00:00:00Z","","0" +"NM-07121","101.76000213623047","101.76000213623047","","2006-01-03T00:00:00Z","","0" +"NM-04534","84.44999694824219","84.44999694824219","","1958-11-13T00:00:00Z","","0" +"SB-0299","136.02999877929688","136.02999877929688","","1980-10-25T00:00:00Z","","0" +"NM-05705","114.73999786376953","114.73999786376953","","1953-01-07T00:00:00Z","","0" +"NM-05347","14.300000190734863","14.300000190734863","","1979-02-15T00:00:00Z","","0" +"NM-04361","43.599998474121094","43.599998474121094","","1969-01-16T00:00:00Z","","0" +"NM-17047","43.38999938964844","43.38999938964844","","1952-01-22T00:00:00Z","","0" +"NM-01426","130.83999633789062","130.83999633789062","","2007-08-22T00:00:00Z","","0" +"NM-08854","42.150001525878906","42.150001525878906","","1971-01-25T00:00:00Z","","0" +"NM-14802","102.9000015258789","102.9000015258789","","1984-01-05T00:00:00Z","","0" +"NM-16655","132.0399932861328","132.0399932861328","","1979-04-25T00:00:00Z","","0" +"NM-00498","65.5","65.5","","1975-08-01T00:00:00Z","","0" +"NM-22692","6.71999979019165","6.71999979019165","Z","2008-11-03T00:00:00Z","","0" +"NM-11925","90.9000015258789","90.9000015258789","","1992-01-06T00:00:00Z","","0" +"NM-03303","120.12000274658203","120.12000274658203","","1979-01-19T00:00:00Z","","0" +"NM-24129","14.09000015258789","14.09000015258789","","1986-01-02T00:00:00Z","","0" +"NM-12986","88.0199966430664","88.0199966430664","R","1961-01-19T00:00:00Z","","0" +"NM-09536","-125.73999786376953","-125.73999786376953","","1907-09-06T00:00:00Z","","0" +"NM-27657","134.5","134.5","","1972-01-26T00:00:00Z","","0" +"UC-0034","93.51000213623047","93.51000213623047","","2013-08-09T00:00:00Z","","0" +"NM-13254","7.25","7.25","","1959-04-22T00:00:00Z","","0" +"NM-03240","82.66999816894531","82.66999816894531","","1958-06-02T00:00:00Z","","0" +"NM-14535","94.95999908447266","94.95999908447266","","1973-09-14T00:00:00Z","","0" +"NM-08759","27.850000381469727","27.850000381469727","","1986-01-15T00:00:00Z","","0" +"NM-13900","6.75","6.75","","1962-06-08T00:00:00Z","","0" +"NM-06475","128.38999938964844","128.38999938964844","","1983-01-07T00:00:00Z","","0" +"NM-09682","468.55999755859375","468.55999755859375","","1966-06-01T00:00:00Z","","0" +"WL-0065","9.859999656677246","7.159999847412109","","2017-10-04T00:00:00Z","","2.700000047683716" +"NM-11672","179.97000122070312","179.97000122070312","","1961-01-24T00:00:00Z","","0" +"NM-28253","24.139999389648438","24.139999389648438","","1983-01-25T00:00:00Z","","0" +"EB-482","419.6700134277344","419.6700134277344","Z","2004-07-31T00:00:00Z","","0" +"AB-0212","155.8300018310547","155.8300018310547","","2004-07-28T00:00:00Z","","" +"NM-12008","46.41999816894531","46.41999816894531","","1952-01-21T00:00:00Z","","0" +"NM-01948","8","8","","1972-07-15T00:00:00Z","","0" +"NM-26630","19.989999771118164","19.989999771118164","","2011-06-21T00:00:00Z","","0" +"NM-02172","354.2799987792969","354.2799987792969","","2007-03-15T00:00:00Z","","0" +"EB-164","404.7699890136719","402.8699951171875","","2010-09-22T00:00:00Z","","1.899999976158142" +"NM-06731","345.29998779296875","345.29998779296875","","2011-04-20T00:00:00Z","","0" +"NM-06098","23.90999984741211","23.90999984741211","","1974-10-29T00:00:00Z","","0" +"NM-22131","142.38999938964844","142.38999938964844","","2002-05-10T00:00:00Z","","0" +"TB-0059","57.119998931884766","55.709999084472656","","2011-03-02T00:00:00Z","","1.409999966621399" +"NM-02620","12","12","","1959-01-15T00:00:00Z","","0" +"AB-0069","156.1999969482422","156.1999969482422","","2010-10-07T00:00:00Z","","" +"NM-11271","60.66999816894531","60.66999816894531","","1974-01-15T00:00:00Z","","0" +"NM-02188","148.47999572753906","148.47999572753906","","1979-01-09T00:00:00Z","","0" +"AB-0162","488.8699951171875","488.8699951171875","","2002-01-28T00:00:00Z","","" +"NM-28250","94.52999877929688","94.52999877929688","","2021-03-05T00:00:00Z","","0" +"NM-16962","25.799999237060547","25.799999237060547","","1946-01-24T00:00:00Z","","0" +"AB-0210","173.11000061035156","173.11000061035156","","1996-10-24T00:00:00Z","","0" +"BC-0148","329.9800109863281","329.9800109863281","","2015-06-01T00:00:00Z","","0" +"NM-08391","393.1000061035156","393.1000061035156","","1984-02-16T00:00:00Z","","0" +"NM-12082","61.52000045776367","61.52000045776367","","1981-01-13T00:00:00Z","","0" +"AB-0053","49.5","49.5","","1998-07-30T00:00:00Z","","" +"NM-28255","-4.159999847412109","-4.159999847412109","","1950-01-25T00:00:00Z","","0" +"NM-19906","35.27000045776367","35.27000045776367","","1948-01-19T00:00:00Z","","0" +"NM-02758","314.9800109863281","314.9800109863281","","1982-11-22T00:00:00Z","","0" +"SA-0032","281.1400146484375","279.8800048828125","","2013-02-28T00:00:00Z","","1.2599999904632568" +"SB-0299","137.49000549316406","137.49000549316406","","2011-12-15T00:00:00Z","","0" +"NM-02101","7.400000095367432","7.400000095367432","","1991-03-15T00:00:00Z","","0" +"NM-00384","29.479999542236328","29.479999542236328","","1953-11-17T00:00:00Z","","0" +"NM-10530","136.0500030517578","136.0500030517578","","1975-05-19T00:00:00Z","","0" +"NM-21522","308.17999267578125","308.17999267578125","","1990-08-01T00:00:00Z","","0" +"NM-10870","15.600000381469727","15.600000381469727","","1958-07-01T00:00:00Z","","0" +"NM-01899","49.459999084472656","49.459999084472656","","1999-03-03T00:00:00Z","","0" +"BC-0011","57.04999923706055","57.04999923706055","","2016-06-01T00:00:00Z","","0" +"NM-06676","8.399999618530273","8.399999618530273","","1963-08-15T00:00:00Z","","0" +"NM-21317","53.959999084472656","53.959999084472656","","1998-02-24T00:00:00Z","","0" +"NM-08735","56.84000015258789","56.84000015258789","","1981-01-13T00:00:00Z","","0" +"NM-13920","-6.539999961853027","-6.539999961853027","","1914-01-28T00:00:00Z","","0" +"SB-0076","203.3000030517578","203.3000030517578","","1994-02-08T00:00:00Z","","0" +"NM-00385","39.58000183105469","39.58000183105469","","1953-07-22T00:00:00Z","","0" +"NM-12511","44.599998474121094","44.599998474121094","","1991-03-26T00:00:00Z","","0" +"NM-26726","212.2100067138672","212.2100067138672","","1968-03-26T00:00:00Z","","0" +"NM-09341","27.719999313354492","27.719999313354492","","1939-12-17T00:00:00Z","","0" +"NM-01889","13.510000228881836","13.510000228881836","","1998-01-23T00:00:00Z","","0" +"EB-357","234.55799865722656","232.55799865722656","","2002-01-18T00:00:00Z","","2" +"NM-11928","-0.3100000023841858","-0.3100000023841858","","1947-11-05T00:00:00Z","","0" +"NM-21286","96.30999755859375","96.30999755859375","","2005-10-12T00:00:00Z","","0" +"NM-23010","338.2300109863281","338.2300109863281","T","1986-02-27T00:00:00Z","","0" +"BC-0346","","201.10000610351562","","2021-10-27T00:00:00Z","","1.5" +"NM-12751","129.75999450683594","129.75999450683594","","1956-09-10T00:00:00Z","","0" +"NM-28259","113.19999694824219","113.19999694824219","","1983-11-15T00:00:00Z","","0" +"NM-28258","142.0500030517578","142.0500030517578","","1997-04-05T00:00:00Z","","0" +"NM-01891","47.369998931884766","47.369998931884766","","2002-07-25T00:00:00Z","","0" +"NM-01251","69.51000213623047","69.51000213623047","","1950-04-18T00:00:00Z","","0" +"SB-0288","71.81999969482422","71.81999969482422","","1985-01-25T00:00:00Z","","0" +"NM-00079","54.959999084472656","54.959999084472656","","2013-01-10T00:00:00Z","","0" +"AB-0093","496.760009765625","496.760009765625","","2008-04-02T00:00:00Z","","" +"NM-10140","11.949999809265137","11.949999809265137","","1941-06-09T00:00:00Z","","0" +"NM-01056","74.19000244140625","74.19000244140625","","1995-03-29T00:00:00Z","","0" +"NM-01239","33.58000183105469","33.58000183105469","","1961-05-11T00:00:00Z","","0" +"NM-13092","9.859999656677246","9.859999656677246","","1968-09-18T00:00:00Z","","0" +"NM-03057","79.62000274658203","79.62000274658203","","1984-01-18T00:00:00Z","","0" +"NM-13122","10.850000381469727","10.850000381469727","","1958-01-21T00:00:00Z","","0" +"NM-11998","13.640000343322754","13.640000343322754","","1945-01-11T00:00:00Z","","0" +"NM-01791","304.75","304.75","","1988-02-24T00:00:00Z","","0" +"NM-08865","32.810001373291016","32.810001373291016","","1981-02-25T00:00:00Z","","0" +"AB-0124","545.1599731445312","545.1599731445312","","2008-10-16T00:00:00Z","","" +"NM-06911","178.6199951171875","178.6199951171875","","1971-02-04T00:00:00Z","","0" +"NM-05221","189","189","P","1959-03-19T00:00:00Z","","0" +"SB-0299","134.02999877929688","134.02999877929688","","1997-07-15T00:00:00Z","","0" +"NM-00247","35.040000915527344","35.040000915527344","","1993-01-07T00:00:00Z","","0" +"NM-14571","144.0500030517578","144.0500030517578","R","1976-06-02T00:00:00Z","","0" +"DE-0019","96.33999633789062","94.03999328613281","","2021-05-19T00:00:00Z","0001-01-01T15:05:00Z","2.299999952316284" +"NM-05267","68.75","68.75","","1950-05-16T00:00:00Z","","0" +"NM-04969","84.30000305175781","84.30000305175781","","1972-03-08T00:00:00Z","","0" +"NM-02352","7","7","","1984-05-15T00:00:00Z","","0" +"SB-0299","128.60000610351562","128.60000610351562","","1972-08-30T00:00:00Z","","0" +"EB-276","200","200","","1971-08-12T00:00:00Z","","0" +"NM-21361","8.109999656677246","8.109999656677246","","1953-08-12T00:00:00Z","","0" +"NM-00634","62.150001525878906","62.150001525878906","","1989-01-07T00:00:00Z","","0" +"NM-27780","19.93000030517578","19.93000030517578","","1982-03-17T00:00:00Z","","0" +"NM-09696","47.150001525878906","47.150001525878906","","1947-07-18T00:00:00Z","","0" +"QU-074","","","D","2012-10-29T00:00:00Z","","2.700000047683716" +"EB-288","112.66000366210938","112.66000366210938","","1976-06-15T00:00:00Z","","0" +"NM-13254","11.779999732971191","11.779999732971191","","1957-07-29T00:00:00Z","","0" +"SO-0250","12","10.510000228881836","","2021-01-13T00:00:00Z","","1.4900000095367432" +"NM-02694","333.2900085449219","333.2900085449219","","1980-01-10T00:00:00Z","","0" +"NM-10081","-40.27000045776367","-40.27000045776367","","1907-01-24T00:00:00Z","","0" +"SA-0035","201.60000610351562","200","","2010-11-11T00:00:00Z","","1.600000023841858" +"NM-00600","71.27999877929688","71.27999877929688","","2000-01-05T00:00:00Z","","0" +"NM-00041","196.2100067138672","196.2100067138672","","1958-08-14T00:00:00Z","","0" +"NM-01042","26.030000686645508","26.030000686645508","","2012-02-29T00:00:00Z","","0" +"NM-02736","28.350000381469727","28.350000381469727","","1949-01-21T00:00:00Z","","0" +"NM-20061","52.72999954223633","52.72999954223633","","1957-03-18T00:00:00Z","","0" +"NM-13777","24.889999389648438","24.889999389648438","Z","1994-02-15T00:00:00Z","","0" +"NM-28252","42.63999938964844","42.63999938964844","","2009-02-05T00:00:00Z","","0" +"NM-20699","43.4900016784668","43.4900016784668","","1975-02-11T00:00:00Z","","0" +"NM-26598","40","40","","1972-10-02T00:00:00Z","","0" +"NM-01947","5.400000095367432","5.400000095367432","","1971-12-15T00:00:00Z","","0" +"NM-01796","4.900000095367432","4.900000095367432","","1970-10-15T00:00:00Z","","0" +"NM-16675","13.479999542236328","13.479999542236328","","1934-03-02T00:00:00Z","","0" +"NM-01986","6.800000190734863","6.800000190734863","","1966-07-15T00:00:00Z","","0" +"NM-13190","124.54000091552734","124.54000091552734","Z","1989-10-27T00:00:00Z","","0" +"NM-09477","40.060001373291016","40.060001373291016","","1981-01-16T00:00:00Z","","0" +"NM-07393","152.50999450683594","152.50999450683594","","1958-01-20T00:00:00Z","","0" +"NM-28254","113.77999877929688","113.77999877929688","","1966-05-25T00:00:00Z","","0" +"NM-03411","305.19000244140625","305.19000244140625","Z","1999-04-01T00:00:00Z","","0" +"NM-21569","4","4","","1959-04-16T00:00:00Z","","0" +"NM-23026","49.849998474121094","49.849998474121094","","1947-02-03T00:00:00Z","","0" +"AB-0122","542.1500244140625","542.1500244140625","","1999-08-24T00:00:00Z","","" +"NM-13414","71.13999938964844","71.13999938964844","","1955-09-09T00:00:00Z","","0" +"NM-14107","86.61000061035156","86.61000061035156","R","1971-04-07T00:00:00Z","","0" +"NM-11322","0.6600000262260437","0.6600000262260437","","1973-06-21T00:00:00Z","","0" +"NM-17168","43.060001373291016","43.060001373291016","","1947-01-16T00:00:00Z","","0" +"NM-00846","324.2300109863281","324.2300109863281","","2005-02-02T00:00:00Z","","0" +"NM-11331","11.430000305175781","11.430000305175781","","1972-06-26T00:00:00Z","","0" +"NM-22466","144","144","T","1984-09-14T00:00:00Z","","0" +"NM-28259","100.31999969482422","100.31999969482422","","1978-12-15T00:00:00Z","","0" +"NM-13213","5.849999904632568","5.849999904632568","","1969-01-22T00:00:00Z","","0" +"NM-01534","51.279998779296875","51.279998779296875","","1988-08-15T00:00:00Z","","0" +"NM-16465","59.95000076293945","59.95000076293945","","1971-12-13T00:00:00Z","","0" +"NM-11922","67.69000244140625","67.69000244140625","","1943-01-19T00:00:00Z","","0" +"NM-10099","146.9499969482422","146.9499969482422","","1982-10-25T00:00:00Z","","0" +"SB-0299","145.63999938964844","145.63999938964844","","2009-07-20T00:00:00Z","","0" +"NM-00207","32.900001525878906","32.900001525878906","","1954-05-04T00:00:00Z","","0" +"NM-05549","52.189998626708984","52.189998626708984","","1988-02-11T00:00:00Z","","0" +"NM-23644","750","750","","1995-06-10T00:00:00Z","","0" +"NM-04294","26.920000076293945","26.920000076293945","","1961-01-09T00:00:00Z","","0" +"NM-21544","371.4599914550781","371.4599914550781","","1992-06-08T00:00:00Z","","0" +"NM-12353","34.27000045776367","34.27000045776367","","1960-09-14T00:00:00Z","","0" +"QU-068","28.899999618530273","26.25","","2012-01-20T00:00:00Z","","2.6500000953674316" +"NM-08854","26.530000686645508","26.530000686645508","","1958-12-29T00:00:00Z","","0" +"TO-0396","102.5999984741211","102.5999984741211","","1950-02-03T00:00:00Z","","0" +"NM-22619","380.7099914550781","380.7099914550781","","2015-11-20T00:00:00Z","","0" +"NM-11113","-26.40999984741211","-26.40999984741211","","1910-06-13T00:00:00Z","","0" +"NM-19997","78.1500015258789","78.1500015258789","P","1952-07-30T00:00:00Z","","0" +"NM-03403","4.639999866485596","4.639999866485596","X","1997-06-17T00:00:00Z","","0" +"NM-14405","35.70000076293945","35.70000076293945","","1974-01-08T00:00:00Z","","0" +"DE-0082","90.16999816894531","90.16999816894531","","2009-04-30T00:00:00Z","","0" +"NM-02831","68.06999969482422","68.06999969482422","","1982-08-01T00:00:00Z","","0" +"NM-26657","17.649999618530273","17.649999618530273","","2013-02-27T00:00:00Z","","0" +"NM-17716","5.320000171661377","5.320000171661377","","1951-06-20T00:00:00Z","","0" +"EB-609","264.79998779296875","264.79998779296875","","2006-08-09T00:00:00Z","","0" +"NM-28250","91.7300033569336","91.7300033569336","","2011-12-22T00:00:00Z","","0" +"NM-18184","42.220001220703125","42.220001220703125","","1982-02-23T00:00:00Z","","0" +"NM-02164","11.720000267028809","11.720000267028809","","2008-05-12T00:00:00Z","","0" +"NM-28250","106.56999969482422","106.56999969482422","","1974-11-05T00:00:00Z","","0" +"EB-338","185.11000061035156","185.11000061035156","","2007-02-22T00:00:00Z","","0" +"NM-23327","107","107","","1973-03-01T00:00:00Z","","0" +"NM-23205","52.060001373291016","52.060001373291016","Z","1998-01-05T00:00:00Z","","0" +"NM-01986","7.800000190734863","7.800000190734863","","1966-10-15T00:00:00Z","","0" +"NM-28257","73.4000015258789","73.4000015258789","","1977-03-25T00:00:00Z","","0" +"DE-0110","40.709999084472656","40.709999084472656","","2009-03-02T00:00:00Z","","0" +"NM-02209","103.94000244140625","103.94000244140625","","1981-02-01T00:00:00Z","","0" +"NM-16863","26.579999923706055","26.579999923706055","","1957-06-11T00:00:00Z","","0" +"NM-00805","41.5","41.5","","1984-01-05T00:00:00Z","","0" +"NM-07653","69.36000061035156","69.36000061035156","","1955-11-16T00:00:00Z","","0" +"NM-28259","122.95999908447266","122.95999908447266","","1961-06-05T00:00:00Z","","0" +"NM-04348","275.989990234375","275.989990234375","","1968-02-02T00:00:00Z","","0" +"NM-02724","9.869999885559082","9.869999885559082","","1975-01-08T00:00:00Z","","0" +"BW-0742","39.29999923706055","39.29999923706055","","1948-12-23T00:00:00Z","","0" +"NM-28258","118.66000366210938","118.66000366210938","","2006-12-05T00:00:00Z","","0" +"NM-00498","55.869998931884766","55.869998931884766","","2008-07-11T00:00:00Z","","0" +"NM-02287","6.869999885559082","6.869999885559082","","2010-01-25T00:00:00Z","","0" +"NM-07719","41.959999084472656","41.959999084472656","","1938-05-17T00:00:00Z","","0" +"NM-28253","22.540000915527344","22.540000915527344","","1984-12-15T00:00:00Z","","0" +"NM-28257","59.970001220703125","59.970001220703125","","1973-04-15T00:00:00Z","","0" +"NM-16675","20.290000915527344","20.290000915527344","","1933-06-10T00:00:00Z","","0" +"NM-03112","318.79998779296875","318.79998779296875","","1997-01-21T00:00:00Z","","0" +"BC-0073","246.16000366210938","246.16000366210938","","2012-12-10T00:00:00Z","","0" +"NM-28250","83.33000183105469","83.33000183105469","","2007-04-16T00:00:00Z","","0" +"NM-12280","-5.619999885559082","-5.619999885559082","","1907-12-19T00:00:00Z","","0" +"NM-02017","6.300000190734863","6.300000190734863","","1966-08-15T00:00:00Z","","0" +"NM-01194","68.94999694824219","68.94999694824219","","1999-02-22T00:00:00Z","","0" +"NM-02116","109.37000274658203","109.37000274658203","","1979-01-16T00:00:00Z","","0" +"NM-13233","8.520000457763672","8.520000457763672","","1958-07-29T00:00:00Z","","0" +"NM-09943","58.43000030517578","58.43000030517578","","1981-01-13T00:00:00Z","","0" +"NM-14031","-24.100000381469727","-24.100000381469727","","1908-12-07T00:00:00Z","","0" +"DE-0134","81.58999633789062","81.58999633789062","","2011-11-29T00:00:00Z","","0" +"EB-263","5.659999847412109","5.659999847412109","","2005-02-15T00:00:00Z","","0" +"NM-10963","88.05000305175781","88.05000305175781","","1960-01-19T00:00:00Z","","0" +"EB-607","200.07000732421875","200.07000732421875","","2014-01-27T00:00:00Z","","0" +"NM-16538","10.079999923706055","10.079999923706055","","1951-11-28T00:00:00Z","","0" +"NM-18347","201.5","201.5","","1959-06-09T00:00:00Z","","0" +"NM-01269","78.62000274658203","78.62000274658203","","1999-08-27T00:00:00Z","","0" +"NM-27979","26","26","","1986-08-08T00:00:00Z","","0" +"NM-27822","13.390000343322754","13.390000343322754","","1966-02-09T00:00:00Z","","0" +"NM-02288","9.680000305175781","9.680000305175781","","2003-12-18T00:00:00Z","","0" +"NM-23907","30.979999542236328","30.979999542236328","","2003-02-11T00:00:00Z","","0" +"NM-06348","65.47000122070312","65.47000122070312","","1967-01-23T00:00:00Z","","0" +"NM-17757","85.25","85.25","","1982-03-26T00:00:00Z","","0" +"NM-11422","232.67999267578125","232.67999267578125","","1970-04-03T00:00:00Z","","0" +"NM-05585","14.760000228881836","14.760000228881836","","1948-12-20T00:00:00Z","","0" +"NM-08990","77.94000244140625","77.94000244140625","","1955-03-18T00:00:00Z","","0" +"NM-28256","153.0399932861328","153.0399932861328","","1976-03-05T00:00:00Z","","0" +"NM-20499","5.739999771118164","5.739999771118164","","1941-11-25T00:00:00Z","","0" +"NM-06676","21.200000762939453","21.200000762939453","","1956-12-15T00:00:00Z","","0" +"NM-13124","-26.40999984741211","-26.40999984741211","","1909-09-23T00:00:00Z","","0" +"NM-13135","5.75","5.75","","1977-11-14T00:00:00Z","","0" +"NM-01900","322.4700012207031","322.4700012207031","","2013-01-16T00:00:00Z","","0" +"NM-28253","24.950000762939453","24.950000762939453","","2010-05-15T00:00:00Z","","0" +"NM-13266","64.61000061035156","64.61000061035156","","1976-06-24T00:00:00Z","","0" +"NM-01291","101.13999938964844","101.13999938964844","","1955-04-14T00:00:00Z","","0" +"NM-13425","393.6499938964844","393.6499938964844","","1984-07-17T00:00:00Z","","0" +"NM-00643","109.5199966430664","109.5199966430664","Z","2011-08-23T00:00:00Z","","0" +"NM-28254","31.799999237060547","31.799999237060547","","2013-12-04T00:00:00Z","","0" +"NM-21813","526","526","S","1978-04-29T00:00:00Z","","0" +"PC-052","233.10000610351562","236.10000610351562","R","1999-02-23T00:00:00Z","","0" +"NM-28256","104.45999908447266","104.45999908447266","","1977-12-05T00:00:00Z","","0" +"NM-23385","151.5500030517578","151.5500030517578","","1952-12-16T00:00:00Z","","0" +"NM-02520","7.800000190734863","7.800000190734863","","1966-03-15T00:00:00Z","","0" +"NM-02115","106.38999938964844","106.38999938964844","","1977-08-09T00:00:00Z","","0" +"NM-13588","-18.329999923706055","-18.329999923706055","","1927-12-13T00:00:00Z","","0" +"SB-0299","143.85000610351562","143.85000610351562","","2003-10-20T00:00:00Z","","0" +"NM-05117","79.81999969482422","79.81999969482422","","1949-11-17T00:00:00Z","","0" +"NM-00522","79.72000122070312","79.72000122070312","","2007-01-11T00:00:00Z","","0" +"NM-00262","44.5","44.5","","2003-01-14T00:00:00Z","","0" +"NM-03420","31.780000686645508","31.780000686645508","","1987-11-30T00:00:00Z","","0" +"NM-28193","215.5","215.5","","1970-03-25T00:00:00Z","","0" +"NM-13235","4.519999980926514","4.519999980926514","","1960-05-18T00:00:00Z","","0" +"WL-0091","59.83333206176758","57.063331604003906","","1999-12-16T00:00:00Z","","2.7699999809265137" +"NM-04534","54.66999816894531","54.66999816894531","","1948-05-24T00:00:00Z","","0" +"NM-11869","25.18000030517578","25.18000030517578","","1940-08-01T00:00:00Z","","0" +"AB-0107","422.510009765625","422.510009765625","","2015-10-28T00:00:00Z","","0" +"NM-26706","8.420000076293945","8.420000076293945","","1993-01-27T00:00:00Z","","0" +"NM-04207","24.100000381469727","24.100000381469727","","1940-11-15T00:00:00Z","","0" +"TO-0129","74.9000015258789","74.9000015258789","","1949-11-17T00:00:00Z","","0" +"NM-00764","249.8699951171875","249.8699951171875","","2009-06-02T00:00:00Z","","0" +"NM-09379","-65.68000030517578","-65.68000030517578","","1909-10-09T00:00:00Z","","0" +"NM-06219","14.010000228881836","14.010000228881836","","1984-09-17T00:00:00Z","","0" +"DE-0111","38.849998474121094","38.849998474121094","","2009-08-03T00:00:00Z","","0" +"NM-01491","122.18000030517578","122.18000030517578","","1989-10-31T00:00:00Z","","0" +"NM-06262","405.79998779296875","405.79998779296875","","1975-02-27T00:00:00Z","","0" +"NM-26051","30.299999237060547","30.299999237060547","","1959-09-24T00:00:00Z","","0" +"NM-15756","96.94000244140625","96.94000244140625","","1965-04-28T00:00:00Z","","0" +"NM-20343","60.349998474121094","60.349998474121094","","1959-06-08T00:00:00Z","","0" +"NM-04186","23.399999618530273","23.399999618530273","","1942-03-10T00:00:00Z","","0" +"NM-01239","21.139999389648438","21.139999389648438","","1986-07-01T00:00:00Z","","0" +"NM-27294","197.6699981689453","197.6699981689453","","1990-02-22T00:00:00Z","","0" +"NM-03932","112.61000061035156","112.61000061035156","","1963-08-06T00:00:00Z","","0" +"NM-14141","131.08999633789062","131.08999633789062","","1970-07-22T00:00:00Z","","0" +"QY-0850","44.5","44.5","P","1955-05-02T00:00:00Z","","0" +"NM-22840","","","D","2014-06-27T00:00:00Z","","0" +"NM-10283","73.08999633789062","73.08999633789062","","1986-02-19T00:00:00Z","","0" +"NM-03860","63.33000183105469","63.33000183105469","","1962-12-27T00:00:00Z","","0" +"DE-0106","45.279998779296875","45.279998779296875","","2016-07-27T00:00:00Z","","0" +"EB-268","31.719999313354492","31.719999313354492","Z","1997-12-16T00:00:00Z","","0" +"NM-19229","125.44999694824219","125.44999694824219","","1985-05-14T00:00:00Z","","0" +"DE-0113","38.34000015258789","38.34000015258789","","2002-11-05T00:00:00Z","","0" +"NM-03323","68.98999786376953","68.98999786376953","T","1985-11-27T00:00:00Z","","0" +"BW-0336","210","210","","1945-06-01T00:00:00Z","","0" +"NM-04660","144.5","144.5","","1982-02-01T00:00:00Z","","0" +"NM-02288","6.579999923706055","6.579999923706055","","2009-02-18T00:00:00Z","","0" +"NM-02527","11","11","","1962-01-15T00:00:00Z","","0" +"NM-02004","8.800000190734863","8.800000190734863","","1998-10-15T00:00:00Z","","0" +"NM-08048","368.9200134277344","368.9200134277344","","1945-03-25T00:00:00Z","","0" +"NM-01300","11.670000076293945","11.670000076293945","","1959-08-18T00:00:00Z","","0" +"NM-02702","48.5099983215332","48.5099983215332","","1994-07-06T00:00:00Z","","0" +"NM-02677","46.439998626708984","46.439998626708984","","1977-01-05T00:00:00Z","","0" +"NM-09553","81.55000305175781","81.55000305175781","R","1958-07-24T00:00:00Z","","0" +"NM-11889","1.690000057220459","1.690000057220459","","1945-12-01T00:00:00Z","","0" +"NM-10159","29.34000015258789","29.34000015258789","","1950-01-19T00:00:00Z","","0" +"NM-08946","-65.68000030517578","-65.68000030517578","","1907-12-13T00:00:00Z","","0" +"NM-12943","2.0399999618530273","2.0399999618530273","","1978-11-27T00:00:00Z","","0" +"BW-0050","240","240","","1969-04-24T00:00:00Z","","0" +"NM-28259","128.17999267578125","128.17999267578125","","1998-04-25T00:00:00Z","","0" +"EB-250","49.619998931884766","49.619998931884766","","1991-02-27T00:00:00Z","","0" +"NM-28251","71.2300033569336","71.2300033569336","","2004-10-05T00:00:00Z","","0" +"NM-09430","80.79000091552734","80.79000091552734","","1980-01-04T00:00:00Z","","0" +"NM-02729","48.56999969482422","48.56999969482422","","1955-01-24T00:00:00Z","","0" +"NM-00534","68.11000061035156","68.11000061035156","","2010-12-13T00:00:00Z","","0" +"NM-08744","47.81999969482422","47.81999969482422","","1958-11-20T00:00:00Z","","0" +"NM-17739","77.47000122070312","77.47000122070312","","1974-07-17T00:00:00Z","","0" +"NM-16620","15.550000190734863","15.550000190734863","","1950-09-26T00:00:00Z","","0" +"NM-00766","38.209999084472656","38.209999084472656","","2008-12-02T00:00:00Z","","0" +"NM-03884","2.890000104904175","2.890000104904175","","1953-03-18T00:00:00Z","","0" +"AH-033","267.54998779296875","267.54998779296875","","2006-02-08T00:00:00Z","","0" +"NM-17424","55.45000076293945","55.45000076293945","","1941-11-25T00:00:00Z","","0" +"NM-00812","40.47999954223633","40.47999954223633","","1972-08-24T00:00:00Z","","0" +"NM-00955","353.75","353.75","","2006-02-24T00:00:00Z","","0" +"EB-012","122","122","","1970-01-19T00:00:00Z","","0" +"NM-12535","13.449999809265137","13.449999809265137","","1950-01-25T00:00:00Z","","0" +"NM-02352","6.800000190734863","6.800000190734863","","1980-06-15T00:00:00Z","","0" +"NM-11282","35.349998474121094","35.349998474121094","","1941-08-11T00:00:00Z","","0" +"NM-08662","48.70000076293945","48.70000076293945","","1966-03-09T00:00:00Z","","0" +"NM-00662","30.829999923706055","30.829999923706055","","2005-01-08T00:00:00Z","","0" +"NM-13408","-35.650001525878906","-35.650001525878906","","1905-10-21T00:00:00Z","","0" +"NM-28253","42.25","42.25","","1969-05-25T00:00:00Z","","0" +"NM-28254","89.37000274658203","89.37000274658203","","1961-04-25T00:00:00Z","","0" +"NM-05912","15.640000343322754","15.640000343322754","","1976-07-30T00:00:00Z","","0" +"NM-01190","28.84000015258789","28.84000015258789","E","2012-01-26T00:00:00Z","","0" +"AB-0065","163.5399932861328","163.5399932861328","","1996-10-17T00:00:00Z","","" +"QY-0417","44.20000076293945","44.20000076293945","","1954-11-06T00:00:00Z","","0" +"NM-12565","58.72999954223633","58.72999954223633","","1975-01-14T00:00:00Z","","0" +"NM-13946","-11.399999618530273","-11.399999618530273","","1906-03-05T00:00:00Z","","0" +"WL-0086","55.375","53.6150016784668","","1997-08-01T00:00:00Z","","1.7599999904632568" +"NM-01986","12.300000190734863","12.300000190734863","","1954-10-15T00:00:00Z","","0" +"NM-27380","13.470000267028809","13.470000267028809","","2004-02-27T00:00:00Z","","0" +"NM-18594","78.13999938964844","78.13999938964844","","1974-05-30T00:00:00Z","","0" +"NM-28251","68.83000183105469","68.83000183105469","","2000-09-15T00:00:00Z","","0" +"SB-0299","129.0800018310547","129.0800018310547","","1989-09-15T00:00:00Z","","0" +"NM-03084","240.52999877929688","240.52999877929688","","1990-01-04T00:00:00Z","","0" +"AB-0113","213.4199981689453","213.4199981689453","","2012-04-10T00:00:00Z","","" +"NM-28253","43.040000915527344","43.040000915527344","","1975-05-15T00:00:00Z","","0" +"NM-08100","59.630001068115234","59.630001068115234","","1986-06-03T00:00:00Z","","0" +"NM-07685","39.15999984741211","39.15999984741211","","1938-10-16T00:00:00Z","","0" +"NM-14847","63.650001525878906","63.650001525878906","","1988-12-21T00:00:00Z","","0" +"NM-25341","120.55000305175781","120.55000305175781","","1969-01-14T00:00:00Z","","0" +"NM-25385","37.79999923706055","37.79999923706055","","1977-05-18T00:00:00Z","","0" +"WL-0178","189.97000122070312","189.60000610351562","","2024-06-06T00:00:00Z","0001-01-01T14:30:00Z","0.3700000047683716" +"BC-0014","83.38999938964844","83.38999938964844","","2019-04-16T00:00:00Z","","0" +"NM-02831","56.38999938964844","56.38999938964844","","1984-03-15T00:00:00Z","","0" +"NM-05657","91.08999633789062","91.08999633789062","","1971-02-04T00:00:00Z","","0" +"NM-14235","-14.859999656677246","-14.859999656677246","","1906-06-23T00:00:00Z","","0" +"NM-03205","437.42999267578125","437.42999267578125","","1991-01-03T00:00:00Z","","0" +"NM-02382","53.43000030517578","53.43000030517578","","1945-09-13T00:00:00Z","","0" +"NM-02735","141.57000732421875","141.57000732421875","","1986-02-17T00:00:00Z","","0" +"NM-17470","15.520000457763672","15.520000457763672","","1944-12-01T00:00:00Z","","0" +"NM-05516","21.899999618530273","21.899999618530273","","1957-09-15T00:00:00Z","","0" +"NM-03760","77.41000366210938","77.41000366210938","P","1954-09-17T00:00:00Z","","0" +"NM-03483","89.25","89.25","","1985-01-22T00:00:00Z","","0" +"NM-12297","6.960000038146973","6.960000038146973","","1952-01-23T00:00:00Z","","0" +"NM-17073","20.760000228881836","20.760000228881836","","1943-01-31T00:00:00Z","","0" +"NM-19955","20.81999969482422","20.81999969482422","","1947-09-18T00:00:00Z","","0" +"NM-15282","100.19999694824219","100.19999694824219","","1990-01-23T00:00:00Z","","0" +"NM-01995","59.709999084472656","59.709999084472656","","1951-01-16T00:00:00Z","","0" +"EB-279","235.63999938964844","235.63999938964844","","1995-08-08T00:00:00Z","","0" +"NM-00943","239.86000061035156","239.86000061035156","","1955-01-30T00:00:00Z","","0" +"NM-24925","24.579999923706055","24.579999923706055","","1971-01-22T00:00:00Z","","0" +"NM-08246","22.559999465942383","22.559999465942383","","1936-04-19T00:00:00Z","","0" +"NM-06595","74.44999694824219","74.44999694824219","","1940-01-04T00:00:00Z","","0" +"NM-03912","135.63999938964844","135.63999938964844","","1976-01-03T00:00:00Z","","0" +"NM-27766","40.77000045776367","40.77000045776367","","1987-02-06T00:00:00Z","","0" +"NM-02367","9.779999732971191","9.779999732971191","","1994-07-28T00:00:00Z","","0" +"NM-14835","519.3499755859375","519.3499755859375","","1974-01-23T00:00:00Z","","0" +"NM-27735","47.040000915527344","47.040000915527344","","1958-01-28T00:00:00Z","","0" +"BC-0110","209.1199951171875","209.1199951171875","","2014-12-09T00:00:00Z","","0" +"NM-14348","22.270000457763672","22.270000457763672","","1959-10-13T00:00:00Z","","0" +"EB-246","256.3599853515625","256.3599853515625","","1986-10-10T00:00:00Z","","0" +"NM-22458","30","30","T","1979-01-01T00:00:00Z","","0" +"NM-09644","-61.060001373291016","-61.060001373291016","","1914-12-09T00:00:00Z","","0" +"NM-16852","13.260000228881836","13.260000228881836","","1942-01-30T00:00:00Z","","0" +"NM-02352","8","8","","1968-09-15T00:00:00Z","","0" +"BC-0396","","345.6000061035156","","2021-11-10T00:00:00Z","","2" +"NM-01956","106.9000015258789","106.9000015258789","","2002-01-22T00:00:00Z","","0" +"NM-20634","75.69999694824219","75.69999694824219","","1995-03-15T00:00:00Z","","0" +"NM-17917","192.4199981689453","192.4199981689453","","1982-04-01T00:00:00Z","","0" +"NM-23881","52.02000045776367","52.02000045776367","","1965-12-13T00:00:00Z","","0" +"NM-13309","39.58000183105469","39.58000183105469","R","1971-09-01T00:00:00Z","","0" +"NM-02269","40.18000030517578","40.18000030517578","","2003-01-28T00:00:00Z","","0" +"NM-07090","85.13999938964844","85.13999938964844","","2003-10-07T00:00:00Z","","0" +"NM-09288","83.4000015258789","83.4000015258789","","1969-01-17T00:00:00Z","","0" +"AB-0183","331.95001220703125","331.95001220703125","","2014-03-05T00:00:00Z","","" +"NM-05622","74.80000305175781","74.80000305175781","","1941-11-07T00:00:00Z","","0" +"NM-06268","10","10","","1950-02-15T00:00:00Z","","0" +"DE-0088","91.86000061035156","91.86000061035156","","1999-07-27T00:00:00Z","","0" +"NM-28259","156.86000061035156","156.86000061035156","","2018-09-14T00:00:00Z","","0" +"NM-01822","5.699999809265137","5.699999809265137","","1995-02-27T00:00:00Z","","0" +"NM-17290","33.029998779296875","33.029998779296875","","1938-02-07T00:00:00Z","","0" +"NM-04146","15.600000381469727","15.600000381469727","","1957-01-10T00:00:00Z","","0" +"NM-21953","27.06999969482422","27.06999969482422","","1950-11-01T00:00:00Z","","0" +"NM-12315","-65.68000030517578","-65.68000030517578","","1907-03-18T00:00:00Z","","0" +"NM-08213","116.69999694824219","116.69999694824219","","1986-03-25T00:00:00Z","","0" +"NM-01558","29.889999389648438","29.889999389648438","","1988-03-17T00:00:00Z","","0" +"DA-0073","80","80","","1968-03-16T00:00:00Z","","0" +"NM-03049","124.45999908447266","124.45999908447266","","2008-03-17T00:00:00Z","","0" +"NM-01947","6.699999809265137","6.699999809265137","","1978-05-15T00:00:00Z","","0" +"NM-09080","74.3499984741211","74.3499984741211","P","1990-02-15T00:00:00Z","","0" +"SM-0252","66.01000213623047","65.01000213623047","","2010-10-11T00:00:00Z","","1" +"NM-01278","124.69999694824219","124.69999694824219","","1960-11-15T00:00:00Z","","0" +"AB-0183","339.7099914550781","339.7099914550781","","2011-01-31T00:00:00Z","","" +"EB-170","41","38.29999923706055","P","1946-08-28T00:00:00Z","","2.700000047683716" +"NM-03388","53.68000030517578","53.68000030517578","","1994-05-25T00:00:00Z","","0" +"NM-23437","91.62000274658203","91.62000274658203","","1986-09-05T00:00:00Z","","0" +"NM-00208","40.369998931884766","40.369998931884766","","1960-01-14T00:00:00Z","","0" +"NM-21500","213.2100067138672","213.2100067138672","","2009-10-08T00:00:00Z","","0" +"EB-413","206.8000030517578","206.8000030517578","","2009-11-05T00:00:00Z","","0" +"NM-01894","122.94000244140625","122.94000244140625","","2015-06-08T00:00:00Z","","0" +"NM-24976","138.7100067138672","138.7100067138672","","1961-06-02T00:00:00Z","","0" +"NM-28253","12.140000343322754","12.140000343322754","","1991-10-25T00:00:00Z","","0" +"EB-208","243.6999969482422","242.34999084472656","","1994-07-18T00:00:00Z","","1.350000023841858" +"NM-12240","10.550000190734863","10.550000190734863","","1968-06-05T00:00:00Z","","0" +"NM-21992","282.7300109863281","282.7300109863281","","1962-03-21T00:00:00Z","","0" +"NM-28252","59.790000915527344","59.790000915527344","","1982-11-15T00:00:00Z","","0" +"NM-22188","444.2099914550781","444.2099914550781","","2007-08-03T00:00:00Z","","0" +"NM-12422","-51.81999969482422","-51.81999969482422","","1910-12-27T00:00:00Z","","0" +"NM-25680","-104.93000030517578","-104.93000030517578","","1988-11-19T00:00:00Z","","0" +"NM-08372","22.940000534057617","22.940000534057617","","1981-01-27T00:00:00Z","","0" +"NM-28257","-24.25","-24.25","","1992-12-05T00:00:00Z","","0" +"NM-24338","51.5","51.5","","1980-10-25T00:00:00Z","","0" +"EB-235","53.900001525878906","53.900001525878906","","1981-06-20T00:00:00Z","","0" +"NM-10732","31.84000015258789","31.84000015258789","","1944-01-15T00:00:00Z","","0" +"NM-02518","8.600000381469727","8.600000381469727","","1977-02-15T00:00:00Z","","0" +"NM-04910","156.3000030517578","156.3000030517578","P","1957-07-17T00:00:00Z","","0" +"NM-11017","31.31999969482422","31.31999969482422","","1938-07-22T00:00:00Z","","0" +"NM-00643","105.4800033569336","105.4800033569336","","1971-01-21T00:00:00Z","","0" +"NM-13425","395.55999755859375","395.55999755859375","","1958-12-01T00:00:00Z","","0" +"NM-16678","32.040000915527344","32.040000915527344","","1975-01-06T00:00:00Z","","0" +"SA-0444","56.70000076293945","56.70000076293945","","1952-12-18T00:00:00Z","","0" +"NM-11170","104.93000030517578","104.93000030517578","","1965-02-16T00:00:00Z","","0" +"NM-04569","76.8499984741211","76.8499984741211","","1953-05-14T00:00:00Z","","0" +"NM-01798","116.75","116.75","","1985-01-03T00:00:00Z","","0" +"TV-187","30.399999618530273","28.489999771118164","","2012-08-08T00:00:00Z","","1.909999966621399" +"NM-02163","41.93000030517578","41.93000030517578","","2015-10-21T00:00:00Z","","0" +"NM-16658","16.860000610351562","16.860000610351562","","1947-03-31T00:00:00Z","","0" +"SB-0073","154.10000610351562","154.10000610351562","","1960-03-22T00:00:00Z","","0" +"NM-13145","9.920000076293945","9.920000076293945","","1975-05-23T00:00:00Z","","0" +"NM-17665","93.0199966430664","93.0199966430664","","1958-09-10T00:00:00Z","","0" +"NM-12672","21.040000915527344","21.040000915527344","","1943-01-08T00:00:00Z","","0" +"NM-28255","105.61000061035156","105.61000061035156","","1989-03-25T00:00:00Z","","0" +"NM-10119","-35.650001525878906","-35.650001525878906","","1908-03-18T00:00:00Z","","0" +"NM-21873","6.110000133514404","6.110000133514404","Z","2008-07-17T00:00:00Z","","0" +"NM-28257","15.050000190734863","15.050000190734863","","2009-09-15T00:00:00Z","","0" +"NM-28252","57.880001068115234","57.880001068115234","","1973-12-25T00:00:00Z","","0" +"NM-05516","8.899999618530273","8.899999618530273","","1985-12-15T00:00:00Z","","0" +"NM-17716","5.099999904632568","5.099999904632568","","1947-08-18T00:00:00Z","","0" +"AB-0069","149.4600067138672","149.4600067138672","","1999-10-18T00:00:00Z","","" +"NM-07209","63.400001525878906","63.400001525878906","","1962-01-22T00:00:00Z","","0" +"NM-28250","107.30000305175781","107.30000305175781","","1980-10-25T00:00:00Z","","0" +"NM-02378","154.72000122070312","154.72000122070312","","1993-01-13T00:00:00Z","","0" +"NM-28253","18.84000015258789","18.84000015258789","","2014-02-14T00:00:00Z","","0" +"NM-02831","44.209999084472656","44.209999084472656","","1960-06-01T00:00:00Z","","0" +"NM-13915","-12.550000190734863","-12.550000190734863","","1905-06-12T00:00:00Z","","0" +"NM-13913","-14.859999656677246","-14.859999656677246","","1907-01-02T00:00:00Z","","0" +"NM-06268","22.5","22.5","","1957-01-15T00:00:00Z","","0" +"NM-17716","5.070000171661377","5.070000171661377","","1946-08-22T00:00:00Z","","0" +"EB-217","59.66999816894531","58.369998931884766","","1990-02-27T00:00:00Z","","1.2999999523162842" +"NM-07039","86.47000122070312","84.72000122070312","","2022-12-13T00:00:00Z","0001-01-01T09:40:00Z","1.75" +"NM-17827","105.3499984741211","105.3499984741211","","2002-12-04T00:00:00Z","","0" +"NM-28256","211.88999938964844","211.88999938964844","","1984-07-05T00:00:00Z","","0" +"NM-09509","-103.5999984741211","-103.5999984741211","","1910-11-12T00:00:00Z","","0" +"NM-27281","25.329999923706055","25.329999923706055","","1962-01-08T00:00:00Z","","0" +"NM-24976","144.5","144.5","","1964-06-16T00:00:00Z","","0" +"AB-0146","1308","1308","P","1987-03-15T00:00:00Z","","" +"NM-00644","113.87000274658203","113.87000274658203","Z","1997-04-23T00:00:00Z","","0" +"NM-06018","347.3800048828125","347.3800048828125","","1976-12-16T00:00:00Z","","0" +"NM-00718","148.2899932861328","148.2899932861328","","2003-07-22T00:00:00Z","","0" +"NM-21666","73.5999984741211","73.5999984741211","","1982-07-16T00:00:00Z","","0" +"NM-07227","92.9800033569336","92.9800033569336","","2002-02-22T00:00:00Z","","0" +"NM-17716","6.440000057220459","6.440000057220459","","1952-01-10T00:00:00Z","","0" +"NM-02433","117.5","117.5","","1997-02-04T00:00:00Z","","0" +"NM-10635","28.6200008392334","28.6200008392334","","1937-09-19T00:00:00Z","","0" +"NM-03344","76.33999633789062","76.33999633789062","","1991-07-03T00:00:00Z","","0" +"SV-0021","67.30000305175781","64.47000122070312","","2017-05-14T00:00:00Z","","2.8299999237060547" +"NM-20975","117.37999725341797","117.37999725341797","","1977-03-02T00:00:00Z","","0" +"EB-276","142","142","","1956-08-20T00:00:00Z","","0" +"NM-09959","50.72999954223633","50.72999954223633","","1971-02-10T00:00:00Z","","0" +"NM-02560","119.0999984741211","119.0999984741211","","1979-03-01T00:00:00Z","","0" +"NM-05922","53.84000015258789","53.84000015258789","","1941-03-11T00:00:00Z","","0" +"UC-0090","26.350000381469727","26.350000381469727","","1996-01-23T00:00:00Z","","0" +"NM-02122","131.52999877929688","131.52999877929688","","1977-01-18T00:00:00Z","","0" +"NM-11869","21.739999771118164","21.739999771118164","","1938-04-15T00:00:00Z","","0" +"NM-02863","26.950000762939453","26.950000762939453","","1991-01-24T00:00:00Z","","0" +"AB-0066","166.94000244140625","166.94000244140625","","2011-01-28T00:00:00Z","","" +"NM-08381","29.739999771118164","29.739999771118164","","1961-02-15T00:00:00Z","","0" +"NM-25559","7.449999809265137","7.449999809265137","","1973-02-12T00:00:00Z","","0" +"NM-01295","106.26000213623047","106.26000213623047","","1950-12-13T00:00:00Z","","0" +"NM-02194","174.27000427246094","174.27000427246094","","1973-01-23T00:00:00Z","","0" +"AB-0107","423.32000732421875","423.32000732421875","","2011-08-04T00:00:00Z","","" +"NM-09081","111.6500015258789","111.6500015258789","","1955-07-01T00:00:00Z","","0" +"NM-00662","33.84000015258789","33.84000015258789","","1959-01-13T00:00:00Z","","0" +"NM-28257","64.12999725341797","64.12999725341797","","1952-08-15T00:00:00Z","","0" +"NM-13953","-12.260000228881836","-12.260000228881836","","1910-03-21T00:00:00Z","","0" +"NM-11044","12.609999656677246","12.609999656677246","","1957-08-09T00:00:00Z","","0" +"NM-28250","97.02999877929688","97.02999877929688","","2020-11-06T00:00:00Z","","0" +"NM-28255","129.50999450683594","129.50999450683594","","2020-05-26T00:00:00Z","","0" +"TB-0117","215.35000610351562","214.10000610351562","","2011-04-15T00:00:00Z","","1.25" +"NM-21719","56.97999954223633","56.97999954223633","S","1982-07-07T00:00:00Z","","0" +"NM-14504","26.219999313354492","26.219999313354492","R","1994-02-11T00:00:00Z","","0" +"NM-13335","-5.909999847412109","-5.909999847412109","","1911-01-28T00:00:00Z","","0" +"NM-02584","152.3000030517578","152.3000030517578","","2002-02-12T00:00:00Z","","0" +"NM-04388","85.52999877929688","85.52999877929688","","1968-02-14T00:00:00Z","","0" +"NM-00585","43.5","43.5","","1975-01-07T00:00:00Z","","0" +"NM-20310","65.9000015258789","65.9000015258789","","1957-01-10T00:00:00Z","","0" +"NM-27476","82.23999786376953","82.23999786376953","","2010-01-14T00:00:00Z","","0" +"EB-251","261.54998779296875","260.1499938964844","","2011-03-09T00:00:00Z","","1.399999976158142" +"NM-00583","44.720001220703125","44.720001220703125","","2016-07-22T00:00:00Z","","0" +"NM-02702","-26.530000686645508","-26.530000686645508","","1995-01-23T00:00:00Z","","0" +"NM-26751","198.52000427246094","198.52000427246094","","1956-10-04T00:00:00Z","","0" +"NM-02497","59.599998474121094","59.599998474121094","","1958-01-29T00:00:00Z","","0" +"NM-02384","7","7","","1986-06-15T00:00:00Z","","0" +"NM-02881","91.80000305175781","91.80000305175781","","1986-01-17T00:00:00Z","","0" +"NM-08071","9.100000381469727","9.100000381469727","","1959-11-15T00:00:00Z","","0" +"NM-05963","38.93000030517578","38.93000030517578","","1943-07-11T00:00:00Z","","0" +"NM-00435","68.05000305175781","68.05000305175781","","1984-01-04T00:00:00Z","","0" +"NM-10292","82.5","82.5","","1991-02-15T00:00:00Z","","0" +"BC-0153","178.8000030517578","178.8000030517578","","2013-06-11T00:00:00Z","","0" +"NM-08542","-93.4000015258789","-93.4000015258789","","1906-10-16T00:00:00Z","","0" +"NM-09682","458.4599914550781","458.4599914550781","","1973-09-01T00:00:00Z","","0" +"SO-0253","15.140000343322754","14.59000015258789","","2021-09-19T00:00:00Z","0001-01-01T09:23:00Z","0.550000011920929" +"NM-06268","14","14","","1971-12-15T00:00:00Z","","0" +"NM-26327","225","225","","1993-09-03T00:00:00Z","","0" +"NM-24271","59","59","","1980-09-30T00:00:00Z","","0" +"NM-21308","23.649999618530273","23.649999618530273","","1956-12-11T00:00:00Z","","0" +"NM-17715","8.710000038146973","8.710000038146973","","1934-11-15T00:00:00Z","","0" +"NM-13207","90.27999877929688","90.27999877929688","","1976-06-17T00:00:00Z","","0" +"NM-04086","16.299999237060547","16.299999237060547","","1954-11-10T00:00:00Z","","0" +"NM-02806","1.3600000143051147","1.3600000143051147","","1999-01-08T00:00:00Z","","0" +"NM-21629","451.07000732421875","451.07000732421875","","2007-03-19T00:00:00Z","","0" +"NM-05624","67.48999786376953","67.48999786376953","","1942-01-09T00:00:00Z","","0" +"NM-03740","147.41000366210938","147.41000366210938","","2008-01-30T00:00:00Z","","0" +"EB-482","280","280","Z","1992-10-31T00:00:00Z","","0" +"NM-06471","71.56999969482422","71.56999969482422","","1972-02-10T00:00:00Z","","0" +"NM-02622","165.6300048828125","165.6300048828125","","1975-04-01T00:00:00Z","","0" +"NM-19651","64.12999725341797","64.12999725341797","P","1954-02-16T00:00:00Z","","0" +"NM-10739","55.7400016784668","55.7400016784668","","1987-01-07T00:00:00Z","","0" +"NM-12120","51.2599983215332","51.2599983215332","","1991-03-27T00:00:00Z","","0" +"NM-12566","37.209999084472656","37.209999084472656","","1991-02-07T00:00:00Z","","0" +"AB-0037","333.8299865722656","333.8299865722656","","2005-05-24T00:00:00Z","","" +"NM-03175","325.5","325.5","","1975-01-03T00:00:00Z","","0" +"EB-288","93.37000274658203","93.37000274658203","","1974-04-11T00:00:00Z","","0" +"NM-00366","121.08999633789062","121.08999633789062","","2004-03-30T00:00:00Z","","0" +"NM-01986","6.800000190734863","6.800000190734863","","1961-10-15T00:00:00Z","","0" +"NM-17716","-0.9599999785423279","-0.9599999785423279","","1943-02-15T00:00:00Z","","0" +"SB-0265","159.07000732421875","159.07000732421875","","1967-01-30T00:00:00Z","","0" +"EB-356","248.50399780273438","246.50399780273438","","2002-02-28T00:00:00Z","","2" +"NM-02259","32.630001068115234","32.630001068115234","","2011-02-01T00:00:00Z","","0" +"NM-02090","92.11000061035156","92.11000061035156","","1964-08-06T00:00:00Z","","0" +"NM-14293","6.630000114440918","6.630000114440918","","1958-10-20T00:00:00Z","","0" +"EB-266","9.8100004196167","9.8100004196167","","2011-08-22T00:00:00Z","","0" +"NM-28255","34.41999816894531","34.41999816894531","","1957-02-15T00:00:00Z","","0" +"NM-00575","119.6500015258789","119.6500015258789","P","2010-08-30T00:00:00Z","","0" +"NM-02005","7.099999904632568","7.099999904632568","","1977-10-15T00:00:00Z","","0" +"NM-28252","60.119998931884766","60.119998931884766","","1973-05-25T00:00:00Z","","0" +"NM-19435","315.8399963378906","315.8399963378906","","1982-01-09T00:00:00Z","","0" +"NM-11984","38.65999984741211","38.65999984741211","","1977-01-20T00:00:00Z","","0" +"NM-14383","-7.929999828338623","-7.929999828338623","","1905-10-16T00:00:00Z","","0" +"NM-14187","585","585","","1975-12-10T00:00:00Z","","0" +"NM-07225","194.72000122070312","194.72000122070312","","1979-09-01T00:00:00Z","","0" +"NM-01879","11.260000228881836","11.260000228881836","","1976-01-14T00:00:00Z","","0" +"NM-07095","84.25","84.25","","2004-10-07T00:00:00Z","","0" +"DE-0109","33.779998779296875","33.779998779296875","","2005-09-29T00:00:00Z","","0" +"NM-02334","126.91000366210938","126.91000366210938","","1983-01-10T00:00:00Z","","0" +"NM-01796","4.599999904632568","4.599999904632568","","1950-04-15T00:00:00Z","","0" +"NM-02009","138.3000030517578","138.3000030517578","","1982-01-26T00:00:00Z","","0" +"NM-07256","109","109","","1976-01-01T00:00:00Z","","0" +"NM-02285","6.170000076293945","6.170000076293945","","2006-05-23T00:00:00Z","","0" +"NM-08953","59.75","59.75","","1996-02-07T00:00:00Z","","0" +"NM-17716","3.0999999046325684","3.0999999046325684","","1947-02-15T00:00:00Z","","0" +"NM-28259","82.36000061035156","82.36000061035156","","2001-01-25T00:00:00Z","","0" +"NM-12562","21.079999923706055","21.079999923706055","","1963-01-08T00:00:00Z","","0" +"DE-0185","49.400001525878906","49.400001525878906","","2014-06-24T00:00:00Z","","0" +"NM-28253","19.040000915527344","19.040000915527344","","2013-03-05T00:00:00Z","","0" +"NM-13405","59.29999923706055","59.29999923706055","","1972-04-15T00:00:00Z","","0" +"NM-21308","22.940000534057617","22.940000534057617","","1968-01-16T00:00:00Z","","0" +"NM-12600","50.36000061035156","50.36000061035156","","1938-09-09T00:00:00Z","","0" +"NM-01066","119.5999984741211","119.5999984741211","","1994-06-15T00:00:00Z","","0" +"NM-02168","22.31999969482422","22.31999969482422","","2016-04-13T00:00:00Z","","0" +"NM-27830","57.900001525878906","57.900001525878906","","1966-04-20T00:00:00Z","","0" +"NM-15478","103.12999725341797","103.12999725341797","","1985-01-16T00:00:00Z","","0" +"AB-0200","196.1300048828125","196.1300048828125","","2015-05-27T00:00:00Z","","0" +"NM-18692","397.4800109863281","397.4800109863281","","2013-07-22T00:00:00Z","","0" +"SB-0299","111.25","111.25","","1966-05-05T00:00:00Z","","0" +"NM-11795","37.060001373291016","37.060001373291016","","1929-11-13T00:00:00Z","","0" +"NM-11643","88.30999755859375","88.30999755859375","","1938-04-28T00:00:00Z","","0" +"NM-17256","33.310001373291016","33.310001373291016","","1948-01-08T00:00:00Z","","0" +"NM-23956","72.79000091552734","72.79000091552734","","1973-07-26T00:00:00Z","","0" +"NM-20650","92.25","92.25","","1950-07-26T00:00:00Z","","0" +"NM-24315","385.9200134277344","385.9200134277344","","1982-08-05T00:00:00Z","","0" +"NM-07624","28.559999465942383","28.559999465942383","","1961-03-07T00:00:00Z","","0" +"NM-02117","68.22000122070312","68.22000122070312","","1953-03-14T00:00:00Z","","0" +"NM-01895","29.170000076293945","29.170000076293945","","1991-09-26T00:00:00Z","","0" +"NM-01872","6.900000095367432","6.900000095367432","","1985-08-15T00:00:00Z","","0" +"DE-0283","81.9000015258789","81.9000015258789","","2019-06-24T00:00:00Z","","0" +"TV-216","71.72000122070312","71.31999969482422","","2012-03-10T00:00:00Z","","0.4000000059604645" +"NM-20036","96.12999725341797","96.12999725341797","","1961-12-05T00:00:00Z","","0" +"NM-01277","127.25","127.25","","1950-02-08T00:00:00Z","","0" +"TC-269","107.87000274658203","107.87000274658203","","1982-01-22T00:00:00Z","","0" +"NM-13028","2.450000047683716","2.450000047683716","","1980-03-12T00:00:00Z","","0" +"NM-16293","155.75","155.75","","1962-02-07T00:00:00Z","","0" +"SM-0225","412.44000244140625","411.94000244140625","","2009-02-11T00:00:00Z","","0.5" +"SB-0299","129.5800018310547","129.5800018310547","","1980-04-15T00:00:00Z","","0" +"QU-004","52.52000045776367","50.25","","2014-12-09T00:00:00Z","","2.2699999809265137" +"NM-07282","91.58000183105469","91.58000183105469","","1971-01-26T00:00:00Z","","0" +"NM-14833","30.93000030517578","30.93000030517578","","1955-09-12T00:00:00Z","","0" +"NM-03313","315.7699890136719","315.7699890136719","","1990-06-04T00:00:00Z","","0" +"BC-0284","","94.12000274658203","","2023-03-24T00:00:00Z","","0" +"NM-20576","67.23999786376953","67.23999786376953","","1948-10-01T00:00:00Z","","0" +"NM-04186","23.440000534057617","23.440000534057617","","1949-03-16T00:00:00Z","","0" +"DE-0113","41.810001373291016","41.810001373291016","","2016-06-16T00:00:00Z","","0" +"NM-26645","22.68000030517578","22.68000030517578","","2012-02-08T00:00:00Z","","0" +"NM-00612","92.87999725341797","92.87999725341797","S","1996-01-03T00:00:00Z","","0" +"NM-21716","25.739999771118164","25.739999771118164","","1953-07-21T00:00:00Z","","0" +"BC-0055","90.3499984741211","90.3499984741211","","2018-04-09T00:00:00Z","","0" +"NM-03086","336.6600036621094","336.6600036621094","","2005-03-22T00:00:00Z","","0" +"NM-00609","85.94999694824219","85.94999694824219","","1992-01-03T00:00:00Z","","0" +"NM-18496","310.010009765625","310.010009765625","","1982-02-18T00:00:00Z","","0" +"NM-14193","-19.479999542236328","-19.479999542236328","","1912-01-17T00:00:00Z","","0" +"AB-0052","50.439998626708984","50.439998626708984","","1996-10-17T00:00:00Z","","" +"NM-00583","43.400001525878906","43.400001525878906","","2011-09-08T00:00:00Z","","0" +"NM-25252","134.0800018310547","134.0800018310547","","1982-02-10T00:00:00Z","","0" +"NM-21939","6.119999885559082","6.119999885559082","","1957-03-19T00:00:00Z","","0" +"NM-13213","10.270000457763672","10.270000457763672","","1959-06-25T00:00:00Z","","0" +"NM-08071","11.800000190734863","11.800000190734863","","1982-02-15T00:00:00Z","","0" +"NM-27255","36.22999954223633","36.22999954223633","","1962-08-16T00:00:00Z","","0" +"NM-02005","8.600000381469727","8.600000381469727","","1991-02-01T00:00:00Z","","0" +"NM-28252","50.439998626708984","50.439998626708984","","2009-07-25T00:00:00Z","","0" +"NM-00635","107.37999725341797","107.37999725341797","","2005-01-06T00:00:00Z","","0" +"DE-0176","54.52000045776367","54.52000045776367","","2015-10-21T00:00:00Z","","0" +"NM-02811","86.25","86.25","","1999-01-05T00:00:00Z","","0" +"NM-02412","27.049999237060547","27.049999237060547","","1935-12-11T00:00:00Z","","0" +"NM-13215","6.599999904632568","6.599999904632568","","1938-04-02T00:00:00Z","","0" +"NM-04080","9.1899995803833","9.1899995803833","","1952-01-10T00:00:00Z","","0" +"NM-03396","12.899999618530273","12.899999618530273","","1994-05-03T00:00:00Z","","0" +"NM-17825","107.8499984741211","107.8499984741211","R","1966-04-19T00:00:00Z","","0" +"SB-0442","169.60000610351562","169.60000610351562","","2008-10-25T00:00:00Z","","0" +"DE-0106","45.08000183105469","45.08000183105469","","2016-03-03T00:00:00Z","","0" +"EB-209","65.6500015258789","64.4000015258789","","1980-03-15T00:00:00Z","","1.25" +"TV-272","264.4100036621094","261.6300048828125","","2006-01-18T00:00:00Z","","2.7799999713897705" +"NM-09813","5.96999979019165","5.96999979019165","","1941-07-14T00:00:00Z","","0" +"DE-0187","","","D","2016-07-27T00:00:00Z","","0" +"NM-00884","61.220001220703125","61.220001220703125","","1985-05-22T00:00:00Z","","0" +"NM-07039","79.23999786376953","79.23999786376953","P","1980-08-13T00:00:00Z","","0" +"NM-13246","64.68000030517578","64.68000030517578","","1940-12-01T00:00:00Z","","0" +"NM-18290","42.349998474121094","42.349998474121094","","2007-06-20T00:00:00Z","","0" +"NM-02520","6.5","6.5","","1959-11-15T00:00:00Z","","0" +"NM-11188","66.58000183105469","66.58000183105469","","1967-01-04T00:00:00Z","","0" +"WL-0088","43.125","40.525001525878906","","1996-07-17T00:00:00Z","","2.5999999046325684" +"NM-01926","6.599999904632568","6.599999904632568","","1958-12-15T00:00:00Z","","0" +"NM-03313","314.19000244140625","314.19000244140625","Z","1991-04-04T00:00:00Z","","0" +"NM-10365","-61.060001373291016","-61.060001373291016","","1916-08-03T00:00:00Z","","0" +"NM-24670","18.850000381469727","18.850000381469727","","1982-02-08T00:00:00Z","","0" +"NM-09819","150.10000610351562","150.10000610351562","","1958-08-26T00:00:00Z","","0" +"DE-0323","33.150001525878906","33.150001525878906","","2014-05-12T00:00:00Z","","0" +"NM-27390","121.98999786376953","121.98999786376953","R","1952-09-18T00:00:00Z","","0" +"NM-19039","291.70001220703125","291.70001220703125","","1956-10-26T00:00:00Z","","0" +"NM-09150","41.38999938964844","41.38999938964844","","1971-02-01T00:00:00Z","","0" +"NM-17914","226.47999572753906","226.47999572753906","","1990-01-04T00:00:00Z","","0" +"NM-08914","127.1500015258789","127.1500015258789","","1957-01-14T00:00:00Z","","0" +"NM-12778","295.32000732421875","295.32000732421875","","1970-01-23T00:00:00Z","","0" +"NM-20292","81.13999938964844","81.13999938964844","","1946-12-03T00:00:00Z","","0" +"NM-20097","30.149999618530273","30.149999618530273","","1943-02-02T00:00:00Z","","0" +"NM-04028","","","O","2013-01-17T00:00:00Z","","0" +"NM-11074","193.49000549316406","193.49000549316406","","1969-01-15T00:00:00Z","","0" +"NM-14281","-18.329999923706055","-18.329999923706055","","1910-05-24T00:00:00Z","","0" +"NM-00094","-0.44999998807907104","-0.44999998807907104","","1956-03-05T00:00:00Z","","0" +"NM-03455","292.8500061035156","292.8500061035156","","1973-01-04T00:00:00Z","","0" +"NM-07685","34.4900016784668","34.4900016784668","","1941-08-13T00:00:00Z","","0" +"NM-07055","127.31999969482422","127.31999969482422","","1997-02-04T00:00:00Z","","0" +"NM-06609","228.89999389648438","228.89999389648438","","1972-03-08T00:00:00Z","","0" +"NM-13909","-19.479999542236328","-19.479999542236328","","1913-07-15T00:00:00Z","","0" +"NM-11026","120.87000274658203","120.87000274658203","","1973-07-01T00:00:00Z","","0" +"NM-07990","96.20999908447266","96.20999908447266","","1991-02-06T00:00:00Z","","0" +"WL-0027","243.27000427246094","241.62001037597656","","2021-03-16T00:00:00Z","0001-01-01T15:31:00Z","1.649999976158142" +"NM-07881","12.09000015258789","12.09000015258789","","1970-01-05T00:00:00Z","","0" +"NM-02620","13.800000190734863","13.800000190734863","","1974-05-15T00:00:00Z","","0" +"NM-20107","9.75","9.75","","1943-02-03T00:00:00Z","","0" +"NM-09188","37.709999084472656","37.709999084472656","","1961-02-02T00:00:00Z","","0" +"NM-18939","352.1600036621094","352.1600036621094","","1972-01-21T00:00:00Z","","0" +"EB-605","69.68000030517578","69.68000030517578","","2013-01-09T00:00:00Z","","0" +"NM-03270","7.590000152587891","7.590000152587891","","1967-01-13T00:00:00Z","","0" +"NM-28255","12.859999656677246","12.859999656677246","","2005-02-15T00:00:00Z","","0" +"NM-02487","8","8","","1985-08-15T00:00:00Z","","0" +"NM-11785","51.599998474121094","51.599998474121094","","1952-05-25T00:00:00Z","","0" +"NM-13583","-12.550000190734863","-12.550000190734863","","1912-05-22T00:00:00Z","","0" +"NM-13209","41.0099983215332","41.0099983215332","","1986-02-11T00:00:00Z","","0" +"NM-03088","48.27000045776367","48.27000045776367","","2007-03-29T00:00:00Z","","0" +"NM-03313","300.010009765625","300.010009765625","","1978-01-30T00:00:00Z","","0" +"PC-110","218","221","","1978-07-14T00:00:00Z","","0" +"NM-03393","59.880001068115234","59.880001068115234","","1980-08-15T00:00:00Z","","0" +"NM-02349","12.5","12.5","","1970-11-15T00:00:00Z","","0" +"NM-02462","165.97999572753906","165.97999572753906","","1970-12-10T00:00:00Z","","0" +"NM-02144","86.37000274658203","86.37000274658203","","1980-01-08T00:00:00Z","","0" +"NM-23026","52.040000915527344","52.040000915527344","","1947-05-05T00:00:00Z","","0" +"EB-295","523.3499755859375","523.3499755859375","","2010-07-14T00:00:00Z","","0" +"AB-0198","225","225","","1996-07-02T00:00:00Z","","0" +"NM-03332","9.949999809265137","9.949999809265137","","1990-08-08T00:00:00Z","","0" +"NM-21269","7.440000057220459","7.440000057220459","Z","2006-05-02T00:00:00Z","","0" +"NM-12002","76.91000366210938","76.91000366210938","","1978-01-04T00:00:00Z","","0" +"NM-10099","191.2100067138672","191.2100067138672","","1975-06-25T00:00:00Z","","0" +"NM-28255","-1.1799999475479126","-1.1799999475479126","","1993-01-05T00:00:00Z","","0" +"NM-03396","11.8100004196167","11.8100004196167","","1992-12-03T00:00:00Z","","0" +"NM-15442","54.11000061035156","54.11000061035156","","1995-01-04T00:00:00Z","","0" +"NM-02199","13.15999984741211","13.15999984741211","","2008-01-17T00:00:00Z","","0" +"NM-10365","-55.439998626708984","-55.439998626708984","","1912-06-03T00:00:00Z","","0" +"NM-11994","29.56999969482422","29.56999969482422","","1938-01-30T00:00:00Z","","0" +"NM-02207","14.800000190734863","14.800000190734863","","1958-11-15T00:00:00Z","","0" +"NM-04900","81.62000274658203","81.62000274658203","","1992-02-07T00:00:00Z","","0" +"BC-0192","133.3000030517578","133.3000030517578","","2019-07-23T00:00:00Z","","0" +"EB-338","186.8300018310547","186.8300018310547","","2016-03-15T00:00:00Z","","0" +"NM-19263","182.5800018310547","182.5800018310547","","1977-02-04T00:00:00Z","","0" +"NM-02794","44.75","44.75","","1943-12-04T00:00:00Z","","0" +"AB-0215","155.0399932861328","155.0399932861328","","2005-01-13T00:00:00Z","","" +"NM-14535","87.56999969482422","87.56999969482422","","1970-10-15T00:00:00Z","","0" +"NM-01890","44.439998626708984","44.439998626708984","","1985-02-04T00:00:00Z","","0" +"NM-13594","22.18000030517578","22.18000030517578","","1965-01-18T00:00:00Z","","0" +"NM-14723","167.6199951171875","167.6199951171875","","1995-02-07T00:00:00Z","","0" +"NM-01753","66.56999969482422","66.56999969482422","","1983-01-25T00:00:00Z","","0" +"NM-04959","75.79000091552734","75.79000091552734","","1966-01-25T00:00:00Z","","0" +"NM-15952","106.70999908447266","106.70999908447266","R","1970-02-18T00:00:00Z","","0" +"NM-18202","226.33999633789062","226.33999633789062","","1982-01-21T00:00:00Z","","0" +"NM-01871","285.5299987792969","285.5299987792969","","1997-02-10T00:00:00Z","","0" +"AR-0051","21.219999313354492","20.510000228881836","","2017-03-13T00:00:00Z","0001-01-01T16:58:00Z","0.7099999785423279" +"EB-481","251","251","","1992-06-30T00:00:00Z","","0" +"NM-11926","55.27000045776367","55.27000045776367","","1954-01-12T00:00:00Z","","0" +"SB-0285","96","96","","1997-01-22T00:00:00Z","","0" +"NM-14247","-20.639999389648438","-20.639999389648438","","1911-10-05T00:00:00Z","","0" +"NM-03397","29.489999771118164","29.489999771118164","","2004-09-13T00:00:00Z","","0" +"NM-23010","343.9599914550781","343.9599914550781","R","1988-04-20T00:00:00Z","","0" +"NM-19797","47.849998474121094","47.849998474121094","","1942-07-15T00:00:00Z","","0" +"NM-21391","4.539999961853027","4.539999961853027","Z","2010-02-26T00:00:00Z","","0" +"NM-16979","55.189998626708984","55.189998626708984","","1949-11-21T00:00:00Z","","0" +"NM-26611","32.4900016784668","32.4900016784668","","2011-07-26T00:00:00Z","","0" +"NM-01885","24.549999237060547","24.549999237060547","","2009-03-18T00:00:00Z","","0" +"NM-11868","66.8499984741211","66.8499984741211","","1971-03-23T00:00:00Z","","0" +"NM-05632","16.100000381469727","16.100000381469727","","1942-01-14T00:00:00Z","","0" +"NM-13876","13.149999618530273","13.149999618530273","","1973-12-20T00:00:00Z","","0" +"NM-02801","14.020000457763672","14.020000457763672","","1958-01-09T00:00:00Z","","0" +"NM-11795","37.52000045776367","37.52000045776367","","1950-01-14T00:00:00Z","","0" +"NM-28250","80.93000030517578","80.93000030517578","","2001-12-05T00:00:00Z","","0" +"NM-10736","15.359999656677246","15.359999656677246","","1943-09-15T00:00:00Z","","0" +"AB-0214","155.50999450683594","155.50999450683594","","2002-04-18T00:00:00Z","","" +"NM-16789","7.449999809265137","7.449999809265137","","1955-05-25T00:00:00Z","","0" +"NM-00634","48.22999954223633","48.22999954223633","","1956-01-06T00:00:00Z","","0" +"SA-0049","59.290000915527344","57.7400016784668","","2008-09-24T00:00:00Z","","1.5499999523162842" +"NM-05309","9.899999618530273","9.899999618530273","","1952-05-15T00:00:00Z","","0" +"NM-00257","94.80000305175781","94.80000305175781","","2003-04-17T00:00:00Z","","0" +"NM-07708","92.63999938964844","92.63999938964844","S","1979-08-27T00:00:00Z","","0" +"NM-12692","-5.159999847412109","-5.159999847412109","","1907-09-23T00:00:00Z","","0" +"NM-02895","254.49000549316406","254.49000549316406","","1957-01-23T00:00:00Z","","0" +"NM-24925","26.940000534057617","26.940000534057617","","1972-10-12T00:00:00Z","","0" +"NM-02348","15.600000381469727","15.600000381469727","","2000-02-15T00:00:00Z","","0" +"EB-288","185","185","","1997-05-31T00:00:00Z","","0" +"NM-19893","63.119998931884766","63.119998931884766","","1968-02-23T00:00:00Z","","0" +"NM-28250","103.43000030517578","103.43000030517578","","1975-04-05T00:00:00Z","","0" +"NM-17716","5.25","5.25","","1948-05-20T00:00:00Z","","0" +"NM-09630","-63.369998931884766","-63.369998931884766","","1916-07-26T00:00:00Z","","0" +"NM-28252","37.29999923706055","37.29999923706055","","1994-05-05T00:00:00Z","","0" +"NM-02996","58.54999923706055","58.54999923706055","","1982-01-08T00:00:00Z","","0" +"NM-16061","68.54000091552734","68.54000091552734","","1970-02-10T00:00:00Z","","0" +"NM-01060","139.77000427246094","139.77000427246094","","1997-03-19T00:00:00Z","","0" +"NM-27720","56.68000030517578","56.68000030517578","","1954-11-23T00:00:00Z","","0" +"NM-02256","7.699999809265137","7.699999809265137","","1975-03-15T00:00:00Z","","0" +"NM-28253","34.959999084472656","34.959999084472656","","1956-08-25T00:00:00Z","","0" +"DE-0248","108.76000213623047","108.76000213623047","","2010-12-06T00:00:00Z","","0" +"NM-05689","96.63999938964844","96.63999938964844","","1956-09-07T00:00:00Z","","0" +"NM-28256","140.88999938964844","140.88999938964844","","2004-10-05T00:00:00Z","","0" +"NM-06508","79.70999908447266","79.70999908447266","","1973-01-23T00:00:00Z","","0" +"NM-05368","79.29000091552734","79.29000091552734","","1951-03-13T00:00:00Z","","0" +"NM-28255","75.05000305175781","75.05000305175781","","1958-04-15T00:00:00Z","","0" +"NM-28256","151.49000549316406","151.49000549316406","","2000-10-16T00:00:00Z","","0" +"NM-17227","71.83999633789062","71.83999633789062","","1961-01-10T00:00:00Z","","0" +"NM-18499","249.75","249.75","","1975-01-06T00:00:00Z","","0" +"NM-10245","64.0199966430664","64.0199966430664","","1967-01-31T00:00:00Z","","0" +"NM-22744","37.63999938964844","37.63999938964844","","1949-04-12T00:00:00Z","","0" +"NM-20400","318.2200012207031","318.2200012207031","","1967-02-09T00:00:00Z","","0" +"NM-01885","28.899999618530273","28.899999618530273","","2004-07-21T00:00:00Z","","0" +"NM-16979","67.06999969482422","67.06999969482422","","1954-09-20T00:00:00Z","","0" +"NM-21584","5.179999828338623","5.179999828338623","Z","2005-09-14T00:00:00Z","","0" +"NM-01928","17.149999618530273","17.149999618530273","","1995-02-15T00:00:00Z","","0" +"NM-07131","110.26000213623047","110.26000213623047","","2000-07-13T00:00:00Z","","0" +"AR-0048","13.789999961853027","12.239999771118164","","2016-10-17T00:00:00Z","","1.5499999523162842" +"NM-03378","30.739999771118164","30.739999771118164","","1985-03-04T00:00:00Z","","0" +"NM-05839","208.57000732421875","208.57000732421875","","1961-01-10T00:00:00Z","","0" +"NM-07436","100.8499984741211","100.8499984741211","","1954-06-25T00:00:00Z","","0" +"NM-06262","402.29998779296875","402.29998779296875","","1970-04-02T00:00:00Z","","0" +"NM-03643","170.1300048828125","170.1300048828125","","2014-05-06T00:00:00Z","","0" +"EB-304","15.15999984741211","14.329999923706055","","2004-01-09T00:00:00Z","","0.8299999833106995" +"NM-03078","136.52000427246094","136.52000427246094","R","1985-04-23T00:00:00Z","","0" +"NM-20206","72.75","72.75","","1977-02-09T00:00:00Z","","0" +"NM-05367","88.55999755859375","88.55999755859375","S","1949-09-02T00:00:00Z","","0" +"NM-03299","47.47999954223633","47.47999954223633","","1962-09-05T00:00:00Z","","0" +"NM-02487","13.600000381469727","13.600000381469727","","1955-07-15T00:00:00Z","","0" +"NM-10335","57.91999816894531","57.91999816894531","","1959-01-20T00:00:00Z","","0" +"NM-03262","83.19000244140625","83.19000244140625","","1971-01-26T00:00:00Z","","0" +"NM-01994","387.4100036621094","387.4100036621094","","1982-02-16T00:00:00Z","","0" +"NM-00585","51.349998474121094","51.349998474121094","","2013-12-11T00:00:00Z","","0" +"DE-0336","31.350000381469727","31.350000381469727","","2015-12-15T00:00:00Z","","0" +"NM-28234","","","D","2011-05-25T00:00:00Z","","0" +"NM-01899","54.790000915527344","54.790000915527344","","1998-01-20T00:00:00Z","","0" +"NM-06156","1.7599999904632568","1.7599999904632568","","1975-08-04T00:00:00Z","","0" +"EB-387","99.93000030517578","98.69000244140625","","2016-04-05T00:00:00Z","","1.2400000095367432" +"NM-22761","8.220000267028809","8.220000267028809","","1983-03-08T00:00:00Z","","0" +"NM-11527","72.19999694824219","72.19999694824219","","1974-01-22T00:00:00Z","","0" +"NM-18061","14.850000381469727","14.850000381469727","","1997-03-14T00:00:00Z","","0" +"NM-26736","176.89999389648438","176.89999389648438","","1958-05-06T00:00:00Z","","0" +"NM-21289","175.8000030517578","175.8000030517578","T","1984-04-03T00:00:00Z","","0" +"NM-08497","89.16999816894531","89.16999816894531","","1986-02-20T00:00:00Z","","0" +"NM-01926","6.300000190734863","6.300000190734863","","1989-03-15T00:00:00Z","","0" +"NM-28255","1.9500000476837158","1.9500000476837158","","1994-01-15T00:00:00Z","","0" +"NM-28256","94.58999633789062","94.58999633789062","","2014-01-24T00:00:00Z","","0" +"NM-04464","87.0999984741211","87.0999984741211","P","1955-05-24T00:00:00Z","","0" +"NM-01904","38.5","38.5","","1956-05-11T00:00:00Z","","0" +"NM-28258","104.6500015258789","104.6500015258789","","2000-02-15T00:00:00Z","","0" +"NM-17989","19.770000457763672","19.770000457763672","","1968-01-10T00:00:00Z","","0" +"NM-03799","6.449999809265137","6.449999809265137","","1942-01-13T00:00:00Z","","0" +"NM-19484","2.200000047683716","2.200000047683716","","1986-10-09T00:00:00Z","","0" +"UC-0039","117","117","","1978-01-26T00:00:00Z","","0" +"SB-0262","140.99000549316406","140.99000549316406","","1950-01-03T00:00:00Z","","0" +"NM-00094","0.8799999952316284","0.8799999952316284","","1962-11-23T00:00:00Z","","0" +"NM-02554","388.79998779296875","388.79998779296875","","2002-02-01T00:00:00Z","","0" +"SA-0043","128.35000610351562","126.70000457763672","","2011-03-23T00:00:00Z","","1.649999976158142" +"NM-02207","19.200000762939453","19.200000762939453","","1978-05-15T00:00:00Z","","0" +"NM-01269","98.7300033569336","98.7300033569336","","1956-12-12T00:00:00Z","","0" +"NM-02282","398.989990234375","398.989990234375","","1964-02-01T00:00:00Z","","0" +"NM-02702","1.399999976158142","1.399999976158142","","1989-10-05T00:00:00Z","","0" +"NM-28256","93.19000244140625","93.19000244140625","","1985-11-15T00:00:00Z","","0" +"NM-17716","1","1","","1943-06-05T00:00:00Z","","0" +"NM-19385","55.959999084472656","55.959999084472656","","1946-02-20T00:00:00Z","","0" +"SV-0092","129","127.16999816894531","","2016-08-14T00:00:00Z","","1.8300000429153442" +"NM-13623","30.6299991607666","30.6299991607666","","1959-01-07T00:00:00Z","","0" +"NM-04108","148.6300048828125","148.6300048828125","P","1949-05-24T00:00:00Z","","0" +"NM-01293","27.06999969482422","27.06999969482422","","1988-01-07T00:00:00Z","","0" +"NM-02314","8.699999809265137","8.699999809265137","","1962-07-15T00:00:00Z","","0" +"NM-11975","93.7699966430664","93.7699966430664","","1951-09-10T00:00:00Z","","0" +"NM-01247","38.7599983215332","38.7599983215332","","1960-06-01T00:00:00Z","","0" +"NM-06855","24.389999389648438","24.389999389648438","","1958-01-08T00:00:00Z","","0" +"NM-03388","15.0600004196167","15.0600004196167","","1962-07-18T00:00:00Z","","0" +"NM-13594","40.58000183105469","40.58000183105469","","1958-08-18T00:00:00Z","","0" +"WL-0044","490.8800048828125","489.58001708984375","","2021-10-14T00:00:00Z","0001-01-01T11:37:00Z","1.2999999523162842" +"NM-02350","74.19999694824219","74.19999694824219","","1996-01-24T00:00:00Z","","0" +"NM-01534","50.439998626708984","50.439998626708984","","1967-02-06T00:00:00Z","","0" +"NM-20872","135.97000122070312","135.97000122070312","","1957-05-23T00:00:00Z","","0" +"DE-0112","41.4900016784668","41.4900016784668","","2003-11-05T00:00:00Z","","0" +"NM-23662","26","26","","1988-02-01T00:00:00Z","","0" +"NM-18599","256.0199890136719","256.0199890136719","","1961-09-12T00:00:00Z","","0" +"NM-00366","117.41999816894531","117.41999816894531","","1971-03-01T00:00:00Z","","0" +"DE-0183","51.88999938964844","51.88999938964844","","2015-04-17T00:00:00Z","","0" +"NM-00142","16.030000686645508","16.030000686645508","","2013-01-08T00:00:00Z","","0" +"NM-11335","189.0800018310547","189.0800018310547","","1966-02-08T00:00:00Z","","0" +"NM-22940","219.88999938964844","219.88999938964844","","1987-05-11T00:00:00Z","","0" +"NM-20308","79.48999786376953","79.48999786376953","","1954-01-22T00:00:00Z","","0" +"NM-11920","0.25999999046325684","0.25999999046325684","","1958-07-29T00:00:00Z","","0" +"NM-11922","151.35000610351562","151.35000610351562","","1963-09-04T00:00:00Z","","0" +"BC-0042","241.97999572753906","241.97999572753906","","2014-12-03T00:00:00Z","","0" +"NM-28254","110.0999984741211","110.0999984741211","","1982-04-05T00:00:00Z","","0" +"NM-00366","80.48999786376953","80.48999786376953","","1988-11-21T00:00:00Z","","0" +"NM-01100","44.349998474121094","44.349998474121094","","1997-03-18T00:00:00Z","","0" +"NM-05607","101.56999969482422","101.56999969482422","","1951-01-11T00:00:00Z","","0" +"UC-0121","58","58","","1981-01-28T00:00:00Z","","0" +"NM-17947","13.319999694824219","13.319999694824219","","1950-01-14T00:00:00Z","","0" +"NM-13870","-10.529999732971191","-10.529999732971191","","1907-01-03T00:00:00Z","","0" +"NM-03104","309.82000732421875","309.82000732421875","","1983-05-31T00:00:00Z","","0" +"NM-19933","11.1899995803833","11.1899995803833","","1943-06-18T00:00:00Z","","0" +"NM-16788","4.579999923706055","4.579999923706055","","1947-11-20T00:00:00Z","","0" +"NM-02710","28.989999771118164","28.989999771118164","","1975-11-01T00:00:00Z","","0" +"NM-01435","145.32000732421875","145.32000732421875","R","2009-08-04T00:00:00Z","","0" +"NM-12353","29.68000030517578","29.68000030517578","","1934-06-18T00:00:00Z","","0" +"NM-11284","268.57000732421875","268.57000732421875","R","1966-02-16T00:00:00Z","","0" +"NM-02742","155.07000732421875","155.07000732421875","","1999-01-11T00:00:00Z","","0" +"NM-03270","7.21999979019165","7.21999979019165","","1975-01-24T00:00:00Z","","0" +"NM-08417","-28.719999313354492","-28.719999313354492","","1907-10-07T00:00:00Z","","0" +"NM-00574","48.90999984741211","48.90999984741211","","1964-02-12T00:00:00Z","","0" +"NM-02314","14.199999809265137","14.199999809265137","","1956-04-15T00:00:00Z","","0" +"NM-02286","14.010000228881836","14.010000228881836","","2015-08-25T00:00:00Z","","0" +"SO-0255","15.630000114440918","13.989999771118164","","2020-09-12T00:00:00Z","0001-01-01T12:07:00Z","1.6399999856948853" +"NM-02172","354.3500061035156","354.3500061035156","","2005-03-30T00:00:00Z","","0" +"NM-17716","4.489999771118164","4.489999771118164","","1946-06-30T00:00:00Z","","0" +"NM-28256","102.08999633789062","102.08999633789062","","2013-12-27T00:00:00Z","","0" +"NM-08764","75.69999694824219","75.69999694824219","","1961-01-17T00:00:00Z","","0" +"EB-265","5.300000190734863","5.300000190734863","","2014-10-15T00:00:00Z","","0" +"NM-15397","79.88999938964844","79.88999938964844","","1989-12-13T00:00:00Z","","0" +"NM-28040","29.030000686645508","29.030000686645508","","1985-01-31T00:00:00Z","","0" +"NM-23335","419","419","P","1988-04-15T00:00:00Z","","0" +"NM-17542","34.189998626708984","34.189998626708984","P","1950-03-29T00:00:00Z","","0" +"NM-02281","23.489999771118164","23.489999771118164","","2003-04-23T00:00:00Z","","0" +"NM-12479","10.279999732971191","10.279999732971191","","1968-10-09T00:00:00Z","","0" +"NM-25680","-103.8499984741211","-103.8499984741211","","1988-09-15T00:00:00Z","","0" +"NM-21504","6.920000076293945","6.920000076293945","","2014-04-11T00:00:00Z","","0" +"NM-04834","74.55000305175781","74.55000305175781","R","1966-08-10T00:00:00Z","","0" +"NM-03903","328.79998779296875","328.79998779296875","","1977-04-18T00:00:00Z","","0" +"NM-00253","22.969999313354492","22.969999313354492","Z","1999-07-13T00:00:00Z","","0" +"NM-00291","30.690000534057617","30.690000534057617","","1986-02-13T00:00:00Z","","0" +"NM-22442","10.600000381469727","10.600000381469727","","1988-01-29T00:00:00Z","","0" +"SB-0299","150.3800048828125","150.3800048828125","","2011-08-20T00:00:00Z","","0" +"NM-18133","233.6199951171875","233.6199951171875","","1987-01-08T00:00:00Z","","0" +"NM-05713","67.12999725341797","67.12999725341797","","1931-11-27T00:00:00Z","","0" +"NM-01927","85.2699966430664","85.2699966430664","R","1948-07-26T00:00:00Z","","0" +"NM-02004","8.5","8.5","","1954-06-15T00:00:00Z","","0" +"NM-21396","3.4700000286102295","3.4700000286102295","Z","2011-10-31T00:00:00Z","","0" +"NM-03747","58.189998626708984","58.189998626708984","","1958-01-10T00:00:00Z","","0" +"NM-01791","315.8500061035156","315.8500061035156","","1999-07-30T00:00:00Z","","0" +"NM-21386","6.460000038146973","6.460000038146973","Z","2011-10-28T00:00:00Z","","0" +"NM-04591","64.76000213623047","64.76000213623047","P","1949-11-25T00:00:00Z","","0" +"NM-11048","-95.70999908447266","-95.70999908447266","","1907-01-22T00:00:00Z","","0" +"NM-00208","26.399999618530273","26.399999618530273","","1946-10-25T00:00:00Z","","0" +"NM-09218","-91.08999633789062","-91.08999633789062","","1912-02-01T00:00:00Z","","0" +"NM-11538","57.25","57.25","","1967-01-04T00:00:00Z","","0" +"NM-23435","100.94000244140625","100.94000244140625","","1984-01-24T00:00:00Z","","0" +"SD-0249","139","139","","1956-01-01T00:00:00Z","","0" +"NM-22455","47.279998779296875","47.279998779296875","T","1984-04-19T00:00:00Z","","0" +"EB-288","104.83000183105469","104.83000183105469","","1984-10-31T00:00:00Z","","0" +"DE-0182","51.56999969482422","51.56999969482422","","2007-12-07T00:00:00Z","","0" +"NM-25142","85.16000366210938","85.16000366210938","","1982-08-26T00:00:00Z","","0" +"NM-28253","19.040000915527344","19.040000915527344","","1986-01-05T00:00:00Z","","0" +"NM-00304","38.209999084472656","38.209999084472656","","1994-07-13T00:00:00Z","","0" +"TV-118","136.7100067138672","135.8100128173828","","2012-06-05T00:00:00Z","","0.8999999761581421" +"NM-06086","103.08999633789062","103.08999633789062","","1971-10-07T00:00:00Z","","0" +"NM-02207","7.800000190734863","7.800000190734863","","1947-04-15T00:00:00Z","","0" +"NM-28253","43.7400016784668","43.7400016784668","","1981-05-25T00:00:00Z","","0" +"NM-17209","46.54999923706055","46.54999923706055","","1949-11-21T00:00:00Z","","0" +"NM-04700","81.02999877929688","81.02999877929688","","1959-04-15T00:00:00Z","","0" +"NM-02296","57.939998626708984","57.939998626708984","","2002-01-17T00:00:00Z","","0" +"NM-14566","69.91000366210938","69.91000366210938","","1986-04-09T00:00:00Z","","0" +"NM-02112","288.67999267578125","288.67999267578125","","2001-02-27T00:00:00Z","","0" +"NM-19509","340.8999938964844","340.8999938964844","S","1958-06-05T00:00:00Z","","0" +"NM-02290","199.1300048828125","199.1300048828125","","1997-02-19T00:00:00Z","","0" +"NM-00198","15.579999923706055","15.579999923706055","","1988-02-12T00:00:00Z","","0" +"NM-00469","83.54000091552734","83.54000091552734","","1975-01-07T00:00:00Z","","0" +"NM-21787","24.950000762939453","24.950000762939453","","1959-11-03T00:00:00Z","","0" +"NM-01955","3.299999952316284","3.299999952316284","","1999-06-15T00:00:00Z","","0" +"NM-11750","96.56999969482422","96.56999969482422","Z","1990-09-12T00:00:00Z","","0" +"NM-07309","169.5399932861328","169.5399932861328","","1981-01-16T00:00:00Z","","0" +"NM-01955","2.799999952316284","2.799999952316284","","1996-09-15T00:00:00Z","","0" +"NM-01947","3.4000000953674316","3.4000000953674316","","1982-09-15T00:00:00Z","","0" +"EB-288","208.1999969482422","208.1999969482422","Z","2005-07-31T00:00:00Z","","0" +"NM-06848","14.149999618530273","14.149999618530273","","1952-09-11T00:00:00Z","","0" +"NM-04662","69.7300033569336","69.7300033569336","","1945-05-12T00:00:00Z","","0" +"EB-415","158.14999389648438","158.14999389648438","","2007-10-04T00:00:00Z","","0" +"DE-0147","73.52999877929688","73.52999877929688","","2011-02-08T00:00:00Z","","0" +"NM-11670","38.630001068115234","38.630001068115234","","1983-01-26T00:00:00Z","","0" +"NM-28256","95.66000366210938","95.66000366210938","","1999-11-15T00:00:00Z","","0" +"NM-01198","6.179999828338623","6.179999828338623","","1993-03-02T00:00:00Z","","0" +"NM-02831","57.470001220703125","57.470001220703125","","1979-01-01T00:00:00Z","","0" +"NM-05920","70.7699966430664","70.7699966430664","","1955-11-15T00:00:00Z","","0" +"NM-03349","26.559999465942383","26.559999465942383","S","1983-01-26T00:00:00Z","","0" +"NM-11713","73.38999938964844","73.38999938964844","","1996-01-30T00:00:00Z","","0" +"NM-14802","102.8499984741211","102.8499984741211","","1972-03-24T00:00:00Z","","0" +"EB-220","126.62000274658203","126.62000274658203","","1977-01-11T00:00:00Z","","0" +"NM-02316","174.14999389648438","174.14999389648438","","1988-01-13T00:00:00Z","","0" +"NM-21653","159.57000732421875","159.57000732421875","","1972-06-22T00:00:00Z","","0" +"NM-02072","80.2300033569336","80.2300033569336","","1971-02-04T00:00:00Z","","0" +"NM-07043","147.44000244140625","147.44000244140625","","1967-10-10T00:00:00Z","","0" +"NM-09178","24.520000457763672","24.520000457763672","","1934-09-16T00:00:00Z","","0" +"NM-20891","211.69000244140625","211.69000244140625","","1972-02-07T00:00:00Z","","0" +"NM-15044","463.739990234375","463.739990234375","","1980-07-01T00:00:00Z","","0" +"NM-24818","26.059999465942383","26.059999465942383","","1962-06-07T00:00:00Z","","0" +"NM-02246","265.8699951171875","265.8699951171875","","2003-02-12T00:00:00Z","","0" +"NM-01720","131.10000610351562","131.10000610351562","","2008-03-25T00:00:00Z","","0" +"NM-28257","6.5","6.5","","1999-09-15T00:00:00Z","","0" +"NM-04464","123.8499984741211","123.8499984741211","","1970-01-20T00:00:00Z","","0" +"NM-02831","57.189998626708984","57.189998626708984","","1976-01-01T00:00:00Z","","0" +"NM-03679","200.75","200.75","","1959-12-02T00:00:00Z","","0" +"NM-28255","18.549999237060547","18.549999237060547","","1950-02-05T00:00:00Z","","0" +"NM-01898","55.90999984741211","55.90999984741211","","2002-08-23T00:00:00Z","","0" +"NM-10294","24.65999984741211","24.65999984741211","","1949-07-15T00:00:00Z","","0" +"NM-19997","77.91999816894531","77.91999816894531","","1944-05-18T00:00:00Z","","0" +"NM-01909","6.699999809265137","6.699999809265137","","2000-02-18T00:00:00Z","","0" +"NM-02142","138.77999877929688","138.77999877929688","","1992-01-31T00:00:00Z","","0" +"NM-01742","147.02000427246094","147.02000427246094","","1974-01-21T00:00:00Z","","0" +"NM-28254","19.15999984741211","19.15999984741211","","1961-02-05T00:00:00Z","","0" +"SB-0574","66.69999694824219","66.69999694824219","","1972-09-01T00:00:00Z","","0" +"NM-03798","206.49000549316406","206.49000549316406","","1961-11-25T00:00:00Z","","0" +"NM-28258","200.14999389648438","200.14999389648438","","2017-07-25T00:00:00Z","","0" +"NM-02840","7.119999885559082","7.119999885559082","","1971-01-21T00:00:00Z","","0" +"NM-06060","25.700000762939453","25.700000762939453","","1954-08-31T00:00:00Z","","0" +"NM-28256","159.08999633789062","159.08999633789062","","2013-11-14T00:00:00Z","","0" +"NM-13823","25.43000030517578","25.43000030517578","","1940-04-17T00:00:00Z","","0" +"AR-0065","25.469999313354492","28.969999313354492","","2017-01-25T00:00:00Z","0001-01-01T10:43:00Z","-3.5" +"NM-02904","258.95001220703125","258.95001220703125","","1986-01-13T00:00:00Z","","0" +"NM-27427","173.6300048828125","173.6300048828125","","1961-03-21T00:00:00Z","","0" +"NM-21557","7.03000020980835","7.03000020980835","Z","2003-12-12T00:00:00Z","","0" +"NM-28022","485.489990234375","485.489990234375","S","2015-05-06T00:00:00Z","","0" +"NM-07160","73.54000091552734","73.54000091552734","","2008-12-09T00:00:00Z","","0" +"NM-02287","4.71999979019165","4.71999979019165","","2008-09-08T00:00:00Z","","0" +"NM-20682","68.98999786376953","68.98999786376953","","1990-03-22T00:00:00Z","","0" +"NM-02035","104.5999984741211","104.5999984741211","","1984-02-16T00:00:00Z","","0" +"NM-02659","12.710000038146973","12.710000038146973","","2009-01-14T00:00:00Z","","0" +"AR-0087","9.4399995803833","8.639999389648438","","2018-09-26T00:00:00Z","0001-01-01T13:10:00Z","0.800000011920929" +"NM-02123","96.52999877929688","96.52999877929688","","1997-02-14T00:00:00Z","","0" +"NM-17696","6.170000076293945","6.170000076293945","","1985-04-23T00:00:00Z","","0" +"NM-00543","35.470001220703125","35.470001220703125","","1962-01-19T00:00:00Z","","0" +"NM-28254","130.3300018310547","130.3300018310547","","1994-07-05T00:00:00Z","","0" +"AB-0038","356.8900146484375","356.8900146484375","","2004-09-30T00:00:00Z","","" +"SA-0117","297.0899963378906","296.1099853515625","","2021-02-24T00:00:00Z","0001-01-01T09:33:00Z","0.9800000190734863" +"SB-0149","132.91000366210938","132.91000366210938","","1993-06-15T00:00:00Z","","0" +"NM-20097","42.83000183105469","42.83000183105469","","1951-05-28T00:00:00Z","","0" +"NM-21242","1.5800000429153442","1.5800000429153442","Z","2009-06-02T00:00:00Z","","0" +"NM-16681","30.969999313354492","30.969999313354492","","1938-02-13T00:00:00Z","","0" +"EB-021","274.1499938964844","281.6499938964844","","1994-08-10T00:00:00Z","","-7.5" +"NM-28251","85.23999786376953","85.23999786376953","","1985-05-15T00:00:00Z","","0" +"NM-02101","9.399999618530273","9.399999618530273","","1978-10-15T00:00:00Z","","0" +"NM-00558","100.0999984741211","100.0999984741211","","2014-12-15T00:00:00Z","","0" +"NM-22447","17.799999237060547","17.799999237060547","P","1988-02-17T00:00:00Z","","0" +"NM-20045","35.15999984741211","35.15999984741211","","1948-01-20T00:00:00Z","","0" +"NM-12649","79.66999816894531","79.66999816894531","","1945-01-20T00:00:00Z","","0" +"NM-26514","39.20000076293945","39.20000076293945","","1987-08-19T00:00:00Z","","0" +"AB-0054","43.54999923706055","43.54999923706055","","1996-10-31T00:00:00Z","","" +"NM-12337","74.86000061035156","74.86000061035156","P","1957-01-16T00:00:00Z","","0" +"NM-25833","155.83999633789062","155.83999633789062","","1973-02-01T00:00:00Z","","0" +"DE-0078","86.36000061035156","86.36000061035156","","2013-05-07T00:00:00Z","","0" +"NM-13748","-4.46999979019165","-4.46999979019165","","1907-12-06T00:00:00Z","","0" +"NM-17476","44.70000076293945","44.70000076293945","","1952-01-23T00:00:00Z","","0" +"NM-11889","1.9199999570846558","1.9199999570846558","","1949-04-01T00:00:00Z","","0" +"NM-08572","22.459999084472656","22.459999084472656","","1966-03-30T00:00:00Z","","0" +"NM-01550","26.989999771118164","26.989999771118164","","2003-03-27T00:00:00Z","","0" +"NM-12330","40.79999923706055","40.79999923706055","","1927-05-11T00:00:00Z","","0" +"NM-08783","165.97000122070312","165.97000122070312","","1960-11-18T00:00:00Z","","0" +"WL-0142","29.549999237060547","28.549999237060547","","2024-02-15T00:00:00Z","0001-01-01T12:02:00Z","1" +"NM-10629","125.75","125.75","","1981-01-26T00:00:00Z","","0" +"SB-0033","130.1999969482422","130.1999969482422","","1972-05-18T00:00:00Z","","0" +"NM-28258","197.10000610351562","197.10000610351562","","1980-06-25T00:00:00Z","","0" +"NM-02560","60","60","","1952-02-01T00:00:00Z","","0" +"NM-21624","","","D","2005-12-28T00:00:00Z","","0" +"NM-09540","88.45999908447266","88.45999908447266","","1944-01-10T00:00:00Z","","0" +"SB-0045","1135.7900390625","1135.7900390625","","2015-11-23T00:00:00Z","","0" +"NM-17716","1.600000023841858","1.600000023841858","","1945-03-21T00:00:00Z","","0" +"AB-0212","158.8000030517578","158.8000030517578","","1997-09-05T00:00:00Z","","" +"NM-02484","87.69000244140625","87.69000244140625","S","1986-08-19T00:00:00Z","","0" +"NM-27446","23.920000076293945","23.920000076293945","","1986-01-13T00:00:00Z","","0" +"NM-02487","7.900000095367432","7.900000095367432","","1986-09-15T00:00:00Z","","0" +"EB-483","400","400","P","1990-02-28T00:00:00Z","","0" +"NM-11969","40.09000015258789","40.09000015258789","","1949-01-20T00:00:00Z","","0" +"NM-00421","26.389999389648438","26.389999389648438","","1984-01-03T00:00:00Z","","0" +"NM-00593","74.5","74.5","","2003-01-04T00:00:00Z","","0" +"NM-02772","133.25999450683594","133.25999450683594","","1997-04-25T00:00:00Z","","0" +"TB-0006","179.64999389648438","177.70999145507812","S","2011-06-15T00:00:00Z","","1.940000057220459" +"NM-02742","109.31999969482422","109.31999969482422","","1961-01-13T00:00:00Z","","0" +"NM-02017","6.699999809265137","6.699999809265137","","1996-11-15T00:00:00Z","","0" +"NM-02250","34.939998626708984","34.939998626708984","","1943-01-14T00:00:00Z","","0" +"NM-16560","31.299999237060547","31.299999237060547","","1982-03-24T00:00:00Z","","0" +"NM-16241","30.280000686645508","30.280000686645508","P","1966-04-06T00:00:00Z","","0" +"NM-12721","28.06999969482422","28.06999969482422","","1957-06-07T00:00:00Z","","0" +"BC-0219","29.25","29.25","","2015-09-08T00:00:00Z","","0" +"NM-01971","7.800000190734863","7.800000190734863","","1946-11-15T00:00:00Z","","0" +"NM-28253","13.739999771118164","13.739999771118164","","1987-12-15T00:00:00Z","","0" +"NM-19811","22.200000762939453","22.200000762939453","","1949-12-15T00:00:00Z","","0" +"NM-01496","","","F","1921-10-25T00:00:00Z","","0" +"NM-02314","9.800000190734863","9.800000190734863","","1959-05-15T00:00:00Z","","0" +"NM-17093","27.149999618530273","27.149999618530273","","1947-01-21T00:00:00Z","","0" +"NM-17500","152.5800018310547","152.5800018310547","","1997-03-12T00:00:00Z","","0" +"QU-096","47.599998474121094","45.39999771118164","","2012-01-24T00:00:00Z","","2.200000047683716" +"NM-06945","127.4800033569336","127.4800033569336","","1970-01-28T00:00:00Z","","0" +"SA-0029","167.72000122070312","167.72000122070312","","1981-03-17T00:00:00Z","","0" +"NM-10963","88.04000091552734","88.04000091552734","","1952-01-15T00:00:00Z","","0" +"DA-0001","564","564","","1968-05-18T00:00:00Z","","0" +"NM-24981","148.57000732421875","148.57000732421875","","1963-03-01T00:00:00Z","","0" +"NM-02142","95.27999877929688","95.27999877929688","","1957-01-15T00:00:00Z","","0" +"NM-26720","173.14999389648438","173.14999389648438","","1965-08-10T00:00:00Z","","0" +"NM-03762","40.29999923706055","40.29999923706055","","1955-01-24T00:00:00Z","","0" +"NM-13754","-29.8799991607666","-29.8799991607666","","1907-01-09T00:00:00Z","","0" +"NM-13092","9.859999656677246","9.859999656677246","","1960-04-19T00:00:00Z","","0" +"NM-28250","79.33000183105469","79.33000183105469","","1998-11-25T00:00:00Z","","0" +"NM-05369","21.90999984741211","21.90999984741211","","1956-07-16T00:00:00Z","","0" +"NM-03078","137.16000366210938","137.16000366210938","R","1996-09-24T00:00:00Z","","0" +"NM-03338","10.15999984741211","10.15999984741211","","1994-05-18T00:00:00Z","","0" +"NM-04258","18.860000610351562","18.860000610351562","","2015-10-29T00:00:00Z","","0" +"NM-13163","-29.8799991607666","-29.8799991607666","","1910-10-10T00:00:00Z","","0" +"NM-11376","32.0099983215332","32.0099983215332","","1963-07-24T00:00:00Z","","0" +"NM-02026","56.22999954223633","56.22999954223633","","1956-03-13T00:00:00Z","","0" +"NM-00686","59.7400016784668","59.7400016784668","Z","1988-07-12T00:00:00Z","","0" +"NM-02518","8.899999618530273","8.899999618530273","","1974-05-15T00:00:00Z","","0" +"BC-0073","217.1999969482422","217.1999969482422","","2011-02-18T00:00:00Z","","0" +"HS-020","5.889999866485596","4.689999580383301","","2012-10-26T00:00:00Z","","1.2000000476837158" +"NM-17716","0.9200000166893005","0.9200000166893005","","1944-01-31T00:00:00Z","","0" +"NM-06268","10.800000190734863","10.800000190734863","","1951-11-15T00:00:00Z","","0" +"NM-03191","387.6000061035156","387.6000061035156","","1987-01-10T00:00:00Z","","0" +"NM-23176","5.409999847412109","5.409999847412109","","1960-06-07T00:00:00Z","","0" +"NM-16574","13.220000267028809","13.220000267028809","","1939-03-13T00:00:00Z","","0" +"NM-00782","16.329999923706055","16.329999923706055","","2009-07-06T00:00:00Z","","0" +"NM-02225","155.89999389648438","155.89999389648438","P","1959-04-20T00:00:00Z","","0" +"BC-0045","182.1199951171875","182.1199951171875","","2014-09-08T00:00:00Z","","0" +"NM-01701","33.720001220703125","33.720001220703125","","2001-02-21T00:00:00Z","","0" +"NM-10906","20.1299991607666","20.1299991607666","","1938-04-08T00:00:00Z","","0" +"NM-00385","38.880001068115234","38.880001068115234","","1963-09-23T00:00:00Z","","0" +"NM-10566","108.98999786376953","108.98999786376953","","1963-09-05T00:00:00Z","","0" +"NM-00185","12.899999618530273","12.899999618530273","","1978-12-15T00:00:00Z","","0" +"ED-0016","250.8000030517578","250.8000030517578","P","1950-01-11T00:00:00Z","","0" +"NM-22798","57.16999816894531","57.16999816894531","","1988-01-15T00:00:00Z","","0" +"NM-12732","15.449999809265137","15.449999809265137","","1938-02-02T00:00:00Z","","0" +"SA-0045","130.74000549316406","128.77000427246094","","2016-02-16T00:00:00Z","","1.9700000286102295" +"NM-01994","386.510009765625","386.510009765625","","1995-02-07T00:00:00Z","","0" +"NM-28024","475.44000244140625","475.44000244140625","S","2015-05-08T00:00:00Z","","0" +"DE-0090","91.51000213623047","91.51000213623047","","2000-09-25T00:00:00Z","","0" +"NM-01955","5.599999904632568","5.599999904632568","","1974-04-15T00:00:00Z","","0" +"NM-19786","131.66000366210938","131.66000366210938","","1998-11-19T00:00:00Z","","0" +"NM-14074","-10.529999732971191","-10.529999732971191","","1912-12-11T00:00:00Z","","0" +"NM-18164","3.690000057220459","3.690000057220459","","1992-02-28T00:00:00Z","","0" +"NM-03329","21.219999313354492","21.219999313354492","","1992-01-08T00:00:00Z","","0" +"NM-04129","20.200000762939453","20.200000762939453","","1957-01-10T00:00:00Z","","0" +"NM-16638","21.8700008392334","21.8700008392334","P","1962-01-06T00:00:00Z","","0" +"NM-10159","29.469999313354492","29.469999313354492","","1951-01-20T00:00:00Z","","0" +"NM-03349","36.95000076293945","36.95000076293945","S","1984-04-30T00:00:00Z","","0" +"NM-01857","77.73999786376953","77.73999786376953","","1985-01-21T00:00:00Z","","0" +"NM-02702","40.38999938964844","40.38999938964844","","2003-08-21T00:00:00Z","","0" +"NM-21719","53.5","53.5","S","1986-08-01T00:00:00Z","","0" +"NM-11714","192.89999389648438","192.89999389648438","","1979-02-09T00:00:00Z","","0" +"NM-23446","158.07000732421875","158.07000732421875","","1961-11-29T00:00:00Z","","0" +"NM-12597","85.5199966430664","85.5199966430664","S","1955-03-08T00:00:00Z","","0" +"NM-26513","37.79999923706055","37.79999923706055","","1988-03-16T00:00:00Z","","0" +"NM-17287","64.12000274658203","64.12000274658203","","1982-03-17T00:00:00Z","","0" +"NM-00986","45.959999084472656","45.959999084472656","","2015-02-10T00:00:00Z","","0" +"NM-03859","49.79999923706055","49.79999923706055","","1954-11-12T00:00:00Z","","0" +"NM-08071","9.600000381469727","9.600000381469727","","1954-04-15T00:00:00Z","","0" +"NM-02926","117.4000015258789","117.4000015258789","","1976-02-05T00:00:00Z","","0" +"NM-26101","90.73999786376953","90.73999786376953","","1986-02-04T00:00:00Z","","0" +"NM-21908","472.260009765625","472.260009765625","S","2013-05-29T00:00:00Z","","0" +"NM-08079","229","229","","1967-12-29T00:00:00Z","","0" +"NM-28259","141.25999450683594","141.25999450683594","","2018-04-25T00:00:00Z","","0" +"NM-01886","53.459999084472656","53.459999084472656","","1992-01-23T00:00:00Z","","0" +"NM-02396","7","7","","1996-01-15T00:00:00Z","","0" +"NM-26421","2.450000047683716","2.450000047683716","","1987-03-16T00:00:00Z","","0" +"NM-18654","153","153","","1977-01-21T00:00:00Z","","0" +"NM-03408","83.80000305175781","83.80000305175781","","1988-02-24T00:00:00Z","","0" +"WL-0130","29.719999313354492","28.899999618530273","AA","2024-09-18T00:00:00Z","0001-01-01T11:20:00Z","0.8199999928474426" +"NM-06595","79.43000030517578","79.43000030517578","","1954-01-07T00:00:00Z","","0" +"NM-02760","90.08000183105469","90.08000183105469","","2004-03-01T00:00:00Z","","0" +"NM-11785","35.369998931884766","35.369998931884766","","1947-11-15T00:00:00Z","","0" +"SM-0117","35.900001525878906","35.900001525878906","","1955-12-08T00:00:00Z","","0" +"NM-18487","314.32000732421875","314.32000732421875","","2004-03-11T00:00:00Z","","0" +"NM-05678","121.6500015258789","121.6500015258789","","1987-02-02T00:00:00Z","","0" +"NM-09176","26.520000457763672","26.520000457763672","","1939-03-31T00:00:00Z","","0" +"NM-02787","88.18000030517578","88.18000030517578","","1952-01-26T00:00:00Z","","0" +"EB-209","65.8499984741211","64.5999984741211","","1980-05-10T00:00:00Z","","1.25" +"NM-23098","16.360000610351562","16.360000610351562","","1953-05-26T00:00:00Z","","0" +"NM-02396","12.5","12.5","","1958-02-15T00:00:00Z","","0" +"BW-0475","26","26","","1956-07-10T00:00:00Z","","0" +"NM-12971","28.989999771118164","28.989999771118164","R","1961-02-08T00:00:00Z","","0" +"BC-0003","166.5800018310547","166.5800018310547","","2013-03-12T00:00:00Z","","0" +"SB-0299","126.87999725341797","126.87999725341797","","1970-07-25T00:00:00Z","","0" +"NM-18733","34.720001220703125","34.720001220703125","","1974-08-29T00:00:00Z","","0" +"NM-17716","4.849999904632568","4.849999904632568","","1947-12-12T00:00:00Z","","0" +"NM-02863","26.940000534057617","26.940000534057617","","2001-01-31T00:00:00Z","","0" +"NM-02984","54.29999923706055","54.29999923706055","","1975-01-04T00:00:00Z","","0" +"NM-00558","67.5199966430664","67.5199966430664","","1967-01-04T00:00:00Z","","0" +"NM-10442","73.58000183105469","73.58000183105469","","1981-03-31T00:00:00Z","","0" +"NM-01878","74.83999633789062","74.83999633789062","R","1984-02-16T00:00:00Z","","0" +"TB-0070","133.8000030517578","132.27999877929688","","2010-12-22T00:00:00Z","","1.5199999809265137" +"NM-08410","29.90999984741211","29.90999984741211","","1957-01-08T00:00:00Z","","0" +"EB-357","248.56900024414062","246.56900024414062","S","2002-01-23T00:00:00Z","","2" +"NM-02063","104.23999786376953","104.23999786376953","","1978-12-05T00:00:00Z","","0" +"NM-15044","456.20001220703125","456.20001220703125","","1967-09-01T00:00:00Z","","0" +"NM-00015","69.44000244140625","69.44000244140625","","2000-01-10T00:00:00Z","","0" +"NM-02006","8.199999809265137","8.199999809265137","","1998-11-15T00:00:00Z","","0" +"NM-02761","56.97999954223633","56.97999954223633","","1957-01-08T00:00:00Z","","0" +"NM-27304","155.30999755859375","155.30999755859375","","1981-01-05T00:00:00Z","","0" +"NM-24930","190","190","","1973-11-14T00:00:00Z","","0" +"NM-05602","86.8499984741211","86.8499984741211","","1965-08-02T00:00:00Z","","0" +"NM-10063","8.899999618530273","8.899999618530273","","1977-11-23T00:00:00Z","","0" +"NM-28257","34.06999969482422","34.06999969482422","","1974-05-05T00:00:00Z","","0" +"NM-05283","41.59000015258789","41.59000015258789","","1957-11-14T00:00:00Z","","0" +"NM-21536","8.619999885559082","8.619999885559082","X","1997-01-09T00:00:00Z","","0" +"SV-0039","261.1000061035156","259.5199890136719","","2019-05-11T00:00:00Z","","1.5800000429153442" +"NM-02532","262.29998779296875","262.29998779296875","","1987-01-05T00:00:00Z","","0" +"NM-19770","446.7699890136719","446.7699890136719","","1980-01-07T00:00:00Z","","0" +"NM-03985","34.959999084472656","34.959999084472656","","1954-09-15T00:00:00Z","","0" +"NM-12738","62.29999923706055","62.29999923706055","","1944-02-05T00:00:00Z","","0" +"NM-22840","59.38999938964844","59.38999938964844","","2007-07-11T00:00:00Z","","0" +"NM-07500","17.170000076293945","17.170000076293945","","1976-04-15T00:00:00Z","","0" +"NM-11798","48.04999923706055","48.04999923706055","","2008-01-22T00:00:00Z","","0" +"NM-06676","8.699999809265137","8.699999809265137","","1946-01-15T00:00:00Z","","0" +"NM-23418","194","194","","1971-04-06T00:00:00Z","","0" +"NM-11571","171.86000061035156","171.86000061035156","","1957-07-22T00:00:00Z","","0" +"DE-0094","90.25","90.25","","2014-10-20T00:00:00Z","","0" +"NM-00448","83.88999938964844","83.88999938964844","","1964-09-15T00:00:00Z","","0" +"AB-0113","221.74000549316406","221.74000549316406","","2006-05-08T00:00:00Z","","" +"NM-16524","28.6200008392334","28.6200008392334","","1962-01-06T00:00:00Z","","0" +"NM-28256","240.47999572753906","240.47999572753906","","1997-06-05T00:00:00Z","","0" +"NM-02286","11.670000076293945","11.670000076293945","","2012-06-29T00:00:00Z","","0" +"NM-06504","59","59","","1954-06-07T00:00:00Z","","0" +"SB-0299","120.68000030517578","120.68000030517578","","1973-10-30T00:00:00Z","","0" +"NM-17404","59.470001220703125","59.470001220703125","","1974-06-01T00:00:00Z","","0" +"NM-02128","126.66999816894531","126.31999969482422","","2020-01-24T00:00:00Z","0001-01-01T10:42:00Z","0.3499999940395355" +"NM-05406","159.13999938964844","159.13999938964844","","1970-02-03T00:00:00Z","","0" +"DE-0080","81.83999633789062","81.83999633789062","","2008-12-08T00:00:00Z","","0" +"NM-04632","7.599999904632568","7.599999904632568","","1975-09-15T00:00:00Z","","0" +"AB-0077","6.489999771118164","6.489999771118164","","2002-02-20T00:00:00Z","","" +"EB-263","3.390000104904175","3.390000104904175","","2001-01-08T00:00:00Z","","0" +"NM-02724","11.90999984741211","11.90999984741211","","1976-01-06T00:00:00Z","","0" +"NM-20343","52.47999954223633","52.47999954223633","","1951-11-30T00:00:00Z","","0" +"NM-14971","23.700000762939453","23.700000762939453","","1994-02-02T00:00:00Z","","0" +"NM-12224","5.329999923706055","5.329999923706055","","1962-01-09T00:00:00Z","","0" +"NM-02441","68.0999984741211","68.0999984741211","","1997-04-08T00:00:00Z","","0" +"WL-0102","422.29998779296875","422.29998779296875","","2016-09-08T00:00:00Z","0001-01-01T11:15:00Z","0" +"AB-0039","351.8500061035156","351.8500061035156","","2011-03-03T00:00:00Z","","" +"NM-02754","13.229999542236328","13.229999542236328","","1947-01-26T00:00:00Z","","0" +"NM-03353","53.5","53.5","","1990-12-03T00:00:00Z","","0" +"NM-07340","100.94999694824219","100.94999694824219","","1965-01-15T00:00:00Z","","0" +"NM-01965","126.69999694824219","126.69999694824219","","2002-01-22T00:00:00Z","","0" +"NM-28253","59.13999938964844","59.13999938964844","","1979-08-15T00:00:00Z","","0" +"NM-02345","57.79999923706055","57.79999923706055","","1998-01-08T00:00:00Z","","0" +"NM-18839","26.15999984741211","26.15999984741211","","1985-01-16T00:00:00Z","","0" +"NM-13043","25.520000457763672","25.520000457763672","","1983-01-04T00:00:00Z","","0" +"EB-012","151.3300018310547","151.3300018310547","","1973-07-19T00:00:00Z","","0" +"NM-05516","9.199999809265137","9.199999809265137","","1948-03-15T00:00:00Z","","0" +"NM-00753","491.92999267578125","491.92999267578125","","2014-03-25T00:00:00Z","","0" +"NM-02924","97.18000030517578","97.18000030517578","","1965-10-27T00:00:00Z","","0" +"NM-22038","144.4199981689453","144.4199981689453","","1953-05-28T00:00:00Z","","0" +"NM-28254","46.66999816894531","46.66999816894531","","1983-11-05T00:00:00Z","","0" +"NM-03400","12.550000190734863","12.550000190734863","","2000-12-13T00:00:00Z","","0" +"NM-02101","","","D","1957-06-15T00:00:00Z","","0" +"NM-14052","-22.950000762939453","-22.950000762939453","","1907-06-11T00:00:00Z","","0" +"NM-01886","67.83999633789062","67.83999633789062","","2005-08-18T00:00:00Z","","0" +"NM-26660","2.640000104904175","2.640000104904175","","2013-02-28T00:00:00Z","","0" +"NM-18478","64.52999877929688","64.52999877929688","","1974-08-02T00:00:00Z","","0" +"NM-06700","42.970001220703125","42.970001220703125","","1987-01-14T00:00:00Z","","0" +"EB-012","151.75","151.75","","1973-12-06T00:00:00Z","","0" +"NM-02805","152.9199981689453","152.9199981689453","","1999-01-05T00:00:00Z","","0" +"NM-08268","13.470000267028809","13.470000267028809","","1975-05-11T00:00:00Z","","0" +"NM-22146","6.03000020980835","6.03000020980835","Z","2009-02-18T00:00:00Z","","0" +"NM-05406","340.5","340.5","P","1970-04-20T00:00:00Z","","0" +"NM-01932","352.4700012207031","352.4700012207031","","1983-12-23T00:00:00Z","","0" +"NM-02518","6.099999904632568","6.099999904632568","","1985-07-15T00:00:00Z","","0" +"NM-02348","16.200000762939453","16.200000762939453","","2002-12-15T00:00:00Z","","0" +"NM-15204","58.959999084472656","58.959999084472656","","1966-10-06T00:00:00Z","","0" +"NM-19887","41.70000076293945","41.70000076293945","","1966-09-26T00:00:00Z","","0" +"DE-0187","","","D","2015-11-24T00:00:00Z","","0" +"SM-0022","97.06999969482422","94.86000061035156","","2008-08-13T00:00:00Z","","2.2100000381469727" +"NM-14103","55","55","","1992-06-29T00:00:00Z","","0" +"NM-02314","8.5","8.5","","1993-03-15T00:00:00Z","","0" +"NM-02702","-21.18000030517578","-21.18000030517578","","1998-11-16T00:00:00Z","","0" +"SB-0299","131.17999267578125","131.17999267578125","","1972-08-05T00:00:00Z","","0" +"NM-28255","34.560001373291016","34.560001373291016","","1999-10-25T00:00:00Z","","0" +"NM-22795","14.779999732971191","14.779999732971191","","1983-03-23T00:00:00Z","","0" +"NM-23240","229.8300018310547","229.8300018310547","Z","1996-03-01T00:00:00Z","","0" +"NM-02029","8.399999618530273","8.399999618530273","","2002-10-15T00:00:00Z","","0" +"NM-15224","131.64999389648438","131.64999389648438","","1965-03-04T00:00:00Z","","0" +"NM-15084","281","281","","1973-09-12T00:00:00Z","","0" +"NM-02342","190.4499969482422","190.4499969482422","","1983-01-10T00:00:00Z","","0" +"EB-267","19.649999618530273","19.649999618530273","","2009-11-05T00:00:00Z","","0" +"NM-02197","23.420000076293945","23.420000076293945","","2005-05-26T00:00:00Z","","0" +"NM-12597","84.94000244140625","84.94000244140625","","1954-05-17T00:00:00Z","","0" +"SB-0544","223","223","","1973-10-30T00:00:00Z","","0" +"NM-13234","3.6700000762939453","3.6700000762939453","","1968-04-16T00:00:00Z","","0" +"NM-13014","228.52999877929688","228.52999877929688","","1943-07-10T00:00:00Z","","0" +"NM-02192","51.209999084472656","51.209999084472656","P","1970-02-04T00:00:00Z","","0" +"AB-0179","180.74000549316406","180.74000549316406","","2013-07-08T00:00:00Z","","" +"TV-170","153.7899932861328","151.7899932861328","","2005-04-08T00:00:00Z","","2" +"NM-03395","17.43000030517578","17.43000030517578","","2002-09-19T00:00:00Z","","0" +"NM-00641","44.5","44.5","","2011-12-23T00:00:00Z","","0" +"NM-02167","17.299999237060547","17.299999237060547","","2011-11-07T00:00:00Z","","0" +"NM-12607","64.25","64.25","","1939-05-10T00:00:00Z","","0" +"NM-28256","113.51000213623047","113.51000213623047","","1977-11-15T00:00:00Z","","0" +"NM-05635","23.850000381469727","23.850000381469727","","1949-05-19T00:00:00Z","","0" +"NM-19786","132.33999633789062","132.33999633789062","","2001-06-14T00:00:00Z","","0" +"EB-479","356.6000061035156","356.6000061035156","Z","2007-10-31T00:00:00Z","","0" +"SV-0130","109.9000015258789","108.06666564941406","","2015-04-26T00:00:00Z","","1.8333333730697632" +"NM-08317","13.800000190734863","13.800000190734863","","1947-05-23T00:00:00Z","","0" +"NM-02384","6.400000095367432","6.400000095367432","","1950-06-15T00:00:00Z","","0" +"NM-14027","33.290000915527344","33.290000915527344","","1949-11-02T00:00:00Z","","0" +"NM-02434","114.56999969482422","114.56999969482422","","1970-01-29T00:00:00Z","","0" +"NM-28017","486.70001220703125","486.70001220703125","S","2015-04-18T00:00:00Z","","0" +"NM-03042","105.97000122070312","105.97000122070312","","1992-01-06T00:00:00Z","","0" +"NM-00669","6.519999980926514","6.519999980926514","","1979-01-09T00:00:00Z","","0" +"NM-03790","173.5800018310547","173.5800018310547","","1967-03-30T00:00:00Z","","0" +"NM-02831","63.86000061035156","63.86000061035156","","1983-06-01T00:00:00Z","","0" +"NM-28252","63.54999923706055","63.54999923706055","","1980-04-05T00:00:00Z","","0" +"NM-13968","-7.929999828338623","-7.929999828338623","","1911-03-02T00:00:00Z","","0" +"NM-02560","122.63999938964844","122.63999938964844","","1993-04-22T00:00:00Z","","0" +"NM-17209","47.38999938964844","47.38999938964844","","1949-01-11T00:00:00Z","","0" +"NM-03390","26.31999969482422","26.31999969482422","","1988-10-27T00:00:00Z","","0" +"NM-00094","3.9700000286102295","3.9700000286102295","","1963-08-01T00:00:00Z","","0" +"NM-02352","7.800000190734863","7.800000190734863","","1993-11-15T00:00:00Z","","0" +"NM-13124","-47.20000076293945","-47.20000076293945","","1905-10-23T00:00:00Z","","0" +"NM-20098","37.599998474121094","37.599998474121094","","1946-07-30T00:00:00Z","","0" +"NM-11318","16.440000534057617","16.440000534057617","","1982-04-08T00:00:00Z","","0" +"NM-28259","140.2899932861328","140.2899932861328","","1984-06-05T00:00:00Z","","0" +"DE-0109","38.45000076293945","38.45000076293945","","2010-06-15T00:00:00Z","","0" +"NM-08524","10.5","10.5","","2000-05-15T00:00:00Z","","0" +"NM-04186","23.65999984741211","23.65999984741211","","1945-03-22T00:00:00Z","","0" +"NM-08667","55.130001068115234","55.130001068115234","","1947-01-14T00:00:00Z","","0" +"NM-02813","172.02999877929688","172.02999877929688","","1993-01-26T00:00:00Z","","0" +"NM-28250","108.69999694824219","108.69999694824219","","1976-10-05T00:00:00Z","","0" +"NM-05516","14.800000190734863","14.800000190734863","","1955-03-15T00:00:00Z","","0" +"NM-02831","64.4000015258789","64.4000015258789","","1984-08-06T00:00:00Z","","0" +"NM-04668","157.88999938964844","157.88999938964844","","1977-03-07T00:00:00Z","","0" +"EB-012","140.0800018310547","140.0800018310547","","1977-03-31T00:00:00Z","","0" +"NM-16185","38.27000045776367","38.27000045776367","","1980-01-28T00:00:00Z","","0" +"DE-0113","39.68000030517578","39.68000030517578","","2011-01-29T00:00:00Z","","0" +"NM-00634","64.41000366210938","64.41000366210938","","1986-01-09T00:00:00Z","","0" +"NM-03183","88.0199966430664","88.0199966430664","","1963-02-06T00:00:00Z","","0" +"NM-12429","-36.810001373291016","-36.810001373291016","","1910-03-23T00:00:00Z","","0" +"NM-11098","-55.290000915527344","-55.290000915527344","","1907-06-29T00:00:00Z","","0" +"NM-28012","478.2900085449219","478.2900085449219","S","2015-05-26T00:00:00Z","","0" +"NM-11984","27.559999465942383","27.559999465942383","","1959-01-13T00:00:00Z","","0" +"NM-13946","-4.46999979019165","-4.46999979019165","","1912-06-20T00:00:00Z","","0" +"NM-28011","493.54998779296875","493.54998779296875","S","2015-06-01T00:00:00Z","","0" +"NM-02818","24.8799991607666","24.8799991607666","","1975-01-18T00:00:00Z","","0" +"NM-08524","12.600000381469727","12.600000381469727","","1984-02-15T00:00:00Z","","0" +"DE-0072","167.27999877929688","164.5699920654297","","2010-06-21T00:00:00Z","","2.7100000381469727" +"NM-04525","40.4900016784668","40.4900016784668","","1943-04-27T00:00:00Z","","0" +"NM-02412","29.18000030517578","29.18000030517578","","1947-09-09T00:00:00Z","","0" +"NM-02586","268.54998779296875","268.54998779296875","","1968-01-11T00:00:00Z","","0" +"NM-02591","17","17","","1965-02-15T00:00:00Z","","0" +"EB-362","132.3000030517578","129.3000030517578","","2011-10-20T00:00:00Z","","3" +"NM-28255","110.91000366210938","110.91000366210938","","1981-05-05T00:00:00Z","","0" +"NM-06222","116.31999969482422","116.31999969482422","","1971-10-07T00:00:00Z","","0" +"NM-28041","60","60","","1994-01-18T00:00:00Z","","0" +"NM-02286","8.529999732971191","8.529999732971191","","2003-02-21T00:00:00Z","","0" +"NM-27855","219.44000244140625","219.44000244140625","R","1966-04-20T00:00:00Z","","0" +"NM-03260","5.860000133514404","5.860000133514404","T","1983-12-01T00:00:00Z","","0" +"DE-0146","108.02999877929688","108.02999877929688","","2011-04-13T00:00:00Z","","0" +"NM-01991","9.079999923706055","9.079999923706055","","1981-03-11T00:00:00Z","","0" +"AB-0211","172.00999450683594","172.00999450683594","","1999-07-12T00:00:00Z","","" +"NM-20411","74.29000091552734","74.29000091552734","","1947-09-17T00:00:00Z","","0" +"NM-23126","12.59000015258789","12.59000015258789","Z","2009-02-17T00:00:00Z","","0" +"NM-08289","","","D","2011-09-21T00:00:00Z","","0" +"NM-25038","21.530000686645508","21.530000686645508","","1968-10-14T00:00:00Z","","0" +"DE-0079","84.6500015258789","84.6500015258789","","2009-04-30T00:00:00Z","","0" +"NM-25573","11.15999984741211","11.15999984741211","","1973-07-13T00:00:00Z","","0" +"SA-0035","201.67999267578125","200.07998657226562","","2008-09-24T00:00:00Z","","1.600000023841858" +"NM-00613","62.36000061035156","62.36000061035156","","2003-01-03T00:00:00Z","","0" +"NM-02669","57.75","57.75","","1991-11-21T00:00:00Z","","0" +"SO-0016","100","100","Z","1949-08-02T00:00:00Z","","0" +"NM-11511","82.80000305175781","82.80000305175781","","1991-02-19T00:00:00Z","","0" +"NM-22339","18.540000915527344","18.540000915527344","","1958-10-23T00:00:00Z","","0" +"NM-03636","66.22000122070312","66.22000122070312","","1980-01-30T00:00:00Z","","0" +"NM-03355","34.02000045776367","34.02000045776367","Z","1999-06-29T00:00:00Z","","0" +"NM-28253","55.939998626708984","55.939998626708984","","1971-07-25T00:00:00Z","","0" +"TB-0071","217.1300048828125","215.16000366210938","","2019-11-12T00:00:00Z","0001-01-01T12:27:00Z","1.9700000286102295" +"EB-012","103.58000183105469","103.58000183105469","","1960-06-14T00:00:00Z","","0" +"NM-04175","362.8500061035156","362.8500061035156","","2013-01-30T00:00:00Z","","0" +"UC-0066","","","W","2008-02-26T00:00:00Z","","0" +"NM-28255","119.91000366210938","119.91000366210938","","2008-05-23T00:00:00Z","","0" +"NM-25026","416.79998779296875","416.79998779296875","","1980-06-18T00:00:00Z","","0" +"NM-02005","8.399999618530273","8.399999618530273","","1962-03-15T00:00:00Z","","0" +"SO-0156","10.720000267028809","9.770000457763672","","2021-01-20T00:00:00Z","0001-01-01T11:51:00Z","0.949999988079071" +"NM-20144","66.43000030517578","66.43000030517578","","1950-02-09T00:00:00Z","","0" +"NM-02831","45.25","45.25","","2002-08-05T00:00:00Z","","0" +"NM-03796","349.9100036621094","349.9100036621094","","1980-01-07T00:00:00Z","","0" +"NM-21652","436.0299987792969","436.0299987792969","","1992-03-05T00:00:00Z","","0" +"NM-05721","85.91000366210938","85.91000366210938","","1933-06-16T00:00:00Z","","0" +"NM-14357","27.149999618530273","27.149999618530273","","1944-03-24T00:00:00Z","","0" +"NM-03991","6.880000114440918","6.880000114440918","","1984-02-15T00:00:00Z","","0" +"NM-13121","5.210000038146973","5.210000038146973","","1976-04-28T00:00:00Z","","0" +"NM-11098","-63.369998931884766","-63.369998931884766","","1907-03-23T00:00:00Z","","0" +"NM-00150","108.7699966430664","108.7699966430664","","1991-05-21T00:00:00Z","","0" +"NM-00644","125.66000366210938","125.66000366210938","Z","2008-06-06T00:00:00Z","","0" +"NM-13913","-14.859999656677246","-14.859999656677246","","1907-09-14T00:00:00Z","","0" +"DE-0133","36.29999923706055","36.29999923706055","","2003-02-26T00:00:00Z","","0" +"NM-21374","229.9499969482422","229.9499969482422","","1986-02-01T00:00:00Z","","0" +"NM-10853","58.599998474121094","58.599998474121094","","1982-01-06T00:00:00Z","","0" +"NM-17716","3.0899999141693115","3.0899999141693115","","1947-02-14T00:00:00Z","","0" +"NM-03903","328.29998779296875","328.29998779296875","","1976-01-28T00:00:00Z","","0" +"NM-24874","40.380001068115234","40.380001068115234","","1959-01-08T00:00:00Z","","0" +"NM-12197","19.719999313354492","19.719999313354492","","1939-11-27T00:00:00Z","","0" +"NM-27800","58.2599983215332","58.2599983215332","","1974-06-07T00:00:00Z","","0" +"NM-28250","94.83000183105469","94.83000183105469","","2019-11-15T00:00:00Z","","0" +"NM-02117","96.18000030517578","96.18000030517578","","1964-01-16T00:00:00Z","","0" +"NM-01948","8.399999618530273","8.399999618530273","","1952-10-15T00:00:00Z","","0" +"NM-28254","100.1500015258789","100.1500015258789","","1961-04-05T00:00:00Z","","0" +"NM-20229","55.09000015258789","55.09000015258789","","1943-09-24T00:00:00Z","","0" +"CP-0037","311.010009765625","311.010009765625","","2019-10-23T00:00:00Z","0001-01-01T12:26:00Z","0" +"NM-04044","55.099998474121094","55.099998474121094","","1959-11-10T00:00:00Z","","0" +"NM-20018","42.439998626708984","42.439998626708984","","1965-02-04T00:00:00Z","","0" +"NM-26488","29.030000686645508","29.030000686645508","","1988-02-11T00:00:00Z","","0" +"NM-15263","110.45999908447266","110.45999908447266","S","1956-08-28T00:00:00Z","","0" +"NM-05554","89.58999633789062","89.58999633789062","","1949-11-17T00:00:00Z","","0" +"NM-20134","41.29999923706055","41.29999923706055","","1958-01-26T00:00:00Z","","0" +"NM-06348","62.31999969482422","62.31999969482422","","1965-01-13T00:00:00Z","","0" +"NM-15865","85.12999725341797","85.12999725341797","","1995-01-18T00:00:00Z","","0" +"NM-10607","41.93000030517578","41.93000030517578","","1947-01-18T00:00:00Z","","0" +"NM-28256","85.73999786376953","85.73999786376953","","1969-11-25T00:00:00Z","","0" +"NM-15104","186.5399932861328","186.5399932861328","","1980-01-16T00:00:00Z","","0" +"AR-0054","8.609999656677246","8.3100004196167","","2017-05-31T00:00:00Z","0001-01-01T14:11:00Z","0.30000001192092896" +"SB-0316","30.860000610351562","30.860000610351562","","1952-02-07T00:00:00Z","","0" +"BC-0296","","156.60000610351562","","2021-03-11T00:00:00Z","","1.2000000476837158" +"NM-28255","56.79999923706055","56.79999923706055","","1952-05-05T00:00:00Z","","0" +"NM-27255","46.27000045776367","46.27000045776367","","1952-11-06T00:00:00Z","","0" +"NM-02669","57.7599983215332","57.7599983215332","","1971-06-01T00:00:00Z","","0" +"NM-16298","91.56999969482422","91.56999969482422","","1971-12-15T00:00:00Z","","0" +"NM-00213","164.7899932861328","164.7899932861328","","1983-03-01T00:00:00Z","","0" +"BC-0039","295.45001220703125","295.45001220703125","","2015-06-03T00:00:00Z","","0" +"NM-28257","8.550000190734863","8.550000190734863","","2004-08-16T00:00:00Z","","0" +"AB-0165","482.6600036621094","482.6600036621094","","2002-11-07T00:00:00Z","","" +"NM-02520","14","14","Z","1973-12-15T00:00:00Z","","0" +"NM-01976","123.87999725341797","123.87999725341797","","2006-02-07T00:00:00Z","","0" +"NM-00534","58.47999954223633","58.47999954223633","","1981-01-07T00:00:00Z","","0" +"NM-17564","167.2899932861328","167.2899932861328","R","1961-01-17T00:00:00Z","","0" +"NM-02004","9.5","9.5","","1997-04-15T00:00:00Z","","0" +"NM-14642","108.19000244140625","108.19000244140625","","1965-01-07T00:00:00Z","","0" +"NM-01868","12.199999809265137","12.199999809265137","","1978-03-15T00:00:00Z","","0" +"SA-0181","21.3799991607666","20.589998245239258","","2011-03-24T00:00:00Z","","0.7900000214576721" +"NM-07495","85.16000366210938","85.16000366210938","","1969-12-18T00:00:00Z","","0" +"NM-01251","67.37000274658203","67.37000274658203","","1947-09-02T00:00:00Z","","0" +"NM-06790","528.7000122070312","528.7000122070312","","2012-02-01T00:00:00Z","","0" +"NM-04396","123.95999908447266","123.95999908447266","","1976-01-08T00:00:00Z","","0" +"NM-00873","13.4399995803833","13.4399995803833","","1994-02-01T00:00:00Z","","0" +"NM-06250","118.9000015258789","118.9000015258789","","1972-03-10T00:00:00Z","","0" +"AB-0109","27.459999084472656","27.459999084472656","","2016-04-13T00:00:00Z","","0" +"DE-0291","80.29000091552734","80.29000091552734","","2017-08-29T00:00:00Z","","0" +"EB-610","278.92999267578125","278.92999267578125","","2008-12-04T00:00:00Z","","0" +"NM-03399","15.09000015258789","15.09000015258789","","2013-09-04T00:00:00Z","","0" +"NM-14849","58.119998931884766","58.119998931884766","","1950-01-28T00:00:00Z","","0" +"NM-28258","172.0500030517578","172.0500030517578","","2009-05-05T00:00:00Z","","0" +"SO-0169","6.460000038146973","5.820000171661377","","2021-06-18T00:00:00Z","0001-01-01T18:55:00Z","0.6399999856948853" +"NM-01872","9.300000190734863","9.300000190734863","","1968-12-15T00:00:00Z","","0" +"NM-22689","8.489999771118164","8.489999771118164","Z","2009-02-25T00:00:00Z","","0" +"NM-28259","125.16000366210938","125.16000366210938","","2019-05-06T00:00:00Z","","0" +"NM-02394","78.08000183105469","78.08000183105469","","1959-11-06T00:00:00Z","","0" +"NM-09693","33.599998474121094","33.599998474121094","","1963-11-20T00:00:00Z","","0" +"NM-10649","-64.52999877929688","-64.52999877929688","","1908-03-17T00:00:00Z","","0" +"NM-27261","36.36000061035156","36.36000061035156","","1971-01-13T00:00:00Z","","0" +"NM-26492","145.36000061035156","145.36000061035156","","2003-12-02T00:00:00Z","","0" +"EB-012","411.1000061035156","411.1000061035156","","1971-06-30T00:00:00Z","","0" +"NM-24873","146.42999267578125","146.42999267578125","","1959-10-08T00:00:00Z","","0" +"NM-02757","16.610000610351562","16.610000610351562","","1998-08-05T00:00:00Z","","0" +"NM-10778","51.83000183105469","51.83000183105469","","1956-01-12T00:00:00Z","","0" +"NM-02039","174.3000030517578","174.3000030517578","","1993-01-27T00:00:00Z","","0" +"SB-0299","127.47000122070312","127.47000122070312","","1993-07-25T00:00:00Z","","0" +"NM-07809","177.5","177.5","","1955-03-30T00:00:00Z","","0" +"NM-02208","10.699999809265137","10.699999809265137","","2003-04-15T00:00:00Z","","0" +"NM-00491","39.90999984741211","39.90999984741211","R","1951-01-16T00:00:00Z","","0" +"NM-20869","27.06999969482422","27.06999969482422","","1976-10-27T00:00:00Z","","0" +"NM-11925","75.36000061035156","75.36000061035156","","1965-02-18T00:00:00Z","","0" +"DE-0112","40.400001525878906","40.400001525878906","","2009-08-24T00:00:00Z","","0" +"NM-00316","8.5600004196167","8.5600004196167","","1989-02-14T00:00:00Z","","0" +"NM-00680","56.650001525878906","56.650001525878906","P","1962-09-14T00:00:00Z","","0" +"NM-01932","348","348","","1958-01-06T00:00:00Z","","0" +"NM-21262","2.859999895095825","2.859999895095825","Z","2008-07-03T00:00:00Z","","0" +"NM-05718","82.01000213623047","82.01000213623047","","1942-01-09T00:00:00Z","","0" +"NM-20971","32.63999938964844","32.63999938964844","","1960-02-15T00:00:00Z","","0" +"NM-00669","7.929999828338623","7.929999828338623","","2010-07-28T00:00:00Z","","0" +"NM-22861","81.54000091552734","81.54000091552734","","1942-11-22T00:00:00Z","","0" +"NM-28014","498.6600036621094","498.6600036621094","S","2015-05-16T00:00:00Z","","0" +"NM-16689","39.70000076293945","39.70000076293945","","1956-07-23T00:00:00Z","","0" +"NM-21842","204.42999267578125","204.42999267578125","","2010-12-09T00:00:00Z","","0" +"QY-0799","127.4000015258789","127.4000015258789","R","1955-08-05T00:00:00Z","","0" +"NM-07589","9.65999984741211","9.65999984741211","","1962-12-12T00:00:00Z","","0" +"NM-01742","143.5","143.5","","1967-01-21T00:00:00Z","","0" +"NM-01890","56.77000045776367","56.77000045776367","","2002-08-23T00:00:00Z","","0" +"SO-0227","7.409999847412109","6.799999713897705","","2020-03-16T00:00:00Z","0001-01-01T13:10:00Z","0.6100000143051147" +"NM-23003","4.019999980926514","4.019999980926514","Z","2010-08-31T00:00:00Z","","0" +"NM-01022","422.7799987792969","422.7799987792969","","1975-01-03T00:00:00Z","","0" +"NM-28256","181.08999633789062","181.08999633789062","","1984-08-25T00:00:00Z","","0" +"NM-00249","306.3500061035156","306.3500061035156","","1996-08-27T00:00:00Z","","0" +"NM-28253","22.540000915527344","22.540000915527344","","1986-10-05T00:00:00Z","","0" +"NM-13557","23.030000686645508","23.030000686645508","S","1956-05-15T00:00:00Z","","0" +"SM-0022","103.19000244140625","100.9800033569336","","2007-04-16T00:00:00Z","","2.2100000381469727" +"NM-10349","65.80999755859375","65.80999755859375","","1957-03-12T00:00:00Z","","0" +"NM-00213","166.4199981689453","166.4199981689453","","1995-07-20T00:00:00Z","","0" +"NM-14155","-10.239999771118164","-10.239999771118164","","1906-03-09T00:00:00Z","","0" +"NM-02702","14.100000381469727","14.100000381469727","","1970-11-01T00:00:00Z","","0" +"NM-02282","401.0400085449219","401.0400085449219","","1971-04-01T00:00:00Z","","0" +"NM-02207","16","16","","1980-08-15T00:00:00Z","","0" +"NM-11769","49.9900016784668","49.9900016784668","","1936-08-16T00:00:00Z","","0" +"NM-14388","131.27999877929688","131.27999877929688","P","1954-07-17T00:00:00Z","","0" +"NM-02831","47.63999938964844","47.63999938964844","","1961-06-01T00:00:00Z","","0" +"NM-02935","102.47000122070312","102.47000122070312","","1997-01-04T00:00:00Z","","0" +"NM-02004","6.800000190734863","6.800000190734863","","1947-04-15T00:00:00Z","","0" +"NM-21760","70.33000183105469","70.33000183105469","","1971-09-27T00:00:00Z","","0" +"NM-11579","35.91999816894531","35.91999816894531","","1939-03-21T00:00:00Z","","0" +"SO-0188","7.880000114440918","7.070000171661377","","2021-06-18T00:00:00Z","0001-01-01T19:30:00Z","0.8100000023841858" +"NM-01893","19.15999984741211","19.15999984741211","","2000-02-23T00:00:00Z","","0" +"NM-19995","49.97999954223633","49.97999954223633","","1953-02-27T00:00:00Z","","0" +"NM-11247","57.68000030517578","57.68000030517578","","1957-01-21T00:00:00Z","","0" +"NM-14131","-34.5","-34.5","","1910-03-09T00:00:00Z","","0" +"NM-28255","92.91000366210938","92.91000366210938","","1978-07-05T00:00:00Z","","0" +"NM-00644","117.37000274658203","117.37000274658203","","1984-04-01T00:00:00Z","","0" +"NM-28251","87.55000305175781","87.55000305175781","","1975-04-05T00:00:00Z","","0" +"SA-0233","278.9599914550781","277.3999938964844","","2017-01-27T00:00:00Z","0001-01-01T12:00:00Z","1.559999942779541" +"SA-0174","264.7200012207031","262.4800109863281","","2011-03-16T00:00:00Z","","2.240000009536743" +"NM-08541","332.2699890136719","332.2699890136719","R","1961-01-14T00:00:00Z","","0" +"NM-00792","28.959999084472656","28.959999084472656","","2013-03-29T00:00:00Z","","0" +"NM-06720","71.0199966430664","71.0199966430664","","1961-01-26T00:00:00Z","","0" +"WL-0086","56.125","54.3650016784668","","1998-01-26T00:00:00Z","","1.7599999904632568" +"NM-03672","243.72999572753906","243.72999572753906","","1988-03-15T00:00:00Z","","0" +"DE-0255","82.44999694824219","82.44999694824219","","2018-03-23T00:00:00Z","","0" +"NM-14874","99.37999725341797","99.37999725341797","","1963-09-04T00:00:00Z","","0" +"NM-02669","55.380001068115234","55.380001068115234","","1982-01-01T00:00:00Z","","0" +"NM-05155","138.6300048828125","138.6300048828125","","1993-01-25T00:00:00Z","","0" +"NM-09723","11.109999656677246","11.109999656677246","","2015-09-02T00:00:00Z","","0" +"NM-02811","88.69000244140625","88.69000244140625","","1989-01-04T00:00:00Z","","0" +"NM-14768","124.13999938964844","124.13999938964844","","1989-12-20T00:00:00Z","","0" +"NM-01304","20.209999084472656","20.209999084472656","","2005-08-02T00:00:00Z","","0" +"NM-19893","66.08999633789062","66.08999633789062","","1954-09-24T00:00:00Z","","0" +"NM-05705","120.11000061035156","120.11000061035156","","1954-01-08T00:00:00Z","","0" +"BC-0230","","142.60000610351562","","2021-10-18T00:00:00Z","","1.6699999570846558" +"NM-02831","67.0199966430664","67.0199966430664","","1975-07-01T00:00:00Z","","0" +"NM-28258","116.94999694824219","116.94999694824219","","1983-02-25T00:00:00Z","","0" +"NM-03385","44.43000030517578","44.43000030517578","","1994-08-30T00:00:00Z","","0" +"NM-03036","68.0999984741211","68.0999984741211","","1990-01-05T00:00:00Z","","0" +"NM-27432","34.29999923706055","34.29999923706055","","1936-10-16T00:00:00Z","","0" +"EB-298","132.0800018310547","132.0800018310547","","2005-11-16T00:00:00Z","","0" +"NM-16852","20.649999618530273","20.649999618530273","","1947-07-29T00:00:00Z","","0" +"WL-0088","60.375","57.775001525878906","","1999-03-17T00:00:00Z","","2.5999999046325684" +"NM-02394","70.05000305175781","70.05000305175781","","1934-04-28T00:00:00Z","","0" +"NM-28258","118.80000305175781","118.80000305175781","","2004-12-05T00:00:00Z","","0" +"NM-15349","74.91999816894531","74.91999816894531","P","1964-02-18T00:00:00Z","","0" +"NM-10140","23.690000534057617","23.690000534057617","","1946-05-17T00:00:00Z","","0" +"NM-06807","77.7300033569336","77.7300033569336","","2005-10-05T00:00:00Z","","0" +"NM-03999","328","328","","1956-07-01T00:00:00Z","","0" +"NM-01971","8.199999809265137","8.199999809265137","","1977-10-15T00:00:00Z","","0" +"NM-01955","3.200000047683716","3.200000047683716","","1947-08-15T00:00:00Z","","0" +"NM-12690","-4.46999979019165","-4.46999979019165","","1909-09-28T00:00:00Z","","0" +"NM-03414","52.869998931884766","52.869998931884766","","1994-10-06T00:00:00Z","","0" +"NM-00811","258.2900085449219","258.2900085449219","","2011-01-10T00:00:00Z","","0" +"NM-19594","431.989990234375","431.989990234375","","1977-01-04T00:00:00Z","","0" +"NM-02198","20.6200008392334","20.6200008392334","","2008-04-09T00:00:00Z","","0" +"WL-0091","33.125","30.354999542236328","","1992-03-12T00:00:00Z","","2.7699999809265137" +"NM-01908","121.12999725341797","121.12999725341797","","1959-01-10T00:00:00Z","","0" +"NM-18884","21.469999313354492","21.469999313354492","","1949-09-01T00:00:00Z","","0" +"NM-02424","35.33000183105469","35.33000183105469","","1962-05-11T00:00:00Z","","0" +"NM-04168","68.12000274658203","68.12000274658203","","1962-01-20T00:00:00Z","","0" +"NM-00429","21.469999313354492","21.469999313354492","","1966-01-05T00:00:00Z","","0" +"NM-02758","297.0400085449219","297.0400085449219","","1960-07-21T00:00:00Z","","0" +"NM-03353","59.540000915527344","59.540000915527344","","2015-07-08T00:00:00Z","","0" +"NM-12112","37.66999816894531","37.66999816894531","","1963-09-04T00:00:00Z","","0" +"NM-18629","55.13999938964844","55.13999938964844","","1966-11-03T00:00:00Z","","0" +"QY-0345","81.4000015258789","81.4000015258789","","1955-03-02T00:00:00Z","","0" +"NM-00783","19.530000686645508","19.530000686645508","","2002-10-23T00:00:00Z","","0" +"NM-06805","90.52999877929688","90.52999877929688","","2007-01-11T00:00:00Z","","0" +"NM-04805","59.79999923706055","59.79999923706055","","1946-01-12T00:00:00Z","","0" +"DE-0085","90.29000091552734","90.29000091552734","","1998-08-03T00:00:00Z","","0" +"NM-04404","112.83999633789062","112.83999633789062","","1972-02-01T00:00:00Z","","0" +"NM-02831","15.149999618530273","15.149999618530273","","1948-11-01T00:00:00Z","","0" +"NM-28015","498.95001220703125","498.95001220703125","S","2015-05-26T00:00:00Z","","0" +"AR-0028","12.609999656677246","12.609999656677246","","2015-09-02T00:00:00Z","","0" +"NM-27451","25.90999984741211","25.90999984741211","","1977-04-25T00:00:00Z","","0" +"NM-04536","98.44999694824219","98.44999694824219","","1960-01-07T00:00:00Z","","0" +"NM-21526","313.0899963378906","313.0899963378906","","1991-06-13T00:00:00Z","","0" +"NM-02547","57.790000915527344","57.790000915527344","","1973-01-11T00:00:00Z","","0" +"NM-02591","13.899999618530273","13.899999618530273","","1981-11-15T00:00:00Z","","0" +"AR-0106","9.649999618530273","8.619999885559082","","2016-01-20T00:00:00Z","","1.0299999713897705" +"NM-28259","76.45999908447266","76.45999908447266","","1962-01-05T00:00:00Z","","0" +"NM-28254","120.58999633789062","120.58999633789062","","1973-04-25T00:00:00Z","","0" +"NM-13594","26.389999389648438","26.389999389648438","","1969-11-01T00:00:00Z","","0" +"NM-02209","103.41999816894531","103.41999816894531","","1996-05-31T00:00:00Z","","0" +"NM-13661","23.899999618530273","23.899999618530273","","1989-01-06T00:00:00Z","","0" +"EB-413","207.36000061035156","207.36000061035156","","2011-06-16T00:00:00Z","","0" +"NM-09893","47.59000015258789","47.59000015258789","","1976-02-25T00:00:00Z","","0" +"NM-13594","31.5","31.5","","1970-03-05T00:00:00Z","","0" +"NM-02620","13.199999809265137","13.199999809265137","","1973-06-15T00:00:00Z","","0" +"NM-03903","330.1000061035156","330.1000061035156","","1975-10-19T00:00:00Z","","0" +"NM-28255","121.44999694824219","121.44999694824219","","1958-09-05T00:00:00Z","","0" +"NM-10907","136.77999877929688","136.77999877929688","","1966-01-14T00:00:00Z","","0" +"NM-02383","47.2599983215332","47.2599983215332","","2001-01-26T00:00:00Z","","0" +"NM-00253","24.489999771118164","24.489999771118164","","1969-07-01T00:00:00Z","","0" +"NM-11804","-6.78000020980835","-6.78000020980835","","1914-08-28T00:00:00Z","","0" +"NM-27384","57.52000045776367","57.52000045776367","","1991-01-03T00:00:00Z","","0" +"AR-0034","20.229999542236328","18.649999618530273","","2017-03-14T00:00:00Z","0001-01-01T15:20:00Z","1.5800000429153442" +"NM-27474","75.44000244140625","75.44000244140625","","1952-09-08T00:00:00Z","","0" +"NM-05285","72.94000244140625","72.94000244140625","","1979-01-02T00:00:00Z","","0" +"UC-0095","138.39999389648438","138.39999389648438","","1980-01-30T00:00:00Z","","0" +"DE-0112","42.02000045776367","42.02000045776367","","2008-08-18T00:00:00Z","","0" +"SO-0195","18.360000610351562","15.59000015258789","","2021-06-14T00:00:00Z","0001-01-01T10:15:00Z","2.7699999809265137" +"NM-14070","-2.440000057220459","-2.440000057220459","","1912-05-17T00:00:00Z","","0" +"EB-357","234.24000549316406","232.24000549316406","","2001-12-19T00:00:00Z","","2" +"NM-00947","282.54998779296875","282.54998779296875","","1985-01-14T00:00:00Z","","0" +"NM-28252","39.400001525878906","39.400001525878906","","2004-04-05T00:00:00Z","","0" +"DE-0356","71.69999694824219","69.27999877929688","","2015-12-08T00:00:00Z","","2.4200000762939453" +"NM-02043","5","5","","1975-09-15T00:00:00Z","","0" +"WL-0089","47.625","45.07500076293945","","1996-12-11T00:00:00Z","","2.549999952316284" +"NM-12481","45.2599983215332","45.2599983215332","","1981-01-28T00:00:00Z","","0" +"NM-26508","68.91999816894531","68.91999816894531","","2002-03-25T00:00:00Z","","0" +"NM-14287","13.319999694824219","13.319999694824219","","1951-01-30T00:00:00Z","","0" +"NM-25742","39.369998931884766","39.369998931884766","","1975-10-17T00:00:00Z","","0" +"NM-02658","236.35000610351562","236.35000610351562","","1988-08-19T00:00:00Z","","0" +"NM-28121","143.30999755859375","143.30999755859375","","1981-02-20T00:00:00Z","","0" +"NM-08810","204.3800048828125","204.3800048828125","","1978-01-18T00:00:00Z","","0" +"NM-01899","82.30000305175781","82.30000305175781","","2002-06-24T00:00:00Z","","0" +"NM-00395","33.02000045776367","33.02000045776367","","1948-11-17T00:00:00Z","","0" +"DE-0119","36.189998626708984","36.189998626708984","","2011-10-10T00:00:00Z","","0" +"NM-06376","233.5500030517578","233.5500030517578","","1988-04-08T00:00:00Z","","0" +"NM-22549","162.61000061035156","162.61000061035156","","1953-09-24T00:00:00Z","","0" +"NM-12442","-24.100000381469727","-24.100000381469727","","1912-05-31T00:00:00Z","","0" +"NM-05546","273.9800109863281","273.9800109863281","","1970-12-09T00:00:00Z","","0" +"NM-19787","131.80999755859375","131.80999755859375","","1999-04-19T00:00:00Z","","0" +"BC-0254","501.7099914550781","501.7099914550781","","2017-01-27T00:00:00Z","","0" +"NM-28250","84.08000183105469","84.08000183105469","","2004-12-23T00:00:00Z","","0" +"QU-009","89.44000244140625","94.38999938964844","","2013-06-19T00:00:00Z","","-4.949999809265137" +"NM-20045","34.11000061035156","34.11000061035156","","1946-12-03T00:00:00Z","","0" +"SM-0033","29.40999984741211","28.329999923706055","","2010-03-05T00:00:00Z","","1.0800000429153442" +"NM-13402","8.699999809265137","8.699999809265137","","1911-05-24T00:00:00Z","","0" +"NM-02349","13.600000381469727","13.600000381469727","","1975-04-15T00:00:00Z","","0" +"NM-00439","226.82000732421875","226.82000732421875","","2009-02-24T00:00:00Z","","0" +"NM-01725","-97.55999755859375","-97.55999755859375","E","1982-01-26T00:00:00Z","","0" +"NM-00637","32.650001525878906","32.650001525878906","P","1966-02-09T00:00:00Z","","0" +"NM-03136","88.86000061035156","88.86000061035156","R","1966-01-14T00:00:00Z","","0" +"NM-11928","-0.3499999940395355","-0.3499999940395355","","1951-02-01T00:00:00Z","","0" +"NM-28257","5.75","5.75","","2010-04-26T00:00:00Z","","0" +"NM-09268","140.16000366210938","140.16000366210938","","1951-05-14T00:00:00Z","","0" +"NM-01884","16.459999084472656","16.459999084472656","","2004-05-17T00:00:00Z","","0" +"NM-14037","-61.060001373291016","-61.060001373291016","","1910-12-14T00:00:00Z","","0" +"NM-23058","39.16999816894531","39.16999816894531","","1983-03-21T00:00:00Z","","0" +"NM-01985","16.270000457763672","16.270000457763672","","2014-01-16T00:00:00Z","","0" +"NM-13882","-6.78000020980835","-6.78000020980835","","1907-01-02T00:00:00Z","","0" +"NM-03401","8.979999542236328","8.979999542236328","","1993-10-08T00:00:00Z","","0" +"NM-00974","341.79998779296875","341.79998779296875","","1964-09-18T00:00:00Z","","0" +"NM-27901","75.02999877929688","75.02999877929688","","1990-04-12T00:00:00Z","","0" +"NM-11181","-56.439998626708984","-56.439998626708984","","1912-05-30T00:00:00Z","","0" +"NM-02436","77.44999694824219","77.44999694824219","","1998-02-05T00:00:00Z","","0" +"NM-21889","2.569999933242798","2.569999933242798","Z","2010-05-14T00:00:00Z","","0" +"NM-05709","52.459999084472656","52.459999084472656","","1940-09-05T00:00:00Z","","0" +"NM-03916","25.479999542236328","25.479999542236328","","1952-11-07T00:00:00Z","","0" +"NM-01889","12.680000305175781","12.680000305175781","","1985-11-27T00:00:00Z","","0" +"NM-28163","54.93000030517578","54.93000030517578","","1991-04-18T00:00:00Z","","0" +"NM-13901","2.930000066757202","2.930000066757202","","1959-05-13T00:00:00Z","","0" +"AB-0100","688.239990234375","688.239990234375","","2016-07-05T00:00:00Z","","0" +"NM-02288","6.21999979019165","6.21999979019165","","2003-01-22T00:00:00Z","","0" +"NM-28259","144.1199951171875","144.1199951171875","","2003-04-15T00:00:00Z","","0" +"NM-19858","50.11000061035156","50.11000061035156","","1944-01-25T00:00:00Z","","0" +"NM-19096","120.19999694824219","120.19999694824219","","1974-10-22T00:00:00Z","","0" +"NM-06596","54.310001373291016","54.310001373291016","","1933-10-15T00:00:00Z","","0" +"NM-28252","40.09000015258789","40.09000015258789","","1957-06-15T00:00:00Z","","0" +"SB-0262","151.77999877929688","151.77999877929688","","1956-01-20T00:00:00Z","","0" +"NM-12595","12.430000305175781","12.430000305175781","","1960-01-12T00:00:00Z","","0" +"NM-20389","78.94999694824219","78.94999694824219","","1947-01-24T00:00:00Z","","0" +"NM-07699","54.22999954223633","54.22999954223633","","1991-07-03T00:00:00Z","","0" +"NM-28252","33.16999816894531","33.16999816894531","","1957-02-15T00:00:00Z","","0" +"EB-012","155.3300018310547","155.3300018310547","","1973-02-08T00:00:00Z","","0" +"NM-02287","4.920000076293945","4.920000076293945","","1997-08-05T00:00:00Z","","0" +"NM-06676","13.899999618530273","13.899999618530273","","1973-04-15T00:00:00Z","","0" +"NM-28253","43.38999938964844","43.38999938964844","","1977-10-05T00:00:00Z","","0" +"NM-20540","225.94000244140625","225.94000244140625","","1977-02-17T00:00:00Z","","0" +"NM-00990","318.8500061035156","318.8500061035156","","1982-01-11T00:00:00Z","","0" +"NM-04540","85.83000183105469","85.83000183105469","A","2012-03-09T00:00:00Z","","0" +"NM-01985","8.600000381469727","8.600000381469727","","1980-10-15T00:00:00Z","","0" +"NM-21548","4.829999923706055","4.829999923706055","Z","2009-03-17T00:00:00Z","","0" +"SB-0299","134.44000244140625","134.44000244140625","","1999-09-20T00:00:00Z","","0" +"NM-11318","16.6200008392334","16.6200008392334","","1969-01-21T00:00:00Z","","0" +"NM-11919","1.8799999952316284","1.8799999952316284","","1953-05-06T00:00:00Z","","0" +"NM-11795","44.400001525878906","44.400001525878906","","1955-05-31T00:00:00Z","","0" +"NM-02829","11.460000038146973","11.460000038146973","","1989-01-05T00:00:00Z","","0" +"NM-19996","40.02000045776367","40.02000045776367","","1948-03-23T00:00:00Z","","0" +"NM-24664","302.7799987792969","302.7799987792969","","1973-07-16T00:00:00Z","","0" +"NM-04456","81.47000122070312","81.47000122070312","","1972-04-11T00:00:00Z","","0" +"NM-12597","103.8499984741211","103.8499984741211","","1963-09-04T00:00:00Z","","0" +"NM-02309","177.63999938964844","177.63999938964844","","1997-02-06T00:00:00Z","","0" +"NM-01971","6.400000095367432","6.400000095367432","","1950-04-15T00:00:00Z","","0" +"NM-09670","94.19999694824219","94.19999694824219","","1981-01-20T00:00:00Z","","0" +"NM-09036","83.33000183105469","83.33000183105469","","1958-08-26T00:00:00Z","","0" +"NM-28255","80.5999984741211","80.5999984741211","","1976-10-15T00:00:00Z","","0" +"NM-12989","4.570000171661377","4.570000171661377","","1978-08-07T00:00:00Z","","0" +"NM-02596","33.099998474121094","33.099998474121094","","1997-02-06T00:00:00Z","","0" +"NM-07180","80.87000274658203","80.87000274658203","","1968-01-22T00:00:00Z","","0" +"NM-16990","-2.0199999809265137","-2.0199999809265137","","1941-09-26T00:00:00Z","","0" +"NM-17396","46.22999954223633","46.22999954223633","","1936-10-21T00:00:00Z","","0" +"NM-02182","83.87999725341797","83.87999725341797","","1970-01-15T00:00:00Z","","0" +"NM-28254","89.9000015258789","89.9000015258789","","2018-09-25T00:00:00Z","","0" +"NM-11518","37.59000015258789","37.59000015258789","","1935-03-19T00:00:00Z","","0" +"NM-28256","270.1400146484375","270.1400146484375","","2003-07-03T00:00:00Z","","0" +"NM-17517","58.34000015258789","58.34000015258789","","1962-01-16T00:00:00Z","","0" +"EB-486","644.5999755859375","644.5999755859375","","2002-11-29T00:00:00Z","","0" +"NM-01872","7.800000190734863","7.800000190734863","","1983-05-15T00:00:00Z","","0" +"SB-0299","126.0999984741211","126.0999984741211","","1991-05-15T00:00:00Z","","0" +"NM-03338","12.109999656677246","12.109999656677246","","2006-03-02T00:00:00Z","","0" +"NM-01307","254.14999389648438","254.14999389648438","","2008-01-29T00:00:00Z","","0" +"NM-03032","23.260000228881836","23.260000228881836","","1946-09-30T00:00:00Z","","0" +"NM-15799","133.83999633789062","133.83999633789062","","1975-03-19T00:00:00Z","","0" +"NM-26898","49.400001525878906","52.30000305175781","","1998-08-11T00:00:00Z","","0" +"NM-17716","0.9800000190734863","0.9800000190734863","","1942-07-24T00:00:00Z","","0" +"NM-12911","77.68000030517578","77.68000030517578","","1938-06-01T00:00:00Z","","0" +"RA-008","123.20999908447266","122.01000213623047","AA","2023-09-13T00:00:00Z","0001-01-01T14:25:00Z","1.2000000476837158" +"NM-18095","73.6500015258789","73.6500015258789","P","1966-03-18T00:00:00Z","","0" +"NM-08900","87.68000030517578","87.68000030517578","","1956-01-19T00:00:00Z","","0" +"NM-13059","-12.550000190734863","-12.550000190734863","","1907-09-27T00:00:00Z","","0" +"NM-19131","94.83000183105469","94.83000183105469","P","1985-05-22T00:00:00Z","","0" +"NM-28253","10.9399995803833","10.9399995803833","","1988-12-25T00:00:00Z","","0" +"NM-12953","36.7400016784668","36.7400016784668","","1971-03-16T00:00:00Z","","0" +"NM-00075","41.720001220703125","41.720001220703125","","1963-01-22T00:00:00Z","","0" +"NM-03032","32.709999084472656","32.709999084472656","","1951-09-27T00:00:00Z","","0" +"NM-06394","98.1500015258789","98.1500015258789","","1945-11-20T00:00:00Z","","0" +"NM-13594","53.7400016784668","53.7400016784668","","1964-07-01T00:00:00Z","","0" +"NM-00641","35.77000045776367","35.77000045776367","","1988-01-07T00:00:00Z","","0" +"NM-02734","106.9000015258789","106.9000015258789","","1991-02-05T00:00:00Z","","0" +"NM-28252","61.81999969482422","61.81999969482422","","1965-06-25T00:00:00Z","","0" +"NM-11095","64.08999633789062","64.08999633789062","","1971-02-26T00:00:00Z","","0" +"NM-09522","-61.060001373291016","-61.060001373291016","","1907-01-25T00:00:00Z","","0" +"NM-20308","74.54000091552734","74.54000091552734","","1946-07-30T00:00:00Z","","0" +"DE-0100","92.16999816894531","92.16999816894531","","2010-01-27T00:00:00Z","","0" +"NM-13901","6.28000020980835","6.28000020980835","","1962-08-27T00:00:00Z","","0" +"EB-478","650.5800170898438","650.5800170898438","P","2003-03-31T00:00:00Z","","0" +"NM-00202","47.97999954223633","47.97999954223633","","2003-08-22T00:00:00Z","","0" +"NM-02852","55.33000183105469","55.33000183105469","","2010-01-27T00:00:00Z","","0" +"NM-22727","108.6500015258789","108.6500015258789","","1984-04-03T00:00:00Z","","0" +"NM-25494","161.39999389648438","161.39999389648438","","1987-02-03T00:00:00Z","","0" +"NM-13792","-5.909999847412109","-5.909999847412109","","1912-06-04T00:00:00Z","","0" +"QY-0134","42.599998474121094","42.599998474121094","","1953-08-12T00:00:00Z","","0" +"NM-01888","13.010000228881836","13.010000228881836","","2012-05-17T00:00:00Z","","0" +"NM-03353","55.0099983215332","55.0099983215332","","1991-05-29T00:00:00Z","","0" +"NM-08018","11.069999694824219","11.069999694824219","","2013-08-22T00:00:00Z","","0" +"NM-12093","64.1500015258789","64.1500015258789","","1986-02-13T00:00:00Z","","0" +"NM-13463","28.200000762939453","28.200000762939453","","1949-01-05T00:00:00Z","","0" +"NM-02396","7.599999904632568","7.599999904632568","","1981-11-15T00:00:00Z","","0" +"NM-11795","51.65999984741211","51.65999984741211","","1960-09-08T00:00:00Z","","0" +"NM-13619","-24.100000381469727","-24.100000381469727","","1909-03-26T00:00:00Z","","0" +"NM-16350","165.5","165.5","","1975-09-16T00:00:00Z","","0" +"NM-12069","48.68000030517578","48.68000030517578","","1944-02-03T00:00:00Z","","0" +"NM-00857","10.850000381469727","10.850000381469727","","1990-01-25T00:00:00Z","","0" +"NM-03164","31.229999542236328","31.229999542236328","","2000-01-14T00:00:00Z","","0" +"NM-13414","55.79999923706055","55.79999923706055","","1959-11-19T00:00:00Z","","0" +"NM-01985","9.600000381469727","9.600000381469727","","1974-02-15T00:00:00Z","","0" +"NM-00638","39.209999084472656","39.209999084472656","","1954-01-09T00:00:00Z","","0" +"WL-0109","112.19999694824219","110.32999420166016","P","2018-03-29T00:00:00Z","","1.8700000047683716" +"NM-27574","12.760000228881836","12.760000228881836","","1961-01-11T00:00:00Z","","0" +"NM-19940","49.29999923706055","49.29999923706055","","1954-01-19T00:00:00Z","","0" +"NM-20738","5.5","5.5","","1948-03-24T00:00:00Z","","0" +"NM-00462","42.25","42.25","","1953-01-08T00:00:00Z","","0" +"NM-02702","-15.470000267028809","-15.470000267028809","","1999-10-25T00:00:00Z","","0" +"WL-0086","56.45833206176758","54.698333740234375","","1998-02-18T00:00:00Z","","1.7599999904632568" +"NM-04110","78.30000305175781","78.30000305175781","","1970-01-16T00:00:00Z","","0" +"NM-01749","82.68000030517578","82.68000030517578","","2003-01-14T00:00:00Z","","0" +"NM-02250","34.5","34.5","","1937-09-15T00:00:00Z","","0" +"NM-14535","85.29000091552734","85.29000091552734","","1970-06-15T00:00:00Z","","0" +"NM-03373","38.95000076293945","38.95000076293945","S","1986-04-01T00:00:00Z","","0" +"NM-08567","108.72000122070312","108.72000122070312","","1991-07-10T00:00:00Z","","0" +"NM-27457","8.130000114440918","8.130000114440918","","1973-08-17T00:00:00Z","","0" +"NM-01955","4.699999809265137","4.699999809265137","","2003-01-15T00:00:00Z","","0" +"NM-07513","-51.81999969482422","-51.81999969482422","","1909-03-11T00:00:00Z","","0" +"NM-09176","41.7599983215332","41.7599983215332","","1952-03-14T00:00:00Z","","0" +"NM-01771","32.470001220703125","32.470001220703125","","2002-02-01T00:00:00Z","","0" +"NM-09104","423.6600036621094","423.6600036621094","","1953-01-10T00:00:00Z","","0" +"NM-17035","66.87000274658203","66.87000274658203","","1957-01-17T00:00:00Z","","0" +"NM-09198","186.1999969482422","186.1999969482422","","1981-01-15T00:00:00Z","","0" +"NM-02314","9.100000381469727","9.100000381469727","","1970-12-15T00:00:00Z","","0" +"NM-06172","99.43000030517578","99.43000030517578","","1943-01-15T00:00:00Z","","0" +"TB-0070","134.41000366210938","132.88999938964844","","2010-04-14T00:00:00Z","","1.5199999809265137" +"WL-0196","88.72000122070312","87.0999984741211","","2019-10-24T00:00:00Z","0001-01-01T13:55:00Z","1.6200000047683716" +"SB-0275","216.86000061035156","216.86000061035156","","1976-02-05T00:00:00Z","","0" +"EB-209","66.25","65","","1980-09-30T00:00:00Z","","1.25" +"NM-00202","54.290000915527344","54.290000915527344","","1990-08-21T00:00:00Z","","0" +"NM-02043","6.400000095367432","6.400000095367432","","1986-11-15T00:00:00Z","","0" +"AB-0123","532.3499755859375","532.3499755859375","","2013-10-18T00:00:00Z","","" +"NM-04776","148.8000030517578","148.8000030517578","","1982-01-28T00:00:00Z","","0" +"NM-11679","23.459999084472656","23.459999084472656","","1939-11-03T00:00:00Z","","0" +"NM-13878","-26.989999771118164","-26.989999771118164","","1907-09-14T00:00:00Z","","0" +"NM-21132","151.63999938964844","151.63999938964844","","1997-02-11T00:00:00Z","","0" +"TV-157","154.42999267578125","153.2899932861328","","2017-10-23T00:00:00Z","0001-01-01T15:45:00Z","1.1399999856948853" +"NM-03077","224.5800018310547","224.5800018310547","","1977-01-04T00:00:00Z","","0" +"NM-02118","90.94999694824219","90.94999694824219","","1987-01-03T00:00:00Z","","0" +"NM-11056","67.41000366210938","67.41000366210938","","1986-02-21T00:00:00Z","","0" +"NM-18170","249.75","249.75","","1977-01-07T00:00:00Z","","0" +"NM-01808","328.05999755859375","328.05999755859375","","1996-02-07T00:00:00Z","","0" +"NM-19975","113.41000366210938","113.41000366210938","","1973-02-15T00:00:00Z","","0" +"NM-03002","73.79000091552734","73.79000091552734","R","1976-01-06T00:00:00Z","","0" +"NM-14265","429.0400085449219","429.0400085449219","","1979-09-01T00:00:00Z","","0" +"NM-02520","4.800000190734863","4.800000190734863","","1985-05-15T00:00:00Z","","0" +"NM-08524","11.899999618530273","11.899999618530273","","1968-07-15T00:00:00Z","","0" +"NM-02208","6.699999809265137","6.699999809265137","","1989-07-15T00:00:00Z","","0" +"SA-0082","20.8700008392334","20.8700008392334","","1979-02-15T00:00:00Z","","0" +"SM-0092","272.1199951171875","270.1000061035156","","2009-06-17T00:00:00Z","","2.0199999809265137" +"EB-483","48.099998474121094","48.099998474121094","","1981-10-19T00:00:00Z","","" +"NM-02484","101.86000061035156","101.86000061035156","","1982-08-06T00:00:00Z","","0" +"NM-20115","31.56999969482422","31.56999969482422","","1945-09-06T00:00:00Z","","0" +"NM-08647","23.889999389648438","23.889999389648438","","1943-09-29T00:00:00Z","","0" +"NM-03335","13.109999656677246","13.109999656677246","","2002-03-12T00:00:00Z","","0" +"NM-12413","-69.72000122070312","-69.72000122070312","","1932-12-02T00:00:00Z","","0" +"NM-22198","397.0799865722656","397.0799865722656","","2013-09-05T00:00:00Z","","0" +"DE-0069","202.13999938964844","198.66000366210938","","2004-12-07T00:00:00Z","","3.4800000190734863" +"NM-01920","368.70001220703125","368.70001220703125","","1991-02-26T00:00:00Z","","0" +"NM-26648","44.90999984741211","44.90999984741211","","2012-02-08T00:00:00Z","","0" +"NM-04816","93.91999816894531","93.91999816894531","","1968-02-19T00:00:00Z","","0" +"NM-12029","68.36000061035156","68.36000061035156","","1971-02-25T00:00:00Z","","0" +"NM-20068","34.189998626708984","34.189998626708984","","1946-07-31T00:00:00Z","","0" +"SA-0058","22.579999923706055","21.579999923706055","","2009-02-11T00:00:00Z","","1" +"NM-22464","236.32000732421875","236.32000732421875","","2012-07-25T00:00:00Z","","0" +"NM-06676","10.800000190734863","10.800000190734863","","1961-03-15T00:00:00Z","","0" +"NM-08790","54.619998931884766","54.619998931884766","","1986-01-16T00:00:00Z","","0" +"NM-03425","13.100000381469727","13.100000381469727","","2002-03-12T00:00:00Z","","0" +"NM-02702","7.400000095367432","7.400000095367432","","1988-03-21T00:00:00Z","","0" +"NM-01971","8.399999618530273","8.399999618530273","","1982-03-15T00:00:00Z","","0" +"NM-02831","45.650001525878906","45.650001525878906","","1990-05-08T00:00:00Z","","0" +"NM-23359","144.3699951171875","144.3699951171875","","1986-09-25T00:00:00Z","","0" +"NM-22866","52.70000076293945","52.70000076293945","","1971-01-26T00:00:00Z","","0" +"NM-02993","29.81999969482422","29.81999969482422","","1969-01-08T00:00:00Z","","0" +"NM-01971","8.5","8.5","","1982-12-15T00:00:00Z","","0" +"NM-00575","67.16999816894531","67.16999816894531","","1975-01-07T00:00:00Z","","0" +"NM-13804","-7.929999828338623","-7.929999828338623","","1914-12-17T00:00:00Z","","0" +"QY-0500","194","194","","1940-01-01T00:00:00Z","","0" +"NM-28259","87.5999984741211","87.5999984741211","","2003-02-05T00:00:00Z","","0" +"NM-08647","27.940000534057617","27.940000534057617","","1957-06-05T00:00:00Z","","0" +"NM-18182","264.0199890136719","264.0199890136719","","1987-01-07T00:00:00Z","","0" +"NM-17104","31.639999389648438","31.639999389648438","","1946-01-20T00:00:00Z","","0" +"NM-01534","49.68000030517578","49.68000030517578","","1998-01-22T00:00:00Z","","0" +"EB-373","116.97000122070312","116.37000274658203","","2017-04-06T00:00:00Z","0001-01-01T11:16:00Z","0.6000000238418579" +"NM-11273","59.66999816894531","59.66999816894531","","1984-01-25T00:00:00Z","","0" +"NM-11891","16.229999542236328","16.229999542236328","","1940-01-22T00:00:00Z","","0" +"NM-11532","41.58000183105469","41.58000183105469","","1945-01-12T00:00:00Z","","0" +"NM-07121","101.52999877929688","101.52999877929688","","2005-10-05T00:00:00Z","","0" +"NM-02090","74.18000030517578","74.18000030517578","","1956-01-07T00:00:00Z","","0" +"NM-13065","29.709999084472656","29.709999084472656","","1949-02-04T00:00:00Z","","0" +"NM-01899","87.20999908447266","87.20999908447266","","2014-09-10T00:00:00Z","","0" +"NM-19237","361.760009765625","361.760009765625","","1987-03-05T00:00:00Z","","0" +"NM-28252","34.599998474121094","34.599998474121094","","1997-05-05T00:00:00Z","","0" +"NM-03421","32.06999969482422","32.06999969482422","","1987-03-26T00:00:00Z","","0" +"NM-13916","-10.239999771118164","-10.239999771118164","","1906-06-20T00:00:00Z","","0" +"NM-02831","34.75","34.75","","1998-11-05T00:00:00Z","","0" +"BC-0159","","176.89999389648438","","2021-03-09T00:00:00Z","","1.9500000476837158" +"NM-13014","273.04998779296875","273.04998779296875","","1959-11-18T00:00:00Z","","0" +"NM-28014","498.67999267578125","498.67999267578125","S","2015-05-29T00:00:00Z","","0" +"NM-02306","31.959999084472656","31.959999084472656","","2003-02-04T00:00:00Z","","0" +"NM-27999","482","482","","1997-05-13T00:00:00Z","","0" +"NM-21776","8.270000457763672","8.270000457763672","","1959-10-07T00:00:00Z","","0" +"SB-0442","170.5","170.5","","2010-09-25T00:00:00Z","","0" +"NM-11479","46.459999084472656","46.459999084472656","","1945-01-12T00:00:00Z","","0" +"UC-0099","155.8699951171875","155.8699951171875","R","2009-08-25T00:00:00Z","","0" +"NM-10497","76.55000305175781","76.55000305175781","","1969-11-12T00:00:00Z","","0" +"EB-208","212.5500030517578","212.5500030517578","","1963-02-19T00:00:00Z","","0" +"NM-02676","91.16999816894531","91.16999816894531","","1978-01-18T00:00:00Z","","0" +"NM-28255","17.40999984741211","17.40999984741211","","1975-02-15T00:00:00Z","","0" +"NM-02702","67.93000030517578","67.93000030517578","","1976-03-17T00:00:00Z","","0" +"NM-10349","74.19999694824219","74.19999694824219","","1955-05-11T00:00:00Z","","0" +"NM-00643","102.16999816894531","102.16999816894531","","2002-10-02T00:00:00Z","","0" +"NM-28252","32.560001373291016","32.560001373291016","","1957-02-05T00:00:00Z","","0" +"NM-05267","65.69999694824219","65.69999694824219","","1946-11-08T00:00:00Z","","0" +"NM-01872","7.800000190734863","7.800000190734863","","1980-08-15T00:00:00Z","","0" +"BC-0019","71.72000122070312","71.72000122070312","","2014-12-12T00:00:00Z","","0" +"EB-012","168","168","","1972-11-02T00:00:00Z","","0" +"NM-17202","28.200000762939453","28.200000762939453","","1932-01-27T00:00:00Z","","0" +"UC-0012","95.4800033569336","95.4800033569336","","1986-02-06T00:00:00Z","","0" +"NM-20475","63.33000183105469","63.33000183105469","","1982-03-23T00:00:00Z","","0" +"NM-21504","6.75","6.75","","2007-04-02T00:00:00Z","","0" +"NM-28259","155.86000061035156","155.86000061035156","","2002-09-16T00:00:00Z","","0" +"NM-12707","66.75","66.75","","1976-05-14T00:00:00Z","","0" +"NM-17415","22.09000015258789","22.09000015258789","","1945-01-16T00:00:00Z","","0" +"NM-11785","35.97999954223633","35.97999954223633","","1941-08-12T00:00:00Z","","0" +"NM-00185","13.399999618530273","13.399999618530273","","1985-11-15T00:00:00Z","","0" +"NM-01897","12.270000457763672","12.270000457763672","","2003-01-23T00:00:00Z","","0" +"NM-12093","63.16999816894531","63.16999816894531","","1991-03-14T00:00:00Z","","0" +"NM-11331","10.140000343322754","10.140000343322754","","1982-10-15T00:00:00Z","","0" +"NM-27614","27.549999237060547","27.549999237060547","","1971-12-15T00:00:00Z","","0" +"EB-163","696","694.7999877929688","","1986-12-31T00:00:00Z","","1.2000000476837158" +"NM-23004","5.840000152587891","5.840000152587891","Z","2010-01-25T00:00:00Z","","0" +"NM-01955","3.5","3.5","","1961-09-15T00:00:00Z","","0" +"NM-28253","27.540000915527344","27.540000915527344","","1997-08-15T00:00:00Z","","0" +"NM-02772","30.510000228881836","30.510000228881836","","2002-11-15T00:00:00Z","","0" +"NM-13121","5.860000133514404","5.860000133514404","","1982-01-29T00:00:00Z","","0" +"NM-13623","67.18000030517578","67.18000030517578","","1963-09-04T00:00:00Z","","0" +"NM-16986","4","4","","1952-05-01T00:00:00Z","","0" +"NM-13017","14.119999885559082","14.119999885559082","","1960-04-06T00:00:00Z","","0" +"NM-13838","-4.230000019073486","-4.230000019073486","","1915-07-17T00:00:00Z","","0" +"NM-09089","39.689998626708984","39.689998626708984","","1991-03-07T00:00:00Z","","0" +"NM-02352","6.900000095367432","6.900000095367432","","1975-01-15T00:00:00Z","","0" +"QU-036","685.5","684.1300048828125","","2019-04-18T00:00:00Z","0001-01-01T10:27:00Z","1.3700000047683716" +"EB-276","183.3300018310547","183.3300018310547","","1970-12-16T00:00:00Z","","0" +"NM-28255","32.61000061035156","32.61000061035156","","1984-02-15T00:00:00Z","","0" +"NM-13511","-56.439998626708984","-56.439998626708984","","1909-06-14T00:00:00Z","","0" +"TV-218","213.47000122070312","212.8699951171875","","2007-12-01T00:00:00Z","","0.6000000238418579" +"NM-06138","17.979999542236328","17.979999542236328","","2015-02-24T00:00:00Z","","0" +"NM-02017","9.5","9.5","","1995-08-15T00:00:00Z","","0" +"NM-02261","64.93000030517578","64.93000030517578","","1993-02-02T00:00:00Z","","0" +"NM-02831","34.84000015258789","34.84000015258789","","1958-11-01T00:00:00Z","","0" +"NM-20928","18.350000381469727","18.350000381469727","","1943-02-04T00:00:00Z","","0" +"NM-00961","354.1499938964844","354.1499938964844","","2009-04-10T00:00:00Z","","0" +"NM-08649","230","230","","1954-12-15T00:00:00Z","","0" +"NM-00047","60.79999923706055","60.79999923706055","R","2000-01-11T00:00:00Z","","0" +"NM-02198","19.510000228881836","19.510000228881836","","2009-02-18T00:00:00Z","","0" +"NM-02831","34.5","34.5","","1993-11-24T00:00:00Z","","0" +"NM-15469","60.900001525878906","60.900001525878906","","1976-02-04T00:00:00Z","","0" +"NM-02280","28.09000015258789","28.09000015258789","","2006-09-14T00:00:00Z","","0" +"NM-03163","379.989990234375","379.989990234375","","1994-01-04T00:00:00Z","","0" +"NM-00387","55.650001525878906","55.650001525878906","","1984-01-06T00:00:00Z","","0" +"EB-244","115.62999725341797","115.62999725341797","","2006-12-14T00:00:00Z","","0" +"NM-28140","6.800000190734863","6.800000190734863","","1980-01-28T00:00:00Z","","0" +"DE-0127","46.72999954223633","46.72999954223633","","2014-03-24T00:00:00Z","","0" +"NM-02484","65.1500015258789","65.1500015258789","","1987-08-17T00:00:00Z","","0" +"NM-00772","83.30999755859375","83.30999755859375","","2013-09-18T00:00:00Z","","0" +"NM-12738","91.37999725341797","91.37999725341797","","1952-01-25T00:00:00Z","","0" +"NM-13060","-33.34000015258789","-33.34000015258789","","1915-12-11T00:00:00Z","","0" +"NM-06893","14.050000190734863","14.050000190734863","","1960-01-05T00:00:00Z","","0" +"NM-19682","255.5500030517578","255.5500030517578","","1973-10-02T00:00:00Z","","0" +"SO-0140","12.260000228881836","11.480000495910645","","2021-03-14T00:00:00Z","0001-01-01T07:45:00Z","0.7799999713897705" +"NM-23315","106.54000091552734","106.54000091552734","","1947-02-04T00:00:00Z","","0" +"NM-00058","291.2799987792969","291.2799987792969","S","2013-08-08T00:00:00Z","","0" +"NM-24987","66.44000244140625","66.44000244140625","","1951-11-01T00:00:00Z","","0" +"NM-10246","-26.40999984741211","-26.40999984741211","","1906-10-09T00:00:00Z","","0" +"SM-0118","88.86000061035156","88.86000061035156","","2013-02-27T00:00:00Z","","0" +"NM-27476","66.23999786376953","66.23999786376953","","1961-01-13T00:00:00Z","","0" +"NM-01931","357.3599853515625","357.3599853515625","","1986-12-08T00:00:00Z","","0" +"NM-27751","47.04999923706055","47.04999923706055","","1970-01-07T00:00:00Z","","0" +"NM-08148","9.670000076293945","9.670000076293945","","1973-11-09T00:00:00Z","","0" +"NM-17716","8.100000381469727","8.100000381469727","","1941-03-21T00:00:00Z","","0" +"UC-0034","91.45999908447266","91.45999908447266","","1989-09-18T00:00:00Z","","0" +"NM-00634","53.77000045776367","53.77000045776367","","1964-02-18T00:00:00Z","","0" +"NM-00812","38.43000030517578","38.43000030517578","","1990-01-22T00:00:00Z","","0" +"NM-01803","216.58999633789062","216.58999633789062","","1965-05-28T00:00:00Z","","0" +"NM-01872","9.100000381469727","9.100000381469727","","1977-08-15T00:00:00Z","","0" +"NM-16774","27.649999618530273","27.649999618530273","","1936-09-26T00:00:00Z","","0" +"NM-01740","140.8699951171875","140.8699951171875","","1979-01-16T00:00:00Z","","0" +"NM-08879","63.41999816894531","63.41999816894531","","1976-02-11T00:00:00Z","","0" +"NM-22038","150.35000610351562","150.35000610351562","","1957-02-07T00:00:00Z","","0" +"NM-02355","94.6500015258789","94.6500015258789","","1982-01-21T00:00:00Z","","0" +"NM-10783","33.22999954223633","33.22999954223633","","1947-01-16T00:00:00Z","","0" +"NM-28253","25.540000915527344","25.540000915527344","","1980-03-05T00:00:00Z","","0" +"NM-28255","124.30999755859375","124.30999755859375","","2018-03-23T00:00:00Z","","0" +"NM-00257","93.13999938964844","93.13999938964844","","1986-01-14T00:00:00Z","","0" +"SM-0052","127.36000061035156","126.36000061035156","","2008-02-12T00:00:00Z","","1" +"NM-28259","115.86000061035156","115.86000061035156","","1994-03-25T00:00:00Z","","0" +"NM-02635","23.799999237060547","23.799999237060547","","2005-01-25T00:00:00Z","","0" +"NM-05347","7.900000095367432","7.900000095367432","","1951-06-15T00:00:00Z","","0" +"NM-13749","-5.619999885559082","-5.619999885559082","","1909-03-01T00:00:00Z","","0" +"NM-01608","64.83000183105469","64.83000183105469","","1981-02-03T00:00:00Z","","0" +"NM-21270","6.650000095367432","6.650000095367432","Z","2010-03-03T00:00:00Z","","0" +"NM-21576","4.690000057220459","4.690000057220459","Z","2007-12-19T00:00:00Z","","0" +"NM-11715","94.54000091552734","94.54000091552734","","1954-01-22T00:00:00Z","","0" +"NM-02239","40.150001525878906","40.150001525878906","","1998-01-09T00:00:00Z","","0" +"NM-03652","33.52000045776367","33.52000045776367","","2006-11-06T00:00:00Z","","0" +"SO-0274","1.4600000381469727","0.23000001907348633","","2018-04-11T00:00:00Z","0001-01-01T10:45:00Z","1.2300000190734863" +"BC-0215","218.75","218.75","","2016-03-14T00:00:00Z","","0" +"NM-28259","123.45999908447266","123.45999908447266","","1999-07-15T00:00:00Z","","0" +"NM-08694","23.469999313354492","23.469999313354492","P","1957-01-14T00:00:00Z","","0" +"NM-05812","98.30000305175781","98.30000305175781","","1970-12-15T00:00:00Z","","0" +"NM-01889","13.729999542236328","13.729999542236328","","1986-04-29T00:00:00Z","","0" +"NM-03679","195.47000122070312","195.47000122070312","","1983-01-25T00:00:00Z","","0" +"NM-01796","5.5","5.5","","1945-12-15T00:00:00Z","","0" +"NM-05757","67.36000061035156","67.36000061035156","","1931-12-14T00:00:00Z","","0" +"NM-01291","86.05999755859375","86.05999755859375","","1992-08-10T00:00:00Z","","0" +"NM-28259","79.5999984741211","79.5999984741211","","2001-03-05T00:00:00Z","","0" +"NM-21586","1.8200000524520874","1.8200000524520874","Z","2005-04-28T00:00:00Z","","0" +"NM-06268","11.399999618530273","11.399999618530273","","1963-04-15T00:00:00Z","","0" +"NM-02797","5.559999942779541","5.559999942779541","","1982-08-04T00:00:00Z","","0" +"NM-27676","165.58999633789062","165.58999633789062","","1982-03-26T00:00:00Z","","0" +"NM-04534","77.5","77.5","S","1953-05-14T00:00:00Z","","0" +"NM-02005","5.400000095367432","5.400000095367432","","1992-10-15T00:00:00Z","","0" +"NM-28254","118.80000305175781","118.80000305175781","","1964-04-25T00:00:00Z","","0" +"ED-0264","106","106","","1949-05-18T00:00:00Z","","0" +"NM-15220","114.58999633789062","114.58999633789062","","1975-03-25T00:00:00Z","","0" +"NM-00185","15.300000190734863","15.300000190734863","","1957-09-15T00:00:00Z","","0" +"CP-0037","311.54998779296875","311.54998779296875","","2020-07-30T00:00:00Z","0001-01-01T11:48:00Z","0" +"SM-0068","261.2099914550781","261.2099914550781","","1968-01-16T00:00:00Z","","0" +"NM-02195","130.0500030517578","130.0500030517578","","1998-01-20T00:00:00Z","","0" +"NM-02704","71.41000366210938","71.41000366210938","","1994-02-25T00:00:00Z","","0" +"NM-01868","15","15","","1958-08-15T00:00:00Z","","0" +"EB-261","9.079999923706055","7.279999732971191","","2011-02-07T00:00:00Z","","1.7999999523162842" +"NM-02004","7.699999809265137","7.699999809265137","","1959-12-15T00:00:00Z","","0" +"NM-00367","139.9499969482422","139.9499969482422","","1983-09-01T00:00:00Z","","0" +"EB-266","14.050000190734863","14.050000190734863","","2006-02-22T00:00:00Z","","0" +"NM-05727","11.619999885559082","11.619999885559082","","1945-09-11T00:00:00Z","","0" +"NM-02898","143.1699981689453","143.1699981689453","","1990-01-31T00:00:00Z","","0" +"NM-06262","405.54998779296875","405.54998779296875","","1980-12-01T00:00:00Z","","0" +"NM-28252","69.58000183105469","69.58000183105469","","1975-09-05T00:00:00Z","","0" +"NM-02665","23.219999313354492","23.219999313354492","","1948-01-17T00:00:00Z","","0" +"NM-06387","443.5","443.5","","1974-09-13T00:00:00Z","","0" +"NM-00014","41.310001373291016","41.310001373291016","","1982-01-26T00:00:00Z","","0" +"NM-05645","80.44999694824219","80.44999694824219","","1941-01-07T00:00:00Z","","0" +"NM-00645","32.2400016784668","32.2400016784668","","2007-08-29T00:00:00Z","","0" +"NM-05876","51.849998474121094","51.849998474121094","","1932-06-01T00:00:00Z","","0" +"NM-08704","54.349998474121094","54.349998474121094","","1986-01-22T00:00:00Z","","0" +"NM-27345","192.74000549316406","192.74000549316406","","1971-02-11T00:00:00Z","","0" +"NM-16806","59.939998626708984","59.939998626708984","","1972-01-18T00:00:00Z","","0" +"NM-07225","198.13999938964844","198.13999938964844","","1967-08-01T00:00:00Z","","0" +"NM-24021","43","43","","1993-10-07T00:00:00Z","","0" +"NM-02501","49.68000030517578","49.68000030517578","","1943-09-15T00:00:00Z","","0" +"EB-226","47.279998779296875","47.279998779296875","","1978-01-24T00:00:00Z","","0" +"NM-00353","85.62000274658203","85.62000274658203","","2001-01-03T00:00:00Z","","0" +"NM-01269","80.94999694824219","80.94999694824219","","1983-08-12T00:00:00Z","","0" +"NM-18545","123.1500015258789","123.1500015258789","","1949-08-04T00:00:00Z","","0" +"NM-12459","35.099998474121094","35.099998474121094","","1961-02-14T00:00:00Z","","0" +"SV-0068","248.1999969482422","246.8699951171875","","2017-06-14T00:00:00Z","","1.3300000429153442" +"AB-0069","151.52999877929688","151.52999877929688","","2005-03-24T00:00:00Z","","" +"NM-16500","61.20000076293945","61.20000076293945","","1967-01-09T00:00:00Z","","0" +"NM-17513","33.040000915527344","33.040000915527344","","1956-07-23T00:00:00Z","","0" +"NM-12204","33.31999969482422","33.31999969482422","","1946-01-30T00:00:00Z","","0" +"NM-14850","209.74000549316406","209.74000549316406","","1970-01-10T00:00:00Z","","0" +"DE-0240","106.83000183105469","106.83000183105469","","2013-10-02T00:00:00Z","","0" +"AB-0100","702.1199951171875","702.1199951171875","","2012-04-09T00:00:00Z","","" +"NM-16926","59.93000030517578","59.93000030517578","","1961-01-09T00:00:00Z","","0" +"NM-10830","56.619998931884766","56.619998931884766","P","1976-03-31T00:00:00Z","","0" +"NM-05420","16.030000686645508","16.030000686645508","","1951-11-27T00:00:00Z","","0" +"NM-21500","217.6199951171875","217.6199951171875","","2003-09-09T00:00:00Z","","0" +"NM-02396","8","8","","1968-08-15T00:00:00Z","","0" +"NM-01155","383.3999938964844","383.3999938964844","","1996-01-30T00:00:00Z","","0" +"NM-11026","131.97999572753906","131.97999572753906","","1973-10-01T00:00:00Z","","0" +"NM-19121","45.72999954223633","45.72999954223633","","1990-04-24T00:00:00Z","","0" +"NM-15914","122.16999816894531","122.16999816894531","","1990-01-31T00:00:00Z","","0" +"NM-17434","37.619998931884766","37.619998931884766","","1932-06-29T00:00:00Z","","0" +"NM-28257","57.599998474121094","57.599998474121094","","1961-01-25T00:00:00Z","","0" +"NM-10140","28.030000686645508","28.030000686645508","","1946-07-13T00:00:00Z","","0" +"NM-21284","6.289999961853027","6.289999961853027","","1958-01-29T00:00:00Z","","0" +"NM-19782","73.16999816894531","73.16999816894531","","1969-01-15T00:00:00Z","","0" +"NM-22098","47.66999816894531","47.66999816894531","","1979-03-08T00:00:00Z","","0" +"BW-0104","13.800000190734863","13.800000190734863","","1955-03-31T00:00:00Z","","0" +"UC-0134","8.649999618530273","8.649999618530273","","1980-07-29T00:00:00Z","","0" +"NM-20257","120.87000274658203","120.87000274658203","","1972-02-24T00:00:00Z","","0" +"NM-00213","178.52999877929688","178.52999877929688","","1959-08-01T00:00:00Z","","0" +"NM-04299","33.439998626708984","33.439998626708984","","1958-01-09T00:00:00Z","","0" +"DE-0113","41.41999816894531","41.41999816894531","","2016-09-19T00:00:00Z","","0" +"NM-16015","93.33000183105469","93.33000183105469","","1980-02-01T00:00:00Z","","0" +"NM-13588","-19.479999542236328","-19.479999542236328","","1915-03-19T00:00:00Z","","0" +"NM-16601","10.84000015258789","10.84000015258789","","1944-03-23T00:00:00Z","","0" +"NM-17126","30.479999542236328","30.479999542236328","","1939-01-18T00:00:00Z","","0" +"NM-24933","4.840000152587891","4.840000152587891","","1964-04-28T00:00:00Z","","0" +"NM-01565","-240.0800018310547","-240.0800018310547","","1988-03-31T00:00:00Z","","0" +"NM-05283","37.18000030517578","37.18000030517578","","1950-07-24T00:00:00Z","","0" +"NM-10376","20.549999237060547","20.549999237060547","","1940-01-13T00:00:00Z","","0" +"NM-02168","9.850000381469727","9.850000381469727","","2003-01-24T00:00:00Z","","0" +"SM-0238","20.950000762939453","20.55000114440918","","2008-10-14T00:00:00Z","","0.4000000059604645" +"NM-05762","40.13999938964844","40.13999938964844","","1946-07-24T00:00:00Z","","0" +"NM-11388","40.43000030517578","40.43000030517578","","1943-01-19T00:00:00Z","","0" +"DE-0122","38.54999923706055","38.54999923706055","","2008-07-21T00:00:00Z","","0" +"NM-27964","80.30000305175781","80.30000305175781","","1990-02-27T00:00:00Z","","0" +"NM-22702","11.170000076293945","11.170000076293945","Z","2010-09-02T00:00:00Z","","0" +"NM-02777","110.91999816894531","110.91999816894531","R","1963-01-10T00:00:00Z","","0" +"NM-11518","37.689998626708984","37.689998626708984","","1936-07-15T00:00:00Z","","0" +"NM-11795","43.36000061035156","43.36000061035156","","1954-09-16T00:00:00Z","","0" +"NM-16876","57.11000061035156","57.11000061035156","","1977-01-14T00:00:00Z","","0" +"NM-28258","127.56999969482422","127.56999969482422","","1980-12-15T00:00:00Z","","0" +"NM-05554","102.4800033569336","102.4800033569336","","1956-07-11T00:00:00Z","","0" +"NM-21819","22.309999465942383","22.309999465942383","","1961-11-29T00:00:00Z","","0" +"NM-18874","319.30999755859375","319.30999755859375","","1973-01-04T00:00:00Z","","0" +"NM-01239","25.049999237060547","25.049999237060547","","1999-02-09T00:00:00Z","","0" +"NM-28251","84.11000061035156","84.11000061035156","","1973-03-15T00:00:00Z","","0" +"NM-13638","31.31999969482422","31.31999969482422","","1957-03-26T00:00:00Z","","0" +"NM-01790","275.0299987792969","275.0299987792969","","1978-01-03T00:00:00Z","","0" +"NM-17716","1.4600000381469727","1.4600000381469727","","1945-02-05T00:00:00Z","","0" +"NM-00039","114.4000015258789","114.4000015258789","R","2000-01-10T00:00:00Z","","0" +"NM-16831","7.449999809265137","7.449999809265137","","1948-09-28T00:00:00Z","","0" +"NM-10263","150","150","","1991-08-05T00:00:00Z","","0" +"NM-02540","45.13999938964844","45.13999938964844","","1990-02-27T00:00:00Z","","0" +"NM-02456","51.33000183105469","51.33000183105469","","1962-08-18T00:00:00Z","","0" +"AB-0102","580.780029296875","580.780029296875","","2001-08-30T00:00:00Z","","" +"NM-28061","8.399999618530273","8.399999618530273","","1998-01-07T00:00:00Z","","0" +"NM-00253","23.06999969482422","23.06999969482422","","1971-12-01T00:00:00Z","","0" +"NM-11578","26.239999771118164","26.239999771118164","","1935-11-20T00:00:00Z","","0" +"TV-274","87.56999969482422","85.41999816894531","","2004-01-06T00:00:00Z","","2.1500000953674316" +"NM-02286","14.229999542236328","14.229999542236328","","2013-07-08T00:00:00Z","","0" +"NM-02314","8","8","","1976-12-15T00:00:00Z","","0" +"NM-01592","247.63999938964844","247.63999938964844","","1997-04-22T00:00:00Z","","0" +"EB-263","2","2","","1997-06-24T00:00:00Z","","0" +"NM-14783","73.16000366210938","73.16000366210938","Z","1994-02-07T00:00:00Z","","0" +"TB-0139","76.31999969482422","75.06999969482422","","2013-08-14T00:00:00Z","","1.25" +"NM-13887","2.75","2.75","","1962-12-31T00:00:00Z","","0" +"NM-06848","14.260000228881836","14.260000228881836","","1956-01-06T00:00:00Z","","0" +"NM-13127","13.899999618530273","13.899999618530273","","1958-11-04T00:00:00Z","","0" +"AB-0162","490.8299865722656","490.8299865722656","","2004-08-02T00:00:00Z","","" +"NM-26513","37.45000076293945","37.45000076293945","","1988-09-20T00:00:00Z","","0" +"NM-19682","271.739990234375","271.739990234375","","1981-01-14T00:00:00Z","","0" +"NM-13901","5.199999809265137","5.199999809265137","","1962-08-13T00:00:00Z","","0" +"NM-28252","51.79999923706055","51.79999923706055","","2016-07-05T00:00:00Z","","0" +"NM-05563","73.25","73.25","","1941-01-08T00:00:00Z","","0" +"NM-19296","361.57000732421875","361.57000732421875","","1984-01-17T00:00:00Z","","0" +"NM-00185","12.699999809265137","12.699999809265137","","1990-09-15T00:00:00Z","","0" +"NM-03903","328.1300048828125","328.1300048828125","","1976-11-20T00:00:00Z","","0" +"SA-0040","150.97000122070312","149.49000549316406","","2008-09-15T00:00:00Z","","1.4800000190734863" +"NM-28014","498.8399963378906","498.8399963378906","S","2015-05-17T00:00:00Z","","0" +"NM-03349","37.34000015258789","37.34000015258789","Z","1992-05-01T00:00:00Z","","0" +"NM-11358","6.46999979019165","6.46999979019165","","1973-07-19T00:00:00Z","","0" +"NM-03466","189.8300018310547","189.8300018310547","","1998-01-15T00:00:00Z","","0" +"NM-22517","19.850000381469727","19.850000381469727","","1954-11-02T00:00:00Z","","0" +"SB-0272","202.88999938964844","202.88999938964844","","1971-02-18T00:00:00Z","","0" +"NM-02794","55.61000061035156","55.61000061035156","","1949-09-09T00:00:00Z","","0" +"NM-04970","134.60000610351562","134.60000610351562","P","1965-07-26T00:00:00Z","","0" +"ED-0336","5","5","P","1947-10-22T00:00:00Z","","0" +"NM-16537","9.960000038146973","9.960000038146973","","1935-05-21T00:00:00Z","","0" +"NM-03651","33.099998474121094","33.099998474121094","","2003-11-19T00:00:00Z","","0" +"NM-10968","15.199999809265137","15.199999809265137","","1952-01-15T00:00:00Z","","0" +"NM-10477","49.43000030517578","49.43000030517578","","1943-01-23T00:00:00Z","","0" +"SB-0442","170.8000030517578","170.8000030517578","","2010-08-25T00:00:00Z","","0" +"NM-13839","-4.46999979019165","-4.46999979019165","","1908-12-01T00:00:00Z","","0" +"NM-01035","46.540000915527344","46.540000915527344","","1972-01-06T00:00:00Z","","0" +"NM-09129","84.62999725341797","84.62999725341797","","1971-01-14T00:00:00Z","","0" +"NM-02384","11.600000381469727","11.600000381469727","","1954-03-15T00:00:00Z","","0" +"TV-185","6.670000076293945","2.2699999809265137","","2012-10-09T00:00:00Z","","4.400000095367432" +"NM-07671","30.84000015258789","30.84000015258789","","1949-07-26T00:00:00Z","","0" +"NM-28085","44","44","","2016-05-23T00:00:00Z","","0" +"EB-209","65.44999694824219","64.19999694824219","","1980-01-05T00:00:00Z","","1.25" +"NM-28257","-10.390000343322754","-10.390000343322754","","2010-01-05T00:00:00Z","","0" +"EB-276","200.5","200.5","","1971-08-27T00:00:00Z","","0" +"NM-11571","169.16000366210938","169.16000366210938","","1958-03-25T00:00:00Z","","0" +"SM-0044","152.69000244140625","152.15000915527344","","2007-08-22T00:00:00Z","","0.5400000214576721" +"NM-11388","43.040000915527344","43.040000915527344","S","1961-09-06T00:00:00Z","","0" +"NM-00686","59.59000015258789","59.59000015258789","","1989-03-01T00:00:00Z","","0" +"NM-18066","10.550000190734863","10.550000190734863","","1963-01-08T00:00:00Z","","0" +"BC-0221","","74.2699966430664","","2021-10-30T00:00:00Z","","2.309999942779541" +"NM-02349","16.799999237060547","16.799999237060547","","1968-09-15T00:00:00Z","","0" +"EB-012","399.739990234375","399.739990234375","","1970-10-21T00:00:00Z","","0" +"NM-28253","32.13999938964844","32.13999938964844","","1978-11-05T00:00:00Z","","0" +"NM-06566","407","407","","1989-08-19T00:00:00Z","","0" +"NM-14535","85.8499984741211","85.8499984741211","","1970-07-01T00:00:00Z","","0" +"NM-02209","102.72000122070312","102.72000122070312","","1979-01-01T00:00:00Z","","0" +"AB-0211","168.9499969482422","168.9499969482422","","2000-04-05T00:00:00Z","","" +"NM-07901","21.940000534057617","21.940000534057617","","1971-01-27T00:00:00Z","","0" +"NM-01889","37","37","","2014-04-14T00:00:00Z","","0" +"ED-0017","229.1999969482422","229.1999969482422","","1950-01-11T00:00:00Z","","0" +"NM-12434","-12.550000190734863","-12.550000190734863","","1913-01-21T00:00:00Z","","0" +"NM-26662","17.059999465942383","17.059999465942383","","2011-10-07T00:00:00Z","","0" +"NM-03664","72.12000274658203","72.12000274658203","","1962-02-20T00:00:00Z","","0" +"NM-08071","10.800000190734863","10.800000190734863","","1980-08-15T00:00:00Z","","0" +"NM-13704","-6.78000020980835","-6.78000020980835","","1908-06-24T00:00:00Z","","0" +"NM-28012","478.57000732421875","478.57000732421875","S","2015-05-28T00:00:00Z","","0" +"NM-18416","273.260009765625","273.260009765625","S","1971-01-06T00:00:00Z","","0" +"DE-0130","44.380001068115234","44.380001068115234","","2013-02-26T00:00:00Z","","0" +"NM-10452","65.54000091552734","65.54000091552734","","1964-01-07T00:00:00Z","","0" +"NM-28250","94.43000030517578","94.43000030517578","","2013-06-05T00:00:00Z","","0" +"NM-23515","31.670000076293945","31.670000076293945","","2013-01-11T00:00:00Z","","0" +"NM-11376","25.8700008392334","25.8700008392334","","1958-08-25T00:00:00Z","","0" +"NM-02543","61.400001525878906","61.400001525878906","","1957-01-03T00:00:00Z","","0" +"NM-02527","10.300000190734863","10.300000190734863","","1977-10-15T00:00:00Z","","0" +"NM-21256","4.360000133514404","4.360000133514404","Z","2009-07-28T00:00:00Z","","0" +"NM-02702","39.90999984741211","39.90999984741211","","1975-03-01T00:00:00Z","","0" +"NM-11885","13.319999694824219","13.319999694824219","","1948-01-24T00:00:00Z","","0" +"NM-02125","153.00999450683594","153.00999450683594","","1981-01-09T00:00:00Z","","0" +"NM-11263","40.310001373291016","40.310001373291016","","1948-01-17T00:00:00Z","","0" +"NM-00367","137.24000549316406","137.24000549316406","","1976-07-01T00:00:00Z","","0" +"NM-14535","89.66000366210938","89.66000366210938","","1976-04-05T00:00:00Z","","0" +"AB-0210","179.42999267578125","179.42999267578125","","2002-08-07T00:00:00Z","","" +"NM-28257","83.9000015258789","83.9000015258789","","1964-02-05T00:00:00Z","","0" +"DE-0240","107.36000061035156","107.36000061035156","","2005-12-14T00:00:00Z","","0" +"NM-18082","56.209999084472656","56.209999084472656","","1982-03-25T00:00:00Z","","0" +"NM-04585","107.5199966430664","107.5199966430664","P","1955-05-21T00:00:00Z","","0" +"AB-0180","158.52000427246094","158.52000427246094","","2014-08-13T00:00:00Z","","" +"DE-0119","32.7599983215332","32.7599983215332","","2007-07-23T00:00:00Z","","0" +"NM-00213","179.47000122070312","179.47000122070312","","1958-10-01T00:00:00Z","","0" +"NM-23297","156.0500030517578","156.0500030517578","R","2004-03-09T00:00:00Z","","0" +"NM-10736","10.880000114440918","10.880000114440918","","1947-05-16T00:00:00Z","","0" +"NM-01758","44.060001373291016","44.060001373291016","","1980-01-24T00:00:00Z","","0" +"NM-09820","49.02000045776367","49.02000045776367","","1966-02-23T00:00:00Z","","0" +"NM-00756","32.40999984741211","32.40999984741211","","1955-10-12T00:00:00Z","","0" +"NM-28020","468.2200012207031","468.2200012207031","S","2015-04-16T00:00:00Z","","0" +"NM-28255","11.420000076293945","11.420000076293945","","1963-01-15T00:00:00Z","","0" +"NM-26448","6.960000038146973","6.960000038146973","","2004-03-26T00:00:00Z","","0" +"AB-0083","497.7300109863281","497.7300109863281","","2015-03-10T00:00:00Z","","0" +"NM-13748","-2.7300000190734863","-2.7300000190734863","","1906-06-26T00:00:00Z","","0" +"NM-12526","39.06999969482422","39.06999969482422","S","1948-01-15T00:00:00Z","","0" +"NM-17577","39.59000015258789","39.59000015258789","","1933-03-11T00:00:00Z","","0" +"NM-09178","24.190000534057617","24.190000534057617","","1931-07-31T00:00:00Z","","0" +"NM-03713","78.4800033569336","78.4800033569336","","1956-01-16T00:00:00Z","","0" +"NM-09206","223.0800018310547","223.0800018310547","P","1979-03-06T00:00:00Z","","0" +"NM-02895","283.5899963378906","283.5899963378906","","1984-08-27T00:00:00Z","","0" +"NM-02567","82.56999969482422","82.56999969482422","P","1993-04-29T00:00:00Z","","0" +"NM-09973","44.119998931884766","44.119998931884766","","1940-01-16T00:00:00Z","","0" +"NM-04301","31.700000762939453","31.700000762939453","","1957-01-09T00:00:00Z","","0" +"NM-00644","86.37999725341797","86.37999725341797","","1969-03-01T00:00:00Z","","0" +"NM-20616","129.6999969482422","129.6999969482422","","1944-09-28T00:00:00Z","","0" +"NM-12191","-32.189998626708984","-32.189998626708984","","1907-09-24T00:00:00Z","","0" +"NM-12860","-31.030000686645508","-31.030000686645508","","1913-01-24T00:00:00Z","","0" +"NM-05407","119.29000091552734","119.29000091552734","","1954-01-08T00:00:00Z","","0" +"NM-03239","131.77999877929688","131.77999877929688","","2000-01-10T00:00:00Z","","0" +"NM-02164","8.609999656677246","8.609999656677246","","1993-04-27T00:00:00Z","","0" +"NM-28258","120.05000305175781","120.05000305175781","","1986-10-25T00:00:00Z","","0" +"EB-479","70","70","","1985-07-31T00:00:00Z","","0" +"NM-21541","357.7300109863281","357.7300109863281","","1992-12-01T00:00:00Z","","0" +"NM-07685","29.18000030517578","29.18000030517578","","1962-10-02T00:00:00Z","","0" +"NM-28259","25.049999237060547","25.049999237060547","","1948-11-05T00:00:00Z","","0" +"NM-03473","23.3799991607666","23.3799991607666","","2000-08-16T00:00:00Z","","0" +"NM-16438","146.2100067138672","146.2100067138672","","1965-03-03T00:00:00Z","","0" +"NM-13033","300.760009765625","300.760009765625","","1967-01-27T00:00:00Z","","0" +"NM-17371","43.58000183105469","43.58000183105469","","1940-09-20T00:00:00Z","","0" +"NM-15467","82.23999786376953","82.23999786376953","","1956-08-27T00:00:00Z","","0" +"NM-28251","94.97000122070312","94.97000122070312","","1976-07-25T00:00:00Z","","0" +"NM-01281","400.6400146484375","400.6400146484375","","1985-11-01T00:00:00Z","","0" +"EB-408","304","304","","1973-09-22T00:00:00Z","","0" +"NM-28255","154.30999755859375","154.30999755859375","","2017-06-05T00:00:00Z","","0" +"NM-04294","27.520000457763672","27.520000457763672","","1982-01-09T00:00:00Z","","0" +"NM-00366","137.47999572753906","137.47999572753906","","1973-10-01T00:00:00Z","","0" +"NM-03330","18.579999923706055","18.579999923706055","","1988-12-27T00:00:00Z","","0" +"NM-00367","129.8000030517578","129.8000030517578","","1978-11-01T00:00:00Z","","0" +"NM-10546","-28.719999313354492","-28.719999313354492","","1911-05-21T00:00:00Z","","0" +"NM-21067","154.6999969482422","154.6999969482422","","1956-11-06T00:00:00Z","","0" +"NM-20310","61.9900016784668","61.9900016784668","","1966-01-04T00:00:00Z","","0" +"NM-10745","50.09000015258789","50.09000015258789","","1948-01-17T00:00:00Z","","0" +"NM-18459","85.77999877929688","85.77999877929688","","1964-05-14T00:00:00Z","","0" +"NM-28252","45.31999969482422","45.31999969482422","","1988-04-25T00:00:00Z","","0" +"NM-28252","60.529998779296875","60.529998779296875","","1976-12-25T00:00:00Z","","0" +"NM-07146","83.87000274658203","83.87000274658203","","2005-07-28T00:00:00Z","","0" +"SO-0258","10.09000015258789","8.550000190734863","","2022-01-28T00:00:00Z","0001-01-01T12:38:00Z","1.5399999618530273" +"NM-16833","41.52000045776367","41.52000045776367","","1964-01-16T00:00:00Z","","0" +"NM-11095","56.79999923706055","56.79999923706055","","1961-02-06T00:00:00Z","","0" +"NM-02586","299.010009765625","299.010009765625","","2000-09-09T00:00:00Z","","0" +"NM-06796","104.44000244140625","104.44000244140625","","1991-04-16T00:00:00Z","","0" +"NM-01955","6.300000190734863","6.300000190734863","","1964-11-15T00:00:00Z","","0" +"WL-0263","92.55999755859375","90.55999755859375","","2024-11-14T00:00:00Z","0001-01-01T13:05:00Z","2" +"NM-10600","45.31999969482422","45.31999969482422","","1951-09-11T00:00:00Z","","0" +"NM-01586","","","O","1994-07-20T00:00:00Z","","0" +"NM-10304","164.19000244140625","164.19000244140625","","1979-02-01T00:00:00Z","","0" +"NM-14399","156.60000610351562","156.60000610351562","","1967-12-15T00:00:00Z","","0" +"AB-0181","154.27000427246094","154.27000427246094","","2014-10-08T00:00:00Z","","" +"NM-18650","320","320","","1993-05-29T00:00:00Z","","0" +"NM-28254","41.20000076293945","41.20000076293945","","1986-10-05T00:00:00Z","","0" +"NM-19342","282.7200012207031","282.7200012207031","","1960-03-03T00:00:00Z","","0" +"NM-02358","51.97999954223633","51.97999954223633","P","2012-02-08T00:00:00Z","","0" +"NM-17958","170","170","","1950-01-01T00:00:00Z","","0" +"NM-02024","66.19000244140625","66.19000244140625","S","1953-03-23T00:00:00Z","","0" +"NM-03004","71.5999984741211","71.5999984741211","","1967-01-04T00:00:00Z","","0" +"NM-02407","36.689998626708984","36.689998626708984","","1954-09-09T00:00:00Z","","0" +"SB-0299","145.17999267578125","145.17999267578125","","2015-11-05T00:00:00Z","","0" +"NM-06060","25.190000534057617","25.190000534057617","","1954-03-10T00:00:00Z","","0" +"NM-01897","10.520000457763672","10.520000457763672","","1994-11-22T00:00:00Z","","0" +"NM-07121","101.69000244140625","101.69000244140625","","2005-11-03T00:00:00Z","","0" +"NM-10099","159.3000030517578","159.3000030517578","","1970-06-15T00:00:00Z","","0" +"UC-0126","229.2100067138672","229.2100067138672","S","2009-08-27T00:00:00Z","","0" +"NM-28024","475.8699951171875","475.8699951171875","S","2015-05-06T00:00:00Z","","0" +"NM-00686","60.060001373291016","60.060001373291016","Z","2001-02-20T00:00:00Z","","0" +"NM-11318","16.559999465942383","16.559999465942383","","1971-01-21T00:00:00Z","","0" +"NM-24151","43.84000015258789","43.84000015258789","","1993-03-24T00:00:00Z","","0" +"NM-21878","4.480000019073486","4.480000019073486","Z","2011-09-28T00:00:00Z","","0" +"NM-17716","0.8999999761581421","0.8999999761581421","","1944-02-03T00:00:00Z","","0" +"NM-07833","341.80999755859375","341.80999755859375","","1977-01-26T00:00:00Z","","0" +"WL-0086","35.83333206176758","34.073333740234375","","1992-02-20T00:00:00Z","","1.7599999904632568" +"QY-0643","29.600000381469727","29.600000381469727","","1941-04-30T00:00:00Z","","0" +"EB-295","516.1799926757812","516.1799926757812","","2015-03-23T00:00:00Z","","0" +"NM-17271","36.33000183105469","36.33000183105469","","1937-08-28T00:00:00Z","","0" +"BC-0089","138.14999389648438","138.14999389648438","","2014-09-02T00:00:00Z","","0" +"DE-0069","201.3000030517578","197.82000732421875","","2011-12-15T00:00:00Z","","3.4800000190734863" +"NM-00786","","","D","2003-07-24T00:00:00Z","","0" +"NM-28253","26.040000915527344","26.040000915527344","","1997-06-25T00:00:00Z","","0" +"NM-11983","67.37999725341797","67.37999725341797","","1966-03-02T00:00:00Z","","0" +"NM-01291","91.55999755859375","91.55999755859375","","2007-08-09T00:00:00Z","","0" +"NM-14411","96.44000244140625","96.44000244140625","P","1981-04-10T00:00:00Z","","0" +"NM-19686","84.05999755859375","84.05999755859375","","1975-01-04T00:00:00Z","","0" +"NM-02556","-28.719999313354492","-28.719999313354492","","1913-07-09T00:00:00Z","","0" +"NM-28259","159.25","159.25","","1966-04-15T00:00:00Z","","0" +"NM-14006","220.5","220.5","","2006-01-12T00:00:00Z","","0" +"BC-0083","238.8000030517578","238.8000030517578","","2020-04-26T00:00:00Z","","0" +"NM-21236","3.369999885559082","3.369999885559082","Z","2009-06-02T00:00:00Z","","0" +"NM-28255","114.91000366210938","114.91000366210938","","1986-04-15T00:00:00Z","","0" +"NM-13162","14.979999542236328","14.979999542236328","","1958-08-26T00:00:00Z","","0" +"NM-03066","264.989990234375","264.989990234375","","1995-01-05T00:00:00Z","","0" +"NM-00238","42.70000076293945","42.70000076293945","","1952-01-14T00:00:00Z","","0" +"NM-00951","321.1099853515625","321.1099853515625","","1997-01-22T00:00:00Z","","0" +"NM-10063","7.360000133514404","7.360000133514404","","1979-05-31T00:00:00Z","","0" +"NM-02163","16.420000076293945","16.420000076293945","","2008-04-09T00:00:00Z","","0" +"NM-13235","3.8299999237060547","3.8299999237060547","","1958-06-02T00:00:00Z","","0" +"NM-14802","99.5199966430664","99.5199966430664","","1968-05-06T00:00:00Z","","0" +"NM-03397","26.639999389648438","26.639999389648438","","1985-08-26T00:00:00Z","","0" +"NM-00988","84.83999633789062","84.83999633789062","","1997-03-14T00:00:00Z","","0" +"NM-27541","20.5","20.5","","1949-07-29T00:00:00Z","","0" +"NM-27593","80.25","80.25","P","1967-01-04T00:00:00Z","","0" +"NM-21222","354.3299865722656","354.3299865722656","","1992-08-06T00:00:00Z","","0" +"NM-13667","65.66999816894531","65.66999816894531","","1961-01-05T00:00:00Z","","0" +"NM-05292","41.029998779296875","41.029998779296875","","1940-09-07T00:00:00Z","","0" +"NM-06268","19.799999237060547","19.799999237060547","","1956-02-15T00:00:00Z","","0" +"EB-207","187.49000549316406","187.49000549316406","","1982-01-22T00:00:00Z","","0" +"NM-03274","8.399999618530273","8.399999618530273","P","1957-12-05T00:00:00Z","","0" +"NM-02352","5.400000095367432","5.400000095367432","","1989-08-15T00:00:00Z","","0" +"EB-276","196.16000366210938","196.16000366210938","","1973-02-15T00:00:00Z","","0" +"BW-0837","23","23","","1952-08-08T00:00:00Z","","1.3300000429153442" +"NM-02349","20.200000762939453","20.200000762939453","","1965-04-15T00:00:00Z","","0" +"NM-02772","163.77999877929688","163.77999877929688","","1972-08-01T00:00:00Z","","0" +"NM-11358","7.46999979019165","7.46999979019165","","1970-12-21T00:00:00Z","","0" +"NM-02412","38.97999954223633","38.97999954223633","","1962-04-06T00:00:00Z","","0" +"BC-0233","50.709999084472656","50.709999084472656","","2015-04-07T00:00:00Z","","0" +"NM-27882","80.91999816894531","80.91999816894531","","1972-01-05T00:00:00Z","","0" +"PC-041","105.02999877929688","107.93000030517578","R","1999-06-10T00:00:00Z","","0" +"NM-00367","136.0800018310547","136.0800018310547","","2001-06-27T00:00:00Z","","0" +"NM-00196","38.689998626708984","38.689998626708984","","1960-01-15T00:00:00Z","","0" +"AR-0024","15.670000076293945","15.020000457763672","","2016-03-15T00:00:00Z","","0.6499999761581421" +"EB-269","161.5","161.5","","2006-02-22T00:00:00Z","","0" +"NM-02692","4.920000076293945","4.920000076293945","","1967-01-02T00:00:00Z","","0" +"NM-28257","27.25","27.25","","2009-04-06T00:00:00Z","","0" +"AB-0037","336.7900085449219","336.7900085449219","","1999-04-16T00:00:00Z","","" +"BC-0214","21.530000686645508","21.530000686645508","","2018-09-24T00:00:00Z","","0" +"NM-12513","-37.959999084472656","-37.959999084472656","","1911-09-28T00:00:00Z","","0" +"AB-0083","502","502","R","1985-07-06T00:00:00Z","","0" +"NM-06976","94.9000015258789","94.9000015258789","","2003-04-08T00:00:00Z","","0" +"NM-12601","-70.30000305175781","-70.30000305175781","","1912-05-31T00:00:00Z","","0" +"NM-22787","42.88999938964844","42.88999938964844","","1953-05-23T00:00:00Z","","0" +"NM-02772","132.38999938964844","132.38999938964844","","1996-07-05T00:00:00Z","","0" +"NM-01869","74.18000030517578","74.18000030517578","","1993-01-04T00:00:00Z","","0" +"NM-28254","97.37000274658203","97.37000274658203","","1960-03-25T00:00:00Z","","0" +"NM-17716","5.539999961853027","5.539999961853027","","1949-04-09T00:00:00Z","","0" +"SB-0238","104","104","","1973-02-10T00:00:00Z","","0" +"DE-0286","83.66999816894531","83.66999816894531","","2016-09-28T00:00:00Z","","0" +"NM-21637","425.010009765625","425.010009765625","","1992-04-09T00:00:00Z","","0" +"NM-02675","60.439998626708984","60.439998626708984","","1959-01-16T00:00:00Z","","0" +"NM-12595","24.360000610351562","24.360000610351562","","1984-02-08T00:00:00Z","","0" +"NM-17335","77.11000061035156","77.11000061035156","","1960-01-08T00:00:00Z","","0" +"NM-18290","37.099998474121094","37.099998474121094","","1963-01-31T00:00:00Z","","0" +"NM-02702","4.840000152587891","4.840000152587891","","1970-01-21T00:00:00Z","","0" +"NM-02658","213.52000427246094","213.52000427246094","","1944-08-22T00:00:00Z","","0" +"NM-00522","54.459999084472656","54.459999084472656","","1959-01-16T00:00:00Z","","0" +"NM-16816","31.540000915527344","31.540000915527344","","1950-01-09T00:00:00Z","","0" +"SB-0431","65.9000015258789","65.9000015258789","","2003-01-22T00:00:00Z","","0" +"BC-0270","318.6499938964844","318.6499938964844","","2018-12-18T00:00:00Z","","0" +"NM-25078","567.4000244140625","567.4000244140625","","1976-07-01T00:00:00Z","","0" +"AR-0001","7","5","AA","2020-03-17T00:00:00Z","0001-01-01T16:00:00Z","2" +"NM-03943","92.4800033569336","92.4800033569336","P","1961-01-10T00:00:00Z","","0" +"NM-05516","21.5","21.5","","1956-09-15T00:00:00Z","","0" +"NM-13857","3.3499999046325684","3.3499999046325684","","1958-12-02T00:00:00Z","","0" +"NM-17200","2.259999990463257","2.259999990463257","","1936-10-20T00:00:00Z","","0" +"AB-0091","494.8800048828125","494.8800048828125","","2000-01-11T00:00:00Z","","" +"NM-05455","26.389999389648438","26.389999389648438","","1944-04-13T00:00:00Z","","0" +"BC-0305","271.29998779296875","271.29998779296875","","2019-11-03T00:00:00Z","","0" +"NM-01948","6.099999904632568","6.099999904632568","","1995-05-15T00:00:00Z","","0" +"NM-00645","31.90999984741211","31.90999984741211","","1959-09-14T00:00:00Z","","0" +"EB-416","265","265","Z","2002-06-30T00:00:00Z","","0" +"NM-07149","99.23999786376953","99.23999786376953","","2008-07-16T00:00:00Z","","0" +"NM-05948","80.5","80.5","","1958-06-19T00:00:00Z","","0" +"NM-01780","168.30999755859375","168.30999755859375","","1973-01-24T00:00:00Z","","0" +"UC-0035","110.87000274658203","110.87000274658203","","2011-01-25T00:00:00Z","","0" +"NM-02222","85.3499984741211","85.3499984741211","","1997-01-31T00:00:00Z","","0" +"QY-0630","33.20000076293945","33.20000076293945","","1956-01-10T00:00:00Z","","0" +"NM-28014","498.7799987792969","498.7799987792969","S","2015-05-15T00:00:00Z","","0" +"NM-28252","55.810001373291016","55.810001373291016","","1986-08-25T00:00:00Z","","0" +"NM-19430","94.33000183105469","94.33000183105469","P","1951-08-21T00:00:00Z","","0" +"NM-08648","40.380001068115234","40.380001068115234","","1950-09-19T00:00:00Z","","0" +"BC-0160","197.38999938964844","197.38999938964844","","2015-06-02T00:00:00Z","","0" +"NM-02560","136.7899932861328","136.7899932861328","","2016-08-18T00:00:00Z","0001-01-01T09:00:00Z","0" +"NM-09605","102.16999816894531","102.16999816894531","","1959-04-07T00:00:00Z","","0" +"NM-22189","423.92999267578125","423.92999267578125","","2014-06-18T00:00:00Z","","0" +"NM-02090","64.27999877929688","64.27999877929688","","1952-03-18T00:00:00Z","","0" +"NM-02520","6.800000190734863","6.800000190734863","","1958-03-15T00:00:00Z","","0" +"NM-13505","-51.81999969482422","-51.81999969482422","","1915-01-09T00:00:00Z","","0" +"NM-27251","161.97999572753906","161.97999572753906","","1998-01-21T00:00:00Z","","0" +"NM-02529","57.150001525878906","57.150001525878906","","1968-01-02T00:00:00Z","","0" +"SB-0270","136","136","","1948-03-29T00:00:00Z","","0" +"TB-0044","208.9499969482422","208.9499969482422","","2021-11-16T00:00:00Z","0001-01-01T11:00:00Z","0" +"SV-0109","291.8999938964844","290.6499938964844","","2019-07-13T00:00:00Z","","1.25" +"NM-19473","84.58999633789062","84.58999633789062","","1972-06-13T00:00:00Z","","0" +"NM-01966","179.22000122070312","179.22000122070312","","1979-01-10T00:00:00Z","","0" +"NM-16350","166.38999938964844","166.38999938964844","","1977-02-28T00:00:00Z","","0" +"NM-26661","-2.3499999046325684","-2.3499999046325684","","2012-01-11T00:00:00Z","","0" +"NM-08547","-74.91999816894531","-74.91999816894531","","1906-07-25T00:00:00Z","","0" +"NM-05511","160.39999389648438","160.39999389648438","","1969-01-15T00:00:00Z","","0" +"TO-0042","208.6999969482422","208.6999969482422","","1950-08-03T00:00:00Z","","0" +"SM-0059","12.800000190734863","10.600000381469727","R","2006-10-18T00:00:00Z","","2.200000047683716" +"NM-02394","78.97000122070312","78.97000122070312","","1956-09-07T00:00:00Z","","0" +"NM-12377","-81.8499984741211","-81.8499984741211","","1908-12-16T00:00:00Z","","0" +"NM-06951","106.88999938964844","106.88999938964844","","2005-12-13T00:00:00Z","","0" +"NM-13165","144.4499969482422","144.4499969482422","","1959-05-26T00:00:00Z","","0" +"EB-262","86.58000183105469","86.58000183105469","","2007-06-13T00:00:00Z","","0" +"NM-02797","5.960000038146973","5.960000038146973","","1974-04-17T00:00:00Z","","0" +"EB-246","341.9200134277344","341.9200134277344","","2005-07-20T00:00:00Z","","0" +"SO-0130","6.71999979019165","5.849999904632568","","2018-11-29T00:00:00Z","0001-01-01T10:25:00Z","0.8700000047683716" +"NM-08958","-88.77999877929688","-88.77999877929688","","1919-01-29T00:00:00Z","","0" +"NM-27307","132.75","132.75","","1995-02-22T00:00:00Z","","0" +"NM-02695","42.31999969482422","42.31999969482422","","1962-01-03T00:00:00Z","","0" +"NM-05293","157.14999389648438","157.14999389648438","","1965-08-02T00:00:00Z","","0" +"NM-17462","83.48999786376953","83.48999786376953","","1987-03-27T00:00:00Z","","0" +"NM-14265","423.3299865722656","423.3299865722656","","1963-03-01T00:00:00Z","","0" +"NM-00611","72.98999786376953","72.98999786376953","","1988-01-07T00:00:00Z","","0" +"EB-483","45.08000183105469","45.08000183105469","","1979-04-06T00:00:00Z","","" +"NM-13071","3.0299999713897705","3.0299999713897705","","1978-10-03T00:00:00Z","","0" +"NM-03235","47.560001373291016","47.560001373291016","","1947-05-27T00:00:00Z","","0" +"SA-0005","208.99000549316406","207.99000549316406","","2016-02-22T00:00:00Z","","1" +"NM-10756","44.5099983215332","44.5099983215332","","1939-02-04T00:00:00Z","","0" +"SA-0061","22.010000228881836","22.010000228881836","","1978-04-13T00:00:00Z","","0" +"NM-00738","24.3799991607666","24.3799991607666","","1988-08-17T00:00:00Z","","0" +"ED-0226","47.400001525878906","47.400001525878906","","1947-09-29T00:00:00Z","","0" +"NM-01525","158.8000030517578","158.8000030517578","","2010-03-18T00:00:00Z","","0" +"NM-11035","41.91999816894531","41.91999816894531","","1972-01-13T00:00:00Z","","0" +"NM-13557","24.170000076293945","24.170000076293945","","1959-09-25T00:00:00Z","","0" +"PC-009","145.4600067138672","148.3400115966797","","1997-05-29T00:00:00Z","","0" +"NM-10099","196.3000030517578","196.3000030517578","","1971-07-15T00:00:00Z","","0" +"EB-479","398.94000244140625","398.94000244140625","Z","2006-04-30T00:00:00Z","","0" +"NM-05681","93.51000213623047","93.51000213623047","","1951-05-08T00:00:00Z","","0" +"NM-00260","38.709999084472656","38.709999084472656","","2001-03-09T00:00:00Z","","0" +"NM-08271","12.600000381469727","12.600000381469727","","1975-01-07T00:00:00Z","","0" +"NM-07511","63.45000076293945","63.45000076293945","","1954-07-30T00:00:00Z","","0" +"NM-01972","112.37999725341797","112.37999725341797","","1978-01-09T00:00:00Z","","0" +"NM-00753","479.7799987792969","479.7799987792969","","2009-06-02T00:00:00Z","","0" +"NM-28257","1.350000023841858","1.350000023841858","","2016-09-15T00:00:00Z","","0" +"NM-20475","63.54999923706055","63.54999923706055","","1986-10-17T00:00:00Z","","0" +"NM-02311","156.4600067138672","156.4600067138672","","2007-01-08T00:00:00Z","","0" +"NM-17618","16.3799991607666","16.3799991607666","","1958-06-04T00:00:00Z","","0" +"NM-03334","9.520000457763672","9.520000457763672","","1989-11-29T00:00:00Z","","0" +"NM-01246","106.04000091552734","106.04000091552734","","2000-08-22T00:00:00Z","","0" +"SA-0115","233.64999389648438","231.6999969482422","R","2013-03-05T00:00:00Z","","1.9500000476837158" +"NM-04259","7.599999904632568","7.599999904632568","","1946-01-01T00:00:00Z","","0" +"NM-01841","259.69000244140625","259.69000244140625","","1982-12-22T00:00:00Z","","0" +"NM-21852","5.110000133514404","5.110000133514404","Z","2007-08-13T00:00:00Z","","0" +"EB-261","4.5","2.700000047683716","Z","1997-10-21T00:00:00Z","","1.7999999523162842" +"NM-16614","18.75","18.75","","1944-03-23T00:00:00Z","","0" +"NM-01514","81.87000274658203","81.87000274658203","","1969-06-11T00:00:00Z","","0" +"NM-01985","7.400000095367432","7.400000095367432","","1983-07-15T00:00:00Z","","0" +"EB-478","648.27001953125","648.27001953125","P","2007-10-31T00:00:00Z","","0" +"MI-0055","30","30","","1950-12-31T00:00:00Z","","0" +"NM-07343","47.310001373291016","47.310001373291016","","1963-01-11T00:00:00Z","","0" +"NM-06105","26.389999389648438","26.389999389648438","","1954-09-10T00:00:00Z","","0" +"NM-15758","135.7899932861328","135.7899932861328","","1961-09-27T00:00:00Z","","0" +"SB-0299","114.83999633789062","114.83999633789062","","1968-05-25T00:00:00Z","","0" +"NM-00185","10","10","","1970-09-15T00:00:00Z","","0" +"NM-28255","185.50999450683594","185.50999450683594","","2013-08-05T00:00:00Z","","0" +"NM-16596","56.400001525878906","56.400001525878906","","1977-01-04T00:00:00Z","","0" +"BC-0190","244.3800048828125","244.3800048828125","","2013-06-10T00:00:00Z","","0" +"SO-0227","9.4399995803833","8.829999923706055","","2020-07-23T00:00:00Z","0001-01-01T09:35:00Z","0.6100000143051147" +"NM-05689","91.5199966430664","91.5199966430664","","1943-10-13T00:00:00Z","","0" +"NM-18922","377.7200012207031","377.7200012207031","","1968-01-11T00:00:00Z","","0" +"NM-19999","30.299999237060547","30.299999237060547","","1947-05-27T00:00:00Z","","0" +"NM-03356","67.41999816894531","67.41999816894531","","1960-02-15T00:00:00Z","","0" +"NM-28256","287.1499938964844","287.1499938964844","","1979-08-15T00:00:00Z","","0" +"NM-05210","87.37999725341797","87.37999725341797","","1955-08-01T00:00:00Z","","0" +"NM-19959","47.70000076293945","47.70000076293945","","1955-01-14T00:00:00Z","","0" +"NM-08189","9.699999809265137","9.699999809265137","","1967-03-15T00:00:00Z","","0" +"NM-01985","5.800000190734863","5.800000190734863","","1946-09-15T00:00:00Z","","0" +"NM-02998","19.649999618530273","19.649999618530273","","1952-09-21T00:00:00Z","","0" +"NM-22564","33.52000045776367","33.52000045776367","R","1984-04-04T00:00:00Z","","0" +"NM-02721","47.959999084472656","47.959999084472656","","2015-01-29T00:00:00Z","","0" +"NM-02858","27.979999542236328","27.979999542236328","","1960-01-26T00:00:00Z","","0" +"NM-28250","107.97000122070312","107.97000122070312","","1980-10-05T00:00:00Z","","0" +"NM-00664","476.6199951171875","476.6199951171875","","1962-01-03T00:00:00Z","","0" +"NM-19658","100.2300033569336","100.2300033569336","","1982-03-09T00:00:00Z","","0" +"NM-01947","4.5","4.5","","1966-11-15T00:00:00Z","","0" +"NM-00938","218.1699981689453","218.1699981689453","","1971-01-06T00:00:00Z","","0" +"NM-03281","41","41","","1956-02-16T00:00:00Z","","0" +"NM-08524","11.100000381469727","11.100000381469727","","1979-12-15T00:00:00Z","","0" +"NM-11013","68.4000015258789","68.4000015258789","","1954-01-18T00:00:00Z","","0" +"SO-0224","22.25","21.40999984741211","","2021-07-13T00:00:00Z","0001-01-01T12:19:00Z","0.8399999737739563" +"NM-02102","111.1500015258789","111.1500015258789","","1998-02-19T00:00:00Z","","0" +"NM-03235","59.650001525878906","59.650001525878906","","1951-11-15T00:00:00Z","","0" +"NM-05762","64.05999755859375","64.05999755859375","","1963-11-01T00:00:00Z","","0" +"NM-21500","220.85000610351562","220.85000610351562","","2007-10-10T00:00:00Z","","0" +"NM-00185","14.199999809265137","14.199999809265137","","1967-04-15T00:00:00Z","","0" +"NM-10566","67.27999877929688","67.27999877929688","","1963-01-23T00:00:00Z","","0" +"NM-21548","4.639999866485596","4.639999866485596","Z","2007-12-17T00:00:00Z","","0" +"NM-01987","10.130000114440918","10.130000114440918","","1975-02-28T00:00:00Z","","0" +"NM-02101","8.300000190734863","8.300000190734863","","1950-01-15T00:00:00Z","","0" +"NM-03039","108.47000122070312","108.47000122070312","P","2008-03-17T00:00:00Z","","0" +"NM-14535","90.55999755859375","90.55999755859375","","1975-05-05T00:00:00Z","","0" +"NM-02487","9.100000381469727","9.100000381469727","","1985-12-15T00:00:00Z","","0" +"DE-0119","32.13999938964844","32.13999938964844","","2006-07-24T00:00:00Z","","0" +"NM-01998","203.6699981689453","203.6699981689453","","1991-06-06T00:00:00Z","","0" +"NM-13792","-10.239999771118164","-10.239999771118164","","1905-10-04T00:00:00Z","","0" +"NM-14535","93.3499984741211","93.3499984741211","","1971-06-14T00:00:00Z","","0" +"NM-03903","330.510009765625","330.510009765625","","1975-06-06T00:00:00Z","","0" +"NM-28252","52.849998474121094","52.849998474121094","","1963-04-15T00:00:00Z","","0" +"NM-10318","59.13999938964844","59.13999938964844","","1981-03-30T00:00:00Z","","0" +"NM-19874","258.8500061035156","258.8500061035156","","1985-01-10T00:00:00Z","","0" +"NM-10655","48.099998474121094","48.099998474121094","","1956-09-21T00:00:00Z","","0" +"EB-276","126.31999969482422","126.31999969482422","","1959-03-02T00:00:00Z","","0" +"NM-03932","101.66000366210938","101.66000366210938","","1958-01-09T00:00:00Z","","0" +"NM-21776","7.980000019073486","7.980000019073486","","1958-08-11T00:00:00Z","","0" +"NM-11928","-0.6200000047683716","-0.6200000047683716","","1951-04-01T00:00:00Z","","0" +"ED-0090","33.79999923706055","33.79999923706055","","1947-12-17T00:00:00Z","","0" +"NM-06862","43.18000030517578","43.18000030517578","","1932-08-02T00:00:00Z","","0" +"NM-08954","39","39","","1961-02-02T00:00:00Z","","0" +"NM-28254","27.299999237060547","27.299999237060547","","2014-02-05T00:00:00Z","","0" +"NM-05977","92.66999816894531","92.66999816894531","","1939-06-29T00:00:00Z","","0" +"NM-05769","122.9000015258789","122.9000015258789","P","1956-02-16T00:00:00Z","","0" +"NM-10234","43.349998474121094","43.349998474121094","","1961-03-08T00:00:00Z","","0" +"BC-0247","51.810001373291016","51.810001373291016","","2017-10-03T00:00:00Z","","0" +"NM-13591","-9.65999984741211","-9.65999984741211","","1908-09-16T00:00:00Z","","0" +"NM-05619","51.400001525878906","51.400001525878906","","1939-06-30T00:00:00Z","","0" +"NM-12239","13.180000305175781","13.180000305175781","","1969-03-25T00:00:00Z","","0" +"NM-28256","221.30999755859375","221.30999755859375","","1996-07-05T00:00:00Z","","0" +"NM-02116","91.76000213623047","91.76000213623047","","1959-01-16T00:00:00Z","","0" +"NM-11602","68.56999969482422","68.56999969482422","","1991-02-13T00:00:00Z","","0" +"NM-17716","1.440000057220459","1.440000057220459","","1945-01-29T00:00:00Z","","0" +"NM-09537","103.55000305175781","103.55000305175781","","1965-11-04T00:00:00Z","","0" +"AB-0052","50.279998779296875","50.279998779296875","","2006-05-11T00:00:00Z","","" +"NM-09390","22.170000076293945","22.170000076293945","","1966-01-14T00:00:00Z","","0" +"NM-28252","50.34000015258789","50.34000015258789","","2008-09-05T00:00:00Z","","0" +"WL-0211","62.61000061035156","60.47999954223633","","2020-09-08T00:00:00Z","0001-01-01T12:31:00Z","2.130000114440918" +"NM-16702","18.940000534057617","18.940000534057617","","1951-01-12T00:00:00Z","","0" +"NM-02772","18.510000228881836","18.510000228881836","","2004-01-25T00:00:00Z","","0" +"NM-15693","82.8499984741211","82.8499984741211","","1956-09-17T00:00:00Z","","0" +"NM-04291","28.100000381469727","28.100000381469727","","1959-01-13T00:00:00Z","","0" +"NM-02296","50.09000015258789","50.09000015258789","","1996-01-31T00:00:00Z","","0" +"NM-09176","57.439998626708984","57.439998626708984","","1955-05-11T00:00:00Z","","0" +"NM-02520","5.099999904632568","5.099999904632568","","1996-08-15T00:00:00Z","","0" +"BC-0247","52.29999923706055","52.29999923706055","","2018-04-07T00:00:00Z","","0" +"NM-12283","-26.40999984741211","-26.40999984741211","","1910-12-28T00:00:00Z","","0" +"NM-28011","491.1700134277344","491.1700134277344","S","2015-05-15T00:00:00Z","","0" +"NM-08817","90.95999908447266","90.95999908447266","","1976-02-17T00:00:00Z","","0" +"NM-01228","32.58000183105469","32.58000183105469","","1943-04-29T00:00:00Z","","0" +"NM-12193","98.80000305175781","98.80000305175781","","1957-01-25T00:00:00Z","","0" +"WL-0087","52.29166793823242","50.61166763305664","","1996-11-06T00:00:00Z","","1.6799999475479126" +"SV-0004","238.39999389648438","236.4833221435547","","2016-07-16T00:00:00Z","","1.9166666269302368" +"NM-07996","70.2300033569336","70.2300033569336","","1957-03-27T00:00:00Z","","0" +"WL-0089","54.125","51.57500076293945","","1997-12-16T00:00:00Z","","2.549999952316284" +"NM-17716","2.690000057220459","2.690000057220459","","1944-09-11T00:00:00Z","","0" +"NM-28259","130.55999755859375","130.55999755859375","","2016-10-14T00:00:00Z","","0" +"NM-10815","21.709999084472656","21.709999084472656","","1942-01-16T00:00:00Z","","0" +"NM-22754","343.1099853515625","343.1099853515625","","1996-09-10T00:00:00Z","","0" +"NM-28259","145.16000366210938","145.16000366210938","","2013-03-22T00:00:00Z","","0" +"NM-21996","213.89999389648438","213.89999389648438","","2006-12-12T00:00:00Z","","0" +"NM-17164","68.3499984741211","68.3499984741211","","1959-01-08T00:00:00Z","","0" +"NM-23004","5.800000190734863","5.800000190734863","Z","2009-08-11T00:00:00Z","","0" +"NM-17928","195.08999633789062","195.08999633789062","","1977-01-04T00:00:00Z","","0" +"NM-00788","219.52999877929688","219.52999877929688","","2013-08-02T00:00:00Z","","0" +"NM-18347","198.67999267578125","198.67999267578125","","1956-09-17T00:00:00Z","","0" +"NM-28259","151.94000244140625","151.94000244140625","","1978-06-05T00:00:00Z","","0" +"BC-0071","333.9800109863281","333.9800109863281","","2019-04-23T00:00:00Z","","0" +"AB-0102","576.6500244140625","576.6500244140625","","2008-10-09T00:00:00Z","","" +"SB-0313","26.360000610351562","26.360000610351562","","1949-02-03T00:00:00Z","","0" +"BC-0261","190.47999572753906","190.47999572753906","","2019-01-12T00:00:00Z","","0" +"NM-22348","10.979999542236328","10.979999542236328","","2016-07-12T00:00:00Z","","0" +"NM-02668","50.400001525878906","50.400001525878906","P","1963-10-01T00:00:00Z","","0" +"NM-02043","5.900000095367432","5.900000095367432","","1985-07-15T00:00:00Z","","0" +"NM-16953","32.75","32.75","","1946-07-26T00:00:00Z","","0" +"TB-0162","32.86000061035156","32.26000213623047","","2009-09-24T00:00:00Z","","0.6000000238418579" +"NM-01889","19.469999313354492","19.469999313354492","","1999-12-16T00:00:00Z","","0" +"EB-244","146.77000427246094","146.77000427246094","","2012-10-24T00:00:00Z","","0" +"EB-276","134.4199981689453","134.4199981689453","","1960-08-02T00:00:00Z","","0" +"NM-01204","376.510009765625","376.510009765625","S","2013-05-21T00:00:00Z","","0" +"NM-11064","324.5299987792969","324.5299987792969","","1968-12-09T00:00:00Z","","0" +"NM-27369","224.88999938964844","224.88999938964844","","1990-02-23T00:00:00Z","","0" +"NM-16619","13.199999809265137","13.199999809265137","","1933-12-17T00:00:00Z","","0" +"NM-22917","7.340000152587891","7.340000152587891","","1980-06-19T00:00:00Z","","0" +"QU-034","25.290000915527344","25.290000915527344","","2015-03-18T00:00:00Z","","0" +"NM-13431","42.7599983215332","42.7599983215332","","1942-07-16T00:00:00Z","","0" +"NM-10535","-26.40999984741211","-26.40999984741211","","1916-08-15T00:00:00Z","","0" +"NM-19851","51.36000061035156","51.36000061035156","","1944-08-20T00:00:00Z","","0" +"NM-19854","252.99000549316406","252.99000549316406","","1969-01-27T00:00:00Z","","0" +"NM-17202","28.020000457763672","28.020000457763672","","1934-04-01T00:00:00Z","","0" +"NM-06110","18.850000381469727","18.850000381469727","","1972-02-19T00:00:00Z","","0" +"AB-0136","19","19","","1991-04-02T00:00:00Z","","0" +"NM-02314","10","10","","1971-12-15T00:00:00Z","","0" +"NM-09407","38.04999923706055","38.04999923706055","","1976-01-15T00:00:00Z","","0" +"NM-02282","400.1099853515625","400.1099853515625","","1981-08-27T00:00:00Z","","0" +"NM-05094","90.30000305175781","90.30000305175781","","1969-01-16T00:00:00Z","","0" +"NM-00237","10.760000228881836","10.760000228881836","","1960-08-17T00:00:00Z","","0" +"SB-0442","171.10000610351562","171.10000610351562","","2008-06-05T00:00:00Z","","0" +"NM-02029","8.399999618530273","8.399999618530273","","1993-10-15T00:00:00Z","","0" +"NM-08260","42.88999938964844","42.88999938964844","","1986-01-08T00:00:00Z","","0" +"NM-03460","149.05999755859375","149.05999755859375","","1958-08-18T00:00:00Z","","0" +"NM-19132","367.2300109863281","367.2300109863281","","1982-02-26T00:00:00Z","","0" +"DE-0113","35.47999954223633","35.47999954223633","","2007-08-08T00:00:00Z","","0" +"NM-02620","13","13","","1964-03-15T00:00:00Z","","0" +"NM-12436","70","70","","1975-10-25T00:00:00Z","","0" +"NM-11424","64.61000061035156","64.61000061035156","","1945-01-10T00:00:00Z","","0" +"NM-01888","10.069999694824219","10.069999694824219","","1997-11-13T00:00:00Z","","0" +"EB-478","216","216","","1994-04-30T00:00:00Z","","0" +"SO-0132","1.7300000190734863","1.0699999332427979","","2017-05-05T00:00:00Z","0001-01-01T11:14:00Z","0.6600000262260437" +"NM-00768","339.2099914550781","339.2099914550781","","2012-11-29T00:00:00Z","","0" +"NM-18756","138","138","","1995-03-23T00:00:00Z","","0" +"NM-02743","56.2599983215332","56.2599983215332","","1938-01-27T00:00:00Z","","0" +"NM-03979","141.3699951171875","141.3699951171875","P","1955-09-14T00:00:00Z","","0" +"EB-236","35.130001068115234","35.130001068115234","","1988-03-28T00:00:00Z","","0" +"NM-16882","20.020000457763672","20.020000457763672","","1947-07-29T00:00:00Z","","0" +"WL-0052","14.109999656677246","13.40999984741211","","2020-10-15T00:00:00Z","0001-01-01T16:06:00Z","0.699999988079071" +"NM-04534","81.86000061035156","81.86000061035156","","1953-09-23T00:00:00Z","","0" +"NM-28255","37.90999984741211","37.90999984741211","","2006-10-18T00:00:00Z","","0" +"NM-19862","53.08000183105469","53.08000183105469","","1946-12-02T00:00:00Z","","0" +"SB-0299","139.1699981689453","139.1699981689453","","2018-03-05T00:00:00Z","","0" +"NM-05119","100.77999877929688","100.77999877929688","","1960-01-20T00:00:00Z","","0" +"EB-148","274.1499938964844","272.3500061035156","","2001-11-14T00:00:00Z","","1.7999999523162842" +"NM-05963","31.079999923706055","31.079999923706055","","1938-01-08T00:00:00Z","","0" +"NM-20068","40.08000183105469","40.08000183105469","","1952-03-28T00:00:00Z","","0" +"NM-01992","114.86000061035156","114.86000061035156","","1987-01-21T00:00:00Z","","0" +"NM-15487","81.54000091552734","81.54000091552734","","1980-01-09T00:00:00Z","","0" +"NM-07740","39.959999084472656","39.959999084472656","","1938-01-24T00:00:00Z","","0" +"EB-235","52.72999954223633","52.72999954223633","","1980-07-28T00:00:00Z","","0" +"AB-0075","8.470000267028809","8.470000267028809","","1999-09-30T00:00:00Z","","" +"NM-02888","87.44000244140625","87.44000244140625","","1974-01-07T00:00:00Z","","0" +"BW-0168","29.34000015258789","29.34000015258789","","1956-02-08T00:00:00Z","","0" +"NM-15642","68.76000213623047","68.76000213623047","","1985-01-30T00:00:00Z","","0" +"NM-19781","26.6200008392334","26.6200008392334","","1954-11-25T00:00:00Z","","0" +"NM-02684","32.2400016784668","32.2400016784668","","1994-01-27T00:00:00Z","","0" +"NM-02352","7.900000095367432","7.900000095367432","","1963-09-15T00:00:00Z","","0" +"NM-21670","552.2899780273438","552.2899780273438","","2006-12-12T00:00:00Z","","0" +"NM-00644","18.579999923706055","18.579999923706055","","1992-11-19T00:00:00Z","","0" +"NM-28059","661.9000244140625","661.9000244140625","S","1984-06-27T00:00:00Z","","0" +"NM-05753","68.04000091552734","68.04000091552734","","1952-03-26T00:00:00Z","","0" +"NM-14167","-37.459999084472656","-37.459999084472656","","1912-01-18T00:00:00Z","","0" +"NM-03400","9.899999618530273","9.899999618530273","","1989-11-30T00:00:00Z","","0" +"NM-12770","59.400001525878906","59.400001525878906","","1994-01-27T00:00:00Z","","0" +"NM-28258","159.35000610351562","159.35000610351562","","1997-09-25T00:00:00Z","","0" +"NM-10934","73.91999816894531","73.91999816894531","","1978-01-04T00:00:00Z","","0" +"SB-0925","60","60","","1956-04-13T00:00:00Z","","" +"SM-0221","314.6000061035156","312.20001220703125","","2008-04-09T00:00:00Z","","2.4000000953674316" +"NM-02579","106.69000244140625","106.69000244140625","","1994-02-04T00:00:00Z","","0" +"BC-0251","39.0099983215332","39.0099983215332","","2017-06-13T00:00:00Z","","0" +"NM-14802","101.83999633789062","101.83999633789062","","1984-02-06T00:00:00Z","","0" +"NM-21192","24.6299991607666","24.6299991607666","","1947-05-28T00:00:00Z","","0" +"NM-20961","17.440000534057617","17.440000534057617","","1942-04-09T00:00:00Z","","0" +"NM-02256","8.5","8.5","","1956-09-15T00:00:00Z","","0" +"NM-21005","36.29999923706055","36.29999923706055","Z","1992-11-20T00:00:00Z","","0" +"NM-02813","184.07000732421875","184.07000732421875","","1962-04-17T00:00:00Z","","0" +"NM-11000","74.86000061035156","74.86000061035156","","1978-01-04T00:00:00Z","","0" +"NM-09723","13.329999923706055","13.329999923706055","","2014-02-10T00:00:00Z","","0" +"NM-28251","91.05000305175781","91.05000305175781","","1977-05-15T00:00:00Z","","0" +"NM-09799","6.650000095367432","6.650000095367432","","1966-07-20T00:00:00Z","","0" +"NM-00619","44.540000915527344","44.540000915527344","","1980-06-25T00:00:00Z","","0" +"NM-28020","465.55999755859375","465.55999755859375","S","2015-04-26T00:00:00Z","","0" +"EB-675","114.94000244140625","113.44000244140625","","1974-12-10T00:00:00Z","","1.5" +"NM-02287","6.320000171661377","6.320000171661377","","1997-11-13T00:00:00Z","","0" +"NM-03467","433.17999267578125","433.17999267578125","R","1985-08-26T00:00:00Z","","0" +"NM-11920","2.2300000190734863","2.2300000190734863","","1955-05-16T00:00:00Z","","0" +"NM-02586","291.8399963378906","291.8399963378906","","1991-07-03T00:00:00Z","","0" +"NM-22786","19.799999237060547","19.799999237060547","","1952-10-31T00:00:00Z","","0" +"NM-01971","6.599999904632568","6.599999904632568","","1992-06-15T00:00:00Z","","0" +"NM-13275","204.3000030517578","204.3000030517578","","1963-09-04T00:00:00Z","","0" +"NM-05634","13.029999732971191","13.029999732971191","","1933-04-08T00:00:00Z","","0" +"NM-02447","102.33000183105469","102.33000183105469","","1970-01-20T00:00:00Z","","0" +"NM-28255","23.90999984741211","23.90999984741211","","1977-01-05T00:00:00Z","","0" +"NM-28023","485.95001220703125","485.95001220703125","S","2015-04-16T00:00:00Z","","0" +"DE-0292","83.18000030517578","83.18000030517578","","2014-12-15T00:00:00Z","","0" +"NM-01899","78.62000274658203","78.62000274658203","S","2012-10-18T00:00:00Z","","0" +"NM-14192","34.22999954223633","34.22999954223633","","1950-01-30T00:00:00Z","","0" +"SV-0150","229.89999389648438","228.07000732421875","","2019-01-12T00:00:00Z","","1.8300000429153442" +"NM-03388","12.15999984741211","12.15999984741211","","1958-10-23T00:00:00Z","","0" +"NM-13118","14.050000190734863","14.050000190734863","","1957-12-30T00:00:00Z","","0" +"NM-07215","474.1000061035156","474.1000061035156","","2009-06-30T00:00:00Z","","0" +"NM-21631","433.5199890136719","433.5199890136719","","2009-03-01T00:00:00Z","","0" +"WL-0090","42.29166793823242","39.91166687011719","","1990-10-25T00:00:00Z","","2.380000114440918" +"NM-00253","22.450000762939453","22.450000762939453","","1962-06-01T00:00:00Z","","0" +"NM-00491","48.83000183105469","48.83000183105469","","1964-02-12T00:00:00Z","","0" +"BC-0222","57.279998779296875","57.279998779296875","","2020-04-25T00:00:00Z","","0" +"NM-17716","1.7899999618530273","1.7899999618530273","","1944-11-19T00:00:00Z","","0" +"MI-0157","21.8700008392334","21.8700008392334","","1947-10-03T00:00:00Z","","0" +"NM-02393","70.56999969482422","70.56999969482422","","1953-05-07T00:00:00Z","","0" +"NM-05554","91.98999786376953","91.98999786376953","","1950-05-16T00:00:00Z","","0" +"SM-0068","169.5","168.0800018310547","","2009-04-14T00:00:00Z","","1.4199999570846558" +"NM-02728","48.20000076293945","48.20000076293945","","1947-01-23T00:00:00Z","","0" +"NM-01701","","","W","2016-01-28T00:00:00Z","","0" +"NM-05764","29.440000534057617","29.440000534057617","","1931-09-13T00:00:00Z","","0" +"SM-0125","34.5","34.5","","1993-09-09T00:00:00Z","","0" +"NM-05169","49.790000915527344","49.790000915527344","","1983-01-03T00:00:00Z","","0" +"EB-012","101.79000091552734","101.79000091552734","","1960-09-13T00:00:00Z","","0" +"NM-07776","-61.060001373291016","-61.060001373291016","","1915-08-11T00:00:00Z","","0" +"NM-13711","255.5399932861328","255.5399932861328","","1945-05-18T00:00:00Z","","0" +"NM-01947","5.400000095367432","5.400000095367432","","1983-03-15T00:00:00Z","","0" +"NM-17200","1.7100000381469727","1.7100000381469727","","1933-03-11T00:00:00Z","","0" +"DE-0111","41.93000030517578","41.93000030517578","","2011-10-10T00:00:00Z","","0" +"NM-03763","64.58999633789062","64.58999633789062","","1971-01-19T00:00:00Z","","0" +"NM-04796","35.83000183105469","35.83000183105469","","1950-05-22T00:00:00Z","","0" +"NM-12833","6.960000038146973","6.960000038146973","","1958-08-25T00:00:00Z","","0" +"NM-28259","129.97999572753906","129.97999572753906","","1962-04-15T00:00:00Z","","0" +"NM-28257","-27.719999313354492","-27.719999313354492","","1996-01-05T00:00:00Z","","0" +"NM-27481","54.38999938964844","54.38999938964844","","2010-01-14T00:00:00Z","","0" +"NM-02209","82","82","","1944-07-01T00:00:00Z","","0" +"NM-13879","-22.950000762939453","-22.950000762939453","","1907-06-14T00:00:00Z","","0" +"NM-11465","62.970001220703125","62.970001220703125","","1959-01-15T00:00:00Z","","0" +"NM-04525","44.27000045776367","44.27000045776367","","1948-01-13T00:00:00Z","","0" +"NM-01868","8.199999809265137","8.199999809265137","","1993-03-15T00:00:00Z","","0" +"NM-20030","54.11000061035156","54.11000061035156","","1949-02-14T00:00:00Z","","0" +"NM-05563","61.849998474121094","61.849998474121094","","1931-10-11T00:00:00Z","","0" +"NM-10507","-56.439998626708984","-56.439998626708984","","1913-01-17T00:00:00Z","","0" +"EB-287","459.0799865722656","459.0799865722656","","1976-06-15T00:00:00Z","","0" +"NM-28253","20.040000915527344","20.040000915527344","","1991-03-25T00:00:00Z","","0" +"SB-0097","120.4000015258789","120.4000015258789","","1965-01-27T00:00:00Z","","0" +"EB-297","533.5599975585938","533.5599975585938","","2012-10-25T00:00:00Z","","0" +"NM-16675","17.760000228881836","17.760000228881836","","1954-11-22T00:00:00Z","","0" +"NM-06220","131.88999938964844","131.88999938964844","","1945-01-08T00:00:00Z","","0" +"NM-01955","5.300000190734863","5.300000190734863","","1949-07-15T00:00:00Z","","0" +"NM-03397","29.3799991607666","29.3799991607666","","1995-02-25T00:00:00Z","","0" +"NM-02396","6.300000190734863","6.300000190734863","","1986-12-15T00:00:00Z","","0" +"NM-02396","6.5","6.5","","1975-11-15T00:00:00Z","","0" +"NM-24935","11.40999984741211","11.40999984741211","","1977-01-11T00:00:00Z","","0" +"NM-10566","64.98999786376953","64.98999786376953","","1960-03-01T00:00:00Z","","0" +"NM-14306","-24.100000381469727","-24.100000381469727","","1909-12-03T00:00:00Z","","0" +"SO-0189","9.699999809265137","8.210000038146973","","2018-02-27T00:00:00Z","0001-01-01T10:45:00Z","1.4900000095367432" +"NM-04481","109.31999969482422","109.31999969482422","","1976-01-22T00:00:00Z","","0" +"NM-03047","95.69999694824219","95.69999694824219","","1997-01-12T00:00:00Z","","0" +"NM-02957","148.6699981689453","148.6699981689453","","1956-10-06T00:00:00Z","","0" +"NM-05976","62.95000076293945","62.95000076293945","P","1950-05-16T00:00:00Z","","0" +"NM-28252","70.48999786376953","70.48999786376953","","1977-08-25T00:00:00Z","","0" +"NM-06149","9.399999618530273","9.399999618530273","","1958-01-16T00:00:00Z","","0" +"AB-0214","156.6699981689453","156.6699981689453","","2007-02-09T00:00:00Z","","" +"SO-0240","5.659999847412109","4.490000247955322","","2021-01-13T00:00:00Z","0001-01-01T11:52:00Z","1.1699999570846558" +"NM-28255","78.5199966430664","78.5199966430664","","1951-09-05T00:00:00Z","","0" +"NM-17665","81.48999786376953","81.48999786376953","","1954-09-22T00:00:00Z","","0" +"NM-03220","23.989999771118164","23.989999771118164","","1950-08-02T00:00:00Z","","0" +"NM-18653","74.80000305175781","74.80000305175781","","1977-01-05T00:00:00Z","","0" +"NM-20196","39.13999938964844","39.13999938964844","","1948-01-19T00:00:00Z","","0" +"NM-27432","34.040000915527344","34.040000915527344","","1933-01-19T00:00:00Z","","0" +"NM-21500","213.80999755859375","213.80999755859375","","1999-11-02T00:00:00Z","","0" +"NM-20147","112.88999938964844","112.88999938964844","","1968-02-26T00:00:00Z","","0" +"NM-24271","58.91999816894531","58.91999816894531","","1980-08-27T00:00:00Z","","0" +"NM-05347","8.199999809265137","8.199999809265137","","1960-10-15T00:00:00Z","","0" +"NM-14802","98.47000122070312","98.47000122070312","","1969-01-06T00:00:00Z","","0" +"NM-17724","119.68000030517578","119.68000030517578","","1979-01-09T00:00:00Z","","0" +"NM-09858","3.549999952316284","3.549999952316284","","1970-01-15T00:00:00Z","","0" +"NM-17716","7.460000038146973","7.460000038146973","","1940-05-09T00:00:00Z","","0" +"NM-12748","46.29999923706055","46.29999923706055","","1939-03-09T00:00:00Z","","0" +"NM-08783","131.8300018310547","131.8300018310547","","1949-05-13T00:00:00Z","","0" +"DE-0282","82.91999816894531","82.91999816894531","","2019-12-12T00:00:00Z","","0" +"BC-0101","","158.9499969482422","","2020-11-05T00:00:00Z","","1.2599999904632568" +"NM-05629","16.780000686645508","16.780000686645508","","1976-01-21T00:00:00Z","","0" +"EB-244","81.63999938964844","81.63999938964844","","1987-05-15T00:00:00Z","","0" +"NM-09036","53.72999954223633","53.72999954223633","","1944-01-07T00:00:00Z","","0" +"NM-28255","123.91999816894531","123.91999816894531","","1966-05-25T00:00:00Z","","0" +"SB-0299","135.3800048828125","135.3800048828125","","2015-03-20T00:00:00Z","","0" +"NM-02282","400.32000732421875","400.32000732421875","","1973-08-01T00:00:00Z","","0" +"NM-16463","104.41999816894531","104.41999816894531","","1961-01-13T00:00:00Z","","0" +"NM-12933","19.770000457763672","19.770000457763672","","1960-11-17T00:00:00Z","","0" +"NM-19969","59.220001220703125","59.220001220703125","","1941-11-29T00:00:00Z","","0" +"NM-02167","19.520000457763672","19.520000457763672","","2012-06-27T00:00:00Z","","0" +"NM-13738","63.70000076293945","63.70000076293945","","1961-02-01T00:00:00Z","","0" +"NM-07275","9.4399995803833","9.4399995803833","","1950-05-16T00:00:00Z","","0" +"NM-02152","9.899999618530273","9.899999618530273","","1998-04-15T00:00:00Z","","0" +"NM-14305","-12.550000190734863","-12.550000190734863","","1909-09-15T00:00:00Z","","0" +"NM-17515","12.279999732971191","12.279999732971191","","1943-01-26T00:00:00Z","","0" +"NM-00227","143.49000549316406","143.49000549316406","","2006-02-16T00:00:00Z","","0" +"NM-02286","9.300000190734863","9.300000190734863","","2006-10-16T00:00:00Z","","0" +"NM-12100","56.31999969482422","56.31999969482422","","1991-03-14T00:00:00Z","","0" +"NM-13726","-28.719999313354492","-28.719999313354492","","1912-12-27T00:00:00Z","","0" +"NM-05309","9.699999809265137","9.699999809265137","","1970-11-15T00:00:00Z","","0" +"NM-21574","4.050000190734863","4.050000190734863","Z","2006-02-24T00:00:00Z","","0" +"NM-11897","54.869998931884766","54.869998931884766","","1943-01-19T00:00:00Z","","0" +"NM-00297","52.599998474121094","52.599998474121094","","1975-01-07T00:00:00Z","","0" +"NM-17716","7.230000019073486","7.230000019073486","","1940-03-08T00:00:00Z","","0" +"NM-18662","306.7300109863281","306.7300109863281","","1987-01-15T00:00:00Z","","0" +"WL-0213","96.7699966430664","95.1199951171875","","2022-11-30T00:00:00Z","0001-01-01T13:51:00Z","1.649999976158142" +"NM-27630","62.2599983215332","62.2599983215332","","1971-12-16T00:00:00Z","","0" +"NM-01948","3.9000000953674316","3.9000000953674316","","1948-08-15T00:00:00Z","","0" +"NM-22122","4.860000133514404","4.860000133514404","Z","2009-08-03T00:00:00Z","","0" +"NM-03295","21.06999969482422","21.06999969482422","","1957-02-06T00:00:00Z","","0" +"NM-25184","35","35","","1993-08-04T00:00:00Z","","0" +"NM-28010","498.5799865722656","498.5799865722656","S","2015-05-25T00:00:00Z","","0" +"NM-01409","","","F","1953-08-05T00:00:00Z","","0" +"NM-02493","36.70000076293945","36.70000076293945","","1993-02-10T00:00:00Z","","0" +"NM-12597","82.95999908447266","82.95999908447266","","1957-01-16T00:00:00Z","","0" +"NM-28259","146.55999755859375","146.55999755859375","","2021-11-05T00:00:00Z","","0" +"NM-21555","387.7900085449219","387.7900085449219","","1993-09-28T00:00:00Z","","0" +"NM-10349","50.150001525878906","50.150001525878906","","1956-01-30T00:00:00Z","","0" +"NM-09950","62.63999938964844","62.63999938964844","","1966-02-22T00:00:00Z","","0" +"AB-0208","753","753","T","1983-01-25T00:00:00Z","","" +"BC-0423","","388.6000061035156","","2021-03-07T00:00:00Z","","2.200000047683716" +"NM-03903","327.6199951171875","327.6199951171875","","1977-01-01T00:00:00Z","","0" +"WL-0086","38.04166793823242","36.28166961669922","","1995-03-23T00:00:00Z","","1.7599999904632568" +"NM-22015","25.530000686645508","25.530000686645508","R","1991-09-13T00:00:00Z","","0" +"NM-02270","21.3700008392334","21.3700008392334","","1962-07-19T00:00:00Z","","0" +"NM-20036","106.69000244140625","106.69000244140625","","1970-02-17T00:00:00Z","","0" +"NM-06855","24.950000762939453","24.950000762939453","","1966-01-06T00:00:00Z","","0" +"QU-155","153.47999572753906","152.58999633789062","","2014-03-06T00:00:00Z","","0.8899999856948853" +"NM-28020","465.6600036621094","465.6600036621094","S","2015-04-26T00:00:00Z","","0" +"NM-11592","128.88999938964844","128.88999938964844","R","1958-07-24T00:00:00Z","","0" +"NM-03229","252.0800018310547","252.0800018310547","","1995-02-22T00:00:00Z","","0" +"AB-0162","","","O","2005-04-08T00:00:00Z","","0" +"NM-12933","16.34000015258789","16.34000015258789","","1952-11-07T00:00:00Z","","0" +"WL-0086","55.91666793823242","54.15666961669922","","1997-12-10T00:00:00Z","","1.7599999904632568" +"EB-472","355.5299987792969","352.8899841308594","","2005-01-25T00:00:00Z","","2.640000104904175" +"SO-0084","241.39999389648438","241.39999389648438","","1950-05-25T00:00:00Z","","0" +"NM-14035","-61.060001373291016","-61.060001373291016","","1912-12-17T00:00:00Z","","0" +"NM-27332","47.15999984741211","47.15999984741211","R","1978-01-06T00:00:00Z","","0" +"NM-14144","5.659999847412109","5.659999847412109","","1915-07-09T00:00:00Z","","0" +"NM-19975","86.88999938964844","86.88999938964844","","1961-09-11T00:00:00Z","","0" +"NM-01985","10.800000190734863","10.800000190734863","","1963-03-15T00:00:00Z","","0" +"NM-01985","10.800000190734863","10.800000190734863","","1979-04-15T00:00:00Z","","0" +"NM-03715","67.91999816894531","67.91999816894531","","1981-01-20T00:00:00Z","","0" +"NM-22923","77.55000305175781","77.55000305175781","","1955-04-08T00:00:00Z","","0" +"NM-26028","17.739999771118164","17.739999771118164","","1989-06-14T00:00:00Z","","0" +"NM-03323","71.01000213623047","71.01000213623047","Z","1991-03-07T00:00:00Z","","0" +"EB-379","104","103.33000183105469","","2018-04-11T00:00:00Z","0001-01-01T09:11:00Z","0.6700000166893005" +"NM-09637","189.67999267578125","189.67999267578125","","1959-01-23T00:00:00Z","","0" +"NM-11929","105","105","","1994-01-14T00:00:00Z","","0" +"NM-02158","7.900000095367432","7.900000095367432","","1993-01-27T00:00:00Z","","0" +"NM-02772","158.30999755859375","158.30999755859375","","1983-06-15T00:00:00Z","","0" +"NM-28257","26.309999465942383","26.309999465942383","","1999-05-15T00:00:00Z","","0" +"SB-0442","167","167","","2010-02-20T00:00:00Z","","0" +"NM-28259","89.23999786376953","89.23999786376953","","1993-12-05T00:00:00Z","","0" +"NM-12564","29.700000762939453","29.700000762939453","","1969-01-15T00:00:00Z","","0" +"WL-0085","36.630001068115234","34.09000015258789","","2018-05-03T00:00:00Z","0001-01-01T10:12:00Z","2.5399999618530273" +"NM-01447","302.9100036621094","302.9100036621094","","1985-09-19T00:00:00Z","","0" +"NM-17716","2.190000057220459","2.190000057220459","","1944-10-17T00:00:00Z","","0" +"NM-02117","91.12000274658203","91.12000274658203","","1968-01-24T00:00:00Z","","0" +"NM-18675","103.7300033569336","103.7300033569336","","1977-01-26T00:00:00Z","","0" +"EB-263","-1.3700000047683716","-1.3700000047683716","","2016-03-14T00:00:00Z","","0" +"EB-268","-136.60000610351562","-136.60000610351562","S","1987-07-06T00:00:00Z","","0" +"NM-02209","103","103","","1961-01-01T00:00:00Z","","0" +"NM-21058","441.67999267578125","441.67999267578125","","1955-10-12T00:00:00Z","","0" +"BC-0124","110.52999877929688","110.52999877929688","","2015-09-04T00:00:00Z","","0" +"NM-03345","71.69999694824219","71.69999694824219","","1955-02-05T00:00:00Z","","0" +"NM-13014","266.3999938964844","266.3999938964844","","1958-11-18T00:00:00Z","","0" +"NM-12392","260.1499938964844","260.1499938964844","","1962-02-01T00:00:00Z","","0" +"NM-10099","166.72000122070312","166.72000122070312","","1971-04-23T00:00:00Z","","0" +"NM-27402","48.529998779296875","48.529998779296875","","1958-01-13T00:00:00Z","","0" +"SB-0676","380","380","","1982-09-28T00:00:00Z","","0" +"WL-0089","76.125","73.57499694824219","","2006-02-23T00:00:00Z","","2.549999952316284" +"NM-12606","49.279998779296875","49.279998779296875","","1945-01-20T00:00:00Z","","0" +"NM-23357","109.91000366210938","109.91000366210938","S","1946-09-03T00:00:00Z","","0" +"NM-28255","171.55999755859375","171.55999755859375","","1976-08-25T00:00:00Z","","0" +"NM-00783","18.68000030517578","18.68000030517578","","2009-09-10T00:00:00Z","","0" +"NM-13237","-6.78000020980835","-6.78000020980835","","1908-06-23T00:00:00Z","","0" +"NM-01868","8.300000190734863","8.300000190734863","","1990-02-01T00:00:00Z","","0" +"NM-06503","162.35000610351562","162.35000610351562","","1992-09-01T00:00:00Z","","0" +"NM-13262","44.900001525878906","44.900001525878906","Z","1994-03-31T00:00:00Z","","0" +"NM-06949","10","10","","1991-10-03T00:00:00Z","","0" +"NM-10088","-10.239999771118164","-10.239999771118164","","1908-06-19T00:00:00Z","","0" +"NM-14709","76.9000015258789","76.9000015258789","","1949-03-10T00:00:00Z","","0" +"NM-04404","88.19000244140625","88.19000244140625","","1951-07-31T00:00:00Z","","0" +"SB-0299","133.42999267578125","133.42999267578125","","1995-08-20T00:00:00Z","","0" +"NM-17716","0.9700000286102295","0.9700000286102295","","1942-08-14T00:00:00Z","","0" +"DE-0109","35.56999969482422","35.56999969482422","","2007-03-26T00:00:00Z","","0" +"NM-16781","41.2400016784668","41.2400016784668","","1971-01-05T00:00:00Z","","0" +"NM-01819","4.5","4.5","","1999-07-02T00:00:00Z","","0" +"EB-478","285","285","","1998-11-30T00:00:00Z","","0" +"NM-02437","80.16000366210938","80.16000366210938","","1977-02-03T00:00:00Z","","0" +"NM-00367","117.91000366210938","117.91000366210938","","1972-01-20T00:00:00Z","","0" +"NM-17716","5.769999980926514","5.769999980926514","","1948-11-29T00:00:00Z","","0" +"NM-20056","173","173","","1982-03-03T00:00:00Z","","0" +"AH-002","290.6099853515625","290.6099853515625","","2006-04-21T00:00:00Z","","0" +"NM-02642","75.41999816894531","75.41999816894531","","1959-01-21T00:00:00Z","","0" +"SB-0378","39.220001220703125","39.220001220703125","","1958-01-16T00:00:00Z","","0" +"NM-01872","16","16","","1965-05-15T00:00:00Z","","0" +"NM-14802","100.55999755859375","100.55999755859375","","1968-06-05T00:00:00Z","","0" +"NM-17289","30.610000610351562","30.610000610351562","","1947-01-16T00:00:00Z","","0" +"NM-02043","7.400000095367432","7.400000095367432","","1958-01-15T00:00:00Z","","0" +"BW-0426","24","24","","1954-04-08T00:00:00Z","","0" +"NM-05072","9.449999809265137","9.449999809265137","","1977-01-28T00:00:00Z","","0" +"EB-298","155.63999938964844","155.63999938964844","","2008-08-05T00:00:00Z","","0" +"NM-28251","72.2300033569336","72.2300033569336","","2016-02-15T00:00:00Z","","0" +"EB-261","6.930000305175781","5.130000114440918","","2010-07-14T00:00:00Z","","1.7999999523162842" +"NM-03345","82.30999755859375","82.30999755859375","","1957-09-04T00:00:00Z","","0" +"NM-13497","161.22999572753906","161.22999572753906","","1972-06-20T00:00:00Z","","0" +"NM-14802","97.30000305175781","97.30000305175781","","1966-01-01T00:00:00Z","","0" +"NM-28259","85.45999908447266","85.45999908447266","","1970-01-25T00:00:00Z","","0" +"NM-12898","24.56999969482422","24.56999969482422","","1981-03-04T00:00:00Z","","0" +"NM-10331","589.0800170898438","589.0800170898438","","1966-01-01T00:00:00Z","","0" +"DE-0179","","","D","2015-11-24T00:00:00Z","","0" +"NM-01438","1156.93994140625","1156.93994140625","","2006-02-15T00:00:00Z","","0" +"NM-03428","6.03000020980835","6.03000020980835","Z","1998-10-29T00:00:00Z","","0" +"NM-13506","-54.130001068115234","-54.130001068115234","","1910-10-10T00:00:00Z","","0" +"NM-02043","7.699999809265137","7.699999809265137","","1956-04-15T00:00:00Z","","0" +"NM-13006","-39.119998931884766","-39.119998931884766","","1910-03-19T00:00:00Z","","0" +"NM-12024","33.79999923706055","33.79999923706055","","1948-01-15T00:00:00Z","","0" +"NM-12477","13.420000076293945","13.420000076293945","","1959-02-05T00:00:00Z","","0" +"NM-01839","6.599999904632568","6.599999904632568","","2003-01-15T00:00:00Z","","0" +"NM-03378","34.7400016784668","34.7400016784668","","1964-08-31T00:00:00Z","","0" +"NM-01985","8.600000381469727","8.600000381469727","","1947-11-15T00:00:00Z","","0" +"NM-03285","49.33000183105469","49.33000183105469","","1988-01-28T00:00:00Z","","0" +"NM-08294","246.97000122070312","246.97000122070312","Z","1986-06-04T00:00:00Z","","0" +"NM-00644","131.39999389648438","131.39999389648438","","1966-06-01T00:00:00Z","","0" +"AB-0124","547.9199829101562","547.9199829101562","","2001-10-25T00:00:00Z","","" +"NM-13778","-9.65999984741211","-9.65999984741211","","1906-03-03T00:00:00Z","","0" +"NM-08524","10.699999809265137","10.699999809265137","","1958-11-15T00:00:00Z","","0" +"NM-10635","30.43000030517578","30.43000030517578","","1954-07-15T00:00:00Z","","0" +"EB-486","458.8500061035156","458.8500061035156","Z","2006-11-30T00:00:00Z","","0" +"NM-00385","38.84000015258789","38.84000015258789","","1943-11-30T00:00:00Z","","0" +"NM-00491","45.59000015258789","45.59000015258789","","1957-01-24T00:00:00Z","","0" +"NM-05521","80.0999984741211","80.0999984741211","","1941-07-09T00:00:00Z","","0" +"NM-02256","8.300000190734863","8.300000190734863","","1973-11-15T00:00:00Z","","0" +"NM-03462","155.8800048828125","155.8800048828125","","1973-05-01T00:00:00Z","","0" +"NM-03431","475.5400085449219","475.5400085449219","","1997-06-19T00:00:00Z","","0" +"NM-00962","343.0899963378906","343.0899963378906","","2008-03-13T00:00:00Z","","0" +"NM-14105","-35.650001525878906","-35.650001525878906","","1906-06-23T00:00:00Z","","0" +"NM-02704","82.58999633789062","82.58999633789062","","2006-01-26T00:00:00Z","","0" +"NM-02823","471.55999755859375","471.55999755859375","","2013-05-08T00:00:00Z","","0" +"NM-02017","6.199999809265137","6.199999809265137","","1986-08-15T00:00:00Z","","0" +"NM-02597","84.54000091552734","84.54000091552734","","2015-01-21T00:00:00Z","","0" +"NM-00294","10.119999885559082","10.119999885559082","","1964-01-09T00:00:00Z","","0" +"NM-03483","89.52999877929688","89.52999877929688","","1983-01-18T00:00:00Z","","0" +"NM-14325","43.650001525878906","43.650001525878906","","2006-01-12T00:00:00Z","","0" +"DE-0290","81.31999969482422","81.31999969482422","","2016-12-06T00:00:00Z","","0" +"NM-02025","215.61000061035156","215.61000061035156","","1994-02-07T00:00:00Z","","0" +"NM-26135","61.5","61.5","","1986-01-28T00:00:00Z","","0" +"NM-02248","24.760000228881836","24.760000228881836","","1972-08-09T00:00:00Z","","0" +"NM-00308","60.540000915527344","60.540000915527344","","2007-01-12T00:00:00Z","","0" +"SB-0056","91.55000305175781","91.55000305175781","","1994-02-08T00:00:00Z","","0" +"NM-02717","37.91999816894531","37.91999816894531","","1948-07-16T00:00:00Z","","0" +"MG-038","107.4800033569336","106.05000305175781","","2016-05-03T00:00:00Z","","1.4299999475479126" +"EB-416","286","286","Z","1999-08-31T00:00:00Z","","0" +"NM-08842","27.760000228881836","27.760000228881836","","1946-11-25T00:00:00Z","","0" +"NM-02225","195.39999389648438","195.39999389648438","P","1961-08-14T00:00:00Z","","0" +"NM-02632","5.800000190734863","5.800000190734863","","1949-01-06T00:00:00Z","","0" +"NM-19574","432.8500061035156","432.8500061035156","","1986-01-10T00:00:00Z","","0" +"NM-13741","312.45001220703125","312.45001220703125","","1947-04-22T00:00:00Z","","0" +"NM-02446","313.5","313.5","","1986-01-23T00:00:00Z","","0" +"BC-0218","21.719999313354492","21.719999313354492","","2016-03-10T00:00:00Z","","0" +"NM-18214","3.890000104904175","3.890000104904175","","2008-03-15T00:00:00Z","","0" +"AB-0214","154.94000244140625","154.94000244140625","","2000-02-07T00:00:00Z","","" +"NM-14802","107.4800033569336","107.4800033569336","","1983-09-15T00:00:00Z","","0" +"NM-11631","73.20999908447266","73.20999908447266","","1946-01-20T00:00:00Z","","0" +"NM-19852","47.310001373291016","47.310001373291016","","1942-11-19T00:00:00Z","","0" +"NM-01530","","","O","2007-08-01T00:00:00Z","","0" +"EB-276","356","356","P","2000-04-30T00:00:00Z","","0" +"NM-06032","85.4000015258789","85.4000015258789","","1980-01-10T00:00:00Z","","0" +"AB-0209","523.739990234375","523.739990234375","","2013-11-12T00:00:00Z","","" +"SB-0299","106.76000213623047","106.76000213623047","","1968-11-25T00:00:00Z","","0" +"NM-13839","-5.039999961853027","-5.039999961853027","","1906-06-18T00:00:00Z","","0" +"NM-17716","-1.1399999856948853","-1.1399999856948853","","1942-03-24T00:00:00Z","","0" +"NM-02968","38.29999923706055","38.29999923706055","","2010-01-11T00:00:00Z","","0" +"NM-00216","77.6500015258789","77.6500015258789","","2003-02-11T00:00:00Z","","0" +"NM-00958","22.799999237060547","22.799999237060547","","2011-04-17T00:00:00Z","","0" +"NM-26751","195.5","195.5","","1974-08-02T00:00:00Z","","0" +"QU-159","51.47999954223633","56.56999969482422","","2013-06-20T00:00:00Z","","-5.090000152587891" +"AB-0136","18.31999969482422","18.31999969482422","","1992-03-26T00:00:00Z","","0" +"NM-03480","130.14999389648438","130.14999389648438","","1988-01-13T00:00:00Z","","0" +"NM-13101","56.02000045776367","56.02000045776367","","1981-02-13T00:00:00Z","","0" +"NM-02799","19.25","19.25","","1977-01-14T00:00:00Z","","0" +"NM-10063","8.920000076293945","8.920000076293945","","1970-04-01T00:00:00Z","","0" +"NM-00305","69.66000366210938","69.66000366210938","","1996-08-27T00:00:00Z","","0" +"NM-00488","111.58999633789062","111.58999633789062","","2009-12-16T00:00:00Z","","0" +"QY-0720","164.5","164.5","","1955-08-17T00:00:00Z","","0" +"NM-02232","109.13999938964844","109.13999938964844","","1968-01-24T00:00:00Z","","0" +"NM-02248","23.200000762939453","23.200000762939453","","1983-08-16T00:00:00Z","","0" +"NM-03010","","","D","2005-02-15T00:00:00Z","","0" +"AB-0068","159.39999389648438","159.39999389648438","","2014-10-06T00:00:00Z","","" +"NM-00525","49.130001068115234","49.130001068115234","","1951-01-17T00:00:00Z","","0" +"NM-02176","138.5800018310547","138.5800018310547","","1955-09-11T00:00:00Z","","0" +"NM-12281","-46.20000076293945","-46.20000076293945","","1909-09-28T00:00:00Z","","0" +"NM-28254","149.75","149.75","","1978-07-25T00:00:00Z","","0" +"NM-27281","46.189998626708984","46.189998626708984","","1970-01-22T00:00:00Z","","0" +"NM-01985","7.300000190734863","7.300000190734863","","1982-08-15T00:00:00Z","","0" +"DE-0232","108.05999755859375","108.05999755859375","","2007-03-05T00:00:00Z","","0" +"NM-28258","181.77999877929688","181.77999877929688","","1972-04-05T00:00:00Z","","0" +"NM-03394","23.239999771118164","23.239999771118164","","1995-01-24T00:00:00Z","","0" +"NM-02136","11.600000381469727","11.600000381469727","","1997-02-22T00:00:00Z","","0" +"NM-28257","60.400001525878906","60.400001525878906","","1983-05-05T00:00:00Z","","0" +"NM-11710","1.8700000047683716","1.8700000047683716","","1952-03-13T00:00:00Z","","0" +"NM-03657","","","O","2001-02-21T00:00:00Z","","0" +"NM-10063","8.850000381469727","8.850000381469727","","1973-11-15T00:00:00Z","","0" +"NM-02260","36.47999954223633","36.47999954223633","","1957-04-06T00:00:00Z","","0" +"NM-04925","38.90999984741211","38.90999984741211","","1956-01-19T00:00:00Z","","0" +"DE-0304","44.52000045776367","44.52000045776367","","2009-04-14T00:00:00Z","","0" +"NM-06392","112.58000183105469","112.58000183105469","","1956-01-06T00:00:00Z","","0" +"NM-03392","149.99000549316406","149.99000549316406","Z","1991-09-03T00:00:00Z","","0" +"NM-11088","26.40999984741211","26.40999984741211","","1937-06-10T00:00:00Z","","0" +"NM-01037","209.4199981689453","209.4199981689453","","1962-01-02T00:00:00Z","","0" +"NM-02535","11.1899995803833","11.1899995803833","","2001-01-05T00:00:00Z","","0" +"NM-10830","56.22999954223633","56.22999954223633","","1981-01-21T00:00:00Z","","0" +"NM-12392","258.32000732421875","258.32000732421875","","1960-12-01T00:00:00Z","","0" +"NM-13990","5.650000095367432","5.650000095367432","","1941-02-21T00:00:00Z","","0" +"NM-17716","3.640000104904175","3.640000104904175","","1945-08-12T00:00:00Z","","0" +"EB-435","108.91000366210938","107.41000366210938","","2004-09-06T00:00:00Z","","1.5" +"NM-28017","486.989990234375","486.989990234375","S","2015-03-22T00:00:00Z","","0" +"SO-0159","10","9.119999885559082","","2021-02-17T00:00:00Z","0001-01-01T14:20:00Z","0.8799999952316284" +"NM-00075","35","35","","1955-01-18T00:00:00Z","","0" +"NM-04787","74.2699966430664","74.2699966430664","","1954-05-22T00:00:00Z","","0" +"NM-13430","-8.510000228881836","-8.510000228881836","","1910-05-24T00:00:00Z","","0" +"NM-02620","7.800000190734863","7.800000190734863","","1986-04-15T00:00:00Z","","0" +"NM-25463","110.16000366210938","110.16000366210938","","1967-02-06T00:00:00Z","","0" +"UC-0033","96.97000122070312","96.97000122070312","","1994-01-20T00:00:00Z","","0" +"NM-11306","71.06999969482422","71.06999969482422","","1976-03-12T00:00:00Z","","0" +"NM-02626","14.25","14.25","","1978-01-16T00:00:00Z","","0" +"NM-05309","12.800000190734863","12.800000190734863","","1964-05-15T00:00:00Z","","0" +"NM-09058","97.94000244140625","97.94000244140625","","1982-01-06T00:00:00Z","","0" +"NM-03483","92.66999816894531","92.66999816894531","","1970-04-09T00:00:00Z","","0" +"NM-07037","71.29000091552734","71.29000091552734","","2003-05-19T00:00:00Z","","0" +"NM-10566","90.88999938964844","90.88999938964844","","1961-08-01T00:00:00Z","","0" +"NM-28256","74.05999755859375","74.05999755859375","","2001-01-05T00:00:00Z","","0" +"NM-17689","5.929999828338623","5.929999828338623","","1982-12-16T00:00:00Z","","0" +"NM-11828","95.91999816894531","95.91999816894531","","1951-01-23T00:00:00Z","","0" +"NM-12895","31.290000915527344","31.290000915527344","","1990-12-11T00:00:00Z","","0" +"NM-08025","22.440000534057617","22.440000534057617","","1976-02-12T00:00:00Z","","0" +"NM-04581","171.60000610351562","171.60000610351562","P","1962-04-20T00:00:00Z","","0" +"NM-21723","28.989999771118164","28.989999771118164","","2012-04-09T00:00:00Z","","0" +"NM-28254","55.119998931884766","55.119998931884766","","1950-05-05T00:00:00Z","","0" +"NM-02287","5.179999828338623","5.179999828338623","","1998-03-04T00:00:00Z","","0" +"AB-0200","195.1999969482422","195.1999969482422","","2004-02-17T00:00:00Z","","" +"NM-01037","209.67999267578125","209.67999267578125","","1961-01-03T00:00:00Z","","0" +"EB-490","332.19000244140625","327.8900146484375","Z","2005-06-30T00:00:00Z","","4.300000190734863" +"NM-21819","22.530000686645508","22.530000686645508","","1962-08-14T00:00:00Z","","0" +"NM-01540","54.029998779296875","54.029998779296875","","1980-01-31T00:00:00Z","","0" +"NM-21061","27.75","27.75","R","1990-10-11T00:00:00Z","","0" +"NM-09206","201.4600067138672","201.4600067138672","R","1963-10-01T00:00:00Z","","0" +"NM-03903","329.2699890136719","329.2699890136719","","1974-10-04T00:00:00Z","","0" +"NM-26714","60.54999923706055","60.54999923706055","","1956-02-22T00:00:00Z","","0" +"NM-03401","11.760000228881836","11.760000228881836","","2002-06-06T00:00:00Z","","0" +"NM-17030","35.70000076293945","35.70000076293945","","1951-01-13T00:00:00Z","","0" +"NM-07219","387.6000061035156","387.6000061035156","","2009-03-30T00:00:00Z","","0" +"EB-148","274.2900085449219","272.4900207519531","","2003-01-09T00:00:00Z","","1.7999999523162842" +"NM-00647","96.83999633789062","96.83999633789062","","1996-01-04T00:00:00Z","","0" +"NM-02814","397.5299987792969","397.5299987792969","","2006-01-12T00:00:00Z","","0" +"NM-28252","40.59000015258789","40.59000015258789","","2005-12-23T00:00:00Z","","0" +"NM-14265","423.1300048828125","423.1300048828125","","1957-11-01T00:00:00Z","","0" +"NM-00673","103.19999694824219","103.19999694824219","","2002-08-05T00:00:00Z","","0" +"NM-00644","54.369998931884766","54.369998931884766","","1976-02-01T00:00:00Z","","0" +"NM-02209","111","111","","1965-05-01T00:00:00Z","","0" +"NM-10745","63.66999816894531","63.66999816894531","","1974-01-08T00:00:00Z","","0" +"NM-06030","57.130001068115234","57.130001068115234","","2016-06-20T00:00:00Z","","0" +"BC-0178","396.75","396.75","","2014-06-10T00:00:00Z","","0" +"NM-20061","58.939998626708984","58.939998626708984","","1965-02-15T00:00:00Z","","0" +"NM-02991","69.80000305175781","69.80000305175781","S","1991-09-16T00:00:00Z","","0" +"EB-276","168.4199981689453","168.4199981689453","","1969-03-31T00:00:00Z","","0" +"AB-0002","423.2300109863281","423.2300109863281","","2003-03-11T00:00:00Z","","" +"NM-17593","28.75","28.75","","1935-06-16T00:00:00Z","","0" +"NM-15141","172.8300018310547","172.8300018310547","","1980-01-08T00:00:00Z","","0" +"NM-28011","494.4200134277344","494.4200134277344","S","2015-06-01T00:00:00Z","","0" +"SV-0132","128.8000030517578","126.80000305175781","","2019-05-11T00:00:00Z","","2" +"NM-00498","63.119998931884766","63.119998931884766","","1985-04-01T00:00:00Z","","0" +"NM-01891","63.97999954223633","63.97999954223633","","1998-01-20T00:00:00Z","","0" +"NM-10641","18.719999313354492","18.719999313354492","R","1956-01-24T00:00:00Z","","0" +"NM-02592","48.22999954223633","48.22999954223633","","1970-01-06T00:00:00Z","","0" +"NM-21113","38.04999923706055","38.04999923706055","","1957-02-07T00:00:00Z","","0" +"NM-02535","9.970000267028809","9.970000267028809","","1976-08-25T00:00:00Z","","0" +"NM-13594","20.899999618530273","20.899999618530273","","1970-02-10T00:00:00Z","","0" +"NM-06433","118.87999725341797","118.87999725341797","","1973-03-16T00:00:00Z","","0" +"SV-0084","592.7999877929688","591.219970703125","","2016-10-22T00:00:00Z","","1.5800000429153442" +"NM-23336","111.56999969482422","111.56999969482422","","1955-06-15T00:00:00Z","","0" +"NM-06676","9","9","","1976-09-15T00:00:00Z","","0" +"NM-25415","320","320","","1992-11-21T00:00:00Z","","0" +"NM-07170","144","144","","1976-12-16T00:00:00Z","","0" +"NM-27264","68.22000122070312","68.22000122070312","","1978-01-23T00:00:00Z","","0" +"NM-00319","67.22000122070312","67.22000122070312","","1996-02-28T00:00:00Z","","0" +"NM-00143","131.30999755859375","131.30999755859375","","2018-01-27T00:00:00Z","","0" +"NM-17452","53.619998931884766","53.619998931884766","","1947-11-19T00:00:00Z","","0" +"NM-02794","45.939998626708984","45.939998626708984","","1944-11-19T00:00:00Z","","0" +"NM-03149","24.09000015258789","24.09000015258789","","1990-04-11T00:00:00Z","","0" +"AB-0076","7.190000057220459","7.190000057220459","","2004-05-20T00:00:00Z","","" +"NM-08714","35.34000015258789","35.34000015258789","","1946-01-31T00:00:00Z","","0" +"NM-12339","28.040000915527344","28.040000915527344","","1939-07-31T00:00:00Z","","0" +"NM-01895","60.72999954223633","60.72999954223633","","2015-01-20T00:00:00Z","","0" +"NM-13135","5.070000171661377","5.070000171661377","","1978-06-26T00:00:00Z","","0" +"NM-21977","138.27999877929688","138.27999877929688","","1995-01-09T00:00:00Z","","0" +"NM-01575","85.16000366210938","85.16000366210938","","2004-03-08T00:00:00Z","","0" +"NM-12815","91.54000091552734","91.54000091552734","R","1971-03-31T00:00:00Z","","0" +"NM-02688","327.25","327.25","","1980-01-10T00:00:00Z","","0" +"NM-13894","-26.40999984741211","-26.40999984741211","","1915-01-06T00:00:00Z","","0" +"NM-08529","76.5","76.5","","1976-02-17T00:00:00Z","","0" +"NM-12912","40.86000061035156","40.86000061035156","","1971-03-25T00:00:00Z","","0" +"NM-02560","118.41999816894531","118.41999816894531","","1977-12-01T00:00:00Z","","0" +"NM-02849","104.98999786376953","104.98999786376953","","1967-01-20T00:00:00Z","","0" +"NM-11779","188.3300018310547","188.3300018310547","","1966-02-16T00:00:00Z","","0" +"SB-0231","112","112","","1964-01-23T00:00:00Z","","0" +"NM-16070","36.290000915527344","36.290000915527344","","1977-06-22T00:00:00Z","","0" +"NM-21364","300","300","","1978-02-25T00:00:00Z","","0" +"DE-0129","38.900001525878906","38.900001525878906","","2011-09-14T00:00:00Z","","0" +"NM-00476","54.939998626708984","54.939998626708984","","1996-01-26T00:00:00Z","","0" +"NM-23723","369.1199951171875","369.1199951171875","","1986-01-15T00:00:00Z","","0" +"WL-0308","24.200000762939453","22.68000030517578","","2022-09-02T00:00:00Z","0001-01-01T12:03:00Z","1.5199999809265137" +"NM-12161","142.74000549316406","142.74000549316406","","1968-01-04T00:00:00Z","","0" +"SB-0299","117.43000030517578","117.43000030517578","","1999-03-10T00:00:00Z","","0" +"NM-02493","68.56999969482422","68.56999969482422","","1975-03-12T00:00:00Z","","0" +"NM-26728","132.89999389648438","132.89999389648438","","1958-05-06T00:00:00Z","","0" +"NM-01948","4","4","","1997-08-15T00:00:00Z","","0" +"NM-00638","34.36000061035156","34.36000061035156","","1998-01-08T00:00:00Z","","0" +"NM-23252","285","285","","1984-05-01T00:00:00Z","","0" +"NM-19959","39.33000183105469","39.33000183105469","","1949-01-14T00:00:00Z","","0" +"NM-20164","50.5","50.5","","1952-03-28T00:00:00Z","","0" +"NM-08632","98.6500015258789","98.6500015258789","","1973-03-19T00:00:00Z","","0" +"NM-00644","123.79000091552734","123.79000091552734","","1983-09-01T00:00:00Z","","0" +"DE-0058","88.75","86.13999938964844","","1997-10-13T00:00:00Z","","2.609999895095825" +"NM-07401","149.27000427246094","149.27000427246094","","1982-02-12T00:00:00Z","","0" +"NM-03719","69.38999938964844","69.38999938964844","","1975-01-20T00:00:00Z","","0" +"NM-08524","13.800000190734863","13.800000190734863","","1965-11-15T00:00:00Z","","0" +"NM-02996","55.66999816894531","55.66999816894531","","1994-01-05T00:00:00Z","","0" +"NM-10278","64.0999984741211","64.0999984741211","","1966-02-10T00:00:00Z","","0" +"NM-03026","190.50999450683594","190.50999450683594","","1990-01-11T00:00:00Z","","0" +"QY-0619","34.29999923706055","34.29999923706055","","1941-01-28T00:00:00Z","","0" +"NM-00367","119.87000274658203","119.87000274658203","","1988-07-21T00:00:00Z","","0" +"NM-00185","13.199999809265137","13.199999809265137","","1959-07-15T00:00:00Z","","0" +"NM-01923","10.239999771118164","10.239999771118164","","1983-01-13T00:00:00Z","","0" +"NM-06344","138.47999572753906","138.47999572753906","","1944-03-29T00:00:00Z","","0" +"SB-0299","133.7899932861328","133.7899932861328","","2015-02-10T00:00:00Z","","0" +"NM-04606","101.69000244140625","101.69000244140625","","1974-01-07T00:00:00Z","","0" +"NM-20389","81.38999938964844","81.38999938964844","","1948-11-23T00:00:00Z","","0" +"NM-01808","331.79998779296875","331.79998779296875","","2012-06-25T00:00:00Z","","0" +"NM-10191","38.130001068115234","38.130001068115234","","1994-01-26T00:00:00Z","","0" +"NM-22188","438.3999938964844","438.3999938964844","","2007-04-10T00:00:00Z","","0" +"SB-0348","161.47999572753906","161.47999572753906","","2019-02-05T00:00:00Z","","0" +"NM-28257","12.050000190734863","12.050000190734863","","2022-02-15T00:00:00Z","","0" +"NM-22853","18.579999923706055","18.579999923706055","","1993-01-20T00:00:00Z","","0" +"NM-11919","2.7200000286102295","2.7200000286102295","","1953-11-09T00:00:00Z","","0" +"NM-00915","200.5500030517578","200.5500030517578","","1983-01-10T00:00:00Z","","0" +"NM-18374","125.41999816894531","125.41999816894531","R","1965-07-30T00:00:00Z","","0" +"NM-28256","208.88999938964844","208.88999938964844","","1997-05-25T00:00:00Z","","0" +"NM-03672","234.39999389648438","234.39999389648438","R","1958-05-06T00:00:00Z","","0" +"DE-0058","89.05000305175781","86.44000244140625","","2001-10-29T00:00:00Z","","2.609999895095825" +"NM-14051","-10.239999771118164","-10.239999771118164","","1912-05-18T00:00:00Z","","0" +"NM-03682","22.25","22.25","","2006-02-22T00:00:00Z","","0" +"NM-13560","1.399999976158142","1.399999976158142","","1958-04-21T00:00:00Z","","0" +"NM-08246","20.899999618530273","20.899999618530273","","1946-07-26T00:00:00Z","","0" +"NM-13717","9.550000190734863","9.550000190734863","","1946-09-04T00:00:00Z","","0" +"NM-02622","172.0500030517578","172.0500030517578","","2001-01-03T00:00:00Z","","0" +"NM-03484","5.210000038146973","5.210000038146973","","1993-02-01T00:00:00Z","","0" +"WL-0088","75.54166412353516","72.94166564941406","","2006-02-01T00:00:00Z","","2.5999999046325684" +"NM-02332","109.41000366210938","109.41000366210938","","1973-03-21T00:00:00Z","","0" +"NM-02222","93.26000213623047","93.26000213623047","","1974-01-18T00:00:00Z","","0" +"NM-02548","37.70000076293945","37.70000076293945","","1953-01-07T00:00:00Z","","0" +"NM-18584","48.04999923706055","48.04999923706055","","1982-11-23T00:00:00Z","","0" +"DE-0181","52.599998474121094","52.599998474121094","","2016-02-25T00:00:00Z","","0" +"NM-02280","21.700000762939453","21.700000762939453","","2001-07-24T00:00:00Z","","0" +"NM-16575","35.31999969482422","35.31999969482422","","1972-01-04T00:00:00Z","","0" +"NM-25300","157.67999267578125","157.67999267578125","","1968-07-02T00:00:00Z","","0" +"NM-17716","5.190000057220459","5.190000057220459","","1950-12-15T00:00:00Z","","0" +"NM-24842","177.67999267578125","177.67999267578125","","1978-01-11T00:00:00Z","","0" +"NM-01896","9.0600004196167","9.0600004196167","","2009-09-03T00:00:00Z","","0" +"NM-21146","51.77000045776367","51.77000045776367","","1960-02-15T00:00:00Z","","0" +"NM-13717","8","8","","1946-05-14T00:00:00Z","","0" +"NM-20404","9.520000457763672","9.520000457763672","","1965-11-18T00:00:00Z","","0" +"NM-08416","-59.90999984741211","-59.90999984741211","","1908-01-04T00:00:00Z","","0" +"NM-06794","9.890000343322754","9.890000343322754","","1970-01-06T00:00:00Z","","0" +"NM-03385","38.16999816894531","38.16999816894531","","1989-11-29T00:00:00Z","","0" +"NM-28259","92.9000015258789","92.9000015258789","","1981-01-05T00:00:00Z","","0" +"NM-01897","11.770000457763672","11.770000457763672","","2008-10-07T00:00:00Z","","0" +"NM-19233","29.190000534057617","29.190000534057617","P","1965-07-21T00:00:00Z","","0" +"BC-0410","","250.66000366210938","","2023-03-14T00:00:00Z","","0" +"NM-01891","46.40999984741211","46.40999984741211","","1990-03-19T00:00:00Z","","0" +"NM-00944","302.92999267578125","302.92999267578125","","2011-04-23T00:00:00Z","","0" +"EB-696","93.98999786376953","91.47999572753906","","2016-04-05T00:00:00Z","","2.509999990463257" +"NM-28253","30.139999389648438","30.139999389648438","","1982-11-15T00:00:00Z","","0" +"NM-00645","31.549999237060547","31.549999237060547","","1986-01-06T00:00:00Z","","0" +"BC-0257","178.52000427246094","178.52000427246094","","2016-06-08T00:00:00Z","","0" +"SB-0299","146.02000427246094","146.02000427246094","","2009-09-15T00:00:00Z","","0" +"NM-03390","28.829999923706055","28.829999923706055","","1993-12-09T00:00:00Z","","0" +"NM-02487","10.899999618530273","10.899999618530273","","1981-05-15T00:00:00Z","","0" +"AB-0195","545.77001953125","545.77001953125","Z","1998-02-23T00:00:00Z","","" +"NM-28258","124.75","124.75","","1985-11-25T00:00:00Z","","0" +"NM-13717","9.359999656677246","9.359999656677246","","1947-03-15T00:00:00Z","","0" +"NM-04020","109.97000122070312","109.97000122070312","","1959-04-21T00:00:00Z","","0" +"NM-03289","148.4600067138672","148.4600067138672","","1986-02-04T00:00:00Z","","0" +"NM-09271","169.02999877929688","169.02999877929688","","2004-01-28T00:00:00Z","","0" +"NM-10143","33.63999938964844","33.63999938964844","","1934-07-19T00:00:00Z","","0" +"TC-259","60.119998931884766","60.119998931884766","","1982-01-22T00:00:00Z","","0" +"NM-02162","107.2300033569336","107.2300033569336","","1967-01-23T00:00:00Z","","0" +"NM-02456","59.84000015258789","59.84000015258789","","1967-02-02T00:00:00Z","","0" +"NM-20576","66.62000274658203","66.62000274658203","","1950-07-28T00:00:00Z","","0" +"NM-02029","16.479999542236328","16.479999542236328","","2016-02-03T00:00:00Z","","0" +"NM-00214","61.63999938964844","61.63999938964844","R","1970-12-01T00:00:00Z","","0" +"NM-13017","13.800000190734863","13.800000190734863","","1958-12-02T00:00:00Z","","0" +"BC-0104","","100.5","","2021-11-06T00:00:00Z","","0.6399999856948853" +"NM-17415","23.1299991607666","23.1299991607666","","1936-01-09T00:00:00Z","","0" +"NM-23483","10.319999694824219","10.319999694824219","","1960-02-03T00:00:00Z","","0" +"WL-0086","52.04166793823242","50.28166961669922","","1990-04-09T00:00:00Z","","1.7599999904632568" +"NM-02768","113.44000244140625","113.44000244140625","","1963-07-23T00:00:00Z","","0" +"SB-0288","108.83000183105469","108.83000183105469","","1962-04-25T00:00:00Z","","0" +"NM-05252","3.4000000953674316","3.4000000953674316","","1951-01-17T00:00:00Z","","0" +"NM-06272","27.420000076293945","27.420000076293945","","1991-04-25T00:00:00Z","","0" +"SM-0056","319.70001220703125","318.95001220703125","","2007-08-23T00:00:00Z","","0.75" +"DE-0200","52.119998931884766","52.119998931884766","","2006-12-14T00:00:00Z","","0" +"NM-22612","71.4000015258789","71.4000015258789","","1962-06-19T00:00:00Z","","0" +"NM-05773","15.09000015258789","15.09000015258789","","1950-01-17T00:00:00Z","","0" +"NM-01985","7.699999809265137","7.699999809265137","","1974-08-15T00:00:00Z","","0" +"NM-26419","2.359999895095825","2.359999895095825","","1986-06-02T00:00:00Z","","0" +"NM-10931","53.45000076293945","53.45000076293945","P","1963-07-23T00:00:00Z","","0" +"NM-03336","10.0600004196167","10.0600004196167","","1990-01-05T00:00:00Z","","0" +"NM-02071","19.600000381469727","19.600000381469727","","1966-02-28T00:00:00Z","","0" +"NM-02101","6.5","6.5","","1959-04-15T00:00:00Z","","0" +"NM-11339","5.690000057220459","5.690000057220459","","1977-01-20T00:00:00Z","","0" +"NM-20330","29.229999542236328","29.229999542236328","","1965-10-26T00:00:00Z","","0" +"QU-056","134.66000366210938","133.66000366210938","","2013-02-15T00:00:00Z","","1" +"NM-01866","12.199999809265137","12.199999809265137","","2008-02-13T00:00:00Z","","0" +"QU-106","15.140000343322754","18.260000228881836","","2015-06-02T00:00:00Z","","-3.119999885559082" +"NM-27458","133.5800018310547","133.5800018310547","","2005-01-18T00:00:00Z","","0" +"NM-02772","137.47999572753906","137.47999572753906","","1989-05-24T00:00:00Z","","0" +"NM-02772","144.10000610351562","144.10000610351562","","1992-07-25T00:00:00Z","","0" +"NM-01224","37.77000045776367","37.77000045776367","","1983-02-02T00:00:00Z","","0" +"NM-05516","10.899999618530273","10.899999618530273","","1952-07-15T00:00:00Z","","0" +"SB-0299","141.5800018310547","141.5800018310547","","2020-04-05T00:00:00Z","","0" +"NM-00609","97.94000244140625","97.94000244140625","","2003-01-03T00:00:00Z","","0" +"NM-06027","66.4000015258789","66.4000015258789","","1951-01-04T00:00:00Z","","0" +"NM-04205","44.66999816894531","44.66999816894531","","1972-04-12T00:00:00Z","","0" +"NM-14174","26.450000762939453","26.450000762939453","","1956-01-10T00:00:00Z","","0" +"NM-17154","32.310001373291016","32.310001373291016","","1962-01-23T00:00:00Z","","0" +"NM-02620","12.100000381469727","12.100000381469727","","1981-05-15T00:00:00Z","","0" +"NM-10058","8.710000038146973","8.710000038146973","","1970-07-15T00:00:00Z","","0" +"NM-03974","178.8699951171875","178.8699951171875","","1982-01-12T00:00:00Z","","0" +"NM-28251","75.33000183105469","75.33000183105469","","2006-08-04T00:00:00Z","","0" +"AB-0065","166","166","","2000-06-16T00:00:00Z","","" +"NM-12330","100.4000015258789","100.4000015258789","","1961-01-10T00:00:00Z","","0" +"NM-01832","54.63999938964844","54.63999938964844","","1985-01-23T00:00:00Z","","0" +"BC-0024","68.13999938964844","68.13999938964844","","2015-03-06T00:00:00Z","","0" +"EB-484","626.75","626.1500244140625","P","2005-03-31T00:00:00Z","","0.6000000238418579" +"NM-13388","-8.319999694824219","-8.319999694824219","","1911-10-09T00:00:00Z","","0" +"NM-01796","5.900000095367432","5.900000095367432","","1968-01-15T00:00:00Z","","0" +"NM-06268","17.399999618530273","17.399999618530273","","1959-02-15T00:00:00Z","","0" +"NM-02669","51.959999084472656","51.959999084472656","","1970-03-01T00:00:00Z","","0" +"NM-01314","375.1099853515625","375.1099853515625","","2010-03-10T00:00:00Z","","0" +"DE-0121","31.389999389648438","31.389999389648438","","2005-12-06T00:00:00Z","","0" +"NM-07512","21.100000381469727","21.100000381469727","","1958-01-30T00:00:00Z","","0" +"NM-01868","8.600000381469727","8.600000381469727","","1990-04-15T00:00:00Z","","0" +"NM-11909","34.95000076293945","34.95000076293945","","1932-09-21T00:00:00Z","","0" +"UC-0102","91","91","","2010-01-08T00:00:00Z","","0" +"NM-28021","501.9800109863281","501.9800109863281","S","2015-04-17T00:00:00Z","","0" +"WL-0039","560.0999755859375","559","","2022-11-03T00:00:00Z","0001-01-01T11:50:00Z","1.100000023841858" +"NM-13843","-9.65999984741211","-9.65999984741211","","1908-06-25T00:00:00Z","","0" +"NM-21923","9.59000015258789","9.59000015258789","","1984-10-26T00:00:00Z","","0" +"NM-17533","29.3799991607666","29.3799991607666","R","1974-05-30T00:00:00Z","","0" +"NM-25994","208.33999633789062","208.33999633789062","","1974-02-07T00:00:00Z","","0" +"NM-28257","-2.309999942779541","-2.309999942779541","","2017-12-05T00:00:00Z","","0" +"NM-28011","493.239990234375","493.239990234375","S","2015-06-02T00:00:00Z","","0" +"NM-02658","234.8300018310547","234.8300018310547","","1953-07-24T00:00:00Z","","0" +"NM-13516","-72.61000061035156","-72.61000061035156","","1912-05-23T00:00:00Z","","0" +"NM-21670","550.97998046875","550.97998046875","","2011-12-12T00:00:00Z","","0" +"BW-0309","64.2699966430664","64.2699966430664","","1966-01-13T00:00:00Z","","0" +"NM-13742","-65.68000030517578","-65.68000030517578","","1907-09-18T00:00:00Z","","0" +"NM-16226","26.8700008392334","26.8700008392334","","1978-07-12T00:00:00Z","","0" +"NM-13887","3.6500000953674316","3.6500000953674316","","1960-05-18T00:00:00Z","","0" +"NM-14423","20.1299991607666","20.1299991607666","","1994-01-27T00:00:00Z","","0" +"NM-06595","75.61000061035156","75.61000061035156","","1950-07-18T00:00:00Z","","0" +"NM-00803","32","32","","1988-08-12T00:00:00Z","","0" +"NM-03349","41.95000076293945","41.95000076293945","","2003-07-15T00:00:00Z","","0" +"NM-11942","2.7200000286102295","2.7200000286102295","","1956-01-23T00:00:00Z","","0" +"NM-17716","4.659999847412109","4.659999847412109","","1947-07-28T00:00:00Z","","0" +"NM-14672","104.29000091552734","104.29000091552734","","1953-09-09T00:00:00Z","","0" +"NM-02615","6.230000019073486","6.230000019073486","","2004-01-28T00:00:00Z","","0" +"NM-13942","-11","-11","","1908-06-26T00:00:00Z","","0" +"NM-01940","127.55999755859375","127.55999755859375","P","1953-05-13T00:00:00Z","","0" +"NM-21304","5.71999979019165","5.71999979019165","","1947-05-28T00:00:00Z","","0" +"DE-0079","84.66999816894531","84.66999816894531","","2010-01-27T00:00:00Z","","0" +"NM-02208","8.199999809265137","8.199999809265137","","2000-09-15T00:00:00Z","","0" +"NM-27290","205.38999938964844","205.38999938964844","","1995-08-25T00:00:00Z","","0" +"AB-0054","44.91999816894531","44.91999816894531","","2009-06-18T00:00:00Z","","" +"NM-24226","16.440000534057617","16.440000534057617","","2009-12-13T00:00:00Z","","0" +"NM-12893","17.079999923706055","17.079999923706055","","1972-01-12T00:00:00Z","","0" +"NM-16905","62.599998474121094","62.599998474121094","","1963-01-04T00:00:00Z","","0" +"NM-13852","-12.550000190734863","-12.550000190734863","","1910-03-21T00:00:00Z","","0" +"NM-28251","74.9800033569336","74.9800033569336","","1987-03-25T00:00:00Z","","0" +"NM-12236","134.05999755859375","134.05999755859375","","1986-02-21T00:00:00Z","","0" +"EB-217","57.70000076293945","56.400001525878906","","1974-12-31T00:00:00Z","","1.2999999523162842" +"NM-02207","14.199999809265137","14.199999809265137","","1967-08-15T00:00:00Z","","0" +"NM-02005","6","6","","1974-12-15T00:00:00Z","","0" +"NM-17471","13.260000228881836","13.260000228881836","","1944-05-11T00:00:00Z","","0" +"NM-25350","445.3999938964844","445.3999938964844","","1981-09-28T00:00:00Z","","0" +"AB-0211","164.27000427246094","164.27000427246094","","1996-12-31T00:00:00Z","","" +"NM-15682","130.89999389648438","130.89999389648438","","1980-01-17T00:00:00Z","","0" +"NM-04893","78.13999938964844","78.13999938964844","","1969-01-16T00:00:00Z","","0" +"NM-01823","326.8500061035156","326.8500061035156","","1989-01-18T00:00:00Z","","0" +"NM-03414","58.88999938964844","58.88999938964844","","2014-08-21T00:00:00Z","","0" +"NM-13217","9.199999809265137","9.199999809265137","","1959-01-08T00:00:00Z","","0" +"NM-22969","321.010009765625","321.010009765625","T","1985-04-26T00:00:00Z","","0" +"NM-17989","17.969999313354492","17.969999313354492","","1933-08-12T00:00:00Z","","0" +"NM-02006","7.900000095367432","7.900000095367432","","1946-02-15T00:00:00Z","","0" +"NM-28012","480","480","S","2015-06-02T00:00:00Z","","0" +"NM-28255","113.51000213623047","113.51000213623047","","2001-04-05T00:00:00Z","","0" +"NM-10635","29.719999313354492","29.719999313354492","","1975-01-20T00:00:00Z","","0" +"NM-01872","6","6","","1992-09-15T00:00:00Z","","0" +"NM-02289","100.48999786376953","100.48999786376953","","1998-01-13T00:00:00Z","","0" +"NM-22969","315.8999938964844","315.8999938964844","","1989-06-01T00:00:00Z","","0" +"DE-0239","110.98999786376953","110.98999786376953","","2003-11-06T00:00:00Z","","0" +"NM-01291","84.97000122070312","84.97000122070312","","1994-01-25T00:00:00Z","","0" +"NM-01006","286.0299987792969","286.0299987792969","","1958-01-13T00:00:00Z","","0" +"NM-13794","-3.309999942779541","-3.309999942779541","","1905-10-05T00:00:00Z","","0" +"BC-0156","212.83999633789062","212.83999633789062","","2011-09-28T00:00:00Z","","0" +"NM-28255","128.8800048828125","128.8800048828125","","1980-09-05T00:00:00Z","","0" +"NM-13594","26.059999465942383","26.059999465942383","","1956-10-01T00:00:00Z","","0" +"NM-23293","82.08999633789062","82.08999633789062","","1946-02-26T00:00:00Z","","0" +"NM-21241","2.2300000190734863","2.2300000190734863","Z","2011-09-20T00:00:00Z","","0" +"NM-04286","11.800000190734863","11.800000190734863","","1964-12-08T00:00:00Z","","0" +"NM-14348","23.1299991607666","23.1299991607666","","1958-07-14T00:00:00Z","","0" +"EB-340","53.02000045776367","52.220001220703125","","2012-02-15T00:00:00Z","","0.800000011920929" +"NM-09562","89.01000213623047","89.01000213623047","","1984-01-25T00:00:00Z","","0" +"NM-10695","12.420000076293945","12.420000076293945","","1949-01-14T00:00:00Z","","0" +"NM-17797","103.08000183105469","103.08000183105469","","1954-03-07T00:00:00Z","","0" +"NM-13952","-19.479999542236328","-19.479999542236328","","1907-06-14T00:00:00Z","","0" +"NM-14213","-19.479999542236328","-19.479999542236328","P","1908-12-09T00:00:00Z","","0" +"NM-02288","3.4600000381469727","3.4600000381469727","","2002-06-21T00:00:00Z","","0" +"NM-01948","8.300000190734863","8.300000190734863","","1952-02-15T00:00:00Z","","0" +"NM-09520","5.659999847412109","5.659999847412109","","1953-09-17T00:00:00Z","","0" +"NM-28257","5.349999904632568","5.349999904632568","","2022-01-14T00:00:00Z","","0" +"NM-03338","10.449999809265137","10.449999809265137","","1994-06-14T00:00:00Z","","0" +"NM-02965","117.72000122070312","117.72000122070312","","1980-01-28T00:00:00Z","","0" +"SB-0053","59.72999954223633","59.72999954223633","","1970-01-08T00:00:00Z","","0" +"NM-28257","13.90999984741211","13.90999984741211","","1976-01-05T00:00:00Z","","0" +"DE-0112","39.220001220703125","39.220001220703125","","2007-07-17T00:00:00Z","","0" +"LC-025","8.050000190734863","8.40000057220459","","2012-02-16T00:00:00Z","","-0.3499999940395355" +"NM-04834","68.25","68.25","","1962-08-14T00:00:00Z","","0" +"NM-18009","34.04999923706055","34.04999923706055","","1974-06-20T00:00:00Z","","0" +"DE-0065","22.559999465942383","20.65999984741211","","1995-01-01T00:00:00Z","","1.899999976158142" +"NM-03759","84.47000122070312","84.47000122070312","","2003-01-15T00:00:00Z","","0" +"NM-21010","45.279998779296875","45.279998779296875","","1977-08-04T00:00:00Z","","0" +"NM-13623","18.979999542236328","18.979999542236328","","1937-11-29T00:00:00Z","","0" +"NM-01868","10.399999618530273","10.399999618530273","","1953-03-15T00:00:00Z","","0" +"NM-01314","388.1300048828125","388.1300048828125","","2009-10-05T00:00:00Z","","0" +"NM-23050","87.06999969482422","87.06999969482422","P","1952-06-25T00:00:00Z","","0" +"NM-21522","288.54998779296875","288.54998779296875","","2008-12-12T00:00:00Z","","0" +"NM-28257","-18.940000534057617","-18.940000534057617","","2000-11-06T00:00:00Z","","0" +"NM-02549","59.70000076293945","59.70000076293945","","1975-01-23T00:00:00Z","","0" +"NM-27685","35.790000915527344","35.790000915527344","","1966-03-24T00:00:00Z","","0" +"NM-02831","65.8499984741211","65.8499984741211","","1966-08-01T00:00:00Z","","0" +"NM-13235","2.9600000381469727","2.9600000381469727","","1960-04-06T00:00:00Z","","0" +"NM-00384","72.33000183105469","72.33000183105469","","1998-08-26T00:00:00Z","","0" +"NM-09998","-58.75","-58.75","","1914-01-12T00:00:00Z","","0" +"NM-17716","3.2300000190734863","3.2300000190734863","","1945-10-16T00:00:00Z","","0" +"TV-167","244.11000061035156","242.50999450683594","","2013-03-12T00:00:00Z","","1.600000023841858" +"NM-07633","48.90999984741211","48.90999984741211","","1976-02-10T00:00:00Z","","0" +"AB-0181","150.72000122070312","150.72000122070312","","2001-03-21T00:00:00Z","","" +"TV-170","157.75","155.75","","2002-05-09T00:00:00Z","","2" +"WL-0086","52.04166793823242","50.28166961669922","","1986-10-08T00:00:00Z","","1.7599999904632568" +"NM-00562","97.47000122070312","97.47000122070312","","2000-01-05T00:00:00Z","","0" +"SB-0025","51","51","","1971-05-03T00:00:00Z","","0" +"NM-01791","277.5199890136719","277.5199890136719","","1981-03-20T00:00:00Z","","0" +"NM-04107","174.0800018310547","174.0800018310547","","1979-01-05T00:00:00Z","","0" +"NM-27706","27.93000030517578","27.93000030517578","","1949-11-22T00:00:00Z","","0" +"NM-06692","284.3999938964844","284.3999938964844","","1961-02-17T00:00:00Z","","0" +"NM-22991","3.740000009536743","3.740000009536743","Z","2007-11-07T00:00:00Z","","0" +"NM-25139","293.7799987792969","293.7799987792969","","1995-01-27T00:00:00Z","","0" +"NM-10185","26.049999237060547","26.049999237060547","","1956-02-09T00:00:00Z","","0" +"NM-08648","39.970001220703125","39.970001220703125","","1948-07-23T00:00:00Z","","0" +"NM-13902","4.070000171661377","4.070000171661377","","1970-01-21T00:00:00Z","","0" +"DE-0082","92.83000183105469","92.83000183105469","","1999-12-28T00:00:00Z","","0" +"EB-126","183.13999938964844","183.13999938964844","","1979-03-19T00:00:00Z","","0" +"NM-01892","12.850000381469727","12.850000381469727","","2000-06-21T00:00:00Z","","0" +"NM-03299","48.060001373291016","48.060001373291016","","1959-02-04T00:00:00Z","","0" +"NM-08744","50.4900016784668","50.4900016784668","","1962-04-11T00:00:00Z","","0" +"NM-11100","47.95000076293945","47.95000076293945","","1957-01-10T00:00:00Z","","0" +"TV-147","-139","-140","","2011-03-14T00:00:00Z","","1" +"NM-21760","72.80000305175781","72.80000305175781","","1976-09-29T00:00:00Z","","0" +"NM-00303","41.560001373291016","41.560001373291016","","1996-06-11T00:00:00Z","","0" +"NM-14045","42.369998931884766","42.369998931884766","","1957-05-06T00:00:00Z","","0" +"NM-28252","44.27000045776367","44.27000045776367","","1988-03-25T00:00:00Z","","0" +"NM-03109","311.5799865722656","311.5799865722656","","1990-01-04T00:00:00Z","","0" +"BC-0231","","354.1000061035156","","2020-11-10T00:00:00Z","","0.8500000238418579" +"NM-07641","-86.47000122070312","-86.47000122070312","","1910-11-04T00:00:00Z","","0" +"NM-10099","166.4499969482422","166.4499969482422","","1983-04-25T00:00:00Z","","0" +"NM-04854","63.150001525878906","63.150001525878906","","1943-01-12T00:00:00Z","","0" +"NM-05976","62.68000030517578","62.68000030517578","","1952-01-10T00:00:00Z","","0" +"NM-07337","101.18000030517578","101.18000030517578","","1978-06-08T00:00:00Z","","0" +"NM-03372","124.93000030517578","124.93000030517578","P","1954-08-28T00:00:00Z","","0" +"NM-27936","73.73999786376953","73.73999786376953","","2014-02-12T00:00:00Z","","0" +"NM-02645","14.920000076293945","14.920000076293945","","1985-02-18T00:00:00Z","","0" +"NM-00583","43.41999816894531","43.41999816894531","","2011-11-15T00:00:00Z","","0" +"NM-13982","-13.239999771118164","-13.239999771118164","","1914-01-28T00:00:00Z","","0" +"NM-10756","56.540000915527344","56.540000915527344","","1955-01-07T00:00:00Z","","0" +"NM-28017","486.510009765625","486.510009765625","S","2015-04-17T00:00:00Z","","0" +"NM-13876","13.569999694824219","13.569999694824219","","1970-04-02T00:00:00Z","","0" +"NM-05653","74.33999633789062","74.33999633789062","","1971-01-20T00:00:00Z","","0" +"NM-03042","146.02999877929688","146.02999877929688","","2003-02-21T00:00:00Z","","0" +"NM-11699","33.08000183105469","33.08000183105469","","1996-01-18T00:00:00Z","","0" +"NM-00680","49.380001068115234","49.380001068115234","","2009-01-21T00:00:00Z","","0" +"NM-28252","48.900001525878906","48.900001525878906","","2017-10-16T00:00:00Z","","0" +"NM-09968","45.099998474121094","45.099998474121094","","1960-01-11T00:00:00Z","","0" +"NM-03235","56.7599983215332","56.7599983215332","","1953-02-25T00:00:00Z","","0" +"BC-0131","202.3800048828125","202.3800048828125","","2015-12-07T00:00:00Z","","0" +"NM-12792","79.5","79.5","","1958-08-26T00:00:00Z","","0" +"NM-12600","56.439998626708984","56.439998626708984","","1939-11-07T00:00:00Z","","0" +"NM-02090","64.73999786376953","64.73999786376953","","1952-11-06T00:00:00Z","","0" +"NM-02840","7.340000152587891","7.340000152587891","","1980-10-29T00:00:00Z","","0" +"SB-0316","64.19000244140625","64.19000244140625","","1977-02-23T00:00:00Z","","0" +"NM-17716","-0.7900000214576721","-0.7900000214576721","","1941-10-05T00:00:00Z","","0" +"NM-13162","12.289999961853027","12.289999961853027","","1965-01-07T00:00:00Z","","0" +"NM-19448","65.68000030517578","65.68000030517578","","1991-11-05T00:00:00Z","","0" +"NM-03685","85.66000366210938","85.66000366210938","","2005-04-08T00:00:00Z","","0" +"NM-16675","13.779999732971191","13.779999732971191","","1951-09-25T00:00:00Z","","0" +"NM-12600","55.599998474121094","55.599998474121094","","1939-07-08T00:00:00Z","","0" +"NM-01895","60.31999969482422","60.31999969482422","","2001-09-21T00:00:00Z","","0" +"NM-01004","307.4800109863281","307.4800109863281","A","2010-03-07T00:00:00Z","","0" +"NM-15700","113.25","113.25","","1990-01-11T00:00:00Z","","0" +"NM-03679","200.7100067138672","200.7100067138672","","1968-03-26T00:00:00Z","","0" +"UC-0070","46.599998474121094","46.599998474121094","","1973-01-31T00:00:00Z","","0" +"NM-09813","10.609999656677246","10.609999656677246","","1941-01-08T00:00:00Z","","0" +"EB-266","13.760000228881836","13.760000228881836","","2006-01-24T00:00:00Z","","0" +"NM-28015","498.67999267578125","498.67999267578125","S","2015-05-25T00:00:00Z","","0" +"SO-0217","12.40999984741211","10.800000190734863","","2020-08-14T00:00:00Z","0001-01-01T12:10:00Z","1.6100000143051147" +"BC-0207","","65.5","","2020-11-10T00:00:00Z","","2.569999933242798" +"NM-01899","49.779998779296875","49.779998779296875","","1997-09-11T00:00:00Z","","0" +"SB-0299","156.5800018310547","156.5800018310547","","2019-08-15T00:00:00Z","","0" +"NM-14040","-20.639999389648438","-20.639999389648438","","1912-12-13T00:00:00Z","","0" +"NM-18029","103.5","103.5","","1966-09-08T00:00:00Z","","0" +"NM-11176","61.63999938964844","61.63999938964844","","1953-10-13T00:00:00Z","","0" +"NM-03078","137.82000732421875","137.82000732421875","","2011-09-09T00:00:00Z","","0" +"NM-09104","418.2799987792969","418.2799987792969","","1951-01-12T00:00:00Z","","0" +"NM-00571","71.23999786376953","71.23999786376953","","1996-01-18T00:00:00Z","","0" +"EB-276","134.50999450683594","134.50999450683594","","1958-02-24T00:00:00Z","","0" +"NM-00790","12.649999618530273","12.649999618530273","","2002-08-06T00:00:00Z","","0" +"NM-15345","84.12999725341797","84.12999725341797","","1956-09-14T00:00:00Z","","0" +"NM-01586","54.79999923706055","54.79999923706055","","1968-07-01T00:00:00Z","","0" +"NM-00643","101.69999694824219","101.69999694824219","","2002-08-26T00:00:00Z","","0" +"NM-03387","37.66999816894531","37.66999816894531","","1991-03-07T00:00:00Z","","0" +"NM-28209","","","F","1985-05-23T00:00:00Z","","0" +"NM-03979","188.0500030517578","188.0500030517578","","1964-08-07T00:00:00Z","","0" +"NM-14172","74","74","","1957-01-10T00:00:00Z","","0" +"NM-12297","31.270000457763672","31.270000457763672","P","1951-03-14T00:00:00Z","","0" +"NM-02560","102.05000305175781","102.05000305175781","","1963-02-01T00:00:00Z","","0" +"NM-03004","87.47000122070312","87.47000122070312","","1981-01-12T00:00:00Z","","0" +"NM-02866","118.18000030517578","118.18000030517578","","2008-01-22T00:00:00Z","","0" +"NM-13122","10","10","","1958-05-06T00:00:00Z","","0" +"NM-18096","25","25","","1949-08-17T00:00:00Z","","0" +"NM-08047","-79.54000091552734","-79.54000091552734","","1907-12-27T00:00:00Z","","0" +"NM-28250","83.62999725341797","83.62999725341797","","2002-07-25T00:00:00Z","","0" +"NM-01511","95.45999908447266","95.45999908447266","","1980-01-29T00:00:00Z","","0" +"WL-0002","506.3500061035156","506.3500061035156","","2020-07-06T00:00:00Z","0001-01-01T11:37:00Z","0" +"NM-13235","2.5","2.5","","1959-04-15T00:00:00Z","","0" +"NM-19673","355.6700134277344","355.6700134277344","","1982-02-17T00:00:00Z","","0" +"NM-03296","1.409999966621399","1.409999966621399","","1988-08-12T00:00:00Z","","0" +"NM-28257","82.75","82.75","","1975-05-25T00:00:00Z","","0" +"NM-04487","9.15999984741211","9.15999984741211","","2009-08-26T00:00:00Z","","0" +"NM-17690","6.159999847412109","6.159999847412109","","1983-02-24T00:00:00Z","","0" +"AB-0066","161.47000122070312","161.47000122070312","","2016-04-13T00:00:00Z","","0" +"NM-04205","33.97999954223633","33.97999954223633","","1960-01-20T00:00:00Z","","0" +"NM-18230","58.400001525878906","58.400001525878906","","1962-04-09T00:00:00Z","","0" +"NM-00643","105.66999816894531","105.66999816894531","Z","2006-12-08T00:00:00Z","","0" +"NM-02207","12","12","","1960-02-15T00:00:00Z","","0" +"NM-01269","73.87000274658203","73.87000274658203","","1947-01-04T00:00:00Z","","0" +"NM-09374","29.1200008392334","29.1200008392334","","1930-10-31T00:00:00Z","","0" +"NM-02096","368.42999267578125","368.42999267578125","","1987-02-10T00:00:00Z","","0" +"NM-02169","9.4399995803833","9.4399995803833","","2003-01-24T00:00:00Z","","0" +"NM-27474","69.81999969482422","69.81999969482422","","1952-03-10T00:00:00Z","","0" +"NM-17455","69.12999725341797","69.12999725341797","","1972-01-19T00:00:00Z","","0" +"NM-04237","10.399999618530273","10.399999618530273","","1961-01-09T00:00:00Z","","0" +"NM-28253","8.739999771118164","8.739999771118164","","1991-02-15T00:00:00Z","","0" +"NM-07881","11.979999542236328","11.979999542236328","","1940-08-25T00:00:00Z","","0" +"NM-12215","-51.81999969482422","-51.81999969482422","","1911-06-09T00:00:00Z","","0" +"NM-03199","356.4200134277344","356.4200134277344","","1969-01-09T00:00:00Z","","0" +"EB-012","124.12000274658203","124.12000274658203","","1969-06-02T00:00:00Z","","0" +"NM-12914","-11.399999618530273","-11.399999618530273","","1909-09-22T00:00:00Z","","0" +"NM-02990","29.829999923706055","29.829999923706055","","1957-03-13T00:00:00Z","","0" +"NM-02043","6.800000190734863","6.800000190734863","","2002-05-15T00:00:00Z","","0" +"NM-18357","65.25","65.25","","1977-02-04T00:00:00Z","","0" +"NM-13962","-26.40999984741211","-26.40999984741211","","1911-05-17T00:00:00Z","","0" +"NM-00498","57.5","57.5","","1999-12-07T00:00:00Z","","0" +"DE-0124","37.349998474121094","37.349998474121094","","2008-07-21T00:00:00Z","","0" +"EB-012","159","159","","1973-01-11T00:00:00Z","","0" +"TB-0103","57.38999938964844","57.38999938964844","","2010-06-15T00:00:00Z","","0" +"NM-03563","26.610000610351562","26.610000610351562","","1983-01-14T00:00:00Z","","0" +"UC-0105","162.77999877929688","162.77999877929688","","1976-01-27T00:00:00Z","","0" +"NM-04313","64.33999633789062","64.33999633789062","","1957-01-08T00:00:00Z","","0" +"EB-484","627","626.4000244140625","P","1996-03-31T00:00:00Z","","0.6000000238418579" +"NM-17449","22.6299991607666","22.6299991607666","","1949-01-07T00:00:00Z","","0" +"NM-02111","142.1699981689453","142.1699981689453","","1979-01-23T00:00:00Z","","0" +"NM-11323","4.309999942779541","4.309999942779541","","1978-04-14T00:00:00Z","","0" +"NM-02068","50.63999938964844","50.63999938964844","","1971-01-20T00:00:00Z","","0" +"NM-28259","155.66000366210938","155.66000366210938","","2012-10-15T00:00:00Z","","0" +"NM-27390","123.4800033569336","123.4800033569336","","1955-11-28T00:00:00Z","","0" +"SM-0130","37.2400016784668","37.2400016784668","","1966-09-27T00:00:00Z","","0" +"WL-0304","","","","","","1.0299999713897705" +"NM-01829","313.6499938964844","313.6499938964844","","1986-02-06T00:00:00Z","","0" +"NM-28254","82.69999694824219","82.69999694824219","","1966-09-05T00:00:00Z","","0" +"DA-0043","560","560","","1968-07-27T00:00:00Z","","0" +"NM-09178","31.149999618530273","31.149999618530273","","1938-10-16T00:00:00Z","","0" +"NM-00774","300.8399963378906","300.8399963378906","","2010-07-27T00:00:00Z","","0" +"NM-02720","55.880001068115234","55.880001068115234","","1970-01-19T00:00:00Z","","0" +"NM-24271","58.869998931884766","58.869998931884766","","1978-07-26T00:00:00Z","","0" +"NM-19614","99.01000213623047","99.01000213623047","","1960-06-08T00:00:00Z","","0" +"NM-14874","61.189998626708984","61.189998626708984","","1949-03-11T00:00:00Z","","0" +"NM-00702","32.880001068115234","32.880001068115234","","2009-03-30T00:00:00Z","","0" +"NM-07232","476.6000061035156","476.6000061035156","","2010-05-26T00:00:00Z","","0" +"NM-07118","85.66999816894531","85.66999816894531","","2000-01-22T00:00:00Z","","0" +"NM-09099","154.9600067138672","154.9600067138672","","1986-03-25T00:00:00Z","","0" +"NM-01862","93.19999694824219","93.19999694824219","","1995-01-16T00:00:00Z","","0" +"EB-147","144.22999572753906","144.22999572753906","","2003-03-24T00:00:00Z","","0" +"AB-0220","640","640","","1970-04-08T00:00:00Z","","" +"NM-03349","30.219999313354492","30.219999313354492","S","1985-06-24T00:00:00Z","","0" +"NM-14802","98.61000061035156","98.61000061035156","","1970-03-05T00:00:00Z","","0" +"NM-13594","33.34000015258789","33.34000015258789","","1960-04-04T00:00:00Z","","0" +"BC-0168","","339.5","","2021-12-15T00:00:00Z","","2.5" +"NM-02689","52.77000045776367","52.77000045776367","","1961-01-17T00:00:00Z","","0" +"NM-14491","53.65999984741211","53.65999984741211","","1969-01-10T00:00:00Z","","0" +"NM-05855","18.200000762939453","18.200000762939453","","1975-09-05T00:00:00Z","","0" +"NM-04977","186","186","","1993-06-17T00:00:00Z","","0" +"NM-20804","28.040000915527344","28.040000915527344","","1955-02-07T00:00:00Z","","0" +"NM-10239","-5","-5","","1941-01-07T00:00:00Z","","0" +"NM-00185","12.699999809265137","12.699999809265137","","1977-06-15T00:00:00Z","","0" +"NM-02563","26.559999465942383","26.559999465942383","","1962-01-25T00:00:00Z","","0" +"TV-217","276.1300048828125","275.5299987792969","","2007-06-07T00:00:00Z","","0.6000000238418579" +"NM-02197","11.59000015258789","11.59000015258789","","1998-07-31T00:00:00Z","","0" +"NM-01355","","","O","2008-03-04T00:00:00Z","","0" +"NM-03549","60.2599983215332","60.2599983215332","","2012-01-31T00:00:00Z","","0" +"NM-07904","17.969999313354492","17.969999313354492","","2016-02-04T00:00:00Z","","0" +"NM-03183","98.20999908447266","98.20999908447266","","1971-01-25T00:00:00Z","","0" +"NM-02384","6.400000095367432","6.400000095367432","","1995-06-15T00:00:00Z","","0" +"NM-21223","348.8299865722656","348.8299865722656","","1992-09-14T00:00:00Z","","0" +"NM-08583","17.459999084472656","17.459999084472656","","2004-05-12T00:00:00Z","","0" +"NM-00721","77.91999816894531","77.91999816894531","","2009-05-04T00:00:00Z","","0" +"NM-01896","9.100000381469727","9.100000381469727","","1996-12-18T00:00:00Z","","0" +"NM-02300","172.55999755859375","172.55999755859375","","2009-02-23T00:00:00Z","","0" +"TC-240","345.0400085449219","343.4900207519531","","2015-03-17T00:00:00Z","","1.5499999523162842" +"NM-02591","16.200000762939453","16.200000762939453","","1953-03-15T00:00:00Z","","0" +"NM-03323","72.7699966430664","72.7699966430664","Z","1998-07-07T00:00:00Z","","0" +"NM-02376","144.10000610351562","144.10000610351562","","1974-01-14T00:00:00Z","","0" +"NM-28020","465.80999755859375","465.80999755859375","S","2015-04-25T00:00:00Z","","0" +"NM-28259","14.40999984741211","14.40999984741211","","1947-02-15T00:00:00Z","","0" +"NM-07166","65.8499984741211","65.8499984741211","","2001-07-10T00:00:00Z","","0" +"NM-03415","61.900001525878906","61.900001525878906","","2005-03-17T00:00:00Z","","0" +"NM-05511","115.91000366210938","115.91000366210938","","1953-05-07T00:00:00Z","","0" +"NM-28250","83.12999725341797","83.12999725341797","","2003-05-23T00:00:00Z","","0" +"NM-01940","98.13999938964844","98.13999938964844","","1956-03-13T00:00:00Z","","0" +"NM-22091","18.739999771118164","18.739999771118164","","1961-03-10T00:00:00Z","","0" +"NM-20375","64.23999786376953","64.23999786376953","","1946-07-31T00:00:00Z","","0" +"NM-05955","62.70000076293945","62.70000076293945","","1946-03-27T00:00:00Z","","0" +"NM-02527","6.800000190734863","6.800000190734863","","1998-07-15T00:00:00Z","","0" +"NM-24316","108.94999694824219","108.94999694824219","","1974-12-10T00:00:00Z","","0" +"NM-03047","76.37999725341797","76.37999725341797","","1980-01-07T00:00:00Z","","0" +"NM-17618","11.9399995803833","11.9399995803833","","1933-12-16T00:00:00Z","","0" +"NM-21521","317.5299987792969","317.5299987792969","","1992-11-12T00:00:00Z","","0" +"NM-21860","260.3900146484375","260.3900146484375","","2009-06-04T00:00:00Z","","0" +"NM-02384","9","9","","1999-01-15T00:00:00Z","","0" +"NM-13911","-18.329999923706055","-18.329999923706055","","1911-10-17T00:00:00Z","","0" +"NM-02591","13.800000190734863","13.800000190734863","","1995-01-15T00:00:00Z","","0" +"NM-22836","102.31999969482422","102.31999969482422","","2005-04-19T00:00:00Z","","0" +"NM-03662","7.139999866485596","7.139999866485596","","1971-02-04T00:00:00Z","","0" +"NM-02739","68.5199966430664","68.5199966430664","","2008-01-24T00:00:00Z","","0" +"NM-27470","117.95999908447266","117.95999908447266","","1994-02-01T00:00:00Z","","0" +"NM-26612","25.709999084472656","25.709999084472656","","2011-06-24T00:00:00Z","","0" +"BW-0740","135.10000610351562","135.10000610351562","","1948-12-30T00:00:00Z","","0" +"NM-02527","7.599999904632568","7.599999904632568","","1985-06-15T00:00:00Z","","0" +"NM-09178","25.40999984741211","25.40999984741211","","1941-04-16T00:00:00Z","","0" +"NM-02765","89.19000244140625","89.19000244140625","","1985-01-09T00:00:00Z","","0" +"AB-0065","174.47999572753906","174.47999572753906","","2008-07-31T00:00:00Z","","" +"NM-02678","80.7699966430664","80.7699966430664","","2002-01-04T00:00:00Z","","0" +"NM-12951","-44.88999938964844","-44.88999938964844","","1910-03-09T00:00:00Z","","0" +"NM-28252","30.399999618530273","30.399999618530273","","1997-02-25T00:00:00Z","","0" +"NM-17562","45.68000030517578","45.68000030517578","P","1952-05-27T00:00:00Z","","0" +"NM-21333","40.58000183105469","40.58000183105469","","1961-01-25T00:00:00Z","","0" +"NM-02017","7.599999904632568","7.599999904632568","","1948-02-15T00:00:00Z","","0" +"NM-28257","-2.309999942779541","-2.309999942779541","","2013-12-16T00:00:00Z","","0" +"NM-13208","120.88999938964844","120.88999938964844","","1958-09-16T00:00:00Z","","0" +"NM-01787","241.91000366210938","241.91000366210938","","1961-04-10T00:00:00Z","","0" +"NM-00974","360.1000061035156","360.1000061035156","","1999-07-07T00:00:00Z","","0" +"NM-23893","90.30000305175781","90.30000305175781","","1967-12-06T00:00:00Z","","0" +"NM-00638","35.150001525878906","35.150001525878906","T","2008-12-14T00:00:00Z","","0" +"NM-10044","6.150000095367432","6.150000095367432","","1975-05-14T00:00:00Z","","0" +"NM-03496","297.80999755859375","297.80999755859375","","1978-01-31T00:00:00Z","","0" +"NM-03218","41.56999969482422","41.56999969482422","","1957-09-04T00:00:00Z","","0" +"NM-06147","29.219999313354492","29.219999313354492","","1953-02-28T00:00:00Z","","0" +"NM-02626","19.25","19.25","","1963-08-12T00:00:00Z","","0" +"NM-06268","16.600000381469727","16.600000381469727","","1954-06-15T00:00:00Z","","0" +"NM-21205","134.2899932861328","134.2899932861328","","1987-05-13T00:00:00Z","","0" +"NM-13623","11.899999618530273","11.899999618530273","","1943-03-19T00:00:00Z","","0" +"SB-0776","426.8399963378906","426.8399963378906","","1999-12-02T00:00:00Z","","0" +"NM-28252","43.970001220703125","43.970001220703125","","1989-11-05T00:00:00Z","","0" +"NM-03462","154.11000061035156","154.11000061035156","","1970-10-01T00:00:00Z","","0" +"NM-13361","-31.030000686645508","-31.030000686645508","","1908-12-13T00:00:00Z","","0" +"WL-0088","37.29166793823242","34.69166946411133","","1996-01-03T00:00:00Z","","2.5999999046325684" +"NM-12911","75.79000091552734","75.79000091552734","P","1938-10-17T00:00:00Z","","0" +"NM-22980","10.140000343322754","10.140000343322754","Z","2009-05-27T00:00:00Z","","0" +"NM-21295","134.47000122070312","134.47000122070312","","2011-07-27T00:00:00Z","","0" +"EB-267","16.43000030517578","16.43000030517578","","2002-03-28T00:00:00Z","","0" +"SA-0239","71.83000183105469","70.44000244140625","","2018-08-27T00:00:00Z","0001-01-01T13:36:00Z","1.3899999856948853" +"NM-00861","243.80999755859375","243.80999755859375","","1955-02-11T00:00:00Z","","0" +"NM-28254","115.19999694824219","115.19999694824219","","1995-06-25T00:00:00Z","","0" +"NM-03298","81.97000122070312","81.97000122070312","","1965-08-18T00:00:00Z","","0" +"NM-20115","30.18000030517578","30.18000030517578","","1942-08-13T00:00:00Z","","0" +"NM-19997","77.80999755859375","77.80999755859375","","1949-11-22T00:00:00Z","","0" +"NM-16090","156.94000244140625","156.94000244140625","","1975-01-06T00:00:00Z","","0" +"NM-02288","6.179999828338623","6.179999828338623","","1991-02-06T00:00:00Z","","0" +"NM-14210","-12.550000190734863","-12.550000190734863","P","1912-05-16T00:00:00Z","","0" +"UC-0009","285.3800048828125","285.3800048828125","","2011-01-13T00:00:00Z","","0" +"NM-11548","78.37000274658203","78.37000274658203","","1957-01-11T00:00:00Z","","0" +"NM-16395","138.39999389648438","138.39999389648438","","1961-01-11T00:00:00Z","","0" +"DE-0245","102.56999969482422","102.56999969482422","","2002-02-19T00:00:00Z","","0" +"SA-0024","17","17","","1992-02-19T00:00:00Z","","0" +"NM-27490","21.15999984741211","21.15999984741211","","2009-01-21T00:00:00Z","","0" +"QU-070","45.54999923706055","42.89999771118164","","2012-07-12T00:00:00Z","","2.6500000953674316" +"NM-11104","34.75","34.75","","1964-01-05T00:00:00Z","","0" +"NM-08940","5.670000076293945","5.670000076293945","","1958-10-02T00:00:00Z","","0" +"NM-08002","7.639999866485596","7.639999866485596","","1957-01-16T00:00:00Z","","0" +"NM-00395","34.90999984741211","34.90999984741211","","1956-07-26T00:00:00Z","","0" +"NM-10610","14.40999984741211","14.40999984741211","","1940-01-13T00:00:00Z","","0" +"NM-21923","9.5600004196167","9.5600004196167","","1985-08-05T00:00:00Z","","0" +"NM-13594","9.9399995803833","9.9399995803833","","1957-02-06T00:00:00Z","","0" +"NM-07957","81.87999725341797","81.87999725341797","","1954-01-08T00:00:00Z","","0" +"NM-28011","491.20001220703125","491.20001220703125","S","2015-05-15T00:00:00Z","","0" +"NM-28259","131.08999633789062","131.08999633789062","","1975-04-15T00:00:00Z","","0" +"NM-00987","379.67999267578125","379.67999267578125","P","2008-03-13T00:00:00Z","","0" +"NM-06905","120.88999938964844","120.88999938964844","","1975-01-27T00:00:00Z","","0" +"NM-01896","9.25","9.25","","2005-12-21T00:00:00Z","","0" +"NM-01891","45.119998931884766","45.119998931884766","","1986-03-20T00:00:00Z","","0" +"NM-05684","16.780000686645508","16.780000686645508","","1976-01-21T00:00:00Z","","0" +"NM-01926","5.900000095367432","5.900000095367432","","1974-08-15T00:00:00Z","","0" +"NM-16651","13.720000267028809","13.720000267028809","","1945-01-21T00:00:00Z","","0" +"NM-27372","143.00999450683594","143.00999450683594","S","1994-03-29T00:00:00Z","","0" +"NM-11594","11.899999618530273","11.899999618530273","","1967-02-01T00:00:00Z","","0" +"NM-01894","45.56999969482422","45.56999969482422","","1996-10-05T00:00:00Z","","0" +"NM-08524","13.5","13.5","","1965-09-15T00:00:00Z","","0" +"NM-06343","68.69000244140625","68.69000244140625","","1965-10-28T00:00:00Z","","0" +"NM-00374","21.469999313354492","21.469999313354492","","1984-01-12T00:00:00Z","","0" +"NM-14067","-2.1600000858306885","-2.1600000858306885","","1912-05-17T00:00:00Z","","0" +"NM-03344","75.72000122070312","75.72000122070312","","1991-09-04T00:00:00Z","","0" +"NM-02441","73.16999816894531","73.16999816894531","","2006-04-12T00:00:00Z","","0" +"NM-12927","26.709999084472656","26.709999084472656","","1986-01-31T00:00:00Z","","0" +"NM-02977","14.539999961853027","14.539999961853027","","2005-02-22T00:00:00Z","","0" +"NM-06972","100.55999755859375","100.55999755859375","","1970-12-10T00:00:00Z","","0" +"NM-03302","132.39999389648438","132.39999389648438","","1985-01-23T00:00:00Z","","0" +"DE-0241","107.4000015258789","107.4000015258789","","2006-05-09T00:00:00Z","","0" +"NM-02314","11.399999618530273","11.399999618530273","","1974-04-15T00:00:00Z","","0" +"AB-0100","716.77001953125","716.77001953125","","2002-02-06T00:00:00Z","","" +"NM-16572","67.98999786376953","67.98999786376953","","1979-09-13T00:00:00Z","","0" +"NM-03440","9.710000038146973","9.710000038146973","Z","1996-03-01T00:00:00Z","","0" +"DE-0071","201.6199951171875","199.01998901367188","","1995-10-01T00:00:00Z","","2.5999999046325684" +"NM-02740","46.400001525878906","46.400001525878906","","1954-01-09T00:00:00Z","","0" +"NM-01269","69.2300033569336","69.2300033569336","","1946-02-26T00:00:00Z","","0" +"SO-0265","5.349999904632568","4.059999942779541","","2016-09-21T00:00:00Z","","1.2899999618530273" +"NM-02280","21.100000381469727","21.100000381469727","","2000-04-17T00:00:00Z","","0" +"NM-01891","66.86000061035156","66.86000061035156","","1998-12-22T00:00:00Z","","0" +"NM-01319","188.32000732421875","188.32000732421875","R","2003-04-29T00:00:00Z","","0" +"NM-05455","20.670000076293945","20.670000076293945","","1940-03-12T00:00:00Z","","0" +"NM-25476","87","87","","1994-07-22T00:00:00Z","","0" +"EB-245","210.44000244140625","210.44000244140625","","2000-08-16T00:00:00Z","","0" +"NM-28255","96.80000305175781","96.80000305175781","","1959-04-15T00:00:00Z","","0" +"NM-02272","141.19000244140625","139.63999938964844","","2020-01-24T00:00:00Z","0001-01-01T14:41:00Z","1.5499999523162842" +"SB-0201","280.8900146484375","280.8900146484375","","1989-02-08T00:00:00Z","","0" +"NM-16601","8.239999771118164","8.239999771118164","","1943-01-30T00:00:00Z","","0" +"NM-04962","88.58999633789062","88.58999633789062","R","1953-05-09T00:00:00Z","","0" +"NM-03226","40.34000015258789","40.34000015258789","","1954-05-06T00:00:00Z","","0" +"SV-0024","120.80000305175781","118.88333892822266","","2016-07-16T00:00:00Z","","1.9166666269302368" +"SO-0207","27.68000030517578","27.130001068115234","","2021-02-12T00:00:00Z","0001-01-01T14:00:00Z","0.550000011920929" +"SM-0257","32.2400016784668","30.700000762939453","","2009-04-17T00:00:00Z","","1.5399999618530273" +"NM-22956","900.5599975585938","900.5599975585938","","2011-09-14T00:00:00Z","","0" +"NM-28257","-2","-2","","1988-02-25T00:00:00Z","","0" +"NM-28252","43.63999938964844","43.63999938964844","","2010-04-05T00:00:00Z","","0" +"NM-08071","8.399999618530273","8.399999618530273","","1986-06-15T00:00:00Z","","0" +"NM-21040","29.670000076293945","29.670000076293945","P","1993-06-17T00:00:00Z","","0" +"NM-02829","21.559999465942383","21.559999465942383","","1971-01-14T00:00:00Z","","0" +"DE-0247","108.61000061035156","108.61000061035156","","2009-05-18T00:00:00Z","","0" +"EB-220","127.4000015258789","127.4000015258789","","1980-08-15T00:00:00Z","","0" +"NM-16941","48.43000030517578","48.43000030517578","","1977-01-11T00:00:00Z","","0" +"NM-11069","-28.719999313354492","-28.719999313354492","","1910-03-08T00:00:00Z","","0" +"NM-03115","12.069999694824219","12.069999694824219","R","1988-07-26T00:00:00Z","","0" +"NM-10143","32.04999923706055","32.04999923706055","","1942-10-24T00:00:00Z","","0" +"NM-22187","412.6700134277344","412.6700134277344","","2015-07-02T00:00:00Z","","0" +"NM-17216","29.18000030517578","29.18000030517578","","1934-07-17T00:00:00Z","","0" +"PC-019","167.4199981689453","167.4199981689453","","1998-08-11T00:00:00Z","","0" +"NM-10682","47.18000030517578","47.18000030517578","","1941-01-23T00:00:00Z","","0" +"NM-14067","-5.619999885559082","-5.619999885559082","","1909-06-09T00:00:00Z","","0" +"NM-03238","21.690000534057617","21.690000534057617","","1947-09-14T00:00:00Z","","0" +"NM-09387","59.310001373291016","59.310001373291016","","1981-01-08T00:00:00Z","","0" +"NM-02232","92.38999938964844","92.38999938964844","","1954-01-11T00:00:00Z","","0" +"NM-02772","20.8799991607666","20.8799991607666","","2004-01-15T00:00:00Z","","0" +"NM-19792","73.6500015258789","73.6500015258789","","1971-01-08T00:00:00Z","","0" +"NM-16880","12.930000305175781","12.930000305175781","","1995-06-28T00:00:00Z","","0" +"NM-28259","157.36000061035156","157.36000061035156","","2017-08-25T00:00:00Z","","0" +"NM-23361","127","127","P","1957-02-13T00:00:00Z","","0" +"NM-14038","-21.790000915527344","-21.790000915527344","","1907-12-03T00:00:00Z","","0" +"NM-03662","30.530000686645508","30.530000686645508","","1959-06-10T00:00:00Z","","0" +"NM-17527","32.08000183105469","32.08000183105469","","1936-12-19T00:00:00Z","","0" +"NM-02904","259.2799987792969","259.2799987792969","","1985-02-06T00:00:00Z","","0" +"NM-01182","143.61000061035156","143.61000061035156","","1955-04-06T00:00:00Z","","0" +"DE-0098","91.44000244140625","91.44000244140625","","1999-11-09T00:00:00Z","","0" +"BC-0007","212.33999633789062","212.33999633789062","","2019-04-18T00:00:00Z","","0" +"NM-06308","77","77","","1970-12-04T00:00:00Z","","0" +"NM-11959","20.690000534057617","20.690000534057617","","1944-01-29T00:00:00Z","","0" +"DE-0241","106.75","106.75","","2003-03-31T00:00:00Z","","0" +"NM-11628","67.37999725341797","67.37999725341797","","1971-02-24T00:00:00Z","","0" +"NM-11221","45.15999984741211","45.15999984741211","","1981-01-20T00:00:00Z","","0" +"NM-17716","1.850000023841858","1.850000023841858","","1945-05-06T00:00:00Z","","0" +"NM-00213","146.27999877929688","146.27999877929688","Z","1994-02-22T00:00:00Z","","0" +"NM-17475","48.36000061035156","48.36000061035156","","1954-01-25T00:00:00Z","","0" +"NM-02280","29.489999771118164","29.489999771118164","","2005-02-17T00:00:00Z","","0" +"NM-04583","68.01000213623047","68.01000213623047","P","1949-07-20T00:00:00Z","","0" +"AB-0183","328.55999755859375","328.55999755859375","","2015-05-28T00:00:00Z","","0" +"NM-02797","6.460000038146973","6.460000038146973","","1973-11-15T00:00:00Z","","0" +"NM-21546","12.600000381469727","12.600000381469727","Z","2008-07-08T00:00:00Z","","0" +"SM-0205","18.520000457763672","18.1200008392334","","2008-09-18T00:00:00Z","","0.4000000059604645" +"NM-05520","120.2699966430664","120.2699966430664","","1961-01-11T00:00:00Z","","0" +"NM-06532","199.39999389648438","198.59999084472656","","2020-02-19T00:00:00Z","0001-01-01T16:30:00Z","0.800000011920929" +"NM-11324","69.31999969482422","69.31999969482422","","1977-01-08T00:00:00Z","","0" +"NM-15562","33.95000076293945","33.95000076293945","","1989-12-13T00:00:00Z","","0" +"NM-02163","10.100000381469727","10.100000381469727","","2001-11-23T00:00:00Z","","0" +"NM-03395","12","12","","2005-03-17T00:00:00Z","","0" +"NM-28259","99.30000305175781","99.30000305175781","","1996-03-15T00:00:00Z","","0" +"NM-06016","45.47999954223633","45.47999954223633","","1956-05-02T00:00:00Z","","0" +"NM-27564","50.70000076293945","50.70000076293945","","1967-01-20T00:00:00Z","","0" +"NM-13906","-21.790000915527344","-21.790000915527344","","1905-10-17T00:00:00Z","","0" +"BW-0354","66","66","","1968-09-01T00:00:00Z","","0" +"NM-02207","10.300000190734863","10.300000190734863","","1990-03-15T00:00:00Z","","0" +"NM-14955","41.34000015258789","41.34000015258789","","1968-01-29T00:00:00Z","","0" +"EB-276","133.6699981689453","133.6699981689453","","1960-09-06T00:00:00Z","","0" +"NM-05347","13.699999809265137","13.699999809265137","","1978-07-15T00:00:00Z","","0" +"NM-01872","9.100000381469727","9.100000381469727","","1970-11-15T00:00:00Z","","0" +"NM-17716","4.929999828338623","4.929999828338623","","1950-09-05T00:00:00Z","","0" +"TB-0234","80.9800033569336","79.9800033569336","","2011-04-19T00:00:00Z","","1" +"NM-01909","","","D","2013-01-15T00:00:00Z","","0" +"NM-02029","13.199999809265137","13.199999809265137","","1994-09-15T00:00:00Z","","0" +"BC-0129","23.770000457763672","23.770000457763672","","2012-12-17T00:00:00Z","","0" +"NM-28256","292.9100036621094","292.9100036621094","","2002-08-05T00:00:00Z","","0" +"NM-02158","6.599999904632568","6.599999904632568","","1998-11-15T00:00:00Z","","0" +"NM-28255","44.5099983215332","44.5099983215332","","2008-11-05T00:00:00Z","","0" +"NM-17716","2.859999895095825","2.859999895095825","","1946-01-24T00:00:00Z","","0" +"SB-0299","128.10000610351562","128.10000610351562","","1990-09-20T00:00:00Z","","0" +"DE-0058","89.58000183105469","86.97000122070312","","1999-04-19T00:00:00Z","","2.609999895095825" +"NM-19881","48.029998779296875","48.029998779296875","","1986-12-04T00:00:00Z","","0" +"NM-09787","26.8799991607666","26.8799991607666","","1951-01-10T00:00:00Z","","0" +"NM-28254","36.119998931884766","36.119998931884766","","1971-12-15T00:00:00Z","","0" +"NM-13246","86.23999786376953","86.23999786376953","","1956-04-01T00:00:00Z","","0" +"NM-17222","27.149999618530273","27.149999618530273","","1937-01-12T00:00:00Z","","0" +"NM-09742","15.130000114440918","15.130000114440918","","2012-01-19T00:00:00Z","","0" +"NM-06752","390.7799987792969","390.7799987792969","","2012-07-19T00:00:00Z","","0" +"NM-27384","72.5","72.5","P","1963-07-22T00:00:00Z","","0" +"SO-0248","9.390000343322754","8.800000190734863","","2020-03-06T00:00:00Z","0001-01-01T14:22:00Z","0.5899999737739563" +"NM-00520","63.18000030517578","63.18000030517578","","1984-01-06T00:00:00Z","","0" +"SM-0130","23.760000228881836","23.760000228881836","","2010-09-30T00:00:00Z","","0" +"NM-02666","54.060001373291016","54.060001373291016","","1956-01-30T00:00:00Z","","0" +"NM-05753","62.75","62.75","","1949-05-19T00:00:00Z","","0" +"NM-01920","387.3800048828125","387.3800048828125","","2016-02-17T00:00:00Z","","0" +"NM-02384","9.399999618530273","9.399999618530273","","2000-03-15T00:00:00Z","","0" +"NM-01201","28.780000686645508","28.780000686645508","","1993-02-05T00:00:00Z","","0" +"DE-0319","42.52000045776367","42.52000045776367","","2009-11-03T00:00:00Z","","0" +"NM-23049","29.260000228881836","29.260000228881836","R","1995-05-04T00:00:00Z","","0" +"NM-07337","101.48999786376953","101.48999786376953","","1978-09-27T00:00:00Z","","0" +"NM-19382","98.25","98.25","","1965-02-04T00:00:00Z","","0" +"NM-06676","12.800000190734863","12.800000190734863","","1968-02-15T00:00:00Z","","0" +"NM-24795","198.25999450683594","198.25999450683594","","1982-01-19T00:00:00Z","","0" +"TO-0150","22.600000381469727","22.600000381469727","","1947-09-14T00:00:00Z","","0" +"NM-12082","61.29999923706055","61.29999923706055","","1986-01-16T00:00:00Z","","0" +"NM-01295","125.4000015258789","125.4000015258789","","1965-02-09T00:00:00Z","","0" +"NM-21606","84.0199966430664","84.0199966430664","","1950-10-16T00:00:00Z","","0" +"NM-02702","4.659999847412109","4.659999847412109","","1981-10-01T00:00:00Z","","0" +"EB-261","4.389999866485596","4.389999866485596","","2016-03-14T00:00:00Z","","0" +"TC-305","283.1300048828125","281.3900146484375","","2016-11-10T00:00:00Z","0001-01-01T12:00:00Z","1.7400000095367432" +"NM-21444","24.06999969482422","24.06999969482422","","1956-08-02T00:00:00Z","","0" +"NM-03171","334.4200134277344","334.4200134277344","","1973-01-04T00:00:00Z","","0" +"NM-25680","-103.8499984741211","-103.8499984741211","","1989-03-05T00:00:00Z","","0" +"WL-0096","63.650001525878906","63.650001525878906","","2019-08-20T00:00:00Z","0001-01-01T11:04:00Z","0" +"NM-04085","18.200000762939453","18.200000762939453","","1956-01-17T00:00:00Z","","0" +"NM-23967","72","72","","1977-06-28T00:00:00Z","","0" +"NM-26631","23.700000762939453","23.700000762939453","","2011-05-26T00:00:00Z","","0" +"NM-17716","1.5399999618530273","1.5399999618530273","","1944-12-20T00:00:00Z","","0" +"OG-0016","443.20001220703125","442.29998779296875","","2023-01-23T00:00:00Z","0001-01-01T12:04:00Z","0.8999999761581421" +"NM-12749","24.760000228881836","24.760000228881836","","1938-04-19T00:00:00Z","","0" +"NM-23838","90.69999694824219","90.69999694824219","P","1963-05-10T00:00:00Z","","0" +"NM-02669","57.38999938964844","57.38999938964844","","1988-09-21T00:00:00Z","","0" +"NM-23393","130.1199951171875","130.1199951171875","","1984-09-12T00:00:00Z","","0" +"NM-03332","9.9399995803833","9.9399995803833","Z","1990-10-29T00:00:00Z","","0" +"NM-04593","161.22000122070312","161.22000122070312","","1974-01-10T00:00:00Z","","0" +"NM-12180","51.150001525878906","51.150001525878906","","1940-01-23T00:00:00Z","","0" +"NM-06879","24.260000228881836","24.260000228881836","","1963-01-21T00:00:00Z","","0" +"NM-28252","22.43000030517578","22.43000030517578","","1952-11-25T00:00:00Z","","0" +"NM-25438","50.31999969482422","50.31999969482422","","1979-07-25T00:00:00Z","","0" +"NM-01435","136.10000610351562","136.10000610351562","","1981-09-24T00:00:00Z","","0" +"NM-00226","40.02000045776367","40.02000045776367","","1957-01-05T00:00:00Z","","0" +"EB-246","350.67999267578125","350.67999267578125","","2004-06-22T00:00:00Z","","0" +"NM-11322","2.6500000953674316","2.6500000953674316","","1972-08-31T00:00:00Z","","0" +"AB-0146","1289.5","1289.5","","1988-03-15T00:00:00Z","","" +"NM-00366","125.63999938964844","125.63999938964844","Z","2000-05-05T00:00:00Z","","0" +"EB-484","776.9000244140625","776.300048828125","Z","2003-11-30T00:00:00Z","","0.6000000238418579" +"SB-0090","196.1999969482422","196.1999969482422","","1972-02-09T00:00:00Z","","0" +"NM-26798","1044.75","1044.75","","2017-03-10T00:00:00Z","","0" +"NM-02043","7.099999904632568","7.099999904632568","","1989-02-09T00:00:00Z","","0" +"NM-03341","6.28000020980835","6.28000020980835","X","1996-11-13T00:00:00Z","","0" +"NM-14271","154.3300018310547","154.3300018310547","S","1957-09-16T00:00:00Z","","0" +"NM-12817","53.95000076293945","53.95000076293945","","1942-02-05T00:00:00Z","","0" +"NM-21505","5","5","","1957-09-19T00:00:00Z","","0" +"NM-02831","43.099998474121094","43.099998474121094","","2004-05-25T00:00:00Z","","0" +"NM-24554","4.309999942779541","4.309999942779541","","1988-05-09T00:00:00Z","","0" +"SV-0070","195.8000030517578","194.47000122070312","","2019-08-10T00:00:00Z","","1.3300000429153442" +"NM-17716","1.3899999856948853","1.3899999856948853","","1944-12-08T00:00:00Z","","0" +"SM-0016","97.18000030517578","96.02999877929688","","2008-02-12T00:00:00Z","","1.149999976158142" +"NM-02549","58.29999923706055","58.29999923706055","","1971-01-25T00:00:00Z","","0" +"NM-10854","9.270000457763672","9.270000457763672","","1939-01-19T00:00:00Z","","0" +"DE-0231","106.5","106.5","","2008-02-20T00:00:00Z","","0" +"NM-17885","199.10000610351562","199.10000610351562","","1979-01-09T00:00:00Z","","0" +"NM-23333","7.329999923706055","7.329999923706055","","1958-06-13T00:00:00Z","","0" +"NM-12002","64.52999877929688","64.52999877929688","","1965-02-18T00:00:00Z","","0" +"NM-28016","496.4200134277344","496.4200134277344","S","2015-06-02T00:00:00Z","","0" +"NM-03462","165.30999755859375","165.30999755859375","","1972-08-01T00:00:00Z","","0" +"AB-0109","36.97999954223633","36.97999954223633","Z","1999-01-07T00:00:00Z","","" +"WL-0089","36.83333206176758","34.28333282470703","","1995-03-02T00:00:00Z","","2.549999952316284" +"NM-03610","13.930000305175781","13.930000305175781","","1982-02-09T00:00:00Z","","0" +"NM-13409","-84.16000366210938","-84.16000366210938","","1911-11-15T00:00:00Z","","0" +"NM-08189","10.5","10.5","","1969-01-15T00:00:00Z","","0" +"NM-21566","5.349999904632568","5.349999904632568","Z","2005-04-05T00:00:00Z","","0" +"NM-08230","-84.16000366210938","-84.16000366210938","","1908-06-18T00:00:00Z","","0" +"NM-10949","42.75","42.75","","1943-01-20T00:00:00Z","","0" +"NM-02209","112","112","","1966-08-01T00:00:00Z","","0" +"NM-11449","173.4499969482422","173.4499969482422","","1966-02-16T00:00:00Z","","0" +"NM-07480","177.75","177.75","P","1965-11-17T00:00:00Z","","0" +"NM-05856","86.95999908447266","86.95999908447266","","1975-01-15T00:00:00Z","","0" +"SB-0360","89.41000366210938","89.41000366210938","","1971-02-18T00:00:00Z","","0" +"NM-14535","87.66000366210938","87.66000366210938","","1982-04-05T00:00:00Z","","0" +"EB-306","21.360000610351562","19.560001373291016","","2019-09-24T00:00:00Z","0001-01-01T10:15:00Z","1.7999999523162842" +"NM-02644","53.63999938964844","53.63999938964844","","2008-01-17T00:00:00Z","","0" +"WL-0089","53.29166793823242","50.741668701171875","","1990-11-21T00:00:00Z","","2.549999952316284" +"AB-0110","41.72999954223633","41.72999954223633","","2008-10-07T00:00:00Z","","" +"NM-10950","129.80999755859375","129.80999755859375","","1996-01-05T00:00:00Z","","0" +"NM-17716","5.559999942779541","5.559999942779541","","1948-07-12T00:00:00Z","","0" +"NM-11952","-0.9300000071525574","-0.9300000071525574","","1939-02-28T00:00:00Z","","0" +"NM-03403","5.960000038146973","5.960000038146973","Z","2000-04-04T00:00:00Z","","0" +"NM-03428","5.929999828338623","5.929999828338623","","2007-08-29T00:00:00Z","","0" +"NM-14265","424.4100036621094","424.4100036621094","","1965-07-01T00:00:00Z","","0" +"NM-25536","195.14999389648438","195.14999389648438","","1986-03-27T00:00:00Z","","0" +"NM-04637","97.80000305175781","97.80000305175781","","1962-11-23T00:00:00Z","","0" +"NM-22757","24.200000762939453","24.200000762939453","","1957-09-21T00:00:00Z","","0" +"NM-11928","-0.47999998927116394","-0.47999998927116394","","1945-11-21T00:00:00Z","","0" +"NM-28009","498.8500061035156","498.8500061035156","S","2015-05-17T00:00:00Z","","0" +"NM-24338","52.70000076293945","52.70000076293945","","1980-09-05T00:00:00Z","","0" +"NM-07364","70.4000015258789","70.4000015258789","","1963-11-20T00:00:00Z","","0" +"NM-03353","50.61000061035156","50.61000061035156","","1992-03-23T00:00:00Z","","0" +"NM-13730","-2.1600000858306885","-2.1600000858306885","","1906-09-09T00:00:00Z","","0" +"NM-28251","66.02999877929688","66.02999877929688","","2001-12-05T00:00:00Z","","0" +"NM-08887","67.47000122070312","67.47000122070312","","1968-01-10T00:00:00Z","","0" +"NM-02689","59.4900016784668","59.4900016784668","","1963-09-30T00:00:00Z","","0" +"NM-02005","8.899999618530273","8.899999618530273","","1965-11-15T00:00:00Z","","0" +"NM-02766","381.54998779296875","381.54998779296875","","1970-01-22T00:00:00Z","","0" +"NM-03685","82.19000244140625","82.19000244140625","A","2011-02-23T00:00:00Z","","0" +"NM-28257","71.19999694824219","71.19999694824219","","1957-05-05T00:00:00Z","","0" +"NM-16578","14.880000114440918","14.880000114440918","","1936-01-15T00:00:00Z","","0" +"NM-03336","10.489999771118164","10.489999771118164","","1992-05-04T00:00:00Z","","0" +"NM-03903","330.20001220703125","330.20001220703125","","1975-06-09T00:00:00Z","","0" +"NM-17716","1.6299999952316284","1.6299999952316284","","1945-04-01T00:00:00Z","","0" +"NM-08467","-35.650001525878906","-35.650001525878906","","1909-03-19T00:00:00Z","","0" +"NM-28255","83.98999786376953","83.98999786376953","","1965-03-15T00:00:00Z","","0" +"NM-02005","6.400000095367432","6.400000095367432","","1962-05-15T00:00:00Z","","0" +"NM-28254","133.5399932861328","133.5399932861328","","1983-08-15T00:00:00Z","","0" +"NM-14705","61.040000915527344","61.040000915527344","","1956-03-05T00:00:00Z","","0" +"NM-03277","149.1699981689453","149.1699981689453","","1991-03-14T00:00:00Z","","0" +"NM-08932","140.74000549316406","140.74000549316406","","1990-09-19T00:00:00Z","","0" +"AB-0180","157.8699951171875","157.8699951171875","","2015-01-06T00:00:00Z","","0" +"NM-14535","86.56999969482422","86.56999969482422","","1979-02-26T00:00:00Z","","0" +"NM-17770","46.47999954223633","46.47999954223633","","1948-11-22T00:00:00Z","","0" +"NM-02147","149","149","","1997-02-18T00:00:00Z","","0" +"NM-02209","110.3499984741211","110.3499984741211","","1971-09-01T00:00:00Z","","0" +"NM-12253","233.1999969482422","233.1999969482422","","1970-01-22T00:00:00Z","","0" +"SB-0472","50","50","","1999-09-19T00:00:00Z","","0" +"NM-08351","22.31999969482422","22.31999969482422","","1966-02-17T00:00:00Z","","0" +"NM-16979","41.83000183105469","41.83000183105469","","1939-03-14T00:00:00Z","","0" +"NM-28256","265.3900146484375","265.3900146484375","","1989-06-25T00:00:00Z","","0" +"NM-13208","117.9000015258789","117.9000015258789","","1957-01-02T00:00:00Z","","0" +"NM-06027","70.86000061035156","70.86000061035156","","1953-05-07T00:00:00Z","","0" +"NM-09333","11.569999694824219","11.569999694824219","","1956-10-03T00:00:00Z","","0" +"NM-02043","7.5","7.5","","1998-01-15T00:00:00Z","","0" +"NM-13118","9.260000228881836","9.260000228881836","","1980-07-15T00:00:00Z","","0" +"NM-05613","99.77999877929688","99.77999877929688","","1944-01-08T00:00:00Z","","0" +"NM-03227","84.87999725341797","84.87999725341797","R","1970-12-09T00:00:00Z","","0" +"NM-13901","4.420000076293945","4.420000076293945","","1962-12-03T00:00:00Z","","0" +"NM-02717","36.59000015258789","36.59000015258789","","1949-05-13T00:00:00Z","","0" +"DA-0135","395","395","","1968-06-25T00:00:00Z","","0" +"NM-02944","70.87999725341797","70.87999725341797","","1978-01-31T00:00:00Z","","0" +"NM-13215","4.739999771118164","4.739999771118164","","1937-06-09T00:00:00Z","","0" +"NM-06726","88.87999725341797","88.87999725341797","","1954-05-25T00:00:00Z","","0" +"NM-03317","54.369998931884766","54.369998931884766","","1960-12-15T00:00:00Z","","0" +"SA-0129","473.989990234375","471.8399963378906","","2010-07-12T00:00:00Z","","2.1500000953674316" +"NM-28257","148.6999969482422","148.6999969482422","","1966-06-05T00:00:00Z","","0" +"NM-24151","44.09000015258789","44.09000015258789","","1998-02-11T00:00:00Z","","0" +"NM-04271","174.91000366210938","174.91000366210938","","1987-10-21T00:00:00Z","","0" +"NM-05721","84.86000061035156","84.86000061035156","","1932-01-24T00:00:00Z","","0" +"NM-04110","54.189998626708984","54.189998626708984","","1961-01-10T00:00:00Z","","0" +"NM-13549","11.699999809265137","11.699999809265137","","1976-02-27T00:00:00Z","","0" +"NM-07675","157.63999938964844","157.63999938964844","","1955-02-02T00:00:00Z","","0" +"NM-04785","164.25","164.25","A","2012-03-10T00:00:00Z","","0" +"HS-027","9.739999771118164","10.229999542236328","","2012-10-26T00:00:00Z","","-0.49000000953674316" +"NM-03420","40.7400016784668","40.7400016784668","Z","1997-12-31T00:00:00Z","","0" +"DE-0084","88.94000244140625","88.94000244140625","","2006-12-11T00:00:00Z","","0" +"NM-11644","61.099998474121094","61.099998474121094","","1955-06-14T00:00:00Z","","0" +"NM-05099","30.770000457763672","30.770000457763672","","1971-02-04T00:00:00Z","","0" +"BC-0008","127.58999633789062","127.58999633789062","","2012-12-10T00:00:00Z","","0" +"MG-034","290.0400085449219","289.0400085449219","","2022-05-24T00:00:00Z","0001-01-01T09:21:00Z","1" +"NM-03337","12.350000381469727","12.350000381469727","X","1997-02-27T00:00:00Z","","0" +"EB-267","16.8700008392334","16.8700008392334","","2006-01-24T00:00:00Z","","0" +"SB-0057","104.83999633789062","104.83999633789062","","1988-02-18T00:00:00Z","","0" +"NM-14573","326.1300048828125","326.1300048828125","","1956-08-14T00:00:00Z","","0" +"NM-10566","84.61000061035156","84.61000061035156","","1960-08-01T00:00:00Z","","0" +"NM-28255","31.709999084472656","31.709999084472656","","2018-12-05T00:00:00Z","","0" +"NM-02004","6.5","6.5","","1960-07-15T00:00:00Z","","0" +"NM-17199","29.790000915527344","29.790000915527344","","1936-01-13T00:00:00Z","","0" +"QU-050","3.950000047683716","4.409999847412109","","2015-06-03T00:00:00Z","","-0.46000000834465027" +"NM-16998","21.030000686645508","21.030000686645508","","1938-02-11T00:00:00Z","","0" +"NM-11319","61.220001220703125","61.220001220703125","","1954-02-05T00:00:00Z","","0" +"NM-28259","111.30000305175781","111.30000305175781","","2021-02-05T00:00:00Z","","0" +"NM-12739","28.600000381469727","28.600000381469727","","1947-11-15T00:00:00Z","","0" +"NM-01543","280.95001220703125","280.95001220703125","","1969-01-14T00:00:00Z","","0" +"NM-03281","88.72000122070312","88.72000122070312","","1980-01-09T00:00:00Z","","0" +"NM-02075","383.7200012207031","383.7200012207031","","1995-12-11T00:00:00Z","","0" +"NM-08958","-29.8799991607666","-29.8799991607666","","1927-06-24T00:00:00Z","","0" +"NM-10755","70.91000366210938","70.91000366210938","","1969-01-16T00:00:00Z","","0" +"NM-02224","90.8499984741211","90.8499984741211","","1952-01-11T00:00:00Z","","0" +"NM-28259","84.62000274658203","84.62000274658203","","1991-11-25T00:00:00Z","","0" +"SB-0299","150.2899932861328","150.2899932861328","","2012-08-15T00:00:00Z","","0" +"NM-07095","84.69000244140625","84.69000244140625","","2008-05-20T00:00:00Z","","0" +"SB-0299","135.52999877929688","135.52999877929688","","1981-09-30T00:00:00Z","","0" +"NM-22965","769.2999877929688","769.2999877929688","Z","1996-05-13T00:00:00Z","","0" +"NM-02880","45.650001525878906","45.650001525878906","","1959-10-08T00:00:00Z","","0" +"NM-28256","250.7899932861328","250.7899932861328","","2020-09-15T00:00:00Z","","0" +"NM-11017","63.959999084472656","63.959999084472656","","1967-01-04T00:00:00Z","","0" +"NM-16601","12","12","","1947-05-26T00:00:00Z","","0" +"NM-03097","289.7300109863281","289.7300109863281","","1983-01-10T00:00:00Z","","0" +"NM-08565","55.2400016784668","55.2400016784668","","1986-01-23T00:00:00Z","","0" +"NM-03307","52.470001220703125","52.470001220703125","","1948-08-10T00:00:00Z","","0" +"NM-11279","50.45000076293945","50.45000076293945","","1951-11-21T00:00:00Z","","0" +"EB-207","132.44000244140625","132.44000244140625","","1959-03-26T00:00:00Z","","0" +"NM-17682","88.98999786376953","88.98999786376953","","1987-02-10T00:00:00Z","","0" +"NM-01925","373.6499938964844","373.6499938964844","","2014-01-16T00:00:00Z","","0" +"NM-25583","68","68","","1992-01-31T00:00:00Z","","0" +"NM-02126","293.6300048828125","293.6300048828125","","1978-01-12T00:00:00Z","","0" +"NM-01194","67.31999969482422","67.31999969482422","","1963-08-27T00:00:00Z","","0" +"NM-02396","9.100000381469727","9.100000381469727","","1968-06-15T00:00:00Z","","0" +"NM-17439","86.87999725341797","86.87999725341797","","1982-03-10T00:00:00Z","","0" +"NM-00146","31.469999313354492","31.469999313354492","","2003-02-05T00:00:00Z","","0" +"NM-00018","50.959999084472656","50.959999084472656","","1972-01-14T00:00:00Z","","0" +"NM-17989","16.739999771118164","16.739999771118164","","1933-05-14T00:00:00Z","","0" +"EB-416","286","286","Z","1996-12-31T00:00:00Z","","0" +"NM-01761","56.34000015258789","56.34000015258789","","1979-01-15T00:00:00Z","","0" +"TV-273","65.69999694824219","63.249996185302734","","2003-04-09T00:00:00Z","","2.450000047683716" +"NM-02349","15.100000381469727","15.100000381469727","","1984-05-15T00:00:00Z","","0" +"NM-14802","99.54000091552734","99.54000091552734","","1970-03-20T00:00:00Z","","0" +"NM-08444","66.47000122070312","66.47000122070312","","1973-01-15T00:00:00Z","","0" +"DE-0066","203.4600067138672","200.8300018310547","","2010-06-21T00:00:00Z","","2.630000114440918" +"NM-02766","359.5799865722656","359.5799865722656","","2004-02-19T00:00:00Z","","0" +"NM-22493","252.85000610351562","252.85000610351562","","1957-05-14T00:00:00Z","","0" +"NM-21370","139.8699951171875","139.8699951171875","","1997-06-01T00:00:00Z","","0" +"NM-02006","6.800000190734863","6.800000190734863","","1986-12-15T00:00:00Z","","0" +"NM-13713","9.319999694824219","9.319999694824219","","1960-11-16T00:00:00Z","","0" +"NM-21178","164.75999450683594","164.75999450683594","","2006-02-20T00:00:00Z","","0" +"NM-28259","82.16999816894531","82.16999816894531","","2005-02-04T00:00:00Z","","0" +"NM-28249","175.35000610351562","175.35000610351562","R","1958-06-24T00:00:00Z","","0" +"NM-04159","19.149999618530273","19.149999618530273","","2013-09-19T00:00:00Z","","0" +"NM-27635","26.520000457763672","26.520000457763672","","1971-01-06T00:00:00Z","","0" +"NM-25019","82.37999725341797","82.37999725341797","","1951-07-28T00:00:00Z","","0" +"NM-03462","137.07000732421875","137.07000732421875","","1947-12-01T00:00:00Z","","0" +"NM-20261","98.87999725341797","98.87999725341797","S","1955-01-14T00:00:00Z","","0" +"NM-02456","96.19999694824219","96.19999694824219","","1972-02-15T00:00:00Z","","0" +"NM-02209","108.12999725341797","108.12999725341797","","1959-06-05T00:00:00Z","","0" +"NM-21360","244.7899932861328","244.7899932861328","","2008-07-03T00:00:00Z","","0" +"NM-04583","52.27000045776367","52.27000045776367","","1945-11-08T00:00:00Z","","0" +"NM-01985","7.400000095367432","7.400000095367432","","1984-06-15T00:00:00Z","","0" +"AB-0124","541.3800048828125","541.3800048828125","","1998-02-20T00:00:00Z","","" +"NM-02487","6.599999904632568","6.599999904632568","","2001-06-15T00:00:00Z","","0" +"NM-05003","49.58000183105469","49.58000183105469","","1972-03-09T00:00:00Z","","0" +"NM-28253","45.470001220703125","45.470001220703125","","1977-04-15T00:00:00Z","","0" +"NM-08189","8.5","8.5","","1976-07-15T00:00:00Z","","0" +"NM-00366","141.89999389648438","141.89999389648438","","1967-05-01T00:00:00Z","","0" +"NM-21571","130.52000427246094","130.52000427246094","","1983-03-15T00:00:00Z","","0" +"NM-02721","45.04999923706055","45.04999923706055","","2010-01-11T00:00:00Z","","0" +"NM-13020","12.9399995803833","12.9399995803833","","1959-04-30T00:00:00Z","","0" +"NM-11105","12.449999809265137","12.449999809265137","","1941-01-18T00:00:00Z","","0" +"QU-067","467.7900085449219","465.8900146484375","","2015-06-02T00:00:00Z","","1.899999976158142" +"NM-00585","45.099998474121094","45.099998474121094","","1991-01-05T00:00:00Z","","0" +"NM-28256","65.38999938964844","65.38999938964844","","1987-01-25T00:00:00Z","","0" +"NM-28254","37.63999938964844","37.63999938964844","","1991-10-25T00:00:00Z","","0" +"NM-12474","130.66000366210938","130.66000366210938","","1981-02-06T00:00:00Z","","0" +"NM-23293","109.05000305175781","109.05000305175781","","1955-12-07T00:00:00Z","","0" +"TO-0316","11.300000190734863","11.300000190734863","","1948-03-24T00:00:00Z","","0" +"NM-02428","65.7699966430664","65.7699966430664","","1982-02-02T00:00:00Z","","0" +"NM-01701","35.95000076293945","35.95000076293945","","2010-03-16T00:00:00Z","","0" +"NM-13112","-9.09000015258789","-9.09000015258789","","1908-06-12T00:00:00Z","","0" +"NM-11784","90.04000091552734","90.04000091552734","","1977-01-07T00:00:00Z","","0" +"NM-01826","107","107","","1961-01-12T00:00:00Z","","0" +"NM-10696","148.17999267578125","148.17999267578125","P","1960-01-11T00:00:00Z","","0" +"NM-03643","223.36000061035156","223.36000061035156","","2013-06-14T00:00:00Z","","0" +"NM-28101","293","293","","2000-10-01T00:00:00Z","","0" +"NM-00229","61.630001068115234","61.630001068115234","","2015-02-09T00:00:00Z","","0" +"NM-00698","98.73999786376953","98.73999786376953","","2013-09-18T00:00:00Z","","0" +"NM-05744","67.20999908447266","67.20999908447266","","1958-01-14T00:00:00Z","","0" +"NM-02017","6.800000190734863","6.800000190734863","","1993-05-15T00:00:00Z","","0" +"SA-0145","79.0999984741211","76.12999725341797","","2013-02-19T00:00:00Z","","2.9700000286102295" +"NM-01291","101.37999725341797","101.37999725341797","","1955-08-09T00:00:00Z","","0" +"NM-25836","8","8","","1993-06-17T00:00:00Z","","0" +"NM-01586","54.22999954223633","54.22999954223633","","1967-02-06T00:00:00Z","","0" +"BC-0259","130.3699951171875","130.3699951171875","","2020-04-24T00:00:00Z","","0" +"NM-28250","98.44000244140625","98.44000244140625","","1970-02-25T00:00:00Z","","0" +"NM-02649","24.719999313354492","24.719999313354492","","1972-02-10T00:00:00Z","","0" +"NM-01269","98.7699966430664","98.7699966430664","","1957-05-07T00:00:00Z","","0" +"SM-0048","86.44000244140625","84.94000244140625","","2006-12-13T00:00:00Z","","1.5" +"NM-01971","8.800000190734863","8.800000190734863","","1997-02-15T00:00:00Z","","0" +"NM-02017","7.5","7.5","","1970-03-15T00:00:00Z","","0" +"NM-02338","70.45999908447266","70.45999908447266","","1993-02-04T00:00:00Z","","0" +"NM-01022","454.07000732421875","454.07000732421875","S","1999-07-06T00:00:00Z","","0" +"NM-17716","-1.409999966621399","-1.409999966621399","","1942-02-12T00:00:00Z","","0" +"NM-28256","135.83999633789062","135.83999633789062","","2006-10-18T00:00:00Z","","0" +"NM-00469","116.97000122070312","116.97000122070312","","1992-01-04T00:00:00Z","","0" +"NM-07275","9.399999618530273","9.399999618530273","","1945-09-13T00:00:00Z","","0" +"DE-0083","89.36000061035156","89.36000061035156","","1995-05-31T00:00:00Z","","0" +"NM-05689","91.7699966430664","91.7699966430664","","1958-01-14T00:00:00Z","","0" +"NM-24836","250.69000244140625","250.69000244140625","","1980-09-03T00:00:00Z","","0" +"NM-00621","52.349998474121094","52.349998474121094","","1954-01-12T00:00:00Z","","0" +"AB-0109","36.29999923706055","36.29999923706055","","2002-01-02T00:00:00Z","","" +"NM-16831","5.269999980926514","5.269999980926514","","1945-06-09T00:00:00Z","","0" +"NM-28256","139.88999938964844","139.88999938964844","","2009-03-25T00:00:00Z","","0" +"NM-03042","117.5","117.5","","1995-01-04T00:00:00Z","","0" +"NM-18547","205.35000610351562","205.35000610351562","","1961-01-18T00:00:00Z","","0" +"NM-20289","44.04999923706055","44.04999923706055","","1945-09-28T00:00:00Z","","0" +"DE-0098","90.5","90.5","","2010-11-15T00:00:00Z","","0" +"NM-21345","148.8300018310547","148.8300018310547","R","1990-05-16T00:00:00Z","","0" +"NM-14310","-12.550000190734863","-12.550000190734863","","1910-12-15T00:00:00Z","","0" +"NM-02101","6.800000190734863","6.800000190734863","","1975-04-15T00:00:00Z","","0" +"NM-02043","5.800000190734863","5.800000190734863","","1999-04-15T00:00:00Z","","0" +"NM-01300","12.420000076293945","12.420000076293945","","1959-01-26T00:00:00Z","","0" +"NM-21652","","","D","2004-09-27T00:00:00Z","","0" +"NM-16832","24.520000457763672","24.520000457763672","","1947-01-21T00:00:00Z","","0" +"NM-01986","7","7","","1990-01-15T00:00:00Z","","0" +"NM-24963","237.8000030517578","237.8000030517578","","1982-07-13T00:00:00Z","","0" +"NM-11734","-65.68000030517578","-65.68000030517578","","1907-12-20T00:00:00Z","","0" +"SB-0235","115.5","115.5","","1966-09-02T00:00:00Z","","0" +"NM-26642","198.92999267578125","198.92999267578125","","2012-08-15T00:00:00Z","","0" +"NM-13315","33.380001068115234","33.380001068115234","","1953-01-29T00:00:00Z","","0" +"NM-17271","31.979999542236328","31.979999542236328","","1933-05-16T00:00:00Z","","0" +"NM-02256","6.599999904632568","6.599999904632568","","1951-02-15T00:00:00Z","","0" +"NM-28255","21.229999542236328","21.229999542236328","","1955-10-15T00:00:00Z","","0" +"NM-02758","261.2200012207031","261.2200012207031","","1946-05-15T00:00:00Z","","0" +"NM-20331","22.100000381469727","22.100000381469727","R","1949-11-01T00:00:00Z","","0" +"NM-00709","27.100000381469727","27.100000381469727","","2010-03-22T00:00:00Z","","0" +"NM-06344","171.3300018310547","171.3300018310547","","1948-09-23T00:00:00Z","","0" +"NM-07149","99.72000122070312","99.72000122070312","","2008-04-16T00:00:00Z","","0" +"WL-0086","45.125","43.3650016784668","","1989-06-08T00:00:00Z","","1.7599999904632568" +"NM-02586","271.7799987792969","271.7799987792969","","1970-04-01T00:00:00Z","","0" +"NM-08758","9.880000114440918","9.880000114440918","","1947-11-10T00:00:00Z","","0" +"NM-18045","30.950000762939453","30.950000762939453","","1972-01-14T00:00:00Z","","0" +"NM-05972","28.200000762939453","28.200000762939453","","1946-03-28T00:00:00Z","","0" +"DA-0090","228","228","","1965-01-01T00:00:00Z","","0" +"NM-03491","205.14999389648438","205.14999389648438","P","1982-02-07T00:00:00Z","","0" +"NM-00185","13.399999618530273","13.399999618530273","","1984-03-15T00:00:00Z","","0" +"NM-02352","11","11","","1995-02-22T00:00:00Z","","0" +"NM-02758","285.0400085449219","285.0400085449219","Z","1994-09-14T00:00:00Z","","0" +"EB-271","47.65999984741211","47.65999984741211","","1993-01-13T00:00:00Z","","0" +"NM-13203","44.619998931884766","44.619998931884766","","1981-02-12T00:00:00Z","","0" +"AB-0093","499.510009765625","499.510009765625","","2010-03-09T00:00:00Z","","" +"NM-01053","65.58999633789062","65.58999633789062","","1977-01-27T00:00:00Z","","0" +"NM-02101","10.699999809265137","10.699999809265137","","1965-11-15T00:00:00Z","","0" +"NM-02996","58.75","58.75","","1987-01-10T00:00:00Z","","0" +"NM-04775","63.630001068115234","63.630001068115234","","1942-01-10T00:00:00Z","","0" +"NM-02352","7.599999904632568","7.599999904632568","","1983-04-15T00:00:00Z","","0" +"AB-0053","47.45000076293945","47.45000076293945","","2006-03-09T00:00:00Z","","" +"NM-28259","112.37000274658203","112.37000274658203","","1965-01-25T00:00:00Z","","0" +"NM-03369","56.88999938964844","56.88999938964844","","1989-08-30T00:00:00Z","","0" +"DE-0108","39.560001373291016","39.560001373291016","","2010-07-27T00:00:00Z","","0" +"SV-0081","645.5999755859375","643.9332885742188","","2015-05-09T00:00:00Z","","1.6666666269302368" +"NM-22566","132.2100067138672","132.2100067138672","","1985-03-01T00:00:00Z","","0" +"EB-338","186.67999267578125","186.67999267578125","","2013-07-11T00:00:00Z","","0" +"NM-00075","40.040000915527344","40.040000915527344","","1961-01-17T00:00:00Z","","0" +"NM-13711","272.75","272.75","","1954-03-12T00:00:00Z","","0" +"NM-13516","-84.16000366210938","-84.16000366210938","","1906-06-25T00:00:00Z","","0" +"NM-05446","67.11000061035156","67.11000061035156","","1950-01-10T00:00:00Z","","0" +"NM-04998","73.83000183105469","73.83000183105469","","1954-01-04T00:00:00Z","","0" +"NM-02518","10.5","10.5","","1965-05-15T00:00:00Z","","0" +"NM-19828","22.68000030517578","22.68000030517578","","1943-02-03T00:00:00Z","","0" +"NM-19432","257.6400146484375","257.6400146484375","T","1983-12-01T00:00:00Z","","0" +"NM-10293","89.38999938964844","89.38999938964844","","1976-05-19T00:00:00Z","","0" +"NM-08524","14.800000190734863","14.800000190734863","","1997-05-15T00:00:00Z","","0" +"NM-01846","4.800000190734863","4.800000190734863","","1999-02-18T00:00:00Z","","0" +"DE-0304","44.54999923706055","44.54999923706055","","2010-10-07T00:00:00Z","","0" +"NM-11720","-16.610000610351562","-16.610000610351562","","1948-01-25T00:00:00Z","","0" +"AB-0065","164.08999633789062","164.08999633789062","","1996-09-20T00:00:00Z","","" +"NM-16592","35.31999969482422","35.31999969482422","","1972-01-04T00:00:00Z","","0" +"NM-28256","219.99000549316406","219.99000549316406","","1991-08-05T00:00:00Z","","0" +"NM-25680","-103.5999984741211","-103.5999984741211","","1989-02-14T00:00:00Z","","0" +"NM-02019","106.68000030517578","106.68000030517578","","1963-01-04T00:00:00Z","","0" +"DE-0189","","","D","2016-07-27T00:00:00Z","","0" +"NM-21146","23.34000015258789","23.34000015258789","","1949-02-17T00:00:00Z","","0" +"NM-01887","108.16999816894531","108.16999816894531","","2004-05-17T00:00:00Z","","0" +"DE-0111","34.779998779296875","34.779998779296875","","2007-06-18T00:00:00Z","","0" +"NM-00534","68.38999938964844","68.38999938964844","","2013-12-11T00:00:00Z","","0" +"NM-02136","","","D","2015-02-27T00:00:00Z","","0" +"NM-27293","98.16000366210938","98.16000366210938","","1998-02-05T00:00:00Z","","0" +"NM-27733","73.04000091552734","73.04000091552734","","1995-03-21T00:00:00Z","","0" +"NM-27432","34.09000015258789","34.09000015258789","","1937-10-20T00:00:00Z","","0" +"NM-05554","98.44000244140625","98.44000244140625","","1954-11-12T00:00:00Z","","0" +"AB-0110","36.13999938964844","36.13999938964844","","2001-09-25T00:00:00Z","","" +"NM-20123","41","41","","1945-11-29T00:00:00Z","","0" +"SO-0249","8.710000038146973","7.5","","2020-12-22T00:00:00Z","0001-01-01T16:16:00Z","1.2100000381469727" +"NM-12335","44.06999969482422","44.06999969482422","","1952-01-24T00:00:00Z","","0" +"NM-02162","69.86000061035156","69.86000061035156","","1943-07-09T00:00:00Z","","0" +"NM-18670","51.869998931884766","51.869998931884766","","1982-02-25T00:00:00Z","","0" +"DE-0109","34.40999984741211","34.40999984741211","","2006-10-30T00:00:00Z","","0" +"NM-03133","357.6499938964844","357.6499938964844","","1985-01-14T00:00:00Z","","0" +"NM-16863","43.279998779296875","43.279998779296875","P","1955-03-17T00:00:00Z","","0" +"WL-0109","155.88999938964844","154.02000427246094","P","2018-08-01T00:00:00Z","0001-01-01T11:06:00Z","1.8700000047683716" +"NM-06268","9.899999618530273","9.899999618530273","","1950-11-15T00:00:00Z","","0" +"NM-18922","388.010009765625","388.010009765625","","1972-01-05T00:00:00Z","","0" +"NM-11560","76.1500015258789","76.1500015258789","","1948-05-14T00:00:00Z","","0" +"NM-02349","17.899999618530273","17.899999618530273","","2000-02-15T00:00:00Z","","0" +"NM-02109","31.360000610351562","31.360000610351562","","1956-03-14T00:00:00Z","","0" +"SB-0102","306.8999938964844","306.8999938964844","","1975-10-28T00:00:00Z","","0" +"NM-02383","42.45000076293945","42.45000076293945","","1975-03-12T00:00:00Z","","0" +"NM-11236","49.72999954223633","49.72999954223633","","1984-02-09T00:00:00Z","","0" +"NM-11650","89.61000061035156","89.61000061035156","","1947-11-07T00:00:00Z","","0" +"UC-0038","167.8300018310547","167.8300018310547","","1978-01-25T00:00:00Z","","0" +"NM-27541","20.860000610351562","20.860000610351562","","1951-03-27T00:00:00Z","","0" +"NM-21219","5.679999828338623","5.679999828338623","","1974-01-04T00:00:00Z","","0" +"NM-11778","69.5","69.5","","1955-03-18T00:00:00Z","","0" +"NM-03372","154.24000549316406","154.24000549316406","","2000-01-10T00:00:00Z","","0" +"NM-15758","135.69000244140625","135.69000244140625","","1963-03-05T00:00:00Z","","0" +"NM-01140","243.3800048828125","243.3800048828125","","2007-04-24T00:00:00Z","","0" +"NM-01840","226.72000122070312","226.72000122070312","","1993-02-09T00:00:00Z","","0" +"EB-321","134.24000549316406","133.74000549316406","","2017-10-18T00:00:00Z","","0.5" +"DE-0082","91.76000213623047","91.76000213623047","","2000-02-14T00:00:00Z","","0" +"NM-17702","21.540000915527344","21.540000915527344","","1939-01-24T00:00:00Z","","0" +"NM-11756","73.13999938964844","73.13999938964844","","1949-01-26T00:00:00Z","","0" +"NM-03022","84.51000213623047","84.51000213623047","","1989-01-06T00:00:00Z","","0" +"NM-02799","15.430000305175781","15.430000305175781","","1987-02-12T00:00:00Z","","0" +"NM-07019","454.8999938964844","454.8999938964844","","2009-02-10T00:00:00Z","","0" +"NM-17716","4.920000076293945","4.920000076293945","","1946-08-06T00:00:00Z","","0" +"NM-01846","6.900000095367432","6.900000095367432","","1985-02-01T00:00:00Z","","0" +"WL-0215","121.30000305175781","119.25","","2021-11-04T00:00:00Z","0001-01-01T13:20:00Z","2.049999952316284" +"NM-27393","133.47999572753906","133.47999572753906","","2009-01-14T00:00:00Z","","0" +"NM-03353","54.70000076293945","54.70000076293945","","1990-10-02T00:00:00Z","","0" +"UC-0086","248.32000732421875","248.32000732421875","","1991-01-23T00:00:00Z","","0" +"NM-02552","","","D","2000-02-25T00:00:00Z","","0" +"NM-20767","79.9800033569336","79.9800033569336","","1955-10-31T00:00:00Z","","0" +"UC-0109","111.66000366210938","111.66000366210938","R","2009-02-11T00:00:00Z","","0" +"EB-127","212.8300018310547","212.8300018310547","","1973-06-06T00:00:00Z","","0" +"NM-12734","44.33000183105469","44.33000183105469","P","1961-03-24T00:00:00Z","","0" +"NM-01878","73.63999938964844","73.63999938964844","","1985-12-16T00:00:00Z","","0" +"NM-15138","143.22999572753906","143.22999572753906","","1989-12-06T00:00:00Z","","0" +"NM-02772","126.25","126.25","","1975-05-01T00:00:00Z","","0" +"NM-07559","56.349998474121094","56.349998474121094","","1960-01-23T00:00:00Z","","0" +"NM-05305","109.31999969482422","109.31999969482422","","1966-01-08T00:00:00Z","","0" +"NM-20451","195.10000610351562","195.10000610351562","","2007-02-05T00:00:00Z","","0" +"NM-00974","340.9800109863281","340.9800109863281","","1955-03-23T00:00:00Z","","0" +"NM-20597","252.89999389648438","252.89999389648438","","1972-02-03T00:00:00Z","","0" +"NM-02349","9","9","","1948-09-15T00:00:00Z","","0" +"NM-02527","10","10","","1998-03-15T00:00:00Z","","0" +"NM-21882","368","368","","1955-01-01T00:00:00Z","","0" +"NM-21714","31.010000228881836","31.010000228881836","","2015-11-05T00:00:00Z","","0" +"NM-28259","192.86000061035156","192.86000061035156","","2013-08-26T00:00:00Z","","0" +"NM-01955","7.199999809265137","7.199999809265137","","1956-12-15T00:00:00Z","","0" +"NM-06268","9","9","","1948-07-15T00:00:00Z","","0" +"NM-27932","109.7699966430664","109.7699966430664","P","1979-12-06T00:00:00Z","","0" +"NM-02382","53.70000076293945","53.70000076293945","","1946-01-11T00:00:00Z","","0" +"SB-0442","171","171","","2009-08-05T00:00:00Z","","0" +"NM-02484","77.94000244140625","77.94000244140625","","1983-11-17T00:00:00Z","","0" +"NM-02732","94.0199966430664","94.0199966430664","R","1960-04-07T00:00:00Z","","0" +"NM-02390","181.6999969482422","181.6999969482422","P","1969-01-29T00:00:00Z","","0" +"NM-00644","148.39999389648438","148.39999389648438","","1966-07-01T00:00:00Z","","0" +"NM-02449","157.3000030517578","157.3000030517578","","1992-01-24T00:00:00Z","","0" +"NM-02591","15.800000190734863","15.800000190734863","","1972-05-15T00:00:00Z","","0" +"NM-03396","13.010000228881836","13.010000228881836","","1991-12-03T00:00:00Z","","0" +"EB-266","7.090000152587891","7.090000152587891","","2012-03-27T00:00:00Z","","0" +"BC-0094","28.559999465942383","28.559999465942383","","2015-03-03T00:00:00Z","","0" +"NM-05267","64.75","64.75","","1945-01-06T00:00:00Z","","0" +"NM-13507","-51.81999969482422","-51.81999969482422","","1910-12-17T00:00:00Z","","0" +"NM-01955","3.700000047683716","3.700000047683716","","1980-08-15T00:00:00Z","","0" +"NM-28250","90.83999633789062","90.83999633789062","","1990-07-25T00:00:00Z","","0" +"NM-00443","177.0500030517578","177.0500030517578","R","1966-03-30T00:00:00Z","","0" +"NM-03092","287.6000061035156","287.6000061035156","","1999-08-31T00:00:00Z","","0" +"NM-03693","17.6200008392334","17.6200008392334","","1983-01-26T00:00:00Z","","0" +"NM-10095","94.47000122070312","94.47000122070312","","1961-03-15T00:00:00Z","","0" +"NM-02658","260.8999938964844","260.8999938964844","","1964-01-05T00:00:00Z","","0" +"NM-02630","67.80999755859375","67.80999755859375","P","1953-07-23T00:00:00Z","","0" +"NM-22954","119.4800033569336","119.4800033569336","","1954-06-07T00:00:00Z","","0" +"NM-23149","92.97000122070312","92.97000122070312","","1960-11-15T00:00:00Z","","0" +"NM-02422","153.8699951171875","153.8699951171875","","1966-01-28T00:00:00Z","","0" +"SB-0299","148.41000366210938","148.41000366210938","","2016-11-05T00:00:00Z","","0" +"NM-01540","29.68000030517578","29.68000030517578","","2016-07-18T00:00:00Z","","0" +"NM-07491","304.29998779296875","304.29998779296875","","1987-01-21T00:00:00Z","","0" +"JM-046","102.47000122070312","101.01000213623047","","2013-10-23T00:00:00Z","","1.4600000381469727" +"NM-28253","18.34000015258789","18.34000015258789","","1959-10-25T00:00:00Z","","0" +"DE-0090","91.5999984741211","91.5999984741211","","1999-10-26T00:00:00Z","","0" +"NM-05347","7.400000095367432","7.400000095367432","","1988-04-15T00:00:00Z","","0" +"NM-01829","311.6099853515625","311.6099853515625","","1982-01-10T00:00:00Z","","0" +"NM-02384","8.199999809265137","8.199999809265137","","1976-07-15T00:00:00Z","","0" +"SB-0622","336.1000061035156","336.1000061035156","","1959-01-09T00:00:00Z","","0" +"NM-20261","104.47000122070312","104.47000122070312","","1965-01-15T00:00:00Z","","0" +"NM-10635","28.299999237060547","28.299999237060547","","1938-01-29T00:00:00Z","","0" +"BC-0294","170.35000610351562","170.35000610351562","","2018-12-20T00:00:00Z","","0" +"NM-28018","485.8299865722656","485.8299865722656","S","2015-05-06T00:00:00Z","","0" +"NM-26733","138.61000061035156","138.61000061035156","","1958-02-18T00:00:00Z","","0" +"NM-17280","23.530000686645508","23.530000686645508","","1932-05-29T00:00:00Z","","0" +"NM-08990","85.25","85.25","","1961-08-11T00:00:00Z","","0" +"NM-24987","98.55000305175781","98.55000305175781","","1960-12-14T00:00:00Z","","0" +"NM-04832","136.72999572753906","136.72999572753906","","1975-01-15T00:00:00Z","","0" +"NM-07719","39.68000030517578","39.68000030517578","","1941-08-11T00:00:00Z","","0" +"NM-16071","139.05999755859375","139.05999755859375","","1965-07-02T00:00:00Z","","0" +"TV-275","248.4199981689453","246.1199951171875","","2006-04-11T00:00:00Z","","2.299999952316284" +"NM-21293","13.4399995803833","13.4399995803833","","1959-11-09T00:00:00Z","","0" +"NM-02109","28.3799991607666","28.3799991607666","P","1953-01-22T00:00:00Z","","0" +"NM-24874","55.060001373291016","55.060001373291016","","1971-02-16T00:00:00Z","","0" +"NM-12014","45.130001068115234","45.130001068115234","","1950-09-20T00:00:00Z","","0" +"NM-10524","66.16000366210938","66.16000366210938","","1969-01-16T00:00:00Z","","0" +"NM-01886","56.310001373291016","56.310001373291016","","2002-12-16T00:00:00Z","","0" +"NM-02979","22.420000076293945","22.420000076293945","","1964-01-16T00:00:00Z","","0" +"NM-16675","15.8100004196167","15.8100004196167","","1933-03-12T00:00:00Z","","0" +"NM-04454","6.460000038146973","6.460000038146973","","1975-06-02T00:00:00Z","","0" +"DE-0060","193.86000061035156","191.14999389648438","","1994-05-01T00:00:00Z","","2.7100000381469727" +"NM-11729","56.790000915527344","56.790000915527344","R","1966-02-17T00:00:00Z","","0" +"NM-28116","","","F","1931-09-16T00:00:00Z","","0" +"SA-0053","86.30000305175781","85.4000015258789","R","2008-09-23T00:00:00Z","","0.8999999761581421" +"EB-130","180.6300048828125","180.1300048828125","","1979-09-19T00:00:00Z","","0.5" +"NM-02114","22.719999313354492","22.719999313354492","","1964-01-17T00:00:00Z","","0" +"NM-10014","9.609999656677246","9.609999656677246","","1946-01-11T00:00:00Z","","0" +"NM-14351","589.5700073242188","589.5700073242188","","1982-06-18T00:00:00Z","","0" +"NM-18429","287.7799987792969","287.7799987792969","","2003-11-05T00:00:00Z","","0" +"NM-28254","44.41999816894531","44.41999816894531","","1976-02-05T00:00:00Z","","0" +"NM-17271","37.68000030517578","37.68000030517578","","1941-07-01T00:00:00Z","","0" +"NM-03903","329.1199951171875","329.1199951171875","","1975-10-23T00:00:00Z","","0" +"NM-03155","388.92999267578125","388.92999267578125","","1990-01-04T00:00:00Z","","0" +"NM-28259","155.58999633789062","155.58999633789062","","1965-04-25T00:00:00Z","","0" +"NM-15930","55.93000030517578","55.93000030517578","","1980-01-31T00:00:00Z","","0" +"UC-0004","136.25999450683594","136.25999450683594","","2010-08-26T00:00:00Z","","0" +"WL-0089","81.45833587646484","78.90833282470703","","2003-01-24T00:00:00Z","","2.549999952316284" +"NM-14192","33.72999954223633","33.72999954223633","","1947-05-12T00:00:00Z","","0" +"NM-02340","48.83000183105469","48.83000183105469","","1994-02-03T00:00:00Z","","0" +"NM-02174","86.8499984741211","86.8499984741211","","2002-02-06T00:00:00Z","","0" +"NM-07145","87.27999877929688","87.27999877929688","","2007-01-09T00:00:00Z","","0" +"NM-02152","7.5","7.5","","1996-09-15T00:00:00Z","","0" +"NM-00534","46.040000915527344","46.040000915527344","","1968-01-03T00:00:00Z","","0" +"NM-11754","117.58000183105469","117.58000183105469","","1960-01-14T00:00:00Z","","0" +"NM-06581","65.22000122070312","65.22000122070312","","1951-03-22T00:00:00Z","","0" +"NM-02622","172.3000030517578","172.3000030517578","","1979-09-01T00:00:00Z","","0" +"TB-0052","","","D","2009-08-19T00:00:00Z","","1.5" +"NM-00961","360.9599914550781","360.9599914550781","","2016-01-25T00:00:00Z","","0" +"SM-0172","279.7799987792969","279.7799987792969","","2008-04-16T00:00:00Z","","0" +"NM-17716","1.559999942779541","1.559999942779541","","1945-03-10T00:00:00Z","","0" +"TV-272","264.17999267578125","261.3999938964844","","2006-10-02T00:00:00Z","","2.7799999713897705" +"BC-0303","42.56999969482422","42.56999969482422","","2019-04-18T00:00:00Z","","0" +"NM-10677","19.950000762939453","19.950000762939453","","1957-01-09T00:00:00Z","","0" +"NM-03421","41.529998779296875","41.529998779296875","Z","1998-01-30T00:00:00Z","","0" +"NM-28257","22.389999389648438","22.389999389648438","","1987-09-15T00:00:00Z","","0" +"NM-13282","-54.5099983215332","-54.5099983215332","","1963-01-29T00:00:00Z","","0" +"NM-17041","24.889999389648438","24.889999389648438","","1939-09-21T00:00:00Z","","0" +"NM-28259","66.55000305175781","66.55000305175781","","1955-11-05T00:00:00Z","","0" +"NM-03416","75.93000030517578","75.93000030517578","","2012-03-06T00:00:00Z","","0" +"NM-02005","4.5","4.5","","1989-06-15T00:00:00Z","","0" +"NM-02487","8.199999809265137","8.199999809265137","","2002-04-15T00:00:00Z","","0" +"NM-01584","70.94999694824219","70.94999694824219","","1982-02-09T00:00:00Z","","0" +"NM-17083","66.9800033569336","66.9800033569336","","1982-03-12T00:00:00Z","","0" +"NM-01985","8.800000190734863","8.800000190734863","","1968-09-15T00:00:00Z","","0" +"NM-14359","50.72999954223633","50.72999954223633","S","1948-07-13T00:00:00Z","","0" +"NM-01881","136.22000122070312","136.22000122070312","","1967-01-18T00:00:00Z","","0" +"NM-08567","84.86000061035156","84.86000061035156","","1963-08-13T00:00:00Z","","0" +"NM-17618","10.479999542236328","10.479999542236328","","1946-07-26T00:00:00Z","","0" +"UC-0034","93.9800033569336","93.9800033569336","","2005-03-29T00:00:00Z","","0" +"NM-01530","145.9499969482422","145.9499969482422","","1978-08-08T00:00:00Z","","0" +"NM-01769","38.560001373291016","38.560001373291016","","1952-11-10T00:00:00Z","","0" +"NM-05972","30.559999465942383","30.559999465942383","","1948-09-20T00:00:00Z","","0" +"TV-181","55.70000076293945","61.54999923706055","","2012-12-13T00:00:00Z","","-5.849999904632568" +"NM-02669","59.16999816894531","59.16999816894531","","1984-04-01T00:00:00Z","","0" +"NM-04103","46.650001525878906","46.650001525878906","R","1953-03-16T00:00:00Z","","0" +"NM-23414","173.97999572753906","173.97999572753906","","1993-04-22T00:00:00Z","","0" +"DE-0111","37.650001525878906","37.650001525878906","","2009-11-23T00:00:00Z","","0" +"NM-20325","212.1999969482422","212.1999969482422","","1969-02-27T00:00:00Z","","0" +"NM-14787","93.30999755859375","93.30999755859375","","1956-03-01T00:00:00Z","","0" +"NM-14770","45.2599983215332","45.2599983215332","","1963-01-16T00:00:00Z","","0" +"NM-10635","28.469999313354492","28.469999313354492","","1937-10-16T00:00:00Z","","0" +"NM-02270","24.030000686645508","24.030000686645508","","1961-07-27T00:00:00Z","","0" +"NM-07223","88.47000122070312","88.47000122070312","","1986-03-21T00:00:00Z","","0" +"NM-13060","-27.56999969482422","-27.56999969482422","","1907-03-15T00:00:00Z","","0" +"NM-28252","70.5","70.5","","1978-09-15T00:00:00Z","","0" +"NM-11695","159.2100067138672","159.2100067138672","","1979-03-09T00:00:00Z","","0" +"NM-22619","387.25","387.25","","2014-01-29T00:00:00Z","","0" +"NM-11518","37.52000045776367","37.52000045776367","","1929-11-12T00:00:00Z","","0" +"SM-0019","200.38999938964844","199.2899932861328","","2005-12-08T00:00:00Z","","1.100000023841858" +"NM-23203","16.700000762939453","16.700000762939453","","2008-09-29T00:00:00Z","","0" +"NM-17106","50.36000061035156","50.36000061035156","","1954-05-22T00:00:00Z","","0" +"NM-03937","62.2400016784668","62.2400016784668","","1966-01-14T00:00:00Z","","0" +"NM-01040","100.87999725341797","100.87999725341797","","1986-10-07T00:00:00Z","","0" +"BC-0025","71.30999755859375","71.30999755859375","","2013-03-22T00:00:00Z","","0" +"NM-06551","76.30000305175781","76.30000305175781","","1947-01-09T00:00:00Z","","0" +"NM-01491","123.81999969482422","123.81999969482422","","2003-08-13T00:00:00Z","","0" +"NM-02501","63.65999984741211","63.65999984741211","P","1992-06-30T00:00:00Z","","0" +"NM-28255","154.7100067138672","154.7100067138672","","1982-08-05T00:00:00Z","","0" +"NM-19765","283.3500061035156","283.3500061035156","","1981-05-05T00:00:00Z","","0" +"NM-05790","85.7300033569336","85.7300033569336","","1971-05-18T00:00:00Z","","0" +"NM-16951","37.04999923706055","37.04999923706055","","1948-09-28T00:00:00Z","","0" +"NM-01989","9.479999542236328","9.479999542236328","","1987-02-09T00:00:00Z","","0" +"NM-00200","71.66999816894531","71.66999816894531","","1983-01-05T00:00:00Z","","0" +"EB-483","415.04998779296875","415.04998779296875","Z","2007-05-31T00:00:00Z","","0" +"NM-02441","72.75","72.75","","2005-11-02T00:00:00Z","","0" +"DE-0271","86.33000183105469","86.33000183105469","","2019-09-11T00:00:00Z","","0" +"NM-28378","23.520000457763672","23.520000457763672","","2013-09-09T00:00:00Z","","0" +"NM-17696","5.909999847412109","5.909999847412109","","1982-10-21T00:00:00Z","","0" +"NM-08189","10.399999618530273","10.399999618530273","","1974-11-15T00:00:00Z","","0" +"NM-07159","84.63999938964844","84.63999938964844","","2006-04-12T00:00:00Z","","0" +"NM-09103","77.33999633789062","77.33999633789062","","1966-03-10T00:00:00Z","","0" +"NM-24430","-168.10000610351562","-168.10000610351562","R","1981-01-18T00:00:00Z","","0" +"NM-10063","8.899999618530273","8.899999618530273","","1972-01-31T00:00:00Z","","0" +"NM-14225","9.8100004196167","9.8100004196167","","1963-01-15T00:00:00Z","","0" +"NM-01558","48.95000076293945","48.95000076293945","","2007-05-15T00:00:00Z","","0" +"NM-28257","13.539999961853027","13.539999961853027","","1972-02-05T00:00:00Z","","0" +"NM-28253","6.670000076293945","6.670000076293945","","1957-01-15T00:00:00Z","","0" +"NM-21181","8.5","8.5","","1977-11-15T00:00:00Z","","0" +"NM-00665","194.80999755859375","194.80999755859375","","2014-09-16T00:00:00Z","","0" +"NM-04585","128.35000610351562","128.35000610351562","","1956-09-15T00:00:00Z","","0" +"NM-20904","43.2400016784668","43.2400016784668","","1942-01-22T00:00:00Z","","0" +"NM-10288","256.6600036621094","256.6600036621094","","1970-01-05T00:00:00Z","","0" +"NM-17295","28.479999542236328","28.479999542236328","","1933-06-10T00:00:00Z","","0" +"NM-00366","155.88999938964844","155.88999938964844","","1970-09-01T00:00:00Z","","0" +"NM-00094","2.740000009536743","2.740000009536743","","1960-06-05T00:00:00Z","","0" +"EB-300","198.38999938964844","198.38999938964844","","2016-08-01T00:00:00Z","","0" +"NM-16596","36.31999969482422","36.31999969482422","","1962-01-16T00:00:00Z","","0" +"NM-04350","256.3999938964844","256.3999938964844","","1980-01-03T00:00:00Z","","0" +"NM-27253","38.02000045776367","38.02000045776367","","1984-01-03T00:00:00Z","","0" +"NM-11756","140.9499969482422","140.9499969482422","","1979-02-28T00:00:00Z","","0" +"EB-691","25.889999389648438","24.139999389648438","","2015-10-05T00:00:00Z","","1.75" +"NM-22769","467","467","","1991-09-09T00:00:00Z","","0" +"NM-17716","3.700000047683716","3.700000047683716","","1945-09-03T00:00:00Z","","0" +"NM-09081","27.799999237060547","27.799999237060547","","1935-04-01T00:00:00Z","","0" +"NM-28257","78.30000305175781","78.30000305175781","","1976-05-05T00:00:00Z","","0" +"NM-01528","89.38999938964844","89.38999938964844","","1970-07-29T00:00:00Z","","0" +"NM-13817","-10.819999694824219","-10.819999694824219","","1909-06-07T00:00:00Z","","0" +"DE-0118","37.04999923706055","37.04999923706055","","2005-11-29T00:00:00Z","","0" +"NM-13761","-2.440000057220459","-2.440000057220459","","1908-03-25T00:00:00Z","","0" +"NM-22045","673","673","","1973-01-01T00:00:00Z","","0" +"NM-07027","135.33999633789062","135.33999633789062","","1977-12-05T00:00:00Z","","0" +"NM-04178","77.2300033569336","77.2300033569336","P","1959-05-06T00:00:00Z","","0" +"NM-02669","54.27000045776367","54.27000045776367","","1992-11-19T00:00:00Z","","0" +"NM-26464","7.840000152587891","7.840000152587891","","2004-02-19T00:00:00Z","","0" +"NM-02487","8","8","","1986-05-15T00:00:00Z","","0" +"NM-23472","32.47999954223633","32.47999954223633","","1984-03-29T00:00:00Z","","0" +"NM-10063","6.639999866485596","6.639999866485596","","1983-08-22T00:00:00Z","","0" +"NM-14215","-3.309999942779541","-3.309999942779541","","1913-07-13T00:00:00Z","","0" +"EB-416","26.329999923706055","26.329999923706055","Z","1984-01-31T00:00:00Z","","0" +"NM-28257","54.400001525878906","54.400001525878906","","1996-05-25T00:00:00Z","","0" +"NM-06704","469.70001220703125","469.70001220703125","","2011-10-13T00:00:00Z","","0" +"DE-0122","37.189998626708984","37.189998626708984","","2002-11-06T00:00:00Z","","0" +"NM-03340","7.590000152587891","7.590000152587891","","2014-02-26T00:00:00Z","","0" +"NM-05977","91.6500015258789","91.6500015258789","","1934-12-30T00:00:00Z","","0" +"NM-00575","74.31999969482422","74.31999969482422","","2003-08-25T00:00:00Z","","0" +"SO-0237","6.079999923706055","5.71999979019165","","2021-01-13T00:00:00Z","0001-01-01T12:06:00Z","0.36000001430511475" +"NM-01971","7","7","","1950-07-15T00:00:00Z","","0" +"NM-23203","16.5","16.5","","2008-06-26T00:00:00Z","","0" +"NM-02256","4.400000095367432","4.400000095367432","","1985-06-15T00:00:00Z","","0" +"NM-01194","66.25","66.25","","1994-02-01T00:00:00Z","","0" +"NM-01295","122.20999908447266","122.20999908447266","","1954-06-10T00:00:00Z","","0" +"NM-01971","7.5","7.5","","1985-03-15T00:00:00Z","","0" +"NM-00506","72.93000030517578","72.93000030517578","","1996-01-04T00:00:00Z","","0" +"NM-13821","-3.309999942779541","-3.309999942779541","","1911-12-18T00:00:00Z","","0" +"NM-10010","127.37000274658203","127.37000274658203","","1952-01-10T00:00:00Z","","0" +"NM-28254","23.700000762939453","23.700000762939453","","1995-11-15T00:00:00Z","","0" +"NM-17271","36.4900016784668","36.4900016784668","","1941-10-01T00:00:00Z","","0" +"NM-03007","98.30000305175781","98.30000305175781","","2009-10-26T00:00:00Z","","0" +"NM-00638","35.31999969482422","35.31999969482422","","1950-01-16T00:00:00Z","","0" +"TV-170","209.6199951171875","207.6199951171875","","2007-05-03T00:00:00Z","","2" +"DE-0368","60.61000061035156","57.9900016784668","","2013-10-15T00:00:00Z","","2.619999885559082" +"NM-22959","200","200","","1973-05-01T00:00:00Z","","0" +"AB-0054","44.869998931884766","44.869998931884766","","2001-04-18T00:00:00Z","","" +"NM-02642","47.04999923706055","47.04999923706055","","1949-01-13T00:00:00Z","","0" +"NM-03517","70.16999816894531","70.16999816894531","","1976-02-12T00:00:00Z","","0" +"NM-28254","31.6200008392334","31.6200008392334","","1974-12-05T00:00:00Z","","0" +"NM-04564","93.73999786376953","93.73999786376953","","1956-07-16T00:00:00Z","","0" +"NM-28257","30.149999618530273","30.149999618530273","","2009-04-15T00:00:00Z","","0" +"AB-0111","34.779998779296875","34.779998779296875","","2008-05-05T00:00:00Z","","" +"EB-336","208.97999572753906","208.97999572753906","","2015-01-16T00:00:00Z","","0" +"NM-13797","18.770000457763672","18.770000457763672","","1957-12-19T00:00:00Z","","0" +"NM-21567","5.099999904632568","5.099999904632568","Z","2009-01-15T00:00:00Z","","0" +"NM-02043","6.5","6.5","","1951-09-15T00:00:00Z","","0" +"NM-00572","93.12999725341797","93.12999725341797","","2006-01-05T00:00:00Z","","0" +"NM-11299","91.61000061035156","91.61000061035156","P","1966-02-09T00:00:00Z","","0" +"NM-12992","289.7799987792969","289.7799987792969","","1979-02-01T00:00:00Z","","0" +"NM-17716","1.8600000143051147","1.8600000143051147","","1943-08-07T00:00:00Z","","0" +"NM-03907","24.219999313354492","24.219999313354492","","1955-01-20T00:00:00Z","","0" +"BC-0398","","17.239999771118164","","2021-11-08T00:00:00Z","","2.5" +"NM-22956","900.52001953125","900.52001953125","","2008-06-09T00:00:00Z","","0" +"NM-00772","83.16999816894531","83.16999816894531","","2012-08-01T00:00:00Z","","0" +"NM-28251","74.7300033569336","74.7300033569336","","2012-01-13T00:00:00Z","","0" +"SO-0228","10.350000381469727","9.90000057220459","","2021-11-13T00:00:00Z","0001-01-01T15:00:00Z","0.44999998807907104" +"DE-0072","167.89999389648438","165.1899871826172","","2013-12-12T00:00:00Z","","2.7100000381469727" +"NM-14833","20.18000030517578","20.18000030517578","","1950-09-11T00:00:00Z","","0" +"NM-01335","145.5800018310547","145.5800018310547","","2009-10-05T00:00:00Z","","0" +"NM-04856","73.44999694824219","73.44999694824219","","1973-01-24T00:00:00Z","","0" +"DE-0130","44.38999938964844","44.38999938964844","","2014-11-24T00:00:00Z","","0" +"NM-02256","4.599999904632568","4.599999904632568","","1993-12-15T00:00:00Z","","0" +"BC-0023","47.90999984741211","47.90999984741211","","2014-06-05T00:00:00Z","","0" +"NM-08127","18","18","","1942-02-05T00:00:00Z","","0" +"NM-00553","78.69000244140625","78.69000244140625","","2001-01-18T00:00:00Z","","0" +"NM-22675","5.659999847412109","5.659999847412109","Z","2009-05-27T00:00:00Z","","0" +"NM-11263","44.63999938964844","44.63999938964844","","1948-09-27T00:00:00Z","","0" +"NM-11195","76.76000213623047","76.76000213623047","R","1971-03-10T00:00:00Z","","0" +"NM-00391","56.630001068115234","56.630001068115234","","2003-10-20T00:00:00Z","","0" +"NM-06867","14.779999732971191","14.779999732971191","","1958-01-08T00:00:00Z","","0" +"NM-01842","341.010009765625","341.010009765625","","2006-02-23T00:00:00Z","","0" +"NM-14060","-9.09000015258789","-9.09000015258789","","1910-09-09T00:00:00Z","","0" +"NM-22409","150.2100067138672","150.2100067138672","","1979-07-03T00:00:00Z","","0" +"NM-00353","69.4800033569336","69.4800033569336","","1953-09-11T00:00:00Z","","0" +"NM-02900","148.92999267578125","148.92999267578125","","2005-02-28T00:00:00Z","","0" +"NM-04206","28.399999618530273","28.399999618530273","","1948-07-21T00:00:00Z","","0" +"NM-28250","108.0199966430664","108.0199966430664","","1983-09-05T00:00:00Z","","0" +"NM-02004","6.699999809265137","6.699999809265137","","1959-09-15T00:00:00Z","","0" +"NM-01896","9.789999961853027","9.789999961853027","","2009-11-25T00:00:00Z","","0" +"NM-17716","2.2899999618530273","2.2899999618530273","","1943-09-02T00:00:00Z","","0" +"NM-11624","38.470001220703125","38.470001220703125","","1951-01-19T00:00:00Z","","0" +"NM-19887","31.06999969482422","31.06999969482422","","1953-01-20T00:00:00Z","","0" +"NM-00480","50.779998779296875","50.779998779296875","","1957-03-06T00:00:00Z","","0" +"NM-27532","42.56999969482422","42.56999969482422","","1966-03-31T00:00:00Z","","0" +"NM-03479","101.04000091552734","101.04000091552734","","1981-03-05T00:00:00Z","","0" +"NM-03908","139.1199951171875","139.1199951171875","","1980-01-10T00:00:00Z","","0" +"NM-10922","237.82000732421875","237.82000732421875","","1990-12-05T00:00:00Z","","0" +"NM-28256","77.88999938964844","77.88999938964844","","1979-03-05T00:00:00Z","","0" +"NM-08322","263.0799865722656","263.0799865722656","","1980-07-03T00:00:00Z","","0" +"NM-08071","8.399999618530273","8.399999618530273","","1968-08-15T00:00:00Z","","0" +"NM-01948","10.100000381469727","10.100000381469727","","1965-04-15T00:00:00Z","","0" +"NM-28255","155.2100067138672","155.2100067138672","","1977-06-15T00:00:00Z","","0" +"NM-03243","374.1700134277344","374.1700134277344","","2011-02-23T00:00:00Z","","0" +"NM-00641","38.59000015258789","38.59000015258789","","1965-02-19T00:00:00Z","","0" +"NM-28250","101.7300033569336","101.7300033569336","","1984-02-15T00:00:00Z","","0" +"AB-0123","540.030029296875","540.030029296875","","2009-04-23T00:00:00Z","","" +"NM-00253","22.440000534057617","22.440000534057617","","1973-09-01T00:00:00Z","","0" +"EB-263","3.4700000286102295","3.4700000286102295","","2012-03-27T00:00:00Z","","0" +"NM-01868","8.800000190734863","8.800000190734863","","1984-07-15T00:00:00Z","","0" +"NM-03342","12.40999984741211","12.40999984741211","","1994-11-16T00:00:00Z","","0" +"NM-27647","127.3499984741211","127.3499984741211","","1977-01-11T00:00:00Z","","0" +"NM-11178","50.95000076293945","50.95000076293945","","1981-01-08T00:00:00Z","","0" +"NM-02297","22.479999542236328","22.479999542236328","","1964-07-28T00:00:00Z","","0" +"NM-08576","15.369999885559082","15.369999885559082","","1983-01-03T00:00:00Z","","0" +"NM-04929","104.98999786376953","104.98999786376953","","1970-12-14T00:00:00Z","","0" +"NM-03133","312.1600036621094","312.1600036621094","","1958-01-17T00:00:00Z","","0" +"NM-02624","282.6499938964844","282.6499938964844","R","1963-08-14T00:00:00Z","","0" +"AB-0035","370.0199890136719","370.0199890136719","T","1986-08-01T00:00:00Z","","" +"NM-19786","133.44000244140625","133.44000244140625","","2016-08-09T00:00:00Z","","0" +"NM-20346","117.0999984741211","117.0999984741211","","1968-01-24T00:00:00Z","","0" +"NM-10099","116.02999877929688","116.02999877929688","","1972-02-04T00:00:00Z","","0" +"NM-20097","42.7599983215332","42.7599983215332","","1950-09-27T00:00:00Z","","0" +"NM-02669","60.2599983215332","60.2599983215332","","1974-09-01T00:00:00Z","","0" +"NM-16489","17.079999923706055","17.079999923706055","","1943-09-27T00:00:00Z","","0" +"NM-07225","196.3699951171875","196.3699951171875","","1970-05-01T00:00:00Z","","0" +"NM-16542","80.4000015258789","80.4000015258789","","1956-01-17T00:00:00Z","","0" +"NM-22678","4.340000152587891","4.340000152587891","Z","2008-07-22T00:00:00Z","","0" +"NM-06053","236.27999877929688","236.27999877929688","","2005-01-21T00:00:00Z","","0" +"NM-01005","391.45001220703125","391.45001220703125","R","1998-01-06T00:00:00Z","","0" +"NM-03283","47.220001220703125","47.220001220703125","","2000-01-12T00:00:00Z","","0" +"NM-11044","12.380000114440918","12.380000114440918","","1957-12-02T00:00:00Z","","0" +"NM-10028","209.02000427246094","209.02000427246094","","1966-03-30T00:00:00Z","","0" +"NM-10942","19.09000015258789","19.09000015258789","","1943-01-20T00:00:00Z","","0" +"NM-11279","63.810001373291016","63.810001373291016","R","1956-09-08T00:00:00Z","","0" +"NM-08647","23.709999084472656","23.709999084472656","","1945-05-25T00:00:00Z","","0" +"NM-26720","167.75","167.75","","1957-06-05T00:00:00Z","","0" +"NM-10099","172.64999389648438","172.64999389648438","","1983-07-05T00:00:00Z","","0" +"NM-02790","123.69999694824219","123.69999694824219","","1959-09-24T00:00:00Z","","0" +"NM-01725","-91.18000030517578","-91.18000030517578","E","1990-05-17T00:00:00Z","","0" +"NM-23244","227.74000549316406","227.74000549316406","Z","1995-09-29T00:00:00Z","","0" +"NM-04985","3.930000066757202","3.930000066757202","","1956-01-07T00:00:00Z","","0" +"NM-04404","108.33999633789062","108.33999633789062","","1966-09-10T00:00:00Z","","0" +"NM-05762","46.75","46.75","","1950-07-19T00:00:00Z","","0" +"NM-27584","66.69999694824219","66.69999694824219","","1963-01-04T00:00:00Z","","0" +"NM-01890","85.9800033569336","85.9800033569336","","2012-01-17T00:00:00Z","","0" +"NM-03620","70.06999969482422","70.06999969482422","","2001-02-16T00:00:00Z","","0" +"NM-23818","126.63999938964844","126.63999938964844","","1988-02-04T00:00:00Z","","0" +"NM-17716","-1.5399999618530273","-1.5399999618530273","","1942-01-28T00:00:00Z","","0" +"NM-21428","438.3399963378906","438.3399963378906","R","1991-09-20T00:00:00Z","","0" +"NM-02109","25.770000457763672","25.770000457763672","","1951-03-16T00:00:00Z","","0" +"AB-0090","404.1600036621094","404.1600036621094","","2016-01-25T00:00:00Z","","0" +"NM-00185","13.100000381469727","13.100000381469727","","1996-12-15T00:00:00Z","","0" +"NM-09630","-79.54000091552734","-79.54000091552734","","1918-01-24T00:00:00Z","","0" +"NM-09973","43.18000030517578","43.18000030517578","","1958-09-10T00:00:00Z","","0" +"NM-04569","83.83000183105469","83.83000183105469","","1955-07-27T00:00:00Z","","0" +"NM-28258","114.41000366210938","114.41000366210938","","1981-02-15T00:00:00Z","","0" +"NM-12809","98.72000122070312","98.72000122070312","","1984-02-01T00:00:00Z","","0" +"EB-314","6.699999809265137","3.6999998092651367","","2011-10-05T00:00:00Z","","" +"NM-27593","72.8499984741211","72.8499984741211","","1969-01-08T00:00:00Z","","0" +"NM-20391","116.8499984741211","116.8499984741211","","1972-03-01T00:00:00Z","","0" +"NM-28010","498.8599853515625","498.8599853515625","S","2015-06-01T00:00:00Z","","0" +"NM-03399","9.59000015258789","9.59000015258789","","1993-05-10T00:00:00Z","","0" +"NM-28253","48.650001525878906","48.650001525878906","","1969-07-15T00:00:00Z","","0" +"NM-03421","43.959999084472656","43.959999084472656","","2002-03-14T00:00:00Z","","0" +"DE-0055","49.79999923706055","49.79999923706055","","2014-07-21T00:00:00Z","","0" +"WL-0090","85.45833587646484","83.07833862304688","","2005-02-02T00:00:00Z","","2.380000114440918" +"NM-17626","75.98999786376953","75.98999786376953","","1947-09-14T00:00:00Z","","0" +"NM-01986","4.699999809265137","4.699999809265137","","1962-07-15T00:00:00Z","","0" +"NM-11570","59.88999938964844","59.88999938964844","","1941-01-20T00:00:00Z","","0" +"NM-18031","122.18000030517578","122.18000030517578","","1977-01-21T00:00:00Z","","0" +"DE-0315","43.290000915527344","43.290000915527344","","2009-11-03T00:00:00Z","","0" +"NM-10127","30.280000686645508","30.280000686645508","R","1961-02-17T00:00:00Z","","0" +"NM-08189","10.100000381469727","10.100000381469727","","1971-02-15T00:00:00Z","","0" +"NM-23333","8.550000190734863","8.550000190734863","","1959-03-19T00:00:00Z","","0" +"NM-19975","92.94000244140625","92.94000244140625","","1969-02-25T00:00:00Z","","0" +"NM-13594","27.479999542236328","27.479999542236328","","1980-12-15T00:00:00Z","","0" +"NM-08940","5.449999809265137","5.449999809265137","","1959-05-13T00:00:00Z","","0" +"NM-01151","48.369998931884766","48.369998931884766","P","1993-06-08T00:00:00Z","","0" +"NM-11928","-0.5099999904632568","-0.5099999904632568","","1941-06-21T00:00:00Z","","0" +"NM-13121","10.5600004196167","10.5600004196167","","1958-06-16T00:00:00Z","","0" +"NM-01204","348.8900146484375","348.8900146484375","","1992-12-15T00:00:00Z","","0" +"NM-01893","19.40999984741211","19.40999984741211","","2010-07-16T00:00:00Z","","0" +"NM-00001","197.08999633789062","197.08999633789062","","1976-04-02T00:00:00Z","","0" +"NM-17048","24.959999084472656","24.959999084472656","","1949-06-01T00:00:00Z","","0" +"NM-01886","58.34000015258789","58.34000015258789","","2002-08-23T00:00:00Z","","0" +"SB-0299","134.6699981689453","134.6699981689453","","2016-02-10T00:00:00Z","","0" +"NM-28254","148.5500030517578","148.5500030517578","","2005-08-05T00:00:00Z","","0" +"NM-06112","36.68000030517578","36.68000030517578","","1968-01-26T00:00:00Z","","0" +"NM-02197","10.920000076293945","10.920000076293945","","1994-09-06T00:00:00Z","","0" +"NM-10274","-32.189998626708984","-32.189998626708984","","1908-03-18T00:00:00Z","","0" +"DE-0269","77.22000122070312","77.22000122070312","","2016-06-20T00:00:00Z","","0" +"EB-262","88.47000122070312","88.47000122070312","","2007-02-21T00:00:00Z","","0" +"BC-0092","25.979999542236328","25.979999542236328","","2017-10-02T00:00:00Z","","0" +"NM-21456","288.25","288.25","Z","1990-05-04T00:00:00Z","","0" +"NM-03111","348.7099914550781","348.7099914550781","","1982-01-11T00:00:00Z","","0" +"NM-11679","24.209999084472656","24.209999084472656","","1940-10-09T00:00:00Z","","0" +"NM-14802","101.43000030517578","101.43000030517578","","1972-02-14T00:00:00Z","","0" +"NM-00586","246","246","","1994-03-21T00:00:00Z","","0" +"EB-489","611.5","608.2999877929688","P","2004-05-31T00:00:00Z","","3.200000047683716" +"NM-03173","379.69000244140625","379.69000244140625","","1983-01-07T00:00:00Z","","0" +"NM-06110","19.170000076293945","19.170000076293945","","1973-04-30T00:00:00Z","","0" +"NM-14535","88.9800033569336","88.9800033569336","","1980-12-23T00:00:00Z","","0" +"NM-02158","7.400000095367432","7.400000095367432","","1995-01-15T00:00:00Z","","0" +"NM-10741","58.04999923706055","58.04999923706055","","1971-02-18T00:00:00Z","","0" +"NM-05247","252.5","252.5","P","1971-07-09T00:00:00Z","","0" +"NM-03620","67.37999725341797","67.37999725341797","","2006-02-27T00:00:00Z","","0" +"NM-02158","6.400000095367432","6.400000095367432","","1993-06-15T00:00:00Z","","0" +"NM-22866","52.0099983215332","52.0099983215332","","1952-02-27T00:00:00Z","","0" +"NM-00957","83.56999969482422","83.56999969482422","","2009-03-06T00:00:00Z","","0" +"NM-13386","-18.329999923706055","-18.329999923706055","","1908-12-17T00:00:00Z","","0" +"NM-28252","57.97999954223633","57.97999954223633","","1971-12-15T00:00:00Z","","0" +"NM-18130","66.52999877929688","66.52999877929688","","2004-07-19T00:00:00Z","","0" +"NM-04023","17.219999313354492","17.219999313354492","","1955-04-05T00:00:00Z","","0" +"NM-27988","423.3999938964844","423.3999938964844","","2008-12-11T00:00:00Z","","0" +"NM-00768","342.42999267578125","342.42999267578125","","2012-06-07T00:00:00Z","","0" +"NM-08071","9.600000381469727","9.600000381469727","","1965-11-15T00:00:00Z","","0" +"BC-0354","85.19999694824219","85.19999694824219","","2020-04-28T00:00:00Z","","0" +"NM-06289","58.720001220703125","58.720001220703125","","1976-01-16T00:00:00Z","","0" +"NM-01909","","","D","2014-01-16T00:00:00Z","","0" +"NM-11392","37.099998474121094","37.099998474121094","","1963-09-30T00:00:00Z","","0" +"NM-02449","75.80000305175781","75.80000305175781","","1968-01-23T00:00:00Z","","0" +"QU-076","38.54999923706055","36.14999771118164","","2014-04-11T00:00:00Z","","2.4000000953674316" +"EB-276","155.33999633789062","155.33999633789062","","1970-03-02T00:00:00Z","","0" +"UC-0042","168.38999938964844","168.38999938964844","","1976-01-27T00:00:00Z","","0" +"NM-28017","486.05999755859375","486.05999755859375","S","2015-05-09T00:00:00Z","","0" +"NM-06620","351.2200012207031","351.2200012207031","","2004-01-30T00:00:00Z","","0" +"NM-03255","46.220001220703125","46.220001220703125","","1965-12-02T00:00:00Z","","0" +"NM-14535","85.98999786376953","85.98999786376953","","1972-01-25T00:00:00Z","","0" +"NM-00262","42.619998931884766","42.619998931884766","","1957-01-08T00:00:00Z","","0" +"NM-01844","6.599999904632568","6.599999904632568","","1995-02-27T00:00:00Z","","0" +"NM-00367","137.80999755859375","137.80999755859375","Z","1995-07-20T00:00:00Z","","0" +"NM-27703","140.39999389648438","140.39999389648438","","1967-01-31T00:00:00Z","","0" +"NM-13594","33.540000915527344","33.540000915527344","","1979-11-15T00:00:00Z","","0" +"NM-22863","170.07000732421875","170.07000732421875","","2014-10-21T00:00:00Z","","0" +"NM-05345","79.76000213623047","79.76000213623047","","1946-11-07T00:00:00Z","","0" +"BW-0014","309","309","","1969-06-23T00:00:00Z","","0" +"NM-27282","204.58999633789062","204.58999633789062","","1992-08-31T00:00:00Z","","0" +"NM-12368","-5.800000190734863","-5.800000190734863","","1906-06-28T00:00:00Z","","0" +"NM-05044","17","17","","1979-02-01T00:00:00Z","","0" +"NM-09455","42.939998626708984","42.939998626708984","","1966-03-25T00:00:00Z","","0" +"NM-19992","40","40","","1953-02-25T00:00:00Z","","0" +"NM-08818","39.34000015258789","39.34000015258789","","1966-03-03T00:00:00Z","","0" +"NM-02999","129.80999755859375","129.80999755859375","S","1999-03-04T00:00:00Z","","0" +"NM-13876","12.819999694824219","12.819999694824219","","1973-10-23T00:00:00Z","","0" +"NM-03351","84.44999694824219","84.44999694824219","","1966-08-04T00:00:00Z","","0" +"NM-22913","49.38999938964844","49.38999938964844","R","1990-05-17T00:00:00Z","","0" +"DE-0111","42.79999923706055","42.79999923706055","","2016-07-27T00:00:00Z","","0" +"NM-02569","135.05999755859375","135.05999755859375","","2013-01-28T00:00:00Z","","0" +"NM-10368","74.37999725341797","74.37999725341797","","1984-01-25T00:00:00Z","","0" +"NM-13180","13.229999542236328","13.229999542236328","","1947-02-03T00:00:00Z","","0" +"NM-03336","9.170000076293945","9.170000076293945","","1989-08-29T00:00:00Z","","0" +"NM-00297","62.11000061035156","62.11000061035156","P","2007-12-20T00:00:00Z","","0" +"NM-18767","38.45000076293945","38.45000076293945","","1985-01-15T00:00:00Z","","0" +"NM-02622","158.35000610351562","158.35000610351562","","1963-08-01T00:00:00Z","","0" +"SA-0465","33.5","33.5","P","1952-10-30T00:00:00Z","","0" +"NM-22866","53.41999816894531","53.41999816894531","","1967-01-06T00:00:00Z","","0" +"NM-02288","3.869999885559082","3.869999885559082","","2008-06-10T00:00:00Z","","0" +"NM-00462","51.290000915527344","51.290000915527344","","1955-01-04T00:00:00Z","","0" +"EB-356","246.39999389648438","244.39999389648438","","2002-03-27T00:00:00Z","","2" +"MG-021","162.5","166","P","2022-05-24T00:00:00Z","0001-01-01T10:28:00Z","-3.5" +"NM-04952","66.77999877929688","66.77999877929688","","1979-01-02T00:00:00Z","","0" +"NM-11919","1.9500000476837158","1.9500000476837158","","1957-04-04T00:00:00Z","","0" +"NM-28255","132.30999755859375","132.30999755859375","","1998-08-15T00:00:00Z","","0" +"NM-03445","60.22999954223633","60.22999954223633","Z","1996-07-01T00:00:00Z","","0" +"NM-07064","42.34000015258789","42.34000015258789","","1982-01-27T00:00:00Z","","0" +"DE-0110","38.86000061035156","38.86000061035156","","2009-10-05T00:00:00Z","","0" +"EB-288","104.41999816894531","104.41999816894531","","1986-04-30T00:00:00Z","","0" +"NM-03397","26.610000610351562","26.610000610351562","Z","1997-12-29T00:00:00Z","","0" +"NM-03355","31.190000534057617","31.190000534057617","","2000-12-20T00:00:00Z","","0" +"NM-24131","19.079999923706055","19.079999923706055","","1987-07-14T00:00:00Z","","0" +"NM-03403","6.409999847412109","6.409999847412109","","2014-02-26T00:00:00Z","","0" +"AB-0101","702.3800048828125","702.3800048828125","","2014-10-08T00:00:00Z","","" +"NM-12624","96.05999755859375","96.05999755859375","","1958-08-25T00:00:00Z","","0" +"NM-28253","16.34000015258789","16.34000015258789","","1957-03-15T00:00:00Z","","0" +"NM-24474","74.94999694824219","74.94999694824219","","1973-08-14T00:00:00Z","","0" +"NM-01948","6","6","","1973-09-15T00:00:00Z","","0" +"SV-0114","298.1000061035156","296.183349609375","","2015-12-20T00:00:00Z","","1.9166666269302368" +"NM-28251","73.27999877929688","73.27999877929688","","2005-09-26T00:00:00Z","","0" +"EB-488","522.5999755859375","519.5999755859375","P","2004-11-30T00:00:00Z","","3" +"NM-26657","18.229999542236328","18.229999542236328","","2011-07-28T00:00:00Z","","0" +"NM-16484","113.9800033569336","113.9800033569336","","1961-01-12T00:00:00Z","","0" +"NM-11928","0.5","0.5","","1954-01-01T00:00:00Z","","0" +"NM-03614","194.63999938964844","194.63999938964844","","1981-02-02T00:00:00Z","","0" +"NM-14180","13","13","","1915-07-29T00:00:00Z","","0" +"NM-00506","73.87999725341797","73.87999725341797","","1990-01-03T00:00:00Z","","0" +"NM-06787","48.529998779296875","48.529998779296875","","1970-12-17T00:00:00Z","","0" +"NM-01836","154.5","154.5","","1987-01-12T00:00:00Z","","0" +"BC-0332","180.3699951171875","180.3699951171875","","2017-10-07T00:00:00Z","","0" +"BC-0201","576.75","576.75","","2018-09-23T00:00:00Z","","0" +"NM-28255","13.079999923706055","13.079999923706055","","1960-01-25T00:00:00Z","","0" +"NM-20233","329.54998779296875","329.54998779296875","","1966-01-12T00:00:00Z","","0" +"NM-11982","85.93000030517578","85.93000030517578","","1979-03-02T00:00:00Z","","0" +"NM-28021","502.0799865722656","502.0799865722656","S","2015-04-16T00:00:00Z","","0" +"NM-05572","78.19000244140625","78.19000244140625","","1957-01-09T00:00:00Z","","0" +"NM-05285","54.189998626708984","54.189998626708984","","1965-08-03T00:00:00Z","","0" +"NM-01955","3.799999952316284","3.799999952316284","","1962-06-15T00:00:00Z","","0" +"NM-20209","15.039999961853027","15.039999961853027","","1981-05-21T00:00:00Z","","0" +"NM-17017","40.650001525878906","40.650001525878906","","1950-01-10T00:00:00Z","","0" +"NM-21446","8.869999885559082","8.869999885559082","","1956-10-09T00:00:00Z","","0" +"NM-01841","270.75","270.75","","1989-11-20T00:00:00Z","","0" +"NM-13791","-6.199999809265137","-6.199999809265137","","1912-04-04T00:00:00Z","","0" +"DE-0232","106.61000061035156","106.61000061035156","","2012-02-13T00:00:00Z","","0" +"NM-28254","132.4600067138672","132.4600067138672","","1979-06-25T00:00:00Z","","0" +"NM-06709","350.3299865722656","350.3299865722656","","2006-07-13T00:00:00Z","","0" +"NM-07351","128.2899932861328","128.2899932861328","","1963-12-19T00:00:00Z","","0" +"NM-28255","91","91","","1992-05-15T00:00:00Z","","0" +"NM-10099","115.6500015258789","115.6500015258789","","1981-02-05T00:00:00Z","","0" +"NM-27744","36.290000915527344","36.290000915527344","","1986-10-04T00:00:00Z","","0" +"NM-08246","22.84000015258789","22.84000015258789","","1939-12-17T00:00:00Z","","0" +"NM-24924","4.710000038146973","4.710000038146973","","1963-05-06T00:00:00Z","","0" +"NM-18557","91.44999694824219","91.44999694824219","","1980-01-16T00:00:00Z","","0" +"NM-06676","9","9","","1961-09-15T00:00:00Z","","0" +"NM-02560","89","89","","1957-12-01T00:00:00Z","","0" +"NM-00643","102.44999694824219","102.44999694824219","","1996-11-20T00:00:00Z","","0" +"NM-01955","3.9000000953674316","3.9000000953674316","","1987-11-15T00:00:00Z","","0" +"NM-02164","8.819999694824219","8.819999694824219","","1998-04-07T00:00:00Z","","0" +"NM-28254","109.26000213623047","109.26000213623047","","1961-09-25T00:00:00Z","","0" +"NM-28258","162.4499969482422","162.4499969482422","","2002-04-15T00:00:00Z","","0" +"NM-02242","59.47999954223633","59.47999954223633","","1997-01-23T00:00:00Z","","0" +"NM-00486","63.119998931884766","63.119998931884766","","2013-12-11T00:00:00Z","","0" +"NM-21253","3.6600000858306885","3.6600000858306885","Z","2010-03-02T00:00:00Z","","0" +"SO-0220","3.549999952316284","3.059999942779541","","2017-05-02T00:00:00Z","0001-01-01T11:04:00Z","0.49000000953674316" +"NM-09082","16.31999969482422","16.31999969482422","","1975-11-05T00:00:00Z","","0" +"NM-03231","19.440000534057617","19.440000534057617","","1947-02-18T00:00:00Z","","0" +"NM-16681","29.540000915527344","29.540000915527344","","1933-11-18T00:00:00Z","","0" +"NM-00943","291.489990234375","291.489990234375","","1998-02-02T00:00:00Z","","0" +"NM-28018","485.7699890136719","485.7699890136719","S","2015-05-08T00:00:00Z","","0" +"NM-13135","8.460000038146973","8.460000038146973","","1973-08-17T00:00:00Z","","0" +"NM-11771","43.849998474121094","43.849998474121094","","1939-01-06T00:00:00Z","","0" +"NM-03404","7.079999923706055","7.079999923706055","","1994-02-23T00:00:00Z","","0" +"TV-219","267.5","266.3399963378906","","2006-02-09T00:00:00Z","","1.159999966621399" +"WL-0044","490.2200012207031","488.9200134277344","","2019-10-22T00:00:00Z","0001-01-01T16:30:00Z","1.2999999523162842" +"NM-00385","39.08000183105469","39.08000183105469","","1964-09-15T00:00:00Z","","0" +"NM-20061","70.69999694824219","70.69999694824219","P","1951-07-31T00:00:00Z","","0" +"LC-026","5.980000019073486","6.480000019073486","","2019-04-17T00:00:00Z","0001-01-01T07:58:00Z","-0.5" +"NM-11383","48.459999084472656","48.459999084472656","","1945-09-19T00:00:00Z","","0" +"NM-26795","743","743","","1966-09-14T00:00:00Z","","0" +"NM-04608","57.81999969482422","57.81999969482422","","1951-09-24T00:00:00Z","","0" +"NM-00642","21.959999084472656","21.959999084472656","","2010-12-07T00:00:00Z","","0" +"EB-478","285","285","P","1988-05-31T00:00:00Z","","0" +"NM-09243","54.459999084472656","54.459999084472656","","1996-01-24T00:00:00Z","","0" +"NM-11259","102.66000366210938","102.66000366210938","","1981-01-23T00:00:00Z","","0" +"NM-20333","54.20000076293945","54.20000076293945","","1945-06-12T00:00:00Z","","0" +"SA-0069","33.599998474121094","32.78999710083008","","2015-02-12T00:00:00Z","","0.8100000023841858" +"NM-13594","52.7400016784668","52.7400016784668","","1979-09-05T00:00:00Z","","0" +"NM-13035","24.3799991607666","24.3799991607666","","1961-03-24T00:00:00Z","","0" +"NM-03242","118.5199966430664","118.5199966430664","","1972-01-18T00:00:00Z","","0" +"NM-17291","39.119998931884766","39.119998931884766","","1949-01-11T00:00:00Z","","0" +"NM-02251","75.01000213623047","75.01000213623047","","1958-02-05T00:00:00Z","","0" +"NM-10564","15.789999961853027","15.789999961853027","","1955-06-06T00:00:00Z","","0" +"QY-0429","119.19999694824219","119.19999694824219","","1953-11-23T00:00:00Z","","0" +"NM-28250","93.12999725341797","93.12999725341797","","2016-09-05T00:00:00Z","","0" +"NM-01872","7.599999904632568","7.599999904632568","","1989-03-15T00:00:00Z","","0" +"NM-08189","11.699999809265137","11.699999809265137","","1964-08-15T00:00:00Z","","0" +"SA-0212","237.91000366210938","236.510009765625","","2013-02-21T00:00:00Z","","1.399999976158142" +"NM-06162","106.3499984741211","106.3499984741211","","1972-09-20T00:00:00Z","","0" +"NM-13630","-26.40999984741211","-26.40999984741211","","1912-05-20T00:00:00Z","","0" +"AB-0124","539.75","539.75","","2010-12-07T00:00:00Z","","" +"NM-07110","21.06999969482422","21.06999969482422","","1976-01-23T00:00:00Z","","0" +"NM-02831","57.95000076293945","57.95000076293945","","1964-10-01T00:00:00Z","","0" +"NM-01955","3.700000047683716","3.700000047683716","","1983-09-15T00:00:00Z","","0" +"NM-09968","44.59000015258789","44.59000015258789","","1958-07-24T00:00:00Z","","0" +"NM-28257","-4.619999885559082","-4.619999885559082","","1998-03-15T00:00:00Z","","0" +"NM-00627","57.59000015258789","57.59000015258789","","2003-01-03T00:00:00Z","","0" +"NM-07904","11.220000267028809","11.220000267028809","","2010-04-29T00:00:00Z","","0" +"NM-28005","461","461","S","1982-01-04T00:00:00Z","","0" +"NM-14802","104.37999725341797","104.37999725341797","","1974-03-25T00:00:00Z","","0" +"NM-18334","240.36000061035156","240.36000061035156","","1974-01-04T00:00:00Z","","0" +"NM-05681","99.54000091552734","99.54000091552734","","1957-01-17T00:00:00Z","","0" +"AB-0003","429.0400085449219","429.0400085449219","","2004-07-28T00:00:00Z","","" +"NM-14265","426.2200012207031","426.2200012207031","","1969-06-01T00:00:00Z","","0" +"NM-12741","356.92999267578125","356.92999267578125","","1971-01-15T00:00:00Z","","0" +"NM-16863","21.8700008392334","21.8700008392334","","1949-03-24T00:00:00Z","","0" +"QY-0378","113.80000305175781","113.80000305175781","","1955-03-14T00:00:00Z","","0" +"NM-28252","32.599998474121094","32.599998474121094","","1993-02-05T00:00:00Z","","0" +"NM-00498","65.5199966430664","65.5199966430664","","1974-02-01T00:00:00Z","","0" +"NM-03291","245.77000427246094","245.77000427246094","","1973-01-03T00:00:00Z","","0" +"NM-02617","6.829999923706055","6.829999923706055","","1941-01-13T00:00:00Z","","0" +"NM-28094","1042.300048828125","1042.300048828125","","2008-10-08T00:00:00Z","","0" +"NM-03455","294.989990234375","294.989990234375","R","1992-02-07T00:00:00Z","","0" +"NM-27673","75.25","75.25","","1978-01-07T00:00:00Z","","0" +"NM-28254","33.40999984741211","33.40999984741211","","1977-12-05T00:00:00Z","","0" +"AB-0039","349.7099914550781","349.7099914550781","","2000-04-10T00:00:00Z","","" +"NM-02489","120.44999694824219","120.44999694824219","","2015-01-12T00:00:00Z","","0" +"SB-0170","157.47999572753906","157.47999572753906","","1986-02-13T00:00:00Z","","0" +"NM-02563","40.220001220703125","40.220001220703125","","1991-01-30T00:00:00Z","","0" +"NM-02772","7.309999942779541","7.309999942779541","","1999-12-06T00:00:00Z","","0" +"NM-16683","31.920000076293945","31.920000076293945","","1962-01-16T00:00:00Z","","0" +"NM-01762","53.529998779296875","53.529998779296875","","1976-02-06T00:00:00Z","","0" +"SA-0025","17.950000762939453","20.200000762939453","","2009-02-10T00:00:00Z","","-2.25" +"NM-10096","10.510000228881836","10.510000228881836","","1976-01-12T00:00:00Z","","0" +"NM-12725","23.200000762939453","23.200000762939453","","1949-05-23T00:00:00Z","","0" +"NM-13118","10.149999618530273","10.149999618530273","","1978-09-18T00:00:00Z","","0" +"NM-08446","68.54000091552734","68.54000091552734","","1976-02-17T00:00:00Z","","0" +"NM-10027","179.86000061035156","179.86000061035156","","1971-04-07T00:00:00Z","","0" +"NM-07297","164.57000732421875","164.57000732421875","","1983-01-18T00:00:00Z","","0" +"NM-03285","64.81999969482422","64.81999969482422","","2002-03-05T00:00:00Z","","0" +"NM-02162","71","71","","1945-03-22T00:00:00Z","","0" +"NM-27630","53.22999954223633","53.22999954223633","","1961-01-11T00:00:00Z","","0" +"DE-0177","47.47999954223633","47.47999954223633","","2016-07-27T00:00:00Z","","0" +"NM-01971","7.900000095367432","7.900000095367432","","1999-01-15T00:00:00Z","","0" +"NM-11368","266.1099853515625","266.1099853515625","","1954-01-15T00:00:00Z","","0" +"DE-0058","89.94000244140625","87.33000183105469","","2003-10-14T00:00:00Z","","2.609999895095825" +"NM-01796","5.300000190734863","5.300000190734863","","2010-02-22T00:00:00Z","","0" +"NM-12089","-20.600000381469727","-20.600000381469727","","1953-01-06T00:00:00Z","","0" +"NM-02911","98.68000030517578","98.68000030517578","A","2010-02-16T00:00:00Z","","0" +"NM-22384","60.4900016784668","60.4900016784668","","1957-09-19T00:00:00Z","","0" +"NM-13899","7.630000114440918","7.630000114440918","","1974-06-25T00:00:00Z","","0" +"NM-02527","12.899999618530273","12.899999618530273","","1958-01-15T00:00:00Z","","0" +"NM-01955","4.300000190734863","4.300000190734863","","1971-01-15T00:00:00Z","","0" +"NM-03258","40.5","40.5","","1960-06-20T00:00:00Z","","0" +"NM-00947","296.82000732421875","296.82000732421875","","2004-08-21T00:00:00Z","","0" +"NM-07436","98.54000091552734","98.54000091552734","","1955-08-30T00:00:00Z","","0" +"NM-00677","58.209999084472656","58.209999084472656","","1966-01-04T00:00:00Z","","0" +"NM-14705","67.58999633789062","67.58999633789062","","1959-01-05T00:00:00Z","","0" +"NM-03397","22.389999389648438","22.389999389648438","","1992-10-29T00:00:00Z","","0" +"NM-06392","113.18000030517578","113.18000030517578","","1957-01-06T00:00:00Z","","0" +"NM-17364","26.610000610351562","26.610000610351562","","1949-01-07T00:00:00Z","","0" +"NM-03462","176.10000610351562","176.10000610351562","","1954-06-01T00:00:00Z","","0" +"EB-245","216.88999938964844","216.88999938964844","","2010-03-17T00:00:00Z","","0" +"TB-0120","36.13999938964844","34.81999969482422","","2010-02-22T00:00:00Z","","1.3200000524520874" +"NM-07881","12","12","","1935-09-17T00:00:00Z","","0" +"NM-17716","5.610000133514404","5.610000133514404","","1949-01-25T00:00:00Z","","0" +"NM-07986","6.150000095367432","6.150000095367432","","1987-01-27T00:00:00Z","","0" +"NM-02881","95.18000030517578","95.18000030517578","","2001-02-02T00:00:00Z","","0" +"AB-0003","427.57000732421875","427.57000732421875","","1998-10-13T00:00:00Z","","" +"EB-276","128.32000732421875","128.32000732421875","","1959-09-21T00:00:00Z","","0" +"NM-16592","41.09000015258789","41.09000015258789","","1976-01-07T00:00:00Z","","0" +"NM-07153","98.31999969482422","98.31999969482422","","2005-05-26T00:00:00Z","","0" +"NM-14306","-19.479999542236328","-19.479999542236328","","1909-02-25T00:00:00Z","","0" +"NM-05543","123.26000213623047","123.26000213623047","","1980-01-14T00:00:00Z","","0" +"NM-12933","19.899999618530273","19.899999618530273","","1960-05-17T00:00:00Z","","0" +"NM-28256","79.19000244140625","79.19000244140625","","1986-01-15T00:00:00Z","","0" +"NM-24928","39.189998626708984","39.189998626708984","R","1988-03-10T00:00:00Z","","0" +"NM-00457","82.87999725341797","82.87999725341797","","2001-01-02T00:00:00Z","","0" +"NM-10600","59.400001525878906","59.400001525878906","R","1957-09-17T00:00:00Z","","0" +"NM-04444","15.8100004196167","15.8100004196167","","1957-07-19T00:00:00Z","","0" +"NM-08471","14.050000190734863","14.050000190734863","","1976-01-14T00:00:00Z","","0" +"NM-02005","9.5","9.5","","1984-03-15T00:00:00Z","","0" +"NM-13085","51.689998626708984","51.689998626708984","","1986-04-17T00:00:00Z","","0" +"NM-26622","131.32000732421875","131.32000732421875","","2013-07-09T00:00:00Z","","0" +"NM-10938","8.609999656677246","8.609999656677246","","1955-12-28T00:00:00Z","","0" +"NM-13235","5.480000019073486","5.480000019073486","","1959-09-29T00:00:00Z","","0" +"DE-0203","49.59000015258789","49.59000015258789","","2013-06-20T00:00:00Z","","0" +"NM-02209","107.05000305175781","107.05000305175781","","1975-01-14T00:00:00Z","","0" +"NM-16289","38","38","","1977-08-30T00:00:00Z","","0" +"NM-03365","43.77000045776367","43.77000045776367","","1957-11-13T00:00:00Z","","0" +"DE-0191","49.630001068115234","49.630001068115234","","2015-11-24T00:00:00Z","","0" +"SB-0299","124.26000213623047","124.26000213623047","","1990-10-05T00:00:00Z","","0" +"NM-11283","51.31999969482422","51.31999969482422","","1981-01-07T00:00:00Z","","0" +"NM-28253","22.06999969482422","22.06999969482422","","1958-03-25T00:00:00Z","","0" +"NM-02684","32.869998931884766","32.869998931884766","","2003-01-22T00:00:00Z","","0" +"TB-0015","37.560001373291016","35.560001373291016","","2010-06-22T00:00:00Z","","2" +"NM-11710","6.519999980926514","6.519999980926514","","1942-07-16T00:00:00Z","","0" +"BC-0247","52.15999984741211","52.15999984741211","","2016-06-29T00:00:00Z","","0" +"NM-09795","11.020000457763672","11.020000457763672","","1964-01-13T00:00:00Z","","0" +"NM-21631","433.5199890136719","433.5199890136719","","2009-03-05T00:00:00Z","","0" +"NM-28259","65.52999877929688","65.52999877929688","","1989-02-25T00:00:00Z","","0" +"NM-13425","399.1700134277344","399.1700134277344","","1972-04-01T00:00:00Z","","0" +"NM-03405","10.5600004196167","10.5600004196167","","1994-08-30T00:00:00Z","","0" +"NM-01507","37.459999084472656","37.459999084472656","","1989-07-19T00:00:00Z","","0" +"NM-18769","28.040000915527344","28.040000915527344","","1960-04-28T00:00:00Z","","0" +"NM-02360","151.8000030517578","151.8000030517578","","1978-01-10T00:00:00Z","","0" +"NM-24921","209.55999755859375","209.55999755859375","","1971-09-20T00:00:00Z","","0" +"BC-0270","","314.6000061035156","","2020-11-01T00:00:00Z","","-5" +"EB-387","98.63999938964844","97.4000015258789","","1999-07-01T00:00:00Z","","1.2400000095367432" +"NM-00367","127.33000183105469","127.33000183105469","","1973-11-01T00:00:00Z","","0" +"NM-02251","67.88999938964844","67.88999938964844","","1949-01-30T00:00:00Z","","0" +"DE-0087","88.55999755859375","88.55999755859375","","2012-10-16T00:00:00Z","","0" +"NM-12181","47.33000183105469","47.33000183105469","","1942-01-28T00:00:00Z","","0" +"TB-0045","18.31999969482422","17.75","Z","2010-10-11T00:00:00Z","","0.5699999928474426" +"WL-0002","512.3599853515625","512.3599853515625","","2021-09-30T00:00:00Z","","0" +"NM-03719","66.38999938964844","66.38999938964844","","1982-03-04T00:00:00Z","","0" +"NM-22744","36.77000045776367","36.77000045776367","","1947-09-02T00:00:00Z","","0" +"NM-04586","99.44999694824219","99.44999694824219","P","1952-07-18T00:00:00Z","","0" +"NM-21075","21.399999618530273","21.399999618530273","","1948-03-24T00:00:00Z","","0" +"NM-11005","-10.239999771118164","-10.239999771118164","","1907-06-28T00:00:00Z","","0" +"NM-04455","24.15999984741211","24.15999984741211","","1960-11-15T00:00:00Z","","0" +"NM-18706","6.269999980926514","6.269999980926514","","1977-01-25T00:00:00Z","","0" +"NM-28258","200.7100067138672","200.7100067138672","","1976-06-05T00:00:00Z","","0" +"BC-0324","245.60000610351562","245.60000610351562","","2019-04-26T00:00:00Z","","0" +"NM-02758","263.19000244140625","263.19000244140625","","1946-09-06T00:00:00Z","","0" +"NM-28014","498.6700134277344","498.6700134277344","S","2015-05-16T00:00:00Z","","0" +"NM-02352","6.900000095367432","6.900000095367432","","1951-08-15T00:00:00Z","","0" +"NM-03681","194.69000244140625","194.69000244140625","","1973-02-22T00:00:00Z","","0" +"NM-20795","31.850000381469727","31.850000381469727","","1986-11-19T00:00:00Z","","0" +"NM-01565","-250","-250","","1988-09-27T00:00:00Z","","0" +"DE-0115","37.130001068115234","37.130001068115234","","2001-09-25T00:00:00Z","","0" +"NM-28259","137.30999755859375","137.30999755859375","","2007-07-25T00:00:00Z","","0" +"NM-03273","11.529999732971191","11.529999732971191","","1976-02-24T00:00:00Z","","0" +"NM-02000","106.94000244140625","106.94000244140625","","1963-01-04T00:00:00Z","","0" +"NM-06277","235.86000061035156","235.86000061035156","","2004-01-13T00:00:00Z","","0" +"NM-04048","45.79999923706055","45.79999923706055","","1962-01-20T00:00:00Z","","0" +"NM-02101","9.300000190734863","9.300000190734863","","1985-02-01T00:00:00Z","","0" +"BC-0329","280.3800048828125","280.3800048828125","","2018-04-09T00:00:00Z","","0" +"NM-21467","7.53000020980835","7.53000020980835","R","2016-07-19T00:00:00Z","","0" +"NM-00367","114.37999725341797","114.37999725341797","","1971-02-01T00:00:00Z","","0" +"NM-11518","37.380001068115234","37.380001068115234","","1948-05-25T00:00:00Z","","0" +"NM-09605","113.2300033569336","113.2300033569336","","1973-02-13T00:00:00Z","","0" +"NM-11315","67.43000030517578","67.43000030517578","","1981-01-22T00:00:00Z","","0" +"NM-13033","281.1600036621094","281.1600036621094","","1958-11-18T00:00:00Z","","0" +"AB-0002","420.6300048828125","420.6300048828125","","1997-12-17T00:00:00Z","","" +"NM-23247","102.69999694824219","102.69999694824219","","1956-12-11T00:00:00Z","","0" +"AB-0179","177.63999938964844","177.63999938964844","","1997-08-29T00:00:00Z","","" +"NM-13899","9.449999809265137","9.449999809265137","","1957-11-01T00:00:00Z","","0" +"NM-00481","181.22000122070312","181.22000122070312","P","1961-03-27T00:00:00Z","","0" +"NM-27285","141.19000244140625","141.19000244140625","","1989-03-15T00:00:00Z","","0" +"SB-0299","150.1999969482422","150.1999969482422","","2012-09-05T00:00:00Z","","0" +"WL-0086","31.125","29.364999771118164","","1993-12-10T00:00:00Z","","1.7599999904632568" +"DA-0178","265","265","","1968-06-27T00:00:00Z","","0" +"NM-12950","27.510000228881836","27.510000228881836","","1991-02-07T00:00:00Z","","0" +"NM-03400","10.40999984741211","10.40999984741211","","1989-06-27T00:00:00Z","","0" +"NM-28253","32.689998626708984","32.689998626708984","","2004-07-06T00:00:00Z","","0" +"SV-0018","246.60000610351562","244.7666778564453","","2015-08-21T00:00:00Z","","1.8333333730697632" +"SM-0125","31.940000534057617","31.940000534057617","","1989-02-21T00:00:00Z","","0" +"NM-13891","-28.719999313354492","-28.719999313354492","","1908-03-05T00:00:00Z","","0" +"AB-0161","488.29998779296875","488.29998779296875","","2013-10-22T00:00:00Z","","" +"SB-0299","130.3699951171875","130.3699951171875","","1975-11-01T00:00:00Z","","0" +"NM-03437","73.31999969482422","73.31999969482422","","1990-07-24T00:00:00Z","","0" +"NM-28250","101.27999877929688","101.27999877929688","","1969-11-25T00:00:00Z","","0" +"NM-19771","438.69000244140625","438.69000244140625","","1972-01-25T00:00:00Z","","0" +"NM-25350","447.75","447.75","","1982-06-30T00:00:00Z","","0" +"NM-28256","270.95001220703125","270.95001220703125","","1997-08-15T00:00:00Z","","0" +"NM-04522","53.04999923706055","53.04999923706055","","1958-12-10T00:00:00Z","","0" +"NM-18708","25.84000015258789","25.84000015258789","","1977-01-27T00:00:00Z","","0" +"NM-11407","122.69999694824219","122.69999694824219","","1983-04-19T00:00:00Z","","0" +"NM-03077","220.0399932861328","220.0399932861328","","1975-01-05T00:00:00Z","","0" +"AB-0054","46.75","46.75","","2002-11-06T00:00:00Z","","" +"NM-21660","472.1199951171875","472.1199951171875","","2005-12-28T00:00:00Z","","0" +"NM-08842","32.72999954223633","32.72999954223633","","1952-01-04T00:00:00Z","","0" +"NM-01450","468.5799865722656","468.5799865722656","","2002-02-22T00:00:00Z","","0" +"NM-28259","209.13999938964844","209.13999938964844","","1966-07-25T00:00:00Z","","0" +"NM-26091","6.599999904632568","6.599999904632568","","1959-09-26T00:00:00Z","","0" +"NM-02731","115.30000305175781","115.30000305175781","","1986-02-17T00:00:00Z","","0" +"NM-02005","9.100000381469727","9.100000381469727","","1965-12-15T00:00:00Z","","0" +"TB-0126","36.41999816894531","35.2599983215332","","2009-09-04T00:00:00Z","","1.159999966621399" +"NM-11331","11.140000343322754","11.140000343322754","","1972-05-26T00:00:00Z","","0" +"NM-06262","405.04998779296875","405.04998779296875","","1970-08-06T00:00:00Z","","0" +"NM-10099","127.6500015258789","127.6500015258789","","1983-03-14T00:00:00Z","","0" +"NM-21617","479.4700012207031","479.4700012207031","","1993-06-09T00:00:00Z","","0" +"NM-17214","81.47000122070312","81.47000122070312","","1969-01-09T00:00:00Z","","0" +"NM-22466","109.19999694824219","109.19999694824219","R","1991-10-22T00:00:00Z","","0" +"NM-02384","8.699999809265137","8.699999809265137","","1983-12-15T00:00:00Z","","0" +"EB-199","89.9800033569336","88.7300033569336","","2003-04-16T00:00:00Z","","1.25" +"NM-02006","7.699999809265137","7.699999809265137","","1977-07-15T00:00:00Z","","0" +"NM-02508","14.729999542236328","14.729999542236328","","1961-03-03T00:00:00Z","","0" +"NM-02165","7.789999961853027","7.789999961853027","","2008-08-04T00:00:00Z","","0" +"SB-0244","53.08000183105469","53.08000183105469","","1953-01-28T00:00:00Z","","0" +"TB-0192","108.16999816894531","104.41999816894531","","2010-02-20T00:00:00Z","","3.75" +"EB-484","684.5","683.9000244140625","P","2008-02-29T00:00:00Z","","0.6000000238418579" +"NM-06149","10.720000267028809","10.720000267028809","","1969-01-27T00:00:00Z","","0" +"NM-16760","60.83000183105469","60.83000183105469","","1987-01-09T00:00:00Z","","0" +"NM-08071","7.199999809265137","7.199999809265137","","1958-11-15T00:00:00Z","","0" +"NM-01931","345.0199890136719","345.0199890136719","","1975-01-06T00:00:00Z","","0" +"NM-28250","106.77999877929688","106.77999877929688","","1972-09-05T00:00:00Z","","0" +"NM-22969","320.8699951171875","320.8699951171875","T","1985-02-15T00:00:00Z","","0" +"NM-05966","53","53","","1952-01-14T00:00:00Z","","0" +"NM-04341","20.389999389648438","20.389999389648438","","2004-01-20T00:00:00Z","","0" +"DE-0161","60.150001525878906","60.150001525878906","","2016-03-24T00:00:00Z","","0" +"NM-01947","7","7","","1975-04-15T00:00:00Z","","0" +"NM-02724","11.600000381469727","11.600000381469727","","1983-01-10T00:00:00Z","","0" +"NM-10401","52.75","52.75","","1961-02-07T00:00:00Z","","0" +"EB-220","131.67999267578125","131.67999267578125","","2005-04-22T00:00:00Z","","0" +"BW-0496","68.4800033569336","68.4800033569336","","1955-05-19T00:00:00Z","","0" +"TV-218","214.10000610351562","213.5","","2005-05-05T00:00:00Z","","0.6000000238418579" +"NM-10903","-49.5099983215332","-49.5099983215332","","1907-01-22T00:00:00Z","","0" +"NM-02591","14.600000381469727","14.600000381469727","","1984-02-15T00:00:00Z","","0" +"NM-02438","104.62000274658203","104.62000274658203","","1964-01-06T00:00:00Z","","0" +"NM-01888","13.65999984741211","13.65999984741211","","2015-06-16T00:00:00Z","","0" +"NM-14350","8.239999771118164","8.239999771118164","","1973-01-16T00:00:00Z","","0" +"NM-02949","175.60000610351562","175.60000610351562","","1960-06-21T00:00:00Z","","0" +"AR-0004","29.15999984741211","28.260000228881836","","2017-06-01T00:00:00Z","0001-01-01T14:52:00Z","0.8999999761581421" +"NM-23080","344","344","R","1980-06-05T00:00:00Z","","0" +"NM-10597","29.770000457763672","29.770000457763672","","1965-01-11T00:00:00Z","","0" +"NM-14503","38.81999969482422","38.81999969482422","","1965-01-06T00:00:00Z","","0" +"NM-13407","9.430000305175781","9.430000305175781","","1957-06-04T00:00:00Z","","0" +"NM-12459","37.150001525878906","37.150001525878906","","1981-01-14T00:00:00Z","","0" +"NM-01860","72.43000030517578","72.43000030517578","","1969-01-16T00:00:00Z","","0" +"NM-01897","26.479999542236328","26.479999542236328","","2015-03-16T00:00:00Z","","0" +"NM-22990","14.6899995803833","14.6899995803833","Z","2008-07-23T00:00:00Z","","0" +"NM-03654","35.220001220703125","35.220001220703125","","2000-11-14T00:00:00Z","","0" +"NM-24976","122.80000305175781","122.80000305175781","","1954-05-26T00:00:00Z","","0" +"NM-05316","92.12999725341797","92.12999725341797","","1954-01-11T00:00:00Z","","0" +"NM-11857","14.039999961853027","14.039999961853027","","1944-01-29T00:00:00Z","","0" +"NM-02586","286.0299987792969","286.0299987792969","","1982-02-01T00:00:00Z","","0" +"NM-06375","202.63999938964844","202.63999938964844","","1965-09-03T00:00:00Z","","0" +"NM-14802","102.51000213623047","102.51000213623047","","1968-09-25T00:00:00Z","","0" +"NM-13638","35.900001525878906","35.900001525878906","S","1957-07-23T00:00:00Z","","0" +"QU-085","403","399.25","","2013-07-08T00:00:00Z","","3.75" +"NM-02484","33.529998779296875","33.529998779296875","","1992-11-23T00:00:00Z","","0" +"DE-0062","22.190000534057617","20.110000610351562","","2003-10-14T00:00:00Z","","2.0799999237060547" +"DE-0111","39.77000045776367","39.77000045776367","","2009-10-26T00:00:00Z","","0" +"NM-17716","-1.059999942779541","-1.059999942779541","","1943-01-19T00:00:00Z","","0" +"SA-0135","74","73.69999694824219","","2018-06-11T00:00:00Z","0001-01-01T10:30:00Z","0.30000001192092896" +"NM-28254","36.29999923706055","36.29999923706055","","2012-12-14T00:00:00Z","","0" +"NM-08143","12.529999732971191","12.529999732971191","","2012-10-17T00:00:00Z","","0" +"EB-363","150.5","145","","2011-07-26T00:00:00Z","","5.5" +"NM-03986","217.63999938964844","217.63999938964844","P","1954-07-26T00:00:00Z","","0" +"NM-01251","63.189998626708984","63.189998626708984","","1946-11-06T00:00:00Z","","0" +"NM-02527","9.199999809265137","9.199999809265137","","1968-10-15T00:00:00Z","","0" +"NM-01126","146.67999267578125","146.67999267578125","","1986-11-04T00:00:00Z","","0" +"NM-22421","10.369999885559082","10.369999885559082","","1947-01-03T00:00:00Z","","0" +"NM-21304","6.099999904632568","6.099999904632568","","1948-05-20T00:00:00Z","","0" +"EB-245","218.24000549316406","218.24000549316406","","2002-03-28T00:00:00Z","","0" +"NM-28254","149.10000610351562","149.10000610351562","","1973-07-15T00:00:00Z","","0" +"NM-02091","92.68000030517578","92.68000030517578","","1970-01-20T00:00:00Z","","0" +"NM-11943","1.100000023841858","1.100000023841858","","1965-01-04T00:00:00Z","","0" +"TB-0136","45.380001068115234","44.28000259399414","","2014-02-12T00:00:00Z","","1.100000023841858" +"NM-12972","63.20000076293945","63.20000076293945","","1994-01-27T00:00:00Z","","0" +"NM-11828","113.05000305175781","113.05000305175781","","1979-03-23T00:00:00Z","","0" +"NM-00213","188.27999877929688","188.27999877929688","","1957-11-01T00:00:00Z","","0" +"NM-09374","34.779998779296875","34.779998779296875","","1952-07-22T00:00:00Z","","0" +"NM-01042","28.920000076293945","28.920000076293945","","1969-01-07T00:00:00Z","","0" +"NM-28257","46.45000076293945","46.45000076293945","","2007-09-05T00:00:00Z","","0" +"NM-03112","313.1300048828125","313.1300048828125","","1984-01-17T00:00:00Z","","0" +"NM-02999","121.02999877929688","121.02999877929688","","1997-01-17T00:00:00Z","","0" +"NM-14802","104.5","104.5","","1981-04-06T00:00:00Z","","0" +"NM-08541","302.69000244140625","302.69000244140625","","1956-04-25T00:00:00Z","","0" +"NM-02284","18.75","18.75","","2014-09-22T00:00:00Z","","0" +"NM-26484","104.44999694824219","104.44999694824219","","2004-06-01T00:00:00Z","","0" +"NM-05757","68.55000305175781","68.55000305175781","","1933-03-11T00:00:00Z","","0" +"NM-23120","4.159999847412109","4.159999847412109","Z","2010-08-26T00:00:00Z","","0" +"NM-11766","14.300000190734863","14.300000190734863","","1942-01-22T00:00:00Z","","0" +"NM-26043","84.0999984741211","84.0999984741211","","1959-09-24T00:00:00Z","","0" +"AB-0181","152.67999267578125","152.67999267578125","","2003-09-10T00:00:00Z","","" +"NM-12181","94.56999969482422","94.56999969482422","","1958-08-25T00:00:00Z","","0" +"NM-02546","6.289999961853027","6.190000057220459","","2020-02-19T00:00:00Z","0001-01-01T13:12:00Z","0.10000000149011612" +"NM-11322","1.1799999475479126","1.1799999475479126","","1973-10-23T00:00:00Z","","0" +"EB-266","-0.550000011920929","-0.550000011920929","","2015-12-16T00:00:00Z","","0" +"NM-03421","43.689998626708984","43.689998626708984","Z","1997-07-25T00:00:00Z","","0" +"SB-0389","56.689998626708984","56.689998626708984","","1983-01-17T00:00:00Z","","0" +"NM-00751","28.239999771118164","28.239999771118164","","1956-05-16T00:00:00Z","","0" +"NM-01277","133.69000244140625","133.69000244140625","","1990-07-24T00:00:00Z","","0" +"NM-00755","17.440000534057617","17.440000534057617","","1984-01-09T00:00:00Z","","0" +"NM-28118","100.79000091552734","100.79000091552734","","1963-02-19T00:00:00Z","","0" +"NM-05704","88.0199966430664","88.0199966430664","","1942-01-14T00:00:00Z","","0" +"NM-01921","37.08000183105469","37.08000183105469","","1981-01-06T00:00:00Z","","0" +"NM-16863","43.18000030517578","43.18000030517578","P","1955-05-25T00:00:00Z","","0" +"NM-14067","-5.619999885559082","-5.619999885559082","","1911-05-17T00:00:00Z","","0" +"NM-02795","171.9199981689453","171.9199981689453","","2008-01-08T00:00:00Z","","0" +"NM-11499","188.9499969482422","188.9499969482422","","1981-01-27T00:00:00Z","","0" +"NM-28253","12.739999771118164","12.739999771118164","","2007-12-27T00:00:00Z","","0" +"NM-06375","194.19000244140625","194.19000244140625","","1959-01-07T00:00:00Z","","0" +"NM-06913","12.850000381469727","12.850000381469727","","1955-01-11T00:00:00Z","","0" +"SB-0234","114.5999984741211","114.5999984741211","","1995-02-07T00:00:00Z","","0" +"NM-02471","131.7100067138672","131.7100067138672","","1989-02-02T00:00:00Z","","0" +"NM-14848","82.68000030517578","82.68000030517578","","1961-01-13T00:00:00Z","","0" +"NM-08428","44.7599983215332","44.7599983215332","","1947-01-17T00:00:00Z","","0" +"BC-0036","276.8399963378906","276.8399963378906","","2013-03-14T00:00:00Z","","0" +"NM-12189","20.6200008392334","20.6200008392334","P","1956-01-24T00:00:00Z","","0" +"NM-02323","174.8300018310547","174.8300018310547","","1993-01-13T00:00:00Z","","0" +"NM-01926","6.599999904632568","6.599999904632568","","1981-05-15T00:00:00Z","","0" +"NM-11565","104.41999816894531","104.41999816894531","","1962-01-17T00:00:00Z","","0" +"NM-02511","109.5","109.5","","1984-01-26T00:00:00Z","","0" +"NM-25680","-103.58999633789062","-103.58999633789062","","1988-12-28T00:00:00Z","","0" +"NM-10524","56.33000183105469","56.33000183105469","P","1952-01-14T00:00:00Z","","0" +"NM-03320","131.82000732421875","131.82000732421875","","1974-01-17T00:00:00Z","","0" +"NM-02754","17.06999969482422","17.06999969482422","","1984-01-25T00:00:00Z","","0" +"NM-05367","108.55999755859375","108.55999755859375","","1959-04-21T00:00:00Z","","0" +"NM-01886","58.2400016784668","58.2400016784668","","2001-09-21T00:00:00Z","","0" +"NM-28255","29.110000610351562","29.110000610351562","","2021-01-05T00:00:00Z","","0" +"NM-07509","129.4600067138672","129.4600067138672","","1954-09-28T00:00:00Z","","0" +"NM-17198","49.36000061035156","49.36000061035156","","1982-03-12T00:00:00Z","","0" +"NM-22827","126.5","126.5","","1944-09-17T00:00:00Z","","0" +"NM-23098","18.459999084472656","18.459999084472656","","1953-04-09T00:00:00Z","","0" +"NM-00296","14.619999885559082","14.619999885559082","","2014-06-10T00:00:00Z","","0" +"EB-484","672.9500122070312","672.3500366210938","Z","2007-12-31T00:00:00Z","","0.6000000238418579" +"DE-0110","40.400001525878906","40.400001525878906","","2010-01-04T00:00:00Z","","0" +"NM-00575","69.0199966430664","69.0199966430664","","1985-01-08T00:00:00Z","","0" +"NM-05225","105.55000305175781","105.55000305175781","","1959-01-27T00:00:00Z","","0" +"EB-609","253.80999755859375","253.80999755859375","","2008-12-04T00:00:00Z","","0" +"NM-20308","83.05000305175781","83.05000305175781","","1955-09-15T00:00:00Z","","0" +"NM-02791","62.58000183105469","62.58000183105469","","1979-06-21T00:00:00Z","","0" +"NM-02509","85.9800033569336","85.9800033569336","","1990-02-27T00:00:00Z","","0" +"NM-09081","26.299999237060547","26.299999237060547","","1933-07-01T00:00:00Z","","0" +"NM-22243","148.07000732421875","148.07000732421875","","1958-08-11T00:00:00Z","","0" +"NM-01868","11.5","11.5","","1994-09-15T00:00:00Z","","0" +"NM-02984","52.25","52.25","","1991-01-08T00:00:00Z","","0" +"NM-28258","158.02999877929688","158.02999877929688","","1995-04-15T00:00:00Z","","0" +"NM-12083","53.29999923706055","53.29999923706055","","1980-06-25T00:00:00Z","","0" +"NM-12337","72.0999984741211","72.0999984741211","","1955-01-18T00:00:00Z","","0" +"NM-09820","42.720001220703125","42.720001220703125","","1961-02-01T00:00:00Z","","0" +"NM-08648","40.290000915527344","40.290000915527344","","1963-02-18T00:00:00Z","","0" +"NM-03670","10.369999885559082","10.369999885559082","","1993-01-27T00:00:00Z","","0" +"NM-14535","94.52999877929688","94.52999877929688","","1979-09-25T00:00:00Z","","0" +"NM-02152","8.5","8.5","","1996-03-15T00:00:00Z","","0" +"NM-01201","49.52000045776367","49.52000045776367","P","1960-05-11T00:00:00Z","","0" +"NM-19382","96.72000122070312","96.72000122070312","","1960-06-20T00:00:00Z","","0" +"NM-14124","52.779998779296875","52.779998779296875","","1976-05-04T00:00:00Z","","0" +"NM-13668","-41.43000030517578","-41.43000030517578","","1911-01-27T00:00:00Z","","0" +"NM-07136","127.11000061035156","127.11000061035156","","2002-04-03T00:00:00Z","","0" +"BC-0160","199.4499969482422","199.4499969482422","","2017-01-24T00:00:00Z","","0" +"WL-0067","105.19999694824219","105.19999694824219","R","2019-07-23T00:00:00Z","0001-01-01T13:52:00Z","1.649999976158142" +"NM-00709","27.719999313354492","27.719999313354492","","2012-11-28T00:00:00Z","","0" +"NM-24480","-66.87999725341797","-66.87999725341797","","1988-11-09T00:00:00Z","","0" +"NM-02158","7.699999809265137","7.699999809265137","","1990-05-15T00:00:00Z","","0" +"NM-14531","77.25","77.25","","1965-01-05T00:00:00Z","","0" +"NM-02797","2.799999952316284","2.799999952316284","","1958-05-06T00:00:00Z","","0" +"NM-07500","20.299999237060547","20.299999237060547","","1976-06-30T00:00:00Z","","0" +"NM-09042","83.38999938964844","83.38999938964844","","1958-11-28T00:00:00Z","","0" +"NM-26425","7.489999771118164","7.489999771118164","","1988-02-11T00:00:00Z","","0" +"NM-04787","73.62000274658203","73.62000274658203","","1957-01-16T00:00:00Z","","0" +"NM-09431","81.6500015258789","81.6500015258789","","1965-11-17T00:00:00Z","","0" +"TO-0104","32.29999923706055","32.29999923706055","","1941-02-13T00:00:00Z","","0" +"NM-02291","160.97000122070312","160.97000122070312","","1981-01-06T00:00:00Z","","0" +"NM-00783","13.1899995803833","13.1899995803833","","2013-09-19T00:00:00Z","","0" +"TO-0226","6.099999904632568","6.099999904632568","","1941-03-10T00:00:00Z","","0" +"EB-012","417.79998779296875","417.79998779296875","","1970-03-16T00:00:00Z","","0" +"NM-28256","216.19000244140625","216.19000244140625","","1977-03-25T00:00:00Z","","0" +"SM-0007","10.539999961853027","8.800000190734863","","2005-11-08T00:00:00Z","","1.7400000095367432" +"NM-01474","50.56999969482422","50.56999969482422","","2009-03-25T00:00:00Z","","0" +"SV-0130","109.69999694824219","107.8699951171875","","2017-02-19T00:00:00Z","","1.8300000429153442" +"NM-02026","56.119998931884766","56.119998931884766","","1953-12-14T00:00:00Z","","0" +"NM-02702","40.65999984741211","40.65999984741211","","1999-07-26T00:00:00Z","","0" +"NM-13770","-3.309999942779541","-3.309999942779541","","1914-01-27T00:00:00Z","","0" +"NM-13732","24.030000686645508","24.030000686645508","","1946-03-14T00:00:00Z","","0" +"NM-10773","27.959999084472656","27.959999084472656","","1944-01-22T00:00:00Z","","0" +"NM-03294","110.25","110.25","","1978-01-18T00:00:00Z","","0" +"NM-02522","94.27999877929688","94.27999877929688","","1989-01-31T00:00:00Z","","0" +"NM-02009","142","142","P","1960-04-04T00:00:00Z","","0" +"NM-00616","41.70000076293945","41.70000076293945","","1981-01-27T00:00:00Z","","0" +"NM-17716","-1.0299999713897705","-1.0299999713897705","","1943-02-07T00:00:00Z","","0" +"NM-01411","67.26000213623047","67.26000213623047","","1970-09-03T00:00:00Z","","0" +"NM-17655","79.06999969482422","79.06999969482422","","1973-01-08T00:00:00Z","","0" +"NM-22669","122.98999786376953","122.98999786376953","","2012-06-07T00:00:00Z","","0" +"NM-01068","101.94999694824219","101.94999694824219","","2012-02-09T00:00:00Z","","0" +"NM-10290","54.91999816894531","54.91999816894531","","1966-02-18T00:00:00Z","","0" +"NM-13246","67.66000366210938","67.66000366210938","","1952-01-01T00:00:00Z","","0" +"NM-12492","37.16999816894531","37.16999816894531","","1966-02-15T00:00:00Z","","0" +"NM-01780","141.5500030517578","141.5500030517578","","2007-01-09T00:00:00Z","","0" +"NM-07144","58.13999938964844","58.13999938964844","","1996-03-13T00:00:00Z","","0" +"EB-263","-1.0700000524520874","-1.0700000524520874","","2007-12-05T00:00:00Z","","0" +"NM-10099","116.94999694824219","116.94999694824219","","1983-02-25T00:00:00Z","","0" +"NM-03872","359.80999755859375","359.80999755859375","","1966-01-14T00:00:00Z","","0" +"NM-17034","20.219999313354492","20.219999313354492","","1941-09-26T00:00:00Z","","0" +"NM-01415","125","125","","1993-03-24T00:00:00Z","","0" +"NM-02526","13.949999809265137","13.949999809265137","","1986-01-09T00:00:00Z","","0" +"NM-01888","8.390000343322754","8.390000343322754","","2009-04-14T00:00:00Z","","0" +"NM-01932","350.7900085449219","350.7900085449219","","1975-01-16T00:00:00Z","","0" +"NM-05093","198.5","198.5","P","1956-12-07T00:00:00Z","","0" +"NM-28258","102.3499984741211","102.3499984741211","","1996-02-15T00:00:00Z","","0" +"BW-0127","39.290000915527344","39.290000915527344","","1968-01-29T00:00:00Z","","0" +"NM-06783","317.5","317.5","","2010-07-21T00:00:00Z","","0" +"NM-03566","300","300","","1975-12-28T00:00:00Z","","0" +"NM-01835","127.81999969482422","127.81999969482422","","1974-06-13T00:00:00Z","","0" +"NM-00213","174.19000244140625","174.19000244140625","","1970-03-01T00:00:00Z","","0" +"NM-10906","26.530000686645508","26.530000686645508","","1945-01-10T00:00:00Z","","0" +"NM-07398","91.44999694824219","91.44999694824219","","1968-01-23T00:00:00Z","","0" +"NM-03760","42.279998779296875","42.279998779296875","","1951-01-15T00:00:00Z","","0" +"NM-13425","399.44000244140625","399.44000244140625","","1957-10-01T00:00:00Z","","0" +"NM-01963","409.1199951171875","409.1199951171875","","2010-02-04T00:00:00Z","","0" +"NM-11885","11.319999694824219","11.319999694824219","","1946-01-23T00:00:00Z","","0" +"EB-276","408","408","P","1992-03-31T00:00:00Z","","0" +"NM-09085","-83.01000213623047","-83.01000213623047","","1908-03-25T00:00:00Z","","0" +"NM-02563","42.2599983215332","42.2599983215332","","1993-08-02T00:00:00Z","","0" +"NM-10021","96.37000274658203","96.37000274658203","","1958-08-26T00:00:00Z","","0" +"NM-19198","47.560001373291016","47.560001373291016","R","1974-10-01T00:00:00Z","","0" +"DE-0075","87","87","","2009-04-30T00:00:00Z","","0" +"NM-01286","70.63999938964844","70.63999938964844","","1952-04-24T00:00:00Z","","0" +"NM-00169","25.8700008392334","25.8700008392334","","1996-01-24T00:00:00Z","","0" +"NM-26655","34.88999938964844","34.88999938964844","","1974-02-21T00:00:00Z","","0" +"NM-13727","-14.859999656677246","-14.859999656677246","","1911-05-19T00:00:00Z","","0" +"NM-22409","150.1300048828125","150.1300048828125","","1979-04-02T00:00:00Z","","0" +"NM-28258","153.0500030517578","153.0500030517578","","2015-04-06T00:00:00Z","","0" +"NM-20972","11.109999656677246","11.109999656677246","","1948-10-26T00:00:00Z","","0" +"NM-28251","70.43000030517578","70.43000030517578","","2003-06-25T00:00:00Z","","0" +"NM-28257","52.689998626708984","52.689998626708984","","1994-08-05T00:00:00Z","","0" +"NM-25447","36.779998779296875","36.779998779296875","","1993-01-20T00:00:00Z","","0" +"UC-0119","19.399999618530273","19.399999618530273","","1958-08-14T00:00:00Z","","0" +"NM-04103","68.3499984741211","68.3499984741211","","1956-01-22T00:00:00Z","","0" +"NM-02209","112.66000366210938","112.66000366210938","","1976-06-01T00:00:00Z","","0" +"NM-01989","9.350000381469727","9.350000381469727","","1996-02-15T00:00:00Z","","0" +"NM-02017","7.099999904632568","7.099999904632568","","1979-10-15T00:00:00Z","","0" +"NM-02707","36.40999984741211","36.40999984741211","","1972-10-18T00:00:00Z","","0" +"NM-07298","320.29998779296875","320.29998779296875","","1983-02-15T00:00:00Z","","0" +"NM-08665","42.540000915527344","42.540000915527344","","1939-06-29T00:00:00Z","","0" +"DE-0306","48.56999969482422","48.56999969482422","","2017-09-06T00:00:00Z","","0" +"NM-02720","55.70000076293945","55.70000076293945","","1972-01-13T00:00:00Z","","0" +"NM-03300","46.369998931884766","46.369998931884766","","1949-02-16T00:00:00Z","","0" +"NM-28253","4.650000095367432","4.650000095367432","","1959-01-05T00:00:00Z","","0" +"NM-01841","263.2699890136719","263.2699890136719","","1982-08-18T00:00:00Z","","0" +"DE-0248","108.68000030517578","108.68000030517578","","2005-12-12T00:00:00Z","","0" +"NM-02367","10.8100004196167","10.8100004196167","","1991-08-15T00:00:00Z","","0" +"NM-28258","124.8499984741211","124.8499984741211","","1980-12-25T00:00:00Z","","0" +"AB-0214","155.61000061035156","155.61000061035156","","2013-03-26T00:00:00Z","","" +"NM-01904","43.150001525878906","43.150001525878906","","1959-04-21T00:00:00Z","","0" +"NM-11335","188.7100067138672","188.7100067138672","","1970-01-05T00:00:00Z","","0" +"NM-23515","31.350000381469727","31.350000381469727","","2015-04-06T00:00:00Z","","0" +"NM-17142","39.52000045776367","39.52000045776367","","1956-03-24T00:00:00Z","","0" +"SA-0016","381.3999938964844","380.739990234375","","2012-02-27T00:00:00Z","","0.6600000262260437" +"NM-21592","4.25","4.25","Z","2006-12-15T00:00:00Z","","0" +"NM-00366","135.57000732421875","135.57000732421875","","1984-04-05T00:00:00Z","","0" +"NM-23385","154.8699951171875","154.8699951171875","P","1955-04-15T00:00:00Z","","0" +"NM-00783","19.510000228881836","19.510000228881836","","2012-03-30T00:00:00Z","","0" +"NM-00794","86.37999725341797","86.37999725341797","","2012-09-27T00:00:00Z","","0" +"NM-03259","20.530000686645508","20.530000686645508","","1960-01-25T00:00:00Z","","0" +"NM-13879","-22.950000762939453","-22.950000762939453","","1907-01-07T00:00:00Z","","0" +"NM-11235","277.4599914550781","277.4599914550781","","1976-04-12T00:00:00Z","","0" +"NM-13561","4.400000095367432","4.400000095367432","","1959-02-18T00:00:00Z","","0" +"SM-0022","107.55000305175781","105.34000396728516","","2009-02-11T00:00:00Z","","2.2100000381469727" +"NM-17102","22.18000030517578","22.18000030517578","","1944-01-20T00:00:00Z","","0" +"NM-08088","56.77000045776367","56.77000045776367","","1981-01-16T00:00:00Z","","0" +"EB-483","678.3900146484375","678.3900146484375","P","2003-03-31T00:00:00Z","","0" +"DE-0267","89.4000015258789","89.4000015258789","","2019-06-24T00:00:00Z","","0" +"NM-03394","16.850000381469727","16.850000381469727","","1993-12-17T00:00:00Z","","0" +"NM-21503","9.369999885559082","9.369999885559082","","2012-11-29T00:00:00Z","","0" +"NM-17418","23.899999618530273","23.899999618530273","","1947-01-17T00:00:00Z","","0" +"NM-26736","181.8800048828125","181.8800048828125","","1969-03-19T00:00:00Z","","0" +"AB-0066","163.86000061035156","163.86000061035156","","2003-07-29T00:00:00Z","","" +"NM-16620","13.829999923706055","13.829999923706055","","1933-12-17T00:00:00Z","","0" +"NM-26318","180.24000549316406","180.24000549316406","","1978-01-24T00:00:00Z","","0" +"NM-11100","46.41999816894531","46.41999816894531","","1956-03-07T00:00:00Z","","0" +"NM-20451","195.24000549316406","195.24000549316406","","2003-09-09T00:00:00Z","","0" +"NM-01872","19.899999618530273","19.899999618530273","","1957-05-15T00:00:00Z","","0" +"NM-01899","57.880001068115234","57.880001068115234","","2002-03-22T00:00:00Z","","0" +"NM-03679","200.60000610351562","200.60000610351562","","1959-06-11T00:00:00Z","","0" +"NM-26657","16.25","16.25","Z","2012-03-06T00:00:00Z","","0" +"NM-23335","421.29998779296875","421.29998779296875","P","1988-06-15T00:00:00Z","","0" +"NM-11778","86.52999877929688","86.52999877929688","S","1953-09-08T00:00:00Z","","0" +"SO-0252","7.090000152587891","6.659999847412109","","2017-01-02T00:00:00Z","0001-01-01T15:58:00Z","0.4300000071525574" +"NM-03692","203.8800048828125","203.8800048828125","","1964-08-01T00:00:00Z","","0" +"DE-0122","37.70000076293945","37.70000076293945","","2007-07-23T00:00:00Z","","0" +"NM-05490","89.16000366210938","89.16000366210938","","1961-04-07T00:00:00Z","","0" +"NM-10228","138.6699981689453","138.6699981689453","","1961-03-28T00:00:00Z","","0" +"NM-04522","55.52000045776367","55.52000045776367","P","1971-01-28T00:00:00Z","","0" +"TV-221","10.739999771118164","9.84000015258789","","2011-04-22T00:00:00Z","","0.8999999761581421" +"NM-13770","-8.800000190734863","-8.800000190734863","","1907-01-03T00:00:00Z","","0" +"NM-07685","31.190000534057617","31.190000534057617","","1933-05-15T00:00:00Z","","0" +"NM-02280","28.270000457763672","28.270000457763672","","2004-05-19T00:00:00Z","","0" +"NM-23378","148.49000549316406","148.49000549316406","","1950-06-28T00:00:00Z","","0" +"NM-11592","118.38999938964844","118.38999938964844","","1956-02-08T00:00:00Z","","0" +"NM-08396","248.4199981689453","248.4199981689453","","1972-02-07T00:00:00Z","","0" +"NM-04342","42.400001525878906","42.400001525878906","","1982-01-06T00:00:00Z","","0" +"NM-02520","7.300000190734863","7.300000190734863","","1965-07-15T00:00:00Z","","0" +"NM-21544","373.1099853515625","373.1099853515625","","1992-12-01T00:00:00Z","","0" +"NM-12405","17.1299991607666","17.1299991607666","","1949-01-10T00:00:00Z","","0" +"NM-12836","-12.550000190734863","-12.550000190734863","","1908-03-16T00:00:00Z","","0" +"NM-13594","49.540000915527344","49.540000915527344","","1973-08-06T00:00:00Z","","0" +"NM-00748","140.02000427246094","140.02000427246094","","1956-03-26T00:00:00Z","","0" +"NM-14060","-10.239999771118164","-10.239999771118164","","1911-01-21T00:00:00Z","","0" +"NM-02487","7.599999904632568","7.599999904632568","","1970-06-15T00:00:00Z","","0" +"NM-24935","10.699999809265137","10.699999809265137","","1979-07-11T00:00:00Z","","0" +"NM-05061","36.52000045776367","36.52000045776367","","1968-01-29T00:00:00Z","","0" +"NM-00680","55.560001373291016","55.560001373291016","","1960-03-23T00:00:00Z","","0" +"NM-17232","61.47999954223633","61.47999954223633","","1957-01-19T00:00:00Z","","0" +"NM-06694","171.25","171.25","","1976-01-21T00:00:00Z","","0" +"NM-03320","168.5500030517578","168.5500030517578","","2003-01-24T00:00:00Z","","0" +"NM-23353","93.30999755859375","93.30999755859375","R","2004-03-09T00:00:00Z","","0" +"NM-23247","106.6500015258789","106.6500015258789","","1956-07-17T00:00:00Z","","0" +"NM-02382","52.61000061035156","52.61000061035156","","1945-01-09T00:00:00Z","","0" +"NM-16778","44.63999938964844","44.63999938964844","","1956-01-23T00:00:00Z","","0" +"NM-03396","14.350000381469727","14.350000381469727","","1995-02-16T00:00:00Z","","0" +"NM-20051","22.059999465942383","22.059999465942383","","1947-09-14T00:00:00Z","","0" +"NM-03378","34.4900016784668","34.4900016784668","","1988-01-27T00:00:00Z","","0" +"NM-07815","20.079999923706055","20.079999923706055","","1942-10-23T00:00:00Z","","0" +"NM-14259","-12.550000190734863","-12.550000190734863","","1910-12-15T00:00:00Z","","0" +"MI-0212","30","30","Z","1950-12-31T00:00:00Z","","0" +"NM-06417","52.150001525878906","52.150001525878906","","1975-01-10T00:00:00Z","","0" +"NM-13028","2.7799999713897705","2.7799999713897705","","1978-07-13T00:00:00Z","","0" +"BC-0185","440.54998779296875","440.54998779296875","","2019-04-26T00:00:00Z","","0" +"NM-28251","68.37999725341797","68.37999725341797","","2004-12-05T00:00:00Z","","0" +"NM-14727","109.81999969482422","109.81999969482422","","1979-02-01T00:00:00Z","","0" +"ED-0027","130","130","Z","1948-12-01T00:00:00Z","","0" +"NM-00406","46.52000045776367","46.52000045776367","","2013-12-12T00:00:00Z","","0" +"NM-03414","53.470001220703125","53.470001220703125","","1995-01-10T00:00:00Z","","0" +"NM-22771","112.5999984741211","112.5999984741211","","1945-07-05T00:00:00Z","","0" +"NM-01604","99.02999877929688","99.02999877929688","","1988-08-29T00:00:00Z","","0" +"NM-01204","356.510009765625","356.510009765625","","2009-02-18T00:00:00Z","","0" +"NM-09519","3.1500000953674316","3.1500000953674316","","1947-01-13T00:00:00Z","","0" +"NM-28257","6.710000038146973","6.710000038146973","","1978-11-05T00:00:00Z","","0" +"NM-02591","12.399999618530273","12.399999618530273","","1998-05-15T00:00:00Z","","0" +"NM-13118","11.5","11.5","","1969-02-28T00:00:00Z","","0" +"EB-483","26.350000381469727","26.350000381469727","","1983-01-06T00:00:00Z","","" +"NM-12612","23.90999984741211","23.90999984741211","","1942-02-05T00:00:00Z","","0" +"NM-13899","10.399999618530273","10.399999618530273","","1967-08-30T00:00:00Z","","0" +"NM-28251","77.33000183105469","77.33000183105469","","2017-06-26T00:00:00Z","","0" +"NM-02352","12.100000381469727","12.100000381469727","","1956-08-15T00:00:00Z","","0" +"NM-14029","-18.329999923706055","-18.329999923706055","","1908-12-07T00:00:00Z","","0" +"NM-28255","140.33999633789062","140.33999633789062","","1988-06-25T00:00:00Z","","0" +"NM-00507","73.9800033569336","73.9800033569336","","1996-01-03T00:00:00Z","","0" +"TO-0180","26.299999237060547","26.299999237060547","","1941-02-13T00:00:00Z","","0" +"EB-389","110.05000305175781","108.06999969482422","","2010-11-11T00:00:00Z","","1.9800000190734863" +"NM-22421","10.199999809265137","10.199999809265137","","1946-11-06T00:00:00Z","","0" +"NM-14348","27.149999618530273","27.149999618530273","","1957-07-18T00:00:00Z","","0" +"NM-06499","78.76000213623047","78.76000213623047","","1950-07-17T00:00:00Z","","0" +"NM-28019","478.3900146484375","478.3900146484375","S","2015-04-26T00:00:00Z","","0" +"NM-11597","116.98999786376953","116.98999786376953","","1959-11-19T00:00:00Z","","0" +"ED-0096","31.600000381469727","31.600000381469727","","1947-12-05T00:00:00Z","","0" +"NM-09104","446.8999938964844","446.8999938964844","","1960-01-26T00:00:00Z","","0" +"TV-121","120.86000061035156","119.75","","2019-11-07T00:00:00Z","0001-01-01T11:58:00Z","1.1100000143051147" +"NM-22501","83","83","","1979-06-09T00:00:00Z","","0" +"TV-226","8.430000305175781","8.079999923706055","","2012-04-10T00:00:00Z","","0.3499999940395355" +"NM-02005","9.5","9.5","","1956-04-15T00:00:00Z","","0" +"NM-28256","182.88999938964844","182.88999938964844","","1980-03-25T00:00:00Z","","0" +"EB-220","127.4000015258789","127.4000015258789","","1980-07-20T00:00:00Z","","0" +"NM-14535","89.9800033569336","89.9800033569336","","1972-10-16T00:00:00Z","","0" +"NM-01931","324.82000732421875","324.82000732421875","","1958-07-25T00:00:00Z","","0" +"EB-270","225.35000610351562","225.35000610351562","","1999-12-16T00:00:00Z","","0" +"NM-03436","93.23999786376953","93.23999786376953","P","1951-04-18T00:00:00Z","","0" +"NM-11100","46.900001525878906","46.900001525878906","","1954-09-15T00:00:00Z","","0" +"NM-02474","68.04000091552734","68.04000091552734","","1982-02-01T00:00:00Z","","0" +"NM-04654","109.55000305175781","109.55000305175781","","1982-02-01T00:00:00Z","","0" +"SB-0299","146.8300018310547","146.8300018310547","","2003-07-10T00:00:00Z","","0" +"NM-06717","132.0800018310547","132.0800018310547","P","1973-03-22T00:00:00Z","","0" +"NM-04126","62.40999984741211","62.40999984741211","","2013-09-17T00:00:00Z","","0" +"NM-03356","77.80000305175781","77.80000305175781","P","1958-06-03T00:00:00Z","","0" +"NM-13918","-4.230000019073486","-4.230000019073486","","1913-08-18T00:00:00Z","","0" +"NM-23350","102.44999694824219","102.44999694824219","","1957-05-07T00:00:00Z","","0" +"NM-20165","48.95000076293945","48.95000076293945","","1944-01-23T00:00:00Z","","0" +"NM-14792","24.59000015258789","24.59000015258789","","1953-01-26T00:00:00Z","","0" +"NM-11889","1.7999999523162842","1.7999999523162842","","1964-05-01T00:00:00Z","","0" +"SO-0184","12.579999923706055","10.65999984741211","","2021-10-25T00:00:00Z","0001-01-01T07:40:00Z","1.9199999570846558" +"NM-12911","70.4000015258789","70.4000015258789","","1939-02-03T00:00:00Z","","0" +"NM-03462","128.9600067138672","128.9600067138672","","1948-09-01T00:00:00Z","","0" +"NM-18841","325.9100036621094","325.9100036621094","","1977-02-01T00:00:00Z","","0" +"NM-00448","101.66999816894531","101.66999816894531","","1984-01-04T00:00:00Z","","0" +"NM-10352","108.54000091552734","108.54000091552734","","1977-01-08T00:00:00Z","","0" +"NM-02198","35.189998626708984","35.189998626708984","","2016-08-17T00:00:00Z","","0" +"NM-00300","41.7599983215332","41.7599983215332","","1996-04-02T00:00:00Z","","0" +"NM-28259","122.66000366210938","122.66000366210938","","2014-11-14T00:00:00Z","","0" +"NM-28255","15.510000228881836","15.510000228881836","","2011-01-05T00:00:00Z","","0" +"NM-05733","152.08999633789062","152.08999633789062","","1983-01-06T00:00:00Z","","0" +"NM-00367","115.08999633789062","115.08999633789062","","1969-01-01T00:00:00Z","","0" +"NM-03294","110.3499984741211","110.3499984741211","","1975-02-08T00:00:00Z","","0" +"NM-21505","4.5","4.5","","1958-06-10T00:00:00Z","","0" +"SB-0299","123.6500015258789","123.6500015258789","","1979-04-01T00:00:00Z","","0" +"NM-10445","44.720001220703125","44.720001220703125","R","1971-02-22T00:00:00Z","","0" +"EB-487","348.29998779296875","344.79998779296875","Z","2007-07-31T00:00:00Z","","3.5" +"AB-0192","793.760009765625","793.760009765625","","1991-10-04T00:00:00Z","","" +"NM-12220","12.25","12.25","","1969-01-16T00:00:00Z","","0" +"NM-09676","-16.020000457763672","-16.020000457763672","","1908-12-19T00:00:00Z","","0" +"NM-02702","18.8799991607666","18.8799991607666","","1969-01-15T00:00:00Z","","0" +"NM-03439","243.83999633789062","243.83999633789062","","1973-01-22T00:00:00Z","","0" +"NM-28252","54.439998626708984","54.439998626708984","","2014-09-05T00:00:00Z","","0" +"NM-03455","295.239990234375","295.239990234375","","1993-02-08T00:00:00Z","","0" +"NM-27430","53.15999984741211","53.15999984741211","","1971-03-09T00:00:00Z","","0" +"NM-01565","-258.5400085449219","-258.5400085449219","","1989-03-04T00:00:00Z","","0" +"NM-09122","-41.43000030517578","-41.43000030517578","","1914-03-11T00:00:00Z","","0" +"NM-14712","89.7699966430664","89.7699966430664","","1978-05-12T00:00:00Z","","0" +"NM-18492","15","15","","1949-08-10T00:00:00Z","","0" +"NM-28257","19.280000686645508","19.280000686645508","","1972-10-05T00:00:00Z","","0" +"NM-01575","84.88999938964844","84.88999938964844","","2002-01-17T00:00:00Z","","0" +"NM-00084","81.61000061035156","81.61000061035156","","1988-02-10T00:00:00Z","","0" +"UC-0035","97.94000244140625","97.94000244140625","","2000-07-21T00:00:00Z","","0" +"NM-00498","57.90999984741211","57.90999984741211","","2003-07-23T00:00:00Z","","0" +"NM-12938","29.6200008392334","29.6200008392334","","1948-05-26T00:00:00Z","","0" +"DE-0113","38.97999954223633","38.97999954223633","","2009-01-19T00:00:00Z","","0" +"NM-13818","-6.199999809265137","-6.199999809265137","","1911-06-04T00:00:00Z","","0" +"NM-21161","100.25","100.25","","1972-03-02T00:00:00Z","","0" +"NM-24987","92.30999755859375","92.30999755859375","","1959-04-26T00:00:00Z","","0" +"NM-01940","87.81999969482422","87.81999969482422","","1953-03-21T00:00:00Z","","0" +"NM-05516","9.300000190734863","9.300000190734863","","1976-09-15T00:00:00Z","","0" +"NM-09458","80.98999786376953","80.98999786376953","","1961-04-05T00:00:00Z","","0" +"NM-02780","122.55000305175781","122.55000305175781","","2010-01-21T00:00:00Z","","0" +"NM-01891","53.040000915527344","53.040000915527344","","2008-09-09T00:00:00Z","","0" +"NM-09830","49.15999984741211","49.15999984741211","","1939-06-23T00:00:00Z","","0" +"QY-0938","17","17","","1955-04-28T00:00:00Z","","0" +"NM-14154","-21.790000915527344","-21.790000915527344","","1908-09-09T00:00:00Z","","0" +"NM-13594","25.399999618530273","25.399999618530273","","1969-11-25T00:00:00Z","","0" +"NM-05048","90.94000244140625","90.94000244140625","","1972-01-26T00:00:00Z","","0" +"SM-0068","193.91000366210938","193.91000366210938","","1984-01-06T00:00:00Z","","0" +"NM-09251","77.2300033569336","77.2300033569336","","1971-01-21T00:00:00Z","","0" +"NM-17127","41.72999954223633","41.72999954223633","","1955-09-21T00:00:00Z","","0" +"NM-03419","27.1200008392334","27.1200008392334","Z","1988-08-30T00:00:00Z","","0" +"NM-00782","17.780000686645508","17.780000686645508","","2008-06-27T00:00:00Z","","0" +"WL-0091","49.20833206176758","46.438331604003906","","1997-07-30T00:00:00Z","","2.7699999809265137" +"NM-27474","73.58999633789062","73.58999633789062","","1952-07-08T00:00:00Z","","0" +"NM-13121","6.829999923706055","6.829999923706055","","1973-01-15T00:00:00Z","","0" +"NM-17716","4.960000038146973","4.960000038146973","","1935-02-16T00:00:00Z","","0" +"TB-0122","67.47000122070312","66","","2009-09-01T00:00:00Z","","1.4700000286102295" +"NM-03391","31.790000915527344","31.790000915527344","","2008-07-08T00:00:00Z","","0" +"NM-19170","68.06999969482422","68.06999969482422","","1974-12-12T00:00:00Z","","0" +"NM-21308","23","23","","1957-08-01T00:00:00Z","","0" +"NM-00643","102.56999969482422","102.56999969482422","Z","1995-02-01T00:00:00Z","","0" +"NM-14051","-5.800000190734863","-5.800000190734863","","1910-09-09T00:00:00Z","","0" +"NM-03673","81.4000015258789","81.4000015258789","","1980-02-05T00:00:00Z","","0" +"NM-19774","25.190000534057617","25.190000534057617","S","1951-05-28T00:00:00Z","","0" +"SB-0299","152.3000030517578","152.3000030517578","","2015-09-20T00:00:00Z","","0" +"SB-0378","82.38999938964844","82.38999938964844","","2018-02-15T00:00:00Z","","0" +"NM-12643","21.329999923706055","21.329999923706055","P","1961-02-28T00:00:00Z","","0" +"NM-28256","83.69000244140625","83.69000244140625","","2016-01-15T00:00:00Z","","0" +"NM-24338","51.2599983215332","51.2599983215332","","1975-11-20T00:00:00Z","","0" +"NM-01204","348.8900146484375","348.8900146484375","","1999-04-16T00:00:00Z","","0" +"NM-00094","2.809999942779541","2.809999942779541","","1965-05-01T00:00:00Z","","0" +"NM-03211","188.94000244140625","188.94000244140625","","2000-08-23T00:00:00Z","","0" +"NM-21081","19.280000686645508","19.280000686645508","","2006-10-03T00:00:00Z","","0" +"EB-207","119.5999984741211","119.5999984741211","","1954-05-26T00:00:00Z","","0" +"NM-02599","27.450000762939453","27.450000762939453","","2013-01-28T00:00:00Z","","0" +"MI-0035","18.239999771118164","18.239999771118164","","1947-09-22T00:00:00Z","","0" +"EB-265","70.91000366210938","70.91000366210938","","2010-05-04T00:00:00Z","","0" +"NM-13254","9.399999618530273","9.399999618530273","","1958-12-01T00:00:00Z","","0" +"SB-0299","133.64999389648438","133.64999389648438","","2015-03-05T00:00:00Z","","0" +"EB-608","216.72000122070312","216.72000122070312","","2006-03-28T00:00:00Z","","0" +"NM-14802","105.87999725341797","105.87999725341797","","1973-07-16T00:00:00Z","","0" +"NM-05634","15.710000038146973","15.710000038146973","","1941-11-10T00:00:00Z","","0" +"NM-22847","365.7799987792969","365.7799987792969","R","1984-03-13T00:00:00Z","","0" +"NM-22493","256.5","256.5","","1960-08-02T00:00:00Z","","0" +"NM-13806","-3.890000104904175","-3.890000104904175","","1908-06-15T00:00:00Z","","0" +"NM-01884","9.800000190734863","9.800000190734863","","2001-08-30T00:00:00Z","","0" +"QY-0631","43.900001525878906","43.900001525878906","","1956-01-11T00:00:00Z","","0" +"NM-20334","109.5","109.5","","1977-01-21T00:00:00Z","","0" +"AB-0102","577.8099975585938","577.8099975585938","","2005-05-24T00:00:00Z","","" +"NM-02256","6.599999904632568","6.599999904632568","","1949-12-15T00:00:00Z","","0" +"HS-039","15.399999618530273","13.529999732971191","","2019-04-03T00:00:00Z","","1.8700000047683716" +"DE-0099","90.77999877929688","90.77999877929688","","2016-06-13T00:00:00Z","","0" +"NM-01303","107.2699966430664","107.2699966430664","P","2012-03-12T00:00:00Z","","0" +"SA-0049","60.63999938964844","59.09000015258789","","2012-03-05T00:00:00Z","","1.5499999523162842" +"DE-0358","52.099998474121094","48.90999984741211","","2013-05-20T00:00:00Z","","3.190000057220459" +"NM-03462","141.52000427246094","141.52000427246094","","1975-08-01T00:00:00Z","","0" +"NM-05753","65.29000091552734","65.29000091552734","","1950-09-23T00:00:00Z","","0" +"NM-01036","121.81999969482422","121.81999969482422","","2000-01-19T00:00:00Z","","0" +"NM-04647","77.44000244140625","77.44000244140625","","1956-01-18T00:00:00Z","","0" +"NM-28252","60.25","60.25","","1968-05-25T00:00:00Z","","0" +"NM-02710","38.31999969482422","38.31999969482422","","1980-08-01T00:00:00Z","","0" +"NM-03290","6.429999828338623","6.429999828338623","","1971-01-14T00:00:00Z","","0" +"NM-18989","66.58999633789062","66.58999633789062","","1974-10-18T00:00:00Z","","0" +"NM-19787","132.10000610351562","132.10000610351562","","2011-12-16T00:00:00Z","","0" +"NM-13557","27.799999237060547","27.799999237060547","","1961-07-28T00:00:00Z","","0" +"NM-01771","26.600000381469727","26.600000381469727","","2001-01-24T00:00:00Z","","0" +"SB-0426","115.48999786376953","115.48999786376953","","1975-01-16T00:00:00Z","","0" +"NM-05762","62.459999084472656","62.459999084472656","","1962-08-01T00:00:00Z","","0" +"NM-02772","103.86000061035156","103.86000061035156","","1956-06-01T00:00:00Z","","0" +"NM-13118","9.199999809265137","9.199999809265137","","1983-07-13T00:00:00Z","","0" +"NM-08648","40.040000915527344","40.040000915527344","","1948-09-25T00:00:00Z","","0" +"EB-018","20.5","19.5","","1993-07-01T00:00:00Z","","1" +"NM-04834","69.8499984741211","69.8499984741211","","1956-03-14T00:00:00Z","","0" +"NM-23621","75.69999694824219","75.69999694824219","","1984-06-14T00:00:00Z","","0" +"NM-12559","17.950000762939453","17.950000762939453","","1959-01-12T00:00:00Z","","0" +"NM-02005","9.199999809265137","9.199999809265137","","1972-03-15T00:00:00Z","","0" +"NM-00923","268.5400085449219","268.5400085449219","","1993-01-07T00:00:00Z","","0" +"NM-02794","70.6500015258789","70.6500015258789","","2006-01-23T00:00:00Z","","0" +"NM-27327","11.369999885559082","11.369999885559082","","1953-07-31T00:00:00Z","","0" +"NM-20479","111.11000061035156","111.11000061035156","","1972-02-16T00:00:00Z","","0" +"NM-22985","5.03000020980835","5.03000020980835","Z","2007-11-07T00:00:00Z","","0" +"NM-12727","82.25","82.25","","1967-01-04T00:00:00Z","","0" +"NM-02091","90.83000183105469","90.83000183105469","","1969-02-05T00:00:00Z","","0" +"NM-01948","8.399999618530273","8.399999618530273","","1979-01-15T00:00:00Z","","0" +"EB-607","200.0800018310547","200.0800018310547","","2015-10-05T00:00:00Z","","0" +"NM-02192","60.060001373291016","60.060001373291016","","1974-03-05T00:00:00Z","","0" +"NM-00047","68.19999694824219","68.19999694824219","","2001-07-12T00:00:00Z","","0" +"EB-264","12.569999694824219","12.569999694824219","","2012-10-24T00:00:00Z","","0" +"NM-28257","21.100000381469727","21.100000381469727","","2004-07-26T00:00:00Z","","0" +"NM-08071","8","8","","1966-04-15T00:00:00Z","","0" +"NM-28259","122.27999877929688","122.27999877929688","","1968-05-15T00:00:00Z","","0" +"NM-20389","88.88999938964844","88.88999938964844","","1960-03-02T00:00:00Z","","0" +"NM-00657","33.04999923706055","33.04999923706055","","1994-02-15T00:00:00Z","","0" +"NM-13531","3.4000000953674316","3.4000000953674316","","1960-05-03T00:00:00Z","","0" +"NM-11552","67.91999816894531","67.91999816894531","","1945-01-13T00:00:00Z","","0" +"NM-23965","87.70999908447266","87.70999908447266","","1963-05-11T00:00:00Z","","0" +"NM-08191","71.69999694824219","71.69999694824219","P","1959-01-26T00:00:00Z","","0" +"NM-01872","11.300000190734863","11.300000190734863","","1964-06-15T00:00:00Z","","0" +"NM-22098","47.79999923706055","47.79999923706055","","1960-11-14T00:00:00Z","","0" +"NM-00629","78.38999938964844","78.38999938964844","R","2014-01-06T00:00:00Z","","0" +"NM-20289","43.83000183105469","43.83000183105469","","1954-07-28T00:00:00Z","","0" +"NM-19435","314.82000732421875","314.82000732421875","","1984-01-17T00:00:00Z","","0" +"NM-13405","30.18000030517578","30.18000030517578","","1989-01-10T00:00:00Z","","0" +"NM-11428","58.939998626708984","58.939998626708984","","1966-03-03T00:00:00Z","","0" +"NM-22464","238.27999877929688","238.27999877929688","","2007-01-24T00:00:00Z","","0" +"PC-006","29.350000381469727","32.22999954223633","","1998-06-01T00:00:00Z","","0" +"NM-02384","12.670000076293945","12.670000076293945","","2007-02-02T00:00:00Z","","0" +"NM-04133","103.87999725341797","103.87999725341797","","1962-03-20T00:00:00Z","","0" +"NM-28255","30.889999389648438","30.889999389648438","","1976-12-05T00:00:00Z","","0" +"EB-276","130.27999877929688","130.27999877929688","","1958-08-18T00:00:00Z","","0" +"NM-13120","5.230000019073486","5.230000019073486","","1970-09-25T00:00:00Z","","0" +"NM-10566","67","67","","1962-03-01T00:00:00Z","","0" +"NM-17929","100.80999755859375","100.80999755859375","","1977-02-16T00:00:00Z","","0" +"AB-0181","150.42999267578125","150.42999267578125","","2000-08-17T00:00:00Z","","" +"NM-28257","93.83999633789062","93.83999633789062","","1963-06-15T00:00:00Z","","0" +"NM-18799","10.680000305175781","10.680000305175781","","1977-03-24T00:00:00Z","","0" +"NM-05874","22","22","","1931-10-11T00:00:00Z","","0" +"NM-05340","77.66000366210938","77.66000366210938","","1953-05-11T00:00:00Z","","0" +"BC-0005","245.67999267578125","245.67999267578125","","2016-03-15T00:00:00Z","","0" +"NM-11322","3.119999885559082","3.119999885559082","","1972-01-31T00:00:00Z","","0" +"NM-02484","33.7400016784668","33.7400016784668","Z","1998-10-08T00:00:00Z","","0" +"NM-02567","63.459999084472656","63.459999084472656","","1993-03-01T00:00:00Z","","0" +"NM-00562","88","88","","1992-01-03T00:00:00Z","","0" +"BC-0213","124.01000213623047","124.01000213623047","","2019-04-23T00:00:00Z","","0" +"NM-01759","47.31999969482422","47.31999969482422","","1982-03-04T00:00:00Z","","0" +"NM-09455","38.91999816894531","38.91999816894531","","1961-03-03T00:00:00Z","","0" +"NM-02163","11.539999961853027","11.539999961853027","","2001-08-30T00:00:00Z","","0" +"NM-19784","70.61000061035156","70.61000061035156","","1956-07-18T00:00:00Z","","0" +"NM-23336","112.12999725341797","112.12999725341797","","1955-02-10T00:00:00Z","","0" +"NM-06016","42.599998474121094","42.599998474121094","","1950-01-19T00:00:00Z","","0" +"NM-13219","11.399999618530273","11.399999618530273","","1994-02-01T00:00:00Z","","0" +"NM-18590","92.13999938964844","92.13999938964844","","1992-03-04T00:00:00Z","","0" +"NM-02101","8.5","8.5","","1961-03-15T00:00:00Z","","0" +"NM-21637","","","D","2005-08-31T00:00:00Z","","0" +"NM-21504","7.039999961853027","7.039999961853027","","2003-04-29T00:00:00Z","","0" +"NM-02208","","","D","2016-02-03T00:00:00Z","","0" +"NM-00745","12.220000267028809","12.220000267028809","","2014-01-24T00:00:00Z","","0" +"NM-01625","156.72000122070312","156.72000122070312","","1988-09-02T00:00:00Z","","0" +"EB-258","95.55000305175781","95.55000305175781","","1974-02-28T00:00:00Z","","0" +"NM-10901","66.52999877929688","66.52999877929688","","1996-01-10T00:00:00Z","","0" +"NM-00603","39.36000061035156","39.36000061035156","","1947-01-15T00:00:00Z","","0" +"NM-12718","34.2400016784668","34.2400016784668","","1943-05-27T00:00:00Z","","0" +"NM-10689","126.68000030517578","126.68000030517578","","1960-10-12T00:00:00Z","","0" +"NM-02155","121.30000305175781","121.30000305175781","","1975-01-15T00:00:00Z","","0" +"NM-11466","69.69999694824219","69.69999694824219","","1960-01-07T00:00:00Z","","0" +"SM-0029","33.86000061035156","32.85000228881836","","2007-08-16T00:00:00Z","","1.0099999904632568" +"EB-219","67.98999786376953","66.48999786376953","","1963-02-28T00:00:00Z","","1.5" +"NM-14491","55.470001220703125","55.470001220703125","","1969-12-24T00:00:00Z","","0" +"NM-02276","28.729999542236328","28.729999542236328","","1979-11-08T00:00:00Z","","0" +"NM-27635","24.65999984741211","24.65999984741211","","1969-01-07T00:00:00Z","","0" +"NM-02449","120.02999877929688","120.02999877929688","","1980-01-16T00:00:00Z","","0" +"NM-02209","103.04000091552734","103.04000091552734","","1956-11-08T00:00:00Z","","0" +"EB-483","583.6799926757812","583.6799926757812","P","2005-08-31T00:00:00Z","","0" +"NM-04462","69.45999908447266","69.45999908447266","","1948-11-21T00:00:00Z","","0" +"DE-0106","44.97999954223633","44.97999954223633","","2012-03-29T00:00:00Z","","0" +"NM-17716","5.949999809265137","5.949999809265137","","1948-09-11T00:00:00Z","","0" +"AB-0143","315.2300109863281","315.2300109863281","","1987-08-15T00:00:00Z","","0" +"NM-09637","181.6999969482422","181.6999969482422","","1955-01-14T00:00:00Z","","0" +"NM-16393","210.02999877929688","210.02999877929688","","1978-06-13T00:00:00Z","","0" +"NM-01856","81.86000061035156","81.86000061035156","","2000-01-20T00:00:00Z","","0" +"NM-12711","33.540000915527344","33.540000915527344","","1934-12-19T00:00:00Z","","0" +"NM-02349","15.800000190734863","15.800000190734863","","1977-03-15T00:00:00Z","","0" +"NM-02488","139.00999450683594","139.00999450683594","","1992-01-23T00:00:00Z","","0" +"EB-264","9.880000114440918","9.880000114440918","","1988-08-17T00:00:00Z","","0" +"AB-0004","419.07000732421875","419.07000732421875","","2003-07-24T00:00:00Z","","" +"NM-28250","83.7300033569336","83.7300033569336","","2004-04-15T00:00:00Z","","0" +"NM-22683","6.210000038146973","6.210000038146973","Z","2006-08-22T00:00:00Z","","0" +"NM-21678","356.739990234375","356.739990234375","","2005-01-13T00:00:00Z","","0" +"NM-06461","335.2300109863281","335.2300109863281","","1964-01-08T00:00:00Z","","0" +"NM-16759","36.869998931884766","36.869998931884766","","1960-01-11T00:00:00Z","","0" +"NM-00851","19.75","19.75","","1979-03-07T00:00:00Z","","0" +"NM-01955","5.5","5.5","","1994-08-15T00:00:00Z","","0" +"NM-03341","6.389999866485596","6.389999866485596","X","1996-10-17T00:00:00Z","","0" +"NM-02256","5.400000095367432","5.400000095367432","","1982-06-15T00:00:00Z","","0" +"NM-09817","54.11000061035156","54.11000061035156","","1946-11-19T00:00:00Z","","0" +"NM-21424","42.06999969482422","42.06999969482422","T","1984-11-19T00:00:00Z","","0" +"NM-02101","8","8","","1974-09-15T00:00:00Z","","0" +"NM-01796","6.599999904632568","6.599999904632568","","1982-12-15T00:00:00Z","","0" +"NM-03402","136.8300018310547","136.8300018310547","","1996-02-21T00:00:00Z","","0" +"SB-0299","136.5399932861328","136.5399932861328","","1981-05-01T00:00:00Z","","0" +"NM-09347","42.15999984741211","42.15999984741211","","1962-01-24T00:00:00Z","","0" +"NM-14293","6.159999847412109","6.159999847412109","","1958-06-09T00:00:00Z","","0" +"NM-08266","32.650001525878906","32.650001525878906","","1946-01-10T00:00:00Z","","0" +"NM-28253","28.239999771118164","28.239999771118164","","2012-10-15T00:00:00Z","","0" +"NM-12062","66.58000183105469","66.58000183105469","","1952-01-22T00:00:00Z","","0" +"DE-0063","71.19000244140625","67.86000061035156","","2012-12-01T00:00:00Z","","3.3299999237060547" +"NM-19787","131.9199981689453","131.9199981689453","","2004-02-17T00:00:00Z","","0" +"NM-14006","176.5800018310547","176.5800018310547","","1953-11-06T00:00:00Z","","0" +"NM-14167","-28.219999313354492","-28.219999313354492","","1910-09-10T00:00:00Z","","0" +"QU-004","50.66999816894531","49.349998474121094","","2012-06-22T00:00:00Z","","1.3200000524520874" +"EB-265","128.0800018310547","128.0800018310547","","2008-01-29T00:00:00Z","","0" +"NM-26278","104.26000213623047","104.26000213623047","","1976-01-27T00:00:00Z","","0" +"NM-02772","127.9800033569336","127.9800033569336","","1982-09-01T00:00:00Z","","0" +"NM-05364","68.58000183105469","68.58000183105469","R","1940-09-07T00:00:00Z","","0" +"NM-27750","48.33000183105469","48.33000183105469","","1995-03-21T00:00:00Z","","0" +"NM-20071","26.5","26.5","","1946-02-07T00:00:00Z","","0" +"NM-28251","66.62999725341797","66.62999725341797","","2000-06-26T00:00:00Z","","0" +"NM-03407","435","435","","1983-03-10T00:00:00Z","","0" +"NM-04249","18.100000381469727","18.100000381469727","","1941-05-07T00:00:00Z","","0" +"NM-16127","107.81999969482422","107.81999969482422","","1995-02-22T00:00:00Z","","0" +"NM-03004","60.13999938964844","60.13999938964844","","1962-01-08T00:00:00Z","","0" +"NM-05309","15.699999809265137","15.699999809265137","","1957-01-15T00:00:00Z","","0" +"NM-02676","67.80000305175781","67.80000305175781","","1987-02-13T00:00:00Z","","0" +"NM-24969","423.30999755859375","423.30999755859375","","1973-12-19T00:00:00Z","","0" +"NM-02314","11.300000190734863","11.300000190734863","","1967-05-15T00:00:00Z","","0" +"NM-14848","84.30000305175781","84.30000305175781","","1962-01-24T00:00:00Z","","0" +"NM-02280","28.59000015258789","28.59000015258789","","2006-03-08T00:00:00Z","","0" +"NM-10013","26","26","","1970-01-14T00:00:00Z","","0" +"NM-02861","101.5","101.5","","2001-02-01T00:00:00Z","","0" +"NM-11942","2.0899999141693115","2.0899999141693115","","1951-01-29T00:00:00Z","","0" +"NM-28252","37.79999923706055","37.79999923706055","","2001-11-05T00:00:00Z","","0" +"NM-07904","13.050000190734863","13.050000190734863","","2004-05-25T00:00:00Z","","0" +"NM-14224","14.989999771118164","14.989999771118164","","1966-01-11T00:00:00Z","","0" +"NM-17618","14.600000381469727","14.600000381469727","","1955-05-26T00:00:00Z","","0" +"NM-01029","407.739990234375","407.739990234375","","1972-01-27T00:00:00Z","","0" +"NM-15333","67.86000061035156","67.86000061035156","","1970-02-12T00:00:00Z","","0" +"NM-28253","20.739999771118164","20.739999771118164","","1985-02-15T00:00:00Z","","0" +"NM-02285","6.449999809265137","6.449999809265137","","2000-11-20T00:00:00Z","","0" +"NM-12353","29.770000457763672","29.770000457763672","","1935-05-17T00:00:00Z","","0" +"DE-0133","33.84000015258789","33.84000015258789","","2005-04-18T00:00:00Z","","0" +"NM-02256","5.900000095367432","5.900000095367432","","1980-02-15T00:00:00Z","","0" +"NM-02635","8.029999732971191","8.029999732971191","","1945-01-06T00:00:00Z","","0" +"DE-0110","","","D","2016-09-15T00:00:00Z","","0" +"NM-12687","71.81999969482422","71.81999969482422","","1948-01-31T00:00:00Z","","0" +"NM-02173","88.4800033569336","88.4800033569336","","1984-07-17T00:00:00Z","","0" +"NM-09945","65.04000091552734","65.04000091552734","","1956-08-28T00:00:00Z","","0" +"SB-0299","140.50999450683594","140.50999450683594","","1977-10-10T00:00:00Z","","0" +"NM-02487","10","10","","1979-06-15T00:00:00Z","","0" +"NM-20036","92.86000061035156","92.86000061035156","","1959-06-01T00:00:00Z","","0" +"NM-05757","94.66000366210938","94.66000366210938","","1965-01-13T00:00:00Z","","0" +"DE-0234","112.41999816894531","112.41999816894531","","2006-05-09T00:00:00Z","","0" +"NM-02702","67.69999694824219","67.69999694824219","","1983-04-25T00:00:00Z","","0" +"NM-10635","29.670000076293945","29.670000076293945","","1939-08-16T00:00:00Z","","0" +"NM-02322","198.32000732421875","198.32000732421875","R","1953-10-15T00:00:00Z","","0" +"NM-13721","40.5","40.5","","1943-01-04T00:00:00Z","","0" +"NM-04255","178.8699951171875","178.8699951171875","","1971-12-20T00:00:00Z","","0" +"NM-08887","73.7699966430664","73.7699966430664","","1957-11-21T00:00:00Z","","0" +"NM-17665","86.8499984741211","86.8499984741211","","1957-06-17T00:00:00Z","","0" +"NM-28254","24.989999771118164","24.989999771118164","","1947-05-25T00:00:00Z","","0" +"NM-27255","38.72999954223633","38.72999954223633","","1960-04-08T00:00:00Z","","0" +"NM-28258","144.5500030517578","144.5500030517578","","2008-11-05T00:00:00Z","","0" +"NM-02529","52.209999084472656","52.209999084472656","","1971-10-15T00:00:00Z","","0" +"NM-10854","9.59000015258789","9.59000015258789","","1948-01-20T00:00:00Z","","0" +"NM-01932","347.8299865722656","347.8299865722656","","1955-01-24T00:00:00Z","","0" +"NM-23468","151.17999267578125","151.17999267578125","","1947-08-07T00:00:00Z","","0" +"BC-0103","128.3300018310547","128.3300018310547","","2019-11-03T00:00:00Z","","0" +"NM-06033","110.31999969482422","110.31999969482422","","1965-06-23T00:00:00Z","","0" +"NM-20138","42.849998474121094","42.849998474121094","","1944-09-28T00:00:00Z","","0" +"DE-0061","80.56999969482422","78.19000244140625","","2010-06-21T00:00:00Z","","2.380000114440918" +"NM-12008","18.639999389648438","18.639999389648438","","1942-01-23T00:00:00Z","","0" +"SO-0186","6.639999866485596","5.889999866485596","","2021-02-14T00:00:00Z","0001-01-01T08:13:00Z","0.75" +"NM-24876","53.529998779296875","53.529998779296875","","2015-02-20T00:00:00Z","","0" +"NM-07154","100.94999694824219","100.94999694824219","","2005-05-10T00:00:00Z","","0" +"NM-11994","32.099998474121094","32.099998474121094","","1937-10-21T00:00:00Z","","0" +"NM-06676","10.600000381469727","10.600000381469727","","1979-08-15T00:00:00Z","","0" +"NM-22487","56.380001068115234","56.380001068115234","T","1984-10-11T00:00:00Z","","0" +"NM-20576","66.30000305175781","66.30000305175781","","1966-01-04T00:00:00Z","","0" +"NM-13594","31.43000030517578","31.43000030517578","","1966-11-04T00:00:00Z","","0" +"NM-26353","38.95000076293945","38.95000076293945","","1981-01-29T00:00:00Z","","0" +"NM-25301","77.47000122070312","77.47000122070312","","1972-11-10T00:00:00Z","","0" +"NM-17716","0.7799999713897705","0.7799999713897705","","1944-01-26T00:00:00Z","","0" +"NM-11040","-121.12000274658203","-121.12000274658203","","1911-11-28T00:00:00Z","","0" +"NM-01971","9.199999809265137","9.199999809265137","","1956-02-15T00:00:00Z","","0" +"NM-07581","40.279998779296875","40.279998779296875","","1961-03-08T00:00:00Z","","0" +"NM-03402","155.1999969482422","155.1999969482422","","2007-03-07T00:00:00Z","","0" +"SO-0148","10.520000457763672","9.649999618530273","","2024-04-08T00:00:00Z","0001-01-01T15:50:00Z","0.8700000047683716" +"NM-17306","31.06999969482422","31.06999969482422","","1938-02-07T00:00:00Z","","0" +"NM-02931","98.08000183105469","98.08000183105469","","1961-01-11T00:00:00Z","","0" +"NM-02396","7","7","","1962-04-15T00:00:00Z","","0" +"NM-13213","11.569999694824219","11.569999694824219","","1958-08-12T00:00:00Z","","0" +"NM-19955","20.65999984741211","20.65999984741211","","1946-07-30T00:00:00Z","","0" +"SB-0299","114.13999938964844","114.13999938964844","","1974-01-05T00:00:00Z","","0" +"EB-161","422.5799865722656","421.3299865722656","","1986-11-30T00:00:00Z","","1.25" +"NM-21616","483.7900085449219","483.7900085449219","","1992-08-05T00:00:00Z","","0" +"NM-20196","38.2400016784668","38.2400016784668","","1947-04-01T00:00:00Z","","0" +"NM-13899","7.800000190734863","7.800000190734863","","1958-05-19T00:00:00Z","","0" +"NM-01779","153.0800018310547","153.0800018310547","","1995-01-13T00:00:00Z","","0" +"NM-02283","22.06999969482422","22.06999969482422","","2005-11-20T00:00:00Z","","0" +"NM-02831","39.79999923706055","39.79999923706055","","2002-05-15T00:00:00Z","","0" +"NM-01871","285.45001220703125","285.45001220703125","","1996-02-06T00:00:00Z","","0" +"NM-08701","24.799999237060547","24.799999237060547","","1957-01-14T00:00:00Z","","0" +"NM-04729","52.040000915527344","52.040000915527344","","1954-07-14T00:00:00Z","","0" +"EB-283","277.30999755859375","277.30999755859375","T","1994-06-06T00:00:00Z","","0" +"NM-08842","42.40999984741211","42.40999984741211","","1959-09-15T00:00:00Z","","0" +"BC-0298","136.77999877929688","136.77999877929688","","2017-10-07T00:00:00Z","","0" +"NM-18115","72.79000091552734","72.79000091552734","P","1961-01-09T00:00:00Z","","0" +"NM-13531","2.5299999713897705","2.5299999713897705","","1958-02-25T00:00:00Z","","0" +"NM-28257","21.450000762939453","21.450000762939453","","2010-05-05T00:00:00Z","","0" +"AB-0066","160.4499969482422","160.4499969482422","","2000-01-11T00:00:00Z","","" +"NM-12771","48.70000076293945","48.70000076293945","","1962-01-15T00:00:00Z","","0" +"NM-15820","50.040000915527344","50.040000915527344","","1990-05-15T00:00:00Z","","0" +"NM-02843","52.310001373291016","52.310001373291016","","1949-02-09T00:00:00Z","","0" +"SB-0299","119.30999755859375","119.30999755859375","","1986-03-30T00:00:00Z","","0" +"NM-02283","29.1299991607666","29.1299991607666","","2011-04-06T00:00:00Z","","0" +"NM-27992","30.969999313354492","30.969999313354492","","2016-06-08T00:00:00Z","","0" +"NM-09104","444.8999938964844","444.8999938964844","","1958-09-24T00:00:00Z","","0" +"NM-02164","9.100000381469727","9.100000381469727","","1997-11-14T00:00:00Z","","0" +"EB-480","581.719970703125","578.719970703125","P","2001-10-31T00:00:00Z","","3" +"NM-03377","160.05999755859375","160.05999755859375","","1998-03-12T00:00:00Z","","0" +"SO-0170","4.880000114440918","4.550000190734863","","2021-05-08T00:00:00Z","0001-01-01T07:50:00Z","0.33000001311302185" +"NM-24992","595.3900146484375","595.3900146484375","","2009-02-04T00:00:00Z","","0" +"NM-10635","28.559999465942383","28.559999465942383","","1957-03-12T00:00:00Z","","0" +"SB-0299","133.74000549316406","133.74000549316406","","1999-09-25T00:00:00Z","","0" +"NM-14881","30.790000915527344","30.790000915527344","","1981-01-25T00:00:00Z","","0" +"WL-0090","79.625","77.24500274658203","","2006-02-21T00:00:00Z","","2.380000114440918" +"NM-12288","-14.859999656677246","-14.859999656677246","","1908-03-17T00:00:00Z","","0" +"NM-02225","86.27999877929688","86.27999877929688","","1963-01-15T00:00:00Z","","0" +"NM-28251","87.30999755859375","87.30999755859375","","1983-04-15T00:00:00Z","","0" +"NM-01955","2.5","2.5","","1989-08-15T00:00:00Z","","0" +"AB-0076","8.640000343322754","8.640000343322754","","2007-10-01T00:00:00Z","","" +"NM-02311","165.3000030517578","165.3000030517578","","1987-01-05T00:00:00Z","","0" +"NM-08866","-100.33000183105469","-100.33000183105469","","1908-03-25T00:00:00Z","","0" +"NM-02999","108.80000305175781","108.80000305175781","","1993-09-14T00:00:00Z","","0" +"NM-04570","55.720001220703125","55.720001220703125","","1948-09-24T00:00:00Z","","0" +"EB-677","199","199","","1997-03-17T00:00:00Z","","0" +"NM-28255","93.0999984741211","93.0999984741211","","1992-04-25T00:00:00Z","","0" +"NM-08444","59.650001525878906","59.650001525878906","","1957-01-03T00:00:00Z","","0" +"NM-07685","31.360000610351562","31.360000610351562","","1950-07-20T00:00:00Z","","0" +"NM-02352","9.600000381469727","9.600000381469727","","1964-02-15T00:00:00Z","","0" +"NM-03003","76.0999984741211","76.0999984741211","","1973-01-04T00:00:00Z","","0" +"NM-03397","26.760000228881836","26.760000228881836","","1996-01-24T00:00:00Z","","0" +"NM-07188","405.7699890136719","405.7699890136719","","1962-03-01T00:00:00Z","","0" +"NM-02209","104","104","","1961-02-01T00:00:00Z","","0" +"NM-28256","80.08999633789062","80.08999633789062","","2008-02-05T00:00:00Z","","0" +"NM-00718","145.8000030517578","145.8000030517578","","2013-01-08T00:00:00Z","","0" +"NM-14929","34.38999938964844","34.38999938964844","","1981-01-13T00:00:00Z","","0" +"NM-00672","57.52000045776367","57.52000045776367","","1961-05-03T00:00:00Z","","0" +"NM-01986","5.300000190734863","5.300000190734863","","1988-04-15T00:00:00Z","","0" +"NM-01427","799.1900024414062","799.1900024414062","","2013-04-04T00:00:00Z","","0" +"NM-09731","-61.060001373291016","-61.060001373291016","","1908-03-26T00:00:00Z","","0" +"NM-00366","152.5500030517578","152.5500030517578","","1984-09-25T00:00:00Z","","0" +"SB-0286","64.75","64.75","","1961-02-07T00:00:00Z","","0" +"NM-05480","106.37000274658203","106.37000274658203","","1966-01-25T00:00:00Z","","0" +"NM-22775","734.4299926757812","734.4299926757812","","2012-11-08T00:00:00Z","","0" +"QY-0715","131.1999969482422","131.1999969482422","","1955-08-22T00:00:00Z","","0" +"EB-482","226","226","Z","2008-04-30T00:00:00Z","","0" +"NM-13858","6.300000190734863","6.300000190734863","","1957-10-18T00:00:00Z","","0" +"NM-21308","23.799999237060547","23.799999237060547","","1958-04-21T00:00:00Z","","0" +"NM-05762","65.0199966430664","65.0199966430664","","1966-01-15T00:00:00Z","","0" +"NM-27487","10.979999542236328","10.979999542236328","","2015-01-15T00:00:00Z","","0" +"NM-20071","24.760000228881836","24.760000228881836","","1944-01-24T00:00:00Z","","0" +"EB-484","726.0800170898438","725.4800415039062","P","2001-10-31T00:00:00Z","","0.6000000238418579" +"SB-0299","110.97000122070312","110.97000122070312","","1995-02-05T00:00:00Z","","0" +"NM-03244","45.75","45.75","","1966-02-16T00:00:00Z","","0" +"NM-05765","54.40999984741211","54.40999984741211","","1941-11-08T00:00:00Z","","0" +"AB-0084","581","581","S","1985-01-02T00:00:00Z","","0" +"DE-0106","41.68000030517578","41.68000030517578","","2010-07-26T00:00:00Z","","0" +"NM-10823","-50.66999816894531","-50.66999816894531","","1909-06-23T00:00:00Z","","0" +"NM-02529","39.70000076293945","39.70000076293945","","1992-03-02T00:00:00Z","","0" +"NM-13863","-5.039999961853027","-5.039999961853027","","1908-06-26T00:00:00Z","","0" +"NM-02286","15.260000228881836","15.260000228881836","","2013-03-06T00:00:00Z","","0" +"NM-02668","48.779998779296875","48.779998779296875","R","1963-08-13T00:00:00Z","","0" +"NM-06220","131.13999938964844","131.13999938964844","","1942-01-16T00:00:00Z","","0" +"NM-26736","179.08999633789062","179.08999633789062","","1959-12-01T00:00:00Z","","0" +"NM-09696","28.190000534057617","28.190000534057617","","1940-04-22T00:00:00Z","","0" +"NM-17736","36.439998626708984","36.439998626708984","","1965-10-27T00:00:00Z","","0" +"SO-0227","10.5","9.890000343322754","","2020-10-17T00:00:00Z","0001-01-01T16:50:00Z","0.6100000143051147" +"NM-14327","203.97000122070312","203.97000122070312","","2015-02-02T00:00:00Z","","0" +"NM-28259","129","129","","1997-09-25T00:00:00Z","","0" +"NM-01822","6.900000095367432","6.900000095367432","","1991-02-06T00:00:00Z","","0" +"NM-02001","112.20999908447266","112.20999908447266","","1981-01-05T00:00:00Z","","0" +"NM-18089","189.72000122070312","189.72000122070312","P","1956-05-18T00:00:00Z","","0" +"NM-10460","61.7599983215332","61.7599983215332","","1960-01-19T00:00:00Z","","0" +"BC-0261","180.69000244140625","180.69000244140625","","2017-06-22T00:00:00Z","","0" +"NM-03353","53.04999923706055","53.04999923706055","","1994-03-14T00:00:00Z","","0" +"NM-28251","71.04000091552734","71.04000091552734","","1991-09-25T00:00:00Z","","0" +"NM-06149","7.690000057220459","7.690000057220459","","1956-01-09T00:00:00Z","","0" +"NM-01796","6.400000095367432","6.400000095367432","","1956-04-15T00:00:00Z","","0" +"NM-07194","102.52999877929688","102.52999877929688","R","1972-05-24T00:00:00Z","","0" +"NM-02757","19.290000915527344","19.290000915527344","","1986-01-23T00:00:00Z","","0" +"NM-22187","447.2799987792969","447.2799987792969","","2005-07-27T00:00:00Z","","0" +"NM-11183","-32.189998626708984","-32.189998626708984","","1911-06-11T00:00:00Z","","0" +"NM-05737","94.98999786376953","94.98999786376953","","1982-01-19T00:00:00Z","","0" +"NM-11519","57.2400016784668","57.2400016784668","","1981-02-06T00:00:00Z","","0" +"NM-21575","2.819999933242798","2.819999933242798","Z","2009-06-17T00:00:00Z","","0" +"NM-08981","-25.260000228881836","-25.260000228881836","","1926-12-03T00:00:00Z","","0" +"NM-21085","51.040000915527344","51.040000915527344","","1990-03-13T00:00:00Z","","0" +"NM-09458","82.87999725341797","82.87999725341797","","1956-12-20T00:00:00Z","","0" +"BC-0312","226.83999633789062","226.83999633789062","","2017-10-14T00:00:00Z","","0" +"NM-03463","","","W","2013-04-03T00:00:00Z","","0" +"NM-02029","10.630000114440918","10.630000114440918","","2008-02-12T00:00:00Z","","0" +"NM-13717","4.829999923706055","4.829999923706055","","1953-05-12T00:00:00Z","","0" +"NM-20145","198.8800048828125","198.8800048828125","","1977-02-24T00:00:00Z","","0" +"SB-0225","144.97000122070312","144.97000122070312","","1983-01-18T00:00:00Z","","0" +"NM-06994","58.27000045776367","58.27000045776367","","1970-12-17T00:00:00Z","","0" +"NM-12984","33.099998474121094","33.099998474121094","Z","1994-01-24T00:00:00Z","","0" +"NM-22435","581.280029296875","581.280029296875","","2015-11-20T00:00:00Z","","0" +"NM-17638","51.099998474121094","51.099998474121094","","1993-01-07T00:00:00Z","","0" +"NM-22132","4.730000019073486","4.730000019073486","Z","2010-02-08T00:00:00Z","","0" +"NM-22279","13.130000114440918","13.130000114440918","R","1991-12-10T00:00:00Z","","0" +"NM-15044","453.5299987792969","453.5299987792969","","1965-04-01T00:00:00Z","","0" +"NM-02487","8.5","8.5","","1972-09-15T00:00:00Z","","0" +"NM-00366","162.75999450683594","162.75999450683594","","1978-09-01T00:00:00Z","","0" +"NM-06030","47.099998474121094","47.099998474121094","","2012-09-12T00:00:00Z","","0" +"NM-28252","63.349998474121094","63.349998474121094","","1971-04-15T00:00:00Z","","0" +"NM-19172","6.519999980926514","6.519999980926514","","1956-03-28T00:00:00Z","","0" +"NM-02004","8.699999809265137","8.699999809265137","","1986-06-15T00:00:00Z","","0" +"NM-26797","471.5400085449219","471.5400085449219","","2019-06-12T00:00:00Z","","0" +"NM-17225","87.30000305175781","87.30000305175781","","1972-01-19T00:00:00Z","","0" +"NM-02209","111.41999816894531","111.41999816894531","","1970-06-01T00:00:00Z","","0" +"NM-10829","51.04999923706055","51.04999923706055","","1949-01-19T00:00:00Z","","0" +"NM-00718","151.97000122070312","151.97000122070312","","2012-01-11T00:00:00Z","","0" +"NM-20211","177.6199951171875","177.6199951171875","R","1962-03-27T00:00:00Z","","0" +"NM-03460","161.47999572753906","161.47999572753906","","1954-04-07T00:00:00Z","","0" +"NM-09012","61.060001373291016","61.060001373291016","","1986-01-16T00:00:00Z","","0" +"NM-02165","16.459999084472656","16.459999084472656","","2014-03-11T00:00:00Z","","0" +"NM-02546","4.849999904632568","4.849999904632568","","1983-01-10T00:00:00Z","","0" +"NM-01893","20.780000686645508","20.780000686645508","","1996-11-04T00:00:00Z","","0" +"NM-03827","7.480000019073486","7.480000019073486","","1947-01-13T00:00:00Z","","0" +"NM-02101","","","D","1964-10-15T00:00:00Z","","0" +"NM-13537","-10.239999771118164","-10.239999771118164","","1910-12-17T00:00:00Z","","0" +"NM-10294","36.25","36.25","","1937-08-21T00:00:00Z","","0" +"NM-02831","33.70000076293945","33.70000076293945","","1992-02-25T00:00:00Z","","0" +"NM-21801","26.5","26.5","","1993-03-05T00:00:00Z","","0" +"NM-03341","3.7799999713897705","3.7799999713897705","","1993-06-16T00:00:00Z","","0" +"NM-21421","206.1699981689453","206.1699981689453","R","2006-10-03T00:00:00Z","","0" +"NM-07382","77.06999969482422","77.06999969482422","","1955-11-23T00:00:00Z","","0" +"NM-05318","44.150001525878906","44.150001525878906","","1947-10-27T00:00:00Z","","0" +"EB-261","6.75","4.949999809265137","","2000-01-05T00:00:00Z","","1.7999999523162842" +"NM-02758","293.8999938964844","293.8999938964844","","1960-03-22T00:00:00Z","","0" +"NM-03203","17.700000762939453","17.700000762939453","","2011-01-19T00:00:00Z","","0" +"NM-16593","68","68","","1956-01-19T00:00:00Z","","0" +"NM-02669","60.900001525878906","60.900001525878906","","1979-10-01T00:00:00Z","","0" +"NM-14535","94.98999786376953","94.98999786376953","","1977-06-24T00:00:00Z","","0" +"NM-28255","122.11000061035156","122.11000061035156","","2018-04-25T00:00:00Z","","0" +"NM-08993","71.18000030517578","71.18000030517578","","1960-01-25T00:00:00Z","","0" +"EB-227","375.9800109863281","375.2799987792969","","2007-05-18T00:00:00Z","","0.699999988079071" +"NM-13647","19.049999237060547","19.049999237060547","","1990-12-20T00:00:00Z","","0" +"NM-01988","9.100000381469727","9.100000381469727","","1995-01-26T00:00:00Z","","0" +"NM-28257","-6.929999828338623","-6.929999828338623","","2008-12-24T00:00:00Z","","0" +"NM-13797","19.520000457763672","19.520000457763672","","1976-02-19T00:00:00Z","","0" +"EB-357","237.68099975585938","235.68099975585938","T","2002-02-01T00:00:00Z","","2" +"DE-0112","42.20000076293945","42.20000076293945","","2009-03-02T00:00:00Z","","0" +"NM-00933","193.07000732421875","193.07000732421875","","1962-03-13T00:00:00Z","","0" +"SB-0495","478","478","","1986-04-23T00:00:00Z","","0" +"NM-05593","91.83000183105469","91.83000183105469","","1945-11-07T00:00:00Z","","0" +"NM-20867","8.59000015258789","8.59000015258789","","1976-10-22T00:00:00Z","","0" +"SM-0007","8.100000381469727","6.3600006103515625","","2008-08-15T00:00:00Z","","1.7400000095367432" +"NM-02384","8.899999618530273","8.899999618530273","","1961-02-15T00:00:00Z","","0" +"NM-01019","348.55999755859375","348.55999755859375","","2006-02-23T00:00:00Z","","0" +"NM-12718","35.52000045776367","35.52000045776367","","1945-09-24T00:00:00Z","","0" +"NM-24967","137.32000732421875","137.32000732421875","","1952-11-13T00:00:00Z","","0" +"NM-09637","188.67999267578125","188.67999267578125","","1958-01-28T00:00:00Z","","0" +"NM-17114","64.55000305175781","64.55000305175781","","1987-01-09T00:00:00Z","","0" +"DE-0057","49.75","49.75","","2014-01-29T00:00:00Z","","0" +"NM-28256","88.98999786376953","88.98999786376953","","1974-12-05T00:00:00Z","","0" +"NM-12725","24.610000610351562","24.610000610351562","P","1952-11-20T00:00:00Z","","0" +"NM-21274","3.5999999046325684","3.5999999046325684","Z","2009-07-28T00:00:00Z","","0" +"NM-10063","8.34000015258789","8.34000015258789","","1981-06-19T00:00:00Z","","0" +"EB-481","202","202","","1992-03-31T00:00:00Z","","0" +"NM-14271","135.74000549316406","135.74000549316406","","1954-03-12T00:00:00Z","","0" +"NM-28251","86.13999938964844","86.13999938964844","","1985-08-05T00:00:00Z","","0" +"EB-245","184.27999877929688","184.27999877929688","","1987-03-31T00:00:00Z","","0" +"NM-04938","78.91000366210938","78.91000366210938","","1972-03-08T00:00:00Z","","0" +"NM-28252","55.2400016784668","55.2400016784668","","2020-11-06T00:00:00Z","","0" +"NM-03616","","","D","2001-02-16T00:00:00Z","","0" +"NM-00384","41.529998779296875","41.529998779296875","","1969-01-16T00:00:00Z","","0" +"SD-0024","80","80","","1963-01-01T00:00:00Z","","0" +"NM-15019","13.069999694824219","13.069999694824219","","1955-01-14T00:00:00Z","","0" +"NM-23205","66.30000305175781","66.30000305175781","","2008-06-26T00:00:00Z","","0" +"DE-0109","38.34000015258789","38.34000015258789","","2009-10-05T00:00:00Z","","0" +"NM-08316","3.380000114440918","3.380000114440918","","1947-08-01T00:00:00Z","","0" +"NM-06624","11.350000381469727","11.350000381469727","","1955-06-06T00:00:00Z","","0" +"NM-02030","175","175","","1992-02-06T00:00:00Z","","0" +"AB-0110","34.189998626708984","34.189998626708984","","2012-05-29T00:00:00Z","","" +"NM-03328","70.08000183105469","70.08000183105469","","1974-01-18T00:00:00Z","","0" +"NM-02772","19.84000015258789","19.84000015258789","","1983-02-01T00:00:00Z","","0" +"NM-06676","7","7","","1986-06-15T00:00:00Z","","0" +"NM-21679","351.1499938964844","351.1499938964844","","2009-03-04T00:00:00Z","","0" +"NM-09758","74.48999786376953","74.48999786376953","","1986-01-30T00:00:00Z","","0" +"NM-28256","92.19000244140625","92.19000244140625","","2018-01-16T00:00:00Z","","0" +"AR-0233","7.539999961853027","5.840000152587891","","2018-07-25T00:00:00Z","0001-01-01T15:42:00Z","1.7000000476837158" +"NM-05593","91.44000244140625","91.44000244140625","","1944-11-27T00:00:00Z","","0" +"NM-20451","195.02999877929688","195.02999877929688","","2005-05-17T00:00:00Z","","0" +"NM-01972","77.33000183105469","77.33000183105469","P","1950-09-27T00:00:00Z","","0" +"NM-28252","59.75","59.75","","1977-01-05T00:00:00Z","","0" +"AB-0067","152.52999877929688","152.52999877929688","","2010-12-06T00:00:00Z","","" +"EB-299","196.8300018310547","196.8300018310547","","2008-10-02T00:00:00Z","","0" +"NM-15341","117.4000015258789","117.4000015258789","P","1956-05-17T00:00:00Z","","0" +"NM-10793","-28.719999313354492","-28.719999313354492","","1909-09-27T00:00:00Z","","0" +"NM-17716","-1.399999976158142","-1.399999976158142","","1942-02-14T00:00:00Z","","0" +"NM-09900","-47.20000076293945","-47.20000076293945","","1909-10-07T00:00:00Z","","0" +"NM-12295","27.25","27.25","","1938-02-01T00:00:00Z","","0" +"SO-0190","11.489999771118164","10.809999465942383","","2018-04-11T00:00:00Z","0001-01-01T12:10:00Z","0.6800000071525574" +"NM-21679","356.0799865722656","356.0799865722656","","2005-01-13T00:00:00Z","","0" +"NM-28251","88.55999755859375","88.55999755859375","","1978-12-15T00:00:00Z","","0" +"SB-0299","143.27000427246094","143.27000427246094","","2002-10-05T00:00:00Z","","0" +"NM-03388","43.779998779296875","43.779998779296875","S","1987-05-27T00:00:00Z","","0" +"NM-02384","8.5","8.5","","1980-04-15T00:00:00Z","","0" +"NM-04739","264.3599853515625","264.3599853515625","","1965-10-14T00:00:00Z","","0" +"NM-00197","27.139999389648438","27.139999389648438","","1993-02-03T00:00:00Z","","0" +"NM-03468","151.5800018310547","151.5800018310547","","2015-03-05T00:00:00Z","","0" +"SB-0055","119.05000305175781","119.05000305175781","","2007-04-24T00:00:00Z","","0" +"NM-02282","400.05999755859375","400.05999755859375","","1993-03-24T00:00:00Z","","0" +"NM-05718","88.79000091552734","88.79000091552734","S","1945-07-18T00:00:00Z","","0" +"NM-04871","102.6500015258789","102.6500015258789","R","1965-10-19T00:00:00Z","","0" +"NM-16658","17.459999084472656","17.459999084472656","","1947-09-16T00:00:00Z","","0" +"NM-27364","43.7599983215332","43.7599983215332","","1977-12-15T00:00:00Z","","0" +"NM-16983","74.29000091552734","74.29000091552734","","1977-01-18T00:00:00Z","","0" +"NM-02489","125.38999938964844","125.38999938964844","","2005-02-03T00:00:00Z","","0" +"NM-05976","52.15999984741211","52.15999984741211","","1931-09-12T00:00:00Z","","0" +"NM-01793","156.08999633789062","156.08999633789062","","1979-01-13T00:00:00Z","","0" +"NM-00575","75.08999633789062","75.08999633789062","T","2007-12-19T00:00:00Z","","0" +"NM-02694","334.2900085449219","334.2900085449219","","1979-01-30T00:00:00Z","","0" +"NM-03462","142.42999267578125","142.42999267578125","","1976-02-11T00:00:00Z","","0" +"NM-02147","141.3000030517578","141.3000030517578","","1975-01-14T00:00:00Z","","0" +"NM-12718","35.41999816894531","35.41999816894531","","1944-11-28T00:00:00Z","","0" +"NM-00264","233.6699981689453","233.6699981689453","","1991-04-16T00:00:00Z","","0" +"NM-02349","14.600000381469727","14.600000381469727","","1974-10-15T00:00:00Z","","0" +"NM-17716","7.28000020980835","7.28000020980835","","1940-01-21T00:00:00Z","","0" +"NM-12514","44.939998626708984","44.939998626708984","","1948-01-14T00:00:00Z","","0" +"NM-28259","113.9000015258789","113.9000015258789","","1988-05-15T00:00:00Z","","0" +"SO-0226","11.710000038146973","10.859999656677246","","2018-01-11T00:00:00Z","0001-01-01T08:25:00Z","0.8500000238418579" +"NM-12297","10.300000190734863","10.300000190734863","","1957-05-07T00:00:00Z","","0" +"NM-00068","47.220001220703125","47.220001220703125","","1955-07-11T00:00:00Z","","0" +"NM-12406","79.5199966430664","79.5199966430664","","1971-02-25T00:00:00Z","","0" +"NM-02757","35.220001220703125","35.220001220703125","P","1948-07-16T00:00:00Z","","0" +"NM-02005","10.399999618530273","10.399999618530273","","1954-09-15T00:00:00Z","","0" +"NM-25214","79.52999877929688","79.52999877929688","","1970-10-02T00:00:00Z","","0" +"NM-02900","146.74000549316406","146.74000549316406","","1980-01-07T00:00:00Z","","0" +"NM-05619","48.13999938964844","48.13999938964844","","1934-02-03T00:00:00Z","","0" +"NM-21587","4.369999885559082","4.369999885559082","Z","2005-12-01T00:00:00Z","","0" +"NM-02591","14.199999809265137","14.199999809265137","","1982-11-15T00:00:00Z","","0" +"NM-10743","46.880001068115234","46.880001068115234","","1944-01-16T00:00:00Z","","0" +"NM-26720","173.14999389648438","173.14999389648438","","1963-08-08T00:00:00Z","","0" +"EB-480","459.760009765625","456.760009765625","P","2008-01-31T00:00:00Z","","3" +"NM-10931","39.7400016784668","39.7400016784668","P","1964-01-05T00:00:00Z","","0" +"NM-09703","52.52000045776367","52.52000045776367","","1954-01-12T00:00:00Z","","0" +"NM-00644","96.25","96.25","","1984-09-01T00:00:00Z","","0" +"NM-28251","81.93000030517578","81.93000030517578","","2020-11-06T00:00:00Z","","0" +"NM-21253","4.099999904632568","4.099999904632568","Z","2006-01-20T00:00:00Z","","0" +"NM-20451","195.89999389648438","195.89999389648438","","2011-05-02T00:00:00Z","","0" +"NM-07442","31.530000686645508","31.530000686645508","S","1955-06-21T00:00:00Z","","0" +"WL-0016","113.62000274658203","112.02000427246094","","2019-08-06T00:00:00Z","0001-01-01T14:01:00Z","1.600000023841858" +"NM-02497","73.4000015258789","73.4000015258789","","1991-03-06T00:00:00Z","","0" +"NM-01008","201.0800018310547","201.0800018310547","","2009-02-21T00:00:00Z","","0" +"SO-0126","4.619999885559082","4.059999942779541","","2018-02-27T00:00:00Z","0001-01-01T13:58:00Z","0.5600000023841858" +"NM-13118","9.75","9.75","","1980-02-08T00:00:00Z","","0" +"NM-13956","-7.929999828338623","-7.929999828338623","","1908-06-13T00:00:00Z","","0" +"NM-00761","33.779998779296875","33.779998779296875","","2013-03-27T00:00:00Z","","0" +"NM-01796","5.5","5.5","","1960-05-15T00:00:00Z","","0" +"NM-06595","80.18000030517578","80.18000030517578","","1958-08-06T00:00:00Z","","0" +"NM-11679","17.3799991607666","17.3799991607666","","1941-09-10T00:00:00Z","","0" +"UC-0124","196.94000244140625","196.94000244140625","","2009-02-04T00:00:00Z","","0" +"NM-05818","47.66999816894531","47.66999816894531","","1961-01-09T00:00:00Z","","0" +"BC-0158","275.7699890136719","275.7699890136719","","2013-06-13T00:00:00Z","","0" +"NM-02986","57.70000076293945","57.70000076293945","","1994-01-05T00:00:00Z","","0" +"SB-0239","74.63999938964844","74.63999938964844","","1967-01-30T00:00:00Z","","0" +"NM-02225","195.32000732421875","195.32000732421875","P","1965-08-09T00:00:00Z","","0" +"NM-28252","64","64","","1969-06-05T00:00:00Z","","0" +"NM-01052","372.29998779296875","372.29998779296875","","1992-01-07T00:00:00Z","","0" +"QU-114","53.040000915527344","57.34000015258789","","2014-12-10T00:00:00Z","","-4.300000190734863" +"NM-20695","212.6999969482422","212.6999969482422","","1955-08-17T00:00:00Z","","0" +"NM-20366","356.05999755859375","356.05999755859375","","1969-01-07T00:00:00Z","","0" +"SB-0299","136.88999938964844","136.88999938964844","","2012-12-30T00:00:00Z","","0" +"NM-01701","33.5","33.5","","1995-07-24T00:00:00Z","","0" +"NM-03911","105.4800033569336","105.4800033569336","","1978-01-11T00:00:00Z","","0" +"NM-02006","7.400000095367432","7.400000095367432","","1985-08-15T00:00:00Z","","0" +"NM-23282","23.8700008392334","23.8700008392334","","2008-07-09T00:00:00Z","","0" +"TC-401","41.900001525878906","41.900001525878906","","1955-07-28T00:00:00Z","","0" +"NM-02560","119.56999969482422","119.56999969482422","","1980-03-01T00:00:00Z","","0" +"NM-13213","10.449999809265137","10.449999809265137","","1957-06-17T00:00:00Z","","0" +"NM-03046","6.940000057220459","6.940000057220459","","1986-06-09T00:00:00Z","","0" +"NM-08330","30.139999389648438","30.139999389648438","","1976-01-28T00:00:00Z","","0" +"NM-05619","70.73999786376953","70.73999786376953","","1954-01-15T00:00:00Z","","0" +"SB-0299","111.52999877929688","111.52999877929688","","1995-01-25T00:00:00Z","","0" +"NM-28253","24.540000915527344","24.540000915527344","","1981-12-25T00:00:00Z","","0" +"NM-11560","85","85","","1984-01-27T00:00:00Z","","0" +"NM-12491","36.86000061035156","36.86000061035156","","1950-01-16T00:00:00Z","","0" +"NM-04582","69.69000244140625","69.69000244140625","","1949-01-29T00:00:00Z","","0" +"NM-22157","93.83000183105469","93.83000183105469","","1953-01-06T00:00:00Z","","0" +"NM-10236","95.36000061035156","95.36000061035156","","1981-04-02T00:00:00Z","","0" +"NM-21879","0.8500000238418579","0.8500000238418579","Z","2005-06-13T00:00:00Z","","0" +"NM-11794","109.36000061035156","109.36000061035156","","1953-01-22T00:00:00Z","","0" +"NM-11780","47.560001373291016","47.560001373291016","","1946-07-13T00:00:00Z","","0" +"UC-0033","86.91000366210938","86.91000366210938","","1978-08-09T00:00:00Z","","0" +"NM-02176","163.60000610351562","163.60000610351562","","2002-02-13T00:00:00Z","","0" +"NM-16598","12.449999809265137","12.449999809265137","","1960-01-13T00:00:00Z","","0" +"NM-11920","2.4700000286102295","2.4700000286102295","","1955-11-07T00:00:00Z","","0" +"NM-00031","80.41999816894531","80.41999816894531","","1978-12-05T00:00:00Z","","0" +"AB-0145","1006","1006","P","1988-07-15T00:00:00Z","","0" +"NM-03884","0.8799999952316284","0.8799999952316284","","1953-09-18T00:00:00Z","","0" +"NM-22131","145.4199981689453","145.4199981689453","","2004-04-01T00:00:00Z","","0" +"WS-008","3.569999933242798","3.569999933242798","","2010-05-06T00:00:00Z","","0" +"NM-01872","9.300000190734863","9.300000190734863","","1959-01-15T00:00:00Z","","0" +"NM-02579","105.44000244140625","105.44000244140625","","1990-02-22T00:00:00Z","","0" +"NM-28256","195.69000244140625","195.69000244140625","","2019-06-17T00:00:00Z","","0" +"NM-13573","22.8799991607666","22.8799991607666","","1959-04-07T00:00:00Z","","0" +"NM-08232","999.7000122070312","999.7000122070312","","1964-06-01T00:00:00Z","","0" +"NM-02351","138.67999267578125","138.67999267578125","","1974-01-14T00:00:00Z","","0" +"NM-22924","14.229999542236328","14.229999542236328","","1953-04-21T00:00:00Z","","0" +"NM-02669","65.7699966430664","65.7699966430664","","2000-10-19T00:00:00Z","","0" +"BC-0084","","162.9499969482422","","2021-03-11T00:00:00Z","","1.100000023841858" +"NM-28257","59.29999923706055","59.29999923706055","","1975-08-05T00:00:00Z","","0" +"NM-03000","108.13999938964844","108.13999938964844","","1992-01-07T00:00:00Z","","0" +"NM-16963","21.5","21.5","","1935-01-15T00:00:00Z","","0" +"NM-03445","64.61000061035156","64.61000061035156","","2003-08-12T00:00:00Z","","0" +"NM-02692","6.300000190734863","6.300000190734863","","1989-01-12T00:00:00Z","","0" +"SB-0299","135.6999969482422","135.6999969482422","","1980-05-01T00:00:00Z","","0" +"WL-0062","29.56999969482422","28.670000076293945","","2017-09-13T00:00:00Z","0001-01-01T13:16:00Z","0.8999999761581421" +"NM-00253","20.299999237060547","20.299999237060547","","1992-07-27T00:00:00Z","","0" +"NM-02839","248.9199981689453","248.9199981689453","","1964-01-06T00:00:00Z","","0" +"NM-02528","27.850000381469727","27.850000381469727","","1995-02-23T00:00:00Z","","0" +"NM-03776","136.3000030517578","136.3000030517578","","1976-02-05T00:00:00Z","","0" +"NM-01295","105.29000091552734","105.29000091552734","","1947-10-03T00:00:00Z","","0" +"NM-28258","115.63999938964844","115.63999938964844","","2002-01-15T00:00:00Z","","0" +"NM-01314","412.010009765625","412.010009765625","","2013-08-23T00:00:00Z","","0" +"NM-14114","-2.1600000858306885","-2.1600000858306885","","1907-03-08T00:00:00Z","","0" +"NM-02004","7.900000095367432","7.900000095367432","","1960-02-15T00:00:00Z","","0" +"NM-04632","19.100000381469727","19.100000381469727","","1956-08-15T00:00:00Z","","0" +"NM-03340","8.100000381469727","8.100000381469727","","2005-09-08T00:00:00Z","","0" +"NM-02352","8.199999809265137","8.199999809265137","","1970-10-15T00:00:00Z","","0" +"ED-0059","62.900001525878906","62.900001525878906","P","1948-12-13T00:00:00Z","","0" +"BC-0063","358.8999938964844","358.8999938964844","","2014-03-11T00:00:00Z","","0" +"NM-14535","89.02999877929688","89.02999877929688","","1977-03-25T00:00:00Z","","0" +"SB-0299","122.7300033569336","122.7300033569336","","1973-10-10T00:00:00Z","","0" +"NM-02005","8.5","8.5","","1948-02-15T00:00:00Z","","0" +"NM-17603","27.950000762939453","27.950000762939453","","1950-01-07T00:00:00Z","","0" +"NM-02484","33.38999938964844","33.38999938964844","Z","1997-08-22T00:00:00Z","","0" +"SB-0299","115.55999755859375","115.55999755859375","","1997-03-15T00:00:00Z","","0" +"NM-12014","54.5","54.5","","1954-05-08T00:00:00Z","","0" +"NM-24867","68.08999633789062","68.08999633789062","","1974-06-13T00:00:00Z","","0" +"SV-0008","202.60000610351562","201.18333435058594","","2015-10-18T00:00:00Z","","1.4166666269302368" +"NM-01985","8.699999809265137","8.699999809265137","","1971-08-15T00:00:00Z","","0" +"NM-05727","35.04999923706055","35.04999923706055","","1949-05-19T00:00:00Z","","0" +"NM-28256","111.88999938964844","111.88999938964844","","1984-03-05T00:00:00Z","","0" +"NM-03903","330.3999938964844","330.3999938964844","","1974-08-09T00:00:00Z","","0" +"NM-28019","477.82000732421875","477.82000732421875","S","2015-04-27T00:00:00Z","","0" +"NM-08842","51.029998779296875","51.029998779296875","","1967-01-05T00:00:00Z","","0" +"NM-02622","155.10000610351562","155.10000610351562","","1959-01-18T00:00:00Z","","0" +"NM-05755","206.97000122070312","206.97000122070312","","1986-03-20T00:00:00Z","","0" +"NM-12780","131.5","131.5","","1978-01-19T00:00:00Z","","0" +"AB-0102","577.0599975585938","577.0599975585938","","2008-07-10T00:00:00Z","","" +"NM-16978","40.84000015258789","40.84000015258789","","1953-01-23T00:00:00Z","","0" +"NM-01878","73.18000030517578","73.18000030517578","","1993-01-23T00:00:00Z","","0" +"NM-06009","69.9000015258789","69.9000015258789","","1944-09-14T00:00:00Z","","0" +"NM-22699","3.9100000858306885","3.9100000858306885","Z","2009-10-30T00:00:00Z","","0" +"NM-02831","41.79999923706055","41.79999923706055","","2001-07-16T00:00:00Z","","0" +"NM-08048","377.6300048828125","377.6300048828125","","1940-05-24T00:00:00Z","","0" +"NM-02794","62.599998474121094","62.599998474121094","","1955-01-19T00:00:00Z","","0" +"BC-0077","354.1099853515625","354.1099853515625","","2015-08-31T00:00:00Z","","0" +"NM-01786","160.22000122070312","160.22000122070312","R","1964-01-07T00:00:00Z","","0" +"TV-211","53.810001373291016","51.11000061035156","","2011-05-31T00:00:00Z","","2.700000047683716" +"NM-00229","68.16000366210938","68.16000366210938","","2000-10-03T00:00:00Z","","0" +"DE-0097","92.55000305175781","92.55000305175781","","2002-02-01T00:00:00Z","","0" +"NM-17202","28.450000762939453","28.450000762939453","","1933-10-23T00:00:00Z","","0" +"NM-02846","242.8000030517578","242.8000030517578","","1976-02-23T00:00:00Z","","0" +"NM-28021","489.2799987792969","489.2799987792969","S","2015-04-15T00:00:00Z","","0" +"NM-08071","8","8","","1986-04-15T00:00:00Z","","0" +"NM-02352","5.800000190734863","5.800000190734863","","1948-08-15T00:00:00Z","","0" +"NM-11795","42.209999084472656","42.209999084472656","","1953-11-24T00:00:00Z","","0" +"NM-28252","31.209999084472656","31.209999084472656","","1956-03-25T00:00:00Z","","0" +"PC-041","102.72000122070312","105.62000274658203","R","1998-08-10T00:00:00Z","","0" +"NM-28174","120.91999816894531","120.91999816894531","","1977-01-25T00:00:00Z","","0" +"NM-01884","12.279999732971191","12.279999732971191","","2001-01-30T00:00:00Z","","0" +"NM-00644","27.31999969482422","27.31999969482422","","1973-01-01T00:00:00Z","","0" +"NM-27195","136.16000366210938","136.16000366210938","","2009-04-15T00:00:00Z","","0" +"EB-652","9.569999694824219","9.569999694824219","","2003-02-10T00:00:00Z","","0" +"NM-01948","8.100000381469727","8.100000381469727","","1952-06-15T00:00:00Z","","0" +"NM-06887","259","259","","2009-03-05T00:00:00Z","","0" +"NM-28250","76.62999725341797","76.62999725341797","","2000-03-06T00:00:00Z","","0" +"NM-13469","42.22999954223633","42.22999954223633","","1963-09-30T00:00:00Z","","0" +"NM-06951","105.45999908447266","105.45999908447266","","2004-07-09T00:00:00Z","","0" +"NM-17716","6.550000190734863","6.550000190734863","","1952-04-15T00:00:00Z","","0" +"NM-08541","302.42999267578125","302.42999267578125","","1955-09-06T00:00:00Z","","0" +"NM-00213","153.4499969482422","153.4499969482422","","1991-03-20T00:00:00Z","","0" +"NM-28252","42.34000015258789","42.34000015258789","","2009-01-15T00:00:00Z","","0" +"NM-20094","139.8699951171875","139.8699951171875","","1982-03-24T00:00:00Z","","0" +"NM-09608","14.770000457763672","14.770000457763672","","2013-09-16T00:00:00Z","","0" +"NM-01204","372.0799865722656","372.0799865722656","","2013-11-20T00:00:00Z","","0" +"NM-05641","102.69999694824219","102.69999694824219","S","1952-09-06T00:00:00Z","","0" +"AB-0184","357.42999267578125","357.42999267578125","","2003-07-22T00:00:00Z","","" +"NM-04525","44.56999969482422","44.56999969482422","","1947-11-06T00:00:00Z","","0" +"NM-01225","33.029998779296875","33.029998779296875","P","1988-02-03T00:00:00Z","","0" +"NM-26721","60.52000045776367","60.52000045776367","","1991-01-22T00:00:00Z","","0" +"NM-13145","15.079999923706055","15.079999923706055","","1958-11-04T00:00:00Z","","0" +"NM-19906","47.13999938964844","47.13999938964844","P","1945-04-07T00:00:00Z","","0" +"NM-13092","6.079999923706055","6.079999923706055","","1969-12-11T00:00:00Z","","0" +"NM-13876","14.229999542236328","14.229999542236328","","1968-05-09T00:00:00Z","","0" +"NM-12721","27.600000381469727","27.600000381469727","","1956-07-30T00:00:00Z","","0" +"DE-0214","131.61000061035156","131.61000061035156","","2013-10-21T00:00:00Z","","0" +"NM-25614","15.529999732971191","15.529999732971191","","1967-06-13T00:00:00Z","","0" +"TV-192","159.91000366210938","158.27999877929688","","2012-11-30T00:00:00Z","","1.6299999952316284" +"NM-24636","15","15","","1982-03-19T00:00:00Z","","0" +"BC-0015","108.87999725341797","108.87999725341797","","2014-06-05T00:00:00Z","","0" +"NM-11165","44.470001220703125","44.470001220703125","P","1966-03-09T00:00:00Z","","0" +"NM-03653","33.2400016784668","33.2400016784668","","2000-05-30T00:00:00Z","","0" +"NM-03020","60.560001373291016","60.560001373291016","","1957-01-20T00:00:00Z","","0" +"NM-22742","80","80","","1983-09-23T00:00:00Z","","0" +"NM-28254","29.690000534057617","29.690000534057617","","1968-03-05T00:00:00Z","","0" +"NM-24863","217.85000610351562","217.85000610351562","","1972-01-21T00:00:00Z","","0" +"NM-28251","77.02999877929688","77.02999877929688","","2018-12-05T00:00:00Z","","0" +"NM-25612","33.45000076293945","33.45000076293945","","1993-01-15T00:00:00Z","","0" +"NM-12948","62.099998474121094","62.099998474121094","","1959-01-08T00:00:00Z","","0" +"NM-14825","35.5","35.5","","1984-02-08T00:00:00Z","","0" +"NM-01878","75.83000183105469","75.83000183105469","","2009-01-08T00:00:00Z","","0" +"EB-217","57.65999984741211","56.36000061035156","","1974-08-13T00:00:00Z","","1.2999999523162842" +"NM-16999","25.299999237060547","25.299999237060547","","1940-01-17T00:00:00Z","","0" +"NM-15525","149.52999877929688","149.52999877929688","","1990-01-10T00:00:00Z","","0" +"NM-22956","900.5499877929688","900.5499877929688","","2011-06-10T00:00:00Z","","0" +"NM-12666","19.579999923706055","19.579999923706055","","1954-07-13T00:00:00Z","","0" +"BC-0009","122.86000061035156","122.86000061035156","","2015-08-31T00:00:00Z","","0" +"NM-24711","258.7900085449219","258.7900085449219","","1962-12-11T00:00:00Z","","0" +"NM-10240","236.19000244140625","236.19000244140625","","1986-01-22T00:00:00Z","","0" +"NM-03421","46.68000030517578","46.68000030517578","","2000-08-16T00:00:00Z","","0" +"NM-09537","103.4000015258789","103.4000015258789","","1965-11-10T00:00:00Z","","0" +"NM-02736","37.630001068115234","37.630001068115234","","1963-11-18T00:00:00Z","","0" +"NM-13866","5.03000020980835","5.03000020980835","","1960-06-15T00:00:00Z","","0" +"NM-02006","7.800000190734863","7.800000190734863","","2002-05-15T00:00:00Z","","0" +"NM-05521","77.29000091552734","77.29000091552734","","1945-03-20T00:00:00Z","","0" +"NM-28252","48.2400016784668","48.2400016784668","","2009-10-25T00:00:00Z","","0" +"NM-19913","56.220001220703125","56.220001220703125","","1986-10-23T00:00:00Z","","0" +"NM-01300","11.5","11.5","","1960-11-09T00:00:00Z","","0" +"NM-13234","1.9900000095367432","1.9900000095367432","","1958-04-21T00:00:00Z","","0" +"NM-11331","11.239999771118164","11.239999771118164","","1970-06-25T00:00:00Z","","0" +"NM-21881","80","80","","1982-08-03T00:00:00Z","","0" +"NM-02709","26.719999313354492","26.719999313354492","","1973-01-18T00:00:00Z","","0" +"NM-02527","10.600000381469727","10.600000381469727","","1982-12-15T00:00:00Z","","0" +"NM-28255","85.66000366210938","85.66000366210938","","1966-05-05T00:00:00Z","","0" +"NM-00528","34.459999084472656","34.459999084472656","P","2004-01-30T00:00:00Z","","0" +"NM-21079","31.81999969482422","31.81999969482422","","1959-12-03T00:00:00Z","","0" +"NM-10736","12.4399995803833","12.4399995803833","","1942-03-13T00:00:00Z","","0" +"NM-21923","10.069999694824219","10.069999694824219","S","1987-09-21T00:00:00Z","","0" +"NM-11889","2.2699999809265137","2.2699999809265137","","1955-03-01T00:00:00Z","","0" +"NM-28254","94.55000305175781","94.55000305175781","","2005-08-15T00:00:00Z","","0" +"NM-11578","24.34000015258789","24.34000015258789","","1943-03-29T00:00:00Z","","0" +"NM-25056","160.58999633789062","160.58999633789062","","1967-10-31T00:00:00Z","","0" +"EB-261","5.970000267028809","4.170000076293945","","2011-06-15T00:00:00Z","","1.7999999523162842" +"NM-27487","11.460000038146973","11.460000038146973","","1988-12-22T00:00:00Z","","0" +"NM-07136","123.75","123.75","","1998-10-21T00:00:00Z","","0" +"EB-276","135.52999877929688","135.52999877929688","","1959-12-17T00:00:00Z","","0" +"NM-17863","35.29999923706055","35.29999923706055","","1956-01-19T00:00:00Z","","0" +"NM-00400","94.2300033569336","94.2300033569336","","2005-01-04T00:00:00Z","","0" +"NM-13545","7.320000171661377","7.320000171661377","","1986-02-18T00:00:00Z","","0" +"NM-02801","8.979999542236328","8.979999542236328","","1946-01-29T00:00:00Z","","0" +"NM-16757","38.66999816894531","38.66999816894531","","1961-01-13T00:00:00Z","","0" +"BC-0005","243.67999267578125","243.67999267578125","","2013-12-19T00:00:00Z","","0" +"BC-0022","59.54999923706055","59.54999923706055","","2014-03-05T00:00:00Z","","0" +"NM-02165","9.960000038146973","9.960000038146973","","2010-12-16T00:00:00Z","","0" +"WL-0045","51.779998779296875","51.12999725341797","","2018-04-06T00:00:00Z","0001-01-01T10:40:00Z","0.6499999761581421" +"NM-00629","72.5999984741211","72.5999984741211","","1973-01-26T00:00:00Z","","0" +"NM-14351","587.9099731445312","587.9099731445312","","1957-12-16T00:00:00Z","","0" +"NM-00384","29.510000228881836","29.510000228881836","","1954-01-07T00:00:00Z","","0" +"NM-11290","47.560001373291016","47.560001373291016","P","1966-03-09T00:00:00Z","","0" +"NM-02560","122.61000061035156","122.61000061035156","","1988-04-14T00:00:00Z","","0" +"EB-481","565.2000122070312","565.2000122070312","Z","2004-08-31T00:00:00Z","","0" +"NM-28252","66.16000366210938","66.16000366210938","","1972-04-25T00:00:00Z","","0" +"NM-04928","81.2300033569336","81.2300033569336","","1965-01-26T00:00:00Z","","0" +"NM-01892","11.369999885559082","11.369999885559082","","1992-06-23T00:00:00Z","","0" +"NM-15435","64.37999725341797","64.37999725341797","","1995-01-20T00:00:00Z","","0" +"NM-12324","-35.650001525878906","-35.650001525878906","","1910-05-31T00:00:00Z","","0" +"NM-02004","8.699999809265137","8.699999809265137","","1991-04-15T00:00:00Z","","0" +"NM-14752","48.099998474121094","48.099998474121094","","1962-08-07T00:00:00Z","","0" +"NM-28258","164.64999389648438","164.64999389648438","","2020-05-26T00:00:00Z","","0" +"NM-18603","323.3999938964844","323.3999938964844","","1977-01-25T00:00:00Z","","0" +"DE-0248","109.12999725341797","109.12999725341797","","2009-08-27T00:00:00Z","","0" +"NM-21519","31.09000015258789","31.09000015258789","R","1992-05-22T00:00:00Z","","0" +"NM-14239","88.95999908447266","88.95999908447266","","1980-08-07T00:00:00Z","","0" +"NM-20961","16.059999465942383","16.059999465942383","","1946-09-06T00:00:00Z","","0" +"NM-25385","27.459999084472656","27.459999084472656","","1993-01-19T00:00:00Z","","0" +"NM-13016","50.439998626708984","50.439998626708984","","1970-01-06T00:00:00Z","","0" +"NM-01868","9.300000190734863","9.300000190734863","","1998-02-27T00:00:00Z","","0" +"NM-03334","11.5","11.5","","2007-08-28T00:00:00Z","","0" +"NM-02101","2.9000000953674316","2.9000000953674316","","1986-07-15T00:00:00Z","","0" +"NM-14975","22","22","","1983-08-28T00:00:00Z","","0" +"NM-05593","95.12999725341797","95.12999725341797","","1961-04-07T00:00:00Z","","0" +"NM-12302","35.150001525878906","35.150001525878906","","1979-02-14T00:00:00Z","","0" +"NM-22965","768.5599975585938","768.5599975585938","","1990-08-03T00:00:00Z","","0" +"NM-28255","29.309999465942383","29.309999465942383","","2017-12-15T00:00:00Z","","0" +"DE-0122","39.90999984741211","39.90999984741211","","2010-01-25T00:00:00Z","","0" +"NM-02256","7.400000095367432","7.400000095367432","","1972-09-15T00:00:00Z","","0" +"RA-028","11.399999618530273","11","AA","2023-09-19T00:00:00Z","0001-01-01T09:16:00Z","0.4000000059604645" +"NM-00644","14.069999694824219","14.069999694824219","Z","1995-12-15T00:00:00Z","","0" +"NM-01759","48.31999969482422","48.31999969482422","","1977-05-01T00:00:00Z","","0" +"NM-02412","35.81999969482422","35.81999969482422","","1948-09-17T00:00:00Z","","0" +"NM-03005","68.54000091552734","68.54000091552734","","2000-10-10T00:00:00Z","","0" +"NM-00603","75.12000274658203","75.12000274658203","","2005-01-07T00:00:00Z","","0" +"DE-0080","81.77999877929688","81.77999877929688","","2008-05-20T00:00:00Z","","0" +"NM-28017","486.44000244140625","486.44000244140625","S","2015-04-29T00:00:00Z","","0" +"SB-0299","108.30999755859375","108.30999755859375","","1971-03-12T00:00:00Z","","0" +"NM-19855","24.639999389648438","24.639999389648438","","1942-01-22T00:00:00Z","","0" +"NM-19784","68.0199966430664","68.0199966430664","","1948-10-01T00:00:00Z","","0" +"NM-02560","123.12999725341797","123.12999725341797","","1993-06-28T00:00:00Z","","0" +"NM-04608","82.54000091552734","82.54000091552734","","1960-11-09T00:00:00Z","","0" +"NM-01985","7.400000095367432","7.400000095367432","","1991-07-15T00:00:00Z","","0" +"NM-28254","127.0999984741211","127.0999984741211","","2017-07-05T00:00:00Z","","0" +"NM-14931","66.37999725341797","66.37999725341797","","1995-02-01T00:00:00Z","","0" +"BC-0031","225.27000427246094","225.27000427246094","","2014-09-06T00:00:00Z","","0" +"NM-28257","64.97000122070312","64.97000122070312","","1982-08-15T00:00:00Z","","0" +"NM-13594","28.09000015258789","28.09000015258789","","1964-11-16T00:00:00Z","","0" +"NM-01899","75.29000091552734","75.29000091552734","","2008-11-12T00:00:00Z","","0" +"NM-22296","32.22999954223633","32.22999954223633","T","1987-03-19T00:00:00Z","","0" +"NM-17526","22.969999313354492","22.969999313354492","","1934-10-16T00:00:00Z","","0" +"NM-02675","70.75","70.75","","1998-01-06T00:00:00Z","","0" +"NM-19786","133.10000610351562","133.10000610351562","","2015-09-16T00:00:00Z","","0" +"NM-08940","8.600000381469727","8.600000381469727","","1959-11-04T00:00:00Z","","0" +"NM-11263","40","40","","1943-12-01T00:00:00Z","","0" +"NM-24773","287.6000061035156","287.6000061035156","","1973-06-21T00:00:00Z","","0" +"NM-00753","484.30999755859375","484.30999755859375","","2010-03-24T00:00:00Z","","0" +"NM-05014","79.37000274658203","79.37000274658203","P","1961-01-09T00:00:00Z","","0" +"NM-17665","80.91999816894531","80.91999816894531","","1954-11-23T00:00:00Z","","0" +"NM-13690","6","6","","1914-07-17T00:00:00Z","","0" +"NM-00257","95.04000091552734","95.04000091552734","","1972-02-01T00:00:00Z","","0" +"NM-02487","8.699999809265137","8.699999809265137","","1981-07-15T00:00:00Z","","0" +"DE-0260","85.5999984741211","85.5999984741211","","2016-06-20T00:00:00Z","","0" +"NM-23082","8.260000228881836","8.260000228881836","R","2005-12-06T00:00:00Z","","0" +"NM-09703","42.31999969482422","42.31999969482422","","1953-01-09T00:00:00Z","","0" +"SB-0299","112.55000305175781","112.55000305175781","","1996-04-10T00:00:00Z","","0" +"NM-03746","54.150001525878906","54.150001525878906","","1971-01-19T00:00:00Z","","0" +"NM-01547","-173","-173","E","1980-01-17T00:00:00Z","","0" +"WL-0021","49.130001068115234","48.43000030517578","","2002-09-01T00:00:00Z","","0.699999988079071" +"NM-20229","55.45000076293945","55.45000076293945","","1950-01-05T00:00:00Z","","0" +"NM-10853","58.209999084472656","58.209999084472656","","1978-01-04T00:00:00Z","","0" +"NM-02813","171.50999450683594","171.50999450683594","Z","1998-01-14T00:00:00Z","","0" +"NM-05704","90.22000122070312","90.22000122070312","","1943-01-14T00:00:00Z","","0" +"NM-28253","26.440000534057617","26.440000534057617","","1975-01-05T00:00:00Z","","0" +"NM-04660","118.37999725341797","118.37999725341797","","1967-01-24T00:00:00Z","","0" +"EB-607","198.5","198.5","","2005-11-30T00:00:00Z","","0" +"NM-00058","228.89999389648438","228.89999389648438","R","1965-10-20T00:00:00Z","","0" +"NM-03797","142.00999450683594","142.00999450683594","","1960-01-08T00:00:00Z","","0" +"NM-16810","30.040000915527344","30.040000915527344","","1934-05-08T00:00:00Z","","0" +"NM-28254","110.18000030517578","110.18000030517578","","1956-07-15T00:00:00Z","","0" +"NM-04704","74.66000366210938","74.66000366210938","","1953-05-09T00:00:00Z","","0" +"NM-01265","140.2899932861328","140.2899932861328","","1993-01-26T00:00:00Z","","0" +"NM-12368","22","22","","1937-01-06T00:00:00Z","","0" +"WL-0217","29.700000762939453","29.469999313354492","AA","2023-06-13T00:00:00Z","0001-01-01T19:30:00Z","0.23000000417232513" +"NM-03043","86.69999694824219","86.69999694824219","","1990-01-05T00:00:00Z","","0" +"NM-21867","6.150000095367432","6.150000095367432","Z","2006-12-27T00:00:00Z","","0" +"NM-05367","81.4000015258789","81.4000015258789","","1948-01-15T00:00:00Z","","0" +"ED-0266","56","56","","1948-12-23T00:00:00Z","","0" +"NM-02006","7","7","","1987-09-15T00:00:00Z","","0" +"NM-17716","3.25","3.25","","1947-05-01T00:00:00Z","","0" +"NM-20042","25.450000762939453","25.450000762939453","P","1947-11-24T00:00:00Z","","0" +"NM-13233","6.590000152587891","6.590000152587891","","1957-05-20T00:00:00Z","","0" +"NM-21151","10","10","","1977-11-15T00:00:00Z","","0" +"NM-17371","38.189998626708984","38.189998626708984","","1942-10-22T00:00:00Z","","0" +"NM-27835","67.52999877929688","67.52999877929688","","1976-01-06T00:00:00Z","","0" +"NM-01852","293.0799865722656","293.0799865722656","","1969-01-11T00:00:00Z","","0" +"NM-07148","85.61000061035156","85.61000061035156","","2006-10-04T00:00:00Z","","0" +"NM-01894","55.5","55.5","","2002-07-25T00:00:00Z","","0" +"NM-00790","10.329999923706055","10.329999923706055","","1994-03-31T00:00:00Z","","0" +"NM-03990","339.5400085449219","339.5400085449219","","2004-02-10T00:00:00Z","","0" +"QY-0254","158.10000610351562","158.10000610351562","","1952-09-18T00:00:00Z","","0" +"NM-12967","0.6399999856948853","0.6399999856948853","","1978-11-27T00:00:00Z","","0" +"NM-13887","5.170000076293945","5.170000076293945","","1961-07-25T00:00:00Z","","0" +"NM-28255","32.40999984741211","32.40999984741211","","2010-12-15T00:00:00Z","","0" +"NM-02197","12.140000343322754","12.140000343322754","","1995-03-14T00:00:00Z","","0" +"NM-17716","7.840000152587891","7.840000152587891","","1940-07-17T00:00:00Z","","0" +"NM-10907","146.5","146.5","","1958-08-27T00:00:00Z","","0" +"NM-00216","46.20000076293945","46.20000076293945","","1993-01-15T00:00:00Z","","0" +"NM-01249","82.97000122070312","82.97000122070312","","1952-10-31T00:00:00Z","","0" +"SO-0266","3.7300000190734863","2.4700000286102295","","2019-11-06T00:00:00Z","0001-01-01T10:31:00Z","1.2599999904632568" +"NM-18927","49.099998474121094","49.099998474121094","","1987-03-02T00:00:00Z","","0" +"NM-17716","3.25","3.25","","1947-06-05T00:00:00Z","","0" +"NM-05921","53.560001373291016","53.560001373291016","","1939-09-07T00:00:00Z","","0" +"UC-0134","4.650000095367432","4.650000095367432","","1960-08-24T00:00:00Z","","0" +"NM-12730","68.3499984741211","68.3499984741211","","1958-01-10T00:00:00Z","","0" +"NM-02022","96.66999816894531","96.66999816894531","","1973-01-24T00:00:00Z","","0" +"NM-17605","71.7300033569336","71.7300033569336","","1987-01-30T00:00:00Z","","0" +"NM-02167","12.949999809265137","12.949999809265137","","2004-04-12T00:00:00Z","","0" +"NM-01885","23.399999618530273","23.399999618530273","","2001-07-26T00:00:00Z","","0" +"NM-01699","144.1300048828125","144.1300048828125","","2013-06-13T00:00:00Z","","0" +"NM-26654","15.890000343322754","15.890000343322754","","2013-02-27T00:00:00Z","","0" +"NM-17716","5.570000171661377","5.570000171661377","","1949-03-14T00:00:00Z","","0" +"NM-02164","23.40999984741211","23.40999984741211","","2015-04-21T00:00:00Z","","0" +"NM-17716","3.319999933242798","3.319999933242798","","1949-06-13T00:00:00Z","","0" +"NM-02520","8","8","","1965-06-15T00:00:00Z","","0" +"NM-01829","313.989990234375","313.989990234375","","1985-07-15T00:00:00Z","","0" +"EB-485","477","476","P","1995-07-31T00:00:00Z","","1" +"NM-11130","10.380000114440918","10.380000114440918","","1972-01-06T00:00:00Z","","0" +"NM-22225","71.87000274658203","71.87000274658203","","1953-04-19T00:00:00Z","","0" +"NM-17925","192.88999938964844","192.88999938964844","","1972-01-26T00:00:00Z","","0" +"AB-0183","360.1400146484375","360.1400146484375","","2001-06-11T00:00:00Z","","" +"AB-0123","543.2100219726562","543.2100219726562","","2003-03-31T00:00:00Z","","" +"DE-0110","39.459999084472656","39.459999084472656","","2008-06-02T00:00:00Z","","0" +"NM-11048","-37.959999084472656","-37.959999084472656","","1909-06-24T00:00:00Z","","0" +"NM-02325","174.2899932861328","174.2899932861328","","1983-01-06T00:00:00Z","","0" +"NM-06791","510.20001220703125","510.20001220703125","","2009-09-14T00:00:00Z","","0" +"NM-00280","192.97000122070312","192.97000122070312","","1977-01-27T00:00:00Z","","0" +"NM-13999","-24.100000381469727","-24.100000381469727","","1912-01-14T00:00:00Z","","0" +"NM-02164","10.420000076293945","10.420000076293945","","1991-03-27T00:00:00Z","","0" +"NM-28254","84.0999984741211","84.0999984741211","","2007-10-05T00:00:00Z","","0" +"NM-02255","316.8599853515625","316.8599853515625","","1997-02-18T00:00:00Z","","0" +"NM-28257","77.56999969482422","77.56999969482422","","1974-05-25T00:00:00Z","","0" +"NM-21526","313.9200134277344","313.9200134277344","","1990-11-19T00:00:00Z","","0" +"NM-26338","77.9000015258789","77.9000015258789","","1981-02-01T00:00:00Z","","0" +"NM-01565","-242.38999938964844","-242.38999938964844","","1988-05-03T00:00:00Z","","0" +"NM-27194","365.6300048828125","365.6300048828125","","2014-12-11T00:00:00Z","","0" +"NM-28258","134.25","134.25","","1983-12-05T00:00:00Z","","0" +"BC-0244","229.6199951171875","229.6199951171875","","2015-09-08T00:00:00Z","","0" +"NM-28255","123.61000061035156","123.61000061035156","","1991-04-05T00:00:00Z","","0" +"NM-00865","9.039999961853027","9.039999961853027","P","1995-02-06T00:00:00Z","","0" +"NM-01580","25.43000030517578","25.43000030517578","","1998-03-04T00:00:00Z","","0" +"NM-00120","332.4100036621094","332.4100036621094","","1940-07-08T00:00:00Z","","0" +"NM-24981","147.52999877929688","147.52999877929688","","1963-02-01T00:00:00Z","","0" +"NM-13901","5.699999809265137","5.699999809265137","","1962-06-20T00:00:00Z","","0" +"NM-27945","54.900001525878906","54.900001525878906","","1955-04-15T00:00:00Z","","0" +"SO-0189","9.479999542236328","7.989999771118164","","2021-03-13T00:00:00Z","0001-01-01T15:17:00Z","1.4900000095367432" +"NM-01853","230.5","230.5","","1997-02-04T00:00:00Z","","0" +"NM-08036","19.399999618530273","19.399999618530273","","1968-04-03T00:00:00Z","","0" +"NM-00710","213.74000549316406","213.74000549316406","S","2008-10-03T00:00:00Z","","0" +"NM-13144","-25.889999389648438","-25.889999389648438","","1957-07-18T00:00:00Z","","0" +"NM-14306","-14.859999656677246","-14.859999656677246","","1908-06-05T00:00:00Z","","0" +"NM-02130","131.64999389648438","131.64999389648438","","1970-01-14T00:00:00Z","","0" +"NM-00644","79.93000030517578","79.93000030517578","","1992-06-29T00:00:00Z","","0" +"NM-21557","7.53000020980835","7.53000020980835","Z","2003-10-16T00:00:00Z","","0" +"NM-05437","162","162","P","1967-08-29T00:00:00Z","","0" +"NM-01926","7.199999809265137","7.199999809265137","","1954-11-15T00:00:00Z","","0" +"NM-02924","89.80000305175781","89.80000305175781","","1958-03-21T00:00:00Z","","0" +"AB-0054","37.97999954223633","37.97999954223633","","2015-11-03T00:00:00Z","","0" +"NM-10242","-81.8499984741211","-81.8499984741211","","1910-02-23T00:00:00Z","","0" +"NM-22260","7.949999809265137","7.949999809265137","","1993-02-25T00:00:00Z","","0" +"NM-20904","45.29999923706055","45.29999923706055","","1941-07-11T00:00:00Z","","0" +"NM-16745","67.0199966430664","67.0199966430664","","1972-01-05T00:00:00Z","","0" +"NM-01926","7.099999904632568","7.099999904632568","","1961-12-15T00:00:00Z","","0" +"NM-13189","124.66999816894531","124.66999816894531","","1958-08-27T00:00:00Z","","0" +"SA-0058","22.84000015258789","21.84000015258789","","2008-09-26T00:00:00Z","","1" +"PC-012","52.25","55.189998626708984","","1998-08-11T00:00:00Z","","0" +"NM-06094","129.27999877929688","129.27999877929688","","1971-01-28T00:00:00Z","","0" +"NM-04525","40.59000015258789","40.59000015258789","","1943-01-12T00:00:00Z","","0" +"NM-22393","29.579999923706055","29.579999923706055","","2012-11-08T00:00:00Z","","0" +"DE-0253","82.4800033569336","82.4800033569336","","2016-12-13T00:00:00Z","","0" +"BC-0020","86.0999984741211","86.0999984741211","","2018-04-02T00:00:00Z","","0" +"NM-27360","123.43000030517578","123.43000030517578","","1995-08-28T00:00:00Z","","0" +"NM-28250","90.13999938964844","90.13999938964844","","1989-07-05T00:00:00Z","","0" +"NM-02909","67.1500015258789","67.1500015258789","","2000-01-13T00:00:00Z","","0" +"NM-03355","34.38999938964844","34.38999938964844","","2006-02-28T00:00:00Z","","0" +"NM-09712","117.69999694824219","117.69999694824219","","1990-12-18T00:00:00Z","","0" +"NM-01810","108.18000030517578","108.18000030517578","","1957-01-17T00:00:00Z","","0" +"NM-02017","6.900000095367432","6.900000095367432","","1946-11-15T00:00:00Z","","0" +"NM-03385","42.63999938964844","42.63999938964844","","1993-05-04T00:00:00Z","","0" +"NM-28256","275.3399963378906","275.3399963378906","","1990-06-25T00:00:00Z","","0" +"TB-0060","24.84000015258789","23.540000915527344","","2011-04-19T00:00:00Z","","1.2999999523162842" +"NM-01204","377.69000244140625","377.69000244140625","S","2013-06-28T00:00:00Z","","0" +"SO-0171","8.09000015258789","7.160000324249268","","2022-02-19T00:00:00Z","0001-01-01T16:00:00Z","0.9300000071525574" +"NM-01955","3.5999999046325684","3.5999999046325684","","1993-11-15T00:00:00Z","","0" +"NM-02470","17.56999969482422","17.56999969482422","","1994-02-11T00:00:00Z","","0" +"NM-00384","29.079999923706055","29.079999923706055","","1954-09-14T00:00:00Z","","0" +"NM-03652","33.7400016784668","33.7400016784668","","2001-11-06T00:00:00Z","","0" +"NM-03455","294.67999267578125","294.67999267578125","Z","1991-03-07T00:00:00Z","","0" +"NM-12302","30.290000915527344","30.290000915527344","","1968-01-03T00:00:00Z","","0" +"NM-10143","31.09000015258789","31.09000015258789","","1942-09-27T00:00:00Z","","0" +"NM-02756","21.3700008392334","21.3700008392334","","2006-01-24T00:00:00Z","","0" +"NM-02032","180.64999389648438","176.09999084472656","","2020-02-04T00:00:00Z","0001-01-01T16:02:00Z","4.550000190734863" +"NM-17295","39.439998626708984","39.439998626708984","","1946-07-25T00:00:00Z","","0" +"NM-01927","111.95999908447266","111.95999908447266","","1961-11-07T00:00:00Z","","0" +"NM-06581","72.45999908447266","72.45999908447266","","1956-11-05T00:00:00Z","","0" +"NM-03903","327.57000732421875","327.57000732421875","","1974-12-01T00:00:00Z","","0" +"NM-21467","8.149999618530273","8.149999618530273","","2016-03-17T00:00:00Z","","0" +"NM-06007","171.9199981689453","171.9199981689453","","1958-01-13T00:00:00Z","","0" +"SB-0217","197.3699951171875","197.3699951171875","","1963-02-08T00:00:00Z","","0" +"DE-0198","51.70000076293945","51.70000076293945","","2016-03-29T00:00:00Z","","0" +"NM-02314","9.800000190734863","9.800000190734863","","1994-01-15T00:00:00Z","","0" +"NM-12014","60.970001220703125","60.970001220703125","","1959-03-09T00:00:00Z","","0" +"EB-220","126.62000274658203","126.62000274658203","","1979-02-06T00:00:00Z","","0" +"NM-09175","-54.130001068115234","-54.130001068115234","","1909-02-27T00:00:00Z","","0" +"NM-28253","12.84000015258789","12.84000015258789","","1994-10-15T00:00:00Z","","0" +"EB-389","108.83000183105469","106.8499984741211","","2000-01-01T00:00:00Z","","1.9800000190734863" +"NM-09805","21.1200008392334","21.1200008392334","","1949-01-06T00:00:00Z","","0" +"EB-269","60.220001220703125","60.220001220703125","","2014-06-13T00:00:00Z","","0" +"NM-13953","-14.859999656677246","-14.859999656677246","","1909-09-07T00:00:00Z","","0" +"NM-13765","-3.309999942779541","-3.309999942779541","","1909-03-01T00:00:00Z","","0" +"NM-12535","18.389999389648438","18.389999389648438","","1947-01-29T00:00:00Z","","0" +"NM-01985","10.600000381469727","10.600000381469727","","1988-12-15T00:00:00Z","","0" +"NM-22188","437.7799987792969","437.7799987792969","","2010-05-26T00:00:00Z","","0" +"AB-0039","348.989990234375","348.989990234375","","1996-08-15T00:00:00Z","","" +"NM-11017","34.029998779296875","34.029998779296875","P","1936-05-18T00:00:00Z","","0" +"NM-20452","195.38999938964844","195.38999938964844","","2014-07-08T00:00:00Z","","0" +"NM-13823","15.199999809265137","15.199999809265137","","1944-11-19T00:00:00Z","","0" +"NM-10270","94.30000305175781","94.30000305175781","","1963-10-02T00:00:00Z","","0" +"NM-27464","33.5","33.5","","2011-01-20T00:00:00Z","","0" +"NM-13555","-9.09000015258789","-9.09000015258789","","1905-06-20T00:00:00Z","","0" +"NM-11683","9.9399995803833","9.9399995803833","","1939-01-20T00:00:00Z","","0" +"EB-377","14.149999618530273","12.649999618530273","","2004-06-24T00:00:00Z","","1.5" +"NM-00916","144.9199981689453","144.9199981689453","","1966-01-11T00:00:00Z","","0" +"NM-28259","127.66000366210938","127.66000366210938","","2019-10-25T00:00:00Z","","0" +"NM-08657","26.90999984741211","26.90999984741211","P","1961-03-08T00:00:00Z","","0" +"NM-17716","7.179999828338623","7.179999828338623","","1940-04-15T00:00:00Z","","0" +"NM-22694","5","5","Z","2008-02-05T00:00:00Z","","0" +"NM-07154","99.05999755859375","99.05999755859375","","2008-03-21T00:00:00Z","","0" +"NM-13254","7.320000171661377","7.320000171661377","","1968-03-27T00:00:00Z","","0" +"NM-03005","68.87999725341797","68.87999725341797","","2002-08-13T00:00:00Z","","0" +"EB-481","560.5800170898438","560.5800170898438","P","2005-07-31T00:00:00Z","","0" +"BC-0126","104.18000030517578","104.18000030517578","","2012-12-17T00:00:00Z","","0" +"NM-03436","83.41999816894531","83.41999816894531","","1978-02-02T00:00:00Z","","0" +"NM-00253","22.940000534057617","22.940000534057617","","2014-03-17T00:00:00Z","","0" +"NM-05757","87.58000183105469","87.58000183105469","","1947-07-30T00:00:00Z","","0" +"NM-28010","498.8599853515625","498.8599853515625","S","2015-05-17T00:00:00Z","","0" +"BC-0218","22.450000762939453","22.450000762939453","","2019-07-21T00:00:00Z","","0" +"NM-05455","31.459999084472656","31.459999084472656","","1946-03-28T00:00:00Z","","0" +"NM-08031","-27.56999969482422","-27.56999969482422","","1908-09-09T00:00:00Z","","0" +"NM-02839","234.8000030517578","234.8000030517578","","1994-01-24T00:00:00Z","","0" +"NM-14271","149.1999969482422","149.1999969482422","","1961-01-05T00:00:00Z","","0" +"NM-19964","40.41999816894531","40.41999816894531","","1965-02-04T00:00:00Z","","0" +"NM-02922","18.5","18.5","","1995-02-08T00:00:00Z","","0" +"DE-0244","100.93000030517578","100.93000030517578","","2004-08-24T00:00:00Z","","0" +"NM-25923","300","300","","1966-01-06T00:00:00Z","","0" +"NM-02952","106.44000244140625","106.44000244140625","","1990-01-26T00:00:00Z","","0" +"NM-07337","101.04000091552734","101.04000091552734","","1977-01-19T00:00:00Z","","0" +"NM-06499","96.38999938964844","96.38999938964844","","1964-01-16T00:00:00Z","","0" +"NM-02006","10","10","","1958-05-15T00:00:00Z","","0" +"NM-11358","7.760000228881836","7.760000228881836","","1969-03-26T00:00:00Z","","0" +"NM-06076","38.33000183105469","38.33000183105469","","1945-03-20T00:00:00Z","","0" +"NM-17716","0.8999999761581421","0.8999999761581421","","1944-02-20T00:00:00Z","","0" +"NM-02197","12.800000190734863","12.800000190734863","","1999-08-03T00:00:00Z","","0" +"NM-06494","95.5999984741211","95.5999984741211","","1952-01-08T00:00:00Z","","0" +"NM-13223","67.73999786376953","67.73999786376953","","1943-09-16T00:00:00Z","","0" +"NM-02509","89.9800033569336","89.9800033569336","P","1991-10-08T00:00:00Z","","0" +"NM-13814","-5.619999885559082","-5.619999885559082","","1915-01-07T00:00:00Z","","0" +"NM-07043","149.2899932861328","149.2899932861328","","1981-03-09T00:00:00Z","","0" +"NM-09411","171.5","171.5","P","1956-01-05T00:00:00Z","","0" +"NM-27626","62.84000015258789","62.84000015258789","","1954-01-18T00:00:00Z","","0" +"NM-13047","24.030000686645508","24.030000686645508","","1960-01-11T00:00:00Z","","0" +"NM-02447","86.63999938964844","86.63999938964844","","1965-01-05T00:00:00Z","","0" +"NM-03220","56.709999084472656","56.709999084472656","P","1953-05-26T00:00:00Z","","0" +"NM-12496","12.800000190734863","12.800000190734863","","1968-02-26T00:00:00Z","","0" +"NM-20568","154.88999938964844","154.88999938964844","","1995-04-12T00:00:00Z","","0" +"NM-00384","32.63999938964844","32.63999938964844","","1960-01-19T00:00:00Z","","0" +"NM-12004","24.299999237060547","24.299999237060547","","1941-01-25T00:00:00Z","","0" +"NM-05347","9.100000381469727","9.100000381469727","","1983-07-15T00:00:00Z","","0" +"NM-02772","22.709999084472656","22.709999084472656","","2004-02-25T00:00:00Z","","0" +"NM-11623","46.27000045776367","46.27000045776367","","1951-07-25T00:00:00Z","","0" +"NM-28258","127.30000305175781","127.30000305175781","","1972-02-25T00:00:00Z","","0" +"NM-02209","92","92","","1950-07-01T00:00:00Z","","0" +"NM-28259","123.45999908447266","123.45999908447266","","2016-09-23T00:00:00Z","","0" +"NM-00482","259.8800048828125","259.8800048828125","","1971-03-30T00:00:00Z","","0" +"NM-03412","171.3000030517578","171.3000030517578","","1995-01-08T00:00:00Z","","0" +"NM-01872","7.300000190734863","7.300000190734863","","1981-07-15T00:00:00Z","","0" +"NM-10918","-29.8799991607666","-29.8799991607666","","1910-09-14T00:00:00Z","","0" +"NM-10540","73.20999908447266","73.20999908447266","","1986-02-18T00:00:00Z","","0" +"NM-22729","135.92999267578125","135.92999267578125","T","1984-08-27T00:00:00Z","","0" +"NM-13939","-19.479999542236328","-19.479999542236328","","1905-10-09T00:00:00Z","","0" +"EB-479","54","54","","1982-11-30T00:00:00Z","","0" +"SA-0069","34.97999954223633","34.16999816894531","","2016-02-15T00:00:00Z","","0.8100000023841858" +"NM-07868","18.59000015258789","18.59000015258789","","1941-01-26T00:00:00Z","","0" +"NM-08752","5.25","5.25","","1947-01-10T00:00:00Z","","0" +"EB-163","685","683.7999877929688","","2000-06-30T00:00:00Z","","1.2000000476837158" +"NM-27624","39.11000061035156","39.11000061035156","","1947-01-16T00:00:00Z","","0" +"NM-09604","102.16999816894531","102.16999816894531","","1960-10-12T00:00:00Z","","0" +"NM-11017","30.639999389648438","30.639999389648438","P","1935-11-20T00:00:00Z","","0" +"NM-17225","69.38999938964844","69.38999938964844","","1959-01-07T00:00:00Z","","0" +"NM-02591","6.800000190734863","6.800000190734863","","1975-08-15T00:00:00Z","","0" +"PC-029","58.310001373291016","56.40999984741211","","2021-02-19T00:00:00Z","0001-01-01T12:08:00Z","1.899999976158142" +"NM-20452","193.60000610351562","193.60000610351562","","1999-04-19T00:00:00Z","","0" +"NM-00404","163.4499969482422","163.4499969482422","","1971-02-15T00:00:00Z","","0" +"NM-26738","14.869999885559082","14.869999885559082","","1991-01-22T00:00:00Z","","0" +"NM-01895","42.97999954223633","42.97999954223633","","1992-11-10T00:00:00Z","","0" +"SB-0227","119.87000274658203","119.87000274658203","","1949-02-03T00:00:00Z","","0" +"NM-00489","52.439998626708984","52.439998626708984","","2007-01-10T00:00:00Z","","0" +"NM-04473","11.670000076293945","11.670000076293945","","1976-01-16T00:00:00Z","","0" +"NM-07225","195.0500030517578","195.0500030517578","","1980-02-01T00:00:00Z","","0" +"EB-219","71.2699966430664","69.7699966430664","","1960-02-11T00:00:00Z","","1.5" +"NM-20526","18.06999969482422","18.06999969482422","","1943-09-30T00:00:00Z","","0" +"NM-09232","63.369998931884766","63.369998931884766","","1976-02-25T00:00:00Z","","0" +"NM-18145","72.05000305175781","72.05000305175781","","2004-01-13T00:00:00Z","","0" +"NM-02396","16.299999237060547","16.299999237060547","","1956-06-15T00:00:00Z","","0" +"NM-28018","486.5899963378906","486.5899963378906","S","2015-04-12T00:00:00Z","","0" +"AB-0111","42.060001373291016","42.060001373291016","","2008-07-11T00:00:00Z","","" +"NM-13562","4.449999809265137","4.449999809265137","","1960-05-03T00:00:00Z","","0" +"NM-02667","70.56999969482422","70.56999969482422","","1980-01-04T00:00:00Z","","0" +"DE-0237","104.22000122070312","104.22000122070312","","2009-03-04T00:00:00Z","","0" +"NM-28254","60.349998474121094","60.349998474121094","","1983-03-15T00:00:00Z","","0" +"WL-0134","261.1099853515625","261.1099853515625","","1995-02-06T00:00:00Z","","0" +"NM-02288","4.199999809265137","4.199999809265137","","2008-05-12T00:00:00Z","","0" +"NM-05516","8.399999618530273","8.399999618530273","","1948-01-15T00:00:00Z","","0" +"NM-04093","76.1500015258789","76.1500015258789","","1960-01-06T00:00:00Z","","0" +"NM-03442","12.279999732971191","12.279999732971191","Z","1995-03-31T00:00:00Z","","0" +"NM-02017","8.800000190734863","8.800000190734863","","1972-07-15T00:00:00Z","","0" +"NM-17716","3.450000047683716","3.450000047683716","","1946-05-12T00:00:00Z","","0" +"NM-03042","103.05000305175781","103.05000305175781","","1991-01-08T00:00:00Z","","0" +"NM-05367","98.5199966430664","98.5199966430664","","1972-01-06T00:00:00Z","","0" +"NM-00253","21.040000915527344","21.040000915527344","","1992-01-31T00:00:00Z","","0" +"NM-28250","77.66000366210938","77.66000366210938","","2001-03-26T00:00:00Z","","0" +"NM-23149","89.4800033569336","89.4800033569336","","1960-05-11T00:00:00Z","","0" +"NM-00521","65.16999816894531","65.16999816894531","","1992-01-08T00:00:00Z","","0" +"NM-00702","34.7599983215332","34.7599983215332","","2013-07-31T00:00:00Z","","0" +"NM-09320","-58.599998474121094","-58.599998474121094","","1943-01-11T00:00:00Z","","0" +"NM-00985","380.6199951171875","380.6199951171875","","2015-01-30T00:00:00Z","","0" +"NM-02349","15.899999618530273","15.899999618530273","","1990-02-06T00:00:00Z","","0" +"NM-21592","4.159999847412109","4.159999847412109","Z","2009-08-07T00:00:00Z","","0" +"NM-00470","64.08000183105469","64.08000183105469","","1998-01-06T00:00:00Z","","0" +"NM-15453","66.7699966430664","66.7699966430664","R","1970-03-10T00:00:00Z","","0" +"NM-02682","60.72999954223633","60.72999954223633","","2011-01-25T00:00:00Z","","0" +"SO-0142","11.399999618530273","10.25999927520752","","2021-11-13T00:00:00Z","0001-01-01T13:15:00Z","1.1399999856948853" +"AB-0179","177.77000427246094","177.77000427246094","","1997-11-21T00:00:00Z","","" +"SO-0250","9.149999618530273","7.659999847412109","","2020-02-23T00:00:00Z","0001-01-01T10:17:00Z","1.4900000095367432" +"BC-0035","111.25","111.25","","2017-06-21T00:00:00Z","","0" +"NM-21760","69.05000305175781","69.05000305175781","","1971-10-23T00:00:00Z","","0" +"NM-14802","107.51000213623047","107.51000213623047","","1975-07-03T00:00:00Z","","0" +"NM-01888","8.720000267028809","8.720000267028809","","2008-05-13T00:00:00Z","","0" +"BC-0058","172.74000549316406","172.74000549316406","","2013-09-03T00:00:00Z","","0" +"NM-00644","134.94000244140625","134.94000244140625","","1981-06-01T00:00:00Z","","0" +"NM-01738","150.4499969482422","150.4499969482422","","1978-01-26T00:00:00Z","","0" +"SB-0299","143.75999450683594","143.75999450683594","","2009-10-10T00:00:00Z","","0" +"NM-10960","-21.790000915527344","-21.790000915527344","","1912-02-02T00:00:00Z","","0" +"NM-23690","193.08999633789062","193.08999633789062","","1988-03-01T00:00:00Z","","0" +"EB-651","80.38999938964844","80.38999938964844","","2009-11-05T00:00:00Z","","0" +"NM-04796","36.5099983215332","36.5099983215332","","1950-12-02T00:00:00Z","","0" +"NM-02558","118.5999984741211","118.5999984741211","","1989-01-26T00:00:00Z","","0" +"NM-03397","23.049999237060547","23.049999237060547","","1982-08-20T00:00:00Z","","0" +"NM-08925","81.5","81.5","","1986-03-25T00:00:00Z","","0" +"NM-05645","87.54000091552734","87.54000091552734","","1954-01-22T00:00:00Z","","0" +"NM-03316","139.77000427246094","139.77000427246094","","1985-02-20T00:00:00Z","","0" +"NM-09042","83.95999908447266","83.95999908447266","","1961-01-23T00:00:00Z","","0" +"NM-13441","-25.260000228881836","-25.260000228881836","","1906-03-23T00:00:00Z","","0" +"NM-08071","10.100000381469727","10.100000381469727","","1971-11-15T00:00:00Z","","0" +"NM-22966","795.0499877929688","795.0499877929688","Z","1996-05-13T00:00:00Z","","0" +"NM-02090","64.33999633789062","64.33999633789062","","1952-07-22T00:00:00Z","","0" +"NM-00047","62.2599983215332","62.2599983215332","","1997-08-11T00:00:00Z","","0" +"DE-0085","90.11000061035156","90.11000061035156","","1996-05-15T00:00:00Z","","0" +"NM-00196","44.439998626708984","44.439998626708984","","1964-01-20T00:00:00Z","","0" +"NM-01829","309.6000061035156","309.6000061035156","","1975-07-11T00:00:00Z","","0" +"NM-11439","24.579999923706055","24.579999923706055","","1976-02-10T00:00:00Z","","0" +"NM-17209","50.47999954223633","50.47999954223633","","1940-01-26T00:00:00Z","","0" +"NM-13016","51.40999984741211","51.40999984741211","","1975-01-07T00:00:00Z","","0" +"NM-00634","62.63999938964844","62.63999938964844","","1977-01-07T00:00:00Z","","0" +"NM-04564","60.779998779296875","60.779998779296875","","1948-07-25T00:00:00Z","","0" +"NM-15284","158.14999389648438","158.14999389648438","","2003-01-16T00:00:00Z","","0" +"BC-0058","170.0399932861328","170.0399932861328","","2014-03-11T00:00:00Z","","0" +"NM-00094","1.350000023841858","1.350000023841858","","1965-02-01T00:00:00Z","","0" +"NM-13265","-65.83999633789062","-65.83999633789062","","1915-01-09T00:00:00Z","","0" +"NM-06281","29.899999618530273","29.899999618530273","","1970-12-02T00:00:00Z","","0" +"MI-0082","55","55","","1950-12-31T00:00:00Z","","0" +"NM-14889","81.55999755859375","81.55999755859375","","1966-01-06T00:00:00Z","","0" +"NM-02654","105.31999969482422","105.31999969482422","","1996-01-29T00:00:00Z","","0" +"NM-01899","64.5","64.5","","1991-11-01T00:00:00Z","","0" +"NM-05516","9.199999809265137","9.199999809265137","","1970-08-15T00:00:00Z","","0" +"NM-01619","285.57000732421875","285.57000732421875","","1986-12-01T00:00:00Z","","0" +"NM-08423","16.56999969482422","16.56999969482422","","1957-01-16T00:00:00Z","","0" +"NM-02209","84","84","","1941-08-01T00:00:00Z","","0" +"DE-0355","69.19999694824219","66.7199935913086","","2015-12-08T00:00:00Z","","2.4800000190734863" +"NM-02460","264.7099914550781","264.7099914550781","","2004-01-29T00:00:00Z","","0" +"NM-10058","6.550000190734863","6.550000190734863","","1978-12-29T00:00:00Z","","0" +"NM-02493","71.86000061035156","71.86000061035156","","1965-01-12T00:00:00Z","","0" +"NM-01201","22.969999313354492","22.969999313354492","","1953-04-16T00:00:00Z","","0" +"NM-12893","25.6299991607666","25.6299991607666","P","1961-01-10T00:00:00Z","","0" +"NM-01304","31.389999389648438","31.389999389648438","","2008-04-01T00:00:00Z","","0" +"NM-11265","-33.34000015258789","-33.34000015258789","","1911-02-15T00:00:00Z","","0" +"NM-12611","70.68000030517578","70.68000030517578","","1963-11-20T00:00:00Z","","0" +"NM-01269","103.61000061035156","103.61000061035156","","2015-07-22T00:00:00Z","","0" +"NM-01782","159.39999389648438","159.39999389648438","","1970-01-24T00:00:00Z","","0" +"SO-0029","116.19999694824219","116.19999694824219","","1949-07-26T00:00:00Z","","0" +"EB-482","90","90","Z","1988-09-30T00:00:00Z","","0" +"NM-11434","67.62000274658203","67.62000274658203","","1960-04-29T00:00:00Z","","0" +"NM-18703","331.9200134277344","331.9200134277344","","1982-01-11T00:00:00Z","","0" +"NM-17716","4.050000190734863","4.050000190734863","","1946-06-04T00:00:00Z","","0" +"NM-11677","22.110000610351562","22.110000610351562","","1958-01-16T00:00:00Z","","0" +"NM-08898","46.15999984741211","46.15999984741211","","1991-05-17T00:00:00Z","","0" +"NM-06038","38.619998931884766","38.619998931884766","","2011-08-12T00:00:00Z","","0" +"NM-22484","426.989990234375","426.989990234375","","2008-03-05T00:00:00Z","","0" +"NM-00564","74.19999694824219","74.19999694824219","","1973-01-09T00:00:00Z","","0" +"DE-0108","40.40999984741211","40.40999984741211","","2001-09-25T00:00:00Z","","0" +"NM-03204","23.549999237060547","23.549999237060547","","1985-02-21T00:00:00Z","","0" +"AB-0053","48.2599983215332","48.2599983215332","","2001-04-18T00:00:00Z","","" +"NM-23134","4.570000171661377","4.570000171661377","Z","2009-08-06T00:00:00Z","","0" +"NM-20107","10.350000381469727","10.350000381469727","","1943-09-29T00:00:00Z","","0" +"NM-01900","317.8299865722656","317.8299865722656","","1998-01-13T00:00:00Z","","0" +"NM-13594","53.7400016784668","53.7400016784668","","1975-07-03T00:00:00Z","","0" +"NM-19774","24.479999542236328","24.479999542236328","P","1949-08-01T00:00:00Z","","0" +"NM-13740","-2.7300000190734863","-2.7300000190734863","","1908-06-27T00:00:00Z","","0" +"NM-17638","51.79999923706055","51.79999923706055","","1994-01-04T00:00:00Z","","0" +"BC-0317","203.7100067138672","203.7100067138672","","2019-07-22T00:00:00Z","","0" +"NM-19980","56.43000030517578","56.43000030517578","P","1955-08-20T00:00:00Z","","0" +"NM-23986","32","32","R","1994-02-28T00:00:00Z","","0" +"NM-19969","69.62000274658203","69.62000274658203","","1953-03-28T00:00:00Z","","0" +"SM-0052","127.52999877929688","126.52999877929688","","2008-04-16T00:00:00Z","","1" +"DE-0108","37.04999923706055","37.04999923706055","","2005-09-15T00:00:00Z","","0" +"NM-10277","51.15999984741211","51.15999984741211","","1958-01-08T00:00:00Z","","0" +"NM-28254","68.83000183105469","68.83000183105469","","1959-05-25T00:00:00Z","","0" +"NM-12284","-21.899999618530273","-21.899999618530273","","1960-01-12T00:00:00Z","","0" +"NM-17716","0.9100000262260437","0.9100000262260437","","1943-12-18T00:00:00Z","","0" +"NM-14148","9","9","","1971-09-29T00:00:00Z","","0" +"NM-01841","247.19000244140625","247.19000244140625","","1976-02-20T00:00:00Z","","0" +"NM-13746","-4.46999979019165","-4.46999979019165","","1906-03-03T00:00:00Z","","0" +"NM-28251","90.5","90.5","","1974-04-05T00:00:00Z","","0" +"NM-01035","43.36000061035156","43.36000061035156","","1955-03-29T00:00:00Z","","0" +"NM-03986","219.24000549316406","219.24000549316406","P","1954-11-10T00:00:00Z","","0" +"NM-11605","29.450000762939453","29.450000762939453","","1964-09-02T00:00:00Z","","0" +"DE-0111","35.79999923706055","35.79999923706055","","2001-02-27T00:00:00Z","","0" +"EB-244","124.8499984741211","124.8499984741211","","2009-06-05T00:00:00Z","","0" +"DE-0254","88.55000305175781","88.55000305175781","","2019-12-12T00:00:00Z","","0" +"NM-01890","60.95000076293945","60.95000076293945","","2001-06-19T00:00:00Z","","0" +"NM-05480","103.22000122070312","103.22000122070312","","1961-11-22T00:00:00Z","","0" +"NM-12624","67.4000015258789","67.4000015258789","","1949-02-02T00:00:00Z","","0" +"NM-03344","75.4000015258789","75.4000015258789","R","1991-11-06T00:00:00Z","","0" +"NM-13220","8.729999542236328","8.729999542236328","","1952-01-28T00:00:00Z","","0" +"NM-07895","51.54999923706055","51.54999923706055","","1976-02-13T00:00:00Z","","0" +"SV-0115","271.6000061035156","269.67999267578125","","2016-10-22T00:00:00Z","","1.9199999570846558" +"SB-0299","127.23999786376953","127.23999786376953","","1970-08-17T00:00:00Z","","0" +"TB-0012","64.87999725341797","64.37999725341797","","2011-02-18T00:00:00Z","","0.5" +"NM-02772","5.28000020980835","5.28000020980835","","2003-01-16T00:00:00Z","","0" +"NM-13721","50.58000183105469","50.58000183105469","P","1950-01-30T00:00:00Z","","0" +"AS-050","582","582","","1995-09-14T00:00:00Z","","0" +"NM-01854","108.19999694824219","108.19999694824219","","1970-01-12T00:00:00Z","","0" +"NM-02487","14.399999618530273","14.399999618530273","","1957-09-15T00:00:00Z","","0" +"NM-02004","7.800000190734863","7.800000190734863","","1949-01-15T00:00:00Z","","0" +"NM-05195","121.16999816894531","121.16999816894531","","1963-01-17T00:00:00Z","","0" +"NM-12394","11.5","11.5","","1941-01-28T00:00:00Z","","0" +"NM-10852","51.470001220703125","51.470001220703125","","1953-01-09T00:00:00Z","","0" +"NM-01592","205.89999389648438","205.89999389648438","","1999-02-23T00:00:00Z","","0" +"NM-05922","50.2400016784668","50.2400016784668","P","1931-08-25T00:00:00Z","","0" +"NM-17716","4.619999885559082","4.619999885559082","","1946-09-20T00:00:00Z","","0" +"NM-03095","278.9100036621094","278.9100036621094","","1995-06-27T00:00:00Z","","0" +"NM-02831","57.43000030517578","57.43000030517578","","1981-11-01T00:00:00Z","","0" +"NM-24753","175.25999450683594","175.25999450683594","","1973-08-08T00:00:00Z","","0" +"NM-02560","111","111","","1968-12-01T00:00:00Z","","0" +"NM-27404","170.82000732421875","170.82000732421875","P","1964-01-07T00:00:00Z","","0" +"NM-12916","48.869998931884766","48.869998931884766","","1944-02-05T00:00:00Z","","0" +"NM-18226","170.97000122070312","170.97000122070312","","1954-02-25T00:00:00Z","","0" +"NM-02799","10.050000190734863","10.050000190734863","","1956-01-12T00:00:00Z","","0" +"NM-20806","165.9600067138672","165.9600067138672","P","1955-07-21T00:00:00Z","","0" +"NM-07759","32.5099983215332","32.5099983215332","","1961-03-01T00:00:00Z","","0" +"NM-00603","68.30999755859375","68.30999755859375","","1973-01-10T00:00:00Z","","0" +"NM-06486","222.69000244140625","222.69000244140625","","1989-03-14T00:00:00Z","","0" +"NM-00253","21.6200008392334","21.6200008392334","Z","2005-08-10T00:00:00Z","","0" +"DE-0385","0","-2.6700000762939453","","2014-05-14T00:00:00Z","","2.6700000762939453" +"NM-17888","33.58000183105469","33.58000183105469","","1987-01-14T00:00:00Z","","0" +"NM-13063","19.40999984741211","19.40999984741211","","1991-02-12T00:00:00Z","","0" +"NM-20134","23.950000762939453","23.950000762939453","","1944-12-05T00:00:00Z","","0" +"NM-02487","8.899999618530273","8.899999618530273","","1959-05-15T00:00:00Z","","0" +"NM-02772","176.49000549316406","176.49000549316406","","1998-07-15T00:00:00Z","","0" +"NM-04252","14.600000381469727","14.600000381469727","","1955-01-19T00:00:00Z","","0" +"NM-11232","109.95999908447266","109.95999908447266","","1966-02-09T00:00:00Z","","0" +"NM-05516","19.799999237060547","19.799999237060547","","1957-12-15T00:00:00Z","","0" +"NM-21735","342.0299987792969","342.0299987792969","R","2004-03-09T00:00:00Z","","0" +"SV-0053","359.29998779296875","359.29998779296875","","2017-08-05T00:00:00Z","","1.9199999570846558" +"AR-0095","25.8700008392334","24.8700008392334","","2015-08-19T00:00:00Z","","1" +"NM-13121","5.429999828338623","5.429999828338623","","1976-11-23T00:00:00Z","","0" +"NM-07683","45.779998779296875","45.779998779296875","","1961-03-07T00:00:00Z","","0" +"TB-0139","82.12999725341797","80.87999725341797","","2018-11-08T00:00:00Z","0001-01-01T08:14:00Z","1.25" +"AB-0039","356.30999755859375","356.30999755859375","","2006-10-16T00:00:00Z","","" +"NM-02487","13.5","13.5","","1958-02-15T00:00:00Z","","0" +"NM-12614","25.34000015258789","25.34000015258789","Z","1994-01-27T00:00:00Z","","0" +"NM-01959","82.5","82.5","","1997-01-30T00:00:00Z","","0" +"NM-07025","98.81999969482422","98.81999969482422","","1981-02-27T00:00:00Z","","0" +"NM-11665","198.14999389648438","198.14999389648438","R","1962-01-15T00:00:00Z","","0" +"NM-01796","6.199999809265137","6.199999809265137","","1984-11-15T00:00:00Z","","0" +"NM-28250","84.12999725341797","84.12999725341797","","2002-08-05T00:00:00Z","","0" +"NM-02207","15.600000381469727","15.600000381469727","","1965-01-15T00:00:00Z","","0" +"NM-28019","480.1099853515625","480.1099853515625","S","2015-04-25T00:00:00Z","","0" +"NM-24757","144.50999450683594","144.50999450683594","","1957-12-11T00:00:00Z","","0" +"NM-17562","20.809999465942383","20.809999465942383","","1948-09-30T00:00:00Z","","0" +"NM-02487","10.199999809265137","10.199999809265137","","1974-12-15T00:00:00Z","","0" +"NM-22619","399.8699951171875","399.8699951171875","","2008-02-19T00:00:00Z","","0" +"NM-17698","46.29999923706055","46.29999923706055","","2002-06-05T00:00:00Z","","0" +"NM-04422","72.20999908447266","72.20999908447266","","1952-01-30T00:00:00Z","","0" +"NM-04632","8.199999809265137","8.199999809265137","","1986-09-15T00:00:00Z","","0" +"NM-28258","114.55000305175781","114.55000305175781","","1990-11-25T00:00:00Z","","0" +"NM-03795","20.229999542236328","20.229999542236328","","1966-01-14T00:00:00Z","","0" +"NM-19428","384.25","384.25","","1987-03-02T00:00:00Z","","0" +"NM-06774","68.9000015258789","68.9000015258789","","1965-11-02T00:00:00Z","","0" +"NM-02761","41.209999084472656","41.209999084472656","","1951-01-19T00:00:00Z","","0" +"NM-17048","16.959999084472656","16.959999084472656","","1945-11-23T00:00:00Z","","0" +"NM-09176","26.139999389648438","26.139999389648438","P","1941-08-11T00:00:00Z","","0" +"NM-04470","37.310001373291016","37.310001373291016","","1940-03-17T00:00:00Z","","0" +"NM-00621","79.16000366210938","79.16000366210938","","1983-01-04T00:00:00Z","","0" +"NM-02729","52.779998779296875","52.779998779296875","","1963-01-15T00:00:00Z","","0" +"EB-364","180.89999389648438","177.89999389648438","","2010-04-08T00:00:00Z","","3" +"NM-01960","128.83999633789062","128.83999633789062","","1998-01-08T00:00:00Z","","0" +"NM-19797","48.68000030517578","48.68000030517578","","1945-01-26T00:00:00Z","","0" +"NM-04058","155.6999969482422","155.6999969482422","","1968-01-16T00:00:00Z","","0" +"NM-10299","60.869998931884766","60.869998931884766","","1966-03-03T00:00:00Z","","0" +"NM-10395","44.75","44.75","","2006-01-25T00:00:00Z","","0" +"NM-10331","586.8900146484375","586.8900146484375","","1962-07-01T00:00:00Z","","0" +"NM-20011","40.66999816894531","40.66999816894531","","1942-04-08T00:00:00Z","","0" +"NM-28097","","","O","2016-04-14T00:00:00Z","","0" +"NM-14208","-24.100000381469727","-24.100000381469727","","1910-12-15T00:00:00Z","","0" +"NM-03342","12.5","12.5","","1994-02-15T00:00:00Z","","0" +"NM-04187","32.630001068115234","32.630001068115234","","1955-10-25T00:00:00Z","","0" +"NM-23862","153","153","","1976-10-22T00:00:00Z","","0" +"NM-28255","72","72","","2001-09-25T00:00:00Z","","0" +"NM-11347","-10.239999771118164","-10.239999771118164","","1907-06-27T00:00:00Z","","0" +"NM-01986","7.599999904632568","7.599999904632568","","2001-05-15T00:00:00Z","","0" +"SB-0288","75.2300033569336","75.2300033569336","","1950-02-21T00:00:00Z","","0" +"NM-08580","53.099998474121094","53.099998474121094","P","1957-03-16T00:00:00Z","","0" +"NM-00714","216.1999969482422","216.1999969482422","","2011-07-20T00:00:00Z","","0" +"NM-20366","358.8999938964844","358.8999938964844","","1986-01-10T00:00:00Z","","0" +"NM-10380","53.52000045776367","53.52000045776367","","1971-02-18T00:00:00Z","","0" +"NM-17234","55.65999984741211","55.65999984741211","","1956-01-24T00:00:00Z","","0" +"NM-06807","77.30000305175781","77.30000305175781","","2007-10-02T00:00:00Z","","0" +"NM-03039","80.0999984741211","80.0999984741211","","1980-01-07T00:00:00Z","","0" +"SV-0092","131.39999389648438","129.57000732421875","","2019-05-11T00:00:00Z","","1.8300000429153442" +"NM-11388","45.459999084472656","45.459999084472656","","1979-07-25T00:00:00Z","","0" +"DE-0239","112.02999877929688","112.02999877929688","","2008-08-08T00:00:00Z","","0" +"NM-01986","6.400000095367432","6.400000095367432","","1973-08-15T00:00:00Z","","0" +"NM-19682","255.36000061035156","255.36000061035156","","1974-03-05T00:00:00Z","","0" +"BC-0113","59.47999954223633","59.47999954223633","","2019-10-27T00:00:00Z","","0" +"NM-22840","","","D","2014-01-22T00:00:00Z","","0" +"NM-13623","31.790000915527344","31.790000915527344","","1994-02-11T00:00:00Z","","0" +"UC-0125","148.83999633789062","148.83999633789062","","2013-03-08T00:00:00Z","","0" +"NM-03903","330.70001220703125","330.70001220703125","","1974-08-16T00:00:00Z","","0" +"WL-0088","47.04833221435547","44.448333740234375","","1997-03-19T00:00:00Z","","2.5999999046325684" +"NM-03388","45.63999938964844","45.63999938964844","","1988-07-28T00:00:00Z","","0" +"NM-10192","-51.81999969482422","-51.81999969482422","","1912-02-15T00:00:00Z","","0" +"SM-0232","21.31999969482422","19.28999900817871","","2009-02-03T00:00:00Z","","2.0299999713897705" +"NM-05966","67.51000213623047","67.51000213623047","","1981-01-16T00:00:00Z","","0" +"NM-11487","18.780000686645508","18.780000686645508","","1957-09-09T00:00:00Z","","0" +"NM-13603","41.72999954223633","41.72999954223633","","1979-02-09T00:00:00Z","","0" +"NM-16675","15.4399995803833","15.4399995803833","","1935-11-19T00:00:00Z","","0" +"NM-00218","105.05999755859375","105.05999755859375","","1965-06-23T00:00:00Z","","0" +"NM-02005","5.699999809265137","5.699999809265137","","1989-10-15T00:00:00Z","","0" +"EB-339","139.69000244140625","137.60000610351562","","2018-04-09T00:00:00Z","0001-01-01T17:32:00Z","2.0899999141693115" +"NM-00358","121.72000122070312","121.72000122070312","S","1981-04-06T00:00:00Z","","0" +"NM-01843","74.1500015258789","74.1500015258789","","2013-01-15T00:00:00Z","","0" +"DE-0112","40.27000045776367","40.27000045776367","","2007-08-27T00:00:00Z","","0" +"NM-02164","17.1299991607666","17.1299991607666","","1995-04-11T00:00:00Z","","0" +"NM-15647","91.87000274658203","91.87000274658203","Z","1994-02-08T00:00:00Z","","0" +"NM-01278","108.26000213623047","108.26000213623047","","1999-02-23T00:00:00Z","","0" +"NM-17454","62.31999969482422","62.31999969482422","","1957-09-21T00:00:00Z","","0" +"NM-00289","70.13999938964844","70.13999938964844","","2007-12-20T00:00:00Z","","0" +"NM-13995","-21.790000915527344","-21.790000915527344","","1913-07-10T00:00:00Z","","0" +"NM-16438","145.52000427246094","145.52000427246094","","1985-01-13T00:00:00Z","","0" +"NM-02167","19.969999313354492","19.969999313354492","","2016-01-20T00:00:00Z","","0" +"NM-14725","126","126","","1981-01-27T00:00:00Z","","0" +"NM-07145","87.19999694824219","87.19999694824219","","2006-04-12T00:00:00Z","","0" +"NM-02650","50.970001220703125","50.970001220703125","","1974-01-10T00:00:00Z","","0" +"NM-03403","5.610000133514404","5.610000133514404","","2002-06-06T00:00:00Z","","0" +"NM-05321","344.510009765625","344.510009765625","","1987-10-15T00:00:00Z","","0" +"NM-17335","71.98999786376953","71.98999786376953","","1957-01-17T00:00:00Z","","0" +"SB-0442","167.10000610351562","167.10000610351562","","2006-04-20T00:00:00Z","","0" +"NM-02352","7","7","","1950-12-15T00:00:00Z","","0" +"NM-04138","118.04000091552734","118.04000091552734","","1955-12-21T00:00:00Z","","0" +"SB-0299","116.97000122070312","116.97000122070312","","1999-03-05T00:00:00Z","","0" +"NM-16300","128.74000549316406","128.74000549316406","R","1994-02-03T00:00:00Z","","0" +"DE-0091","89.87999725341797","89.87999725341797","","2010-11-15T00:00:00Z","","0" +"NM-10593","24.40999984741211","24.40999984741211","P","1938-11-01T00:00:00Z","","0" +"NM-01466","3.7200000286102295","3.7200000286102295","","2011-03-02T00:00:00Z","","0" +"NM-05921","52.880001068115234","52.880001068115234","","1939-05-08T00:00:00Z","","0" +"EB-276","132.14999389648438","132.14999389648438","","1960-12-20T00:00:00Z","","0" +"NM-02563","40.16999816894531","40.16999816894531","","1991-01-03T00:00:00Z","","0" +"NM-04806","84.62000274658203","84.62000274658203","","1965-01-21T00:00:00Z","","0" +"NM-18703","248.7899932861328","248.7899932861328","","1957-01-15T00:00:00Z","","0" +"NM-21380","44.459999084472656","44.459999084472656","","1953-02-24T00:00:00Z","","0" +"NM-13071","2.2300000190734863","2.2300000190734863","","1979-01-24T00:00:00Z","","0" +"NM-15464","63.91999816894531","63.91999816894531","","1990-01-25T00:00:00Z","","0" +"NM-01791","308.29998779296875","308.29998779296875","","1990-11-19T00:00:00Z","","0" +"NM-15310","104.72000122070312","104.72000122070312","","1971-01-07T00:00:00Z","","0" +"NM-26304","193.4199981689453","193.4199981689453","","1976-01-28T00:00:00Z","","0" +"DE-0322","35.13999938964844","35.13999938964844","","2014-05-12T00:00:00Z","","0" +"NM-00974","352.5400085449219","352.5400085449219","","1981-08-18T00:00:00Z","","0" +"NM-02998","58.20000076293945","58.20000076293945","","1981-01-12T00:00:00Z","","0" +"NM-28254","155","155","","2020-06-25T00:00:00Z","","0" +"NM-03977","168.19000244140625","168.19000244140625","","1972-11-30T00:00:00Z","","0" +"NM-01412","90.37000274658203","90.37000274658203","","1989-04-19T00:00:00Z","","0" +"NM-28254","95.93000030517578","95.93000030517578","","1988-05-05T00:00:00Z","","0" +"NM-10167","35.09000015258789","35.09000015258789","","1947-01-22T00:00:00Z","","0" +"NM-07719","81.79000091552734","81.79000091552734","R","1953-07-23T00:00:00Z","","0" +"NM-02670","43.540000915527344","43.540000915527344","","2010-01-13T00:00:00Z","","0" +"NM-02995","102.43000030517578","102.43000030517578","","2008-03-18T00:00:00Z","","0" +"NM-20042","29.1200008392334","29.1200008392334","","1961-06-05T00:00:00Z","","0" +"DE-0067","21.469999313354492","19.869998931884766","","1993-10-01T00:00:00Z","","1.600000023841858" +"NM-28256","177.17999267578125","177.17999267578125","","1998-10-05T00:00:00Z","","0" +"NM-21381","31.709999084472656","31.709999084472656","R","1990-06-13T00:00:00Z","","0" +"NM-19432","253.1199951171875","253.1199951171875","R","1995-06-29T00:00:00Z","","0" +"SA-0200","59.25","58.04999923706055","","2011-09-13T00:00:00Z","","1.2000000476837158" +"NM-28258","140.4499969482422","140.4499969482422","","1990-05-05T00:00:00Z","","0" +"NM-20049","23.329999923706055","23.329999923706055","","1946-05-31T00:00:00Z","","0" +"NM-03240","74.97000122070312","74.97000122070312","R","1951-05-02T00:00:00Z","","0" +"NM-12378","93.16999816894531","93.16999816894531","","1994-01-25T00:00:00Z","","0" +"NM-26204","15.420000076293945","15.420000076293945","","1989-06-15T00:00:00Z","","0" +"NM-28250","102.19999694824219","102.19999694824219","","1985-06-05T00:00:00Z","","0" +"NM-02314","10.100000381469727","10.100000381469727","","1971-03-15T00:00:00Z","","0" +"NM-03839","15.34000015258789","15.34000015258789","","1951-05-14T00:00:00Z","","0" +"NM-13360","57.970001220703125","57.970001220703125","","1970-03-12T00:00:00Z","","0" +"NM-01893","24.610000610351562","24.610000610351562","","2004-05-17T00:00:00Z","","0" +"NM-00367","144.7899932861328","144.7899932861328","","2011-08-23T00:00:00Z","","0" +"DE-0274","83.30000305175781","83.30000305175781","","2016-03-24T00:00:00Z","","0" +"NM-13560","2.0999999046325684","2.0999999046325684","","1957-08-26T00:00:00Z","","0" +"NM-07780","101.81999969482422","101.81999969482422","","1968-01-22T00:00:00Z","","0" +"EB-246","343.20001220703125","343.20001220703125","","2000-07-20T00:00:00Z","","0" +"NM-11041","-11.970000267028809","-11.970000267028809","","1910-06-13T00:00:00Z","","0" +"NM-23252","287","287","","1985-06-01T00:00:00Z","","0" +"NM-06271","135.27999877929688","135.27999877929688","","1992-01-28T00:00:00Z","","0" +"NM-00812","69.7699966430664","69.7699966430664","","1956-11-28T00:00:00Z","","0" +"NM-09114","6.769999980926514","6.769999980926514","","1994-04-23T00:00:00Z","","0" +"NM-02207","11.399999618530273","11.399999618530273","","1974-09-15T00:00:00Z","","0" +"NM-03175","343.3500061035156","343.3500061035156","","1995-01-04T00:00:00Z","","0" +"NM-24775","73.29000091552734","73.29000091552734","","1966-02-18T00:00:00Z","","0" +"NM-00294","8.649999618530273","8.649999618530273","","1977-01-28T00:00:00Z","","0" +"NM-13324","72.80000305175781","72.80000305175781","","1961-01-18T00:00:00Z","","0" +"NM-28256","207.38999938964844","207.38999938964844","","2019-05-06T00:00:00Z","","0" +"PC-052","226.0500030517578","229.0500030517578","R","1999-04-22T00:00:00Z","","0" +"NM-14040","-20.639999389648438","-20.639999389648438","","1911-11-17T00:00:00Z","","0" +"NM-03468","154.13999938964844","154.13999938964844","","2000-12-13T00:00:00Z","","0" +"NM-01927","138.7899932861328","138.7899932861328","","1991-01-07T00:00:00Z","","0" +"NM-28258","183.22999572753906","183.22999572753906","","2002-07-05T00:00:00Z","","0" +"NM-12550","36.189998626708984","36.189998626708984","","1986-01-14T00:00:00Z","","0" +"NM-14689","64.0999984741211","64.0999984741211","P","1957-04-27T00:00:00Z","","0" +"NM-08071","9.300000190734863","9.300000190734863","","1965-02-15T00:00:00Z","","0" +"NM-07275","7.420000076293945","7.420000076293945","","1932-07-06T00:00:00Z","","0" +"EB-414","192.58999633789062","192.58999633789062","","2012-08-08T00:00:00Z","","0" +"NM-15997","133.60000610351562","133.60000610351562","","1990-02-01T00:00:00Z","","0" +"NM-05594","180.10000610351562","180.10000610351562","P","1960-09-23T00:00:00Z","","0" +"NM-13145","9.569999694824219","9.569999694824219","","1979-07-23T00:00:00Z","","0" +"NM-20375","63.310001373291016","63.310001373291016","","1943-07-24T00:00:00Z","","0" +"NM-02179","16.549999237060547","16.549999237060547","","1976-10-13T00:00:00Z","","0" +"NM-27457","7.800000190734863","7.800000190734863","","1978-09-19T00:00:00Z","","0" +"NM-02435","62.900001525878906","62.900001525878906","","2001-01-26T00:00:00Z","","0" +"NM-13007","243.3000030517578","243.3000030517578","","1941-03-03T00:00:00Z","","0" +"NM-05101","32.2400016784668","32.2400016784668","","1969-02-05T00:00:00Z","","0" +"NM-06374","161.10000610351562","161.10000610351562","P","1973-02-01T00:00:00Z","","0" +"NM-28257","16.549999237060547","16.549999237060547","","2014-04-25T00:00:00Z","","0" +"NM-01291","90.73999786376953","90.73999786376953","","1971-01-12T00:00:00Z","","0" +"NM-28023","486.1199951171875","486.1199951171875","S","2015-04-27T00:00:00Z","","0" +"NM-01804","328.989990234375","328.989990234375","","2013-01-15T00:00:00Z","","0" +"DE-0177","47.560001373291016","47.560001373291016","","2016-04-12T00:00:00Z","","0" +"NM-28254","12.949999809265137","12.949999809265137","","1951-02-05T00:00:00Z","","0" +"NM-02072","78.66000366210938","78.66000366210938","","1973-01-25T00:00:00Z","","0" +"NM-13453","16.770000457763672","16.770000457763672","","1959-01-08T00:00:00Z","","0" +"DE-0243","99.94000244140625","99.94000244140625","","2008-02-19T00:00:00Z","","0" +"NM-05834","28.280000686645508","28.280000686645508","","1934-04-29T00:00:00Z","","0" +"NM-28251","90.83999633789062","90.83999633789062","","1974-04-15T00:00:00Z","","0" +"NM-24399","60","60","","1992-09-18T00:00:00Z","","0" +"NM-02197","37.58000183105469","37.58000183105469","","2014-05-19T00:00:00Z","","0" +"DE-0249","40.689998626708984","40.689998626708984","","2015-03-31T00:00:00Z","","0" +"NM-05199","128.69000244140625","128.69000244140625","","1965-01-08T00:00:00Z","","0" +"NM-28019","482.0299987792969","482.0299987792969","S","2015-04-25T00:00:00Z","","0" +"NM-04178","77.05999755859375","77.05999755859375","P","1957-12-27T00:00:00Z","","0" +"NM-02814","411.75","411.75","","1967-01-15T00:00:00Z","","0" +"NM-24353","84.33999633789062","84.33999633789062","","1975-04-17T00:00:00Z","","0" +"NM-20166","189.27999877929688","189.27999877929688","","1966-04-07T00:00:00Z","","0" +"NM-28259","164","164","","2020-09-25T00:00:00Z","","0" +"NM-18656","27.3700008392334","27.3700008392334","","1972-02-11T00:00:00Z","","0" +"UC-0058","67.45999908447266","67.45999908447266","","1986-02-06T00:00:00Z","","0" +"NM-00971","232.60000610351562","232.60000610351562","P","2014-04-02T00:00:00Z","","0" +"SM-0125","39.09000015258789","39.09000015258789","","1984-01-20T00:00:00Z","","0" +"HS-077","98.5199966430664","97.13999938964844","","2013-03-22T00:00:00Z","","1.3799999952316284" +"NM-01971","5.699999809265137","5.699999809265137","","1996-08-15T00:00:00Z","","0" +"NM-12808","102.01000213623047","102.01000213623047","","1954-07-01T00:00:00Z","","0" +"NM-22776","249.1999969482422","249.1999969482422","Z","1999-01-25T00:00:00Z","","0" +"NM-01573","31.649999618530273","31.649999618530273","","1973-04-26T00:00:00Z","","0" +"NM-22175","82.33999633789062","82.33999633789062","","1993-02-25T00:00:00Z","","0" +"NM-13122","10.079999923706055","10.079999923706055","","1959-03-17T00:00:00Z","","0" +"NM-00999","379.6000061035156","379.6000061035156","","1977-01-04T00:00:00Z","","0" +"NM-12286","-13.710000038146973","-13.710000038146973","","1910-05-30T00:00:00Z","","0" +"NM-11908","28.68000030517578","28.68000030517578","","1946-01-24T00:00:00Z","","0" +"NM-28258","156.9199981689453","156.9199981689453","","2006-10-05T00:00:00Z","","0" +"WL-0089","47.70833206176758","45.15833282470703","","1996-12-18T00:00:00Z","","2.549999952316284" +"SB-0621","309.5899963378906","309.5899963378906","","1961-01-03T00:00:00Z","","0" +"NM-09341","24.389999389648438","24.389999389648438","","1943-01-21T00:00:00Z","","0" +"NM-05787","20.030000686645508","20.030000686645508","","1959-01-12T00:00:00Z","","0" +"SB-0299","124.94999694824219","124.94999694824219","","1993-06-10T00:00:00Z","","0" +"NM-11994","39.45000076293945","39.45000076293945","","1941-06-09T00:00:00Z","","0" +"NM-27446","28.299999237060547","28.299999237060547","","1957-01-24T00:00:00Z","","0" +"NM-02197","37.619998931884766","37.619998931884766","","2014-06-06T00:00:00Z","","0" +"NM-28259","104.6500015258789","104.6500015258789","","2006-11-15T00:00:00Z","","0" +"NM-05632","24.190000534057617","24.190000534057617","","1950-07-19T00:00:00Z","","0" +"WL-0090","33.79166793823242","31.411666870117188","","1995-04-18T00:00:00Z","","2.380000114440918" +"NM-28254","130.85000610351562","130.85000610351562","","1989-07-25T00:00:00Z","","0" +"NM-19125","102.04000091552734","102.04000091552734","","1990-04-26T00:00:00Z","","0" +"NM-05285","66.88999938964844","66.88999938964844","","1974-01-03T00:00:00Z","","0" +"NM-13879","-19.479999542236328","-19.479999542236328","","1910-10-18T00:00:00Z","","0" +"NM-28255","59.65999984741211","59.65999984741211","","1975-03-15T00:00:00Z","","0" +"NM-13297","-29.8799991607666","-29.8799991607666","","1907-12-07T00:00:00Z","","0" +"NM-14064","32.88999938964844","32.88999938964844","","1943-01-04T00:00:00Z","","0" +"NM-07393","154.88999938964844","154.88999938964844","","1961-04-13T00:00:00Z","","0" +"NM-02352","6.800000190734863","6.800000190734863","","1982-08-15T00:00:00Z","","0" +"NM-11649","26.25","26.25","","1962-01-17T00:00:00Z","","0" +"NM-28257","58.33000183105469","58.33000183105469","","1995-08-05T00:00:00Z","","0" +"NM-02001","103.02999877929688","103.02999877929688","","1972-02-01T00:00:00Z","","0" +"NM-17715","10.670000076293945","10.670000076293945","","1940-03-26T00:00:00Z","","0" +"NM-11010","63.33000183105469","63.33000183105469","","1966-02-24T00:00:00Z","","0" +"NM-03334","11.84000015258789","11.84000015258789","","2005-09-08T00:00:00Z","","0" +"NM-03186","81.75","81.75","","1952-08-07T00:00:00Z","","0" +"NM-13916","-11.970000267028809","-11.970000267028809","","1907-09-14T00:00:00Z","","0" +"NM-02164","27.850000381469727","27.850000381469727","","2013-08-05T00:00:00Z","","0" +"NM-26127","490.1600036621094","490.1600036621094","","1989-04-20T00:00:00Z","","0" +"BC-0215","214.19000244140625","214.19000244140625","","2017-10-03T00:00:00Z","","0" +"NM-00213","158.92999267578125","158.92999267578125","","2001-04-25T00:00:00Z","","0" +"NM-02620","12.899999618530273","12.899999618530273","","1966-12-15T00:00:00Z","","0" +"NM-03614","186.47000122070312","186.47000122070312","","1980-01-30T00:00:00Z","","0" +"NM-21792","861","861","","1954-01-01T00:00:00Z","","0" +"NM-13218","10.470000267028809","10.470000267028809","","1959-11-16T00:00:00Z","","0" +"NM-07500","17.270000457763672","17.270000457763672","","1975-10-31T00:00:00Z","","0" +"DE-0112","37.20000076293945","37.20000076293945","","2007-01-08T00:00:00Z","","0" +"NM-09178","25","25","","1939-09-19T00:00:00Z","","0" +"NM-14535","89.05999755859375","89.05999755859375","","1983-11-23T00:00:00Z","","0" +"NM-24610","158.33999633789062","158.33999633789062","","1974-07-02T00:00:00Z","","0" +"NM-22477","65","65","","1970-10-01T00:00:00Z","","0" +"NM-13580","-77.2300033569336","-77.2300033569336","","1911-11-30T00:00:00Z","","0" +"SB-0149","68.30000305175781","68.30000305175781","","1972-04-21T00:00:00Z","","0" +"NM-10221","74.05999755859375","74.05999755859375","","1981-03-26T00:00:00Z","","0" +"NM-28255","62.47999954223633","62.47999954223633","","1977-10-15T00:00:00Z","","0" +"NM-07488","157.1699981689453","157.1699981689453","","1977-01-27T00:00:00Z","","0" +"DE-0090","91.51000213623047","91.51000213623047","","2000-08-24T00:00:00Z","","0" +"TB-0138","114.0199966430664","114.0199966430664","","2011-02-14T00:00:00Z","","0" +"NM-02518","7.099999904632568","7.099999904632568","","1967-10-15T00:00:00Z","","0" +"NM-02281","20.219999313354492","20.219999313354492","","2001-10-02T00:00:00Z","","0" +"NM-13527","132.64999389648438","132.64999389648438","","1954-11-11T00:00:00Z","","0" +"NM-00413","73.62000274658203","73.62000274658203","","1998-01-06T00:00:00Z","","0" +"NM-28256","133.7899932861328","133.7899932861328","","2000-03-15T00:00:00Z","","0" +"NM-28259","116.27999877929688","116.27999877929688","","1960-04-15T00:00:00Z","","0" +"NM-14771","136.8000030517578","136.8000030517578","","1980-01-18T00:00:00Z","","0" +"NM-03371","134.88999938964844","134.88999938964844","","1953-03-06T00:00:00Z","","0" +"NM-28258","148","148","","1987-09-25T00:00:00Z","","0" +"NM-22010","8.619999885559082","8.619999885559082","","1994-12-28T00:00:00Z","","0" +"NM-02251","64.4000015258789","64.4000015258789","","1945-01-05T00:00:00Z","","0" +"NM-07055","96.12000274658203","96.12000274658203","","1982-02-03T00:00:00Z","","0" +"NM-28252","45.84000015258789","45.84000015258789","","2007-09-14T00:00:00Z","","0" +"NM-04895","96.4000015258789","96.4000015258789","","1967-01-24T00:00:00Z","","0" +"NM-02716","14.079999923706055","14.079999923706055","","1963-11-18T00:00:00Z","","0" +"NM-02152","7.599999904632568","7.599999904632568","","1990-07-15T00:00:00Z","","0" +"NM-28024","479.260009765625","479.260009765625","S","2015-04-15T00:00:00Z","","0" +"NM-15850","257.94000244140625","257.94000244140625","","2015-01-29T00:00:00Z","","0" +"NM-24271","65.19999694824219","65.19999694824219","","1981-05-20T00:00:00Z","","0" +"NM-02256","4.400000095367432","4.400000095367432","","2000-03-15T00:00:00Z","","0" +"NM-15120","147.8300018310547","147.8300018310547","","1995-01-17T00:00:00Z","","0" +"NM-15597","8.34000015258789","8.34000015258789","","1984-02-15T00:00:00Z","","0" +"NM-00698","87.16999816894531","87.16999816894531","","2010-10-05T00:00:00Z","","0" +"NM-07165","81.30000305175781","81.30000305175781","","1981-02-26T00:00:00Z","","0" +"EB-486","528.1500244140625","528.1500244140625","Z","2006-06-30T00:00:00Z","","0" +"NM-07308","4","4","","1962-11-26T00:00:00Z","","0" +"NM-14172","98.16999816894531","98.16999816894531","","1984-02-03T00:00:00Z","","0" +"NM-17104","27.3799991607666","27.3799991607666","","1945-01-22T00:00:00Z","","0" +"NM-02752","76.2300033569336","76.2300033569336","","1979-01-03T00:00:00Z","","0" +"NM-03468","153.50999450683594","153.50999450683594","Z","1999-05-28T00:00:00Z","","0" +"DE-0263","88.26000213623047","88.26000213623047","","2019-09-16T00:00:00Z","","0" +"SB-0265","163.16000366210938","163.16000366210938","","1979-01-13T00:00:00Z","","0" +"NM-01201","29.770000457763672","29.770000457763672","","1981-01-22T00:00:00Z","","0" +"NM-05718","95.4800033569336","95.4800033569336","S","1949-07-20T00:00:00Z","","0" +"NM-02669","59.099998474121094","59.099998474121094","","1979-03-01T00:00:00Z","","0" +"NM-05610","152.39999389648438","152.39999389648438","P","1953-09-15T00:00:00Z","","0" +"SV-0128","253.60000610351562","251.1800079345703","","2018-02-11T00:00:00Z","","2.4200000762939453" +"NM-13039","40.90999984741211","40.90999984741211","","1970-01-07T00:00:00Z","","0" +"NM-02285","8.25","8.25","","2013-07-09T00:00:00Z","","0" +"NM-02038","99.61000061035156","99.61000061035156","","1998-01-13T00:00:00Z","","0" +"NM-12968","11.479999542236328","11.479999542236328","","1960-09-20T00:00:00Z","","0" +"NM-18168","42.25","42.25","","1991-01-09T00:00:00Z","","0" +"NM-28259","198.99000549316406","198.99000549316406","","1964-08-05T00:00:00Z","","0" +"NM-13014","231.47000122070312","231.47000122070312","","1941-07-11T00:00:00Z","","0" +"NM-06370","155.2899932861328","155.2899932861328","","1960-08-16T00:00:00Z","","0" +"NM-01752","67.5999984741211","67.5999984741211","","1993-01-15T00:00:00Z","","0" +"BC-0184","380.3699951171875","380.3699951171875","","2014-12-04T00:00:00Z","","0" +"NM-03094","82.29000091552734","82.29000091552734","","1960-11-16T00:00:00Z","","0" +"NM-27327","12.399999618530273","12.399999618530273","R","1962-11-15T00:00:00Z","","0" +"NM-28254","62.970001220703125","62.970001220703125","","1984-10-05T00:00:00Z","","0" +"NM-13437","77.20999908447266","77.20999908447266","","1976-05-27T00:00:00Z","","0" +"NM-05499","146.3000030517578","146.3000030517578","","1976-02-03T00:00:00Z","","0" +"NM-19893","58.959999084472656","58.959999084472656","","1961-03-16T00:00:00Z","","0" +"NM-00384","59.349998474121094","59.349998474121094","","1985-08-26T00:00:00Z","","0" +"EB-610","279.0199890136719","279.0199890136719","","2009-02-05T00:00:00Z","","0" +"NM-02772","29.15999984741211","29.15999984741211","","1967-02-01T00:00:00Z","","0" +"NM-00733","","","D","2007-08-27T00:00:00Z","","0" +"NM-05744","66.86000061035156","66.86000061035156","","1956-01-09T00:00:00Z","","0" +"NM-12180","53.720001220703125","53.720001220703125","","1941-01-25T00:00:00Z","","0" +"NM-05722","113.55000305175781","113.55000305175781","","1954-03-08T00:00:00Z","","0" +"NM-08745","182.85000610351562","182.85000610351562","","1974-01-14T00:00:00Z","","0" +"NM-00029","42.939998626708984","42.939998626708984","","1967-01-24T00:00:00Z","","0" +"NM-13823","24.670000076293945","24.670000076293945","","1940-11-13T00:00:00Z","","0" +"NM-05813","123.73999786376953","123.73999786376953","","1976-01-21T00:00:00Z","","0" +"NM-03651","35.619998931884766","35.619998931884766","","2010-12-21T00:00:00Z","","0" +"NM-01949","42.5","42.5","","1968-01-19T00:00:00Z","","0" +"NM-11785","36.560001373291016","36.560001373291016","","1940-05-16T00:00:00Z","","0" +"TV-207","50.790000915527344","47.69000244140625","R","2011-06-02T00:00:00Z","","3.0999999046325684" +"NM-11473","15.460000038146973","15.460000038146973","","1959-04-09T00:00:00Z","","0" +"NM-13578","28.040000915527344","28.040000915527344","","1952-01-29T00:00:00Z","","0" +"NM-08412","57.150001525878906","57.150001525878906","","1961-01-07T00:00:00Z","","0" +"SV-0096","125.80000305175781","124.62999725341797","","2019-01-20T00:00:00Z","","1.1699999570846558" +"NM-02547","63.380001068115234","63.380001068115234","","1963-01-21T00:00:00Z","","0" +"NM-11638","-44.88999938964844","-44.88999938964844","","1908-12-23T00:00:00Z","","0" +"NM-22694","4.849999904632568","4.849999904632568","Z","2010-02-01T00:00:00Z","","0" +"NM-02702","14.859999656677246","14.859999656677246","","1990-01-19T00:00:00Z","","0" +"NM-02813","182.19000244140625","182.19000244140625","","1959-09-15T00:00:00Z","","0" +"NM-13106","7.980000019073486","7.980000019073486","","1969-04-21T00:00:00Z","","0" +"DE-0254","84.81999969482422","84.81999969482422","","2016-12-13T00:00:00Z","","0" +"NM-20343","58.349998474121094","58.349998474121094","","1961-06-05T00:00:00Z","","0" +"NM-02169","8","8","","2002-10-01T00:00:00Z","","0" +"BC-0162","214.97999572753906","214.97999572753906","","2017-10-04T00:00:00Z","","0" +"NM-03412","170.19000244140625","170.19000244140625","","1977-01-19T00:00:00Z","","0" +"NM-02702","-26.209999084472656","-26.209999084472656","Z","1998-02-17T00:00:00Z","","0" +"NM-12603","23.360000610351562","23.360000610351562","","1981-03-06T00:00:00Z","","0" +"NM-00677","59.95000076293945","59.95000076293945","","1985-09-11T00:00:00Z","","0" +"NM-00812","37.779998779296875","37.779998779296875","","2003-08-20T00:00:00Z","","0" +"NM-02831","54.209999084472656","54.209999084472656","","1983-03-04T00:00:00Z","","0" +"EB-482","422.1499938964844","422.1499938964844","Z","2002-06-30T00:00:00Z","","0" +"NM-07330","127.38999938964844","127.38999938964844","","1955-06-17T00:00:00Z","","0" +"NM-09468","134.1999969482422","134.1999969482422","","1970-01-05T00:00:00Z","","0" +"NM-05736","73.16000366210938","73.16000366210938","","1963-01-03T00:00:00Z","","0" +"EB-478","40","40","","1988-01-31T00:00:00Z","","0" +"NM-00500","63.18000030517578","63.18000030517578","","1963-02-20T00:00:00Z","","0" +"BC-0427","","306.1000061035156","","2020-11-07T00:00:00Z","","2" +"NM-04193","10.399999618530273","10.399999618530273","","1953-02-13T00:00:00Z","","0" +"DE-0323","32","32","","2014-11-04T00:00:00Z","","0" +"NM-07028","169.02999877929688","169.02999877929688","","1982-02-17T00:00:00Z","","0" +"NM-26187","118.05000305175781","118.05000305175781","","1989-06-16T00:00:00Z","","0" +"NM-28256","72.29000091552734","72.29000091552734","","1996-02-15T00:00:00Z","","0" +"NM-17716","6.03000020980835","6.03000020980835","","1950-06-25T00:00:00Z","","0" +"NM-08644","58.290000915527344","58.290000915527344","","1938-07-18T00:00:00Z","","0" +"NM-13878","-22.950000762939453","-22.950000762939453","","1911-01-24T00:00:00Z","","0" +"NM-01894","71.5199966430664","71.5199966430664","","2005-08-18T00:00:00Z","","0" +"NM-11928","0.12999999523162842","0.12999999523162842","","1955-08-01T00:00:00Z","","0" +"NM-13740","-5.329999923706055","-5.329999923706055","","1907-09-19T00:00:00Z","","0" +"NM-01931","330.9700012207031","330.9700012207031","","1964-01-03T00:00:00Z","","0" +"NM-21241","2.299999952316284","2.299999952316284","Z","2005-07-11T00:00:00Z","","0" +"SB-0174","141.75999450683594","141.75999450683594","","1969-01-04T00:00:00Z","","0" +"NM-28253","13.039999961853027","13.039999961853027","","2016-01-15T00:00:00Z","","0" +"NM-12577","42.279998779296875","42.279998779296875","","1961-02-14T00:00:00Z","","0" +"NM-19920","370.7200012207031","370.7200012207031","","1969-02-04T00:00:00Z","","0" +"NM-17716","1.399999976158142","1.399999976158142","","1944-06-13T00:00:00Z","","0" +"NM-03432","49","49","","1946-11-07T00:00:00Z","","0" +"NM-00047","77.02999877929688","77.02999877929688","","1986-08-22T00:00:00Z","","0" +"NM-18112","66.62000274658203","66.62000274658203","","1982-04-21T00:00:00Z","","0" +"NM-16865","40.13999938964844","40.13999938964844","","1969-01-08T00:00:00Z","","0" +"NM-16038","76.41000366210938","76.41000366210938","","1964-02-26T00:00:00Z","","0" +"NM-17716","5.289999961853027","5.289999961853027","","1950-03-13T00:00:00Z","","0" +"BC-0122","225.07000732421875","225.07000732421875","","2014-03-12T00:00:00Z","","0" +"NM-11945","17","17","","1956-08-27T00:00:00Z","","0" +"NM-17716","3.4200000762939453","3.4200000762939453","","1945-08-02T00:00:00Z","","0" +"SA-0027","324.75","323.5","R","2009-11-17T00:00:00Z","","1.25" +"NM-28256","80.88999938964844","80.88999938964844","","2016-01-26T00:00:00Z","","0" +"NM-28252","43.84000015258789","43.84000015258789","","1961-04-15T00:00:00Z","","0" +"WL-0040","50.400001525878906","48.96000289916992","","2021-11-16T00:00:00Z","0001-01-01T15:25:00Z","1.440000057220459" +"NM-11993","83.80000305175781","83.80000305175781","","1986-01-30T00:00:00Z","","0" +"NM-00495","72.94999694824219","72.94999694824219","","1969-11-13T00:00:00Z","","0" +"NM-03419","22.959999084472656","22.959999084472656","T","1983-04-25T00:00:00Z","","0" +"NM-03334","11.489999771118164","11.489999771118164","","1994-06-14T00:00:00Z","","0" +"NM-28253","11.84000015258789","11.84000015258789","","1998-10-15T00:00:00Z","","0" +"NM-00958","26.549999237060547","26.549999237060547","","2016-02-08T00:00:00Z","","0" +"NM-11282","50.4900016784668","50.4900016784668","","1953-01-17T00:00:00Z","","0" +"NM-13727","-26.40999984741211","-26.40999984741211","","1907-03-12T00:00:00Z","","0" +"EB-150","377","375.1499938964844","D","2004-08-09T00:00:00Z","","1.850000023841858" +"NM-21813","568","568","S","1987-07-29T00:00:00Z","","0" +"NM-13235","3.8399999141693115","3.8399999141693115","","1959-06-03T00:00:00Z","","0" +"NM-08524","17.799999237060547","17.799999237060547","","1955-08-15T00:00:00Z","","0" +"NM-28254","47.470001220703125","47.470001220703125","","1949-09-15T00:00:00Z","","0" +"NM-10140","10.920000076293945","10.920000076293945","","1938-01-19T00:00:00Z","","0" +"NM-13594","23.84000015258789","23.84000015258789","","1983-03-04T00:00:00Z","","0" +"EB-244","94.69999694824219","94.69999694824219","","2002-12-05T00:00:00Z","","" +"NM-05354","128.14999389648438","128.14999389648438","","1967-01-24T00:00:00Z","","0" +"NM-28259","113.05000305175781","113.05000305175781","","1992-04-15T00:00:00Z","","0" +"NM-12158","-39.119998931884766","-39.119998931884766","","1911-09-29T00:00:00Z","","0" +"NM-10730","33.150001525878906","33.150001525878906","","1959-01-20T00:00:00Z","","0" +"NM-02560","118.47000122070312","118.47000122070312","","1978-01-01T00:00:00Z","","0" +"NM-04632","8.699999809265137","8.699999809265137","","1987-04-15T00:00:00Z","","0" +"NM-11969","47.90999984741211","47.90999984741211","","1955-01-10T00:00:00Z","","0" +"NM-08729","48.849998474121094","48.849998474121094","","1986-01-14T00:00:00Z","","0" +"NM-07773","50.5","50.5","","1960-05-20T00:00:00Z","","0" +"NM-28253","17.040000915527344","17.040000915527344","","2017-03-06T00:00:00Z","","0" +"NM-11323","5.019999980926514","5.019999980926514","","1977-06-13T00:00:00Z","","0" +"EB-269","240.6300048828125","240.6300048828125","","2004-06-22T00:00:00Z","","0" +"NM-10600","46.119998931884766","46.119998931884766","","1956-05-09T00:00:00Z","","0" +"NM-20061","42.209999084472656","42.209999084472656","","1948-11-23T00:00:00Z","","0" +"NM-28252","30.600000381469727","30.600000381469727","","1997-03-05T00:00:00Z","","0" +"NM-02911","101.79000091552734","101.79000091552734","","2011-11-01T00:00:00Z","","0" +"NM-17716","4.940000057220459","4.940000057220459","","1949-08-26T00:00:00Z","","0" +"NM-15916","138.00999450683594","138.00999450683594","","1964-02-19T00:00:00Z","","0" +"NM-27528","38.209999084472656","38.209999084472656","","1966-03-17T00:00:00Z","","0" +"NM-03019","115.37000274658203","115.37000274658203","","1995-01-04T00:00:00Z","","0" +"NM-04537","90.5999984741211","90.5999984741211","","1955-05-19T00:00:00Z","","0" +"NM-22351","195.7100067138672","195.7100067138672","","1953-07-22T00:00:00Z","","0" +"NM-13899","7.429999828338623","7.429999828338623","","1958-04-21T00:00:00Z","","0" +"NM-20180","6.320000171661377","6.320000171661377","","1975-01-24T00:00:00Z","","0" +"NM-28255","139.7100067138672","139.7100067138672","","1975-05-25T00:00:00Z","","0" +"NM-10658","-26.40999984741211","-26.40999984741211","","1909-03-17T00:00:00Z","","0" +"NM-10709","54.40999984741211","54.40999984741211","","1961-02-16T00:00:00Z","","0" +"NM-03019","110.62000274658203","110.62000274658203","","1984-01-18T00:00:00Z","","0" +"BC-0095","36.119998931884766","36.119998931884766","","2017-06-15T00:00:00Z","","0" +"NM-08821","-24.100000381469727","-24.100000381469727","","1909-02-26T00:00:00Z","","0" +"NM-01886","46.75","46.75","","1991-02-08T00:00:00Z","","0" +"NM-23229","6.179999828338623","6.179999828338623","","1991-01-08T00:00:00Z","","0" +"NM-13007","228.9499969482422","228.9499969482422","","1943-02-09T00:00:00Z","","0" +"NM-23239","212.1999969482422","212.1999969482422","Z","1996-01-02T00:00:00Z","","0" +"TO-0076","132.6999969482422","132.6999969482422","","1951-07-27T00:00:00Z","","0" +"NM-03951","49.31999969482422","49.31999969482422","","1960-02-15T00:00:00Z","","0" +"NM-25463","110.13999938964844","110.13999938964844","","1969-06-11T00:00:00Z","","0" +"NM-10593","15.609999656677246","15.609999656677246","","1943-01-22T00:00:00Z","","0" +"EB-209","81.52999877929688","80.27999877929688","","1991-02-26T00:00:00Z","","1.25" +"NM-01700","37.70000076293945","37.70000076293945","","1991-01-23T00:00:00Z","","0" +"EB-161","416","414.75","","1984-02-29T00:00:00Z","","1.25" +"NM-16601","14.210000038146973","14.210000038146973","","1936-11-23T00:00:00Z","","0" +"NM-06503","162.02000427246094","162.02000427246094","","1990-09-18T00:00:00Z","","0" +"AB-0207","227.97000122070312","227.97000122070312","Z","1997-01-08T00:00:00Z","","" +"NM-04470","40.540000915527344","40.540000915527344","","1947-03-21T00:00:00Z","","0" +"NM-11776","43.779998779296875","43.779998779296875","","1937-06-09T00:00:00Z","","0" +"NM-07593","-17.170000076293945","-17.170000076293945","","1918-08-29T00:00:00Z","","0" +"NM-10662","55.93000030517578","55.93000030517578","","1971-02-12T00:00:00Z","","0" +"NM-02101","4.400000095367432","4.400000095367432","","1977-02-15T00:00:00Z","","0" +"NM-02005","4","4","","1950-06-15T00:00:00Z","","0" +"NM-03687","131.05999755859375","131.05999755859375","","1977-01-27T00:00:00Z","","0" +"NM-05986","110.87999725341797","110.87999725341797","","1992-01-31T00:00:00Z","","0" +"NM-02025","214.75999450683594","214.75999450683594","","1990-02-13T00:00:00Z","","0" +"EB-201","57.560001373291016","57.560001373291016","","1977-01-11T00:00:00Z","","0" +"NM-12905","29.760000228881836","29.760000228881836","","1953-01-27T00:00:00Z","","0" +"NM-10099","189.8000030517578","189.8000030517578","","1979-08-24T00:00:00Z","","0" +"NM-04454","6.03000020980835","6.03000020980835","","1974-09-03T00:00:00Z","","0" +"NM-02772","29.860000610351562","29.860000610351562","","2006-01-23T00:00:00Z","","0" +"NM-07063","75.19000244140625","75.19000244140625","P","1969-01-28T00:00:00Z","","0" +"NM-02010","162.39999389648438","162.39999389648438","","1997-02-05T00:00:00Z","","0" +"EB-012","124.86000061035156","124.86000061035156","","1970-02-16T00:00:00Z","","0" +"NM-20215","68.31999969482422","68.31999969482422","","1986-10-24T00:00:00Z","","0" +"NM-01986","6.5","6.5","","1997-10-15T00:00:00Z","","0" +"NM-02794","40.099998474121094","40.099998474121094","","1938-03-01T00:00:00Z","","0" +"NM-10824","-37.959999084472656","-37.959999084472656","","1909-06-23T00:00:00Z","","0" +"NM-03329","16.760000228881836","16.760000228881836","","1988-08-23T00:00:00Z","","0" +"NM-13914","-6.78000020980835","-6.78000020980835","","1907-09-14T00:00:00Z","","0" +"NM-12318","43.95000076293945","43.95000076293945","","1966-03-27T00:00:00Z","","0" +"NM-10624","72.44000244140625","72.44000244140625","R","1971-03-19T00:00:00Z","","0" +"NM-09855","43.439998626708984","43.439998626708984","","1948-01-16T00:00:00Z","","0" +"NM-13557","24.350000381469727","24.350000381469727","","1960-03-23T00:00:00Z","","0" +"UC-0036","199.25","199.25","","1979-01-23T00:00:00Z","","0" +"TB-0107","122.68000030517578","119.68000030517578","","2010-02-25T00:00:00Z","","3" +"NM-02758","314.7300109863281","314.7300109863281","","1976-03-17T00:00:00Z","","0" +"EB-482","255","255","Z","2008-01-31T00:00:00Z","","0" +"NM-09393","-37.959999084472656","-37.959999084472656","","1906-07-16T00:00:00Z","","0" +"NM-00023","110.13999938964844","110.13999938964844","R","2000-01-10T00:00:00Z","","0" +"NM-03004","85.30000305175781","85.30000305175781","","1979-01-06T00:00:00Z","","0" +"NM-28256","81.88999938964844","81.88999938964844","","1992-11-25T00:00:00Z","","0" +"NM-09812","-88.77999877929688","-88.77999877929688","","1914-12-15T00:00:00Z","","0" +"NM-04893","75.86000061035156","75.86000061035156","","1972-01-14T00:00:00Z","","0" +"NM-24829","208","208","","1958-07-24T00:00:00Z","","0" +"NM-11383","47.18000030517578","47.18000030517578","","1946-05-16T00:00:00Z","","0" +"NM-01947","3.299999952316284","3.299999952316284","","1948-07-15T00:00:00Z","","0" +"NM-28250","107.16999816894531","107.16999816894531","","1972-07-15T00:00:00Z","","0" +"UC-0033","81.37999725341797","81.37999725341797","","1968-05-08T00:00:00Z","","0" +"NM-01126","149.77999877929688","149.77999877929688","","2007-05-22T00:00:00Z","","0" +"NM-00643","108.12999725341797","108.12999725341797","","1974-07-01T00:00:00Z","","0" +"NM-01842","334.4700012207031","334.4700012207031","","1974-06-13T00:00:00Z","","0" +"NM-00498","57.790000915527344","57.790000915527344","","1994-01-06T00:00:00Z","","0" +"NM-17253","27.959999084472656","27.959999084472656","","1937-03-20T00:00:00Z","","0" +"NM-14361","42.86000061035156","42.86000061035156","","1948-03-09T00:00:00Z","","0" +"EB-245","229.1999969482422","229.1999969482422","","2011-08-29T00:00:00Z","","0" +"NM-03269","301.0199890136719","301.0199890136719","","1972-01-31T00:00:00Z","","0" +"NM-00643","100.4800033569336","100.4800033569336","Z","1998-04-20T00:00:00Z","","0" +"NM-01889","24.6200008392334","24.6200008392334","","1997-02-26T00:00:00Z","","0" +"NM-00262","38.86000061035156","38.86000061035156","","1952-01-11T00:00:00Z","","0" +"NM-12350","40.369998931884766","40.369998931884766","","1945-01-19T00:00:00Z","","0" +"NM-06676","13.899999618530273","13.899999618530273","","1954-04-15T00:00:00Z","","0" +"NM-23682","2.309999942779541","2.309999942779541","T","1984-06-14T00:00:00Z","","0" +"NM-11552","123.37000274658203","123.37000274658203","","1975-01-21T00:00:00Z","","0" +"NM-14704","32","32","","1967-07-14T00:00:00Z","","0" +"NM-01340","-4.25","-4.25","E","1986-01-16T00:00:00Z","","0" +"EB-019","45.41999816894531","44.41999816894531","","2017-04-05T00:00:00Z","0001-01-01T15:47:00Z","1" +"NM-19221","329.5400085449219","329.5400085449219","","1985-01-13T00:00:00Z","","0" +"NM-00788","208.49000549316406","208.49000549316406","","2010-03-01T00:00:00Z","","0" +"NM-22642","295.94000244140625","295.94000244140625","","2012-01-18T00:00:00Z","","0" +"EB-204","67.11000061035156","70.80999755859375","","1991-07-01T00:00:00Z","","-3.700000047683716" +"NM-02842","40.18000030517578","40.18000030517578","P","1963-10-01T00:00:00Z","","0" +"AB-0210","175.0800018310547","175.0800018310547","","2004-02-11T00:00:00Z","","" +"BC-0102","323.7900085449219","323.7900085449219","","2011-05-09T00:00:00Z","","0" +"DE-0244","100.54000091552734","100.54000091552734","","1998-10-21T00:00:00Z","","0" +"WL-0086","71.125","69.36499786376953","","2000-08-31T00:00:00Z","","1.7599999904632568" +"NM-03329","19.25","19.25","","1989-07-31T00:00:00Z","","0" +"NM-14535","92.05000305175781","92.05000305175781","","1978-05-15T00:00:00Z","","0" +"NM-17549","99.4000015258789","99.4000015258789","","1972-03-16T00:00:00Z","","0" +"NM-05972","34.72999954223633","34.72999954223633","","1960-11-14T00:00:00Z","","0" +"NM-02586","265.4800109863281","265.4800109863281","","1959-01-14T00:00:00Z","","0" +"NM-20498","71.0999984741211","71.0999984741211","","1960-02-12T00:00:00Z","","0" +"NM-03238","81.0199966430664","81.0199966430664","","1988-01-28T00:00:00Z","","0" +"NM-04231","27.440000534057617","27.440000534057617","","1933-12-01T00:00:00Z","","0" +"NM-28236","","","D","2011-08-31T00:00:00Z","","0" +"NM-13917","-11.399999618530273","-11.399999618530273","","1908-12-03T00:00:00Z","","0" +"NM-03372","97.19999694824219","97.19999694824219","","1955-11-04T00:00:00Z","","0" +"DE-0086","90.04000091552734","90.04000091552734","","2000-02-14T00:00:00Z","","0" +"NM-13162","8.470000267028809","8.470000267028809","R","1939-03-31T00:00:00Z","","0" +"NM-02284","22.040000915527344","22.040000915527344","","2014-12-08T00:00:00Z","","0" +"NM-14363","140.57000732421875","140.57000732421875","","1986-01-28T00:00:00Z","","0" +"NM-15285","84.51000213623047","84.51000213623047","","1989-12-13T00:00:00Z","","0" +"BC-0103","129.1300048828125","129.1300048828125","","2019-04-25T00:00:00Z","","0" +"CP-0037","313.6199951171875","313.6199951171875","","2021-10-28T00:00:00Z","0001-01-01T09:30:00Z","0" +"NM-03349","31.1299991607666","31.1299991607666","Z","1990-12-04T00:00:00Z","","0" +"NM-07573","74.01000213623047","74.01000213623047","","1969-12-18T00:00:00Z","","0" +"NM-07597","40.43000030517578","40.43000030517578","","1966-03-03T00:00:00Z","","0" +"NM-03399","10.239999771118164","10.239999771118164","","1991-10-04T00:00:00Z","","0" +"NM-03337","12.279999732971191","12.279999732971191","","2010-08-31T00:00:00Z","","0" +"TV-174","16.959999084472656","15.899999618530273","","2005-02-01T00:00:00Z","","1.059999942779541" +"NM-02260","37.36000061035156","37.36000061035156","","1958-11-13T00:00:00Z","","0" +"UC-0033","94.58999633789062","94.58999633789062","Z","1990-01-11T00:00:00Z","","0" +"BC-0133","338.3900146484375","338.3900146484375","","2017-10-09T00:00:00Z","","0" +"NM-10645","-88.77999877929688","-88.77999877929688","","1912-01-13T00:00:00Z","","0" +"EB-479","278.05999755859375","278.05999755859375","Z","2008-06-30T00:00:00Z","","0" +"NM-12662","110.62000274658203","110.62000274658203","","1994-01-26T00:00:00Z","","0" +"NM-02679","16.540000915527344","16.540000915527344","","1952-01-15T00:00:00Z","","0" +"NM-14414","80.27999877929688","80.27999877929688","","1969-01-10T00:00:00Z","","0" +"EB-363","150.3000030517578","144.8000030517578","","2010-07-15T00:00:00Z","","5.5" +"NM-14096","-56.439998626708984","-56.439998626708984","","1905-10-17T00:00:00Z","","0" +"NM-00805","43.25","43.25","","1959-11-25T00:00:00Z","","0" +"NM-21298","20.520000457763672","20.520000457763672","","2011-05-11T00:00:00Z","","0" +"NM-03651","32.41999816894531","32.41999816894531","","1999-11-17T00:00:00Z","","0" +"NM-06852","89.47000122070312","89.47000122070312","","2004-07-07T00:00:00Z","","0" +"NM-07815","25.5","25.5","","1940-08-25T00:00:00Z","","0" +"NM-02005","4.099999904632568","4.099999904632568","","1998-06-15T00:00:00Z","","0" +"NM-05093","155.8000030517578","155.8000030517578","P","1972-01-26T00:00:00Z","","0" +"NM-03569","99.36000061035156","99.36000061035156","","2007-02-13T00:00:00Z","","0" +"NM-02981","50.880001068115234","50.880001068115234","","1997-01-22T00:00:00Z","","0" +"NM-08403","71","71","","1955-05-03T00:00:00Z","","0" +"NM-22776","252.5500030517578","252.5500030517578","","2015-11-19T00:00:00Z","","0" +"NM-28257","54.189998626708984","54.189998626708984","","1959-01-15T00:00:00Z","","0" +"NM-12181","102.86000061035156","102.86000061035156","","1970-01-15T00:00:00Z","","0" +"NM-27390","155.77000427246094","155.77000427246094","P","1954-07-13T00:00:00Z","","0" +"NM-15635","107.94999694824219","107.94999694824219","P","1956-08-27T00:00:00Z","","0" +"NM-10488","65.44000244140625","65.44000244140625","","1981-03-31T00:00:00Z","","0" +"NM-03251","85.2699966430664","85.2699966430664","","1965-11-24T00:00:00Z","","0" +"NM-04836","355.45001220703125","355.45001220703125","","1953-07-06T00:00:00Z","","0" +"NM-09696","60","60","","1953-09-17T00:00:00Z","","0" +"NM-27604","78.1500015258789","78.1500015258789","","1972-03-21T00:00:00Z","","0" +"NM-17527","36.31999969482422","36.31999969482422","","1947-09-14T00:00:00Z","","0" +"NM-26127","476.05999755859375","476.05999755859375","R","1987-10-08T00:00:00Z","","0" +"NM-03759","79.0199966430664","79.0199966430664","","1988-01-26T00:00:00Z","","0" +"NM-03581","54.93000030517578","54.93000030517578","","1982-02-10T00:00:00Z","","0" +"NM-02352","5.800000190734863","5.800000190734863","","2001-07-15T00:00:00Z","","0" +"NM-17578","150.7100067138672","150.7100067138672","","2002-12-06T00:00:00Z","","0" +"SB-0299","127.16999816894531","127.16999816894531","","1986-10-28T00:00:00Z","","0" +"NM-12009","61.380001068115234","61.380001068115234","","1959-01-13T00:00:00Z","","0" +"NM-09190","-56.70000076293945","-56.70000076293945","","1948-01-08T00:00:00Z","","0" +"DE-0307","46.15999984741211","46.15999984741211","","2014-12-09T00:00:00Z","","0" +"UC-0095","138.7899932861328","138.7899932861328","","1986-01-30T00:00:00Z","","0" +"NM-02412","35.66999816894531","35.66999816894531","","1952-07-22T00:00:00Z","","0" +"SO-0227","9.100000381469727","8.49000072479248","","2016-09-22T00:00:00Z","","0.6100000143051147" +"NM-21729","39.09000015258789","39.09000015258789","","1949-11-04T00:00:00Z","","0" +"SB-0299","139.39999389648438","139.39999389648438","","2017-01-10T00:00:00Z","","0" +"NM-09822","-70.30000305175781","-70.30000305175781","","1914-12-15T00:00:00Z","","0" +"NM-11338","43.970001220703125","43.970001220703125","","1966-03-09T00:00:00Z","","0" +"NM-13414","80.55999755859375","80.55999755859375","","1957-07-11T00:00:00Z","","0" +"BC-0011","73.5999984741211","73.5999984741211","","2014-09-02T00:00:00Z","","0" +"NM-07820","-70.30000305175781","-70.30000305175781","","1915-01-19T00:00:00Z","","0" +"NM-04294","25.920000076293945","25.920000076293945","","1960-01-01T00:00:00Z","","0" +"NM-03335","7.739999771118164","7.739999771118164","","1990-06-04T00:00:00Z","","0" +"NM-01204","348.3500061035156","348.3500061035156","Z","1991-08-13T00:00:00Z","","0" +"NM-28257","56.88999938964844","56.88999938964844","","1961-02-05T00:00:00Z","","0" +"NM-17499","31.280000686645508","31.280000686645508","S","1944-09-23T00:00:00Z","","0" +"NM-17716","5.559999942779541","5.559999942779541","","1949-03-02T00:00:00Z","","0" +"NM-03295","21.700000762939453","21.700000762939453","","1962-02-08T00:00:00Z","","0" +"NM-03225","78.68000030517578","78.68000030517578","","1979-12-12T00:00:00Z","","0" +"NM-27486","23.969999313354492","23.969999313354492","","1999-01-12T00:00:00Z","","0" +"NM-21862","252.33999633789062","252.33999633789062","","2012-02-15T00:00:00Z","","0" +"NM-02394","67","67","","1932-05-31T00:00:00Z","","0" +"NM-28256","97.69000244140625","97.69000244140625","","2013-01-15T00:00:00Z","","0" +"EB-485","499.67999267578125","498.67999267578125","P","1997-10-31T00:00:00Z","","1" +"BW-0141","49.650001525878906","49.650001525878906","","1969-01-09T00:00:00Z","","0" +"NM-14192","39.22999954223633","39.22999954223633","","1957-01-22T00:00:00Z","","0" +"NM-04340","13.300000190734863","13.300000190734863","","2003-10-30T00:00:00Z","","0" +"NM-25055","153.1999969482422","153.1999969482422","","1971-03-15T00:00:00Z","","0" +"NM-13332","110.16999816894531","110.16999816894531","","1961-01-17T00:00:00Z","","0" +"NM-00534","69.0999984741211","69.0999984741211","","2011-12-22T00:00:00Z","","0" +"NM-08189","8.199999809265137","8.199999809265137","","1962-06-15T00:00:00Z","","0" +"DE-0131","","","D","2013-07-22T00:00:00Z","","0" +"NM-01895","42.310001373291016","42.310001373291016","","1992-09-16T00:00:00Z","","0" +"NM-21244","","","D","2004-09-28T00:00:00Z","","0" +"NM-17313","50.220001220703125","50.220001220703125","","1952-11-22T00:00:00Z","","0" +"AB-0107","415.54998779296875","415.54998779296875","","1999-03-03T00:00:00Z","","" +"NM-02675","69.0999984741211","69.0999984741211","","1970-01-06T00:00:00Z","","0" +"NM-28256","181.49000549316406","181.49000549316406","","2008-09-25T00:00:00Z","","0" +"NM-02043","8","8","","1956-05-15T00:00:00Z","","0" +"SA-0012","128.41000366210938","127.41000366210938","R","2013-03-01T00:00:00Z","","1" +"NM-13414","40.720001220703125","40.720001220703125","","1955-01-20T00:00:00Z","","0" +"NM-02349","14.5","14.5","","1999-08-15T00:00:00Z","","0" +"NM-28254","19.399999618530273","19.399999618530273","","1955-01-05T00:00:00Z","","0" +"NM-01983","103.1500015258789","103.1500015258789","","1971-01-20T00:00:00Z","","0" +"NM-01320","425.0899963378906","425.0899963378906","","2009-03-13T00:00:00Z","","0" +"NM-01204","350.92999267578125","350.92999267578125","Z","1990-10-17T00:00:00Z","","0" +"NM-01239","32.130001068115234","32.130001068115234","","1958-11-20T00:00:00Z","","0" +"TB-0192","108.27999877929688","104.52999877929688","R","2010-08-26T00:00:00Z","","3.75" +"AR-0148","7.630000114440918","7.130000114440918","","2019-04-02T00:00:00Z","0001-01-01T09:00:00Z","0.5" +"NM-02591","15.300000190734863","15.300000190734863","","1963-12-15T00:00:00Z","","0" +"NM-01550","25.200000762939453","25.200000762939453","","1987-02-05T00:00:00Z","","0" +"NM-13406","105.43000030517578","105.43000030517578","","1989-09-27T00:00:00Z","","0" +"NM-02256","4.400000095367432","4.400000095367432","","1979-08-15T00:00:00Z","","0" +"NM-06921","46.18000030517578","46.18000030517578","","1976-01-21T00:00:00Z","","0" +"AB-0214","156.05999755859375","156.05999755859375","","2004-07-28T00:00:00Z","","" +"NM-11565","81.37999725341797","81.37999725341797","","1953-07-15T00:00:00Z","","0" +"NM-02348","12.199999809265137","12.199999809265137","","1989-11-15T00:00:00Z","","0" +"NM-28255","94.20999908447266","94.20999908447266","","1975-09-25T00:00:00Z","","0" +"NM-28007","5.449999809265137","5.449999809265137","Z","2005-09-07T00:00:00Z","","0" +"NM-28257","-2.880000114440918","-2.880000114440918","","2016-11-23T00:00:00Z","","0" +"NM-13833","-21.790000915527344","-21.790000915527344","","1907-06-14T00:00:00Z","","0" +"NM-00645","31.479999542236328","31.479999542236328","","1955-11-30T00:00:00Z","","0" +"NM-23860","252.5500030517578","252.5500030517578","","1967-04-10T00:00:00Z","","0" +"NM-11518","37.61000061035156","37.61000061035156","","1938-05-15T00:00:00Z","","0" +"NM-11274","52.59000015258789","52.59000015258789","","1954-01-19T00:00:00Z","","0" +"NM-07131","108.41999816894531","108.41999816894531","","1999-01-27T00:00:00Z","","0" +"NM-01888","9.470000267028809","9.470000267028809","","1995-02-21T00:00:00Z","","0" +"EB-284","269","269","","1995-02-01T00:00:00Z","","0" +"NM-17716","0.25999999046325684","0.25999999046325684","","1943-05-04T00:00:00Z","","0" +"SO-0210","29.15999984741211","28.510000228881836","","2021-10-21T00:00:00Z","0001-01-01T13:15:00Z","0.6499999761581421" +"NM-02520","6.800000190734863","6.800000190734863","","1989-02-15T00:00:00Z","","0" +"NM-07664","10.649999618530273","10.649999618530273","","2002-02-12T00:00:00Z","","0" +"NM-21547","4.949999809265137","4.949999809265137","Z","2003-10-16T00:00:00Z","","0" +"NM-10060","2.1500000953674316","2.1500000953674316","","1976-01-15T00:00:00Z","","0" +"NM-03986","206.30999755859375","206.30999755859375","","1949-11-23T00:00:00Z","","0" +"NM-13630","-33.34000015258789","-33.34000015258789","","1911-05-19T00:00:00Z","","0" +"BC-0158","","252.10000610351562","","2023-03-30T00:00:00Z","","1.4299999475479126" +"NM-13077","89.06999969482422","89.06999969482422","","1961-03-06T00:00:00Z","","0" +"NM-04604","86.43000030517578","86.43000030517578","","1966-08-09T00:00:00Z","","0" +"NM-28254","117.5999984741211","117.5999984741211","","1989-04-05T00:00:00Z","","0" +"NM-02781","91.45999908447266","91.45999908447266","Z","1997-08-14T00:00:00Z","","0" +"NM-03614","166.6199951171875","166.6199951171875","","1976-01-27T00:00:00Z","","0" +"NM-03388","11.880000114440918","11.880000114440918","","1958-07-10T00:00:00Z","","0" +"NM-07382","83.58000183105469","83.58000183105469","","1954-10-18T00:00:00Z","","0" +"NM-01949","42.790000915527344","42.790000915527344","","1970-01-14T00:00:00Z","","0" +"NM-12905","43.36000061035156","43.36000061035156","S","1963-09-04T00:00:00Z","","0" +"BC-0217","76.44999694824219","76.44999694824219","","2019-07-21T00:00:00Z","","0" +"NM-05563","61.66999816894531","61.66999816894531","","1931-11-15T00:00:00Z","","0" +"NM-25681","128.5","128.5","","1980-01-29T00:00:00Z","","0" +"NM-10063","8.319999694824219","8.319999694824219","","1972-12-18T00:00:00Z","","0" +"NM-01066","118.8499984741211","118.8499984741211","Z","1991-04-01T00:00:00Z","","0" +"EB-012","101.58999633789062","101.58999633789062","","1958-03-03T00:00:00Z","","0" +"NM-13594","48.93000030517578","48.93000030517578","","1965-09-24T00:00:00Z","","0" +"NM-01899","64.69999694824219","64.69999694824219","","2010-05-13T00:00:00Z","","0" +"NM-14225","-28.299999237060547","-28.299999237060547","","1946-01-23T00:00:00Z","","0" +"NM-08862","67.3499984741211","67.3499984741211","S","1960-08-08T00:00:00Z","","0" +"NM-07587","335.1000061035156","335.1000061035156","","1955-04-20T00:00:00Z","","0" +"NM-07475","148.1199951171875","148.1199951171875","","1963-01-16T00:00:00Z","","0" +"NM-14540","17.5","17.5","","2015-01-20T00:00:00Z","","0" +"EB-606","118.72000122070312","118.72000122070312","","2007-06-13T00:00:00Z","","0" +"SB-0289","78.44999694824219","78.44999694824219","","1957-01-26T00:00:00Z","","0" +"NM-08052","206.1999969482422","206.1999969482422","","1982-02-11T00:00:00Z","","0" +"NM-01830","5.5","5.5","","1992-08-15T00:00:00Z","","0" +"NM-02096","368.3800048828125","368.3800048828125","","1995-02-07T00:00:00Z","","0" +"NM-28252","51.560001373291016","51.560001373291016","","1988-08-25T00:00:00Z","","0" +"NM-00812","35.75","35.75","","2004-09-07T00:00:00Z","","0" +"NM-03258","35.84000015258789","35.84000015258789","","1956-02-15T00:00:00Z","","0" +"NM-11774","109.37999725341797","109.37999725341797","S","1954-07-14T00:00:00Z","","0" +"NM-10880","12.819999694824219","12.819999694824219","","1957-01-10T00:00:00Z","","0" +"NM-03078","137.0399932861328","137.0399932861328","R","1983-03-30T00:00:00Z","","0" +"NM-00533","132.39999389648438","132.39999389648438","R","2001-03-14T00:00:00Z","","0" +"NM-03397","24.979999542236328","24.979999542236328","","1989-08-01T00:00:00Z","","0" +"NM-02658","225.0399932861328","225.0399932861328","","1941-06-05T00:00:00Z","","0" +"NM-12204","48.900001525878906","48.900001525878906","","1961-01-11T00:00:00Z","","0" +"NM-07577","87","87","","1982-03-25T00:00:00Z","","0" +"SV-0013","148.60000610351562","147.10000610351562","","2018-01-07T00:00:00Z","","1.5" +"NM-00974","356.8699951171875","356.8699951171875","","1988-12-15T00:00:00Z","","0" +"NM-10906","23.43000030517578","23.43000030517578","","1957-07-12T00:00:00Z","","0" +"NM-17716","4.03000020980835","4.03000020980835","","1946-06-03T00:00:00Z","","0" +"NM-02841","46.939998626708984","46.939998626708984","","1964-01-13T00:00:00Z","","0" +"NM-01986","8.100000381469727","8.100000381469727","","1958-05-15T00:00:00Z","","0" +"NM-01894","72.31999969482422","72.31999969482422","","1998-05-05T00:00:00Z","","0" +"NM-00120","332.45001220703125","332.45001220703125","","1976-01-20T00:00:00Z","","0" +"NM-07275","9.739999771118164","9.739999771118164","","1958-01-13T00:00:00Z","","0" +"NM-10978","-56.439998626708984","-56.439998626708984","","1908-09-22T00:00:00Z","","0" +"NM-23199","85.31999969482422","85.31999969482422","","1953-12-17T00:00:00Z","","0" +"NM-27700","124.27999877929688","124.27999877929688","","1987-03-02T00:00:00Z","","0" +"NM-11795","37.02000045776367","37.02000045776367","","1931-01-20T00:00:00Z","","0" +"NM-14030","-13.710000038146973","-13.710000038146973","","1927-12-13T00:00:00Z","","0" +"NM-03341","5.449999809265137","5.449999809265137","","2000-08-21T00:00:00Z","","0" +"NM-28258","199.4499969482422","199.4499969482422","","2015-08-05T00:00:00Z","","0" +"NM-20504","148.8300018310547","148.8300018310547","","1972-03-02T00:00:00Z","","0" +"NM-14045","40.939998626708984","40.939998626708984","","1957-12-19T00:00:00Z","","0" +"NM-01892","26.34000015258789","26.34000015258789","","2013-05-29T00:00:00Z","","0" +"NM-05591","91.33999633789062","91.33999633789062","","1955-12-02T00:00:00Z","","0" +"NM-28255","132.11000061035156","132.11000061035156","","1975-04-05T00:00:00Z","","0" +"NM-02799","20.969999313354492","20.969999313354492","","1978-08-18T00:00:00Z","","0" +"NM-03391","26.469999313354492","26.469999313354492","","2015-08-28T00:00:00Z","","0" +"NM-26457","7","7","","1991-09-29T00:00:00Z","","0" +"NM-01314","368.1600036621094","368.1600036621094","","2005-09-08T00:00:00Z","","0" +"NM-19046","272.1600036621094","272.1600036621094","","1977-02-02T00:00:00Z","","0" +"NM-12808","5.789999961853027","5.789999961853027","","1941-10-01T00:00:00Z","","0" +"NM-10185","23.280000686645508","23.280000686645508","","1963-01-09T00:00:00Z","","0" +"NM-05737","91.2699966430664","91.2699966430664","","1949-07-21T00:00:00Z","","0" +"AB-0077","7.25","7.25","","2015-01-05T00:00:00Z","","0" +"WL-0056","135.25","132.74000549316406","","2021-07-16T00:00:00Z","0001-01-01T13:45:00Z","2.509999990463257" +"NM-13720","-3.309999942779541","-3.309999942779541","","1908-09-16T00:00:00Z","","0" +"NM-13594","46.209999084472656","46.209999084472656","","1970-09-01T00:00:00Z","","0" +"NM-02675","64.69000244140625","64.69000244140625","","1961-01-19T00:00:00Z","","0" +"EB-269","221.05999755859375","221.05999755859375","","2004-08-31T00:00:00Z","","0" +"NM-02484","35.349998474121094","35.349998474121094","","1996-11-20T00:00:00Z","","0" +"NM-14897","42.20000076293945","42.20000076293945","","1949-03-12T00:00:00Z","","0" +"NM-20727","5.559999942779541","5.559999942779541","R","2016-07-19T00:00:00Z","","0" +"NM-00923","234.86000061035156","234.86000061035156","","1982-03-17T00:00:00Z","","0" +"NM-13135","5.590000152587891","5.590000152587891","","1978-10-03T00:00:00Z","","0" +"NM-19431","72.12999725341797","72.12999725341797","","1957-02-04T00:00:00Z","","0" +"NM-06561","185.5","185.5","","1978-01-10T00:00:00Z","","0" +"NM-16274","120","120","","1967-07-01T00:00:00Z","","0" +"AB-0215","155.6199951171875","155.6199951171875","","2007-06-04T00:00:00Z","","" +"NM-02412","39.220001220703125","39.220001220703125","","1958-01-13T00:00:00Z","","0" +"NM-28252","55.29999923706055","55.29999923706055","","1975-03-15T00:00:00Z","","0" +"NM-14792","34.689998626708984","34.689998626708984","","1957-01-23T00:00:00Z","","0" +"NM-08861","65.30000305175781","65.30000305175781","S","1954-04-19T00:00:00Z","","0" +"NM-16825","6.099999904632568","6.099999904632568","","1942-01-28T00:00:00Z","","0" +"SV-0127","295.1000061035156","293.6000061035156","","2016-02-06T00:00:00Z","","1.5" +"EB-244","111.12999725341797","111.12999725341797","","2005-12-15T00:00:00Z","","0" +"NM-12600","46.38999938964844","46.38999938964844","","1937-07-11T00:00:00Z","","0" +"NM-02732","85.79000091552734","85.79000091552734","","1957-01-08T00:00:00Z","","0" +"NM-02643","12.960000038146973","12.960000038146973","","1983-02-16T00:00:00Z","","0" +"NM-19851","57.56999969482422","57.56999969482422","S","1943-03-24T00:00:00Z","","0" +"NM-08524","11.300000190734863","11.300000190734863","","1999-08-15T00:00:00Z","","0" +"NM-02017","7.599999904632568","7.599999904632568","","1988-02-01T00:00:00Z","","0" +"NM-11263","41.88999938964844","41.88999938964844","","1934-07-16T00:00:00Z","","0" +"NM-28010","498.8500061035156","498.8500061035156","S","2015-05-27T00:00:00Z","","0" +"NM-01955","3.5999999046325684","3.5999999046325684","","1997-10-15T00:00:00Z","","0" +"NM-14833","41.18000030517578","41.18000030517578","","1958-11-14T00:00:00Z","","0" +"NM-01927","89.58999633789062","89.58999633789062","","1952-03-28T00:00:00Z","","0" +"NM-02314","8.899999618530273","8.899999618530273","","1985-04-15T00:00:00Z","","0" +"NM-01666","45.29999923706055","45.29999923706055","","1959-10-13T00:00:00Z","","0" +"UC-0037","205.52000427246094","205.52000427246094","","2009-02-09T00:00:00Z","","0" +"QU-061","16.56999969482422","21.889999389648438","","2014-03-04T00:00:00Z","","-5.320000171661377" +"NM-09583","61.68000030517578","61.68000030517578","","1986-01-23T00:00:00Z","","0" +"NM-11069","-18.329999923706055","-18.329999923706055","","1912-05-28T00:00:00Z","","0" +"NM-16123","83","83","","1967-06-15T00:00:00Z","","0" +"NM-28251","72.33000183105469","72.33000183105469","","2007-10-25T00:00:00Z","","0" +"NM-12430","40.75","40.75","","1966-03-27T00:00:00Z","","0" +"NM-28259","93.26000213623047","93.26000213623047","","2010-02-05T00:00:00Z","","0" +"WS-008","3.700000047683716","3.700000047683716","","2012-05-21T00:00:00Z","","0" +"WL-0179","24.459999084472656","22.90999984741211","","2022-08-18T00:00:00Z","0001-01-01T11:33:00Z","1.5499999523162842" +"NM-00435","48.959999084472656","48.959999084472656","","1957-06-05T00:00:00Z","","0" +"NM-14465","22.030000686645508","22.030000686645508","","1961-03-02T00:00:00Z","","0" +"SB-0299","132.5500030517578","132.5500030517578","","1982-05-15T00:00:00Z","","0" +"NM-00774","302.510009765625","302.510009765625","","2009-08-05T00:00:00Z","","0" +"NM-06529","367.79998779296875","367.79998779296875","","1972-09-13T00:00:00Z","","0" +"SB-0299","106.83000183105469","106.83000183105469","","1970-01-05T00:00:00Z","","0" +"NM-13716","-29.8799991607666","-29.8799991607666","","1907-12-07T00:00:00Z","","0" +"NM-03399","10.170000076293945","10.170000076293945","","1994-02-15T00:00:00Z","","0" +"NM-01989","9.979999542236328","9.979999542236328","","1991-02-18T00:00:00Z","","0" +"NM-06557","133.13999938964844","133.13999938964844","","1983-01-18T00:00:00Z","","0" +"NM-14535","87.41000366210938","87.41000366210938","","1978-02-15T00:00:00Z","","0" +"NM-05340","74.66999816894531","74.66999816894531","","1948-11-18T00:00:00Z","","0" +"NM-02282","400.8900146484375","400.8900146484375","","1967-06-01T00:00:00Z","","0" +"NM-05309","10.199999809265137","10.199999809265137","","1983-11-15T00:00:00Z","","0" +"NM-09666","136.27999877929688","136.27999877929688","","1964-01-08T00:00:00Z","","0" +"NM-13941","-7.929999828338623","-7.929999828338623","","1912-06-05T00:00:00Z","","0" +"NM-07253","28.670000076293945","28.670000076293945","","1976-02-25T00:00:00Z","","0" +"BC-0230","138.24000549316406","138.24000549316406","","2016-06-08T00:00:00Z","","0" +"NM-10088","-41.43000030517578","-41.43000030517578","","1906-07-12T00:00:00Z","","0" +"DE-0110","40.38999938964844","40.38999938964844","","2009-11-03T00:00:00Z","","0" +"NM-20499","6.03000020980835","6.03000020980835","","1944-06-11T00:00:00Z","","0" +"NM-27195","145.80999755859375","145.80999755859375","","2014-12-06T00:00:00Z","","0" +"NM-18654","152.3300018310547","152.3300018310547","","1971-02-10T00:00:00Z","","0" +"NM-02266","54.599998474121094","54.599998474121094","","1957-01-14T00:00:00Z","","0" +"NM-16745","67.44000244140625","67.44000244140625","","1974-01-03T00:00:00Z","","0" +"BC-0027","459.760009765625","459.760009765625","","2019-10-28T00:00:00Z","","0" +"NM-28254","85.6500015258789","85.6500015258789","","1954-06-25T00:00:00Z","","0" +"NM-22155","6.139999866485596","6.139999866485596","Z","2010-02-08T00:00:00Z","","0" +"NM-02622","150.30999755859375","150.30999755859375","","1954-08-01T00:00:00Z","","0" +"NM-28061","10.649999618530273","10.649999618530273","","1993-02-24T00:00:00Z","","0" +"TB-0141","115.37999725341797","114.25","","2012-08-15T00:00:00Z","","1.1299999952316284" +"NM-09682","462.7699890136719","462.7699890136719","","1964-01-01T00:00:00Z","","0" +"NM-03440","9.09000015258789","9.09000015258789","Z","1995-06-02T00:00:00Z","","0" +"NM-18874","329.9100036621094","329.9100036621094","","1977-01-28T00:00:00Z","","0" +"NM-23413","94.12000274658203","94.12000274658203","","1984-02-08T00:00:00Z","","0" +"NM-01894","82.16999816894531","82.16999816894531","","1995-12-14T00:00:00Z","","0" +"AB-0070","154.47000122070312","154.47000122070312","","2010-12-06T00:00:00Z","","" +"NM-03952","138","138","","1972-07-27T00:00:00Z","","0" +"NM-06503","162.8000030517578","162.8000030517578","","1995-08-23T00:00:00Z","","0" +"NM-02937","96.66000366210938","96.66000366210938","","1986-01-15T00:00:00Z","","0" +"QU-081","33.29999923706055","31.399999618530273","","2015-10-10T00:00:00Z","","1.899999976158142" +"NM-04365","79.77999877929688","79.77999877929688","","1971-12-20T00:00:00Z","","0" +"NM-22863","170.89999389648438","170.89999389648438","","2016-03-31T00:00:00Z","","0" +"NM-17628","42.939998626708984","42.939998626708984","","1944-03-22T00:00:00Z","","0" +"NM-01505","121.37000274658203","121.37000274658203","","1983-01-27T00:00:00Z","","0" +"EB-262","70.9000015258789","70.9000015258789","","2012-08-08T00:00:00Z","","0" +"NM-04893","66.13999938964844","66.13999938964844","","1977-01-27T00:00:00Z","","0" +"NM-28259","97.41999816894531","97.41999816894531","","1972-12-15T00:00:00Z","","0" +"NM-22906","334.7200012207031","334.7200012207031","","2013-01-25T00:00:00Z","","0" +"NM-11518","37.52000045776367","37.52000045776367","","1933-06-06T00:00:00Z","","0" +"NM-27236","140.3300018310547","140.3300018310547","","1987-10-20T00:00:00Z","","0" +"NM-12098","54.08000183105469","54.08000183105469","P","1966-03-24T00:00:00Z","","0" +"NM-03747","56.4900016784668","56.4900016784668","","1958-08-05T00:00:00Z","","0" +"NM-09670","20.170000076293945","20.170000076293945","","1947-01-13T00:00:00Z","","0" +"NM-02772","21.31999969482422","21.31999969482422","","1982-01-01T00:00:00Z","","0" +"NM-10858","62.790000915527344","62.790000915527344","","1975-01-08T00:00:00Z","","0" +"NM-06009","71.08000183105469","71.08000183105469","","1947-03-19T00:00:00Z","","0" +"NM-23428","208","208","","1956-01-01T00:00:00Z","","0" +"NM-05337","44.16999816894531","44.16999816894531","T","1981-03-18T00:00:00Z","","0" +"NM-09896","-56.439998626708984","-56.439998626708984","","1906-10-09T00:00:00Z","","0" +"AB-0111","27.56999969482422","27.56999969482422","","2015-05-29T00:00:00Z","","0" +"NM-02224","97.9000015258789","97.9000015258789","","1978-01-13T00:00:00Z","","0" +"NM-12118","-19.479999542236328","-19.479999542236328","","1915-08-25T00:00:00Z","","0" +"NM-28258","183.25","183.25","","2011-09-25T00:00:00Z","","0" +"NM-13860","-11.970000267028809","-11.970000267028809","","1907-06-11T00:00:00Z","","0" +"NM-01281","393","393","","1984-10-01T00:00:00Z","","0" +"NM-02006","7.699999809265137","7.699999809265137","","1989-02-02T00:00:00Z","","0" +"BC-0072","181.25","181.25","","2012-12-21T00:00:00Z","","0" +"NM-00512","77.75","77.75","","2006-02-14T00:00:00Z","","0" +"NM-21345","143.2100067138672","143.2100067138672","R","1991-09-12T00:00:00Z","","0" +"NM-03463","234.5800018310547","234.5800018310547","","1954-10-13T00:00:00Z","","0" +"NM-20018","54.459999084472656","54.459999084472656","","1971-01-26T00:00:00Z","","0" +"NM-16640","7.179999828338623","7.179999828338623","","1954-01-19T00:00:00Z","","0" +"NM-09827","-28.719999313354492","-28.719999313354492","","1908-12-14T00:00:00Z","","0" +"NM-04983","88.91000366210938","88.91000366210938","","1966-02-17T00:00:00Z","","0" +"NM-05675","187","187","P","1961-08-21T00:00:00Z","","0" +"AB-0124","546.8200073242188","546.8200073242188","","2007-01-11T00:00:00Z","","" +"NM-20304","182.77000427246094","182.77000427246094","","1972-02-10T00:00:00Z","","0" +"NM-02692","5.539999961853027","5.539999961853027","","1976-01-06T00:00:00Z","","0" +"NM-28253","27.440000534057617","27.440000534057617","","2014-05-05T00:00:00Z","","0" +"NM-00629","79.5199966430664","79.5199966430664","","1974-01-22T00:00:00Z","","0" +"NM-00895","47.11000061035156","47.11000061035156","","1995-03-02T00:00:00Z","","0" +"DE-0112","41.79999923706055","41.79999923706055","","2010-11-01T00:00:00Z","","0" +"NM-01889","16.229999542236328","16.229999542236328","","2000-11-21T00:00:00Z","","0" +"NM-02420","51.709999084472656","51.709999084472656","","1987-01-26T00:00:00Z","","0" +"NM-03281","43.45000076293945","43.45000076293945","","1961-02-13T00:00:00Z","","0" +"NM-20140","225.16000366210938","225.16000366210938","R","1962-03-27T00:00:00Z","","0" +"NM-09522","-79.54000091552734","-79.54000091552734","","1905-06-29T00:00:00Z","","0" +"NM-01638","10","10","","1993-01-22T00:00:00Z","","0" +"NM-00644","134.75","134.75","","1990-06-13T00:00:00Z","","0" +"WL-0089","36.54166793823242","33.991668701171875","","1995-10-05T00:00:00Z","","2.549999952316284" +"NM-18607","293.3900146484375","293.3900146484375","","1975-01-03T00:00:00Z","","0" +"NM-02560","117.05999755859375","117.05999755859375","","1976-01-01T00:00:00Z","","0" +"NM-11869","21.18000030517578","21.18000030517578","","1947-07-16T00:00:00Z","","0" +"AB-0166","585","585","","1958-06-10T00:00:00Z","","0" +"SM-0001","33.40999984741211","31.329999923706055","","2007-10-16T00:00:00Z","","2.0799999237060547" +"NM-21467","7.409999847412109","7.409999847412109","","2014-06-11T00:00:00Z","","0" +"NM-02107","381.3299865722656","381.3299865722656","","2016-02-16T00:00:00Z","","0" +"WS-007","2.9000000953674316","2.9000000953674316","","2012-05-15T00:00:00Z","","0" +"NM-01771","23.3700008392334","23.3700008392334","","1986-01-09T00:00:00Z","","0" +"NM-06996","57.15999984741211","57.15999984741211","","2008-03-20T00:00:00Z","","0" +"NM-06087","16.600000381469727","16.600000381469727","","1964-07-28T00:00:00Z","","0" +"NM-07881","12.140000343322754","12.140000343322754","","1957-09-11T00:00:00Z","","0" +"NM-05765","50.369998931884766","50.369998931884766","","1932-06-03T00:00:00Z","","0" +"NM-13180","13.350000381469727","13.350000381469727","","1944-02-08T00:00:00Z","","0" +"NM-03335","11.949999809265137","11.949999809265137","","2003-09-29T00:00:00Z","","0" +"NM-23311","42.86000061035156","42.86000061035156","","1984-03-22T00:00:00Z","","0" +"NM-01894","81.9000015258789","81.9000015258789","","1993-10-21T00:00:00Z","","0" +"NM-05169","33.720001220703125","33.720001220703125","P","1950-05-22T00:00:00Z","","0" +"NM-01361","89.83999633789062","89.83999633789062","","1993-07-22T00:00:00Z","","0" +"WL-0089","45.375","42.82500076293945","","1996-07-17T00:00:00Z","","2.549999952316284" +"NM-17596","13.789999961853027","13.789999961853027","","1942-01-26T00:00:00Z","","0" +"NM-05489","86.62999725341797","86.62999725341797","","1964-01-16T00:00:00Z","","0" +"NM-05347","7","7","","1948-07-15T00:00:00Z","","0" +"NM-04903","137.72000122070312","137.72000122070312","","1972-03-07T00:00:00Z","","0" +"NM-02017","6.599999904632568","6.599999904632568","","1988-11-15T00:00:00Z","","0" +"NM-17214","65.33999633789062","65.33999633789062","","1961-09-12T00:00:00Z","","0" +"NM-02726","59.310001373291016","59.310001373291016","","2005-01-19T00:00:00Z","","0" +"NM-01796","5.900000095367432","5.900000095367432","","1986-05-15T00:00:00Z","","0" +"NM-05347","8.899999618530273","8.899999618530273","","1974-02-15T00:00:00Z","","0" +"NM-06676","12","12","","1952-07-15T00:00:00Z","","0" +"NM-01868","9.199999809265137","9.199999809265137","","1959-07-15T00:00:00Z","","0" +"NM-02153","152.85000610351562","152.85000610351562","","1992-01-30T00:00:00Z","","0" +"NM-03289","153.25999450683594","153.25999450683594","","1979-01-19T00:00:00Z","","0" +"NM-05834","29.200000762939453","29.200000762939453","","1932-07-07T00:00:00Z","","0" +"NM-04035","8.899999618530273","8.899999618530273","","1953-02-18T00:00:00Z","","0" +"AB-0093","499.5899963378906","499.5899963378906","","2009-08-04T00:00:00Z","","" +"NM-17653","95.16000366210938","95.16000366210938","","1977-01-18T00:00:00Z","","0" +"NM-00644","122.3499984741211","122.3499984741211","","1984-05-04T00:00:00Z","","0" +"NM-14151","240.88999938964844","240.88999938964844","","1943-11-13T00:00:00Z","","0" +"NM-06806","12.8100004196167","12.8100004196167","","1975-01-08T00:00:00Z","","0" +"NM-23240","232.72999572753906","232.72999572753906","Z","1997-07-02T00:00:00Z","","0" +"NM-06038","25.969999313354492","25.969999313354492","","2008-11-19T00:00:00Z","","0" +"NM-19786","132.4600067138672","132.4600067138672","","2016-01-05T00:00:00Z","","0" +"NM-09817","68.63999938964844","68.63999938964844","","1949-07-16T00:00:00Z","","0" +"NM-28256","122.19000244140625","122.19000244140625","","2016-11-15T00:00:00Z","","0" +"NM-07847","37.099998474121094","37.099998474121094","","1966-03-10T00:00:00Z","","0" +"NM-13218","12.140000343322754","12.140000343322754","","1958-07-29T00:00:00Z","","0" +"UC-0054","199.30999755859375","199.30999755859375","","1981-01-30T00:00:00Z","","0" +"NM-26507","65.8499984741211","65.8499984741211","","2004-03-25T00:00:00Z","","0" +"NM-02227","134.0500030517578","134.0500030517578","","1982-02-04T00:00:00Z","","0" +"NM-26283","6.800000190734863","6.800000190734863","","1949-09-20T00:00:00Z","","0" +"NM-27784","35.400001525878906","35.400001525878906","","1986-11-19T00:00:00Z","","0" +"NM-02614","540.7999877929688","540.7999877929688","","1996-01-26T00:00:00Z","","0" +"NM-02424","34.279998779296875","34.279998779296875","","1961-11-07T00:00:00Z","","0" +"NM-17716","4.949999809265137","4.949999809265137","","1946-08-29T00:00:00Z","","0" +"AB-0054","44.459999084472656","44.459999084472656","","2006-10-12T00:00:00Z","","" +"NM-26772","307.2200012207031","307.2200012207031","","2013-04-01T00:00:00Z","","0" +"NM-23434","116.20999908447266","116.20999908447266","","1947-03-11T00:00:00Z","","0" +"AB-0068","155.41000366210938","155.41000366210938","","2006-01-11T00:00:00Z","","" +"NM-03382","84.31999969482422","84.31999969482422","","1960-02-15T00:00:00Z","","0" +"NM-17371","42.4900016784668","42.4900016784668","","1939-11-17T00:00:00Z","","0" +"NM-13594","45.2400016784668","45.2400016784668","","1960-08-30T00:00:00Z","","0" +"NM-27222","66.41999816894531","66.41999816894531","","1998-01-22T00:00:00Z","","0" +"NM-05511","119.9000015258789","119.9000015258789","","1956-03-09T00:00:00Z","","0" +"NM-00127","32.08000183105469","32.08000183105469","","2003-01-27T00:00:00Z","","0" +"NM-03331","10.90999984741211","10.90999984741211","","2015-08-28T00:00:00Z","","0" +"NM-08154","12.699999809265137","12.699999809265137","","1956-05-09T00:00:00Z","","0" +"NM-13118","9.579999923706055","9.579999923706055","","1981-11-06T00:00:00Z","","0" +"EB-288","105","105","","1986-01-31T00:00:00Z","","0" +"UC-0040","125.0199966430664","125.0199966430664","","2010-03-16T00:00:00Z","","0" +"NM-17348","58.810001373291016","58.810001373291016","","1955-01-24T00:00:00Z","","0" +"NM-08993","87.45999908447266","87.45999908447266","","1963-07-22T00:00:00Z","","0" +"NM-20738","3.819999933242798","3.819999933242798","","1947-05-29T00:00:00Z","","0" +"NM-24373","50","50","","1976-09-29T00:00:00Z","","0" +"NM-11358","7.53000020980835","7.53000020980835","","1970-08-27T00:00:00Z","","0" +"NM-02198","28.149999618530273","28.149999618530273","","2012-09-13T00:00:00Z","","0" +"NM-17928","164.5800018310547","164.5800018310547","","1962-06-12T00:00:00Z","","0" +"NM-01940","101.88999938964844","101.88999938964844","","1957-01-24T00:00:00Z","","0" +"NM-01265","","","O","2012-03-12T00:00:00Z","","0" +"NM-01828","112.9800033569336","112.9800033569336","","1997-01-28T00:00:00Z","","0" +"NM-02256","6.5","6.5","","1950-10-15T00:00:00Z","","0" +"NM-13868","-8.850000381469727","-8.850000381469727","","1913-08-14T00:00:00Z","","0" +"NM-00185","11.800000190734863","11.800000190734863","","2000-05-15T00:00:00Z","","0" +"NM-01751","66.30000305175781","66.30000305175781","","1993-01-15T00:00:00Z","","0" +"NM-02005","5.5","5.5","","1958-06-15T00:00:00Z","","0" +"NM-28251","71.43000030517578","71.43000030517578","","2003-11-05T00:00:00Z","","0" +"NM-21218","393.7200012207031","393.7200012207031","","1968-01-16T00:00:00Z","","0" +"NM-28259","167.35000610351562","167.35000610351562","","1962-08-15T00:00:00Z","","0" +"NM-28251","84.30000305175781","84.30000305175781","","1985-04-05T00:00:00Z","","0" +"NM-01566","51.849998474121094","51.849998474121094","","1978-01-25T00:00:00Z","","0" +"NM-28253","30.93000030517578","30.93000030517578","","1972-11-05T00:00:00Z","","0" +"WL-0090","40.625","38.244998931884766","","1996-08-29T00:00:00Z","","2.380000114440918" +"EB-483","280","280","","1992-03-31T00:00:00Z","","0" +"NM-02288","4.300000190734863","4.300000190734863","","2009-04-13T00:00:00Z","","0" +"NM-22351","195.6300048828125","195.6300048828125","","1953-06-25T00:00:00Z","","0" +"NM-13120","5.150000095367432","5.150000095367432","","1971-10-25T00:00:00Z","","0" +"NM-01035","35.470001220703125","35.470001220703125","","1951-01-09T00:00:00Z","","0" +"NM-13044","65.58000183105469","65.58000183105469","","1961-03-06T00:00:00Z","","0" +"NM-00212","94.2699966430664","94.2699966430664","","1987-10-15T00:00:00Z","","0" +"NM-02591","12.100000381469727","12.100000381469727","","1984-06-15T00:00:00Z","","0" +"NM-05634","19.389999389648438","19.389999389648438","","1941-09-03T00:00:00Z","","0" +"NM-21652","","","D","2003-07-21T00:00:00Z","","0" +"NM-02648","39.91999816894531","39.91999816894531","","2004-01-21T00:00:00Z","","0" +"NM-00366","145.99000549316406","145.99000549316406","","1971-08-01T00:00:00Z","","0" +"NM-02556","-54.130001068115234","-54.130001068115234","","1908-06-16T00:00:00Z","","0" +"UC-0124","182.5500030517578","182.5500030517578","","1991-02-06T00:00:00Z","","0" +"NM-12597","105.4800033569336","105.4800033569336","","1984-02-08T00:00:00Z","","0" +"NM-05281","42.189998626708984","42.189998626708984","P","1974-01-04T00:00:00Z","","0" +"NM-01841","253.4499969482422","253.4499969482422","","1977-07-20T00:00:00Z","","0" +"NM-04804","128.86000061035156","128.86000061035156","","1972-01-07T00:00:00Z","","0" +"NM-00662","33.810001373291016","33.810001373291016","","1975-01-07T00:00:00Z","","0" +"SB-0014","216.72000122070312","216.72000122070312","R","2004-06-10T00:00:00Z","","0" +"NM-12812","-14.859999656677246","-14.859999656677246","","1907-01-17T00:00:00Z","","0" +"NM-01110","147.8300018310547","147.8300018310547","","1972-02-03T00:00:00Z","","0" +"AR-0065","18.850000381469727","22.350000381469727","","2016-10-19T00:00:00Z","","-3.5" +"NM-20973","24.690000534057617","24.690000534057617","","1942-04-08T00:00:00Z","","0" +"NM-09090","100.87000274658203","100.87000274658203","","1954-09-15T00:00:00Z","","0" +"NM-11157","45.70000076293945","45.70000076293945","","1986-01-15T00:00:00Z","","0" +"SO-0189","9.850000381469727","8.359999656677246","","2024-03-28T00:00:00Z","0001-01-01T14:31:00Z","1.4900000095367432" +"NM-13851","-14.859999656677246","-14.859999656677246","","1912-01-19T00:00:00Z","","0" +"NM-22639","31.5","31.5","","2002-01-14T00:00:00Z","","0" +"WL-0087","56.70833206176758","55.0283317565918","","1997-11-03T00:00:00Z","","1.6799999475479126" +"BC-0268","","305.489990234375","","2021-03-07T00:00:00Z","","1.8300000429153442" +"NM-08350","33.560001373291016","33.560001373291016","","1972-02-09T00:00:00Z","","0" +"NM-03329","22.399999618530273","22.399999618530273","","1993-12-09T00:00:00Z","","0" +"NM-08464","45.2400016784668","45.2400016784668","","1986-01-10T00:00:00Z","","0" +"NM-18159","41.04999923706055","41.04999923706055","","1965-01-11T00:00:00Z","","0" +"NM-28258","139.14999389648438","139.14999389648438","","2015-12-15T00:00:00Z","","0" +"NM-05370","60.619998931884766","60.619998931884766","","1933-04-02T00:00:00Z","","0" +"NM-02518","5.199999809265137","5.199999809265137","","1986-08-15T00:00:00Z","","0" +"NM-06033","105.83000183105469","105.83000183105469","","1966-01-12T00:00:00Z","","0" +"NM-11560","76.41999816894531","76.41999816894531","","1949-05-11T00:00:00Z","","0" +"NM-02556","11.460000038146973","11.460000038146973","","1956-02-09T00:00:00Z","","0" +"NM-16557","15.729999542236328","15.729999542236328","","1946-01-27T00:00:00Z","","0" +"NM-00213","194","194","","1967-11-01T00:00:00Z","","0" +"NM-09200","-1.2000000476837158","-1.2000000476837158","","1958-12-29T00:00:00Z","","0" +"NM-12751","129.49000549316406","129.49000549316406","","1960-01-14T00:00:00Z","","0" +"NM-12667","130.38999938964844","130.38999938964844","","1960-01-14T00:00:00Z","","0" +"NM-26350","118.0999984741211","118.0999984741211","","1986-01-30T00:00:00Z","","0" +"NM-14802","104.41000366210938","104.41000366210938","","1970-07-24T00:00:00Z","","0" +"NM-08549","19.6200008392334","19.6200008392334","","1973-01-26T00:00:00Z","","0" +"DE-0097","92.38999938964844","92.38999938964844","","2000-08-07T00:00:00Z","","0" +"NM-04985","4.150000095367432","4.150000095367432","","1959-01-23T00:00:00Z","","0" +"EB-163","695","693.7999877929688","","1986-02-28T00:00:00Z","","1.2000000476837158" +"SA-0029","168.17999267578125","168.17999267578125","","2001-02-06T00:00:00Z","","0" +"NM-00218","58.09000015258789","58.09000015258789","","1996-01-23T00:00:00Z","","0" +"NM-00075","40.59000015258789","40.59000015258789","","1966-01-26T00:00:00Z","","0" +"NM-02520","9.199999809265137","9.199999809265137","","1955-05-15T00:00:00Z","","0" +"NM-11919","1.409999966621399","1.409999966621399","","1958-11-21T00:00:00Z","","0" +"NM-12338","125.56999969482422","125.56999969482422","","1963-10-11T00:00:00Z","","0" +"NM-07773","48.529998779296875","48.529998779296875","","1955-09-06T00:00:00Z","","0" +"NM-02226","98.62000274658203","98.62000274658203","","1974-01-18T00:00:00Z","","0" +"SB-0299","141.7100067138672","141.7100067138672","","2019-01-15T00:00:00Z","","0" +"SB-0299","109.69000244140625","109.69000244140625","","1970-12-30T00:00:00Z","","0" +"BW-0724","24","24","","1950-05-17T00:00:00Z","","0" +"NM-09178","23.020000457763672","23.020000457763672","","1944-11-27T00:00:00Z","","0" +"NM-03759","77.69000244140625","77.69000244140625","","1981-01-20T00:00:00Z","","0" +"NM-20098","30.600000381469727","30.600000381469727","","1944-03-27T00:00:00Z","","0" +"NM-08314","46.4900016784668","46.4900016784668","P","1956-07-18T00:00:00Z","","0" +"NM-02158","7","7","","1998-12-15T00:00:00Z","","0" +"NM-13594","29.93000030517578","29.93000030517578","","1968-10-25T00:00:00Z","","0" +"NM-22585","261.19000244140625","261.19000244140625","","2014-01-02T00:00:00Z","","0" +"NM-02300","167.52999877929688","167.52999877929688","","2000-03-07T00:00:00Z","","0" +"NM-01901","10.550000190734863","10.550000190734863","","1973-12-28T00:00:00Z","","0" +"NM-14079","-7.349999904632568","-7.349999904632568","","1911-12-11T00:00:00Z","","0" +"NM-04700","71.05000305175781","71.05000305175781","R","1953-07-28T00:00:00Z","","0" +"NM-28254","156.8800048828125","156.8800048828125","","1967-06-05T00:00:00Z","","0" +"NM-02101","12.199999809265137","12.199999809265137","","1964-12-15T00:00:00Z","","0" +"NM-13041","4.659999847412109","4.659999847412109","","1975-11-04T00:00:00Z","","0" +"NM-03321","53.43000030517578","53.43000030517578","","1995-01-09T00:00:00Z","","0" +"NM-02560","123.51000213623047","123.51000213623047","F","1993-11-22T00:00:00Z","","0" +"NM-14200","-16.020000457763672","-16.020000457763672","","1912-12-12T00:00:00Z","","0" +"NM-20962","75.18000030517578","75.18000030517578","","1947-05-28T00:00:00Z","","0" +"NM-17452","67.5","67.5","","1954-09-21T00:00:00Z","","0" +"NM-09968","44.650001525878906","44.650001525878906","","1958-04-02T00:00:00Z","","0" +"NM-04195","167.6300048828125","167.6300048828125","","1981-01-05T00:00:00Z","","0" +"NM-04422","89.52999877929688","89.52999877929688","S","1952-07-19T00:00:00Z","","0" +"NM-02198","19.729999542236328","19.729999542236328","","2010-01-25T00:00:00Z","","0" +"NM-13270","104.66000366210938","104.66000366210938","","1952-01-29T00:00:00Z","","0" +"NM-03455","296.29998779296875","296.29998779296875","","1980-01-28T00:00:00Z","","0" +"NM-02772","29.65999984741211","29.65999984741211","","2004-11-05T00:00:00Z","","0" +"NM-25569","54.25","54.25","","1985-11-06T00:00:00Z","","0" +"NM-14396","6.610000133514404","6.610000133514404","","1972-12-18T00:00:00Z","","0" +"SV-0062","313.29998779296875","310.9666442871094","","2016-05-07T00:00:00Z","","2.3333332538604736" +"NM-23309","104.25","104.25","","1975-01-16T00:00:00Z","","0" +"AB-0077","5.659999847412109","5.659999847412109","","1998-10-15T00:00:00Z","","" +"NM-08667","62.68000030517578","62.68000030517578","P","1946-01-25T00:00:00Z","","0" +"NM-00917","35.099998474121094","35.099998474121094","","1985-01-14T00:00:00Z","","0" +"QY-0811","191.39999389648438","191.39999389648438","","1955-07-14T00:00:00Z","","0" +"NM-17200","1.8700000047683716","1.8700000047683716","","1937-03-18T00:00:00Z","","0" +"TB-0221","113.45999908447266","112.4000015258789","","2011-02-22T00:00:00Z","","1.059999942779541" +"NM-19432","253.72999572753906","253.72999572753906","","1988-07-26T00:00:00Z","","0" +"NM-20696","198.7100067138672","198.7100067138672","","1955-08-05T00:00:00Z","","0" +"NM-08821","-21.790000915527344","-21.790000915527344","","1908-06-29T00:00:00Z","","0" +"NM-22296","33.88999938964844","33.88999938964844","","1991-10-30T00:00:00Z","","0" +"NM-13902","6.5","6.5","","1984-01-24T00:00:00Z","","0" +"NM-09596","-42.58000183105469","-42.58000183105469","","1916-07-26T00:00:00Z","","0" +"NM-10988","74.26000213623047","74.26000213623047","","1993-01-07T00:00:00Z","","0" +"NM-19961","47.599998474121094","47.599998474121094","","1945-11-30T00:00:00Z","","0" +"NM-02614","526.760009765625","526.760009765625","","1989-08-29T00:00:00Z","","0" +"NM-05713","67.87999725341797","67.87999725341797","","1931-10-26T00:00:00Z","","0" +"EB-264","12.170000076293945","12.170000076293945","","2001-11-20T00:00:00Z","","0" +"NM-02811","66.0999984741211","66.0999984741211","","1952-01-29T00:00:00Z","","0" +"NM-07719","75.41000366210938","75.41000366210938","","1955-11-07T00:00:00Z","","0" +"NM-14502","15.739999771118164","15.739999771118164","","1959-01-05T00:00:00Z","","0" +"NM-17620","26.610000610351562","26.610000610351562","","1931-12-11T00:00:00Z","","0" +"DE-0235","103.7699966430664","103.7699966430664","","2004-02-25T00:00:00Z","","0" +"NM-14351","589.530029296875","589.530029296875","","1960-06-01T00:00:00Z","","0" +"NM-11896","43.20000076293945","43.20000076293945","","1938-01-29T00:00:00Z","","0" +"NM-09682","462.04998779296875","462.04998779296875","","1960-11-01T00:00:00Z","","0" +"SO-0269","5.980000019073486","4.760000228881836","","2018-04-10T00:00:00Z","0001-01-01T09:32:00Z","1.2200000286102295" +"NM-07274","293.3299865722656","293.3299865722656","","1990-02-20T00:00:00Z","","0" +"NM-02338","66.41999816894531","66.41999816894531","","1998-01-07T00:00:00Z","","0" +"NM-03661","37.02000045776367","37.02000045776367","","1968-03-26T00:00:00Z","","0" +"NM-26677","167.89999389648438","167.89999389648438","","1955-11-07T00:00:00Z","","0" +"SB-0299","114.25","114.25","","1972-03-30T00:00:00Z","","0" +"NM-28235","","","D","2011-08-31T00:00:00Z","","0" +"NM-13196","59.83000183105469","59.83000183105469","","1976-04-21T00:00:00Z","","0" +"NM-13135","5.139999866485596","5.139999866485596","","1982-05-18T00:00:00Z","","0" +"NM-13235","2.819999933242798","2.819999933242798","","1958-05-19T00:00:00Z","","0" +"NM-23448","103.69999694824219","103.69999694824219","","1946-02-27T00:00:00Z","","0" +"NM-02728","105.75","105.75","","1975-03-12T00:00:00Z","","0" +"NM-03238","83.33000183105469","83.33000183105469","","1986-05-21T00:00:00Z","","0" +"NM-11535","117.25","117.25","","1989-06-02T00:00:00Z","","0" +"NM-08764","75.8499984741211","75.8499984741211","","1958-01-14T00:00:00Z","","0" +"NM-04962","111.76000213623047","111.76000213623047","","1963-01-17T00:00:00Z","","0" +"NM-13940","-11.399999618530273","-11.399999618530273","","1910-03-22T00:00:00Z","","0" +"NM-09178","22.229999542236328","22.229999542236328","","1943-09-29T00:00:00Z","","0" +"NM-20370","81.55000305175781","81.55000305175781","","1972-03-24T00:00:00Z","","0" +"NM-03373","29.350000381469727","29.350000381469727","","1958-07-10T00:00:00Z","","0" +"EB-416","283","283","Z","1998-01-31T00:00:00Z","","0" +"NM-01505","103","103","","1981-09-10T00:00:00Z","","0" +"NM-12485","11.369999885559082","11.369999885559082","","1969-01-21T00:00:00Z","","0" +"NM-08869","81.37999725341797","81.37999725341797","","1971-01-06T00:00:00Z","","0" +"NM-25948","30","30","","1969-04-12T00:00:00Z","","0" +"SA-0064","68.76000213623047","67.31999969482422","","2011-03-24T00:00:00Z","","1.440000057220459" +"NM-02527","9.199999809265137","9.199999809265137","","1982-05-15T00:00:00Z","","0" +"NM-02523","70.25","70.25","","1993-09-30T00:00:00Z","","0" +"NM-13254","7.429999828338623","7.429999828338623","","1968-05-13T00:00:00Z","","0" +"NM-08940","5.570000171661377","5.570000171661377","","1959-03-25T00:00:00Z","","0" +"NM-12118","-47.20000076293945","-47.20000076293945","","1911-06-09T00:00:00Z","","0" +"NM-03400","9.5600004196167","9.5600004196167","Z","1991-04-04T00:00:00Z","","0" +"DE-0109","37.099998474121094","37.099998474121094","","2008-09-29T00:00:00Z","","0" +"NM-02414","17.329999923706055","17.329999923706055","","1998-02-05T00:00:00Z","","0" +"NM-02006","8.5","8.5","","1963-11-15T00:00:00Z","","0" +"SM-0122","8.649999618530273","8.649999618530273","","2004-01-29T00:00:00Z","","0" +"NM-02043","8.100000381469727","8.100000381469727","","1994-02-09T00:00:00Z","","0" +"NM-23680","109.86000061035156","109.86000061035156","","1975-04-08T00:00:00Z","","0" +"NM-12600","62.09000015258789","62.09000015258789","","1939-08-17T00:00:00Z","","0" +"NM-04952","62.45000076293945","62.45000076293945","","1975-01-07T00:00:00Z","","0" +"NM-12466","11.100000381469727","11.100000381469727","","1957-07-18T00:00:00Z","","0" +"NM-02510","88.48999786376953","88.48999786376953","","1991-04-05T00:00:00Z","","0" +"NM-14042","1.399999976158142","1.399999976158142","","1910-03-22T00:00:00Z","","0" +"NM-20070","220.6300048828125","220.6300048828125","","1969-01-27T00:00:00Z","","0" +"NM-10748","213.6699981689453","213.6699981689453","","1986-01-10T00:00:00Z","","0" +"NM-11122","211.89999389648438","211.89999389648438","","1981-01-29T00:00:00Z","","0" +"NM-21270","6.480000019073486","6.480000019073486","Z","2008-07-08T00:00:00Z","","0" +"NM-10933","56.279998779296875","56.279998779296875","","1981-01-21T00:00:00Z","","0" +"NM-09208","-37.959999084472656","-37.959999084472656","","1914-12-16T00:00:00Z","","0" +"NM-16904","58.90999984741211","58.90999984741211","","1961-01-12T00:00:00Z","","0" +"SB-0299","138.41000366210938","138.41000366210938","","2017-01-20T00:00:00Z","","0" +"NM-01884","11.34000015258789","11.34000015258789","","1992-01-23T00:00:00Z","","0" +"NM-03421","37.58000183105469","37.58000183105469","","1993-12-28T00:00:00Z","","0" +"NM-02757","17.610000610351562","17.610000610351562","","1989-01-23T00:00:00Z","","0" +"NM-24978","53.779998779296875","53.779998779296875","","1970-04-09T00:00:00Z","","0" +"EB-270","221.74000549316406","221.74000549316406","Z","1998-03-31T00:00:00Z","","0" +"NM-28251","60.58000183105469","60.58000183105469","","1998-03-15T00:00:00Z","","0" +"DE-0089","91.5","91.5","","2002-03-15T00:00:00Z","","0" +"NM-07162","66.4000015258789","66.4000015258789","","2003-07-09T00:00:00Z","","0" +"NM-28211","","","D","2011-10-31T00:00:00Z","","0" +"SB-0218","197.4499969482422","197.4499969482422","","1993-02-16T00:00:00Z","","0" +"NM-02676","76.3499984741211","76.3499984741211","","2011-09-27T00:00:00Z","","0" +"NM-02281","28.010000228881836","28.010000228881836","","2005-12-22T00:00:00Z","","0" +"NM-05486","66.54000091552734","66.54000091552734","","1952-01-11T00:00:00Z","","0" +"NM-01955","4.5","4.5","","1989-12-15T00:00:00Z","","0" +"NM-02004","9.399999618530273","9.399999618530273","","1982-06-15T00:00:00Z","","0" +"NM-02396","5.300000190734863","5.300000190734863","","1986-10-15T00:00:00Z","","0" +"ED-0010","21.200000762939453","21.200000762939453","","1950-01-01T00:00:00Z","","0" +"NM-11941","0.9100000262260437","0.9100000262260437","","1939-04-27T00:00:00Z","","0" +"NM-03339","11.119999885559082","11.119999885559082","Z","1997-06-17T00:00:00Z","","0" +"NM-28256","119.47000122070312","119.47000122070312","","2006-02-24T00:00:00Z","","0" +"NM-28257","20.68000030517578","20.68000030517578","","1975-03-05T00:00:00Z","","0" +"NM-01897","9.569999694824219","9.569999694824219","","1998-01-23T00:00:00Z","","0" +"NM-00943","284.239990234375","284.239990234375","","1992-01-04T00:00:00Z","","0" +"SB-0299","139.25","139.25","","2007-06-10T00:00:00Z","","0" +"NM-14802","103.7300033569336","103.7300033569336","","1979-02-06T00:00:00Z","","0" +"NM-17647","6.889999866485596","6.889999866485596","","1956-05-22T00:00:00Z","","0" +"NM-03024","84.26000213623047","84.26000213623047","","1964-09-17T00:00:00Z","","0" +"SB-0263","111.1500015258789","111.1500015258789","","1948-08-12T00:00:00Z","","0" +"NM-22866","55.189998626708984","55.189998626708984","P","1955-02-14T00:00:00Z","","0" +"NM-04978","340.8900146484375","340.8900146484375","","2005-01-18T00:00:00Z","","0" +"NM-05775","36.86000061035156","36.86000061035156","","1934-04-29T00:00:00Z","","0" +"NM-03479","99.73999786376953","99.73999786376953","","1995-02-08T00:00:00Z","","0" +"NM-28014","498.7300109863281","498.7300109863281","S","2015-05-26T00:00:00Z","","0" +"NM-18116","171.27000427246094","171.27000427246094","R","1985-09-18T00:00:00Z","","0" +"NM-02384","8","8","","1960-11-15T00:00:00Z","","0" +"NM-28258","150.08999633789062","150.08999633789062","","1976-11-05T00:00:00Z","","0" +"NM-21531","8.9399995803833","8.9399995803833","","1965-02-12T00:00:00Z","","0" +"NM-28252","49.900001525878906","49.900001525878906","","2021-03-15T00:00:00Z","","0" +"NM-00521","66.19999694824219","66.19999694824219","","1971-01-13T00:00:00Z","","0" +"NM-09077","10.220000267028809","10.220000267028809","","2009-04-29T00:00:00Z","","0" +"NM-17716","3.309999942779541","3.309999942779541","","1945-07-08T00:00:00Z","","0" +"NM-01918","27.75","27.75","","1982-01-13T00:00:00Z","","0" +"NM-27576","21.6299991607666","21.6299991607666","P","1963-01-22T00:00:00Z","","0" +"NM-01948","6.400000095367432","6.400000095367432","","2002-02-15T00:00:00Z","","0" +"NM-19940","47.66999816894531","47.66999816894531","","1944-12-03T00:00:00Z","","0" +"NM-03435","98.8499984741211","98.8499984741211","","1959-02-17T00:00:00Z","","0" +"NM-20047","123.48999786376953","123.48999786376953","","1971-08-19T00:00:00Z","","0" +"NM-27857","13.920000076293945","13.920000076293945","","1982-03-26T00:00:00Z","","0" +"NM-01216","282.489990234375","282.489990234375","","2012-02-17T00:00:00Z","","0" +"NM-15492","90.80000305175781","90.80000305175781","","1970-02-10T00:00:00Z","","0" +"NM-01012","63.40999984741211","63.40999984741211","","2008-03-15T00:00:00Z","","0" +"NM-00384","69.0199966430664","69.0199966430664","","1998-01-05T00:00:00Z","","0" +"NM-11924","1.0399999618530273","1.0399999618530273","","1947-09-30T00:00:00Z","","0" +"EB-478","311","311","P","1989-04-30T00:00:00Z","","0" +"NM-18699","37.13999938964844","37.13999938964844","","1975-04-17T00:00:00Z","","0" +"NM-02004","9.100000381469727","9.100000381469727","","1996-06-15T00:00:00Z","","0" +"NM-25419","1","1","","1983-01-05T00:00:00Z","","0" +"NM-08048","370.79998779296875","370.79998779296875","","1943-02-09T00:00:00Z","","0" +"WL-0190","78.62999725341797","78.22999572753906","","2021-05-04T00:00:00Z","0001-01-01T14:00:00Z","0.4000000059604645" +"NM-28257","41.45000076293945","41.45000076293945","","2011-07-15T00:00:00Z","","0" +"NM-21915","76","76","","2004-04-02T00:00:00Z","","0" +"NM-14717","81.58000183105469","81.58000183105469","","1967-01-25T00:00:00Z","","0" +"NM-28259","127.79000091552734","127.79000091552734","","1977-05-15T00:00:00Z","","0" +"NM-05624","71.70999908447266","71.70999908447266","","1945-01-04T00:00:00Z","","0" +"NM-03903","328.1000061035156","328.1000061035156","","1974-12-10T00:00:00Z","","0" +"NM-09682","460.6400146484375","460.6400146484375","","1959-07-01T00:00:00Z","","0" +"NM-01986","5.800000190734863","5.800000190734863","","1948-09-15T00:00:00Z","","0" +"NM-28255","135.25999450683594","135.25999450683594","","1984-05-15T00:00:00Z","","0" +"NM-06090","71.9800033569336","71.9800033569336","","1933-12-09T00:00:00Z","","0" +"TV-157","156.2899932861328","155.14999389648438","","2015-06-01T00:00:00Z","","1.1399999856948853" +"NM-17206","63.04999923706055","63.04999923706055","","1955-07-23T00:00:00Z","","0" +"NM-12481","44.5099983215332","44.5099983215332","","1953-01-10T00:00:00Z","","0" +"NM-02543","56.56999969482422","56.56999969482422","","1955-01-11T00:00:00Z","","0" +"NM-26118","148","148","","1986-09-10T00:00:00Z","","0" +"NM-02101","9.399999618530273","9.399999618530273","","1981-01-15T00:00:00Z","","0" +"NM-18291","273.2699890136719","273.2699890136719","","1994-02-21T00:00:00Z","","0" +"NM-00290","274","274","","1967-12-28T00:00:00Z","","0" +"NM-02487","10.5","10.5","","1989-08-15T00:00:00Z","","0" +"NM-01361","90.0199966430664","90.0199966430664","","1994-07-21T00:00:00Z","","0" +"SB-0431","71.5","71.5","","2011-02-12T00:00:00Z","","0" +"NM-00353","69.62000274658203","69.62000274658203","","1957-03-06T00:00:00Z","","0" +"NM-00427","90.72000122070312","90.72000122070312","","2007-01-12T00:00:00Z","","0" +"NM-02518","7.900000095367432","7.900000095367432","","1964-02-15T00:00:00Z","","0" +"NM-03317","55.56999969482422","55.56999969482422","","1961-02-14T00:00:00Z","","0" +"NM-23198","67.5","67.5","","1950-10-16T00:00:00Z","","0" +"NM-11118","13.59000015258789","13.59000015258789","","1979-02-15T00:00:00Z","","0" +"DE-0247","107.8499984741211","107.8499984741211","","2012-11-07T00:00:00Z","","0" +"NM-00485","47.369998931884766","47.369998931884766","","1971-02-12T00:00:00Z","","0" +"NM-00367","120.16000366210938","120.16000366210938","","1980-03-01T00:00:00Z","","0" +"NM-11667","61.470001220703125","61.470001220703125","P","1961-03-07T00:00:00Z","","0" +"NM-02840","6.230000019073486","6.230000019073486","","1973-02-27T00:00:00Z","","0" +"EB-358","255.64999389648438","253.64999389648438","","2001-12-19T00:00:00Z","","2" +"NM-02232","107.55999755859375","107.55999755859375","","1966-01-18T00:00:00Z","","0" +"BC-0325","285.75","285.75","","2020-05-03T00:00:00Z","","0" +"NM-05521","76.33999633789062","76.33999633789062","","1943-07-08T00:00:00Z","","0" +"NM-10058","6.769999980926514","6.769999980926514","","1979-04-25T00:00:00Z","","0" +"AB-0192","788.5399780273438","788.5399780273438","","1985-10-04T00:00:00Z","","" +"NM-00686","60","60","","2001-05-30T00:00:00Z","","0" +"NM-04899","-10.130000114440918","-10.130000114440918","","1953-05-02T00:00:00Z","","0" +"NM-02796","19.229999542236328","19.229999542236328","","1989-01-17T00:00:00Z","","0" +"NM-05340","78.73999786376953","78.73999786376953","","1954-09-13T00:00:00Z","","0" +"NM-08524","13.399999618530273","13.399999618530273","","1952-04-15T00:00:00Z","","0" +"BC-0094","29.780000686645508","29.780000686645508","","2015-06-02T00:00:00Z","","0" +"NM-28014","498.760009765625","498.760009765625","S","2015-05-16T00:00:00Z","","0" +"NM-03427","21.860000610351562","21.860000610351562","Z","1998-04-30T00:00:00Z","","0" +"NM-03760","44.16999816894531","44.16999816894531","","1958-01-10T00:00:00Z","","0" +"NM-26492","133.3699951171875","133.3699951171875","","2003-06-05T00:00:00Z","","0" +"NM-16966","52.099998474121094","52.099998474121094","","1986-11-20T00:00:00Z","","0" +"NM-13835","-11.399999618530273","-11.399999618530273","","1906-06-20T00:00:00Z","","0" +"NM-00222","24.3799991607666","24.3799991607666","","2003-01-17T00:00:00Z","","0" +"NM-05368","83.56999969482422","83.56999969482422","","1953-01-09T00:00:00Z","","0" +"NM-05370","60.77000045776367","60.77000045776367","","1931-12-15T00:00:00Z","","0" +"NM-08648","38.15999984741211","38.15999984741211","","1942-09-27T00:00:00Z","","0" +"NM-10349","79.5999984741211","79.5999984741211","","1960-03-24T00:00:00Z","","0" +"NM-09418","65","65","","1954-11-02T00:00:00Z","","0" +"SB-0299","131.83999633789062","131.83999633789062","","1997-09-25T00:00:00Z","","0" +"NM-05836","58.599998474121094","58.599998474121094","","1933-05-22T00:00:00Z","","0" +"NM-01066","101.48999786376953","101.48999786376953","","1948-05-30T00:00:00Z","","0" +"SA-0017","341.69000244140625","340.739990234375","","2015-02-26T00:00:00Z","","0.949999988079071" +"NM-22021","57.779998779296875","57.779998779296875","","1972-09-13T00:00:00Z","","0" +"AB-0145","966.77001953125","966.77001953125","","2008-09-27T00:00:00Z","","0" +"NM-26727","153.82000732421875","153.82000732421875","","1986-11-20T00:00:00Z","","0" +"NM-02475","66.2699966430664","66.2699966430664","","1957-10-18T00:00:00Z","","0" +"NM-28257","88.80000305175781","88.80000305175781","","1961-10-05T00:00:00Z","","0" +"NM-02702","12.550000190734863","12.550000190734863","","1990-02-09T00:00:00Z","","0" +"NM-17716","3.7200000286102295","3.7200000286102295","","1946-05-23T00:00:00Z","","0" +"AB-0005","392.4700012207031","392.4700012207031","","2000-01-04T00:00:00Z","","" +"NM-02179","15.300000190734863","15.300000190734863","","1987-02-09T00:00:00Z","","0" +"SV-0094","167.5","165.6699981689453","","2016-10-23T00:00:00Z","","1.8300000429153442" +"NM-28255","9","9","","1996-12-05T00:00:00Z","","0" +"NM-19533","94.23999786376953","94.23999786376953","R","1982-03-25T00:00:00Z","","0" +"NM-09155","-47.20000076293945","-47.20000076293945","","1910-02-14T00:00:00Z","","0" +"AB-0053","50.400001525878906","50.400001525878906","","1996-09-23T00:00:00Z","","" +"NM-02983","92.05999755859375","92.05999755859375","","1995-01-04T00:00:00Z","","0" +"NM-07671","28.889999389648438","28.889999389648438","","1946-05-23T00:00:00Z","","0" +"NM-11578","26.559999465942383","26.559999465942383","","1939-03-21T00:00:00Z","","0" +"BC-0110","209.1300048828125","209.1300048828125","","2015-09-09T00:00:00Z","","0" +"DE-0096","91.87999725341797","91.87999725341797","","2014-04-29T00:00:00Z","","0" +"SV-0064","158.39999389648438","156.5699920654297","","2017-10-15T00:00:00Z","","1.8300000429153442" +"NM-04248","105.38999938964844","105.38999938964844","","1960-01-08T00:00:00Z","","0" +"NM-11556","78.25","78.25","","1952-03-13T00:00:00Z","","0" +"NM-02702","52.25","52.25","","1983-04-05T00:00:00Z","","0" +"NM-02620","15","15","","1972-03-15T00:00:00Z","","0" +"NM-13141","190.10000610351562","190.10000610351562","","1953-01-28T00:00:00Z","","0" +"DE-0111","41.439998626708984","41.439998626708984","","2011-08-04T00:00:00Z","","0" +"NM-03698","221.80999755859375","221.80999755859375","","1977-01-20T00:00:00Z","","0" +"NM-28251","91.43000030517578","91.43000030517578","","1976-05-15T00:00:00Z","","0" +"NM-11017","56.400001525878906","56.400001525878906","P","1954-09-16T00:00:00Z","","0" +"NM-01926","5.400000095367432","5.400000095367432","","1960-07-15T00:00:00Z","","0" +"NM-03290","8.010000228881836","8.010000228881836","","1957-01-30T00:00:00Z","","0" +"SV-0037","95.69999694824219","93.94999694824219","","2019-02-23T00:00:00Z","","1.75" +"NM-28259","56.779998779296875","56.779998779296875","","1953-02-15T00:00:00Z","","0" +"NM-13245","-37.959999084472656","-37.959999084472656","","1911-11-10T00:00:00Z","","0" +"BC-0197","224.22999572753906","224.22999572753906","","2016-03-10T00:00:00Z","","0" +"NM-02162","83.37000274658203","83.37000274658203","","1953-01-09T00:00:00Z","","0" +"NM-08314","41.540000915527344","41.540000915527344","P","1953-01-07T00:00:00Z","","0" +"NM-20459","110.76000213623047","110.76000213623047","","1955-07-21T00:00:00Z","","0" +"NM-28252","65.12999725341797","65.12999725341797","","1973-04-25T00:00:00Z","","0" +"NM-09374","29.209999084472656","29.209999084472656","","1932-10-01T00:00:00Z","","0" +"NM-20921","113.55000305175781","113.55000305175781","","1995-03-24T00:00:00Z","","0" +"NM-01898","85.58000183105469","85.58000183105469","","1999-01-21T00:00:00Z","","0" +"NM-02758","307.5799865722656","307.5799865722656","","1985-05-21T00:00:00Z","","0" +"NM-02726","56.849998474121094","56.849998474121094","","1971-01-20T00:00:00Z","","0" +"NM-11928","-0.6600000262260437","-0.6600000262260437","","1944-02-01T00:00:00Z","","0" +"NM-14077","-7.929999828338623","-7.929999828338623","","1913-07-11T00:00:00Z","","0" +"NM-17324","28.889999389648438","28.889999389648438","","1942-01-23T00:00:00Z","","0" +"NM-14672","115.18000030517578","115.18000030517578","","1959-11-18T00:00:00Z","","0" +"NM-28252","44.939998626708984","44.939998626708984","","2008-11-25T00:00:00Z","","0" +"NM-03003","93.87000274658203","93.87000274658203","","1997-01-15T00:00:00Z","","0" +"QY-0987","4.599999904632568","4.599999904632568","","1953-08-13T00:00:00Z","","0" +"NM-14224","2.9000000953674316","2.9000000953674316","","1960-01-11T00:00:00Z","","0" +"NM-02117","81.62999725341797","81.62999725341797","","1969-02-04T00:00:00Z","","0" +"NM-20568","155.69000244140625","155.69000244140625","","1990-03-22T00:00:00Z","","0" +"NM-01898","60.06999969482422","60.06999969482422","","2009-06-17T00:00:00Z","","0" +"NM-22994","7.679999828338623","7.679999828338623","Z","2010-08-31T00:00:00Z","","0" +"NM-02757","18.18000030517578","18.18000030517578","","1955-01-11T00:00:00Z","","0" +"NM-21306","6.179999828338623","6.179999828338623","","1946-05-15T00:00:00Z","","0" +"NM-16762","2.690000057220459","2.690000057220459","","1941-05-20T00:00:00Z","","0" +"NM-06416","205.91000366210938","205.91000366210938","","1992-09-01T00:00:00Z","","0" +"NM-01893","19.31999969482422","19.31999969482422","","1998-08-27T00:00:00Z","","0" +"NM-00428","58.79999923706055","58.79999923706055","","1989-01-04T00:00:00Z","","0" +"QU-106","17.239999771118164","20.360000610351562","","2013-08-30T00:00:00Z","","-3.119999885559082" +"SB-0074","166.25999450683594","166.25999450683594","","1978-01-17T00:00:00Z","","0" +"NM-20289","43.810001373291016","43.810001373291016","","1947-05-30T00:00:00Z","","0" +"NM-10331","586.3699951171875","586.3699951171875","","1963-05-01T00:00:00Z","","0" +"NM-21886","4.550000190734863","4.550000190734863","Z","2010-08-18T00:00:00Z","","0" +"NM-03038","130.5500030517578","130.5500030517578","","1995-01-04T00:00:00Z","","0" +"NM-27317","216.38999938964844","216.38999938964844","","1989-09-12T00:00:00Z","","0" +"NM-03386","40.25","40.25","","1993-12-28T00:00:00Z","","0" +"NM-04407","93.80999755859375","93.80999755859375","","1957-01-24T00:00:00Z","","0" +"NM-13234","4.25","4.25","","1957-08-26T00:00:00Z","","0" +"NM-02939","97.52999877929688","97.52999877929688","","1995-01-20T00:00:00Z","","0" +"BC-0092","21.309999465942383","21.309999465942383","","2011-11-17T00:00:00Z","","0" +"NM-10334","140.1300048828125","140.1300048828125","","1990-12-20T00:00:00Z","","0" +"NM-17039","87.44999694824219","87.44999694824219","","1974-01-04T00:00:00Z","","0" +"NM-08859","46.189998626708984","46.189998626708984","","1966-03-03T00:00:00Z","","0" +"NM-28015","498.8900146484375","498.8900146484375","S","2015-05-19T00:00:00Z","","0" +"BC-0155","354.1700134277344","354.1700134277344","","2015-09-02T00:00:00Z","","0" +"NM-12363","44.06999969482422","44.06999969482422","S","1981-01-13T00:00:00Z","","0" +"NM-08189","8.800000190734863","8.800000190734863","","1968-10-15T00:00:00Z","","0" +"NM-21869","35.189998626708984","35.189998626708984","","2006-01-18T00:00:00Z","","0" +"NM-02197","17.940000534057617","17.940000534057617","","2003-12-18T00:00:00Z","","0" +"NM-02004","7.300000190734863","7.300000190734863","","1975-11-15T00:00:00Z","","0" +"NM-01796","6.800000190734863","6.800000190734863","","1957-10-15T00:00:00Z","","0" +"NM-03386","48.22999954223633","48.22999954223633","","2003-09-25T00:00:00Z","","0" +"NM-22738","60.88999938964844","60.88999938964844","","1958-04-21T00:00:00Z","","0" +"NM-02924","92.62999725341797","92.62999725341797","","1959-01-13T00:00:00Z","","0" +"NM-13135","5.110000133514404","5.110000133514404","","1981-01-21T00:00:00Z","","0" +"DE-0071","204.1999969482422","201.59999084472656","","1997-10-09T00:00:00Z","","2.5999999046325684" +"EB-288","103.58000183105469","103.58000183105469","","1974-07-03T00:00:00Z","","0" +"NM-00558","59.290000915527344","59.290000915527344","","1959-01-15T00:00:00Z","","0" +"NM-04365","81.58000183105469","81.58000183105469","","1959-05-22T00:00:00Z","","0" +"AB-0050","554.0800170898438","554.0800170898438","","1991-03-05T00:00:00Z","","" +"NM-04683","249.1199951171875","249.1199951171875","","1991-06-06T00:00:00Z","","0" +"EB-244","110.30000305175781","110.30000305175781","","2005-10-25T00:00:00Z","","0" +"BC-0045","193.4199981689453","193.4199981689453","","2016-03-10T00:00:00Z","","0" +"NM-01951","80.9000015258789","80.9000015258789","","1982-01-05T00:00:00Z","","0" +"NM-06303","73.19999694824219","73.19999694824219","","1991-04-26T00:00:00Z","","0" +"AB-0035","362.9800109863281","362.9800109863281","S","1984-05-24T00:00:00Z","","" +"NM-21875","6.78000020980835","6.78000020980835","Z","2005-10-05T00:00:00Z","","0" +"NM-02352","8.600000381469727","8.600000381469727","","1960-01-15T00:00:00Z","","0" +"NM-17716","8.289999961853027","8.289999961853027","","1940-08-27T00:00:00Z","","0" +"NM-09289","124.31999969482422","124.31999969482422","","1979-01-04T00:00:00Z","","0" +"NM-01269","84.69000244140625","84.69000244140625","","1951-04-18T00:00:00Z","","0" +"NM-21500","204.5399932861328","204.5399932861328","","2012-06-26T00:00:00Z","","0" +"NM-00055","36","36","","1956-04-11T00:00:00Z","","0" +"AB-0191","885.8599853515625","885.8599853515625","Z","1991-04-05T00:00:00Z","","" +"NM-25680","-103.87999725341797","-103.87999725341797","","1989-03-04T00:00:00Z","","0" +"NM-27924","34.95000076293945","34.95000076293945","","1990-04-05T00:00:00Z","","0" +"NM-02874","41.54999923706055","41.54999923706055","","1996-03-13T00:00:00Z","","0" +"NM-13892","-26.40999984741211","-26.40999984741211","","1912-12-19T00:00:00Z","","0" +"NM-11795","53.189998626708984","53.189998626708984","","1962-03-28T00:00:00Z","","0" +"NM-03389","35.959999084472656","35.959999084472656","","2001-09-25T00:00:00Z","","0" +"NM-02282","401.2300109863281","401.2300109863281","","1966-03-01T00:00:00Z","","0" +"NM-11928","0.1899999976158142","0.1899999976158142","","1957-04-05T00:00:00Z","","0" +"NM-18427","296.0899963378906","296.0899963378906","","1982-01-20T00:00:00Z","","0" +"NM-01947","3.5999999046325684","3.5999999046325684","","1988-07-15T00:00:00Z","","0" +"NM-08048","386.1700134277344","386.1700134277344","","1956-07-18T00:00:00Z","","0" +"EB-142","73.80999755859375","73.80999755859375","","2001-03-26T00:00:00Z","","0" +"NM-01892","23.510000228881836","23.510000228881836","","2014-12-09T00:00:00Z","","0" +"EB-415","158.72999572753906","158.72999572753906","","2009-08-07T00:00:00Z","","0" +"NM-01239","32.349998474121094","32.349998474121094","","1960-05-11T00:00:00Z","","0" +"TV-274","88.95999908447266","86.80999755859375","","2007-05-03T00:00:00Z","","2.1500000953674316" +"DE-0235","103.98999786376953","103.98999786376953","","2006-02-14T00:00:00Z","","0" +"NM-02407","30.5","30.5","","1945-07-17T00:00:00Z","","0" +"NM-02591","12.600000381469727","12.600000381469727","","1974-12-15T00:00:00Z","","0" +"NM-08071","7.900000095367432","7.900000095367432","","1982-06-15T00:00:00Z","","0" +"NM-11000","71.29000091552734","71.29000091552734","","1992-01-07T00:00:00Z","","0" +"AB-0143","347.6000061035156","347.6000061035156","P","1988-07-15T00:00:00Z","","0" +"NM-05422","177.14999389648438","177.14999389648438","","1970-12-01T00:00:00Z","","0" +"NM-04037","112.30999755859375","112.30999755859375","","1975-01-16T00:00:00Z","","0" +"EB-246","264.5899963378906","264.5899963378906","Z","1999-01-26T00:00:00Z","","0" +"NM-16342","51.29999923706055","51.29999923706055","","1982-02-25T00:00:00Z","","0" +"NM-00189","14.460000038146973","14.460000038146973","","1987-10-14T00:00:00Z","","0" +"TC-231","240.86000061035156","240.86000061035156","","2009-06-03T00:00:00Z","","0" +"NM-13982","-13.710000038146973","-13.710000038146973","","1907-11-30T00:00:00Z","","0" +"NM-11567","39.119998931884766","39.119998931884766","","1950-01-16T00:00:00Z","","0" +"NM-08246","20.040000915527344","20.040000915527344","","1942-10-23T00:00:00Z","","0" +"NM-02238","195.5","195.5","P","1961-07-30T00:00:00Z","","0" +"NM-00484","82","82","","1982-01-06T00:00:00Z","","0" +"NM-21877","8.15999984741211","8.15999984741211","Z","2009-02-24T00:00:00Z","","0" +"BC-0348","273.95001220703125","273.95001220703125","","2019-07-25T00:00:00Z","","0" +"NM-14897","73.69999694824219","73.69999694824219","","1958-01-07T00:00:00Z","","0" +"AB-0091","506.3699951171875","506.3699951171875","","2011-01-28T00:00:00Z","","" +"NM-06928","64.55000305175781","64.55000305175781","","1947-12-15T00:00:00Z","","0" +"NM-28254","89.30000305175781","89.30000305175781","","1994-09-05T00:00:00Z","","0" +"NM-18914","341.4800109863281","341.4800109863281","","1987-01-14T00:00:00Z","","0" +"NM-02675","70.05000305175781","70.05000305175781","","1968-01-03T00:00:00Z","","0" +"NM-13535","-0.019999999552965164","-0.019999999552965164","","1958-10-20T00:00:00Z","","0" +"NM-02259","34.16999816894531","34.16999816894531","","2006-01-25T00:00:00Z","","0" +"NM-05347","9.5","9.5","","1960-01-15T00:00:00Z","","0" +"NM-12692","-2","-2","","1912-11-10T00:00:00Z","","0" +"NM-17635","4.059999942779541","4.059999942779541","","1945-04-05T00:00:00Z","","0" +"NM-12725","22.850000381469727","22.850000381469727","","1948-01-15T00:00:00Z","","0" +"NM-02888","75.94999694824219","75.94999694824219","","1961-01-11T00:00:00Z","","0" +"NM-28258","150.75","150.75","","1989-10-05T00:00:00Z","","0" +"NM-07954","84.55999755859375","84.55999755859375","","1996-01-30T00:00:00Z","","0" +"NM-02125","136.39999389648438","136.39999389648438","","1970-01-14T00:00:00Z","","0" +"NM-04205","31.15999984741211","31.15999984741211","","1954-04-13T00:00:00Z","","0" +"DE-0259","82.87000274658203","82.87000274658203","","2017-12-13T00:00:00Z","","0" +"NM-28252","48.20000076293945","48.20000076293945","","2019-04-05T00:00:00Z","","0" +"NM-03192","82.08999633789062","82.08999633789062","","1992-03-12T00:00:00Z","","0" +"NM-28258","206.5500030517578","206.5500030517578","","2011-08-05T00:00:00Z","","0" +"NM-01948","7.400000095367432","7.400000095367432","","1953-01-15T00:00:00Z","","0" +"NM-10600","36.16999816894531","36.16999816894531","","1948-07-16T00:00:00Z","","0" +"NM-26678","91.2699966430664","91.2699966430664","","1956-08-08T00:00:00Z","","0" +"NM-14895","79.5199966430664","79.5199966430664","","1956-01-09T00:00:00Z","","0" +"NM-14222","-26.200000762939453","-26.200000762939453","","1913-07-13T00:00:00Z","","0" +"NM-21842","220.69000244140625","220.69000244140625","","2009-09-01T00:00:00Z","","0" +"NM-01890","36.959999084472656","36.959999084472656","","1998-01-20T00:00:00Z","","0" +"NM-02006","8","8","","1984-06-15T00:00:00Z","","0" +"NM-04584","37.939998626708984","37.939998626708984","","1957-09-26T00:00:00Z","","0" +"NM-02809","33.33000183105469","33.33000183105469","","1963-01-05T00:00:00Z","","0" +"NM-02772","110.0199966430664","110.0199966430664","","1976-03-01T00:00:00Z","","0" +"NM-28254","97.29000091552734","97.29000091552734","","1993-05-05T00:00:00Z","","0" +"GT-002","444.44000244140625","443.3500061035156","","2020-05-29T00:00:00Z","0001-01-01T11:29:00Z","1.090000033378601" +"NM-14535","86.62999725341797","86.62999725341797","","1970-11-05T00:00:00Z","","0" +"NM-18629","55","55","","1966-12-15T00:00:00Z","","0" +"WL-0177","182.91000366210938","181.50999450683594","AA","2023-06-15T00:00:00Z","0001-01-01T12:00:00Z","1.399999976158142" +"NM-03298","34.939998626708984","34.939998626708984","","1969-02-26T00:00:00Z","","0" +"NM-08018","8.960000038146973","8.960000038146973","","2004-05-25T00:00:00Z","","0" +"NM-01826","157.8000030517578","157.8000030517578","","1972-11-28T00:00:00Z","","0" +"NM-07719","89.68000030517578","89.68000030517578","R","1955-07-07T00:00:00Z","","0" +"NM-06755","48.52000045776367","48.52000045776367","","1997-02-27T00:00:00Z","","0" +"NM-11877","67.7300033569336","67.7300033569336","","1961-01-26T00:00:00Z","","0" +"NM-03726","56.0099983215332","56.0099983215332","","1975-01-20T00:00:00Z","","0" +"NM-14151","239.8699951171875","239.8699951171875","","1943-06-18T00:00:00Z","","0" +"TB-0164","13.829999923706055","13.229999542236328","X?","2010-04-21T00:00:00Z","","0.6000000238418579" +"AB-0213","155.6199951171875","155.6199951171875","","1999-09-30T00:00:00Z","","" +"NM-01704","57.02000045776367","57.02000045776367","","1988-05-20T00:00:00Z","","0" +"NM-01769","40.189998626708984","40.189998626708984","","1955-01-24T00:00:00Z","","0" +"NM-21557","6.329999923706055","6.329999923706055","Z","2004-05-07T00:00:00Z","","0" +"NM-02054","8.800000190734863","8.800000190734863","","1987-02-01T00:00:00Z","","0" +"OG-0053","","","O","2023-01-25T00:00:00Z","","0.2199999988079071" +"NM-00545","57.5","57.5","","1971-02-25T00:00:00Z","","0" +"NM-05983","38.5","38.5","","1960-01-14T00:00:00Z","","0" +"NM-00071","17.75","17.75","","2003-01-28T00:00:00Z","","0" +"EB-261","4.599999904632568","2.799999952316284","","1999-06-23T00:00:00Z","","1.7999999523162842" +"WL-0086","65.375","63.6150016784668","","1999-11-04T00:00:00Z","","1.7599999904632568" +"NM-06848","15.380000114440918","15.380000114440918","","1955-03-16T00:00:00Z","","0" +"NM-01424","434.6300048828125","434.6300048828125","","2012-01-23T00:00:00Z","","0" +"NM-02209","103","103","","1962-02-01T00:00:00Z","","0" +"NM-00543","55.33000183105469","55.33000183105469","","1981-01-07T00:00:00Z","","0" +"NM-03002","73.05999755859375","73.05999755859375","","1983-01-09T00:00:00Z","","0" +"NM-25216","215.86000061035156","215.86000061035156","","1981-02-12T00:00:00Z","","0" +"EB-287","464","463.20001220703125","","1976-11-01T00:00:00Z","","0.800000011920929" +"NM-01991","9.619999885559082","9.619999885559082","","1974-02-21T00:00:00Z","","0" +"NM-09880","49.41999816894531","49.41999816894531","","1981-01-14T00:00:00Z","","0" +"NM-02403","55.02000045776367","55.02000045776367","","1992-01-17T00:00:00Z","","0" +"NM-11518","37.619998931884766","37.619998931884766","","1935-10-18T00:00:00Z","","0" +"NM-08189","9.399999618530273","9.399999618530273","","1973-01-15T00:00:00Z","","0" +"NM-13936","-11.109999656677246","-11.109999656677246","","1910-12-22T00:00:00Z","","0" +"NM-10942","42.060001373291016","42.060001373291016","","1953-01-16T00:00:00Z","","0" +"SV-0018","251","249.1699981689453","","2017-08-06T00:00:00Z","","1.8300000429153442" +"NM-06156","1.690000057220459","1.690000057220459","","1976-07-01T00:00:00Z","","0" +"DE-0113","33.439998626708984","33.439998626708984","","2005-04-18T00:00:00Z","","0" +"NM-10449","103.23999786376953","103.23999786376953","","1984-01-26T00:00:00Z","","0" +"NM-04569","61.130001068115234","61.130001068115234","","1950-07-21T00:00:00Z","","0" +"NM-03192","55.400001525878906","55.400001525878906","","1960-02-11T00:00:00Z","","0" +"NM-05243","134.60000610351562","134.60000610351562","","1992-01-31T00:00:00Z","","0" +"NM-00047","39.09000015258789","39.09000015258789","","1958-01-29T00:00:00Z","","0" +"NM-22745","92","92","","1981-03-28T00:00:00Z","","0" +"NM-13623","57.779998779296875","57.779998779296875","P","1958-07-16T00:00:00Z","","0" +"NM-02019","100.19000244140625","100.19000244140625","","1961-01-17T00:00:00Z","","0" +"NM-28254","30.200000762939453","30.200000762939453","","2003-12-05T00:00:00Z","","0" +"NM-13036","8.079999923706055","8.079999923706055","","1973-03-20T00:00:00Z","","0" +"NM-22296","33.439998626708984","33.439998626708984","","1992-06-01T00:00:00Z","","0" +"NM-02591","14","14","","1962-10-15T00:00:00Z","","0" +"NM-14336","53.77000045776367","53.77000045776367","R","1970-07-28T00:00:00Z","","0" +"BC-0031","233.32000732421875","233.32000732421875","","2018-09-23T00:00:00Z","","0" +"NM-01158","34.93000030517578","34.93000030517578","","2015-03-13T00:00:00Z","","0" +"NM-11318","16.809999465942383","16.809999465942383","","1968-10-10T00:00:00Z","","0" +"NM-13984","-11.399999618530273","-11.399999618530273","","1907-03-08T00:00:00Z","","0" +"NM-01886","85.01000213623047","85.01000213623047","","2011-06-02T00:00:00Z","","0" +"NM-20411","73.76000213623047","73.76000213623047","","1949-01-15T00:00:00Z","","0" +"NM-02756","22.450000762939453","22.450000762939453","","2011-01-18T00:00:00Z","","0" +"NM-05707","20.65999984741211","20.65999984741211","","1958-07-22T00:00:00Z","","0" +"NM-20308","79.47000122070312","79.47000122070312","","1951-05-28T00:00:00Z","","0" +"NM-13118","10.050000190734863","10.050000190734863","","1977-02-16T00:00:00Z","","0" +"NM-14990","83.30999755859375","83.30999755859375","","1990-01-11T00:00:00Z","","0" +"NM-12718","37.349998474121094","37.349998474121094","","1940-04-15T00:00:00Z","","0" +"NM-17716","1.6299999952316284","1.6299999952316284","","1945-03-26T00:00:00Z","","0" +"DE-0233","106.19000244140625","106.19000244140625","","2003-11-03T00:00:00Z","","0" +"SM-0074","159.89999389648438","159.4099884033203","","2008-02-13T00:00:00Z","","0.49000000953674316" +"NM-21398","221.7100067138672","221.7100067138672","T","1984-11-21T00:00:00Z","","0" +"EB-481","415.04998779296875","415.04998779296875","Z","2006-01-31T00:00:00Z","","0" +"NM-00094","-0.38999998569488525","-0.38999998569488525","","1969-01-27T00:00:00Z","","0" +"NM-03405","11.699999809265137","11.699999809265137","Z","2008-08-28T00:00:00Z","","0" +"NM-10331","580.5700073242188","580.5700073242188","","1957-02-01T00:00:00Z","","0" +"NM-00650","19.68000030517578","19.68000030517578","","2015-12-15T00:00:00Z","","0" +"NM-15019","14.550000190734863","14.550000190734863","","1957-01-23T00:00:00Z","","0" +"NM-28253","10.640000343322754","10.640000343322754","","2002-11-25T00:00:00Z","","0" +"NM-22955","113.44999694824219","113.44999694824219","","1954-03-07T00:00:00Z","","0" +"NM-02284","17.010000228881836","17.010000228881836","","2016-06-20T00:00:00Z","","0" +"NM-21744","10.210000038146973","10.210000038146973","","2012-06-19T00:00:00Z","","0" +"EB-482","224","224","Z","1991-08-31T00:00:00Z","","0" +"NM-03552","68.44999694824219","68.44999694824219","","1996-01-26T00:00:00Z","","0" +"DE-0242","110.12999725341797","110.12999725341797","","2005-08-23T00:00:00Z","","0" +"NM-02095","366.0199890136719","366.0199890136719","","2000-03-07T00:00:00Z","","0" +"NM-06592","85.51000213623047","85.51000213623047","","1953-09-29T00:00:00Z","","0" +"SA-0111","172.4199981689453","171.05999755859375","","2010-11-10T00:00:00Z","","1.3600000143051147" +"NM-02799","6.440000057220459","6.440000057220459","","1946-01-22T00:00:00Z","","0" +"NM-00680","45.38999938964844","45.38999938964844","","1990-08-23T00:00:00Z","","0" +"NM-16690","54.189998626708984","54.189998626708984","","1995-06-05T00:00:00Z","","0" +"NM-24987","112.37999725341797","112.37999725341797","","1956-12-04T00:00:00Z","","0" +"NM-28250","93.52999877929688","93.52999877929688","","2014-05-15T00:00:00Z","","0" +"NM-12158","-29.8799991607666","-29.8799991607666","","1910-09-13T00:00:00Z","","0" +"NM-28253","6.090000152587891","6.090000152587891","","1999-11-25T00:00:00Z","","0" +"NM-00643","102.94000244140625","102.94000244140625","","2004-05-25T00:00:00Z","","0" +"NM-00171","38.72999954223633","38.72999954223633","","1948-02-09T00:00:00Z","","0" +"NM-20837","451.20001220703125","451.20001220703125","Z","1995-08-30T00:00:00Z","","0" +"NM-13315","73.48999786376953","73.48999786376953","","1963-09-30T00:00:00Z","","0" +"NM-06658","577.0599975585938","577.0599975585938","","1995-02-22T00:00:00Z","","0" +"NM-14898","175.52999877929688","175.52999877929688","","1980-01-17T00:00:00Z","","0" +"TB-0203","99.08999633789062","98.19999694824219","","2009-04-14T00:00:00Z","","0.8899999856948853" +"SA-0026","207.27999877929688","210.3800048828125","","2022-02-21T00:00:00Z","0001-01-01T15:06:00Z","-3.0999999046325684" +"NM-02396","6.900000095367432","6.900000095367432","","1981-06-15T00:00:00Z","","0" +"NM-02043","5.599999904632568","5.599999904632568","","1967-04-15T00:00:00Z","","0" +"NM-01786","168.08999633789062","168.08999633789062","","1963-08-06T00:00:00Z","","0" +"NM-07765","120","120","","1947-01-01T00:00:00Z","","0" +"NM-02749","146.1699981689453","146.1699981689453","","1969-01-16T00:00:00Z","","0" +"NM-03032","49.900001525878906","49.900001525878906","","1960-09-15T00:00:00Z","","0" +"NM-11909","32.66999816894531","32.66999816894531","","1927-03-08T00:00:00Z","","0" +"NM-06332","26.700000762939453","26.700000762939453","","1978-01-04T00:00:00Z","","0" +"AB-0124","545.1799926757812","545.1799926757812","","1999-09-28T00:00:00Z","","" +"DE-0110","40.43000030517578","40.43000030517578","","2008-07-14T00:00:00Z","","0" +"NM-24810","152.25","152.25","","1961-12-19T00:00:00Z","","0" +"NM-02724","15.279999732971191","15.279999732971191","","1962-04-10T00:00:00Z","","0" +"NM-27655","99.30000305175781","99.30000305175781","","1962-01-18T00:00:00Z","","0" +"NM-10995","32.75","32.75","","1958-08-27T00:00:00Z","","0" +"NM-15478","98.02999877929688","98.02999877929688","","1964-10-28T00:00:00Z","","0" +"NM-25297","823","823","","1965-07-01T00:00:00Z","","0" +"NM-04270","13.300000190734863","13.300000190734863","","1957-01-09T00:00:00Z","","0" +"NM-10667","-18.329999923706055","-18.329999923706055","","1906-10-06T00:00:00Z","","0" +"NM-00253","25.729999542236328","25.729999542236328","","1974-08-01T00:00:00Z","","0" +"UC-0015","191.10000610351562","191.10000610351562","","2008-02-28T00:00:00Z","","0" +"NM-17716","5.110000133514404","5.110000133514404","","1949-09-27T00:00:00Z","","0" +"NM-10756","44.380001068115234","44.380001068115234","","1942-07-27T00:00:00Z","","0" +"NM-28255","188.5399932861328","188.5399932861328","","2003-07-15T00:00:00Z","","0" +"NM-19368","24.15999984741211","24.15999984741211","","1966-09-21T00:00:00Z","","0" +"NM-05692","106.63999938964844","106.63999938964844","","1968-02-29T00:00:00Z","","0" +"NM-02807","61.709999084472656","61.709999084472656","","2007-02-07T00:00:00Z","","0" +"NM-00436","57.77000045776367","57.77000045776367","","1996-01-19T00:00:00Z","","0" +"NM-00751","23.799999237060547","23.799999237060547","","1960-07-22T00:00:00Z","","0" +"NM-02930","80.58000183105469","80.58000183105469","","1985-01-25T00:00:00Z","","0" +"NM-06896","16.1200008392334","16.1200008392334","","1982-10-19T00:00:00Z","","0" +"NM-17340","82.77999877929688","82.77999877929688","","1975-01-06T00:00:00Z","","0" +"NM-25912","282.1000061035156","282.1000061035156","","1987-02-04T00:00:00Z","","0" +"NM-02135","68.0199966430664","68.0199966430664","R","1947-01-11T00:00:00Z","","0" +"NM-06581","46.13999938964844","46.13999938964844","","1961-05-24T00:00:00Z","","0" +"NM-03391","26.979999542236328","26.979999542236328","","1993-05-04T00:00:00Z","","0" +"NM-28015","498.8500061035156","498.8500061035156","S","2015-05-28T00:00:00Z","","0" +"AB-0210","176.52000427246094","176.52000427246094","","2011-10-05T00:00:00Z","","" +"NM-15991","49.31999969482422","49.31999969482422","","1964-02-17T00:00:00Z","","0" +"NM-28253","14.039999961853027","14.039999961853027","","2015-02-06T00:00:00Z","","0" +"EB-416","269.3500061035156","269.3500061035156","Z","2008-06-30T00:00:00Z","","0" +"NM-28253","24.139999389648438","24.139999389648438","","1989-09-25T00:00:00Z","","0" +"NM-20229","55.29999923706055","55.29999923706055","","1948-10-01T00:00:00Z","","0" +"NM-02043","5.300000190734863","5.300000190734863","","1991-09-15T00:00:00Z","","0" +"SB-0375","50.459999084472656","50.459999084472656","","1972-09-26T00:00:00Z","","0" +"NM-00257","94.0199966430664","94.0199966430664","Z","1996-08-19T00:00:00Z","","0" +"NM-09743","59.040000915527344","59.040000915527344","","1947-09-27T00:00:00Z","","0" +"NM-03331","11.619999885559082","11.619999885559082","","2002-06-06T00:00:00Z","","0" +"SB-0299","143.89999389648438","143.89999389648438","","2013-10-30T00:00:00Z","","0" +"NM-10374","49.33000183105469","49.33000183105469","","1986-02-14T00:00:00Z","","0" +"NM-27404","170.8000030517578","170.8000030517578","P","1963-08-13T00:00:00Z","","0" +"NM-02225","83.91000366210938","83.91000366210938","","1956-03-08T00:00:00Z","","0" +"SO-0240","5.010000228881836","3.8400001525878906","","2021-04-09T00:00:00Z","0001-01-01T16:31:00Z","1.1699999570846558" +"NM-11998","15.989999771118164","15.989999771118164","","1948-01-24T00:00:00Z","","0" +"NM-24311","109.18000030517578","109.18000030517578","P","1993-03-03T00:00:00Z","","0" +"NM-02571","41.15999984741211","41.15999984741211","","1974-01-10T00:00:00Z","","0" +"NM-07031","76.05999755859375","76.05999755859375","","2005-01-27T00:00:00Z","","0" +"BC-0391","","194.5","","2021-03-14T00:00:00Z","","1.600000023841858" +"SO-0217","13.020000457763672","11.410000801086426","","2016-08-03T00:00:00Z","","1.6100000143051147" +"NM-01829","310","310","","1973-08-10T00:00:00Z","","0" +"NM-03687","129.47000122070312","129.47000122070312","","1974-02-20T00:00:00Z","","0" +"NM-26121","68.06999969482422","68.06999969482422","","1981-02-11T00:00:00Z","","0" +"NM-02697","41.84000015258789","41.84000015258789","","1999-01-15T00:00:00Z","","0" +"NM-01868","14.5","14.5","","1964-11-15T00:00:00Z","","0" +"SB-0431","40.650001525878906","40.650001525878906","","1960-01-26T00:00:00Z","","0" +"NM-01540","55.63999938964844","55.63999938964844","","2009-08-24T00:00:00Z","","0" +"NM-00273","53.09000015258789","53.09000015258789","","2012-12-17T00:00:00Z","","0" +"NM-02560","124.69999694824219","124.69999694824219","Z","1996-06-21T00:00:00Z","","0" +"NM-00120","329.6499938964844","329.6499938964844","","1964-12-29T00:00:00Z","","0" +"DE-0108","37.0099983215332","37.0099983215332","","2007-10-22T00:00:00Z","","0" +"DE-0327","28.100000381469727","28.100000381469727","","2013-06-06T00:00:00Z","","0" +"PC-052","226.55999755859375","229.55999755859375","R","1999-04-16T00:00:00Z","","0" +"NM-02702","-25.979999542236328","-25.979999542236328","","1991-12-20T00:00:00Z","","0" +"NM-03320","151.50999450683594","151.50999450683594","","1990-02-13T00:00:00Z","","0" +"NM-02167","31","31","","2003-07-23T00:00:00Z","","0" +"NM-23102","11.399999618530273","11.399999618530273","Z","2010-08-25T00:00:00Z","","0" +"NM-26508","69.7699966430664","69.7699966430664","","2002-06-19T00:00:00Z","","0" +"NM-16100","44.349998474121094","44.349998474121094","","1980-01-31T00:00:00Z","","0" +"NM-03847","5.599999904632568","5.599999904632568","","2016-02-03T00:00:00Z","","0" +"NM-19952","37.939998626708984","37.939998626708984","","1949-01-14T00:00:00Z","","0" +"NM-03336","8.899999618530273","8.899999618530273","","1988-05-23T00:00:00Z","","0" +"NM-10389","6.429999828338623","6.429999828338623","","1946-01-11T00:00:00Z","","0" +"NM-28253","36.439998626708984","36.439998626708984","","2014-07-07T00:00:00Z","","0" +"NM-02701","20.329999923706055","20.329999923706055","","1944-01-22T00:00:00Z","","0" +"NM-01868","16.299999237060547","16.299999237060547","","1958-03-15T00:00:00Z","","0" +"NM-05315","170.1999969482422","170.1999969482422","P","1957-04-09T00:00:00Z","","0" +"NM-00185","12","12","","1981-04-15T00:00:00Z","","0" +"NM-02017","7.400000095367432","7.400000095367432","","2002-03-15T00:00:00Z","","0" +"EB-262","91.75","91.75","","2008-10-02T00:00:00Z","","0" +"TV-136","14.420000076293945","13.020000457763672","","2011-08-02T00:00:00Z","","1.399999976158142" +"NM-04155","108.05000305175781","108.05000305175781","","1968-01-19T00:00:00Z","","0" +"NM-13091","9.34000015258789","9.34000015258789","","1978-05-08T00:00:00Z","","0" +"NM-10755","51.13999938964844","51.13999938964844","","1953-01-12T00:00:00Z","","0" +"NM-14200","57.70000076293945","57.70000076293945","","1980-06-09T00:00:00Z","","0" +"NM-12412","-37.959999084472656","-37.959999084472656","","1909-06-27T00:00:00Z","","0" +"NM-23391","249.97000122070312","249.97000122070312","","1948-04-06T00:00:00Z","","0" +"NM-01885","20.860000610351562","20.860000610351562","","2000-01-20T00:00:00Z","","0" +"NM-04723","188.19000244140625","188.19000244140625","","2007-02-24T00:00:00Z","","0" +"NM-12100","57.560001373291016","57.560001373291016","","1976-05-05T00:00:00Z","","0" +"NM-00410","8.5600004196167","8.5600004196167","","1984-09-17T00:00:00Z","","0" +"NM-00933","191.1199951171875","191.1199951171875","","1961-01-19T00:00:00Z","","0" +"NM-02005","7","7","","1951-04-15T00:00:00Z","","0" +"NM-28253","9.640000343322754","9.640000343322754","","2002-12-05T00:00:00Z","","0" +"NM-22089","139.13999938964844","139.13999938964844","","1954-11-05T00:00:00Z","","0" +"NM-17048","24.149999618530273","24.149999618530273","","1948-09-28T00:00:00Z","","0" +"NM-13246","84.94999694824219","84.94999694824219","","1954-04-01T00:00:00Z","","0" +"AB-0067","148.44000244140625","148.44000244140625","","1999-01-13T00:00:00Z","","" +"NM-05031","53.099998474121094","53.099998474121094","","1948-01-19T00:00:00Z","","0" +"SB-0299","147.2899932861328","147.2899932861328","","2013-07-30T00:00:00Z","","0" +"NM-03338","9.109999656677246","9.109999656677246","","1989-04-26T00:00:00Z","","0" +"NM-20103","15.34000015258789","15.34000015258789","","1949-11-02T00:00:00Z","","0" +"NM-03380","63.27000045776367","63.27000045776367","","2001-06-12T00:00:00Z","","0" +"NM-06861","40.36000061035156","40.36000061035156","","1932-08-30T00:00:00Z","","0" +"NM-14265","426.3299865722656","426.3299865722656","","1969-12-01T00:00:00Z","","0" +"NM-02702","12.819999694824219","12.819999694824219","","1984-02-27T00:00:00Z","","0" +"TV-196","247.47999572753906","252.6699981689453","","2012-03-14T00:00:00Z","","-5.190000057220459" +"NM-01986","7.699999809265137","7.699999809265137","","1982-01-15T00:00:00Z","","0" +"SO-0179","5.96999979019165","5.039999961853027","","2021-02-14T00:00:00Z","0001-01-01T07:45:00Z","0.9300000071525574" +"NM-13076","262","262","","1979-01-01T00:00:00Z","","0" +"NM-00384","30.1200008392334","30.1200008392334","","1953-07-21T00:00:00Z","","0" +"MG-014","65.37000274658203","64.97000122070312","","2013-06-19T00:00:00Z","","0.4000000059604645" +"NM-02622","156.91000366210938","156.91000366210938","","1961-01-17T00:00:00Z","","0" +"NM-01868","8.100000381469727","8.100000381469727","","2000-02-18T00:00:00Z","","0" +"EB-416","31.170000076293945","31.170000076293945","Z","1983-09-30T00:00:00Z","","0" +"NM-28251","70.5","70.5","","1989-03-05T00:00:00Z","","0" +"NM-11252","180.4199981689453","180.4199981689453","","1975-01-15T00:00:00Z","","0" +"NM-14535","87.68000030517578","87.68000030517578","","1971-05-05T00:00:00Z","","0" +"NM-01912","10.40999984741211","10.40999984741211","","1953-08-13T00:00:00Z","","0" +"NM-02256","6.800000190734863","6.800000190734863","","1961-01-15T00:00:00Z","","0" +"NM-03957","57.650001525878906","57.650001525878906","","1960-02-24T00:00:00Z","","0" +"NM-03331","11.1899995803833","11.1899995803833","","2014-08-21T00:00:00Z","","0" +"NM-28250","105.88999938964844","105.88999938964844","","1981-04-25T00:00:00Z","","0" +"NM-25076","175.86000061035156","175.86000061035156","","1970-09-19T00:00:00Z","","0" +"NM-03455","292.1499938964844","292.1499938964844","","1959-01-26T00:00:00Z","","0" +"SB-0299","137.30999755859375","137.30999755859375","","1974-07-25T00:00:00Z","","0" +"NM-13274","-16.020000457763672","-16.020000457763672","","1910-03-19T00:00:00Z","","0" +"NM-28257","47.459999084472656","47.459999084472656","","1977-08-15T00:00:00Z","","0" +"NM-13857","4.139999866485596","4.139999866485596","","1958-05-19T00:00:00Z","","0" +"NM-20120","83.3499984741211","83.3499984741211","","1967-02-14T00:00:00Z","","0" +"NM-00428","74.41000366210938","74.41000366210938","","2013-12-12T00:00:00Z","","0" +"NM-04909","82.91000366210938","82.91000366210938","","1951-01-10T00:00:00Z","","0" +"NM-04185","72.86000061035156","72.86000061035156","P","1950-12-04T00:00:00Z","","0" +"NM-09206","193.97000122070312","193.97000122070312","","1963-01-09T00:00:00Z","","0" +"NM-28259","65.18000030517578","65.18000030517578","","1954-10-25T00:00:00Z","","0" +"NM-00686","59.900001525878906","59.900001525878906","Z","2006-06-30T00:00:00Z","","0" +"NM-02348","15.199999809265137","15.199999809265137","","2002-03-15T00:00:00Z","","0" +"NM-01985","9.899999618530273","9.899999618530273","","1973-01-15T00:00:00Z","","0" +"NM-09920","13.699999809265137","13.699999809265137","","2012-05-16T00:00:00Z","","0" +"NM-17630","73.44000244140625","73.44000244140625","","1967-01-04T00:00:00Z","","0" +"NM-06848","14.4399995803833","14.4399995803833","","1953-05-20T00:00:00Z","","0" +"NM-28016","494.510009765625","494.510009765625","S","2015-06-06T00:00:00Z","","0" +"SM-0043","106.66000366210938","105.36000061035156","","2006-06-13T00:00:00Z","","1.2999999523162842" +"NM-24271","59","59","","1980-03-20T00:00:00Z","","0" +"NM-21920","8.649999618530273","8.649999618530273","P","1948-04-05T00:00:00Z","","0" +"SA-0155","20.239999771118164","18.959999084472656","","2010-01-15T00:00:00Z","","1.2799999713897705" +"TV-205","44.61000061035156","43.04999923706055","","2011-03-16T00:00:00Z","","1.559999942779541" +"AR-0006","4.679999828338623","3.0799999237060547","","2016-03-15T00:00:00Z","","1.600000023841858" +"NM-07686","-54.130001068115234","-54.130001068115234","","1910-06-10T00:00:00Z","","0" +"NM-03887","41.029998779296875","41.029998779296875","","1952-07-24T00:00:00Z","","0" +"NM-01947","5.800000190734863","5.800000190734863","","1973-07-15T00:00:00Z","","0" +"NM-11323","4","4","","1981-08-26T00:00:00Z","","0" +"NM-17209","52.9900016784668","52.9900016784668","","1953-09-22T00:00:00Z","","0" +"NM-07225","198.1300048828125","198.1300048828125","","1967-09-01T00:00:00Z","","0" +"NM-21140","47.970001220703125","47.970001220703125","","1948-03-25T00:00:00Z","","0" +"SA-0020","30.219999313354492","29.01999855041504","","2017-02-20T00:00:00Z","0001-01-01T15:52:00Z","1.2000000476837158" +"NM-01955","8.100000381469727","8.100000381469727","","1952-02-15T00:00:00Z","","0" +"NM-21575","4.139999866485596","4.139999866485596","Z","2006-02-24T00:00:00Z","","0" +"TO-0410","46","46","","1948-08-11T00:00:00Z","","0" +"NM-23413","107.29000091552734","107.29000091552734","","1949-02-11T00:00:00Z","","0" +"NM-00435","66.4000015258789","66.4000015258789","","1975-08-13T00:00:00Z","","0" +"BC-0341","","152.6999969482422","","2021-10-20T00:00:00Z","","0" +"NM-01872","9.100000381469727","9.100000381469727","","1946-04-15T00:00:00Z","","0" +"EB-207","237.8300018310547","237.8300018310547","","2007-05-18T00:00:00Z","","0" +"NM-18714","326.7200012207031","326.7200012207031","","1982-01-15T00:00:00Z","","0" +"NM-16029","35.13999938964844","35.13999938964844","","1980-02-06T00:00:00Z","","0" +"NM-17582","40.72999954223633","40.72999954223633","","1941-01-16T00:00:00Z","","0" +"NM-01251","85.95999908447266","85.95999908447266","","1954-08-27T00:00:00Z","","0" +"BC-0156","185.67999267578125","185.67999267578125","","2003-07-20T00:00:00Z","","0" +"NM-20061","38.939998626708984","38.939998626708984","","1941-04-29T00:00:00Z","","0" +"NM-02620","8","8","","1985-09-15T00:00:00Z","","0" +"NM-02349","14.399999618530273","14.399999618530273","","1971-02-15T00:00:00Z","","0" +"NM-01947","3.5","3.5","","1984-12-15T00:00:00Z","","0" +"NM-03385","48.45000076293945","48.45000076293945","Z","2000-02-04T00:00:00Z","","0" +"NM-03864","96.80000305175781","96.80000305175781","","1956-01-23T00:00:00Z","","0" +"NM-12512","7.820000171661377","7.820000171661377","","1941-04-05T00:00:00Z","","0" +"NM-11777","58.599998474121094","58.599998474121094","","1966-02-17T00:00:00Z","","0" +"NM-05347","10.600000381469727","10.600000381469727","","1968-08-15T00:00:00Z","","0" +"NM-11795","37.130001068115234","37.130001068115234","","1939-06-17T00:00:00Z","","0" +"NM-23243","240.5","238.5","","2018-06-04T00:00:00Z","","2" +"NM-02232","119.54000091552734","119.54000091552734","","1979-01-15T00:00:00Z","","0" +"NM-22239","26.959999084472656","26.959999084472656","R","1992-10-20T00:00:00Z","","0" +"NM-28259","122.19999694824219","122.19999694824219","","1960-05-25T00:00:00Z","","0" +"NM-01947","7","7","","1965-07-15T00:00:00Z","","0" +"NM-12282","-31.100000381469727","-31.100000381469727","","1956-01-03T00:00:00Z","","0" +"NM-00608","101.1500015258789","101.1500015258789","R","2004-01-07T00:00:00Z","","0" +"NM-01926","7.199999809265137","7.199999809265137","","1981-02-15T00:00:00Z","","0" +"NM-21497","6.309999942779541","6.309999942779541","","2012-06-18T00:00:00Z","","0" +"NM-10745","55.849998474121094","55.849998474121094","","1952-01-08T00:00:00Z","","0" +"NM-19991","60.25","60.25","","1958-02-10T00:00:00Z","","0" +"NM-28416","70.87000274658203","70.87000274658203","","2017-09-20T00:00:00Z","","0" +"NM-03369","55.810001373291016","55.810001373291016","R","1993-03-04T00:00:00Z","","0" +"NM-21652","","","D","2006-06-28T00:00:00Z","","0" +"BC-0156","228.89999389648438","228.89999389648438","","2019-01-10T00:00:00Z","","0" +"NM-11831","70.0999984741211","70.0999984741211","","1944-01-25T00:00:00Z","","0" +"NM-15390","90.04000091552734","90.04000091552734","","1985-01-09T00:00:00Z","","0" +"NM-12010","33.56999969482422","33.56999969482422","Z","1994-01-25T00:00:00Z","","0" +"NM-02207","13.800000190734863","13.800000190734863","","1982-11-15T00:00:00Z","","0" +"MG-004","144.02000427246094","143.52000427246094","","2013-09-24T00:00:00Z","","0.5" +"EB-415","160.4499969482422","160.4499969482422","","2014-10-16T00:00:00Z","","0" +"NM-05252","1.899999976158142","1.899999976158142","","1962-01-19T00:00:00Z","","0" +"TB-0228","22.700000762939453","22.700000762939453","","2010-04-27T00:00:00Z","","0" +"NM-03559","23","23","","1987-02-12T00:00:00Z","","0" +"NM-02622","157.13999938964844","157.13999938964844","","1961-11-01T00:00:00Z","","0" +"NM-28256","247.44000244140625","247.44000244140625","","1981-04-05T00:00:00Z","","0" +"NM-20122","60.27000045776367","60.27000045776367","S","1955-01-13T00:00:00Z","","0" +"NM-12623","24.270000457763672","24.270000457763672","","1945-01-21T00:00:00Z","","0" +"NM-03431","463.2900085449219","463.2900085449219","R","1992-01-10T00:00:00Z","","0" +"AB-0054","43.52000045776367","43.52000045776367","","1996-10-01T00:00:00Z","","" +"NM-21312","86.18000030517578","86.18000030517578","","2004-12-17T00:00:00Z","","0" +"NM-15312","82.12999725341797","82.12999725341797","","1964-10-27T00:00:00Z","","0" +"NM-01893","17.34000015258789","17.34000015258789","","1992-06-23T00:00:00Z","","0" +"NM-05622","75.02999877929688","75.02999877929688","","1940-09-06T00:00:00Z","","0" +"NM-12297","8.720000267028809","8.720000267028809","","1958-01-16T00:00:00Z","","0" +"NM-28257","29.649999618530273","29.649999618530273","","2020-04-15T00:00:00Z","","0" +"SB-0164","59.95000076293945","59.95000076293945","","1972-03-30T00:00:00Z","","0" +"NM-13834","-12.550000190734863","-12.550000190734863","","1907-12-02T00:00:00Z","","0" +"DE-0337","34.040000915527344","31.150001525878906","","2014-05-14T00:00:00Z","","2.890000104904175" +"TB-0157","85.63999938964844","84.19000244140625","","2009-12-18T00:00:00Z","","1.4500000476837158" +"NM-01269","73.6500015258789","73.6500015258789","","1947-03-11T00:00:00Z","","0" +"NM-03183","86.55000305175781","86.55000305175781","","1956-11-05T00:00:00Z","","0" +"NM-15023","12.579999923706055","12.579999923706055","","1962-01-17T00:00:00Z","","0" +"NM-02772","129.10000610351562","129.10000610351562","","1988-08-23T00:00:00Z","","0" +"NM-05150","59.54999923706055","59.54999923706055","","1932-01-23T00:00:00Z","","0" +"NM-02963","480","480","","1951-01-01T00:00:00Z","","0" +"NM-07360","110.05999755859375","110.05999755859375","","1979-02-01T00:00:00Z","","0" +"NM-08340","17.3700008392334","17.3700008392334","","1991-04-17T00:00:00Z","","0" +"NM-17321","33.130001068115234","33.130001068115234","","1935-01-11T00:00:00Z","","0" +"NM-03285","74.62999725341797","74.62999725341797","","2002-09-06T00:00:00Z","","0" +"AB-0050","566.97998046875","566.97998046875","","1993-09-03T00:00:00Z","","" +"NM-00988","86.33000183105469","86.33000183105469","","2011-04-16T00:00:00Z","","0" +"NM-17722","158.58999633789062","158.58999633789062","R","1964-06-29T00:00:00Z","","0" +"WL-0017","31.8700008392334","29.690000534057617","","2019-12-18T00:00:00Z","0001-01-01T09:45:00Z","2.180000066757202" +"NM-13007","229.39999389648438","229.39999389648438","","1942-02-16T00:00:00Z","","0" +"DE-0239","110.27999877929688","110.27999877929688","","1997-10-23T00:00:00Z","","0" +"NM-00257","93.29000091552734","93.29000091552734","","2002-02-28T00:00:00Z","","0" +"NM-08392","15.680000305175781","15.680000305175781","","2004-03-26T00:00:00Z","","0" +"NM-24213","23.3799991607666","23.3799991607666","","2011-02-01T00:00:00Z","","0" +"NM-00433","79.05000305175781","79.05000305175781","","1983-01-04T00:00:00Z","","0" +"NM-10566","101.9000015258789","101.9000015258789","","1955-03-01T00:00:00Z","","0" +"NM-07766","29.170000076293945","29.170000076293945","","1961-02-27T00:00:00Z","","0" +"NM-00686","59.939998626708984","59.939998626708984","","2004-04-30T00:00:00Z","","0" +"SV-0001","125.30000305175781","123.30000305175781","","2016-02-28T00:00:00Z","","2" +"DE-0264","82.75","82.75","","2017-03-16T00:00:00Z","","0" +"NM-00498","58","58","","2003-09-23T00:00:00Z","","0" +"NM-08362","20.1200008392334","20.1200008392334","","1958-01-29T00:00:00Z","","0" +"NM-11925","48.31999969482422","48.31999969482422","","1950-01-14T00:00:00Z","","0" +"NM-02486","38.599998474121094","38.599998474121094","","1976-01-22T00:00:00Z","","0" +"NM-08308","29.479999542236328","29.479999542236328","","1949-07-21T00:00:00Z","","0" +"NM-22198","398.2300109863281","398.2300109863281","S","2009-08-25T00:00:00Z","","0" +"BC-0248","","137.50999450683594","","2021-03-13T00:00:00Z","","2.2100000381469727" +"NM-26626","20.790000915527344","20.790000915527344","","2013-12-10T00:00:00Z","","0" +"NM-28259","107.16000366210938","107.16000366210938","","2015-01-15T00:00:00Z","","0" +"NM-02756","19.899999618530273","19.899999618530273","","1984-01-26T00:00:00Z","","0" +"NM-26648","44.849998474121094","44.849998474121094","","2011-12-08T00:00:00Z","","0" +"NM-12489","-47.20000076293945","-47.20000076293945","","1907-12-12T00:00:00Z","","0" +"NM-17715","19.3700008392334","19.3700008392334","P","1940-09-20T00:00:00Z","","0" +"NM-05296","68.5999984741211","68.5999984741211","","1946-02-02T00:00:00Z","","0" +"NM-23921","94.77999877929688","94.77999877929688","","1967-12-05T00:00:00Z","","0" +"NM-20525","92.16999816894531","92.16999816894531","","1977-02-17T00:00:00Z","","0" +"NM-05533","49.040000915527344","49.040000915527344","","1950-01-10T00:00:00Z","","0" +"NM-09605","107.83000183105469","107.83000183105469","","1956-08-23T00:00:00Z","","0" +"NM-12194","60.95000076293945","60.95000076293945","","1937-08-07T00:00:00Z","","0" +"NM-03786","213.5399932861328","213.5399932861328","A","2012-03-13T00:00:00Z","","0" +"NM-11383","34.2599983215332","34.2599983215332","","1942-11-15T00:00:00Z","","0" +"NM-27222","64.75","64.75","","1976-01-16T00:00:00Z","","0" +"NM-17106","52.470001220703125","52.470001220703125","","1954-07-21T00:00:00Z","","0" +"NM-02214","167.8800048828125","167.8800048828125","","1981-01-07T00:00:00Z","","0" +"NM-02135","66.88999938964844","66.88999938964844","","1941-03-12T00:00:00Z","","0" +"NM-13561","3.4200000762939453","3.4200000762939453","","1959-04-29T00:00:00Z","","0" +"NM-08805","16.790000915527344","16.790000915527344","","1954-09-14T00:00:00Z","","0" +"NM-02349","14","14","","1988-11-15T00:00:00Z","","0" +"NM-16806","36.7599983215332","36.7599983215332","","1954-01-20T00:00:00Z","","0" +"NM-13594","19.639999389648438","19.639999389648438","","1968-02-15T00:00:00Z","","0" +"EB-263","4.340000152587891","4.340000152587891","","2001-12-13T00:00:00Z","","0" +"NM-01897","9.619999885559082","9.619999885559082","","1994-03-11T00:00:00Z","","0" +"QU-007","98.4000015258789","97.18000030517578","","2013-06-19T00:00:00Z","","1.2200000286102295" +"NM-04110","118.95999908447266","118.95999908447266","","1982-01-04T00:00:00Z","","0" +"NM-05681","94.33999633789062","94.33999633789062","","1955-01-13T00:00:00Z","","0" +"NM-23252","285","285","","1983-12-01T00:00:00Z","","0" +"EB-211","108.25","107.8499984741211","","2010-02-24T00:00:00Z","","0.4000000059604645" +"NM-00014","51.15999984741211","51.15999984741211","","1991-01-22T00:00:00Z","","0" +"AB-0039","349.0400085449219","349.0400085449219","","1996-09-10T00:00:00Z","","" +"NM-23067","8.890000343322754","8.890000343322754","","1953-01-20T00:00:00Z","","0" +"NM-28259","154.4600067138672","154.4600067138672","","1998-09-05T00:00:00Z","","0" +"NM-20255","188.63999938964844","188.63999938964844","","1969-02-26T00:00:00Z","","0" +"AB-0113","218.89999389648438","218.89999389648438","","1999-05-20T00:00:00Z","","" +"NM-15055","14","14","","1956-05-16T00:00:00Z","","0" +"NM-16979","40.869998931884766","40.869998931884766","","1935-04-17T00:00:00Z","","0" +"NM-02393","71.44000244140625","71.44000244140625","","1954-05-18T00:00:00Z","","0" +"NM-00253","21.809999465942383","21.809999465942383","Z","1997-01-21T00:00:00Z","","0" +"NM-10125","8.130000114440918","8.130000114440918","","1945-01-06T00:00:00Z","","0" +"NM-02396","11.5","11.5","","1972-08-15T00:00:00Z","","0" +"DE-0245","102.75","102.75","","2005-05-24T00:00:00Z","","0" +"NM-09553","82.27999877929688","82.27999877929688","R","1962-10-03T00:00:00Z","","0" +"NM-10192","-76.08000183105469","-76.08000183105469","","1914-01-02T00:00:00Z","","0" +"NM-26427","2.4800000190734863","2.4800000190734863","","1986-01-22T00:00:00Z","","0" +"NM-00213","167.02000427246094","167.02000427246094","","2004-09-09T00:00:00Z","","0" +"NM-28253","48.95000076293945","48.95000076293945","","1973-09-15T00:00:00Z","","0" +"AB-0179","179.69000244140625","179.69000244140625","","1999-11-29T00:00:00Z","","" +"NM-00498","55.97999954223633","55.97999954223633","","2008-10-01T00:00:00Z","","0" +"NM-02349","17.700000762939453","17.700000762939453","","2002-05-15T00:00:00Z","","0" +"NM-00395","33.43000030517578","33.43000030517578","","1951-01-21T00:00:00Z","","0" +"NM-02739","66.4000015258789","66.4000015258789","","1963-11-01T00:00:00Z","","0" +"NM-10215","49.369998931884766","49.369998931884766","","1946-09-26T00:00:00Z","","0" +"NM-03419","24.84000015258789","24.84000015258789","","1985-08-15T00:00:00Z","","0" +"NM-17393","17.149999618530273","17.149999618530273","","1944-01-19T00:00:00Z","","0" +"NM-11383","36.619998931884766","36.619998931884766","","1939-05-10T00:00:00Z","","0" +"NM-00185","12","12","","1980-06-15T00:00:00Z","","0" +"NM-08642","28.969999313354492","28.969999313354492","R","1966-03-08T00:00:00Z","","0" +"NM-02196","35.31999969482422","35.31999969482422","","2011-06-03T00:00:00Z","","0" +"NM-13797","17.530000686645508","17.530000686645508","","1972-02-08T00:00:00Z","","0" +"NM-18919","340.1600036621094","340.1600036621094","","1981-01-12T00:00:00Z","","0" +"NM-04951","99.97000122070312","99.97000122070312","","1973-03-22T00:00:00Z","","0" +"NM-02197","11.949999809265137","11.949999809265137","","1994-04-14T00:00:00Z","","0" +"SO-0222","7.329999923706055","6.860000133514404","","2018-04-03T00:00:00Z","0001-01-01T12:34:00Z","0.4699999988079071" +"NM-00643","107.5199966430664","107.5199966430664","Z","2010-05-10T00:00:00Z","","0" +"NM-12371","93.43000030517578","93.43000030517578","S","1951-09-07T00:00:00Z","","0" +"UC-0017","94.69999694824219","94.69999694824219","","2011-01-03T00:00:00Z","","0" +"NM-06263","134.86000061035156","134.86000061035156","","1997-02-21T00:00:00Z","","0" +"NM-06085","26.559999465942383","26.559999465942383","","1975-09-05T00:00:00Z","","0" +"NM-04025","3.009999990463257","3.009999990463257","P","1988-01-25T00:00:00Z","","0" +"NM-13881","-10.239999771118164","-10.239999771118164","","1907-01-03T00:00:00Z","","0" +"NM-05632","18.700000762939453","18.700000762939453","","1935-06-03T00:00:00Z","","0" +"NM-13420","-39.119998931884766","-39.119998931884766","","1907-06-18T00:00:00Z","","0" +"EB-482","664.530029296875","664.530029296875","P","2002-09-30T00:00:00Z","","0" +"NM-12025","41.93000030517578","41.93000030517578","","1962-03-28T00:00:00Z","","0" +"NM-00244","11.600000381469727","11.600000381469727","","2000-07-15T00:00:00Z","","0" +"NM-19910","40.369998931884766","40.369998931884766","","1951-01-09T00:00:00Z","","0" +"NM-03121","47.040000915527344","47.040000915527344","","2003-01-29T00:00:00Z","","0" +"NM-02006","8.800000190734863","8.800000190734863","","1960-02-15T00:00:00Z","","0" +"NM-11928","-0.44999998807907104","-0.44999998807907104","","1951-03-20T00:00:00Z","","0" +"NM-28091","830.8499755859375","830.8499755859375","","2008-10-08T00:00:00Z","","0" +"NM-01864","75.43000030517578","75.43000030517578","","1979-01-13T00:00:00Z","","0" +"NM-09176","34.52000045776367","34.52000045776367","","1947-11-08T00:00:00Z","","0" +"NM-12072","57.849998474121094","57.849998474121094","","1949-02-02T00:00:00Z","","0" +"DE-0063","54.029998779296875","50.69999694824219","","2000-04-26T00:00:00Z","","3.3299999237060547" +"NM-02513","13.430000305175781","13.430000305175781","","1972-02-02T00:00:00Z","","0" +"EB-288","128.3300018310547","128.3300018310547","","1977-11-01T00:00:00Z","","0" +"NM-02043","6","6","","2000-08-15T00:00:00Z","","0" +"EB-146","24.610000610351562","24.610000610351562","","1995-05-25T00:00:00Z","","0" +"NM-00435","74.77999877929688","74.77999877929688","","2003-08-25T00:00:00Z","","0" +"NM-27517","106.58000183105469","106.58000183105469","","2006-03-02T00:00:00Z","","0" +"SB-0120","144.10000610351562","144.10000610351562","","1972-03-28T00:00:00Z","","0" +"NM-28252","58.13999938964844","58.13999938964844","","2013-08-26T00:00:00Z","","0" +"NM-10674","-81.8499984741211","-81.8499984741211","","1907-12-11T00:00:00Z","","0" +"NM-02215","164.25","164.25","","1978-01-09T00:00:00Z","","0" +"NM-23204","31.469999313354492","31.469999313354492","Z","1995-09-29T00:00:00Z","","0" +"NM-19993","33.2599983215332","33.2599983215332","S","1948-08-10T00:00:00Z","","0" +"WL-0091","49.70833206176758","46.938331604003906","","1986-10-08T00:00:00Z","","2.7699999809265137" +"SB-0239","88.9000015258789","88.9000015258789","","1979-01-24T00:00:00Z","","0" +"NM-08993","82.58999633789062","82.58999633789062","","1964-01-14T00:00:00Z","","0" +"NM-11171","99.94000244140625","99.94000244140625","","1976-01-13T00:00:00Z","","0" +"NM-13739","-4.46999979019165","-4.46999979019165","","1905-06-19T00:00:00Z","","0" +"NM-17716","5.46999979019165","5.46999979019165","","1948-07-09T00:00:00Z","","0" +"NM-22648","180.39999389648438","180.39999389648438","","1956-11-06T00:00:00Z","","0" +"NM-28259","85.48999786376953","85.48999786376953","","1962-12-25T00:00:00Z","","0" +"NM-20061","53.689998626708984","53.689998626708984","","1956-11-07T00:00:00Z","","0" +"BC-0083","219.14999389648438","219.14999389648438","","2015-09-01T00:00:00Z","","0" +"EB-250","74.12000274658203","74.12000274658203","","1968-02-05T00:00:00Z","","0" +"NM-04186","24.290000915527344","24.290000915527344","","1940-01-10T00:00:00Z","","0" +"NM-13161","-24.100000381469727","-24.100000381469727","","1912-02-12T00:00:00Z","","0" +"NM-02287","4.980000019073486","4.980000019073486","","1998-04-07T00:00:00Z","","0" +"NM-12611","60.709999084472656","60.709999084472656","","1957-01-16T00:00:00Z","","0" +"NM-03416","71","71","","2016-03-01T00:00:00Z","","0" +"NM-06264","172.61000061035156","172.61000061035156","P","1969-01-16T00:00:00Z","","0" +"NM-08392","13.90999984741211","13.90999984741211","","1996-01-18T00:00:00Z","","0" +"NM-02591","16.5","16.5","","1957-10-15T00:00:00Z","","0" +"SO-0246","9.670000076293945","8.470000267028809","","2021-06-16T00:00:00Z","0001-01-01T13:00:00Z","1.2000000476837158" +"NM-12336","-16.020000457763672","-16.020000457763672","","1910-03-09T00:00:00Z","","0" +"NM-11318","15.569999694824219","15.569999694824219","","1972-11-13T00:00:00Z","","0" +"SO-0209","28.25","26.809999465942383","","2021-01-20T00:00:00Z","","1.440000057220459" +"NM-10239","13.199999809265137","13.199999809265137","","1951-01-06T00:00:00Z","","0" +"NM-00435","53.290000915527344","53.290000915527344","","1958-09-11T00:00:00Z","","0" +"SO-0030","22.5","22.5","","1949-09-02T00:00:00Z","","0" +"NM-14055","50","50","","1992-05-30T00:00:00Z","","0" +"NM-12264","60.68000030517578","60.68000030517578","","1961-02-13T00:00:00Z","","0" +"NM-05634","21.65999984741211","21.65999984741211","S","1940-05-08T00:00:00Z","","0" +"NM-12371","78.55999755859375","78.55999755859375","","1951-11-12T00:00:00Z","","0" +"NM-18969","284.3500061035156","284.3500061035156","","1959-01-15T00:00:00Z","","0" +"NM-09411","180","180","","1961-01-17T00:00:00Z","","0" +"AB-0110","42.0099983215332","42.0099983215332","","2004-09-01T00:00:00Z","","" +"NM-02518","4.699999809265137","4.699999809265137","","1988-07-15T00:00:00Z","","0" +"NM-11675","126.37999725341797","126.37999725341797","","1964-01-06T00:00:00Z","","0" +"BC-0099","17.290000915527344","17.290000915527344","","2008-11-04T00:00:00Z","","0" +"NM-00295","26.81999969482422","26.81999969482422","","2011-01-12T00:00:00Z","","0" +"SA-0111","172.44000244140625","171.0800018310547","","2010-03-19T00:00:00Z","","1.3600000143051147" +"AB-0213","154.5800018310547","154.5800018310547","","2003-03-11T00:00:00Z","","" +"NM-08071","9.600000381469727","9.600000381469727","","1972-07-15T00:00:00Z","","0" +"NM-14091","1.7999999523162842","1.7999999523162842","","1915-07-17T00:00:00Z","","0" +"NM-16619","15.359999656677246","15.359999656677246","","1935-04-17T00:00:00Z","","0" +"NM-11070","45.689998626708984","45.689998626708984","","1963-11-18T00:00:00Z","","0" +"DE-0188","48.86000061035156","48.86000061035156","","2012-06-26T00:00:00Z","","0" +"NM-12466","10.739999771118164","10.739999771118164","","1957-11-01T00:00:00Z","","0" +"NM-00480","45.599998474121094","45.599998474121094","","1950-09-21T00:00:00Z","","0" +"NM-14535","85.2699966430664","85.2699966430664","","1982-03-05T00:00:00Z","","0" +"BC-0210","170.3000030517578","170.3000030517578","","2015-06-02T00:00:00Z","","0" +"NM-23149","64.5199966430664","64.5199966430664","","1947-04-07T00:00:00Z","","0" +"NM-21858","218.3000030517578","218.3000030517578","","1973-01-01T00:00:00Z","","0" +"NM-22888","330.7200012207031","330.7200012207031","Z","1996-12-18T00:00:00Z","","0" +"NM-01985","9.5","9.5","","1993-01-27T00:00:00Z","","0" +"NM-20223","73.16999816894531","73.16999816894531","","1982-03-18T00:00:00Z","","0" +"DE-0061","78.88999938964844","76.51000213623047","","2006-10-11T00:00:00Z","","2.380000114440918" +"NM-02546","2.359999895095825","2.359999895095825","","1992-01-06T00:00:00Z","","0" +"NM-13800","-27.56999969482422","-27.56999969482422","","1913-12-13T00:00:00Z","","0" +"NM-16566","17.43000030517578","17.43000030517578","","1949-01-13T00:00:00Z","","0" +"NM-15758","132.27999877929688","132.27999877929688","","1956-09-14T00:00:00Z","","0" +"NM-28254","15.399999618530273","15.399999618530273","","2003-01-24T00:00:00Z","","0" +"NM-17926","83.69000244140625","83.69000244140625","","1987-03-12T00:00:00Z","","0" +"NM-25680","-104.86000061035156","-104.86000061035156","","1988-12-04T00:00:00Z","","0" +"NM-01246","100.94000244140625","100.94000244140625","R","1992-03-02T00:00:00Z","","0" +"NM-09813","7.78000020980835","7.78000020980835","","1941-09-09T00:00:00Z","","0" +"NM-28250","82.12999725341797","82.12999725341797","","1992-06-05T00:00:00Z","","0" +"NM-28253","44.540000915527344","44.540000915527344","","2018-08-15T00:00:00Z","","0" +"NM-17454","64.76000213623047","64.76000213623047","","1961-09-13T00:00:00Z","","0" +"NM-23239","212.77000427246094","212.77000427246094","Z","1996-05-31T00:00:00Z","","0" +"EB-245","214.67999267578125","214.67999267578125","","2009-08-07T00:00:00Z","","0" +"NM-04589","91.80999755859375","91.80999755859375","","1956-01-19T00:00:00Z","","0" +"NM-03794","60","60","","1974-12-04T00:00:00Z","","0" +"NM-28252","49.20000076293945","49.20000076293945","","2018-11-05T00:00:00Z","","0" +"NM-12401","46.38999938964844","46.38999938964844","","1939-01-26T00:00:00Z","","0" +"NM-13053","19.670000076293945","19.670000076293945","","1963-11-19T00:00:00Z","","0" +"NM-05321","339.4700012207031","339.4700012207031","","1998-01-28T00:00:00Z","","0" +"NM-04770","90.48999786376953","90.48999786376953","","1965-01-18T00:00:00Z","","0" +"NM-12916","51.290000915527344","51.290000915527344","","1945-01-21T00:00:00Z","","0" +"NM-00367","127.95999908447266","127.95999908447266","","1968-06-01T00:00:00Z","","0" +"NM-13853","-14.859999656677246","-14.859999656677246","","1906-03-06T00:00:00Z","","0" +"NM-17603","37.900001525878906","37.900001525878906","","1956-01-26T00:00:00Z","","0" +"NM-04195","166.85000610351562","166.85000610351562","","1977-01-11T00:00:00Z","","0" +"NM-03219","87.77999877929688","87.77999877929688","","1979-12-05T00:00:00Z","","0" +"NM-27868","7.539999961853027","7.539999961853027","","1963-12-04T00:00:00Z","","0" +"NM-00434","14.289999961853027","14.289999961853027","","1964-07-28T00:00:00Z","","0" +"NM-10283","50.25","50.25","","1961-01-20T00:00:00Z","","0" +"NM-02273","26.780000686645508","26.780000686645508","","2009-02-03T00:00:00Z","","0" +"EM-0003","6.96999979019165","6.369999885559082","","2016-09-14T00:00:00Z","","0.6000000238418579" +"NM-02384","14.600000381469727","14.600000381469727","","1956-02-15T00:00:00Z","","0" +"NM-21888","4.130000114440918","4.130000114440918","Z","2007-08-13T00:00:00Z","","0" +"NM-05516","13","13","","1982-06-15T00:00:00Z","","0" +"NM-16836","58.84000015258789","58.84000015258789","","1987-01-28T00:00:00Z","","0" +"NM-22486","80.62000274658203","80.62000274658203","T","1982-04-20T00:00:00Z","","0" +"NM-04908","67.33000183105469","67.33000183105469","","1949-01-11T00:00:00Z","","0" +"NM-06268","11.399999618530273","11.399999618530273","","1962-06-15T00:00:00Z","","0" +"NM-18922","356.67999267578125","356.67999267578125","","1960-03-03T00:00:00Z","","0" +"AB-0215","155.44000244140625","155.44000244140625","","2007-04-04T00:00:00Z","","" +"SB-0299","123.08999633789062","123.08999633789062","","1977-12-05T00:00:00Z","","0" +"NM-05718","80.83999633789062","80.83999633789062","P","1932-06-04T00:00:00Z","","0" +"NM-20174","59.02000045776367","59.02000045776367","","1950-05-26T00:00:00Z","","0" +"NM-18224","17.5","17.5","P","1967-01-23T00:00:00Z","","0" +"NM-13118","10.300000190734863","10.300000190734863","","1976-01-14T00:00:00Z","","0" +"EB-389","110.12000274658203","108.13999938964844","","2010-08-26T00:00:00Z","","1.9800000190734863" +"NM-03349","34.880001068115234","34.880001068115234","Z","2000-04-04T00:00:00Z","","0" +"NM-08861","62.22999954223633","62.22999954223633","","1959-11-05T00:00:00Z","","0" +"NM-21526","314.7900085449219","314.7900085449219","","1990-10-23T00:00:00Z","","0" +"NM-28014","498.67999267578125","498.67999267578125","S","2015-06-02T00:00:00Z","","0" +"NM-10295","61.04999923706055","61.04999923706055","","1959-01-20T00:00:00Z","","0" +"NM-02314","9.100000381469727","9.100000381469727","","1977-06-15T00:00:00Z","","0" +"NM-16429","50.779998779296875","50.779998779296875","","1977-01-07T00:00:00Z","","0" +"NM-10215","50.7599983215332","50.7599983215332","","1940-09-26T00:00:00Z","","0" +"NM-14902","107.80000305175781","107.80000305175781","","1966-01-06T00:00:00Z","","0" +"EB-012","100.30999755859375","100.30999755859375","","1959-08-24T00:00:00Z","","0" +"NM-12600","46.5","46.5","","1937-09-17T00:00:00Z","","0" +"NM-17618","16.309999465942383","16.309999465942383","","1958-01-25T00:00:00Z","","0" +"NM-01796","4.800000190734863","4.800000190734863","","1974-07-15T00:00:00Z","","0" +"NM-02710","26.84000015258789","26.84000015258789","","1976-01-01T00:00:00Z","","0" +"NM-13914","-10.819999694824219","-10.819999694824219","","1909-09-10T00:00:00Z","","0" +"NM-06027","65.18000030517578","65.18000030517578","","1948-03-23T00:00:00Z","","0" +"SB-0389","52.15999984741211","52.15999984741211","","1988-02-18T00:00:00Z","","0" +"NM-01890","44.56999969482422","44.56999969482422","","1986-04-29T00:00:00Z","","0" +"NM-13145","9.829999923706055","9.829999923706055","","1977-06-13T00:00:00Z","","0" +"AB-0010","9.65999984741211","9.65999984741211","","2012-12-17T00:00:00Z","","" +"WL-0060","119.08999633789062","123.97999572753906","","2019-05-15T00:00:00Z","0001-01-01T10:43:00Z","-4.889999866485596" +"NM-03036","67.61000061035156","67.61000061035156","","1976-01-06T00:00:00Z","","0" +"SO-0085","123.69999694824219","123.69999694824219","","1950-01-26T00:00:00Z","","0" +"NM-11983","88.16000366210938","88.16000366210938","","1986-01-23T00:00:00Z","","0" +"NM-02520","9.100000381469727","9.100000381469727","","1972-06-15T00:00:00Z","","0" +"AB-0075","7.989999771118164","7.989999771118164","","1999-03-01T00:00:00Z","","" +"NM-00245","79.68000030517578","79.68000030517578","","1970-01-21T00:00:00Z","","0" +"SA-0020","29.06999969482422","27.869998931884766","","2012-03-05T00:00:00Z","","1.2000000476837158" +"NM-11534","76.3499984741211","76.3499984741211","","1986-01-28T00:00:00Z","","0" +"NM-16762","0.10999999940395355","0.10999999940395355","","1942-03-28T00:00:00Z","","0" +"NM-28252","10.510000228881836","10.510000228881836","","1946-12-25T00:00:00Z","","0" +"NM-21232","3.440000057220459","3.440000057220459","Z","2006-08-09T00:00:00Z","","0" +"NM-19378","39.470001220703125","39.470001220703125","","1966-09-21T00:00:00Z","","0" +"NM-12083","50.2400016784668","50.2400016784668","","1961-02-15T00:00:00Z","","0" +"NM-13887","5.449999809265137","5.449999809265137","","1958-07-14T00:00:00Z","","0" +"NM-17716","6.550000190734863","6.550000190734863","","1951-11-10T00:00:00Z","","0" +"NM-03336","10.539999961853027","10.539999961853027","","2007-08-28T00:00:00Z","","0" +"AB-0101","703.5599975585938","703.5599975585938","","2014-02-11T00:00:00Z","","" +"NM-12933","19.25","19.25","","1959-05-19T00:00:00Z","","0" +"NM-02837","75.04000091552734","75.04000091552734","","2010-01-12T00:00:00Z","","0" +"NM-13425","396.4700012207031","396.4700012207031","","1980-08-01T00:00:00Z","","0" +"SA-0128","364.8500061035156","363.2200012207031","","2010-09-18T00:00:00Z","","1.6299999952316284" +"SA-0068","229.5399932861328","228.1199951171875","","2015-02-12T00:00:00Z","","1.4199999570846558" +"LC-040","365.4100036621094","363.94000244140625","","2019-04-18T00:00:00Z","0001-01-01T10:23:00Z","1.4700000286102295" +"NM-02591","","","D","1954-04-15T00:00:00Z","","0" +"NM-15508","60.77000045776367","60.77000045776367","","1989-12-13T00:00:00Z","","0" +"SM-0173","222.19000244140625","221.99000549316406","","2008-12-16T00:00:00Z","","0.20000000298023224" +"NM-06132","226.89999389648438","226.89999389648438","R","1973-06-28T00:00:00Z","","0" +"NM-01029","404.25","404.25","","1997-01-24T00:00:00Z","","0" +"NM-23486","","","W","2016-01-29T00:00:00Z","","0" +"EB-262","154.0399932861328","154.0399932861328","","2002-09-24T00:00:00Z","","0" +"NM-02207","9","9","","1963-08-15T00:00:00Z","","0" +"NM-28255","35.709999084472656","35.709999084472656","","1990-03-05T00:00:00Z","","0" +"NM-03388","44.20000076293945","44.20000076293945","","1988-01-27T00:00:00Z","","0" +"NM-17147","55.7599983215332","55.7599983215332","","1955-01-26T00:00:00Z","","0" +"AB-0215","154.60000610351562","154.60000610351562","","2003-01-29T00:00:00Z","","" +"NM-10635","28.6299991607666","28.6299991607666","","1957-07-16T00:00:00Z","","0" +"NM-18347","191.52999877929688","191.52999877929688","","1954-03-02T00:00:00Z","","0" +"NM-27692","98.9000015258789","98.9000015258789","","1959-01-16T00:00:00Z","","0" +"QU-077","19.75","17.450000762939453","","2014-07-07T00:00:00Z","","2.299999952316284" +"NM-01009","4.900000095367432","4.900000095367432","","1967-01-13T00:00:00Z","","0" +"NM-26004","33.630001068115234","33.630001068115234","","1986-05-07T00:00:00Z","","0" +"NM-14877","46.040000915527344","46.040000915527344","","1989-11-30T00:00:00Z","","0" +"NM-02384","16.799999237060547","16.799999237060547","","1956-08-15T00:00:00Z","","0" +"NM-01948","7.199999809265137","7.199999809265137","","1982-03-15T00:00:00Z","","0" +"NM-12718","37.31999969482422","37.31999969482422","","1940-07-14T00:00:00Z","","0" +"NM-03643","163.00999450683594","163.00999450683594","","2005-04-08T00:00:00Z","","0" +"NM-10634","-37.959999084472656","-37.959999084472656","","1917-07-17T00:00:00Z","","0" +"NM-08823","69.13999938964844","69.13999938964844","R","1971-01-14T00:00:00Z","","0" +"NM-23350","101.33000183105469","101.33000183105469","","1952-02-26T00:00:00Z","","0" +"SA-0016","381.79998779296875","381.1399841308594","","2016-02-19T00:00:00Z","","0.6600000262260437" +"NM-28255","112.2300033569336","112.2300033569336","","2006-05-05T00:00:00Z","","0" +"NM-22384","61.369998931884766","61.369998931884766","","1956-10-03T00:00:00Z","","0" +"NM-21660","474.75","474.75","","1990-10-23T00:00:00Z","","0" +"NM-00702","33.150001525878906","33.150001525878906","","2010-10-06T00:00:00Z","","0" +"NM-02591","15.899999618530273","15.899999618530273","","1969-03-15T00:00:00Z","","0" +"NM-02077","189.5800018310547","187.75999450683594","","2020-02-05T00:00:00Z","0001-01-01T09:01:00Z","1.8200000524520874" +"NM-01291","91.6500015258789","91.6500015258789","","1973-01-26T00:00:00Z","","0" +"NM-03428","5.230000019073486","5.230000019073486","","2001-06-12T00:00:00Z","","0" +"NM-27825","156.47000122070312","156.47000122070312","","1974-06-20T00:00:00Z","","0" +"NM-08554","46.09000015258789","46.09000015258789","","1966-03-03T00:00:00Z","","0" +"NM-24148","169.1999969482422","169.1999969482422","","1977-09-16T00:00:00Z","","0" +"NM-00815","159.13999938964844","159.13999938964844","","1979-01-17T00:00:00Z","","0" +"NM-08863","68.94999694824219","68.94999694824219","S","1962-04-11T00:00:00Z","","0" +"NM-12564","27.520000457763672","27.520000457763672","","1956-11-28T00:00:00Z","","0" +"DE-0245","102.62000274658203","102.62000274658203","","2013-12-13T00:00:00Z","","0" +"NM-10245","48.68000030517578","48.68000030517578","","1979-01-31T00:00:00Z","","0" +"NM-05436","130.39999389648438","130.39999389648438","P","1953-08-03T00:00:00Z","","0" +"NM-11795","37.02000045776367","37.02000045776367","","1934-06-19T00:00:00Z","","0" +"BC-0166","231.60000610351562","229.70001220703125","","2016-05-08T00:00:00Z","","1.899999976158142" +"NM-26633","31.280000686645508","31.280000686645508","P","2012-02-09T00:00:00Z","","0" +"NM-07148","79.98999786376953","79.98999786376953","","1998-07-16T00:00:00Z","","0" +"NM-14866","53.47999954223633","53.47999954223633","","1996-03-13T00:00:00Z","","0" +"NM-24321","114.77999877929688","114.77999877929688","","1970-05-05T00:00:00Z","","0" +"NM-01485","11.729999542236328","11.729999542236328","","1992-02-04T00:00:00Z","","0" +"NM-16962","27.170000076293945","27.170000076293945","","1951-01-12T00:00:00Z","","0" +"NM-21239","3.369999885559082","3.369999885559082","Z","2009-05-18T00:00:00Z","","0" +"NM-01909","7.929999828338623","7.929999828338623","","2007-02-01T00:00:00Z","","0" +"NM-27475","16.209999084472656","16.209999084472656","","1966-01-03T00:00:00Z","","0" +"NM-27327","10.930000305175781","10.930000305175781","","1955-05-18T00:00:00Z","","0" +"NM-03323","72.26000213623047","72.26000213623047","","1996-01-25T00:00:00Z","","0" +"NM-02115","18.270000457763672","18.270000457763672","","1988-01-25T00:00:00Z","","0" +"NM-28258","185.35000610351562","185.35000610351562","","1971-09-05T00:00:00Z","","0" +"NM-00014","45.97999954223633","45.97999954223633","","1980-02-05T00:00:00Z","","0" +"NM-05364","66.7300033569336","66.7300033569336","","1941-01-08T00:00:00Z","","0" +"NM-01858","14.609999656677246","14.609999656677246","","1956-01-18T00:00:00Z","","0" +"NM-03238","84.0199966430664","84.0199966430664","","2001-03-07T00:00:00Z","","0" +"NM-17371","39.2599983215332","39.2599983215332","","1932-01-07T00:00:00Z","","0" +"NM-00068","41.540000915527344","41.540000915527344","","1981-01-20T00:00:00Z","","0" +"NM-06271","132.72000122070312","132.72000122070312","","1977-01-31T00:00:00Z","","0" +"NM-01835","131.67999267578125","131.67999267578125","","2012-02-15T00:00:00Z","","0" +"NM-06676","13.199999809265137","13.199999809265137","","1953-12-15T00:00:00Z","","0" +"NM-21940","10.09000015258789","10.09000015258789","","1984-01-12T00:00:00Z","","0" +"NM-00686","59.68000030517578","59.68000030517578","","1988-08-01T00:00:00Z","","0" +"NM-03675","253.35000610351562","253.35000610351562","","1989-05-18T00:00:00Z","","0" +"NM-05347","9.600000381469727","9.600000381469727","","1985-05-15T00:00:00Z","","0" +"NM-02563","37.849998474121094","37.849998474121094","","1992-01-07T00:00:00Z","","0" +"NM-00047","57.560001373291016","57.560001373291016","","1977-01-21T00:00:00Z","","0" +"NM-02493","42.75","42.75","","1992-11-02T00:00:00Z","","0" +"NM-24097","160","160","","1995-07-05T00:00:00Z","","0" +"NM-09553","63.20000076293945","63.20000076293945","","1959-01-07T00:00:00Z","","0" +"NM-28252","43.34000015258789","43.34000015258789","","2007-04-16T00:00:00Z","","0" +"NM-11271","60.849998474121094","60.849998474121094","","1970-01-21T00:00:00Z","","0" +"NM-28257","-18.479999542236328","-18.479999542236328","","2002-01-04T00:00:00Z","","0" +"NM-20389","96.72000122070312","96.72000122070312","","1978-01-08T00:00:00Z","","0" +"NM-16388","88","88","","1967-07-01T00:00:00Z","","0" +"NM-14802","107.94000244140625","107.94000244140625","","1975-07-14T00:00:00Z","","0" +"NM-03188","385.19000244140625","385.19000244140625","","1986-01-10T00:00:00Z","","0" +"NM-02518","7.5","7.5","","1954-05-15T00:00:00Z","","0" +"NM-13918","-8.220000267028809","-8.220000267028809","","1909-12-01T00:00:00Z","","0" +"NM-10288","257.3699951171875","257.3699951171875","","1960-03-28T00:00:00Z","","0" +"BC-0107","256.8500061035156","256.8500061035156","","2019-11-03T00:00:00Z","","0" +"NM-11854","-30.43000030517578","-30.43000030517578","","1947-01-22T00:00:00Z","","0" +"NM-13441","-19.479999542236328","-19.479999542236328","","1907-09-19T00:00:00Z","","0" +"NM-02134","314.3999938964844","314.3999938964844","","2002-02-27T00:00:00Z","","0" +"NM-19816","17.84000015258789","17.84000015258789","","1945-11-28T00:00:00Z","","0" +"NM-09195","-77.2300033569336","-77.2300033569336","","1916-01-06T00:00:00Z","","0" +"SV-0056","101.19999694824219","99.77999877929688","","2018-08-12T00:00:00Z","","1.4199999570846558" +"NM-10843","68.41999816894531","68.41999816894531","","1962-01-18T00:00:00Z","","0" +"NM-02329","63.0099983215332","63.0099983215332","","1979-01-17T00:00:00Z","","0" +"NM-28251","85.79000091552734","85.79000091552734","","1972-02-05T00:00:00Z","","0" +"NM-05823","128.5","128.5","P","1956-09-14T00:00:00Z","","0" +"NM-05199","172.10000610351562","172.10000610351562","","2003-01-27T00:00:00Z","","0" +"NM-02642","41.75","41.75","","1948-01-16T00:00:00Z","","0" +"DE-0111","39.2400016784668","39.2400016784668","","2008-12-01T00:00:00Z","","0" +"NM-17716","2.859999895095825","2.859999895095825","","1946-03-27T00:00:00Z","","0" +"NM-21304","6.670000076293945","6.670000076293945","","1950-02-07T00:00:00Z","","0" +"NM-01235","13","13","","1948-06-17T00:00:00Z","","0" +"NM-17313","52.41999816894531","52.41999816894531","","1952-07-29T00:00:00Z","","0" +"NM-28259","96.11000061035156","96.11000061035156","","1994-11-25T00:00:00Z","","0" +"NM-11265","-12.550000190734863","-12.550000190734863","","1912-05-28T00:00:00Z","","0" +"NM-14281","-24.100000381469727","-24.100000381469727","","1907-05-12T00:00:00Z","","0" +"NM-02456","53.43000030517578","53.43000030517578","","1965-01-05T00:00:00Z","","0" +"EB-482","336.510009765625","336.510009765625","Z","2006-10-31T00:00:00Z","","0" +"EB-209","65.3499984741211","64.0999984741211","","1979-09-15T00:00:00Z","","1.25" +"NM-23106","8.399999618530273","8.399999618530273","Z","2009-02-17T00:00:00Z","","0" +"NM-28255","13.90999984741211","13.90999984741211","","2012-01-25T00:00:00Z","","0" +"NM-21910","62.79999923706055","62.79999923706055","P","1958-11-19T00:00:00Z","","0" +"NM-23293","93.61000061035156","93.61000061035156","","1949-10-11T00:00:00Z","","0" +"NM-16613","95.52999877929688","95.52999877929688","","2016-02-10T00:00:00Z","","0" +"NM-03349","36.029998779296875","36.029998779296875","Z","1998-04-30T00:00:00Z","","0" +"NM-11880","39.220001220703125","39.220001220703125","","1948-01-24T00:00:00Z","","0" +"NM-01947","4.099999904632568","4.099999904632568","","1961-06-15T00:00:00Z","","0" +"NM-02615","3.809999942779541","3.809999942779541","","2005-01-25T00:00:00Z","","0" +"SB-0442","172.89999389648438","172.89999389648438","","2010-07-05T00:00:00Z","","0" +"NM-00974","341.1400146484375","341.1400146484375","","1963-01-22T00:00:00Z","","0" +"NM-02092","83.97000122070312","83.97000122070312","","1959-01-16T00:00:00Z","","0" +"NM-03329","17.170000076293945","17.170000076293945","","1988-06-27T00:00:00Z","","0" +"NM-15907","93.16000366210938","93.16000366210938","","1985-01-18T00:00:00Z","","0" +"NM-01985","8.199999809265137","8.199999809265137","","1995-12-15T00:00:00Z","","0" +"NM-02732","102.58999633789062","102.58999633789062","","2001-07-25T00:00:00Z","","0" +"NM-02256","5.900000095367432","5.900000095367432","","1996-04-15T00:00:00Z","","0" +"NM-22966","788.4500122070312","788.4500122070312","","1988-06-28T00:00:00Z","","0" +"EB-262","139.3800048828125","139.3800048828125","Z","1999-01-26T00:00:00Z","","0" +"NM-01740","144.14999389648438","144.14999389648438","","1965-01-09T00:00:00Z","","0" +"NM-05689","87.7699966430664","87.7699966430664","","1946-03-27T00:00:00Z","","0" +"NM-02164","12.399999618530273","12.399999618530273","","2004-12-28T00:00:00Z","","0" +"NM-17618","20.760000228881836","20.760000228881836","","1965-09-14T00:00:00Z","","0" +"NM-12400","43.7400016784668","43.7400016784668","","1942-05-12T00:00:00Z","","0" +"NM-05347","7.300000190734863","7.300000190734863","","1947-04-15T00:00:00Z","","0" +"NM-02284","9.420000076293945","9.420000076293945","","1996-01-09T00:00:00Z","","0" +"NM-07511","59.88999938964844","59.88999938964844","","1955-06-07T00:00:00Z","","0" +"NM-00029","46.43000030517578","46.43000030517578","","1969-01-09T00:00:00Z","","0" +"NM-02702","-7.150000095367432","-7.150000095367432","","1991-02-22T00:00:00Z","","0" +"SM-0130","36.58000183105469","36.58000183105469","","1962-09-13T00:00:00Z","","0" +"NM-20124","50.689998626708984","50.689998626708984","","1951-01-08T00:00:00Z","","0" +"DE-0178","53.279998779296875","53.279998779296875","","2015-04-17T00:00:00Z","","0" +"NM-14192","34.97999954223633","34.97999954223633","","1951-01-29T00:00:00Z","","0" +"NM-28259","105.0999984741211","105.0999984741211","","2005-11-04T00:00:00Z","","0" +"NM-25788","100","100","","1970-08-20T00:00:00Z","","0" +"NM-03467","429.79998779296875","429.79998779296875","R","1983-05-26T00:00:00Z","","0" +"NM-16788","4.690000057220459","4.690000057220459","","1951-11-27T00:00:00Z","","0" +"DE-0270","83.1500015258789","83.1500015258789","","2018-12-17T00:00:00Z","","0" +"NM-24361","50.29999923706055","50.29999923706055","","1998-01-22T00:00:00Z","","0" +"NM-02772","166.07000732421875","166.07000732421875","","1970-08-01T00:00:00Z","","0" +"NM-10669","57.220001220703125","57.220001220703125","","1991-02-05T00:00:00Z","","0" +"NM-03903","330.0299987792969","330.0299987792969","","1975-09-24T00:00:00Z","","0" +"MI-0255","180","180","","1950-12-31T00:00:00Z","","0" +"NM-07868","16.770000457763672","16.770000457763672","","1949-01-18T00:00:00Z","","0" +"NM-06394","98.86000061035156","98.86000061035156","","1944-07-25T00:00:00Z","","0" +"NM-11090","72.37000274658203","72.37000274658203","","2007-01-04T00:00:00Z","","0" +"NM-01473","329.05999755859375","329.05999755859375","R","1989-04-27T00:00:00Z","","0" +"NM-02281","43.029998779296875","43.029998779296875","","2015-03-17T00:00:00Z","","0" +"NM-19233","29","29","","1990-04-24T00:00:00Z","","0" +"NM-07031","76.80999755859375","76.80999755859375","","2007-04-10T00:00:00Z","","0" +"NM-03041","60.4900016784668","60.4900016784668","","1974-01-04T00:00:00Z","","0" +"NM-27756","7.019999980926514","7.019999980926514","","1992-02-25T00:00:00Z","","0" +"NM-11138","50.09000015258789","50.09000015258789","","1965-01-07T00:00:00Z","","0" +"NM-01796","6.400000095367432","6.400000095367432","","1988-06-15T00:00:00Z","","0" +"NM-02090","89.08999633789062","89.08999633789062","","1978-01-13T00:00:00Z","","0" +"NM-02253","71.12999725341797","71.12999725341797","","1997-01-23T00:00:00Z","","0" +"NM-28215","32.630001068115234","32.630001068115234","","2011-10-31T00:00:00Z","","0" +"NM-13578","24.479999542236328","24.479999542236328","","1944-02-09T00:00:00Z","","0" +"NM-02209","104.2300033569336","104.2300033569336","","1994-03-21T00:00:00Z","","0" +"NM-00974","341.32000732421875","341.32000732421875","","1961-06-07T00:00:00Z","","0" +"NM-15421","30.969999313354492","30.969999313354492","","1985-02-05T00:00:00Z","","0" +"NM-16831","9.380000114440918","9.380000114440918","","1951-09-24T00:00:00Z","","0" +"NM-06417","57.06999969482422","57.06999969482422","","1965-01-13T00:00:00Z","","0" +"NM-00420","43.33000183105469","43.33000183105469","","2001-01-12T00:00:00Z","","0" +"NM-20541","101.6500015258789","101.6500015258789","","1997-01-28T00:00:00Z","","0" +"NM-08647","25.299999237060547","25.299999237060547","S","1949-07-26T00:00:00Z","","0" +"NM-21500","211.1999969482422","211.1999969482422","","1998-01-23T00:00:00Z","","0" +"DE-0240","106.95999908447266","106.95999908447266","","2013-06-26T00:00:00Z","","0" +"OG-0008","","","O","2023-01-23T00:00:00Z","0001-01-01T10:15:00Z","0.11999999731779099" +"BC-0098","45.43000030517578","45.43000030517578","R","1992-08-14T00:00:00Z","","0" +"NM-28252","45.060001373291016","45.060001373291016","","1987-11-25T00:00:00Z","","0" +"BC-0072","186.27000427246094","186.27000427246094","","2010-08-10T00:00:00Z","","0" +"NM-01985","11.300000190734863","11.300000190734863","","2002-06-15T00:00:00Z","","0" +"NM-13306","26.25","26.25","","1959-01-08T00:00:00Z","","0" +"NM-14396","6.599999904632568","6.599999904632568","","1979-05-29T00:00:00Z","","0" +"NM-00599","93.83999633789062","93.83999633789062","","1979-01-03T00:00:00Z","","0" +"NM-12770","45.900001525878906","45.900001525878906","","1960-01-12T00:00:00Z","","0" +"NM-05643","71.19000244140625","71.19000244140625","","1932-01-15T00:00:00Z","","0" +"NM-00381","20.1299991607666","20.1299991607666","","2014-05-17T00:00:00Z","","0" +"NM-11980","34.31999969482422","34.31999969482422","","1945-01-13T00:00:00Z","","0" +"NM-02447","150.8000030517578","150.8000030517578","","1983-02-02T00:00:00Z","","0" +"NM-14154","-20.639999389648438","-20.639999389648438","","1912-12-16T00:00:00Z","","0" +"NM-20441","30.649999618530273","30.649999618530273","","1946-09-05T00:00:00Z","","0" +"NM-14351","593.0999755859375","593.0999755859375","","1981-03-01T00:00:00Z","","0" +"NM-20179","99.3499984741211","99.3499984741211","P","1976-06-23T00:00:00Z","","0" +"NM-21991","357.1499938964844","357.1499938964844","Z","2000-02-22T00:00:00Z","","0" +"NM-07361","27.940000534057617","27.940000534057617","","1955-03-08T00:00:00Z","","0" +"NM-09723","13.420000076293945","13.420000076293945","","2015-01-09T00:00:00Z","","0" +"NM-10458","9.270000457763672","9.270000457763672","","1955-01-11T00:00:00Z","","0" +"NM-07867","20.200000762939453","20.200000762939453","","1976-02-04T00:00:00Z","","0" +"NM-08332","5.880000114440918","5.880000114440918","","1973-03-21T00:00:00Z","","0" +"NM-28259","114.76000213623047","114.76000213623047","","2013-02-05T00:00:00Z","","0" +"NM-17217","73.69999694824219","73.69999694824219","","1977-01-20T00:00:00Z","","0" +"NM-00661","52.790000915527344","52.790000915527344","","2006-01-17T00:00:00Z","","0" +"NM-00427","99.22000122070312","99.22000122070312","","2013-12-12T00:00:00Z","","0" +"WL-0091","33.70833206176758","30.938331604003906","","1994-05-16T00:00:00Z","","2.7699999809265137" +"NM-11318","16.610000610351562","16.610000610351562","","1994-01-26T00:00:00Z","","0" +"DE-0237","104","104","","2006-05-09T00:00:00Z","","0" +"NM-04632","10.100000381469727","10.100000381469727","","1958-10-15T00:00:00Z","","0" +"NM-12597","84.25","84.25","","1958-01-13T00:00:00Z","","0" +"NM-28256","91.91999816894531","91.91999816894531","","1971-12-05T00:00:00Z","","0" +"NM-11793","196.0500030517578","196.0500030517578","","1979-02-09T00:00:00Z","","0" +"NM-06791","506.20001220703125","506.20001220703125","","2010-11-23T00:00:00Z","","0" +"EB-416","271.95001220703125","271.95001220703125","Z","2006-12-31T00:00:00Z","","0" +"NM-03093","89.2699966430664","89.2699966430664","","1980-01-17T00:00:00Z","","0" +"EB-483","15","15","","1985-09-30T00:00:00Z","","0" +"NM-02082","77.25","77.25","","1962-01-17T00:00:00Z","","0" +"NM-02794","65.41000366210938","65.41000366210938","Z","1995-02-15T00:00:00Z","","0" +"NM-08891","2.7300000190734863","2.7300000190734863","","1979-01-30T00:00:00Z","","0" +"NM-01971","6.5","6.5","","1976-07-15T00:00:00Z","","0" +"NM-24405","2.7100000381469727","2.7100000381469727","","1968-08-30T00:00:00Z","","0" +"HS-039","14.600000381469727","12.730000495910645","","2019-10-23T00:00:00Z","","1.8700000047683716" +"EB-487","365.70001220703125","362.20001220703125","Z","2007-12-31T00:00:00Z","","3.5" +"NM-28258","211.4499969482422","211.4499969482422","","2011-08-25T00:00:00Z","","0" +"NM-27313","59.22999954223633","59.22999954223633","","1976-12-08T00:00:00Z","","0" +"NM-11636","264.1600036621094","264.1600036621094","","1955-04-30T00:00:00Z","","0" +"NM-13897","-66.37999725341797","-66.37999725341797","","1960-12-22T00:00:00Z","","0" +"NM-28253","27.739999771118164","27.739999771118164","","1983-12-05T00:00:00Z","","0" +"NM-19026","348.5799865722656","348.5799865722656","","1987-04-08T00:00:00Z","","0" +"NM-08648","40.790000915527344","40.790000915527344","","1953-03-20T00:00:00Z","","0" +"NM-28020","465.6099853515625","465.6099853515625","S","2015-04-26T00:00:00Z","","0" +"NM-15279","180","180","","1989-12-06T00:00:00Z","","0" +"NM-08089","61.70000076293945","61.70000076293945","","1957-01-03T00:00:00Z","","0" +"NM-01886","76.69000244140625","76.69000244140625","","2010-05-13T00:00:00Z","","0" +"NM-00366","113.0999984741211","113.0999984741211","","1964-12-01T00:00:00Z","","0" +"NM-03388","40.41999816894531","40.41999816894531","","1984-12-21T00:00:00Z","","0" +"NM-13827","-48.36000061035156","-48.36000061035156","","1908-12-08T00:00:00Z","","0" +"NM-11518","37.5099983215332","37.5099983215332","","1932-12-15T00:00:00Z","","0" +"NM-22715","6.539999961853027","6.539999961853027","Z","2006-02-01T00:00:00Z","","0" +"EB-262","111.94999694824219","111.94999694824219","","2005-08-23T00:00:00Z","","0" +"NM-17716","3.2899999618530273","3.2899999618530273","","1945-06-23T00:00:00Z","","0" +"NM-23435","156.50999450683594","156.50999450683594","","1957-02-13T00:00:00Z","","0" +"NM-12893","17.639999389648438","17.639999389648438","","1979-01-23T00:00:00Z","","0" +"NM-03416","69.43000030517578","69.43000030517578","","1993-12-01T00:00:00Z","","0" +"NM-16588","37.72999954223633","37.72999954223633","","1973-01-03T00:00:00Z","","0" +"NM-03558","6.46999979019165","6.46999979019165","","1983-01-07T00:00:00Z","","0" +"NM-09363","25.8799991607666","25.8799991607666","","1939-02-06T00:00:00Z","","0" +"NM-02591","14.600000381469727","14.600000381469727","","1967-11-15T00:00:00Z","","0" +"NM-04422","85.63999938964844","85.63999938964844","S","1953-05-13T00:00:00Z","","0" +"NM-06088","52.2599983215332","52.2599983215332","","1959-01-15T00:00:00Z","","0" +"NM-02527","10.199999809265137","10.199999809265137","","1966-04-15T00:00:00Z","","0" +"NM-08189","7.900000095367432","7.900000095367432","","1958-09-15T00:00:00Z","","0" +"NM-28252","20.68000030517578","20.68000030517578","","1951-11-15T00:00:00Z","","0" +"NM-05737","90.7300033569336","90.7300033569336","","1951-11-21T00:00:00Z","","0" +"NM-06103","94.88999938964844","94.88999938964844","","1948-01-12T00:00:00Z","","0" +"NM-23789","126.16000366210938","126.16000366210938","","1973-03-23T00:00:00Z","","0" +"NM-21858","248.67999267578125","248.67999267578125","","2007-03-23T00:00:00Z","","0" +"NM-11941","1.7000000476837158","1.7000000476837158","","1949-07-19T00:00:00Z","","0" +"NM-23721","74.83000183105469","74.83000183105469","","1967-12-07T00:00:00Z","","0" +"NM-11231","51.34000015258789","51.34000015258789","","1946-01-19T00:00:00Z","","0" +"QU-090","74.69999694824219","72.69999694824219","","2015-01-16T00:00:00Z","","2" +"NM-22132","4.730000019073486","4.730000019073486","Z","2009-02-18T00:00:00Z","","0" +"NM-21567","5.809999942779541","5.809999942779541","X","2003-08-15T00:00:00Z","","0" +"NM-12353","29.90999984741211","29.90999984741211","","1939-06-17T00:00:00Z","","0" +"NM-02182","76.16000366210938","76.16000366210938","","1963-01-16T00:00:00Z","","0" +"NM-04612","212.24000549316406","212.24000549316406","","1967-10-13T00:00:00Z","","0" +"NM-02004","9.100000381469727","9.100000381469727","","1989-03-15T00:00:00Z","","0" +"NM-00634","34.31999969482422","34.31999969482422","","1948-01-15T00:00:00Z","","0" +"NM-02615","4.420000076293945","4.420000076293945","","1972-03-13T00:00:00Z","","0" +"SV-0124","124","122.5","","2018-12-02T00:00:00Z","","1.5" +"NM-03397","20.1299991607666","20.1299991607666","","1984-10-25T00:00:00Z","","0" +"NM-05081","73.41999816894531","73.41999816894531","","1948-01-14T00:00:00Z","","0" +"NM-28252","16.690000534057617","16.690000534057617","","1947-05-05T00:00:00Z","","0" +"NM-14313","44.2599983215332","44.2599983215332","","1926-11-29T00:00:00Z","","0" +"NM-01796","6","6","","1953-02-15T00:00:00Z","","0" +"NM-27912","11.489999771118164","11.489999771118164","","1990-04-04T00:00:00Z","","0" +"NM-02989","66","66","","1995-01-06T00:00:00Z","","0" +"NM-20899","16.739999771118164","16.739999771118164","","1954-02-26T00:00:00Z","","0" +"NM-15044","452.4700012207031","452.4700012207031","","1963-10-01T00:00:00Z","","0" +"NM-16966","50.58000183105469","50.58000183105469","","1997-03-12T00:00:00Z","","0" +"NM-13425","400.239990234375","400.239990234375","","1964-06-01T00:00:00Z","","0" +"NM-01826","12.149999618530273","12.149999618530273","","1952-11-07T00:00:00Z","","0" +"NM-24809","118.33000183105469","118.33000183105469","","1985-04-16T00:00:00Z","","0" +"NM-01868","10.970000267028809","10.970000267028809","","2005-02-22T00:00:00Z","","0" +"NM-19336","88.0999984741211","88.0999984741211","","1982-03-19T00:00:00Z","","0" +"NM-02776","7.309999942779541","7.309999942779541","","1953-01-24T00:00:00Z","","0" +"NM-08758","13.350000381469727","13.350000381469727","","1956-11-21T00:00:00Z","","0" +"NM-16116","54.9900016784668","54.9900016784668","","1990-02-15T00:00:00Z","","0" +"NM-07225","195.8800048828125","195.8800048828125","","1973-05-01T00:00:00Z","","0" +"NM-00664","476.54998779296875","476.54998779296875","","1961-01-03T00:00:00Z","","0" +"NM-02288","5.96999979019165","5.96999979019165","","2004-10-06T00:00:00Z","","0" +"NM-11026","134.5800018310547","134.5800018310547","","1972-10-01T00:00:00Z","","0" +"NM-11112","29.09000015258789","29.09000015258789","","1938-03-01T00:00:00Z","","0" +"NM-00285","29.75","29.75","","1976-02-13T00:00:00Z","","0" +"SB-0667","360","360","","1974-09-16T00:00:00Z","","0" +"NM-02797","5.920000076293945","5.920000076293945","","1967-08-30T00:00:00Z","","0" +"NM-10731","26.440000534057617","26.440000534057617","","1939-01-17T00:00:00Z","","0" +"BC-0181","409.30999755859375","409.30999755859375","","2015-06-04T00:00:00Z","","0" +"AB-0124","544.0900268554688","544.0900268554688","","1999-06-15T00:00:00Z","","" +"NM-22970","12.140000343322754","12.140000343322754","Z","2009-08-10T00:00:00Z","","0" +"AB-0165","483.8299865722656","483.8299865722656","","2004-08-02T00:00:00Z","","" +"NM-01246","99.5999984741211","99.5999984741211","","1988-03-29T00:00:00Z","","0" +"NM-11274","52.790000915527344","52.790000915527344","","1955-01-24T00:00:00Z","","0" +"NM-13561","4","4","","1958-05-06T00:00:00Z","","0" +"NM-17220","37.40999984741211","37.40999984741211","","1946-01-23T00:00:00Z","","0" +"NM-02412","32.310001373291016","32.310001373291016","","1939-05-08T00:00:00Z","","0" +"NM-05622","72.19000244140625","72.19000244140625","","1939-07-03T00:00:00Z","","0" +"NM-26059","170","170","","1986-02-06T00:00:00Z","","0" +"NM-13413","-71.45999908447266","-71.45999908447266","","1931-08-04T00:00:00Z","","0" +"NM-14535","87.95999908447266","87.95999908447266","","1973-05-04T00:00:00Z","","0" +"BC-0133","344.489990234375","344.489990234375","","2019-11-02T00:00:00Z","","0" +"NM-28255","47.27000045776367","47.27000045776367","","1952-05-15T00:00:00Z","","0" +"DE-0322","35.20000076293945","35.20000076293945","","2014-08-06T00:00:00Z","","0" +"NM-01816","106.5","106.5","","1995-01-13T00:00:00Z","","0" +"SV-0145","151.1999969482422","149.3699951171875","","2018-05-26T00:00:00Z","","1.8300000429153442" +"NM-02005","8.600000381469727","8.600000381469727","","1964-04-15T00:00:00Z","","0" +"NM-03299","64.73999786376953","64.73999786376953","","1980-01-10T00:00:00Z","","0" +"NM-27733","73.66999816894531","73.66999816894531","","1966-03-02T00:00:00Z","","0" +"NM-14246","57.31999969482422","57.31999969482422","","1990-10-03T00:00:00Z","","0" +"NM-17716","3.0399999618530273","3.0399999618530273","","1946-12-31T00:00:00Z","","0" +"NM-00661","53.060001373291016","53.060001373291016","","2001-01-04T00:00:00Z","","0" +"NM-13120","4.980000019073486","4.980000019073486","","1957-07-29T00:00:00Z","","0" +"SA-0007","245.14999389648438","244.76998901367188","V","2012-03-06T00:00:00Z","","0.3799999952316284" +"NM-27734","55.279998779296875","55.279998779296875","","1958-01-27T00:00:00Z","","0" +"NM-28251","68.9000015258789","68.9000015258789","","2004-01-05T00:00:00Z","","0" +"NM-28177","","","F","1928-08-01T00:00:00Z","","0" +"SA-0074","340.67999267578125","340.67999267578125","","1996-02-06T00:00:00Z","","0" +"NM-02435","49.79999923706055","49.79999923706055","","1987-01-01T00:00:00Z","","0" +"NM-14200","-11.970000267028809","-11.970000267028809","","1907-09-16T00:00:00Z","","0" +"SV-0042","72.19999694824219","70.19999694824219","","2019-07-13T00:00:00Z","","2" +"NM-09153","41.70000076293945","41.70000076293945","","1969-09-25T00:00:00Z","","0" +"NM-13794","-2.1600000858306885","-2.1600000858306885","","1912-09-24T00:00:00Z","","0" +"NM-20680","2.509999990463257","2.509999990463257","","2007-06-07T00:00:00Z","","0" +"DE-0097","93.25","93.25","","1999-08-24T00:00:00Z","","0" +"NM-19940","52.5099983215332","52.5099983215332","","1958-01-24T00:00:00Z","","0" +"NM-11000","59.9900016784668","59.9900016784668","","1970-01-07T00:00:00Z","","0" +"NM-08239","66.7300033569336","66.7300033569336","","1981-02-03T00:00:00Z","","0" +"NM-02622","170.6999969482422","170.6999969482422","","1977-01-08T00:00:00Z","","0" +"NM-02527","7.800000190734863","7.800000190734863","","1990-08-15T00:00:00Z","","0" +"NM-17716","5.230000019073486","5.230000019073486","","1949-12-17T00:00:00Z","","0" +"NM-16979","42.220001220703125","42.220001220703125","","1938-02-11T00:00:00Z","","0" +"NM-05632","16.420000076293945","16.420000076293945","","1942-10-15T00:00:00Z","","0" +"NM-04206","28.940000534057617","28.940000534057617","","1950-05-17T00:00:00Z","","0" +"NM-11550","8.529999732971191","8.529999732971191","","1942-01-19T00:00:00Z","","0" +"NM-28257","91.66000366210938","91.66000366210938","","1974-07-05T00:00:00Z","","0" +"SB-0264","119.5999984741211","119.5999984741211","","1955-01-21T00:00:00Z","","0" +"NM-02043","7.400000095367432","7.400000095367432","","1964-09-15T00:00:00Z","","0" +"NM-09782","94.75","94.75","","1981-01-22T00:00:00Z","","0" +"NM-00766","41.220001220703125","41.220001220703125","","2009-07-09T00:00:00Z","","0" +"NM-02527","12.300000190734863","12.300000190734863","","1972-09-15T00:00:00Z","","0" +"NM-27199","470.30999755859375","470.30999755859375","","2009-06-04T00:00:00Z","","0" +"NM-12935","107.33999633789062","107.33999633789062","","1990-09-11T00:00:00Z","","0" +"NM-23320","210.39999389648438","208.39999389648438","","2016-03-11T00:00:00Z","","2" +"NM-05094","90.43000030517578","90.43000030517578","","1956-09-10T00:00:00Z","","0" +"EB-264","10.079999923706055","10.079999923706055","","1999-05-19T00:00:00Z","","0" +"NM-13386","-7.929999828338623","-7.929999828338623","","1909-06-04T00:00:00Z","","0" +"NM-28251","76.25","76.25","","1989-07-05T00:00:00Z","","0" +"NM-17562","14.800000190734863","14.800000190734863","","1944-03-20T00:00:00Z","","0" +"SB-0299","100.83999633789062","100.83999633789062","","1967-01-25T00:00:00Z","","0" +"NM-09722","10.6899995803833","10.6899995803833","","2011-05-17T00:00:00Z","","0" +"NM-13869","-11.399999618530273","-11.399999618530273","","1911-12-19T00:00:00Z","","0" +"NM-00384","85.81999969482422","85.81999969482422","","2012-08-13T00:00:00Z","","0" +"SB-0247","58.52000045776367","58.52000045776367","","1979-01-24T00:00:00Z","","0" +"NM-01841","283.4100036621094","283.4100036621094","","1999-07-30T00:00:00Z","","0" +"DE-0177","47.5099983215332","47.5099983215332","","2015-12-16T00:00:00Z","","0" +"NM-28256","253.38999938964844","253.38999938964844","","1982-08-15T00:00:00Z","","0" +"BC-0238","61.77000045776367","61.77000045776367","","2016-06-29T00:00:00Z","","0" +"NM-26769","-9.0600004196167","-9.0600004196167","","1982-02-24T00:00:00Z","","0" +"NM-02487","10.800000190734863","10.800000190734863","","1968-06-15T00:00:00Z","","0" +"NM-07719","82.02999877929688","82.02999877929688","","1955-08-03T00:00:00Z","","0" +"NM-13425","396.69000244140625","396.69000244140625","","1968-04-01T00:00:00Z","","0" +"NM-21358","260.2300109863281","260.2300109863281","","2002-04-30T00:00:00Z","","0" +"NM-19981","194.88999938964844","194.88999938964844","","1982-02-19T00:00:00Z","","0" +"NM-21886","4.050000190734863","4.050000190734863","Z","2005-04-21T00:00:00Z","","0" +"AB-0107","423.0899963378906","423.0899963378906","","2013-11-14T00:00:00Z","","" +"NM-28257","31.43000030517578","31.43000030517578","","1973-05-25T00:00:00Z","","0" +"NM-08647","26.940000534057617","26.940000534057617","","1937-11-23T00:00:00Z","","0" +"EB-164","404.95001220703125","403.0500183105469","","2009-08-12T00:00:00Z","","1.899999976158142" +"NM-02509","81.45999908447266","81.45999908447266","","1992-06-05T00:00:00Z","","0" +"NM-28018","486.2699890136719","486.2699890136719","S","2015-04-17T00:00:00Z","","0" +"NM-27449","20.020000457763672","20.020000457763672","","1999-01-07T00:00:00Z","","0" +"NM-28251","76.43000030517578","76.43000030517578","","1989-09-15T00:00:00Z","","0" +"EB-478","171","171","","1986-09-30T00:00:00Z","","0" +"BC-0427","","309.75","","2023-03-24T00:00:00Z","","2" +"NM-02091","88.98999786376953","88.98999786376953","","1968-01-29T00:00:00Z","","0" +"NM-11012","13.579999923706055","13.579999923706055","","1958-09-22T00:00:00Z","","0" +"TB-0103","57.27000045776367","57.27000045776367","","2010-08-27T00:00:00Z","","0" +"AB-0211","162.7899932861328","162.7899932861328","","1996-12-05T00:00:00Z","","" +"NM-08086","130.10000610351562","130.10000610351562","R","1971-02-01T00:00:00Z","","0" +"NM-01137","218.92999267578125","218.92999267578125","P","2007-04-24T00:00:00Z","","0" +"BC-0160","183.75","183.75","R","1993-06-18T00:00:00Z","","0" +"NM-03353","54.790000915527344","54.790000915527344","","1995-10-26T00:00:00Z","","0" +"NM-25495","21","21","","1993-01-28T00:00:00Z","","0" +"NM-03025","76.05999755859375","76.05999755859375","","1982-01-11T00:00:00Z","","0" +"NM-07504","26.350000381469727","26.350000381469727","","1977-12-15T00:00:00Z","","0" +"EB-483","2.6600000858306885","2.6600000858306885","","1985-03-21T00:00:00Z","","" +"NM-01491","101.4000015258789","101.4000015258789","","1985-06-28T00:00:00Z","","0" +"SB-0231","89.38999938964844","89.38999938964844","","1949-11-23T00:00:00Z","","0" +"SO-0195","16.43000030517578","13.65999984741211","","2018-02-26T00:00:00Z","0001-01-01T12:07:00Z","2.7699999809265137" +"NM-01868","7.300000190734863","7.300000190734863","","1997-10-15T00:00:00Z","","0" +"NM-08232","999.1900024414062","999.1900024414062","","1967-01-05T00:00:00Z","","0" +"NM-26650","9.180000305175781","9.180000305175781","","2011-07-29T00:00:00Z","","0" +"NM-21526","295.20001220703125","295.20001220703125","","2009-10-05T00:00:00Z","","0" +"NM-21286","97.01000213623047","97.01000213623047","","2011-09-28T00:00:00Z","","0" +"NM-04896","104.41999816894531","104.41999816894531","R","1965-10-19T00:00:00Z","","0" +"NM-00346","50.5","50.5","","2006-01-24T00:00:00Z","","0" +"NM-05836","57.7400016784668","57.7400016784668","","1931-12-14T00:00:00Z","","0" +"NM-14325","65.1500015258789","65.1500015258789","","1969-10-15T00:00:00Z","","0" +"NM-02976","101.1500015258789","101.1500015258789","","1962-01-17T00:00:00Z","","0" +"NM-02484","29.950000762939453","29.950000762939453","Z","1999-04-08T00:00:00Z","","0" +"NM-16537","10.960000038146973","10.960000038146973","","1936-11-23T00:00:00Z","","0" +"EB-416","271.6499938964844","271.6499938964844","Z","2007-01-31T00:00:00Z","","0" +"BC-0156","152.60000610351562","152.60000610351562","R","1992-05-15T00:00:00Z","","0" +"NM-11165","43.91999816894531","43.91999816894531","P","1971-03-09T00:00:00Z","","0" +"NM-02796","21.940000534057617","21.940000534057617","","2010-01-21T00:00:00Z","","0" +"NM-13900","4.860000133514404","4.860000133514404","","1963-02-27T00:00:00Z","","0" +"NM-02487","13.699999809265137","13.699999809265137","","1978-03-15T00:00:00Z","","0" +"NM-05980","58.650001525878906","58.650001525878906","","1932-08-03T00:00:00Z","","0" +"NM-05718","90.97000122070312","90.97000122070312","","1947-03-20T00:00:00Z","","0" +"NM-23900","527.1199951171875","527.1199951171875","","1987-01-01T00:00:00Z","","0" +"NM-03979","162.22000122070312","162.22000122070312","","1961-08-15T00:00:00Z","","0" +"NM-17548","14.149999618530273","14.149999618530273","","1942-10-22T00:00:00Z","","0" +"NM-02535","12.859999656677246","12.859999656677246","","1984-07-16T00:00:00Z","","0" +"NM-16639","13.960000038146973","13.960000038146973","","1946-01-27T00:00:00Z","","0" +"NM-17577","39.470001220703125","39.470001220703125","","1934-09-17T00:00:00Z","","0" +"NM-10043","-28.719999313354492","-28.719999313354492","","1912-12-03T00:00:00Z","","0" +"NM-02128","126.02999877929688","126.02999877929688","","2002-02-13T00:00:00Z","","0" +"NM-28017","486.42999267578125","486.42999267578125","S","2015-04-16T00:00:00Z","","0" +"SA-0192","122.44999694824219","121.66999816894531","","2021-03-16T00:00:00Z","0001-01-01T12:21:00Z","0.7799999713897705" +"NM-02732","90.5","90.5","","1957-10-29T00:00:00Z","","0" +"NM-17489","21.959999084472656","21.959999084472656","","1938-02-10T00:00:00Z","","0" +"NM-22605","56.790000915527344","56.790000915527344","","1983-04-14T00:00:00Z","","0" +"NM-02831","62.650001525878906","62.650001525878906","","1974-10-01T00:00:00Z","","0" +"NM-01873","35.900001525878906","35.900001525878906","","1955-11-20T00:00:00Z","","0" +"NM-02281","45.61000061035156","45.61000061035156","","2016-06-20T00:00:00Z","","0" +"EB-356","250.4290008544922","248.4290008544922","","2002-02-20T00:00:00Z","","2" +"NM-12559","17.8799991607666","17.8799991607666","","1958-01-14T00:00:00Z","","0" +"NM-03459","15.119999885559082","15.119999885559082","","1988-03-16T00:00:00Z","","0" +"NM-11345","83.55000305175781","83.55000305175781","","1979-02-19T00:00:00Z","","0" +"NM-24766","182.6999969482422","182.6999969482422","","1975-01-15T00:00:00Z","","0" +"NM-08583","16.760000228881836","16.760000228881836","","2004-03-25T00:00:00Z","","0" +"BC-0160","200.6999969482422","200.6999969482422","","2018-04-05T00:00:00Z","","0" +"SB-0442","169.60000610351562","169.60000610351562","","2010-07-15T00:00:00Z","","0" +"TB-0212","31.90999984741211","29.09000015258789","","2007-12-14T00:00:00Z","","2.819999933242798" +"NM-02781","60.130001068115234","60.130001068115234","","1959-01-09T00:00:00Z","","0" +"NM-03396","15.869999885559082","15.869999885559082","","2006-03-01T00:00:00Z","","0" +"NM-02227","112.7699966430664","112.7699966430664","","1969-01-16T00:00:00Z","","0" +"NM-28252","33.95000076293945","33.95000076293945","","1957-12-05T00:00:00Z","","0" +"DE-0263","85.69999694824219","85.69999694824219","","2018-03-23T00:00:00Z","","0" +"NM-09902","73.08000183105469","73.08000183105469","","1963-11-21T00:00:00Z","","0" +"NM-00257","94","94","","2003-10-29T00:00:00Z","","0" +"DE-0146","108.30999755859375","108.30999755859375","","2011-11-29T00:00:00Z","","0" +"NM-20690","185.38999938964844","185.38999938964844","","1986-10-24T00:00:00Z","","0" +"NM-22700","3.7899999618530273","3.7899999618530273","Z","2007-01-26T00:00:00Z","","0" +"NM-14085","77.05000305175781","77.05000305175781","","1966-01-12T00:00:00Z","","0" +"NM-11084","111.5199966430664","111.5199966430664","","1981-01-23T00:00:00Z","","0" +"BC-0026","","81.5","","2021-03-06T00:00:00Z","","1" +"NM-28256","85.38999938964844","85.38999938964844","","1986-02-25T00:00:00Z","","0" +"NM-28256","175.08999633789062","175.08999633789062","","1987-09-25T00:00:00Z","","0" +"NM-03285","72.11000061035156","72.11000061035156","","2001-08-30T00:00:00Z","","0" +"DE-0065","22.729999542236328","20.829999923706055","","1994-07-01T00:00:00Z","","1.899999976158142" +"NM-06963","50.41999816894531","50.41999816894531","","1965-11-04T00:00:00Z","","0" +"NM-20757","88.05999755859375","88.05999755859375","","1977-03-02T00:00:00Z","","0" +"NM-02487","8.699999809265137","8.699999809265137","","1980-06-15T00:00:00Z","","0" +"SB-0299","128.0800018310547","128.0800018310547","","1981-04-05T00:00:00Z","","0" +"NM-28256","157.19000244140625","157.19000244140625","","2021-07-26T00:00:00Z","","0" +"NM-01897","24.219999313354492","24.219999313354492","","2014-01-30T00:00:00Z","","0" +"NM-03290","6.650000095367432","6.650000095367432","","1978-01-30T00:00:00Z","","0" +"NM-27639","61","61","","1972-01-19T00:00:00Z","","0" +"AB-0211","166.57000732421875","166.57000732421875","","2008-07-08T00:00:00Z","","" +"NM-02997","64.94000244140625","64.94000244140625","","1997-01-27T00:00:00Z","","0" +"NM-01856","82.68000030517578","82.68000030517578","","2005-02-26T00:00:00Z","","0" +"NM-13263","6.789999961853027","6.789999961853027","R","1951-01-26T00:00:00Z","","0" +"NM-20012","46.68000030517578","46.68000030517578","","1941-07-10T00:00:00Z","","0" +"NM-13594","55.459999084472656","55.459999084472656","","1965-07-26T00:00:00Z","","0" +"RA-017","13.449999809265137","12.25","AA","2023-09-14T00:00:00Z","0001-01-01T14:17:00Z","1.2000000476837158" +"NM-08189","9.100000381469727","9.100000381469727","","1968-05-15T00:00:00Z","","0" +"SV-0126","227.1999969482422","225.4499969482422","","2016-04-03T00:00:00Z","","1.75" +"NM-10210","62.150001525878906","62.150001525878906","","1981-04-01T00:00:00Z","","0" +"TB-0084","40.41999816894531","38.91999816894531","","2009-10-12T00:00:00Z","","1.5" +"NM-03240","96.0199966430664","96.0199966430664","P","1954-05-06T00:00:00Z","","0" +"NM-19887","34.189998626708984","34.189998626708984","","1963-01-21T00:00:00Z","","0" +"NM-09596","-58.75","-58.75","","1926-12-01T00:00:00Z","","0" +"NM-19993","33.470001220703125","33.470001220703125","","1951-02-12T00:00:00Z","","0" +"NM-15349","73.20999908447266","73.20999908447266","","1975-03-26T00:00:00Z","","0" +"NM-11975","88.70999908447266","88.70999908447266","","1952-01-22T00:00:00Z","","0" +"NM-25768","69.16999816894531","69.16999816894531","","1968-03-06T00:00:00Z","","0" +"NM-00257","90.16999816894531","90.16999816894531","","1974-12-01T00:00:00Z","","0" +"NM-28250","80.52999877929688","80.52999877929688","","1994-05-05T00:00:00Z","","0" +"NM-02282","399.70001220703125","399.70001220703125","","1973-07-01T00:00:00Z","","0" +"NM-03156","298.07000732421875","298.07000732421875","","1984-01-17T00:00:00Z","","0" +"NM-28020","468.3500061035156","468.3500061035156","S","2015-02-06T00:00:00Z","","0" +"NM-00643","107.02999877929688","107.02999877929688","","1986-08-22T00:00:00Z","","0" +"NM-11100","49.20000076293945","49.20000076293945","","1957-07-12T00:00:00Z","","0" +"NM-00029","44.40999984741211","44.40999984741211","","1965-01-27T00:00:00Z","","0" +"NM-07297","168.39999389648438","168.39999389648438","","1976-12-14T00:00:00Z","","0" +"NM-27271","36.22999954223633","36.22999954223633","","2016-01-21T00:00:00Z","","0" +"NM-19978","33.66999816894531","33.66999816894531","","1948-10-25T00:00:00Z","","0" +"NM-02095","369.1499938964844","369.1499938964844","","1989-02-15T00:00:00Z","","0" +"NM-11473","15.430000305175781","15.430000305175781","","1960-04-20T00:00:00Z","","0" +"NM-21660","476.760009765625","476.760009765625","","1993-12-06T00:00:00Z","","0" +"NM-27327","14.390000343322754","14.390000343322754","","1983-09-14T00:00:00Z","","0" +"NM-00367","111.1500015258789","111.1500015258789","","1993-02-22T00:00:00Z","","0" +"NM-18675","100.55999755859375","100.55999755859375","","1977-02-01T00:00:00Z","","0" +"NM-02025","215.3000030517578","215.3000030517578","","1998-02-11T00:00:00Z","","0" +"NM-17928","162.49000549316406","162.49000549316406","","1961-09-12T00:00:00Z","","0" +"DE-0186","45.790000915527344","45.790000915527344","","2012-06-26T00:00:00Z","","0" +"TV-272","265.6099853515625","262.8299865722656","","2005-06-10T00:00:00Z","","2.7799999713897705" +"NM-22676","6.440000057220459","6.440000057220459","Z","2007-01-19T00:00:00Z","","0" +"NM-14474","45","45","","1952-01-01T00:00:00Z","","0" +"EB-163","694.4000244140625","693.2000122070312","","2007-02-28T00:00:00Z","","1.2000000476837158" +"NM-11527","46.95000076293945","46.95000076293945","","1957-10-29T00:00:00Z","","0" +"NM-02932","88.58000183105469","88.58000183105469","","2000-01-12T00:00:00Z","","0" +"NM-03396","13.4399995803833","13.4399995803833","","1995-06-27T00:00:00Z","","0" +"NM-12353","29.700000762939453","29.700000762939453","","1934-09-20T00:00:00Z","","0" +"QY-0829","255.60000610351562","255.60000610351562","","1955-07-16T00:00:00Z","","0" +"NM-12741","327.79998779296875","327.79998779296875","","1994-02-07T00:00:00Z","","0" +"NM-04911","13.0600004196167","13.0600004196167","","1972-09-06T00:00:00Z","","0" +"DE-0310","45.91999816894531","45.91999816894531","","2014-12-09T00:00:00Z","","0" +"NM-19933","11.609999656677246","11.609999656677246","","1942-08-13T00:00:00Z","","0" +"NM-02209","76.68000030517578","76.68000030517578","","1939-05-10T00:00:00Z","","0" +"AB-0200","195.99000549316406","195.99000549316406","","2007-10-01T00:00:00Z","","" +"BC-0050","295.95001220703125","295.95001220703125","","2014-12-01T00:00:00Z","","0" +"NM-03066","222.27000427246094","222.27000427246094","","1982-01-11T00:00:00Z","","0" +"NM-01983","92.25","92.25","","1954-01-26T00:00:00Z","","0" +"NM-07114","75.94999694824219","75.94999694824219","","2002-01-10T00:00:00Z","","0" +"NM-07149","100.47000122070312","100.47000122070312","","2000-10-17T00:00:00Z","","0" +"NM-13860","-6.929999828338623","-6.929999828338623","","1911-03-01T00:00:00Z","","0" +"NM-00110","16.729999542236328","16.729999542236328","","1987-10-08T00:00:00Z","","0" +"NM-14867","47.349998474121094","47.349998474121094","R","1959-04-06T00:00:00Z","","0" +"PP-005","13","13","","2002-05-16T00:00:00Z","","0" +"EB-330","11.630000114440918","8.630000114440918","P","2011-10-05T00:00:00Z","","" +"NM-13121","5.670000076293945","5.670000076293945","","1960-10-31T00:00:00Z","","0" +"NM-12496","12.699999809265137","12.699999809265137","","1959-06-24T00:00:00Z","","0" +"NM-19353","113.58999633789062","113.58999633789062","","1976-07-07T00:00:00Z","","0" +"NM-03467","434.3999938964844","434.3999938964844","","2005-03-22T00:00:00Z","","0" +"NM-15123","172.63999938964844","172.63999938964844","","1985-01-23T00:00:00Z","","0" +"NM-01893","17.290000915527344","17.290000915527344","","2008-07-07T00:00:00Z","","0" +"NM-02046","161.60000610351562","161.60000610351562","","1997-02-07T00:00:00Z","","0" +"NM-11920","1.4600000381469727","1.4600000381469727","","1960-04-04T00:00:00Z","","0" +"NM-12009","56.060001373291016","56.060001373291016","","1955-01-27T00:00:00Z","","0" +"NM-21359","246.99000549316406","246.99000549316406","","2008-10-01T00:00:00Z","","0" +"NM-02026","58.470001220703125","58.470001220703125","Z","1994-09-19T00:00:00Z","","0" +"EB-298","143.97000122070312","143.97000122070312","","2006-05-16T00:00:00Z","","0" +"EB-262","65.48999786376953","65.48999786376953","","2009-08-06T00:00:00Z","","0" +"NM-17205","72.80999755859375","72.80999755859375","","1962-01-08T00:00:00Z","","0" +"DE-0108","35.220001220703125","35.220001220703125","","2005-01-24T00:00:00Z","","0" +"NM-13010","4.440000057220459","4.440000057220459","","1978-07-25T00:00:00Z","","0" +"NM-03783","250.85000610351562","250.85000610351562","P","1972-04-27T00:00:00Z","","0" +"NM-28256","278.9700012207031","278.9700012207031","","1996-06-15T00:00:00Z","","0" +"NM-03376","26.450000762939453","26.450000762939453","","1989-09-29T00:00:00Z","","0" +"NM-03017","203.1199951171875","203.1199951171875","","1995-01-03T00:00:00Z","","0" +"NM-07141","82.2699966430664","82.2699966430664","","1998-02-11T00:00:00Z","","0" +"AB-0018","171.35000610351562","171.35000610351562","","1980-05-30T00:00:00Z","","" +"NM-10543","28.610000610351562","28.610000610351562","","1970-01-16T00:00:00Z","","0" +"NM-13864","44.5","44.5","","1960-03-22T00:00:00Z","","0" +"NM-13901","6.869999885559082","6.869999885559082","","1957-08-08T00:00:00Z","","0" +"NM-07250","82.06999969482422","82.06999969482422","","2007-04-04T00:00:00Z","","0" +"SA-0114","195.83999633789062","193.5","","2017-02-24T00:00:00Z","0001-01-01T11:45:00Z","2.3399999141693115" +"NM-28257","77.80000305175781","77.80000305175781","","1962-04-25T00:00:00Z","","0" +"NM-20103","14.970000267028809","14.970000267028809","","1948-10-26T00:00:00Z","","0" +"NM-09783","182.39999389648438","182.39999389648438","","1981-01-23T00:00:00Z","","0" +"SB-0299","128.44000244140625","128.44000244140625","","1991-08-25T00:00:00Z","","0" +"NM-00603","78.18000030517578","78.18000030517578","","2008-12-17T00:00:00Z","","0" +"NM-17454","59.08000183105469","59.08000183105469","","1961-03-15T00:00:00Z","","0" +"EB-121","426.45001220703125","424.95001220703125","","2003-07-23T00:00:00Z","","1.5" +"NM-28253","22.18000030517578","22.18000030517578","","1965-01-15T00:00:00Z","","0" +"SB-0285","100.5999984741211","100.5999984741211","","2000-01-11T00:00:00Z","","0" +"NM-25026","420.29998779296875","420.29998779296875","","1981-04-01T00:00:00Z","","0" +"SB-0053","83.81999969482422","83.81999969482422","","2013-02-26T00:00:00Z","","0" +"NM-02831","21.020000457763672","21.020000457763672","","1950-05-01T00:00:00Z","","0" +"NM-24976","129.6300048828125","129.6300048828125","","1955-03-01T00:00:00Z","","0" +"NM-21456","291.1000061035156","291.1000061035156","","1992-10-28T00:00:00Z","","0" +"NM-05420","16.719999313354492","16.719999313354492","","1953-07-29T00:00:00Z","","0" +"NM-20272","302.9700012207031","302.9700012207031","","1954-11-24T00:00:00Z","","0" +"NM-13247","130.25","130.25","","1971-01-19T00:00:00Z","","0" +"NM-10098","-64.52999877929688","-64.52999877929688","","1913-12-09T00:00:00Z","","0" +"NM-11895","109.43000030517578","109.43000030517578","","1957-03-08T00:00:00Z","","0" +"NM-08990","92.70999908447266","92.70999908447266","","1957-08-15T00:00:00Z","","0" +"NM-08783","124.5199966430664","124.5199966430664","","1948-11-08T00:00:00Z","","0" +"NM-28256","105.98999786376953","105.98999786376953","","2009-03-05T00:00:00Z","","0" +"NM-17716","2.509999990463257","2.509999990463257","","1943-09-18T00:00:00Z","","0" +"NM-13939","-17.170000076293945","-17.170000076293945","","1907-03-07T00:00:00Z","","0" +"NM-02384","7.599999904632568","7.599999904632568","","1993-02-15T00:00:00Z","","0" +"NM-28256","233.99000549316406","233.99000549316406","","2017-06-05T00:00:00Z","","0" +"EB-141","32.5","32.5","","1993-12-27T00:00:00Z","","0" +"NM-00718","145.63999938964844","145.63999938964844","","2012-06-06T00:00:00Z","","0" +"NM-05480","96.33000183105469","96.33000183105469","","1958-11-18T00:00:00Z","","0" +"NM-09670","91.23999786376953","91.23999786376953","","1977-01-13T00:00:00Z","","0" +"NM-03090","68.38999938964844","68.38999938964844","","1995-01-06T00:00:00Z","","0" +"NM-28253","26.360000610351562","26.360000610351562","","1970-11-25T00:00:00Z","","0" +"NM-28258","193.5500030517578","193.5500030517578","","2020-09-25T00:00:00Z","","0" +"NM-23246","260.260009765625","260.260009765625","Z","1996-05-06T00:00:00Z","","0" +"SM-0064","62.810001373291016","60.90999984741211","","2006-12-13T00:00:00Z","","1.899999976158142" +"NM-01948","5.5","5.5","","1991-03-15T00:00:00Z","","0" +"NM-06384","253.47000122070312","253.47000122070312","","2008-07-14T00:00:00Z","","0" +"NM-14672","126.2699966430664","126.2699966430664","","1963-11-18T00:00:00Z","","0" +"NM-27713","110.2300033569336","110.2300033569336","","1971-12-16T00:00:00Z","","0" +"NM-13368","-47.20000076293945","-47.20000076293945","","1909-06-16T00:00:00Z","","0" +"NM-13036","8.069999694824219","8.069999694824219","","1978-10-17T00:00:00Z","","0" +"NM-13425","400.29998779296875","400.29998779296875","","1962-03-01T00:00:00Z","","0" +"NM-02082","86.12000274658203","86.12000274658203","","1971-01-23T00:00:00Z","","0" +"NM-07719","52.29999923706055","52.29999923706055","P","1945-07-24T00:00:00Z","","0" +"NM-11445","77.55999755859375","77.55999755859375","","1970-01-08T00:00:00Z","","0" +"NM-01926","6.699999809265137","6.699999809265137","","1983-04-15T00:00:00Z","","0" +"NM-01847","8.699999809265137","8.699999809265137","","1972-01-06T00:00:00Z","","0" +"NM-01931","334.7799987792969","334.7799987792969","","1967-01-12T00:00:00Z","","0" +"DE-0064","19.6200008392334","17.720001220703125","","2003-10-14T00:00:00Z","","1.899999976158142" +"NM-00498","66.11000061035156","66.11000061035156","","1978-09-01T00:00:00Z","","0" +"NM-22975","23.610000610351562","23.610000610351562","","1982-09-14T00:00:00Z","","0" +"NM-20438","327.1099853515625","327.1099853515625","","1962-03-19T00:00:00Z","","0" +"NM-11473","15.550000190734863","15.550000190734863","","1960-05-05T00:00:00Z","","0" +"NM-02496","109.93000030517578","109.93000030517578","","1962-04-11T00:00:00Z","","0" +"NM-19137","237.0500030517578","237.0500030517578","","1956-10-25T00:00:00Z","","0" +"NM-03014","88.51000213623047","88.51000213623047","","1977-01-04T00:00:00Z","","0" +"NM-27255","44.41999816894531","44.41999816894531","","1950-05-18T00:00:00Z","","0" +"NM-12650","56.290000915527344","56.290000915527344","S","1961-01-10T00:00:00Z","","0" +"NM-24793","","","F","1974-01-25T00:00:00Z","","0" +"NM-02520","5.300000190734863","5.300000190734863","","1970-06-15T00:00:00Z","","0" +"NM-08798","37.90999984741211","37.90999984741211","","1991-03-13T00:00:00Z","","0" +"NM-28258","133.72999572753906","133.72999572753906","","1975-12-25T00:00:00Z","","0" +"NM-21694","77.33999633789062","77.33999633789062","","1951-02-16T00:00:00Z","","0" +"BC-0193","","240.5","","2020-11-05T00:00:00Z","","1.5" +"NM-14535","81.95999908447266","81.95999908447266","","1970-03-20T00:00:00Z","","0" +"NM-02586","290.260009765625","290.260009765625","","1987-01-13T00:00:00Z","","0" +"NM-03650","32.540000915527344","32.540000915527344","","1996-09-03T00:00:00Z","","0" +"NM-01985","11.800000190734863","11.800000190734863","","1952-10-15T00:00:00Z","","0" +"NM-01986","9.300000190734863","9.300000190734863","","1958-03-15T00:00:00Z","","0" +"NM-21920","8.829999923706055","8.829999923706055","","1976-02-11T00:00:00Z","","0" +"NM-06417","37.86000061035156","37.86000061035156","","1956-01-07T00:00:00Z","","0" +"NM-13899","5.300000190734863","5.300000190734863","","1968-10-09T00:00:00Z","","0" +"NM-00367","123.44999694824219","123.44999694824219","","1970-04-01T00:00:00Z","","0" +"NM-05622","63.70000076293945","63.70000076293945","","1933-05-20T00:00:00Z","","0" +"NM-13235","4.610000133514404","4.610000133514404","","1960-09-01T00:00:00Z","","0" +"NM-26227","-82.54000091552734","-82.54000091552734","E","1985-05-07T00:00:00Z","","0" +"EB-265","175.7899932861328","175.7899932861328","Z","1998-03-31T00:00:00Z","","0" +"NM-02788","193.33999633789062","193.33999633789062","","1976-01-19T00:00:00Z","","0" +"NM-21606","83.05000305175781","83.05000305175781","","1955-08-09T00:00:00Z","","0" +"EB-485","511","510","P","1996-04-30T00:00:00Z","","1" +"NM-03132","390.760009765625","390.760009765625","","1985-01-13T00:00:00Z","","0" +"NM-28252","65.68000030517578","65.68000030517578","","1976-10-15T00:00:00Z","","0" +"SM-0068","261.25","261.25","","1969-01-23T00:00:00Z","","0" +"NM-00829","60.900001525878906","60.900001525878906","","1988-06-27T00:00:00Z","","0" +"NM-03732","30.139999389648438","30.139999389648438","","1978-01-23T00:00:00Z","","0" +"NM-01863","16.18000030517578","16.18000030517578","","1984-02-16T00:00:00Z","","0" +"NM-14973","34.90999984741211","34.90999984741211","","1984-02-03T00:00:00Z","","0" +"DE-0202","52.380001068115234","52.380001068115234","","2015-10-21T00:00:00Z","","0" +"NM-12492","68.52999877929688","68.52999877929688","","1977-04-27T00:00:00Z","","0" +"WS-007","3.0299999713897705","3.0299999713897705","","2011-05-16T00:00:00Z","","0" +"NM-06525","270.2699890136719","270.2699890136719","","1967-12-22T00:00:00Z","","0" +"NM-00761","33.400001525878906","33.400001525878906","","1960-03-22T00:00:00Z","","0" +"NM-20748","3.240000009536743","3.240000009536743","","2006-08-03T00:00:00Z","","0" +"EB-680","193","193","","1997-03-31T00:00:00Z","","0" +"NM-07735","309.0299987792969","309.0299987792969","","1975-01-27T00:00:00Z","","0" +"NM-16269","131","131","","1957-10-03T00:00:00Z","","0" +"TO-0476","12.100000381469727","12.100000381469727","","1950-07-12T00:00:00Z","","0" +"NM-21306","6.179999828338623","6.179999828338623","","1948-05-20T00:00:00Z","","0" +"NM-02543","61.54999923706055","61.54999923706055","","1959-01-27T00:00:00Z","","0" +"NM-02560","102.98999786376953","102.98999786376953","","1963-07-01T00:00:00Z","","0" +"NM-07888","661.2899780273438","661.2899780273438","","1975-07-13T00:00:00Z","","0" +"NM-03478","525.72998046875","525.72998046875","","1989-10-30T00:00:00Z","","0" +"NM-18658","17.3799991607666","17.3799991607666","","1966-12-15T00:00:00Z","","0" +"NM-07114","77.36000061035156","77.36000061035156","","2005-05-27T00:00:00Z","","0" +"NM-02677","46.099998474121094","46.099998474121094","","1990-01-11T00:00:00Z","","0" +"NM-10665","67.83999633789062","67.83999633789062","","1955-12-08T00:00:00Z","","0" +"NM-28254","87.30000305175781","87.30000305175781","","1988-04-25T00:00:00Z","","0" +"NM-12324","-29.8799991607666","-29.8799991607666","","1911-02-02T00:00:00Z","","0" +"NM-13882","-4.599999904632568","-4.599999904632568","","1909-03-02T00:00:00Z","","0" +"NM-05284","52.75","52.75","","1964-01-07T00:00:00Z","","0" +"NM-09179","59.72999954223633","59.72999954223633","","1971-02-12T00:00:00Z","","0" +"NM-16497","55.939998626708984","55.939998626708984","","1971-12-14T00:00:00Z","","0" +"NM-11331","10.300000190734863","10.300000190734863","","1972-12-10T00:00:00Z","","0" +"BC-0168","313.75","313.75","","2015-03-12T00:00:00Z","","0" +"NM-11447","68.27999877929688","68.27999877929688","","1994-08-23T00:00:00Z","","0" +"NM-23149","60.349998474121094","60.349998474121094","","1946-02-01T00:00:00Z","","0" +"NM-01390","124.9000015258789","124.9000015258789","","2011-08-05T00:00:00Z","","0" +"NM-22131","148.33999633789062","148.33999633789062","","1997-08-27T00:00:00Z","","0" +"AB-0077","6.159999847412109","6.159999847412109","","1998-11-19T00:00:00Z","","" +"SB-0053","85.70999908447266","85.70999908447266","","2001-01-17T00:00:00Z","","0" +"NM-17094","33.13999938964844","33.13999938964844","","1947-09-13T00:00:00Z","","0" +"BC-0018","60.349998474121094","60.349998474121094","","2017-09-29T00:00:00Z","","0" +"EB-245","227.60000610351562","227.60000610351562","","2002-12-05T00:00:00Z","","" +"NM-21622","8.229999542236328","8.229999542236328","","1995-01-12T00:00:00Z","","0" +"NM-18538","323.8399963378906","323.8399963378906","","2013-07-24T00:00:00Z","","0" +"NM-07475","162.4199981689453","162.4199981689453","","1990-08-30T00:00:00Z","","0" +"NM-19102","50.290000915527344","50.290000915527344","","1987-03-04T00:00:00Z","","0" +"NM-16848","52.959999084472656","52.959999084472656","","1977-01-11T00:00:00Z","","0" +"NM-28024","475.4800109863281","475.4800109863281","S","2015-05-08T00:00:00Z","","0" +"NM-10099","167.6300048828125","167.6300048828125","","1979-05-04T00:00:00Z","","0" +"NM-02290","188.77999877929688","188.77999877929688","","1982-01-28T00:00:00Z","","0" +"NM-00355","17.799999237060547","17.799999237060547","","1957-04-27T00:00:00Z","","0" +"NM-01239","19.59000015258789","19.59000015258789","","1985-11-01T00:00:00Z","","0" +"NM-00734","216.27999877929688","216.27999877929688","","2008-06-18T00:00:00Z","","0" +"NM-24864","28.600000381469727","28.600000381469727","","1959-08-05T00:00:00Z","","0" +"NM-26693","15.029999732971191","15.029999732971191","","1983-01-25T00:00:00Z","","0" +"NM-04077","148.75","148.75","","1953-11-20T00:00:00Z","","0" +"NM-05093","104.12999725341797","104.12999725341797","","1968-01-29T00:00:00Z","","0" +"NM-13857","3.8499999046325684","3.8499999046325684","","1960-03-31T00:00:00Z","","0" +"NM-14349","21.75","21.75","","1957-05-20T00:00:00Z","","0" +"NM-11070","27.530000686645508","27.530000686645508","","1946-01-19T00:00:00Z","","0" +"NM-03667","69.19000244140625","69.19000244140625","","2000-06-30T00:00:00Z","","0" +"AB-0215","156.38999938964844","156.38999938964844","","2006-05-09T00:00:00Z","","" +"NM-04538","63.66999816894531","63.66999816894531","","1950-07-21T00:00:00Z","","0" +"NM-01841","230.8300018310547","230.8300018310547","","1965-05-20T00:00:00Z","","0" +"DE-0198","50.58000183105469","50.58000183105469","","2011-11-10T00:00:00Z","","0" +"NM-12374","8.119999885559082","8.119999885559082","","1961-01-12T00:00:00Z","","0" +"NM-28251","92.19999694824219","92.19999694824219","","1978-10-15T00:00:00Z","","0" +"NM-03669","17.719999313354492","17.719999313354492","","1986-02-04T00:00:00Z","","0" +"NM-00257","92.55000305175781","92.55000305175781","","1997-12-29T00:00:00Z","","0" +"UC-0001","181.0399932861328","181.0399932861328","","1996-01-25T00:00:00Z","","0" +"NM-10695","19.489999771118164","19.489999771118164","","1979-02-27T00:00:00Z","","0" +"NM-18530","281.739990234375","281.739990234375","","1982-01-20T00:00:00Z","","0" +"NM-28259","72.88999938964844","72.88999938964844","","1987-02-25T00:00:00Z","","0" +"NM-14983","185.8800048828125","185.8800048828125","","1985-01-15T00:00:00Z","","0" +"NM-06458","17.389999389648438","17.389999389648438","","2015-12-18T00:00:00Z","","0" +"NM-20526","18.280000686645508","18.280000686645508","","1941-02-21T00:00:00Z","","0" +"NM-05305","134","134","","1982-03-02T00:00:00Z","","0" +"WL-0090","33.83333206176758","31.453330993652344","","1995-02-17T00:00:00Z","","2.380000114440918" +"NM-11263","41.529998779296875","41.529998779296875","","1939-10-18T00:00:00Z","","0" +"EB-479","138","138","","1991-07-31T00:00:00Z","","0" +"NM-04637","94.45999908447266","94.45999908447266","","1953-02-01T00:00:00Z","","0" +"NM-16462","112","112","","1982-03-19T00:00:00Z","","0" +"TB-0103","58.77000045776367","58.77000045776367","","2011-06-13T00:00:00Z","","0" +"NM-11258","66.81999969482422","66.81999969482422","","1970-01-07T00:00:00Z","","0" +"NM-08714","35.66999816894531","35.66999816894531","","1941-01-26T00:00:00Z","","0" +"NM-03477","72.38999938964844","72.38999938964844","","1966-02-07T00:00:00Z","","0" +"NM-28253","40.130001068115234","40.130001068115234","","1960-08-25T00:00:00Z","","0" +"NM-00385","38.97999954223633","38.97999954223633","","1942-11-26T00:00:00Z","","0" +"NM-13809","-55.290000915527344","-55.290000915527344","","1911-11-13T00:00:00Z","","0" +"NM-21379","20.709999084472656","20.709999084472656","","1944-06-08T00:00:00Z","","0" +"NM-00316","7.929999828338623","7.929999828338623","","1971-01-22T00:00:00Z","","0" +"NM-12297","6.420000076293945","6.420000076293945","","1949-03-14T00:00:00Z","","0" +"NM-10331","583.719970703125","583.719970703125","","1960-02-01T00:00:00Z","","0" +"NM-04137","125.31999969482422","125.31999969482422","","1951-07-25T00:00:00Z","","0" +"NM-08766","26","26","","1946-01-10T00:00:00Z","","0" +"QY-0818","98.5999984741211","98.5999984741211","","1955-07-14T00:00:00Z","","0" +"EB-647","35.849998474121094","35.849998474121094","","1988-03-25T00:00:00Z","","0" +"AB-0106","424.4700012207031","424.4700012207031","","2009-03-10T00:00:00Z","","" +"DE-0106","43.25","43.25","","2010-06-15T00:00:00Z","","0" +"NM-25028","185.25","185.25","","1983-03-01T00:00:00Z","","0" +"NM-04136","5.960000038146973","5.960000038146973","","1989-08-31T00:00:00Z","","0" +"NM-03763","57.0099983215332","57.0099983215332","","1972-02-01T00:00:00Z","","0" +"NM-13928","-81.8499984741211","-81.8499984741211","","1911-11-13T00:00:00Z","","0" +"NM-01429","276","276","","2011-09-02T00:00:00Z","","0" +"WL-0090","85.83333587646484","83.45333862304688","","2005-08-05T00:00:00Z","","2.380000114440918" +"NM-27393","81.83000183105469","81.83000183105469","","1957-01-04T00:00:00Z","","0" +"NM-28046","54.720001220703125","54.720001220703125","","1998-03-25T00:00:00Z","","0" +"DE-0111","37.619998931884766","37.619998931884766","","2010-04-20T00:00:00Z","","0" +"SM-0117","20.079999923706055","20.079999923706055","Z","1995-02-16T00:00:00Z","","0" +"NM-27680","107.0999984741211","107.0999984741211","","1975-06-05T00:00:00Z","","0" +"NM-17716","1.8700000047683716","1.8700000047683716","","1943-08-08T00:00:00Z","","0" +"NM-28019","480.1300048828125","480.1300048828125","","2015-04-16T00:00:00Z","","0" +"NM-00099","89.94999694824219","89.94999694824219","","1995-08-09T00:00:00Z","","0" +"NM-01946","111.4800033569336","111.4800033569336","","1997-01-30T00:00:00Z","","0" +"NM-02758","290","290","","1990-05-16T00:00:00Z","","0" +"NM-02176","164.25","164.25","","1972-01-06T00:00:00Z","","0" +"NM-17626","77.19000244140625","77.19000244140625","","1951-11-29T00:00:00Z","","0" +"NM-13407","8.600000381469727","8.600000381469727","","1957-04-29T00:00:00Z","","0" +"AB-0040","24.959999084472656","24.959999084472656","","2015-12-08T00:00:00Z","","0" +"NM-03111","348.92999267578125","348.92999267578125","S","1981-01-12T00:00:00Z","","0" +"NM-05972","35.0099983215332","35.0099983215332","","1961-04-06T00:00:00Z","","0" +"MI-0269","80","80","","1950-12-31T00:00:00Z","","0" +"NM-00747","18.360000610351562","18.360000610351562","","2014-02-11T00:00:00Z","","0" +"NM-02209","105.08000183105469","105.08000183105469","","1994-06-23T00:00:00Z","","0" +"DE-0110","40.540000915527344","40.540000915527344","","2012-09-20T00:00:00Z","","0" +"NM-28257","48.54999923706055","48.54999923706055","","1987-07-05T00:00:00Z","","0" +"NM-05784","51.189998626708984","51.189998626708984","","1931-11-15T00:00:00Z","","0" +"NM-28258","193.4499969482422","193.4499969482422","","2017-09-15T00:00:00Z","","0" +"NM-01839","6.650000095367432","6.650000095367432","","1999-01-22T00:00:00Z","","0" +"NM-16568","42.45000076293945","42.45000076293945","","1972-01-19T00:00:00Z","","0" +"NM-21360","244.9600067138672","244.9600067138672","","2013-11-14T00:00:00Z","","0" +"NM-21538","28.43000030517578","28.43000030517578","","1993-03-03T00:00:00Z","","0" +"EB-012","124.62000274658203","124.62000274658203","","1969-06-16T00:00:00Z","","0" +"NM-19382","97.93000030517578","97.93000030517578","","1963-08-05T00:00:00Z","","0" +"NM-02142","136.80999755859375","136.80999755859375","","1974-01-18T00:00:00Z","","0" +"SO-0169","6.75","6.110000133514404","","2021-01-06T00:00:00Z","0001-01-01T10:00:00Z","0.6399999856948853" +"NM-13274","-24.100000381469727","-24.100000381469727","","1908-12-11T00:00:00Z","","0" +"NM-12729","118.88999938964844","118.88999938964844","R","1979-03-26T00:00:00Z","","0" +"SO-0240","5.400000095367432","4.230000019073486","","2021-03-13T00:00:00Z","0001-01-01T09:05:00Z","1.1699999570846558" +"NM-02609","-47.20000076293945","-47.20000076293945","","1912-01-20T00:00:00Z","","0" +"WL-0089","35.91666793823242","33.366668701171875","","1988-03-29T00:00:00Z","","2.549999952316284" +"SB-0299","142.42999267578125","142.42999267578125","","2012-05-20T00:00:00Z","","0" +"NM-20331","24.549999237060547","24.549999237060547","","1953-02-25T00:00:00Z","","0" +"NM-05972","28.700000762939453","28.700000762939453","","1947-01-12T00:00:00Z","","0" +"NM-01539","57.130001068115234","57.130001068115234","R","2007-04-20T00:00:00Z","","0" +"NM-03903","328.6300048828125","328.6300048828125","","1975-03-13T00:00:00Z","","0" +"NM-22713","8","8","","1959-04-17T00:00:00Z","","0" +"NM-04755","94.86000061035156","94.86000061035156","","1976-03-25T00:00:00Z","","0" +"NM-24199","-83","-83","","1960-06-01T00:00:00Z","","0" +"NM-02109","30.979999542236328","30.979999542236328","P","1954-11-10T00:00:00Z","","0" +"NM-01824","120.13999938964844","120.13999938964844","","1976-08-25T00:00:00Z","","0" +"NM-28257","-10.390000343322754","-10.390000343322754","","2011-12-22T00:00:00Z","","0" +"NM-00498","56.349998474121094","56.349998474121094","","2009-07-15T00:00:00Z","","0" +"NM-19910","40.09000015258789","40.09000015258789","","1950-01-06T00:00:00Z","","0" +"NM-01899","85.80999755859375","85.80999755859375","","1999-09-03T00:00:00Z","","0" +"NM-02746","138.92999267578125","138.92999267578125","","1979-03-09T00:00:00Z","","0" +"NM-28019","480.04998779296875","480.04998779296875","S","2015-04-25T00:00:00Z","","0" +"NM-17989","17.440000534057617","17.440000534057617","","1935-04-16T00:00:00Z","","0" +"EB-270","204.42999267578125","204.42999267578125","","2004-12-09T00:00:00Z","","0" +"NM-02772","0.949999988079071","0.949999988079071","","1996-01-16T00:00:00Z","","0" +"NM-13858","5.650000095367432","5.650000095367432","","1957-12-17T00:00:00Z","","0" +"NM-20441","30.190000534057617","30.190000534057617","","1946-05-14T00:00:00Z","","0" +"NM-01330","","","O","2014-05-01T00:00:00Z","","0" +"NM-02854","32.459999084472656","32.459999084472656","","1994-02-08T00:00:00Z","","0" +"NM-02339","14.979999542236328","14.979999542236328","","1978-01-09T00:00:00Z","","0" +"NM-13144","-38.36000061035156","-38.36000061035156","","1958-11-04T00:00:00Z","","0" +"NM-06821","448.3900146484375","448.3900146484375","","2011-09-13T00:00:00Z","","0" +"NM-17303","117.3499984741211","117.3499984741211","","1982-03-10T00:00:00Z","","0" +"NM-00721","78.69999694824219","78.69999694824219","","2010-10-04T00:00:00Z","","0" +"NM-13213","8.850000381469727","8.850000381469727","","1957-03-11T00:00:00Z","","0" +"NM-09175","-86.47000122070312","-86.47000122070312","","1906-10-12T00:00:00Z","","0" +"NM-01985","13.899999618530273","13.899999618530273","","2003-05-15T00:00:00Z","","0" +"NM-05762","60.09000015258789","60.09000015258789","","1961-01-01T00:00:00Z","","0" +"NM-00185","12.699999809265137","12.699999809265137","","1976-02-15T00:00:00Z","","0" +"NM-12587","20.420000076293945","20.420000076293945","P","1981-03-04T00:00:00Z","","0" +"NM-02006","7.400000095367432","7.400000095367432","","1994-03-15T00:00:00Z","","0" +"NM-03369","57.20000076293945","57.20000076293945","Z","1990-10-02T00:00:00Z","","0" +"NM-00500","72.87000274658203","72.87000274658203","","1970-01-06T00:00:00Z","","0" +"NM-26510","131.1199951171875","131.1199951171875","","2004-05-12T00:00:00Z","","0" +"NM-01246","101.23999786376953","101.23999786376953","R","1992-05-06T00:00:00Z","","0" +"NM-02053","353.82000732421875","353.82000732421875","","1991-12-31T00:00:00Z","","0" +"NM-28259","104.5999984741211","104.5999984741211","","1996-10-25T00:00:00Z","","0" +"NM-00976","63.810001373291016","63.810001373291016","","1995-05-11T00:00:00Z","","0" +"SB-0097","120.69999694824219","120.69999694824219","","1969-02-05T00:00:00Z","","0" +"QU-011","62.47999954223633","61.66999816894531","","2015-08-25T00:00:00Z","","0.8100000023841858" +"NM-08647","27.260000228881836","27.260000228881836","","1934-09-16T00:00:00Z","","0" +"NM-06489","238.9199981689453","238.9199981689453","","2008-01-05T00:00:00Z","","0" +"DE-0145","94.41999816894531","94.41999816894531","","2011-03-08T00:00:00Z","","0" +"NM-02282","399.1700134277344","399.1700134277344","","1981-05-01T00:00:00Z","","0" +"NM-12753","141.3000030517578","141.3000030517578","","1969-01-14T00:00:00Z","","0" +"NM-12678","44.880001068115234","44.880001068115234","","1989-01-26T00:00:00Z","","0" +"NM-09230","47.90999984741211","47.90999984741211","S","1981-01-21T00:00:00Z","","0" +"NM-00576","19.270000457763672","19.270000457763672","","1981-03-09T00:00:00Z","","0" +"EB-258","96.18000030517578","96.18000030517578","","1976-08-08T00:00:00Z","","0" +"NM-08071","8.800000190734863","8.800000190734863","","1953-11-15T00:00:00Z","","0" +"NM-27588","61.70000076293945","61.70000076293945","","1971-01-06T00:00:00Z","","0" +"NM-21531","6.369999885559082","6.369999885559082","","1960-06-06T00:00:00Z","","0" +"NM-19656","20.520000457763672","20.520000457763672","","1942-04-09T00:00:00Z","","0" +"NM-27930","171.85000610351562","171.85000610351562","","1995-02-22T00:00:00Z","","0" +"NM-03073","228.02000427246094","228.02000427246094","","1987-01-06T00:00:00Z","","0" +"NM-28259","138.77999877929688","138.77999877929688","","1964-05-05T00:00:00Z","","0" +"NM-03385","39.97999954223633","39.97999954223633","Z","1991-02-06T00:00:00Z","","0" +"TV-174","16.93000030517578","15.870000839233398","","2007-02-06T00:00:00Z","","1.059999942779541" +"NM-19770","437.9100036621094","437.9100036621094","","1992-08-20T00:00:00Z","","0" +"NM-01891","51.5","51.5","","1991-02-08T00:00:00Z","","0" +"BC-0192","63.93000030517578","63.93000030517578","","2016-03-08T00:00:00Z","","0" +"NM-17716","5.570000171661377","5.570000171661377","","1949-02-07T00:00:00Z","","0" +"NM-07815","24.959999084472656","24.959999084472656","","1930-10-31T00:00:00Z","","0" +"NM-16780","26.65999984741211","26.65999984741211","","1948-05-27T00:00:00Z","","0" +"NM-01543","281.4599914550781","281.4599914550781","","1968-07-03T00:00:00Z","","0" +"NM-03426","358.7300109863281","358.7300109863281","","1994-03-31T00:00:00Z","","0" +"NM-00185","13.199999809265137","13.199999809265137","","1989-12-15T00:00:00Z","","0" +"NM-11548","32.060001373291016","32.060001373291016","","1945-01-12T00:00:00Z","","0" +"NM-22784","72.5999984741211","72.5999984741211","","1953-03-05T00:00:00Z","","0" +"NM-21621","272.32000732421875","272.32000732421875","","1998-04-01T00:00:00Z","","0" +"NM-13665","-5.039999961853027","-5.039999961853027","","1911-01-23T00:00:00Z","","0" +"NM-12014","61.68000030517578","61.68000030517578","","1959-01-14T00:00:00Z","","0" +"DE-0131","32.790000915527344","32.790000915527344","","2003-03-14T00:00:00Z","","0" +"NM-02197","12.020000457763672","12.020000457763672","","1999-01-20T00:00:00Z","","0" +"NM-13420","-33.34000015258789","-33.34000015258789","","1911-09-26T00:00:00Z","","0" +"NM-13968","-9.09000015258789","-9.09000015258789","","1906-06-19T00:00:00Z","","0" +"NM-27381","20.100000381469727","20.100000381469727","","2016-04-02T00:00:00Z","","0" +"NM-19941","90.19000244140625","90.19000244140625","","1976-03-05T00:00:00Z","","0" +"NM-07716","52.83000183105469","52.83000183105469","","1986-04-02T00:00:00Z","","0" +"NM-21359","246.67999267578125","246.67999267578125","","2001-04-19T00:00:00Z","","0" +"SM-0066","34.86000061035156","35.209999084472656","","2007-12-12T00:00:00Z","","-0.3499999940395355" +"NM-06702","371.6000061035156","371.6000061035156","","1993-08-25T00:00:00Z","","0" +"NM-10826","32.7400016784668","32.7400016784668","","1984-02-09T00:00:00Z","","0" +"NM-10069","8.789999961853027","8.789999961853027","","1972-08-25T00:00:00Z","","0" +"NM-07287","102.30000305175781","102.30000305175781","","1987-01-06T00:00:00Z","","0" +"AB-0211","164.58999633789062","164.58999633789062","","2003-11-19T00:00:00Z","","" +"NM-05729","23.139999389648438","23.139999389648438","","1933-06-01T00:00:00Z","","0" +"NM-06090","72.75","72.75","","1941-03-11T00:00:00Z","","0" +"NM-17271","81.91999816894531","81.91999816894531","","1972-01-04T00:00:00Z","","0" +"SO-0274","3.380000114440918","2.1500000953674316","","2018-11-29T00:00:00Z","0001-01-01T15:38:00Z","1.2300000190734863" +"NM-00917","37.75","37.75","","2015-01-29T00:00:00Z","","0" +"NM-21112","209.1699981689453","209.1699981689453","","1982-01-15T00:00:00Z","","0" +"NM-03007","84.41999816894531","84.41999816894531","Z","1989-03-15T00:00:00Z","","0" +"NM-20389","98.19000244140625","98.19000244140625","S","1959-09-21T00:00:00Z","","0" +"NM-01082","230.75","230.75","A","2010-02-17T00:00:00Z","","0" +"TB-0255","343.92999267578125","341.739990234375","","2015-11-23T00:00:00Z","","2.190000057220459" +"WL-0097","248.38999938964844","248.38999938964844","","2017-12-15T00:00:00Z","0001-01-01T09:39:00Z","0" +"NM-01892","13.420000076293945","13.420000076293945","","2000-07-20T00:00:00Z","","0" +"NM-02620","10","10","","1980-05-15T00:00:00Z","","0" +"NM-02831","38.04999923706055","38.04999923706055","","1999-08-16T00:00:00Z","","0" +"NM-21308","22.350000381469727","22.350000381469727","","1959-05-06T00:00:00Z","","0" +"NM-20289","43.63999938964844","43.63999938964844","","1949-03-28T00:00:00Z","","0" +"NM-05094","81.93000030517578","81.93000030517578","","1957-01-16T00:00:00Z","","0" +"NM-20295","43.66999816894531","43.66999816894531","P","1950-02-09T00:00:00Z","","0" +"NM-21773","8.5","8.5","","1972-01-20T00:00:00Z","","0" +"NM-07082","71.12999725341797","71.12999725341797","","2008-07-18T00:00:00Z","","0" +"NM-16678","64.33999633789062","64.33999633789062","","1982-01-09T00:00:00Z","","0" +"NM-01986","9.800000190734863","9.800000190734863","","1953-08-15T00:00:00Z","","0" +"NM-20699","18.969999313354492","18.969999313354492","","1968-02-27T00:00:00Z","","0" +"NM-27367","148.85000610351562","148.85000610351562","","1993-09-02T00:00:00Z","","0" +"NM-16789","8.239999771118164","8.239999771118164","","1953-09-23T00:00:00Z","","0" +"NM-14802","96.3499984741211","96.3499984741211","","1963-08-13T00:00:00Z","","0" +"SO-0182","11.84000015258789","11.239999771118164","","2021-09-19T00:00:00Z","0001-01-01T10:30:00Z","0.6000000238418579" +"AB-0180","153.4199981689453","153.4199981689453","","1999-08-24T00:00:00Z","","" +"NM-00452","64.5199966430664","64.5199966430664","","1978-01-04T00:00:00Z","","0" +"NM-11909","71.54000091552734","71.54000091552734","","1947-07-15T00:00:00Z","","0" +"NM-17904","73.87999725341797","73.87999725341797","","1963-01-22T00:00:00Z","","0" +"NM-12833","6.400000095367432","6.400000095367432","","1958-12-16T00:00:00Z","","0" +"NM-02384","7.900000095367432","7.900000095367432","","1951-07-15T00:00:00Z","","0" +"NM-21304","5.340000152587891","5.340000152587891","","1944-06-08T00:00:00Z","","0" +"NM-01899","58.970001220703125","58.970001220703125","","2003-12-22T00:00:00Z","","0" +"NM-13085","52.099998474121094","52.099998474121094","","1981-02-19T00:00:00Z","","0" +"NM-20451","195.1199951171875","195.1199951171875","","2005-11-08T00:00:00Z","","0" +"NM-21910","69.38999938964844","69.38999938964844","","2016-05-05T00:00:00Z","","0" +"NM-02101","7.400000095367432","7.400000095367432","","1960-11-15T00:00:00Z","","0" +"NM-11889","1.649999976158142","1.649999976158142","","1946-03-01T00:00:00Z","","0" +"EB-163","694.2000122070312","693","","2005-12-31T00:00:00Z","","1.2000000476837158" +"BC-0083","241.75","241.75","","2019-07-23T00:00:00Z","","0" +"NM-00916","194.52999877929688","194.52999877929688","","1983-01-10T00:00:00Z","","0" +"NM-24569","15.119999885559082","15.119999885559082","","1987-12-09T00:00:00Z","","0" +"NM-02024","103.51000213623047","103.51000213623047","","1971-01-20T00:00:00Z","","0" +"NM-02484","33.91999816894531","33.91999816894531","","2007-08-22T00:00:00Z","","0" +"NM-01872","10.300000190734863","10.300000190734863","","1978-03-15T00:00:00Z","","0" +"NM-28254","14","14","","2000-12-05T00:00:00Z","","0" +"AB-0184","352.1199951171875","352.1199951171875","","2007-02-08T00:00:00Z","","" +"NM-01198","19.329999923706055","19.329999923706055","","2012-01-30T00:00:00Z","","0" +"BC-0061","211.8699951171875","211.8699951171875","","2018-09-19T00:00:00Z","","0" +"NM-11985","20.950000762939453","20.950000762939453","","1945-01-14T00:00:00Z","","0" +"NM-01386","-189.22999572753906","-189.22999572753906","E","1986-09-17T00:00:00Z","","0" +"NM-03949","141.6199951171875","141.6199951171875","","1974-06-13T00:00:00Z","","0" +"NM-16364","72.33000183105469","72.33000183105469","","1984-04-02T00:00:00Z","","0" +"NM-03347","21.850000381469727","21.850000381469727","","1988-01-27T00:00:00Z","","0" +"NM-22529","256.6700134277344","256.6700134277344","","1960-08-02T00:00:00Z","","0" +"NM-03401","7.670000076293945","7.670000076293945","","1993-01-28T00:00:00Z","","0" +"AB-0070","153.0399932861328","153.0399932861328","","2008-10-16T00:00:00Z","","" +"NM-01891","63.9900016784668","63.9900016784668","","2005-05-31T00:00:00Z","","0" +"NM-10892","64.04000091552734","64.04000091552734","","1953-09-16T00:00:00Z","","0" +"NM-01761","58.7400016784668","58.7400016784668","","1959-08-06T00:00:00Z","","0" +"NM-17027","43.709999084472656","43.709999084472656","","1956-02-20T00:00:00Z","","0" +"PC-002","141.24000549316406","139.63999938964844","","2018-12-17T00:00:00Z","0001-01-01T14:03:00Z","1.600000023841858" +"NM-11224","-47.20000076293945","-47.20000076293945","","1911-06-11T00:00:00Z","","0" +"NM-27390","123.16000366210938","123.16000366210938","","1955-07-15T00:00:00Z","","0" +"DE-0111","34.470001220703125","34.470001220703125","","2005-08-18T00:00:00Z","","0" +"NM-00637","28.479999542236328","28.479999542236328","","1986-02-13T00:00:00Z","","0" +"NM-09905","76.94999694824219","76.94999694824219","","1984-01-04T00:00:00Z","","0" +"NM-10736","11.079999923706055","11.079999923706055","","1959-11-20T00:00:00Z","","0" +"NM-17500","153.25999450683594","153.25999450683594","","1982-03-16T00:00:00Z","","0" +"NM-17094","36.189998626708984","36.189998626708984","","1952-03-27T00:00:00Z","","0" +"NM-17628","43.4900016784668","43.4900016784668","","1943-11-25T00:00:00Z","","0" +"NM-13559","78.01000213623047","78.01000213623047","","1981-02-10T00:00:00Z","","0" +"NM-14439","58.720001220703125","58.720001220703125","","1966-01-04T00:00:00Z","","0" +"NM-19123","399.1600036621094","399.1600036621094","","1993-01-06T00:00:00Z","","0" +"EB-276","127","127","","1955-04-18T00:00:00Z","","0" +"AR-0007","13.25","11.850000381469727","","2016-11-22T00:00:00Z","0001-01-01T12:00:00Z","1.399999976158142" +"DE-0265","82.69000244140625","82.69000244140625","","2019-09-11T00:00:00Z","","0" +"DE-0270","83.3499984741211","83.3499984741211","","2019-03-21T00:00:00Z","","0" +"NM-18089","167.5399932861328","167.5399932861328","","1961-06-06T00:00:00Z","","0" +"EB-481","351","351","","1997-06-30T00:00:00Z","","0" +"NM-13314","16.479999542236328","16.479999542236328","","1979-04-04T00:00:00Z","","0" +"NM-14593","115.47000122070312","115.47000122070312","","1950-11-08T00:00:00Z","","0" +"EB-267","16.469999313354492","16.469999313354492","","2012-01-11T00:00:00Z","","0" +"NM-27722","32.2400016784668","32.2400016784668","","1946-01-22T00:00:00Z","","0" +"NM-20103","13.449999809265137","13.449999809265137","","1944-06-10T00:00:00Z","","0" +"SO-0180","3.9200000762939453","3.080000162124634","","2017-05-02T00:00:00Z","0001-01-01T14:15:00Z","0.8399999737739563" +"SA-0239","68.4800033569336","67.09000396728516","","2017-07-24T00:00:00Z","0001-01-01T13:00:00Z","1.3899999856948853" +"NM-16574","15.859999656677246","15.859999656677246","","1941-01-17T00:00:00Z","","0" +"NM-00644","29.149999618530273","29.149999618530273","S","2010-12-03T00:00:00Z","","0" +"NM-28258","176.24000549316406","176.24000549316406","","1989-08-15T00:00:00Z","","0" +"NM-00297","44.52000045776367","44.52000045776367","","1992-01-03T00:00:00Z","","0" +"NM-11527","49.150001525878906","49.150001525878906","","1958-10-09T00:00:00Z","","0" +"NM-11771","37.06999969482422","37.06999969482422","","1936-06-01T00:00:00Z","","0" +"NM-02811","84.44000244140625","84.44000244140625","","1958-05-14T00:00:00Z","","0" +"NM-24976","115.44000244140625","115.44000244140625","","1952-11-11T00:00:00Z","","0" +"NM-08153","14.970000267028809","14.970000267028809","","1948-03-16T00:00:00Z","","0" +"NM-07153","89.55000305175781","89.55000305175781","","1998-01-28T00:00:00Z","","0" +"NM-02836","28.75","28.75","","1974-01-07T00:00:00Z","","0" +"NM-03040","65.75","65.75","","1971-01-06T00:00:00Z","","0" +"NM-11118","13.75","13.75","","1958-08-27T00:00:00Z","","0" +"NM-02018","76.30000305175781","76.30000305175781","P","1951-07-20T00:00:00Z","","0" +"AB-0181","153.25999450683594","153.25999450683594","","2011-06-01T00:00:00Z","","" +"WL-0141","326.92999267578125","328.0299987792969","","2024-02-16T00:00:00Z","0001-01-01T09:25:00Z","-1.100000023841858" +"NM-02702","-25.25","-25.25","","1996-11-27T00:00:00Z","","0" +"NM-03723","65.55000305175781","65.55000305175781","","1978-01-26T00:00:00Z","","0" +"NM-13888","2.9800000190734863","2.9800000190734863","","1958-02-25T00:00:00Z","","0" +"NM-09828","-44.88999938964844","-44.88999938964844","","1915-08-03T00:00:00Z","","0" +"SO-0234","","","D","2020-11-14T00:00:00Z","","0.8999999761581421" +"NM-12339","15.4399995803833","15.4399995803833","P","1948-07-15T00:00:00Z","","0" +"NM-01838","334.3599853515625","334.3599853515625","","1974-08-02T00:00:00Z","","0" +"NM-19893","54.38999938964844","54.38999938964844","","1949-11-23T00:00:00Z","","0" +"NM-09155","-31.030000686645508","-31.030000686645508","","1917-01-26T00:00:00Z","","0" +"NM-11010","74.9000015258789","74.9000015258789","","1991-03-06T00:00:00Z","","0" +"NM-01291","81.73999786376953","81.73999786376953","","1986-09-25T00:00:00Z","","0" +"NM-12400","61.630001068115234","61.630001068115234","","1940-08-01T00:00:00Z","","0" +"NM-02706","6.480000019073486","6.480000019073486","","1951-01-16T00:00:00Z","","0" +"NM-03716","72.19999694824219","72.19999694824219","","1981-01-20T00:00:00Z","","0" +"NM-21243","1.9299999475479126","1.9299999475479126","Z","2009-07-29T00:00:00Z","","0" +"NM-02772","21.34000015258789","21.34000015258789","","1958-10-01T00:00:00Z","","0" +"NM-01251","86.36000061035156","86.36000061035156","","1964-03-09T00:00:00Z","","0" +"NM-01519","124.56999969482422","124.56999969482422","","1987-02-12T00:00:00Z","","0" +"NM-28255","86.12999725341797","86.12999725341797","","1955-03-25T00:00:00Z","","0" +"NM-03958","52.970001220703125","52.970001220703125","","1972-11-30T00:00:00Z","","0" +"NM-13360","55.66999816894531","55.66999816894531","","1971-01-15T00:00:00Z","","0" +"NM-03355","30.93000030517578","30.93000030517578","","2007-08-31T00:00:00Z","","0" +"NM-11106","-5.28000020980835","-5.28000020980835","","1958-01-16T00:00:00Z","","0" +"NM-17206","48.66999816894531","48.66999816894531","","1948-09-30T00:00:00Z","","0" +"NM-01514","81.38999938964844","81.38999938964844","","1970-01-14T00:00:00Z","","0" +"NM-05554","100.41000366210938","100.41000366210938","P","1957-01-15T00:00:00Z","","0" +"DE-0109","37.66999816894531","37.66999816894531","","2010-07-19T00:00:00Z","","0" +"NM-18706","6.099999904632568","6.099999904632568","","1966-01-13T00:00:00Z","","0" +"NM-19752","235.3000030517578","235.3000030517578","","1972-06-09T00:00:00Z","","0" +"NM-10331","582.8499755859375","582.8499755859375","","1962-10-01T00:00:00Z","","0" +"UC-0095","137.58999633789062","137.58999633789062","","1965-12-09T00:00:00Z","","0" +"NM-01334","199.16000366210938","199.16000366210938","","2009-10-07T00:00:00Z","","0" +"NM-05731","100","100","","1952-05-14T00:00:00Z","","0" +"AB-0106","424.79998779296875","424.79998779296875","","2004-02-17T00:00:00Z","","" +"SA-0075","228.52999877929688","228.41000366210938","","1978-07-14T00:00:00Z","","0.11999999731779099" +"NM-04151","105.04000091552734","105.04000091552734","","1973-01-21T00:00:00Z","","0" +"NM-12972","63.849998474121094","63.849998474121094","","1984-01-31T00:00:00Z","","0" +"NM-01214","","","O","2014-04-21T00:00:00Z","","0" +"NM-03400","9.579999923706055","9.579999923706055","","1993-04-02T00:00:00Z","","0" +"NM-27028","71.29000091552734","70.69000244140625","","2022-03-08T00:00:00Z","0001-01-01T10:00:00Z","0.6000000238418579" +"SO-0161","8.979999542236328","7.809999465942383","","2021-01-20T00:00:00Z","","1.1699999570846558" +"EB-650","44.20000076293945","44.20000076293945","","2015-09-16T00:00:00Z","","0" +"NM-14783","72.38999938964844","72.38999938964844","R","1990-09-06T00:00:00Z","","0" +"NM-03467","431.7699890136719","431.7699890136719","R","1995-04-18T00:00:00Z","","0" +"NM-13638","33.290000915527344","33.290000915527344","","1961-05-02T00:00:00Z","","0" +"NM-00686","59.900001525878906","59.900001525878906","Z","2006-01-10T00:00:00Z","","0" +"NM-13131","56.7400016784668","56.7400016784668","","1991-02-06T00:00:00Z","","0" +"NM-13954","-7.929999828338623","-7.929999828338623","","1911-06-04T00:00:00Z","","0" +"NM-02287","4.380000114440918","4.380000114440918","","2002-05-22T00:00:00Z","","0" +"HS-038","8.84000015258789","6.210000038146973","","2013-03-22T00:00:00Z","","2.630000114440918" +"NM-01871","285.2799987792969","285.2799987792969","","2000-02-24T00:00:00Z","","0" +"NM-28254","38.630001068115234","38.630001068115234","","1974-11-05T00:00:00Z","","0" +"NM-17548","18.239999771118164","18.239999771118164","","1957-03-14T00:00:00Z","","0" +"NM-22824","6","6","","1959-04-15T00:00:00Z","","0" +"NM-01065","187.5500030517578","187.5500030517578","","1986-12-02T00:00:00Z","","0" +"NM-00702","32.16999816894531","32.16999816894531","X","2008-09-03T00:00:00Z","","0" +"NM-03560","114.0999984741211","114.0999984741211","","1974-02-05T00:00:00Z","","0" +"NM-16303","182.82000732421875","182.82000732421875","","1984-02-11T00:00:00Z","","0" +"NM-02807","34.689998626708984","34.689998626708984","","1947-02-04T00:00:00Z","","0" +"NM-13728","-13.710000038146973","-13.710000038146973","","1909-12-09T00:00:00Z","","0" +"NM-02282","401.0299987792969","401.0299987792969","","1974-02-01T00:00:00Z","","0" +"NM-18347","199.39999389648438","199.39999389648438","","1957-09-23T00:00:00Z","","0" +"NM-26143","212.8300018310547","212.8300018310547","","1989-06-13T00:00:00Z","","0" +"NM-03968","336.92999267578125","336.92999267578125","","2001-12-12T00:00:00Z","","0" +"NM-01985","8.899999618530273","8.899999618530273","","1998-04-15T00:00:00Z","","0" +"NM-12959","21.309999465942383","21.309999465942383","","1991-02-22T00:00:00Z","","0" +"NM-21660","471.57000732421875","471.57000732421875","","2007-03-19T00:00:00Z","","0" +"NM-27578","25.170000076293945","25.170000076293945","","1940-01-22T00:00:00Z","","0" +"NM-28254","45.79999923706055","45.79999923706055","","2014-09-25T00:00:00Z","","0" +"NM-14672","134.77999877929688","134.77999877929688","","1972-01-11T00:00:00Z","","0" +"NM-03396","10.229999542236328","10.229999542236328","","1988-08-23T00:00:00Z","","0" +"BC-0133","339.19000244140625","339.19000244140625","","2014-09-06T00:00:00Z","","0" +"EB-034","27","27","","1985-03-01T00:00:00Z","","0" +"EB-485","472.1600036621094","471.1600036621094","P","2007-06-30T00:00:00Z","","1" +"NM-21632","440.6099853515625","440.6099853515625","","1997-12-01T00:00:00Z","","0" +"DE-0193","51.9900016784668","51.9900016784668","","2005-04-11T00:00:00Z","","0" +"NM-06290","157.47999572753906","157.47999572753906","R","1968-03-25T00:00:00Z","","0" +"NM-08025","25.59000015258789","25.59000015258789","R","1971-01-20T00:00:00Z","","0" +"NM-02488","152.41000366210938","152.41000366210938","","1972-02-28T00:00:00Z","","0" +"NM-02567","75.69999694824219","75.69999694824219","","1993-09-30T00:00:00Z","","0" +"TB-0113","70.5","69.55000305175781","","2011-06-14T00:00:00Z","","0.949999988079071" +"NM-27484","138","138","","1944-09-01T00:00:00Z","","0" +"NM-07294","175.1300048828125","175.1300048828125","","1979-02-14T00:00:00Z","","0" +"NM-23333","7.699999809265137","7.699999809265137","","1959-07-08T00:00:00Z","","0" +"NM-02484","72.12999725341797","72.12999725341797","","1983-02-02T00:00:00Z","","0" +"NM-23893","94.2699966430664","94.2699966430664","","1978-03-29T00:00:00Z","","0" +"NM-12488","8.800000190734863","8.800000190734863","","1975-01-14T00:00:00Z","","0" +"BC-0103","130.22999572753906","130.22999572753906","","2017-06-27T00:00:00Z","","0" +"NM-08048","370.7200012207031","370.7200012207031","","1943-07-10T00:00:00Z","","0" +"SD-0139","116","116","","1956-01-01T00:00:00Z","","0" +"NM-02496","110.51000213623047","110.51000213623047","","1959-01-14T00:00:00Z","","0" +"TB-0159","26.149999618530273","25.44999885559082","","2010-04-23T00:00:00Z","","0.699999988079071" +"NM-06749","60.779998779296875","60.779998779296875","","1976-01-27T00:00:00Z","","0" +"NM-01823","335.1600036621094","335.1600036621094","","2014-01-28T00:00:00Z","","0" +"NM-10507","-54.130001068115234","-54.130001068115234","","1919-01-12T00:00:00Z","","0" +"NM-02758","293.5899963378906","293.5899963378906","","2005-01-21T00:00:00Z","","0" +"NM-03716","66.63999938964844","66.63999938964844","","1988-01-27T00:00:00Z","","0" +"NM-27882","77.5","77.5","","1967-01-04T00:00:00Z","","0" +"NM-17716","5.289999961853027","5.289999961853027","","1947-11-03T00:00:00Z","","0" +"NM-03344","82.7699966430664","82.7699966430664","R","1985-04-22T00:00:00Z","","0" +"NM-08338","6.699999809265137","6.699999809265137","","1947-02-20T00:00:00Z","","0" +"NM-02017","7.599999904632568","7.599999904632568","","1951-08-15T00:00:00Z","","0" +"NM-25450","135.6999969482422","135.6999969482422","","1991-01-31T00:00:00Z","","0" +"NM-28015","498.7900085449219","498.7900085449219","S","2015-05-17T00:00:00Z","","0" +"NM-24711","251.69000244140625","251.69000244140625","","1984-01-24T00:00:00Z","","0" +"SA-0012","128.4600067138672","127.46000671386719","","2016-02-22T00:00:00Z","","1" +"NM-16998","22.09000015258789","22.09000015258789","","1939-07-18T00:00:00Z","","0" +"NM-28012","479.94000244140625","479.94000244140625","S","2015-05-18T00:00:00Z","","0" +"BC-0083","155","155","","1984-07-27T00:00:00Z","","0" +"NM-12949","62.5099983215332","62.5099983215332","","1994-01-26T00:00:00Z","","0" +"NM-07815","25.040000915527344","25.040000915527344","","1938-06-18T00:00:00Z","","0" +"EB-293","64.04000091552734","64.73999786376953","","2001-01-01T00:00:00Z","","-0.699999988079071" +"NM-03649","32.54999923706055","32.54999923706055","","1994-05-22T00:00:00Z","","0" +"NM-01644","162.8000030517578","162.8000030517578","","2012-08-30T00:00:00Z","","0" +"NM-03654","35.2599983215332","35.2599983215332","","2011-12-20T00:00:00Z","","0" +"NM-00435","68.37999725341797","68.37999725341797","V","1996-08-07T00:00:00Z","","0" +"NM-03104","308.19000244140625","308.19000244140625","Z","1996-09-24T00:00:00Z","","0" +"EB-609","250.6999969482422","250.6999969482422","","2016-08-01T00:00:00Z","","0" +"BC-0296","143.10000610351562","143.10000610351562","","2018-09-21T00:00:00Z","","0" +"NM-09347","31.299999237060547","31.299999237060547","","1950-01-19T00:00:00Z","","0" +"AB-0009","12.550000190734863","12.550000190734863","","1989-12-31T00:00:00Z","","0" +"NM-05708","90.62999725341797","90.62999725341797","","1992-01-29T00:00:00Z","","0" +"NM-21285","8.850000381469727","8.850000381469727","","1963-01-03T00:00:00Z","","0" +"NM-02163","32.970001220703125","32.970001220703125","","2009-10-02T00:00:00Z","","0" +"NM-10670","46.29999923706055","46.29999923706055","","1945-01-13T00:00:00Z","","0" +"NM-01501","148.1999969482422","148.1999969482422","R","1988-02-24T00:00:00Z","","0" +"NM-00319","45.599998474121094","45.599998474121094","","1971-02-09T00:00:00Z","","0" +"BC-0020","82.13999938964844","82.13999938964844","","2014-09-05T00:00:00Z","","0" +"NM-11482","100.19999694824219","100.19999694824219","","1959-01-14T00:00:00Z","","0" +"NM-26446","35.04999923706055","35.04999923706055","","1981-01-27T00:00:00Z","","0" +"SM-0078","54.77000045776367","53.67000198364258","","2008-09-18T00:00:00Z","","1.100000023841858" +"NM-01955","5.5","5.5","","1946-10-15T00:00:00Z","","0" +"NM-08916","86.04000091552734","86.04000091552734","","1954-08-09T00:00:00Z","","0" +"NM-13218","10.199999809265137","10.199999809265137","","1958-11-17T00:00:00Z","","0" +"NM-02947","138.58999633789062","138.58999633789062","","1957-01-16T00:00:00Z","","0" +"NM-00791","44.599998474121094","44.599998474121094","P","1956-07-23T00:00:00Z","","0" +"BC-0156","188.44000244140625","188.44000244140625","","2004-04-02T00:00:00Z","","0" +"NM-01438","916.7000122070312","916.7000122070312","","2007-02-08T00:00:00Z","","0" +"EB-146","24.209999084472656","24.209999084472656","","1994-12-06T00:00:00Z","","0" +"NM-10564","15.100000381469727","15.100000381469727","","1955-03-29T00:00:00Z","","0" +"EB-487","354.1000061035156","350.6000061035156","Z","2008-12-31T00:00:00Z","","3.5" +"SB-0299","139.72000122070312","139.72000122070312","","2004-08-25T00:00:00Z","","0" +"NM-02669","69.7300033569336","69.7300033569336","","2002-06-24T00:00:00Z","","0" +"NM-13953","-14.859999656677246","-14.859999656677246","","1906-06-20T00:00:00Z","","0" +"NM-13874","-6.199999809265137","-6.199999809265137","","1907-03-06T00:00:00Z","","0" +"MG-019","171.30999755859375","169.70999145507812","R","2013-07-16T00:00:00Z","","1.600000023841858" +"NM-13285","-19.479999542236328","-19.479999542236328","","1911-05-25T00:00:00Z","","0" +"NM-25187","11.899999618530273","11.899999618530273","","1982-02-11T00:00:00Z","","0" +"SB-0057","108.19999694824219","108.19999694824219","","1981-02-17T00:00:00Z","","0" +"NM-01035","52.130001068115234","52.130001068115234","P","1953-03-28T00:00:00Z","","0" +"NM-28253","3.6700000762939453","3.6700000762939453","","1993-12-25T00:00:00Z","","0" +"NM-00638","38.41999816894531","38.41999816894531","","1953-01-16T00:00:00Z","","0" +"NM-00185","13.199999809265137","13.199999809265137","","1964-01-15T00:00:00Z","","0" +"NM-13272","7.789999961853027","7.789999961853027","","1946-01-28T00:00:00Z","","0" +"NM-12977","3.700000047683716","3.700000047683716","","1979-10-10T00:00:00Z","","0" +"NM-01393","42.0099983215332","42.0099983215332","","1973-03-21T00:00:00Z","","0" +"NM-00693","31.219999313354492","31.219999313354492","","2009-11-18T00:00:00Z","","0" +"NM-06688","76.87000274658203","76.87000274658203","","1952-09-12T00:00:00Z","","0" +"NM-02501","51.2599983215332","51.2599983215332","","1992-01-08T00:00:00Z","","0" +"NM-23753","128.3800048828125","128.3800048828125","","1973-03-14T00:00:00Z","","0" +"NM-02794","39.63999938964844","39.63999938964844","","1937-05-24T00:00:00Z","","0" +"SA-0041","280.8900146484375","279.0600280761719","","2011-09-15T00:00:00Z","","1.8300000429153442" +"NM-02282","399.79998779296875","399.79998779296875","","1982-02-01T00:00:00Z","","0" +"NM-03757","71.04000091552734","71.04000091552734","P","1949-05-20T00:00:00Z","","0" +"NM-14848","91.97000122070312","91.97000122070312","S","1964-01-07T00:00:00Z","","0" +"NM-01204","372.4700012207031","372.4700012207031","","2013-12-12T00:00:00Z","","0" +"AB-0113","213.0800018310547","213.0800018310547","","2014-08-12T00:00:00Z","","" +"NM-14235","-10.239999771118164","-10.239999771118164","","1907-06-13T00:00:00Z","","0" +"NM-03180","126.5","126.5","","1980-01-02T00:00:00Z","","0" +"NM-28258","170.02000427246094","170.02000427246094","","2005-09-15T00:00:00Z","","0" +"NM-00245","81.36000061035156","81.36000061035156","R","1955-03-16T00:00:00Z","","0" +"NM-11696","160.35000610351562","160.35000610351562","","1971-10-15T00:00:00Z","","0" +"AB-0038","353.1499938964844","353.1499938964844","","2002-05-06T00:00:00Z","","" +"NM-01464","294.6000061035156","294.6000061035156","","1980-11-05T00:00:00Z","","0" +"NM-05516","5.300000190734863","5.300000190734863","","1947-08-15T00:00:00Z","","0" +"NM-19407","71.20999908447266","71.20999908447266","","1967-01-24T00:00:00Z","","0" +"NM-12662","39.09000015258789","39.09000015258789","","1938-02-03T00:00:00Z","","0" +"NM-10743","47.040000915527344","47.040000915527344","","1940-02-01T00:00:00Z","","0" +"NM-05904","107.19000244140625","107.19000244140625","","1954-02-16T00:00:00Z","","0" +"NM-00525","61.47999954223633","61.47999954223633","","1957-01-21T00:00:00Z","","0" +"NM-03369","55.5099983215332","55.5099983215332","R","1993-09-10T00:00:00Z","","0" +"NM-23198","72.4000015258789","72.4000015258789","R","1953-02-17T00:00:00Z","","0" +"NM-04066","176.1999969482422","176.1999969482422","","1978-01-10T00:00:00Z","","0" +"NM-22986","6.670000076293945","6.670000076293945","Z","2010-08-30T00:00:00Z","","0" +"NM-20683","18.639999389648438","18.639999389648438","","1948-05-19T00:00:00Z","","0" +"NM-00184","21.639999389648438","21.639999389648438","","2003-01-28T00:00:00Z","","0" +"NM-11114","57.79999923706055","57.79999923706055","","1956-01-10T00:00:00Z","","0" +"NM-26740","212.16000366210938","212.16000366210938","","1971-02-04T00:00:00Z","","0" +"NM-11611","83.9000015258789","83.9000015258789","","1956-01-26T00:00:00Z","","0" +"SB-0360","96.04000091552734","96.04000091552734","","1989-02-09T00:00:00Z","","0" +"NM-13590","28.1200008392334","28.1200008392334","","1963-09-04T00:00:00Z","","0" +"NM-17488","52.529998779296875","52.529998779296875","","1982-03-24T00:00:00Z","","0" +"NM-03334","10.210000038146973","10.210000038146973","","1991-10-03T00:00:00Z","","0" +"NM-17716","4.610000133514404","4.610000133514404","","1948-04-03T00:00:00Z","","0" +"NM-06268","13.699999809265137","13.699999809265137","","1953-04-15T00:00:00Z","","0" +"NM-02352","9.699999809265137","9.699999809265137","","1974-10-15T00:00:00Z","","0" +"NM-04704","67.27999877929688","67.27999877929688","P","1948-07-21T00:00:00Z","","0" +"NM-01832","57.38999938964844","57.38999938964844","","2016-03-02T00:00:00Z","","0" +"NM-00579","51.439998626708984","51.439998626708984","","1960-01-25T00:00:00Z","","0" +"NM-01895","63.15999984741211","63.15999984741211","","1996-01-11T00:00:00Z","","0" +"PC-095","66","69","","1998-04-05T00:00:00Z","","0" +"NM-13887","2.6700000762939453","2.6700000762939453","","1963-01-15T00:00:00Z","","0" +"NM-09922","91.88999938964844","91.88999938964844","","1959-01-21T00:00:00Z","","0" +"NM-17396","46.560001373291016","46.560001373291016","","1940-03-26T00:00:00Z","","0" +"NM-17716","5.800000190734863","5.800000190734863","","1948-07-28T00:00:00Z","","0" +"NM-01914","18.030000686645508","18.030000686645508","","1984-02-16T00:00:00Z","","0" +"NM-09289","89.94999694824219","89.94999694824219","","1948-07-24T00:00:00Z","","0" +"NM-00367","125.41999816894531","125.41999816894531","","1978-01-27T00:00:00Z","","0" +"NM-13465","16.18000030517578","16.18000030517578","","1959-08-12T00:00:00Z","","0" +"NM-24992","595.8599853515625","595.8599853515625","","2015-10-09T00:00:00Z","","0" +"NM-18288","294.4700012207031","294.4700012207031","","2001-08-21T00:00:00Z","","0" +"NM-01703","29.899999618530273","29.899999618530273","","1967-06-30T00:00:00Z","","0" +"NM-03799","15.390000343322754","15.390000343322754","","1957-01-18T00:00:00Z","","0" +"NM-07230","20.799999237060547","20.799999237060547","","1972-09-18T00:00:00Z","","0" +"NM-28252","71.4000015258789","71.4000015258789","","1977-09-15T00:00:00Z","","0" +"DE-0286","87.80000305175781","87.80000305175781","","2019-06-24T00:00:00Z","","0" +"NM-12222","-47.040000915527344","-47.040000915527344","","1964-01-06T00:00:00Z","","0" +"NM-07184","88.18000030517578","88.18000030517578","","1954-01-06T00:00:00Z","","0" +"NM-00686","61.08000183105469","61.08000183105469","","1982-01-18T00:00:00Z","","0" +"NM-11035","40.15999984741211","40.15999984741211","","1966-02-11T00:00:00Z","","0" +"NM-10007","-17.170000076293945","-17.170000076293945","","1913-07-03T00:00:00Z","","0" +"NM-28011","489.9200134277344","489.9200134277344","S","2015-05-17T00:00:00Z","","0" +"NM-01896","10.350000381469727","10.350000381469727","","2007-02-03T00:00:00Z","","0" +"NM-02166","14.3100004196167","14.3100004196167","","2005-01-25T00:00:00Z","","0" +"NM-03020","85.94999694824219","85.94999694824219","","1995-01-07T00:00:00Z","","0" +"NM-01700","40.060001373291016","40.060001373291016","","1975-01-23T00:00:00Z","","0" +"NM-20957","160.1999969482422","160.1999969482422","P","1955-04-25T00:00:00Z","","0" +"NM-12567","-52.97999954223633","-52.97999954223633","","1909-03-19T00:00:00Z","","0" +"NM-24626","117.94999694824219","117.94999694824219","","1988-10-27T00:00:00Z","","0" +"NM-21874","6.340000152587891","6.340000152587891","Z","2005-07-13T00:00:00Z","","0" +"NM-03899","24.829999923706055","24.829999923706055","","1979-01-05T00:00:00Z","","0" +"NM-02349","13.199999809265137","13.199999809265137","","1952-12-15T00:00:00Z","","0" +"NM-07636","77","77","","1970-01-01T00:00:00Z","","0" +"AB-0113","220.0500030517578","220.0500030517578","","2003-11-17T00:00:00Z","","" +"NM-12327","61.400001525878906","61.400001525878906","","1961-02-13T00:00:00Z","","0" +"NM-08648","40.630001068115234","40.630001068115234","","1957-01-12T00:00:00Z","","0" +"DE-0272","87.69999694824219","87.69999694824219","","2017-03-16T00:00:00Z","","0" +"NM-09962","133.74000549316406","133.74000549316406","","1984-02-01T00:00:00Z","","0" +"NM-15145","142.32000732421875","142.32000732421875","","1975-03-27T00:00:00Z","","0" +"NM-00257","95.81999969482422","95.81999969482422","","1969-06-01T00:00:00Z","","0" +"NM-02761","91.48999786376953","91.48999786376953","","1994-01-04T00:00:00Z","","0" +"NM-06513","71.5999984741211","71.5999984741211","","1970-12-08T00:00:00Z","","0" +"NM-08613","-5.619999885559082","-5.619999885559082","","1907-01-28T00:00:00Z","","0" +"NM-02349","16.200000762939453","16.200000762939453","","1960-03-15T00:00:00Z","","0" +"NM-02556","-81.8499984741211","-81.8499984741211","","1909-11-10T00:00:00Z","","0" +"EB-288","129.66000366210938","129.66000366210938","","1977-06-01T00:00:00Z","","0" +"NM-27432","34.099998474121094","34.099998474121094","","1929-11-14T00:00:00Z","","0" +"NM-17396","47.22999954223633","47.22999954223633","","1938-11-02T00:00:00Z","","0" +"NM-11263","41.90999984741211","41.90999984741211","","1934-09-21T00:00:00Z","","0" +"NM-28254","38.380001068115234","38.380001068115234","","1977-11-15T00:00:00Z","","0" +"NM-00887","16.260000228881836","16.260000228881836","","2015-01-30T00:00:00Z","","0" +"NM-13334","-58.75","-58.75","","1909-06-16T00:00:00Z","","0" +"NM-16929","38.52000045776367","38.52000045776367","","1966-03-29T00:00:00Z","","0" +"NM-09685","-58.75","-58.75","","1911-05-28T00:00:00Z","","0" +"NM-06810","194.3699951171875","194.3699951171875","","1993-01-13T00:00:00Z","","0" +"NM-16514","38.130001068115234","38.130001068115234","","1974-01-05T00:00:00Z","","0" +"EB-482","539.7899780273438","539.7899780273438","P","2003-03-31T00:00:00Z","","0" +"NM-03027","50.779998779296875","50.779998779296875","","1991-01-07T00:00:00Z","","0" +"NM-13047","22.100000381469727","22.100000381469727","","1952-01-26T00:00:00Z","","0" +"ED-0102","254.10000610351562","254.10000610351562","","1947-12-23T00:00:00Z","","0" +"SM-0205","21.860000610351562","21.46000099182129","","2008-06-18T00:00:00Z","","0.4000000059604645" +"NM-01788","","","O","1999-01-28T00:00:00Z","","0" +"NM-07719","80.27999877929688","80.27999877929688","","1952-09-06T00:00:00Z","","0" +"NM-01800","134.60000610351562","134.60000610351562","","1984-01-03T00:00:00Z","","0" +"NM-11901","13.329999923706055","13.329999923706055","","1940-01-22T00:00:00Z","","0" +"NM-19939","65.83999633789062","65.83999633789062","R","1960-01-25T00:00:00Z","","0" +"NM-27720","70.87999725341797","70.87999725341797","","1968-08-06T00:00:00Z","","0" +"NM-17147","67.01000213623047","67.01000213623047","","1961-01-12T00:00:00Z","","0" +"NM-02167","10.109999656677246","10.109999656677246","","1993-01-20T00:00:00Z","","0" +"QU-060","68.8499984741211","72.5999984741211","","2013-09-07T00:00:00Z","","-3.75" +"NM-04921","95.91000366210938","95.91000366210938","","1966-10-19T00:00:00Z","","0" +"NM-01201","28.350000381469727","28.350000381469727","","1959-11-04T00:00:00Z","","0" +"NM-10755","73.80999755859375","73.80999755859375","","1971-01-13T00:00:00Z","","0" +"NM-28256","78.88999938964844","78.88999938964844","","1990-02-05T00:00:00Z","","0" +"SO-0201","13.130000114440918","12.319999694824219","","2021-06-14T00:00:00Z","0001-01-01T08:20:00Z","0.8100000023841858" +"NM-11473","16.1299991607666","16.1299991607666","","1957-07-29T00:00:00Z","","0" +"NM-13594","42.52000045776367","42.52000045776367","","1980-03-25T00:00:00Z","","0" +"SB-0299","116.73999786376953","116.73999786376953","","1984-04-01T00:00:00Z","","0" +"NM-05005","72.2699966430664","72.2699966430664","","1981-03-26T00:00:00Z","","0" +"NM-11643","88.08999633789062","88.08999633789062","","1939-08-16T00:00:00Z","","0" +"NM-02269","45.25","45.25","","2012-02-24T00:00:00Z","","0" +"EB-677","200","200","","1996-12-09T00:00:00Z","","0" +"NM-13420","-44.88999938964844","-44.88999938964844","","1906-09-20T00:00:00Z","","0" +"NM-28009","498.7799987792969","498.7799987792969","S","2015-05-16T00:00:00Z","","0" +"NM-12405","10.579999923706055","10.579999923706055","","1939-06-13T00:00:00Z","","0" +"NM-14798","101.16000366210938","101.16000366210938","","1981-01-13T00:00:00Z","","0" +"NM-24935","13.100000381469727","13.100000381469727","","1980-08-31T00:00:00Z","","0" +"NM-02164","10.359999656677246","10.359999656677246","","1998-01-16T00:00:00Z","","0" +"EB-280","236.6199951171875","236.6199951171875","","1995-03-03T00:00:00Z","","0" +"TV-181","52.97999954223633","58.82999801635742","","2012-04-09T00:00:00Z","","-5.849999904632568" +"NM-20896","21.59000015258789","21.59000015258789","","1948-03-24T00:00:00Z","","0" +"NM-01972","99.63999938964844","99.63999938964844","","1961-01-17T00:00:00Z","","0" +"NM-04511","366.45001220703125","366.45001220703125","","1956-11-15T00:00:00Z","","0" +"NM-03389","28.8799991607666","28.8799991607666","R","2016-07-26T00:00:00Z","","0" +"NM-22762","59.15999984741211","59.15999984741211","","1987-05-07T00:00:00Z","","0" +"NM-04632","9.399999618530273","9.399999618530273","","1947-11-15T00:00:00Z","","0" +"NM-09812","-77.2300033569336","-77.2300033569336","","1913-01-14T00:00:00Z","","0" +"NM-17716","-1.0099999904632568","-1.0099999904632568","","1943-02-08T00:00:00Z","","0" +"NM-12847","12.5600004196167","12.5600004196167","","1971-03-19T00:00:00Z","","0" +"NM-10096","8.270000457763672","8.270000457763672","","1979-05-31T00:00:00Z","","0" +"NM-02591","13.199999809265137","13.199999809265137","","1995-03-15T00:00:00Z","","0" +"WL-0155","362.80999755859375","361.30999755859375","","2020-08-05T00:00:00Z","0001-01-01T09:09:00Z","1.5" +"NM-01971","6.5","6.5","","1984-04-15T00:00:00Z","","0" +"NM-11955","41.04999923706055","41.04999923706055","","1966-02-16T00:00:00Z","","0" +"NM-11556","78.3499984741211","78.3499984741211","","1952-01-17T00:00:00Z","","0" +"NM-25174","75","75","","1995-01-12T00:00:00Z","","0" +"NM-13715","13.520000457763672","13.520000457763672","","1939-02-02T00:00:00Z","","0" +"NM-27457","8.300000190734863","8.300000190734863","","1979-12-17T00:00:00Z","","0" +"NM-09728","134.52999877929688","134.52999877929688","","1986-03-27T00:00:00Z","","0" +"NM-00229","69.4800033569336","69.4800033569336","","2006-04-24T00:00:00Z","","0" +"NM-13590","16.5","16.5","","1958-01-09T00:00:00Z","","0" +"NM-12799","61.68000030517578","61.68000030517578","","1941-01-30T00:00:00Z","","0" +"NM-12640","31.18000030517578","31.18000030517578","","1971-10-15T00:00:00Z","","0" +"NM-28202","37.58000183105469","37.58000183105469","","1980-01-30T00:00:00Z","","0" +"DE-0228","132.3699951171875","132.3699951171875","","2013-10-21T00:00:00Z","","0" +"NM-02492","256.20001220703125","256.20001220703125","","1963-08-29T00:00:00Z","","0" +"NM-06027","63.529998779296875","63.529998779296875","","1945-03-20T00:00:00Z","","0" +"NM-02414","15.84000015258789","15.84000015258789","","1993-01-14T00:00:00Z","","0" +"NM-02147","142.02999877929688","142.02999877929688","","1978-01-09T00:00:00Z","","0" +"NM-00625","89.9800033569336","89.9800033569336","","2001-01-03T00:00:00Z","","0" +"NM-00740","87.80999755859375","87.80999755859375","","2010-07-26T00:00:00Z","","0" +"NM-05964","49.22999954223633","49.22999954223633","","1951-03-14T00:00:00Z","","0" +"NM-03308","13","13","Z","1993-05-11T00:00:00Z","","0" +"NM-00811","254.1300048828125","254.1300048828125","","2013-03-29T00:00:00Z","","0" +"NM-21561","6.190000057220459","6.190000057220459","Z","2011-09-26T00:00:00Z","","0" +"NM-07411","36.189998626708984","36.189998626708984","","1967-09-18T00:00:00Z","","0" +"NM-03186","80.13999938964844","80.13999938964844","","1954-02-16T00:00:00Z","","0" +"NM-13524","23.920000076293945","23.920000076293945","","1996-01-24T00:00:00Z","","0" +"NM-08862","71.91000366210938","71.91000366210938","S","1956-07-31T00:00:00Z","","0" +"NM-20103","14.890000343322754","14.890000343322754","","1947-02-18T00:00:00Z","","0" +"EB-218","262.67999267578125","262.0799865722656","","2014-02-21T00:00:00Z","","0.6000000238418579" +"NM-17716","8.220000267028809","8.220000267028809","","1941-01-04T00:00:00Z","","0" +"NM-00508","13.100000381469727","13.100000381469727","","1981-03-09T00:00:00Z","","0" +"NM-09926","33.380001068115234","33.380001068115234","","1989-01-24T00:00:00Z","","0" +"UC-0035","82.4000015258789","82.4000015258789","","1974-02-06T00:00:00Z","","0" +"EB-608","216.02999877929688","216.02999877929688","","2012-03-28T00:00:00Z","","0" +"NM-28258","152.7899932861328","152.7899932861328","","1978-10-25T00:00:00Z","","0" +"NM-02772","94.16999816894531","94.16999816894531","","1961-05-01T00:00:00Z","","0" +"NM-10405","-35.650001525878906","-35.650001525878906","","1908-12-14T00:00:00Z","","0" +"NM-00574","65.91000366210938","65.91000366210938","","1976-01-14T00:00:00Z","","0" +"NM-23391","239.02000427246094","239.02000427246094","","1949-08-19T00:00:00Z","","0" +"NM-05309","13.100000381469727","13.100000381469727","","1968-05-15T00:00:00Z","","0" +"NM-28258","105.87000274658203","105.87000274658203","","1999-02-15T00:00:00Z","","0" +"NM-11366","55","55","","1976-03-24T00:00:00Z","","0" +"NM-13012","33.2400016784668","33.2400016784668","","1938-08-02T00:00:00Z","","0" +"NM-13265","-20.200000762939453","-20.200000762939453","","1957-01-10T00:00:00Z","","0" +"NM-12666","18.700000762939453","18.700000762939453","","1958-09-18T00:00:00Z","","0" +"SV-0025","72.9000015258789","71.06999969482422","","2016-12-11T00:00:00Z","","1.8300000429153442" +"NM-08071","9.899999618530273","9.899999618530273","","1984-09-15T00:00:00Z","","0" +"NM-20046","44.68000030517578","44.68000030517578","","1961-01-06T00:00:00Z","","0" +"NM-27202","137.41000366210938","137.41000366210938","","2011-04-26T00:00:00Z","","0" +"EB-288","199","199","","1999-06-30T00:00:00Z","","0" +"NM-17183","30.459999084472656","30.459999084472656","","1949-07-29T00:00:00Z","","0" +"NM-20451","194.7899932861328","194.7899932861328","","2003-11-17T00:00:00Z","","0" +"NM-21616","479.7799987792969","479.7799987792969","","1991-04-12T00:00:00Z","","0" +"NM-05610","150.82000732421875","150.82000732421875","P","1954-09-09T00:00:00Z","","0" +"NM-23865","22.530000686645508","22.530000686645508","","1980-09-04T00:00:00Z","","0" +"NM-17626","76.1500015258789","76.1500015258789","","1951-01-09T00:00:00Z","","0" +"NM-28252","62.4900016784668","62.4900016784668","","1966-08-25T00:00:00Z","","0" +"NM-01701","50.27000045776367","50.27000045776367","","2012-08-08T00:00:00Z","","0" +"NM-13392","78.5199966430664","78.5199966430664","","1956-01-30T00:00:00Z","","0" +"NM-27728","82.26000213623047","82.26000213623047","","1972-01-21T00:00:00Z","","0" +"NM-04662","81.22000122070312","81.22000122070312","","1949-11-17T00:00:00Z","","0" +"NM-08234","32.779998779296875","32.779998779296875","","1938-01-07T00:00:00Z","","0" +"NM-03353","49.279998779296875","49.279998779296875","Z","1998-08-28T00:00:00Z","","0" +"NM-13774","-17.170000076293945","-17.170000076293945","","1908-12-07T00:00:00Z","","0" +"EB-276","130.5800018310547","130.5800018310547","","1961-12-27T00:00:00Z","","0" +"NM-06398","271.9200134277344","271.9200134277344","","1989-03-14T00:00:00Z","","0" +"NM-04653","101.18000030517578","101.18000030517578","","1959-01-22T00:00:00Z","","0" +"SB-0614","163.6999969482422","163.6999969482422","","1972-08-24T00:00:00Z","","0" +"NM-11065","103.97000122070312","103.97000122070312","","1976-02-19T00:00:00Z","","0" +"NM-02618","120.06999969482422","120.06999969482422","","2014-01-15T00:00:00Z","","0" +"NM-12339","29.260000228881836","29.260000228881836","P","1956-05-10T00:00:00Z","","0" +"NM-24863","203.00999450683594","203.00999450683594","","1958-11-24T00:00:00Z","","0" +"EB-310","39.779998779296875","37.21999740600586","","2021-04-15T00:00:00Z","0001-01-01T08:37:00Z","2.200000047683716" +"NM-01897","10.800000190734863","10.800000190734863","","1998-08-27T00:00:00Z","","0" +"WS-021","3.319999933242798","3.319999933242798","","2015-11-10T00:00:00Z","","0" +"SB-0299","121.27999877929688","121.27999877929688","","1970-05-30T00:00:00Z","","0" +"SB-0240","103","103","","1954-04-07T00:00:00Z","","0" +"NM-00687","48.2599983215332","48.2599983215332","","1994-01-04T00:00:00Z","","0" +"NM-02544","236","236","","1974-03-05T00:00:00Z","","0" +"NM-01955","8.399999618530273","8.399999618530273","","1954-10-15T00:00:00Z","","0" +"NM-01825","47.65999984741211","47.65999984741211","","1986-12-02T00:00:00Z","","0" +"NM-01886","66.0999984741211","66.0999984741211","","2008-04-08T00:00:00Z","","0" +"NM-19452","262.07000732421875","262.07000732421875","","1977-03-16T00:00:00Z","","0" +"NM-01401","143","143","","2005-03-24T00:00:00Z","","0" +"NM-17271","55.13999938964844","55.13999938964844","","1954-04-01T00:00:00Z","","0" +"NM-00366","142.60000610351562","142.60000610351562","","1983-05-05T00:00:00Z","","0" +"NM-00771","8.470000267028809","8.470000267028809","","1988-07-07T00:00:00Z","","0" +"NM-10756","59.18000030517578","59.18000030517578","","1956-11-27T00:00:00Z","","0" +"SB-0234","139.0500030517578","139.0500030517578","","1981-02-17T00:00:00Z","","0" +"SB-0150","131.32000732421875","131.32000732421875","","1999-01-14T00:00:00Z","","0" +"NM-28254","40.70000076293945","40.70000076293945","","1964-02-05T00:00:00Z","","0" +"NM-28252","58.970001220703125","58.970001220703125","","1973-11-15T00:00:00Z","","0" +"NM-27303","224.63999938964844","224.63999938964844","","1989-03-14T00:00:00Z","","0" +"NM-28259","87.58999633789062","87.58999633789062","","1968-02-05T00:00:00Z","","0" +"ED-0081","45.29999923706055","45.29999923706055","P","1948-12-22T00:00:00Z","","0" +"NM-11371","73.30000305175781","73.30000305175781","","1976-02-18T00:00:00Z","","0" +"NM-01019","348.6400146484375","348.6400146484375","","2008-03-12T00:00:00Z","","0" +"NM-07333","108.58000183105469","108.58000183105469","","1991-01-25T00:00:00Z","","0" +"NM-20614","106.70999908447266","106.70999908447266","","1982-01-27T00:00:00Z","","0" +"NM-03639","6.510000228881836","6.510000228881836","A","2009-08-11T00:00:00Z","","0" +"NM-16681","30.639999389648438","30.639999389648438","","1936-03-19T00:00:00Z","","0" +"AB-0165","479","479","","1998-07-29T00:00:00Z","","" +"DE-0121","36.38999938964844","36.38999938964844","","2011-10-10T00:00:00Z","","0" +"NM-02006","9.199999809265137","9.199999809265137","","1977-12-15T00:00:00Z","","0" +"SD-0305","84.30000305175781","84.30000305175781","","1962-08-09T00:00:00Z","","0" +"NM-00801","8.350000381469727","8.350000381469727","","2011-01-10T00:00:00Z","","0" +"NM-17452","63.45000076293945","63.45000076293945","","1955-01-24T00:00:00Z","","0" +"NM-02591","15.399999618530273","15.399999618530273","","1979-04-15T00:00:00Z","","0" +"NM-03533","9.649999618530273","9.649999618530273","","1992-02-04T00:00:00Z","","0" +"NM-00213","168.7899932861328","168.7899932861328","","1974-12-01T00:00:00Z","","0" +"NM-01892","13.920000076293945","13.920000076293945","","2005-03-23T00:00:00Z","","0" +"NM-16971","80","80","","1990-04-30T00:00:00Z","","0" +"NM-17121","73.08000183105469","73.08000183105469","P","1956-01-19T00:00:00Z","","0" +"NM-14535","87.38999938964844","87.38999938964844","","1970-08-13T00:00:00Z","","0" +"NM-12911","90.4000015258789","90.4000015258789","","1954-07-12T00:00:00Z","","0" +"NM-12562","13.960000038146973","13.960000038146973","","1989-01-12T00:00:00Z","","0" +"NM-03264","263.67999267578125","263.67999267578125","","1997-01-09T00:00:00Z","","0" +"NM-28257","-2","-2","","1987-10-15T00:00:00Z","","0" +"NM-01955","3.299999952316284","3.299999952316284","","2000-06-15T00:00:00Z","","0" +"SB-0112","164.1999969482422","164.1999969482422","","1994-02-08T00:00:00Z","","0" +"NM-17569","57.58000183105469","57.58000183105469","","1965-02-18T00:00:00Z","","0" +"EB-143","71.56999969482422","71.56999969482422","","2002-06-24T00:00:00Z","","0" +"NM-13118","15.199999809265137","15.199999809265137","","1957-08-08T00:00:00Z","","0" +"NM-11784","83.83999633789062","83.83999633789062","","1971-01-14T00:00:00Z","","0" +"NM-07475","150.19000244140625","150.19000244140625","","1992-07-01T00:00:00Z","","0" +"QY-0848","24.100000381469727","24.100000381469727","","1955-11-01T00:00:00Z","","0" +"NM-01796","5.800000190734863","5.800000190734863","","1948-08-15T00:00:00Z","","0" +"NM-01926","4","4","","1946-06-15T00:00:00Z","","0" +"NM-02286","7.96999979019165","7.96999979019165","","2000-12-18T00:00:00Z","","0" +"NM-03958","144.47999572753906","144.47999572753906","","1966-01-14T00:00:00Z","","0" +"NM-08189","9","9","","1975-01-15T00:00:00Z","","0" +"NM-19901","167.27000427246094","167.27000427246094","","1986-12-04T00:00:00Z","","0" +"NM-02169","8.59000015258789","8.59000015258789","","2008-03-11T00:00:00Z","","0" +"NM-04933","80.87000274658203","80.87000274658203","","1968-01-29T00:00:00Z","","0" +"NM-02164","9.199999809265137","9.199999809265137","","1999-09-01T00:00:00Z","","0" +"NM-03356","63.900001525878906","63.900001525878906","","1953-05-28T00:00:00Z","","0" +"NM-26597","66","66","","1977-12-09T00:00:00Z","","0" +"NM-01948","4.099999904632568","4.099999904632568","","1989-08-15T00:00:00Z","","0" +"NM-03078","137.4499969482422","137.4499969482422","","2012-03-02T00:00:00Z","","0" +"DE-0111","39.470001220703125","39.470001220703125","","2011-02-07T00:00:00Z","","0" +"NM-04245","47.380001068115234","47.380001068115234","","2015-02-11T00:00:00Z","","0" +"NM-03644","144.77000427246094","144.77000427246094","","1979-01-23T00:00:00Z","","0" +"NM-09069","8.699999809265137","8.699999809265137","","1954-09-15T00:00:00Z","","0" +"NM-01177","26","26","","1956-10-24T00:00:00Z","","0" +"NM-28024","478.4599914550781","478.4599914550781","S","2015-04-25T00:00:00Z","","0" +"NM-02407","33.45000076293945","33.45000076293945","","1946-07-26T00:00:00Z","","0" +"NM-13801","-10.239999771118164","-10.239999771118164","","1908-03-26T00:00:00Z","","0" +"NM-21521","433.9100036621094","433.9100036621094","","2005-12-28T00:00:00Z","","0" +"NM-22476","198.25","198.25","","1984-03-28T00:00:00Z","","0" +"EB-270","229.6999969482422","229.6999969482422","","2001-09-20T00:00:00Z","","0" +"NM-20310","60.91999816894531","60.91999816894531","","1959-01-22T00:00:00Z","","0" +"NM-10584","66.83000183105469","66.83000183105469","R","1961-03-15T00:00:00Z","","0" +"NM-13061","27.309999465942383","27.309999465942383","","1947-02-03T00:00:00Z","","0" +"TO-0170","29.799999237060547","29.799999237060547","","1941-01-07T00:00:00Z","","0" +"NM-25254","-106.19999694824219","-106.19999694824219","","1977-01-01T00:00:00Z","","0" +"NM-02099","163.9199981689453","163.9199981689453","","1982-01-29T00:00:00Z","","0" +"NM-18793","339.45001220703125","339.45001220703125","","1978-01-08T00:00:00Z","","0" +"NM-00384","76.86000061035156","76.86000061035156","","2005-10-04T00:00:00Z","","0" +"NM-20999","40.189998626708984","40.189998626708984","","1980-02-12T00:00:00Z","","0" +"NM-17927","142.2899932861328","142.2899932861328","","2003-03-20T00:00:00Z","","0" +"NM-28252","51.56999969482422","51.56999969482422","","1989-07-15T00:00:00Z","","0" +"NM-00688","22.530000686645508","22.530000686645508","","1993-01-04T00:00:00Z","","0" +"NM-01868","12.699999809265137","12.699999809265137","","1954-04-15T00:00:00Z","","0" +"NM-09696","30.6200008392334","30.6200008392334","","1938-06-01T00:00:00Z","","0" +"NM-14307","-12.550000190734863","-12.550000190734863","","1910-05-19T00:00:00Z","","0" +"NM-22562","93.37999725341797","93.37999725341797","","1985-01-30T00:00:00Z","","0" +"NM-10037","16.899999618530273","16.899999618530273","","1941-01-10T00:00:00Z","","0" +"NM-18041","51.459999084472656","51.459999084472656","","1977-02-17T00:00:00Z","","0" +"NM-13915","-12.550000190734863","-12.550000190734863","","1907-03-07T00:00:00Z","","0" +"NM-02669","61.790000915527344","61.790000915527344","Z","1997-08-22T00:00:00Z","","0" +"NM-02361","97.69000244140625","97.69000244140625","","1970-01-20T00:00:00Z","","0" +"NM-13458","30.389999389648438","30.389999389648438","","1943-01-06T00:00:00Z","","0" +"NM-28250","96.62999725341797","96.62999725341797","","2021-06-04T00:00:00Z","","0" +"NM-02196","21.959999084472656","21.959999084472656","","2009-05-11T00:00:00Z","","0" +"NM-01269","72.30999755859375","72.30999755859375","","1987-08-11T00:00:00Z","","0" +"NM-28257","66.30999755859375","66.30999755859375","","1981-07-15T00:00:00Z","","0" +"NM-21618","70.02999877929688","70.02999877929688","","1958-11-20T00:00:00Z","","0" +"NM-02004","6.300000190734863","6.300000190734863","","1958-12-15T00:00:00Z","","0" +"RA-045","15.680000305175781","20.610000610351562","AA","2023-09-15T00:00:00Z","0001-01-01T11:30:00Z","-4.929999828338623" +"NM-16810","32.20000076293945","32.20000076293945","","1940-07-12T00:00:00Z","","0" +"DE-0109","38.369998931884766","38.369998931884766","","2010-01-25T00:00:00Z","","0" +"NM-03455","293.07000732421875","293.07000732421875","","1965-02-26T00:00:00Z","","0" +"NM-17395","57.97999954223633","57.97999954223633","","1961-01-11T00:00:00Z","","0" +"NM-28252","47.099998474121094","47.099998474121094","","1961-05-25T00:00:00Z","","0" +"SB-0299","117.33000183105469","117.33000183105469","","1979-01-25T00:00:00Z","","0" +"NM-04462","68.83999633789062","68.83999633789062","","1949-02-02T00:00:00Z","","0" +"DE-0099","93.01000213623047","93.01000213623047","","2000-02-14T00:00:00Z","","0" +"NM-11279","74.0999984741211","74.0999984741211","S","1965-09-04T00:00:00Z","","0" +"NM-20196","38.459999084472656","38.459999084472656","","1947-01-25T00:00:00Z","","0" +"NM-03360","84.45999908447266","84.45999908447266","","1980-01-30T00:00:00Z","","0" +"NM-04323","119.63999938964844","119.63999938964844","","1956-01-18T00:00:00Z","","0" +"NM-03885","106.80000305175781","106.80000305175781","","1987-01-13T00:00:00Z","","0" +"NM-01299","107.76000213623047","107.76000213623047","","2008-04-11T00:00:00Z","","0" +"NM-17635","7.119999885559082","7.119999885559082","","1949-07-29T00:00:00Z","","0" +"NM-02943","97.56999969482422","97.56999969482422","","1991-01-24T00:00:00Z","","0" +"NM-21879","3.6600000858306885","3.6600000858306885","Z","2006-12-22T00:00:00Z","","0" +"SA-0167","58.349998474121094","58.13999938964844","","2011-09-14T00:00:00Z","","0.20999999344348907" +"NM-07578","26.440000534057617","26.440000534057617","","1968-04-10T00:00:00Z","","0" +"NM-12976","44.630001068115234","44.630001068115234","","1976-05-14T00:00:00Z","","0" +"DE-0241","106.69000244140625","106.69000244140625","","2004-05-13T00:00:00Z","","0" +"NM-14327","180.72000122070312","180.72000122070312","","1959-11-08T00:00:00Z","","0" +"NM-03674","82.06999969482422","82.06999969482422","","1993-01-28T00:00:00Z","","0" +"NM-00507","66.41999816894531","66.41999816894531","","1981-01-07T00:00:00Z","","0" +"NM-10735","-18.299999237060547","-18.299999237060547","","1961-01-04T00:00:00Z","","0" +"NM-24415","100","100","","1992-10-23T00:00:00Z","","0" +"NM-13814","-12.550000190734863","-12.550000190734863","","1911-10-18T00:00:00Z","","0" +"NM-02669","54.599998474121094","54.599998474121094","Z","1993-12-17T00:00:00Z","","0" +"NM-28255","109.76000213623047","109.76000213623047","","1979-08-25T00:00:00Z","","0" +"NM-17716","-1.6100000143051147","-1.6100000143051147","","1942-04-23T00:00:00Z","","0" +"UC-0013","98","98","","1955-01-01T00:00:00Z","","0" +"NM-08071","8.800000190734863","8.800000190734863","","1986-12-15T00:00:00Z","","0" +"MG-037","113.5","112.19999694824219","","2014-11-10T00:00:00Z","","1.2999999523162842" +"NM-07092","43.619998931884766","43.619998931884766","","2005-01-21T00:00:00Z","","0" +"NM-02676","72.44999694824219","72.44999694824219","","2004-09-08T00:00:00Z","","0" +"NM-03460","143.27999877929688","143.27999877929688","","1960-08-25T00:00:00Z","","0" +"NM-05932","21.34000015258789","21.34000015258789","","1943-01-14T00:00:00Z","","0" +"EB-235","52.79999923706055","52.79999923706055","","1980-11-05T00:00:00Z","","0" +"NM-12425","37.400001525878906","37.400001525878906","","1976-04-01T00:00:00Z","","0" +"NM-27322","85.47000122070312","85.47000122070312","","1950-01-20T00:00:00Z","","0" +"NM-23108","10.140000343322754","10.140000343322754","Z","2010-01-21T00:00:00Z","","0" +"NM-28258","136.35000610351562","136.35000610351562","","2020-01-06T00:00:00Z","","0" +"NM-23200","5.880000114440918","5.880000114440918","","1994-07-07T00:00:00Z","","0" +"EB-225","163.4499969482422","163.4499969482422","","1975-07-23T00:00:00Z","","0" +"NM-03330","20.010000228881836","20.010000228881836","","1990-05-03T00:00:00Z","","0" +"NM-00985","380.1099853515625","380.1099853515625","","2012-02-27T00:00:00Z","","0" +"QU-107","431.3699951171875","429.44000244140625","","2012-12-18T00:00:00Z","","1.9299999475479126" +"NM-04903","120.31999969482422","120.31999969482422","","1959-02-06T00:00:00Z","","0" +"SB-0299","141.42999267578125","141.42999267578125","","2010-06-15T00:00:00Z","","0" +"NM-16514","21.350000381469727","21.350000381469727","","1955-01-18T00:00:00Z","","0" +"NM-10099","120.1500015258789","120.1500015258789","","1973-02-05T00:00:00Z","","0" +"NM-06581","70.7699966430664","70.7699966430664","","1952-12-03T00:00:00Z","","0" +"NM-13945","-10.819999694824219","-10.819999694824219","","1906-06-19T00:00:00Z","","0" +"NM-02254","327.75","327.75","","1991-02-15T00:00:00Z","","0" +"NM-07074","34.88999938964844","34.88999938964844","","1934-12-30T00:00:00Z","","0" +"NM-24338","51.79999923706055","51.79999923706055","","1980-11-05T00:00:00Z","","0" +"NM-05681","96.33999633789062","96.33999633789062","","1953-11-10T00:00:00Z","","0" +"NM-00366","112.33000183105469","112.33000183105469","","1969-03-01T00:00:00Z","","0" +"NM-03223","370.739990234375","370.739990234375","","1983-07-25T00:00:00Z","","0" +"NM-02831","46.599998474121094","46.599998474121094","","2004-08-25T00:00:00Z","","0" +"NM-13594","48.33000183105469","48.33000183105469","","1973-07-05T00:00:00Z","","0" +"NM-13900","4.889999866485596","4.889999866485596","","1963-01-28T00:00:00Z","","0" +"NM-17716","-1.5199999809265137","-1.5199999809265137","","1942-01-27T00:00:00Z","","0" +"NM-00935","314.7099914550781","314.7099914550781","","2016-01-26T00:00:00Z","","0" +"NM-28012","478.55999755859375","478.55999755859375","S","2015-05-28T00:00:00Z","","0" +"NM-04171","15.899999618530273","15.899999618530273","","1956-01-17T00:00:00Z","","0" +"NM-10360","87.30000305175781","87.30000305175781","","1955-01-20T00:00:00Z","","0" +"NM-17464","42.20000076293945","42.20000076293945","","1942-07-23T00:00:00Z","","0" +"NM-10529","54.400001525878906","54.400001525878906","","1962-01-23T00:00:00Z","","0" +"SB-0299","155.9199981689453","155.9199981689453","","2017-10-05T00:00:00Z","","0" +"NM-11795","40.97999954223633","40.97999954223633","","1953-03-23T00:00:00Z","","0" +"NM-19509","344.0299987792969","344.0299987792969","","1961-06-06T00:00:00Z","","0" +"NM-02464","128","128","","1968-04-06T00:00:00Z","","0" +"NM-02020","356.489990234375","356.489990234375","","1955-01-22T00:00:00Z","","0" +"NM-07153","92.56999969482422","92.56999969482422","","2008-01-09T00:00:00Z","","0" +"NM-02349","14.899999618530273","14.899999618530273","","1974-08-15T00:00:00Z","","0" +"SD-0276","173.5","173.5","","1962-07-03T00:00:00Z","","0" +"SO-0048","334","334","","1939-01-01T00:00:00Z","","0" +"DE-0239","111.36000061035156","111.36000061035156","","2006-05-09T00:00:00Z","","0" +"NM-20366","360.2799987792969","360.2799987792969","","1980-01-07T00:00:00Z","","0" +"NM-24644","252.5","252.5","","1953-07-14T00:00:00Z","","0" +"AB-0038","345.260009765625","345.260009765625","","2008-01-08T00:00:00Z","","" +"NM-17291","30.90999984741211","30.90999984741211","","1944-01-22T00:00:00Z","","0" +"NM-22840","84.61000061035156","84.61000061035156","","2010-04-13T00:00:00Z","","0" +"NM-10769","53.95000076293945","53.95000076293945","","1957-01-05T00:00:00Z","","0" +"NM-21285","6.46999979019165","6.46999979019165","","1957-09-19T00:00:00Z","","0" +"NM-01922","70.16000366210938","70.16000366210938","","1982-02-23T00:00:00Z","","0" +"NM-02130","138.5500030517578","138.5500030517578","","1973-01-24T00:00:00Z","","0" +"NM-00827","","","O","2010-01-28T00:00:00Z","","0" +"NM-01251","80.66000366210938","80.66000366210938","","1954-04-08T00:00:00Z","","0" +"NM-07704","24.8700008392334","24.8700008392334","","1983-01-20T00:00:00Z","","0" +"NM-14802","103.38999938964844","103.38999938964844","","1974-03-05T00:00:00Z","","0" +"WS-015","4.199999809265137","4.199999809265137","","2012-09-06T00:00:00Z","","0" +"NM-01278","125.2300033569336","125.2300033569336","","1957-08-01T00:00:00Z","","0" +"NM-00484","82","82","","1981-01-07T00:00:00Z","","0" +"NM-07398","111.94999694824219","111.94999694824219","","1969-01-16T00:00:00Z","","0" +"NM-21500","202.5500030517578","202.5500030517578","","2014-04-08T00:00:00Z","","0" +"NM-00770","110.55000305175781","110.55000305175781","","2009-11-19T00:00:00Z","","0" +"NM-28258","194.8300018310547","194.8300018310547","","1975-08-25T00:00:00Z","","0" +"NM-17716","1.6299999952316284","1.6299999952316284","","1944-10-28T00:00:00Z","","0" +"NM-23336","112.5999984741211","112.5999984741211","","1958-05-14T00:00:00Z","","0" +"NM-11474","34.529998779296875","34.529998779296875","","1939-01-18T00:00:00Z","","0" +"NM-15187","493.94000244140625","493.94000244140625","","1961-01-12T00:00:00Z","","0" +"NM-09696","28.690000534057617","28.690000534057617","","1948-11-08T00:00:00Z","","0" +"NM-13171","488.3500061035156","488.3500061035156","","1962-04-24T00:00:00Z","","0" +"NM-03673","70.22000122070312","70.22000122070312","","1994-02-16T00:00:00Z","","0" +"NM-24976","130.94000244140625","130.94000244140625","","1959-06-16T00:00:00Z","","0" +"NM-11475","80.25","80.25","","1965-01-07T00:00:00Z","","0" +"NM-11889","2.25","2.25","","1955-01-09T00:00:00Z","","0" +"NM-21527","295.29998779296875","295.29998779296875","","1998-03-01T00:00:00Z","","0" +"NM-26245","69","69","","1959-10-10T00:00:00Z","","0" +"NM-27465","37.47999954223633","37.47999954223633","","1963-01-16T00:00:00Z","","0" +"NM-28259","83.79000091552734","83.79000091552734","","1995-01-15T00:00:00Z","","0" +"NM-03354","117.41000366210938","117.41000366210938","","1978-01-30T00:00:00Z","","0" +"NM-06958","297","297","","2006-10-16T00:00:00Z","","0" +"NM-02341","210.75","210.75","","1989-02-13T00:00:00Z","","0" +"NM-13857","4.400000095367432","4.400000095367432","","1959-09-10T00:00:00Z","","0" +"NM-02092","132.57000732421875","132.57000732421875","P","1953-09-16T00:00:00Z","","0" +"NM-02396","9","9","","1964-04-15T00:00:00Z","","0" +"NM-07685","37.08000183105469","37.08000183105469","","1941-04-16T00:00:00Z","","0" +"NM-13954","-5.619999885559082","-5.619999885559082","","1913-08-15T00:00:00Z","","0" +"NM-05643","72.56999969482422","72.56999969482422","","1934-02-10T00:00:00Z","","0" +"NM-13870","-6.78000020980835","-6.78000020980835","","1911-06-03T00:00:00Z","","0" +"NM-07795","17.40999984741211","17.40999984741211","","1962-01-02T00:00:00Z","","0" +"NM-02528","38","38","","1983-01-03T00:00:00Z","","0" +"NM-12946","21.81999969482422","21.81999969482422","R","1961-02-09T00:00:00Z","","0" +"NM-10044","6.53000020980835","6.53000020980835","","1978-02-15T00:00:00Z","","0" +"NM-14396","6.090000152587891","6.090000152587891","","1976-03-18T00:00:00Z","","0" +"EB-298","164.22999572753906","164.22999572753906","","2012-05-30T00:00:00Z","","0" +"NM-07389","143.74000549316406","143.74000549316406","","1972-01-18T00:00:00Z","","0" +"NM-11445","68.68000030517578","68.68000030517578","","1957-01-08T00:00:00Z","","0" +"NM-28257","-0.6899999976158142","-0.6899999976158142","","1995-03-05T00:00:00Z","","0" +"NM-03391","26.760000228881836","26.760000228881836","","1993-06-29T00:00:00Z","","0" +"NM-28257","51.43000030517578","51.43000030517578","","1983-09-15T00:00:00Z","","0" +"AB-0100","717.780029296875","717.780029296875","","1998-12-15T00:00:00Z","","" +"NM-02195","103.63999938964844","103.63999938964844","","1964-01-17T00:00:00Z","","0" +"SB-0316","49.45000076293945","49.45000076293945","","1964-01-23T00:00:00Z","","0" +"NM-17470","15.479999542236328","15.479999542236328","","1945-04-04T00:00:00Z","","0" +"NM-10963","88.05000305175781","88.05000305175781","","1953-01-16T00:00:00Z","","0" +"EB-481","273","273","","1992-12-31T00:00:00Z","","0" +"QU-084","195.4499969482422","192.59999084472656","","2014-01-27T00:00:00Z","","2.8499999046325684" +"AB-0215","155.66000366210938","155.66000366210938","","1996-10-31T00:00:00Z","","" +"NM-28250","85.08000183105469","85.08000183105469","","2005-12-23T00:00:00Z","","0" +"NM-03146","345.07000732421875","345.07000732421875","","1982-01-11T00:00:00Z","","0" +"NM-22527","7.269999980926514","7.269999980926514","","1984-07-11T00:00:00Z","","0" +"EB-478","285","285","","1998-12-31T00:00:00Z","","0" +"NM-00406","45.83000183105469","45.83000183105469","","2011-12-20T00:00:00Z","","0" +"NM-01948","6.099999904632568","6.099999904632568","","1974-11-15T00:00:00Z","","0" +"NM-00156","14.84000015258789","14.84000015258789","","2003-01-29T00:00:00Z","","0" +"NM-03260","5.920000076293945","5.920000076293945","T","1984-07-30T00:00:00Z","","0" +"NM-02250","85.62999725341797","85.62999725341797","P","1954-09-10T00:00:00Z","","0" +"NM-28255","134.7100067138672","134.7100067138672","","2007-07-16T00:00:00Z","","0" +"NM-09176","80.3499984741211","80.3499984741211","","1965-01-17T00:00:00Z","","0" +"NM-02155","224","224","","1956-08-31T00:00:00Z","","0" +"NM-05716","91.62000274658203","91.62000274658203","","1949-05-18T00:00:00Z","","0" +"NM-13868","-11.970000267028809","-11.970000267028809","","1912-09-19T00:00:00Z","","0" +"NM-13004","34.380001068115234","34.380001068115234","","1961-02-13T00:00:00Z","","0" +"NM-02006","7.900000095367432","7.900000095367432","","2002-10-15T00:00:00Z","","0" +"NM-11383","39.27000045776367","39.27000045776367","","1940-01-12T00:00:00Z","","0" +"NM-03903","328.75","328.75","","1976-03-15T00:00:00Z","","0" +"NM-28258","177.19000244140625","177.19000244140625","","2004-09-03T00:00:00Z","","0" +"NM-00185","13.600000381469727","13.600000381469727","","1984-10-15T00:00:00Z","","0" +"NM-28141","","","F","1921-07-18T00:00:00Z","","0" +"NM-03334","11.420000076293945","11.420000076293945","","1994-05-05T00:00:00Z","","0" +"NM-06268","13.100000381469727","13.100000381469727","","1987-01-15T00:00:00Z","","0" +"NM-00959","330.3999938964844","330.3999938964844","","1981-01-12T00:00:00Z","","0" +"NM-28254","18.770000457763672","18.770000457763672","","1951-01-15T00:00:00Z","","0" +"NM-21723","28.479999542236328","28.479999542236328","","2014-02-03T00:00:00Z","","0" +"WL-0091","49.29166793823242","46.52166748046875","","1991-03-14T00:00:00Z","","2.7699999809265137" +"NM-17454","43.900001525878906","43.900001525878906","","1951-07-30T00:00:00Z","","0" +"NM-24701","202.7899932861328","202.7899932861328","","1977-08-05T00:00:00Z","","0" +"NM-28251","94.38999938964844","94.38999938964844","","1979-09-15T00:00:00Z","","0" +"EB-276","211","211","","1972-08-18T00:00:00Z","","0" +"NM-05757","81.7699966430664","81.7699966430664","","1943-04-26T00:00:00Z","","0" +"BC-0114","240.47999572753906","240.47999572753906","","2012-12-13T00:00:00Z","","0" +"NM-11383","70.01000213623047","70.01000213623047","","1952-01-16T00:00:00Z","","0" +"NM-02546","8.34000015258789","8.34000015258789","","1957-06-21T00:00:00Z","","0" +"NM-02702","24.010000228881836","24.010000228881836","","1995-05-16T00:00:00Z","","0" +"NM-02675","74.31999969482422","74.31999969482422","","1981-01-07T00:00:00Z","","0" +"NM-07146","83.63999938964844","83.63999938964844","","2005-01-28T00:00:00Z","","0" +"NM-07244","443.29998779296875","443.29998779296875","","2010-10-04T00:00:00Z","","0" +"NM-13118","13.890000343322754","13.890000343322754","","1958-01-21T00:00:00Z","","0" +"NM-04662","78.83000183105469","78.83000183105469","P","1949-05-18T00:00:00Z","","0" +"NM-00939","257.17999267578125","257.17999267578125","","1982-02-12T00:00:00Z","","0" +"NM-07508","79.66999816894531","79.66999816894531","","1981-02-10T00:00:00Z","","0" +"NM-24966","368.19000244140625","368.19000244140625","","1985-06-25T00:00:00Z","","0" +"EB-484","631.3699951171875","630.77001953125","P","2005-09-30T00:00:00Z","","0.6000000238418579" +"SA-0018","301.6499938964844","301.6499938964844","","1995-02-21T00:00:00Z","","0" +"NM-07069","114.80000305175781","114.80000305175781","","1976-12-16T00:00:00Z","","0" +"NM-13557","23.299999237060547","23.299999237060547","","1958-05-20T00:00:00Z","","0" +"NM-05440","13.350000381469727","13.350000381469727","","1970-01-06T00:00:00Z","","0" +"NM-06024","69.56999969482422","69.56999969482422","","1961-04-19T00:00:00Z","","0" +"NM-02520","3.9000000953674316","3.9000000953674316","","1980-05-15T00:00:00Z","","0" +"NM-19314","205","205","","1987-03-04T00:00:00Z","","0" +"NM-12781","122.80000305175781","122.80000305175781","S","1957-05-07T00:00:00Z","","0" +"NM-03667","74.80000305175781","74.80000305175781","","1983-01-25T00:00:00Z","","0" +"NM-26739","232.64999389648438","232.64999389648438","","1956-04-19T00:00:00Z","","0" +"NM-28255","30.850000381469727","30.850000381469727","","2005-12-15T00:00:00Z","","0" +"NM-01890","41.029998779296875","41.029998779296875","","1992-12-17T00:00:00Z","","0" +"NM-13594","45.97999954223633","45.97999954223633","","1972-05-05T00:00:00Z","","0" +"NM-02215","153.36000061035156","153.36000061035156","","1968-01-24T00:00:00Z","","0" +"AB-0053","52.40999984741211","52.40999984741211","","2003-07-29T00:00:00Z","","" +"NM-19991","74.44000244140625","74.44000244140625","","1970-02-17T00:00:00Z","","0" +"NM-02185","13.229999542236328","13.229999542236328","","1986-02-10T00:00:00Z","","0" +"DE-0293","78.95999908447266","78.95999908447266","","2017-11-20T00:00:00Z","","0" +"NM-00435","66.38999938964844","66.38999938964844","","1973-08-08T00:00:00Z","","0" +"NM-01955","6","6","","1979-02-15T00:00:00Z","","0" +"NM-01986","7.300000190734863","7.300000190734863","","1982-11-15T00:00:00Z","","0" +"NM-17665","78.55999755859375","78.55999755859375","","1954-03-24T00:00:00Z","","0" +"NM-02384","7","7","","1947-09-15T00:00:00Z","","0" +"NM-04002","76.38999938964844","76.38999938964844","","1974-06-13T00:00:00Z","","0" +"NM-03405","10.989999771118164","10.989999771118164","","2002-03-12T00:00:00Z","","0" +"NM-20333","61.349998474121094","61.349998474121094","","1961-01-05T00:00:00Z","","0" +"NM-28011","497.5299987792969","497.5299987792969","S","2015-06-04T00:00:00Z","","0" +"NM-02459","166.3300018310547","166.3300018310547","","1968-06-14T00:00:00Z","","0" +"NM-05757","66.08999633789062","66.08999633789062","","1930-09-18T00:00:00Z","","0" +"AB-0180","157.4600067138672","157.4600067138672","","2012-03-22T00:00:00Z","","" +"NM-06172","112.80999755859375","112.80999755859375","","1965-01-12T00:00:00Z","","0" +"EB-220","127.30000305175781","127.30000305175781","","1980-07-05T00:00:00Z","","0" +"NM-14802","109.88999938964844","109.88999938964844","","1976-09-15T00:00:00Z","","0" +"NM-16559","98.19999694824219","98.19999694824219","P","1962-01-17T00:00:00Z","","0" +"NM-02831","13.649999618530273","13.649999618530273","","1943-07-01T00:00:00Z","","0" +"NM-02293","144.55999755859375","144.55999755859375","","1986-03-20T00:00:00Z","","0" +"NM-03467","436.3800048828125","436.3800048828125","","1987-10-29T00:00:00Z","","0" +"SM-0246","86.29000091552734","85.52000427246094","","2020-12-16T00:00:00Z","0001-01-01T13:30:00Z","0.7699999809265137" +"NM-00435","68.2300033569336","68.2300033569336","","1983-08-17T00:00:00Z","","0" +"DE-0275","92","92","","2019-09-11T00:00:00Z","","0" +"NM-00720","13.720000267028809","13.720000267028809","","2008-04-30T00:00:00Z","","0" +"NM-01791","305.1300048828125","305.1300048828125","","1990-03-19T00:00:00Z","","0" +"NM-01868","9.800000190734863","9.800000190734863","","1948-02-15T00:00:00Z","","0" +"NM-13994","-17.170000076293945","-17.170000076293945","","1907-11-30T00:00:00Z","","0" +"NM-23514","42.5","42.5","","2004-03-03T00:00:00Z","","0" +"NM-19682","255.57000732421875","255.57000732421875","","1973-09-19T00:00:00Z","","0" +"NM-19964","47.380001068115234","47.380001068115234","","1969-02-25T00:00:00Z","","0" +"NM-12220","11.300000190734863","11.300000190734863","","1969-03-25T00:00:00Z","","0" +"AB-0165","485.25","485.25","","2007-12-06T00:00:00Z","","" +"NM-28253","15.34000015258789","15.34000015258789","","2016-03-05T00:00:00Z","","0" +"NM-25398","1.4900000095367432","1.4900000095367432","","1964-01-15T00:00:00Z","","0" +"NM-02831","38.5","38.5","","2002-05-06T00:00:00Z","","0" +"NM-01948","5.900000095367432","5.900000095367432","","2000-11-15T00:00:00Z","","0" +"NM-07947","27.489999771118164","27.489999771118164","","1963-01-23T00:00:00Z","","0" +"NM-11017","56.900001525878906","56.900001525878906","","1956-09-08T00:00:00Z","","0" +"NM-28012","479.9200134277344","479.9200134277344","S","2015-05-16T00:00:00Z","","0" +"NM-28250","104.0199966430664","104.0199966430664","","1973-12-25T00:00:00Z","","0" +"NM-14569","40.619998931884766","40.619998931884766","","1971-04-28T00:00:00Z","","0" +"NM-00766","38.97999954223633","38.97999954223633","","2009-01-06T00:00:00Z","","0" +"NM-01791","317.25","317.25","","1993-06-21T00:00:00Z","","0" +"NM-24810","148.77999877929688","148.77999877929688","","1959-03-26T00:00:00Z","","0" +"NM-02681","62.93000030517578","62.93000030517578","","2006-01-25T00:00:00Z","","0" +"NM-11578","26.170000076293945","26.170000076293945","","1929-11-12T00:00:00Z","","0" +"NM-14287","16.309999465942383","16.309999465942383","","1958-01-08T00:00:00Z","","0" +"NM-06088","51.810001373291016","51.810001373291016","","1957-09-10T00:00:00Z","","0" +"TV-196","247.35000610351562","252.54000854492188","","2011-06-13T00:00:00Z","","-5.190000057220459" +"NM-01796","3.9000000953674316","3.9000000953674316","","1970-03-15T00:00:00Z","","0" +"NM-20625","25.690000534057617","25.690000534057617","","1958-02-12T00:00:00Z","","0" +"NM-03714","91.18000030517578","91.18000030517578","","1976-02-09T00:00:00Z","","0" +"NM-17908","29.239999771118164","29.239999771118164","","1961-01-16T00:00:00Z","","0" +"NM-21557","5.550000190734863","5.550000190734863","Z","2008-04-15T00:00:00Z","","0" +"NM-03039","81.13999938964844","81.13999938964844","","1981-01-13T00:00:00Z","","0" +"NM-21670","554.9099731445312","554.9099731445312","","2003-05-06T00:00:00Z","","0" +"NM-04564","63.189998626708984","63.189998626708984","","1950-12-02T00:00:00Z","","0" +"NM-06076","36.619998931884766","36.619998931884766","","1939-01-14T00:00:00Z","","0" +"NM-28256","236.88999938964844","236.88999938964844","","1987-08-25T00:00:00Z","","0" +"NM-28257","43.54999923706055","43.54999923706055","","2020-04-06T00:00:00Z","","0" +"NM-02006","7.5","7.5","","1991-05-15T00:00:00Z","","0" +"NM-00643","109.52999877929688","109.52999877929688","","1978-12-01T00:00:00Z","","0" +"NM-04422","73.95999908447266","73.95999908447266","","1951-11-28T00:00:00Z","","0" +"NM-28009","498.6199951171875","498.6199951171875","S","2015-06-01T00:00:00Z","","0" +"NM-27457","8.300000190734863","8.300000190734863","","1976-11-23T00:00:00Z","","0" +"NM-02614","520.8300170898438","520.8300170898438","","2003-08-21T00:00:00Z","","0" +"NM-07028","113.63999938964844","113.63999938964844","","1965-08-09T00:00:00Z","","0" +"NM-04311","43.54999923706055","43.54999923706055","","1972-04-10T00:00:00Z","","0" +"NM-02453","156.27999877929688","156.27999877929688","","1992-01-27T00:00:00Z","","0" +"NM-19848","284.54998779296875","284.54998779296875","","1997-02-12T00:00:00Z","","0" +"NM-03903","330.6000061035156","330.6000061035156","","1976-06-10T00:00:00Z","","0" +"NM-19862","51.619998931884766","51.619998931884766","","1942-07-16T00:00:00Z","","0" +"NM-17716","2.8499999046325684","2.8499999046325684","","1946-03-21T00:00:00Z","","0" +"NM-01841","272.5400085449219","272.5400085449219","","1993-03-19T00:00:00Z","","0" +"NM-00470","49.810001373291016","49.810001373291016","","1958-01-15T00:00:00Z","","0" +"EB-282","274.2799987792969","274.2799987792969","","1996-02-08T00:00:00Z","","0" +"NM-12911","65.63999938964844","65.63999938964844","","1942-03-14T00:00:00Z","","0" +"NM-27457","7.989999771118164","7.989999771118164","","1975-12-23T00:00:00Z","","0" +"NM-16915","72.72000122070312","72.72000122070312","","1986-12-04T00:00:00Z","","0" +"NM-00226","39.7400016784668","39.7400016784668","","2009-09-30T00:00:00Z","","0" +"NM-01750","70.31999969482422","70.31999969482422","","1981-01-20T00:00:00Z","","0" +"BC-0259","","154.10000610351562","","2020-07-24T00:00:00Z","","1.4299999475479126" +"SB-0299","103.7699966430664","103.7699966430664","","1968-01-05T00:00:00Z","","0" +"NM-28015","498.6300048828125","498.6300048828125","S","2015-05-15T00:00:00Z","","0" +"NM-28255","92","92","","1995-03-15T00:00:00Z","","0" +"NM-21694","89.66999816894531","89.66999816894531","","1962-02-09T00:00:00Z","","0" +"NM-04659","49.599998474121094","49.599998474121094","","1945-01-10T00:00:00Z","","0" +"NM-09817","60.86000061035156","60.86000061035156","","1948-03-16T00:00:00Z","","0" +"NM-03747","48.099998474121094","48.099998474121094","","1950-03-20T00:00:00Z","","0" +"EB-021","249.5","257","","1992-07-01T00:00:00Z","","-7.5" +"NM-17295","30.280000686645508","30.280000686645508","","1932-10-08T00:00:00Z","","0" +"NM-14348","21.399999618530273","21.399999618530273","","1960-09-01T00:00:00Z","","0" +"NM-13162","11.630000114440918","11.630000114440918","","1947-03-12T00:00:00Z","","0" +"NM-28254","99.19000244140625","99.19000244140625","","1967-09-25T00:00:00Z","","0" +"NM-08648","40.060001373291016","40.060001373291016","","1949-01-18T00:00:00Z","","0" +"NM-07114","75.36000061035156","75.36000061035156","","2000-07-12T00:00:00Z","","0" +"UC-0042","168.85000610351562","168.85000610351562","","1977-01-26T00:00:00Z","","0" +"NM-06268","13.899999618530273","13.899999618530273","","1970-01-15T00:00:00Z","","0" +"SM-0252","65.02999877929688","64.02999877929688","","2010-08-11T00:00:00Z","","1" +"NM-21562","5.409999847412109","5.409999847412109","Z","2005-07-12T00:00:00Z","","0" +"NM-01503","98.11000061035156","98.11000061035156","","2012-01-25T00:00:00Z","","0" +"NM-02324","116","116","P","1975-03-19T00:00:00Z","","0" +"EB-262","154.3000030517578","154.3000030517578","","2002-07-25T00:00:00Z","","0" +"BC-0100","65.69000244140625","65.69000244140625","","2013-12-02T00:00:00Z","","0" +"TV-272","270.29998779296875","267.5199890136719","","2003-08-07T00:00:00Z","","2.7799999713897705" +"NM-02152","8.199999809265137","8.199999809265137","","1994-12-15T00:00:00Z","","0" +"DE-0060","199.5399932861328","196.82998657226562","","2010-06-21T00:00:00Z","","2.7100000381469727" +"NM-05757","86.06999969482422","86.06999969482422","P","1946-05-22T00:00:00Z","","0" +"NM-03435","84.06999969482422","84.06999969482422","","1984-01-31T00:00:00Z","","0" +"NM-01986","5.900000095367432","5.900000095367432","","1970-09-15T00:00:00Z","","0" +"WL-0020","19.420000076293945","18.540000915527344","","2017-01-12T00:00:00Z","0001-01-01T12:00:00Z","0.8799999952316284" +"SO-0244","6.579999923706055","6.009999752044678","","2018-08-09T00:00:00Z","0001-01-01T11:47:00Z","0.5699999928474426" +"AB-0124","546.2999877929688","546.2999877929688","","2005-03-28T00:00:00Z","","" +"BC-0282","50.75","50.75","","2018-04-02T00:00:00Z","","0" +"NM-14225","-15.600000381469727","-15.600000381469727","","1939-01-12T00:00:00Z","","0" +"NM-02249","73.66999816894531","73.66999816894531","","2002-01-30T00:00:00Z","","0" +"NM-07647","87.69000244140625","87.69000244140625","","1969-03-18T00:00:00Z","","0" +"NM-07435","196.55999755859375","196.55999755859375","P","1953-07-02T00:00:00Z","","0" +"NM-08647","28.450000762939453","28.450000762939453","","1957-09-11T00:00:00Z","","0" +"NM-11578","26.100000381469727","26.100000381469727","","1937-05-17T00:00:00Z","","0" +"NM-11560","78.36000061035156","78.36000061035156","","1956-11-21T00:00:00Z","","0" +"UC-0049","103.55000305175781","103.55000305175781","","1991-01-31T00:00:00Z","","0" +"NM-20526","17.799999237060547","17.799999237060547","","1941-09-09T00:00:00Z","","0" +"NM-18495","97.88999938964844","97.88999938964844","","1980-01-09T00:00:00Z","","0" +"DE-0110","39.45000076293945","39.45000076293945","","2012-03-29T00:00:00Z","","0" +"NM-28257","86.1500015258789","86.1500015258789","","1959-09-25T00:00:00Z","","0" +"NM-11559","8.430000305175781","8.430000305175781","","1942-01-23T00:00:00Z","","0" +"NM-25224","84.27999877929688","84.27999877929688","","1967-10-31T00:00:00Z","","0" +"NM-13941","-12.260000228881836","-12.260000228881836","","1908-09-03T00:00:00Z","","0" +"NM-00244","12.199999809265137","12.199999809265137","","1999-02-15T00:00:00Z","","0" +"NM-03652","37.68000030517578","37.68000030517578","","2011-06-14T00:00:00Z","","0" +"NM-10944","46.91999816894531","46.91999816894531","","1962-01-19T00:00:00Z","","0" +"NM-02169","8.949999809265137","8.949999809265137","","1994-01-28T00:00:00Z","","0" +"EB-207","147.8000030517578","147.8000030517578","","1965-10-27T00:00:00Z","","0" +"BC-0097","128.69000244140625","128.69000244140625","","2014-09-03T00:00:00Z","","0" +"NM-28255","35.61000061035156","35.61000061035156","","1981-10-25T00:00:00Z","","0" +"NM-13937","-8.800000190734863","-8.800000190734863","","1910-09-21T00:00:00Z","","0" +"NM-28011","490.9200134277344","490.9200134277344","S","2015-05-15T00:00:00Z","","0" +"NM-09495","481.79998779296875","481.79998779296875","","1954-08-27T00:00:00Z","","0" +"NM-21461","7.5","7.5","R","2016-07-20T00:00:00Z","","0" +"NM-16831","6.570000171661377","6.570000171661377","","1940-09-21T00:00:00Z","","0" +"EB-246","313.1700134277344","313.1700134277344","","2012-05-30T00:00:00Z","","0" +"NM-26661","-2.4200000762939453","-2.4200000762939453","","2011-07-28T00:00:00Z","","0" +"DA-0075","134","134","","1968-02-17T00:00:00Z","","0" +"NM-16979","39.20000076293945","39.20000076293945","","1944-01-18T00:00:00Z","","0" +"NM-21525","317.79998779296875","317.79998779296875","","1991-11-12T00:00:00Z","","0" +"NM-10450","53.619998931884766","53.619998931884766","","1961-01-18T00:00:00Z","","0" +"NM-02281","32.31999969482422","32.31999969482422","","2009-05-29T00:00:00Z","","0" +"NM-20563","11.949999809265137","11.949999809265137","","1942-04-08T00:00:00Z","","0" +"EB-012","203","203","","1996-02-29T00:00:00Z","","0" +"QU-071","26.200000762939453","23.440000534057617","","2013-05-08T00:00:00Z","","2.759999990463257" +"NM-04885","352.30999755859375","352.30999755859375","","1973-03-21T00:00:00Z","","0" +"NM-01427","798.6599731445312","798.6599731445312","","2010-03-17T00:00:00Z","","0" +"NM-09520","4.639999866485596","4.639999866485596","","1952-07-16T00:00:00Z","","0" +"WL-0088","71.20833587646484","68.60833740234375","","2000-10-12T00:00:00Z","","2.5999999046325684" +"NM-01899","92.29000091552734","92.29000091552734","","2013-09-11T00:00:00Z","","0" +"NM-02669","61.38999938964844","61.38999938964844","","1976-10-01T00:00:00Z","","0" +"NM-00385","39.22999954223633","39.22999954223633","","1951-09-21T00:00:00Z","","0" +"NM-24711","248.9600067138672","248.9600067138672","","1981-01-19T00:00:00Z","","0" +"NM-28253","42.84000015258789","42.84000015258789","","2012-07-17T00:00:00Z","","0" +"NM-00063","173.60000610351562","173.60000610351562","","1996-02-21T00:00:00Z","","0" +"NM-05195","91.5199966430664","91.5199966430664","","1954-01-19T00:00:00Z","","0" +"NM-02487","8.699999809265137","8.699999809265137","","2000-06-15T00:00:00Z","","0" +"DE-0311","41.75","41.75","","2007-08-09T00:00:00Z","","0" +"NM-28254","32.119998931884766","32.119998931884766","","1981-12-05T00:00:00Z","","0" +"NM-16601","8.5","8.5","","1942-09-24T00:00:00Z","","0" +"NM-21719","47.52000045776367","47.52000045776367","S","1984-12-31T00:00:00Z","","0" +"NM-17119","85.20999908447266","85.20999908447266","","1982-03-23T00:00:00Z","","0" +"NM-28016","490.8399963378906","490.8399963378906","S","2015-05-16T00:00:00Z","","0" +"NM-28256","206.7899932861328","206.7899932861328","","1984-08-15T00:00:00Z","","0" +"NM-27660","44.029998779296875","44.029998779296875","","1982-04-01T00:00:00Z","","0" +"NM-22692","6.619999885559082","6.619999885559082","Z","2011-10-06T00:00:00Z","","0" +"NM-01875","208.3000030517578","208.3000030517578","","2003-01-06T00:00:00Z","","0" +"NM-28015","498.8800048828125","498.8800048828125","S","2015-06-02T00:00:00Z","","0" +"NM-02630","58.099998474121094","58.099998474121094","P","1963-10-01T00:00:00Z","","0" +"AB-0184","355.44000244140625","355.44000244140625","","2009-10-08T00:00:00Z","","" +"NM-10990","12.350000381469727","12.350000381469727","","1967-07-12T00:00:00Z","","0" +"NM-13106","7.510000228881836","7.510000228881836","","1960-05-03T00:00:00Z","","0" +"BC-0030","","","D","2013-12-04T00:00:00Z","","0" +"NM-01948","4.099999904632568","4.099999904632568","","1970-04-15T00:00:00Z","","0" +"NM-01830","5.099999904632568","5.099999904632568","","1994-02-24T00:00:00Z","","0" +"NM-09036","56.45000076293945","56.45000076293945","","1941-01-13T00:00:00Z","","0" +"NM-05169","36.79999923706055","36.79999923706055","P","1951-07-28T00:00:00Z","","0" +"NM-10081","-22.950000762939453","-22.950000762939453","","1906-11-06T00:00:00Z","","0" +"NM-02675","74.9000015258789","74.9000015258789","","1982-01-06T00:00:00Z","","0" +"NM-03468","152.58999633789062","152.58999633789062","","2009-02-24T00:00:00Z","","0" +"NM-03338","9.380000114440918","9.380000114440918","","1990-09-05T00:00:00Z","","0" +"NM-28163","53.099998474121094","53.099998474121094","","1986-01-08T00:00:00Z","","0" +"NM-09977","34.279998779296875","34.279998779296875","","1994-03-01T00:00:00Z","","0" +"NM-13916","-13.420000076293945","-13.420000076293945","","1909-03-02T00:00:00Z","","0" +"NM-03104","309.8599853515625","309.8599853515625","","1983-04-26T00:00:00Z","","0" +"AB-0190","880","880","","1983-05-02T00:00:00Z","","" +"NM-28258","143.5","143.5","","1987-06-25T00:00:00Z","","0" +"NM-02949","176.4499969482422","176.4499969482422","","1959-09-16T00:00:00Z","","0" +"NM-05920","63.97999954223633","63.97999954223633","","1953-03-13T00:00:00Z","","0" +"NM-06676","6.099999904632568","6.099999904632568","","1982-09-15T00:00:00Z","","0" +"NM-12684","6.039999961853027","6.039999961853027","P","1945-01-14T00:00:00Z","","0" +"NM-17950","131.17999267578125","131.17999267578125","P","1971-12-15T00:00:00Z","","0" +"AB-0211","159.1699981689453","159.1699981689453","","1997-01-23T00:00:00Z","","" +"NM-13688","-10.239999771118164","-10.239999771118164","","1911-05-16T00:00:00Z","","0" +"NM-04100","172.8300018310547","172.8300018310547","","1978-01-10T00:00:00Z","","0" +"NM-11331","11.489999771118164","11.489999771118164","","1970-10-27T00:00:00Z","","0" +"NM-02225","94.66000366210938","94.66000366210938","","1951-07-21T00:00:00Z","","0" +"NM-07225","197.88999938964844","197.88999938964844","","1974-02-01T00:00:00Z","","0" +"DE-0113","40.970001220703125","40.970001220703125","","2014-04-28T00:00:00Z","","0" +"NM-14271","166.08999633789062","166.08999633789062","","1970-01-16T00:00:00Z","","0" +"NM-13826","-63.369998931884766","-63.369998931884766","","1916-01-06T00:00:00Z","","0" +"NM-13865","6.269999980926514","6.269999980926514","","1984-01-24T00:00:00Z","","0" +"NM-02286","17.15999984741211","17.15999984741211","","2013-04-16T00:00:00Z","","0" +"NM-02384","8.100000381469727","8.100000381469727","","1948-04-15T00:00:00Z","","0" +"NM-28257","17.510000228881836","17.510000228881836","","1974-02-25T00:00:00Z","","0" +"AB-0113","212.00999450683594","212.00999450683594","","1998-02-13T00:00:00Z","","" +"NM-02005","5.900000095367432","5.900000095367432","","1946-04-15T00:00:00Z","","0" +"NM-02373","174.64999389648438","174.64999389648438","","1995-02-10T00:00:00Z","","0" +"NM-02043","7.900000095367432","7.900000095367432","","1956-03-15T00:00:00Z","","0" +"NM-06027","67.2699966430664","67.2699966430664","","1953-01-07T00:00:00Z","","0" +"NM-02702","-25.1200008392334","-25.1200008392334","","1997-11-26T00:00:00Z","","0" +"EB-012","383.0400085449219","383.0400085449219","","1996-08-31T00:00:00Z","","0" +"NM-00587","123.97000122070312","123.97000122070312","","2010-12-08T00:00:00Z","","0" +"NM-01194","64.9000015258789","64.9000015258789","","1966-02-09T00:00:00Z","","0" +"NM-28259","137.66000366210938","137.66000366210938","","1976-10-15T00:00:00Z","","0" +"NM-01829","308.7900085449219","308.7900085449219","","1975-03-26T00:00:00Z","","0" +"NM-20916","167.8300018310547","167.8300018310547","","1977-03-01T00:00:00Z","","0" +"NM-04236","12.119999885559082","12.119999885559082","","1961-01-09T00:00:00Z","","0" +"NM-09824","-88.77999877929688","-88.77999877929688","","1908-08-26T00:00:00Z","","0" +"EB-288","199","199","","2001-02-28T00:00:00Z","","0" +"NM-27565","40.470001220703125","40.470001220703125","","1965-01-15T00:00:00Z","","0" +"NM-08246","21.549999237060547","21.549999237060547","","1949-01-18T00:00:00Z","","0" +"NM-23554","200","200","","2000-08-14T00:00:00Z","","0" +"NM-15486","32.220001220703125","32.220001220703125","","1990-02-14T00:00:00Z","","0" +"NM-02207","9.699999809265137","9.699999809265137","","1962-12-15T00:00:00Z","","0" +"NM-00525","47.060001373291016","47.060001373291016","","1949-01-19T00:00:00Z","","0" +"NM-08393","12.779999732971191","12.779999732971191","","2009-10-27T00:00:00Z","","0" +"NM-17396","43.959999084472656","43.959999084472656","","1934-04-02T00:00:00Z","","0" +"NM-28095","685.3599853515625","685.3599853515625","","1985-04-01T00:00:00Z","","0" +"NM-01406","243.89999389648438","243.89999389648438","","1983-11-10T00:00:00Z","","0" +"NM-28259","161.9499969482422","161.9499969482422","","1962-07-15T00:00:00Z","","0" +"NM-27333","26.010000228881836","26.010000228881836","","1983-01-11T00:00:00Z","","0" +"NM-00185","21","21","","1957-05-15T00:00:00Z","","0" +"NM-09824","-83.01000213623047","-83.01000213623047","","1907-06-14T00:00:00Z","","0" +"NM-14293","4.480000019073486","4.480000019073486","","1960-09-01T00:00:00Z","","0" +"EB-288","195","195","","1999-01-27T00:00:00Z","","0" +"NM-07706","53.88999938964844","53.88999938964844","","1986-02-06T00:00:00Z","","0" +"NM-27488","22.170000076293945","22.170000076293945","","1999-02-03T00:00:00Z","","0" +"SA-0077","265.8599853515625","264.0699768066406","","2021-02-24T00:00:00Z","0001-01-01T09:47:00Z","1.7899999618530273" +"AB-0135","500.2300109863281","500.2300109863281","","2006-04-11T00:00:00Z","","" +"NM-27541","23.040000915527344","23.040000915527344","","1948-03-28T00:00:00Z","","0" +"NM-17067","20.649999618530273","20.649999618530273","","1945-01-23T00:00:00Z","","0" +"NM-00691","27.25","27.25","","2006-02-23T00:00:00Z","","0" +"NM-01886","70.73999786376953","70.73999786376953","","2006-04-28T00:00:00Z","","0" +"NM-19682","273.44000244140625","273.44000244140625","","1985-11-01T00:00:00Z","","0" +"NM-24140","138.11000061035156","138.11000061035156","R","1993-02-11T00:00:00Z","","0" +"RA-047","16.469999313354492","14.9399995803833","AA","2023-09-15T00:00:00Z","0001-01-01T09:30:00Z","1.5299999713897705" +"WL-0087","53.79166793823242","52.11166763305664","","1997-03-19T00:00:00Z","","1.6799999475479126" +"NM-15099","7.639999866485596","7.639999866485596","","1963-01-09T00:00:00Z","","0" +"NM-04480","112.79000091552734","112.79000091552734","","1966-01-07T00:00:00Z","","0" +"NM-02286","9.949999809265137","9.949999809265137","","2006-05-23T00:00:00Z","","0" +"EB-483","326","326","P","1997-09-30T00:00:00Z","","0" +"NM-04662","72.58999633789062","72.58999633789062","","1947-03-21T00:00:00Z","","0" +"NM-02563","39.91999816894531","39.91999816894531","","2010-01-11T00:00:00Z","","0" +"NM-28252","50.970001220703125","50.970001220703125","","2011-11-05T00:00:00Z","","0" +"NM-16735","7.889999866485596","7.889999866485596","","1943-07-27T00:00:00Z","","0" +"EB-246","302.42999267578125","302.42999267578125","","2014-07-24T00:00:00Z","","0" +"NM-27202","137.8300018310547","137.8300018310547","","2014-12-11T00:00:00Z","","0" +"NM-13866","5.349999904632568","5.349999904632568","","1959-01-07T00:00:00Z","","0" +"AB-0135","495.1499938964844","495.1499938964844","Z","1999-02-09T00:00:00Z","","" +"NM-02702","69.37999725341797","69.37999725341797","","1980-06-01T00:00:00Z","","0" +"AB-0200","195.14999389648438","195.14999389648438","","2002-10-21T00:00:00Z","","" +"SA-0043","124.44999694824219","124.44999694824219","","1991-02-13T00:00:00Z","","0" +"NM-28250","104.56999969482422","104.56999969482422","","1979-01-15T00:00:00Z","","0" +"NM-25110","635","635","","1972-03-30T00:00:00Z","","0" +"NM-28259","160.89999389648438","160.89999389648438","","2020-07-15T00:00:00Z","","0" +"NM-14802","91.33000183105469","91.33000183105469","","1962-08-01T00:00:00Z","","0" +"NM-02702","17.799999237060547","17.799999237060547","","1991-07-18T00:00:00Z","","0" +"NM-00229","69.08000183105469","69.08000183105469","","2002-07-19T00:00:00Z","","0" +"NM-19852","49.900001525878906","49.900001525878906","S","1944-03-29T00:00:00Z","","0" +"NM-16779","22.6200008392334","22.6200008392334","","1960-01-11T00:00:00Z","","0" +"NM-02554","388.05999755859375","388.05999755859375","S","1996-07-01T00:00:00Z","","0" +"NM-00529","66.75","66.75","","1969-11-13T00:00:00Z","","0" +"NM-11920","1.409999966621399","1.409999966621399","","1958-11-21T00:00:00Z","","0" +"SB-0299","141.72000122070312","141.72000122070312","","2013-05-05T00:00:00Z","","0" +"NM-14293","5.449999809265137","5.449999809265137","","1960-02-23T00:00:00Z","","0" +"NM-01004","279.260009765625","279.260009765625","","1991-01-04T00:00:00Z","","0" +"BC-0403","","280.8999938964844","","2021-10-30T00:00:00Z","","1.600000023841858" +"NM-02209","100.69999694824219","100.69999694824219","","1987-02-20T00:00:00Z","","0" +"NM-05757","94.7300033569336","94.7300033569336","","1954-11-13T00:00:00Z","","0" +"NM-07487","234.52999877929688","234.52999877929688","","1968-12-11T00:00:00Z","","0" +"NM-00675","10.279999732971191","10.279999732971191","","1989-02-17T00:00:00Z","","0" +"NM-04059","14.699999809265137","14.699999809265137","","1955-01-20T00:00:00Z","","0" +"NM-13911","-18.329999923706055","-18.329999923706055","","1910-09-01T00:00:00Z","","0" +"NM-05436","150.89999389648438","150.89999389648438","P","1960-06-21T00:00:00Z","","0" +"NM-01800","146.72000122070312","146.72000122070312","","1983-08-02T00:00:00Z","","0" +"NM-10906","26.1200008392334","26.1200008392334","","1958-11-19T00:00:00Z","","0" +"EB-340","53.13999938964844","52.34000015258789","","2019-04-16T00:00:00Z","0001-01-01T08:32:00Z","0.800000011920929" +"NM-28019","481.260009765625","481.260009765625","S","2015-04-24T00:00:00Z","","0" +"NM-04584","36.470001220703125","36.470001220703125","","1953-03-05T00:00:00Z","","0" +"NM-06009","69.8499984741211","69.8499984741211","","1945-03-21T00:00:00Z","","0" +"NM-08861","70.9800033569336","70.9800033569336","","1962-01-25T00:00:00Z","","0" +"NM-01286","67.33999633789062","67.33999633789062","R","1984-03-14T00:00:00Z","","0" +"DE-0108","","","D","2016-07-27T00:00:00Z","","0" +"SB-0442","171.89999389648438","171.89999389648438","","2007-07-15T00:00:00Z","","0" +"NM-12913","41.88999938964844","41.88999938964844","","1990-12-18T00:00:00Z","","0" +"DE-0240","107.01000213623047","107.01000213623047","","2001-10-25T00:00:00Z","","0" +"NM-27193","104.2300033569336","104.2300033569336","","2010-03-23T00:00:00Z","","0" +"NM-05724","86.38999938964844","86.38999938964844","","1959-02-16T00:00:00Z","","0" +"NM-20126","38.849998474121094","38.849998474121094","","1947-01-25T00:00:00Z","","0" +"NM-00858","6.329999923706055","6.329999923706055","","2010-02-23T00:00:00Z","","0" +"NM-12911","78.08999633789062","78.08999633789062","","1950-07-12T00:00:00Z","","0" +"NM-18923","349.6099853515625","349.6099853515625","","2015-01-22T00:00:00Z","","0" +"NM-04895","102.4000015258789","102.4000015258789","","1969-01-25T00:00:00Z","","0" +"NM-02309","260.3999938964844","260.3999938964844","P","1972-10-18T00:00:00Z","","0" +"NM-04525","49.04999923706055","49.04999923706055","","1951-11-20T00:00:00Z","","0" +"NM-05718","93.88999938964844","93.88999938964844","","1948-09-17T00:00:00Z","","0" +"AB-0123","530.530029296875","530.530029296875","","2014-05-27T00:00:00Z","","" +"NM-02773","62.439998626708984","62.439998626708984","","1983-02-17T00:00:00Z","","0" +"NM-06007","171.57000732421875","171.57000732421875","","1983-01-11T00:00:00Z","","0" +"NM-02623","196.0800018310547","196.0800018310547","","1979-07-10T00:00:00Z","","0" +"NM-06499","83.19000244140625","83.19000244140625","","1951-07-17T00:00:00Z","","0" +"NM-11467","194.69000244140625","194.69000244140625","","1984-02-09T00:00:00Z","","0" +"DE-0188","49.040000915527344","49.040000915527344","","2016-03-29T00:00:00Z","","0" +"NM-09817","62.65999984741211","62.65999984741211","","1949-01-07T00:00:00Z","","0" +"NM-05347","7.400000095367432","7.400000095367432","","1951-03-15T00:00:00Z","","0" +"NM-13350","31.6299991607666","31.6299991607666","","1968-01-04T00:00:00Z","","0" +"NM-28019","476.9700012207031","476.9700012207031","S","2015-05-06T00:00:00Z","","0" +"NM-06595","68.5999984741211","68.5999984741211","","1931-10-10T00:00:00Z","","0" +"NM-06268","16.799999237060547","16.799999237060547","","1959-04-15T00:00:00Z","","0" +"NM-01379","29.489999771118164","29.489999771118164","","2006-02-24T00:00:00Z","","0" +"NM-28257","57.95000076293945","57.95000076293945","","2018-07-25T00:00:00Z","","0" +"NM-28254","18.030000686645508","18.030000686645508","","1954-01-05T00:00:00Z","","0" +"NM-03424","13.149999618530273","13.149999618530273","Z","1997-12-16T00:00:00Z","","0" +"NM-01899","45.9900016784668","45.9900016784668","","2007-04-17T00:00:00Z","","0" +"EB-246","255.57000732421875","255.57000732421875","","1997-09-16T00:00:00Z","","0" +"NM-13625","42.560001373291016","42.560001373291016","","1979-01-16T00:00:00Z","","0" +"NM-13989","-12.550000190734863","-12.550000190734863","","1910-03-22T00:00:00Z","","0" +"NM-17127","34.650001525878906","34.650001525878906","P","1949-11-22T00:00:00Z","","0" +"NM-00014","40.130001068115234","40.130001068115234","","1965-01-27T00:00:00Z","","0" +"NM-02547","61.099998474121094","61.099998474121094","","1956-07-31T00:00:00Z","","0" +"NM-17716","0.6600000262260437","0.6600000262260437","","1942-08-15T00:00:00Z","","0" +"NM-00972","89.30000305175781","89.30000305175781","","1966-01-03T00:00:00Z","","0" +"SB-0478","63","63","","1986-07-13T00:00:00Z","","0" +"NM-14927","100.7699966430664","100.7699966430664","","1988-12-21T00:00:00Z","","0" +"AB-0091","506.7099914550781","506.7099914550781","","2015-09-18T00:00:00Z","","0" +"AB-0010","11.5","11.5","Z","1996-12-04T00:00:00Z","","" +"SB-0299","122.54000091552734","122.54000091552734","","2001-04-05T00:00:00Z","","0" +"NM-07815","25.139999389648438","25.139999389648438","","1930-02-20T00:00:00Z","","0" +"NM-03443","36.93000030517578","36.93000030517578","","2002-03-01T00:00:00Z","","0" +"NM-12808","21.450000762939453","21.450000762939453","","1961-01-05T00:00:00Z","","0" +"UC-0034","93.19999694824219","93.19999694824219","","1991-07-02T00:00:00Z","","0" +"NM-13594","45.04999923706055","45.04999923706055","","1970-06-10T00:00:00Z","","0" +"EB-284","319.4599914550781","319.4599914550781","","2000-07-17T00:00:00Z","","0" +"NM-10769","54.9900016784668","54.9900016784668","","1958-03-10T00:00:00Z","","0" +"NM-05521","78.1500015258789","78.1500015258789","","1946-01-09T00:00:00Z","","0" +"SA-0201","43.59000015258789","42.13999938964844","","2011-03-03T00:00:00Z","","1.4500000476837158" +"NM-13572","26.229999542236328","26.229999542236328","","1973-01-15T00:00:00Z","","0" +"MG-030","126.58000183105469","124.58000183105469","","2017-05-09T00:00:00Z","0001-01-01T14:12:00Z","2" +"NM-25823","209","209","","1988-08-30T00:00:00Z","","0" +"NM-13552","-24.100000381469727","-24.100000381469727","","1910-05-27T00:00:00Z","","0" +"NM-11090","75.94000244140625","75.94000244140625","","1982-01-06T00:00:00Z","","0" +"CX-0141","10.399999618530273","10.399999618530273","","1946-04-24T00:00:00Z","","0" +"NM-28254","26.200000762939453","26.200000762939453","","1968-01-05T00:00:00Z","","0" +"NM-21248","351","351","","1934-12-17T00:00:00Z","","0" +"NM-03390","35.90999984741211","35.90999984741211","","2002-09-19T00:00:00Z","","0" +"NM-17431","45.619998931884766","45.619998931884766","","1962-01-15T00:00:00Z","","0" +"NM-24245","16.309999465942383","16.309999465942383","","2010-04-20T00:00:00Z","","0" +"NM-01947","3.9000000953674316","3.9000000953674316","","2001-07-15T00:00:00Z","","0" +"AB-0143","313","313","","1982-10-01T00:00:00Z","","0" +"NM-17716","5.019999980926514","5.019999980926514","","1946-08-13T00:00:00Z","","0" +"NM-03220","37.150001525878906","37.150001525878906","","1980-01-02T00:00:00Z","","0" +"DE-0337","34","31.110000610351562","","2013-05-20T00:00:00Z","","2.890000104904175" +"QU-101","137.57000732421875","134.67001342773438","","2015-08-26T00:00:00Z","","2.9000000953674316" +"DE-0109","35.189998626708984","35.189998626708984","","2007-04-23T00:00:00Z","","0" +"NM-28259","122.36000061035156","122.36000061035156","","2015-05-05T00:00:00Z","","0" +"NM-06103","93.83999633789062","93.83999633789062","","1945-01-05T00:00:00Z","","0" +"NM-11231","61.349998474121094","61.349998474121094","","1948-01-20T00:00:00Z","","0" +"NM-04470","40.599998474121094","40.599998474121094","","1947-05-21T00:00:00Z","","0" +"NM-09598","-91.08999633789062","-91.08999633789062","","1905-11-06T00:00:00Z","","0" +"NM-09501","146.82000732421875","146.82000732421875","","1955-01-14T00:00:00Z","","0" +"SV-0068","246.60000610351562","245.2666778564453","","2016-06-11T00:00:00Z","","1.3333333730697632" +"DE-0181","51.540000915527344","51.540000915527344","","2017-04-25T00:00:00Z","","0" +"NM-22764","91.51000213623047","91.51000213623047","","1985-01-29T00:00:00Z","","0" +"DE-0304","44.27000045776367","44.27000045776367","","2019-07-18T00:00:00Z","","0" +"NM-09042","83.33000183105469","83.33000183105469","","1959-01-23T00:00:00Z","","0" +"NM-28250","82.52999877929688","82.52999877929688","","1994-08-05T00:00:00Z","","0" +"NM-11065","177.47000122070312","177.47000122070312","","1983-02-16T00:00:00Z","","0" +"NM-24932","64.91999816894531","64.91999816894531","","1975-02-12T00:00:00Z","","0" +"NM-01785","324.0899963378906","324.0899963378906","","1990-02-13T00:00:00Z","","0" +"DE-0268","86.5999984741211","86.5999984741211","","2017-06-05T00:00:00Z","","0" +"NM-25562","342","342","","1972-08-03T00:00:00Z","","0" +"NM-02101","","","D","1956-12-15T00:00:00Z","","0" +"NM-04436","96.69000244140625","96.69000244140625","","1966-01-06T00:00:00Z","","0" +"NM-02396","6.599999904632568","6.599999904632568","","1976-10-15T00:00:00Z","","0" +"NM-14035","-62.220001220703125","-62.220001220703125","","1909-09-15T00:00:00Z","","0" +"NM-00621","78.76000213623047","78.76000213623047","R","1994-01-04T00:00:00Z","","0" +"NM-10094","121.05000305175781","121.05000305175781","","1955-01-08T00:00:00Z","","0" +"NM-13218","9.199999809265137","9.199999809265137","","1959-01-08T00:00:00Z","","0" +"NM-01759","59.47999954223633","59.47999954223633","","2003-06-25T00:00:00Z","","0" +"NM-06537","120.91000366210938","120.91000366210938","","1964-01-09T00:00:00Z","","0" +"NM-02089","73.08999633789062","73.08999633789062","","1964-01-07T00:00:00Z","","0" +"EB-146","23.3799991607666","23.3799991607666","","1999-02-18T00:00:00Z","","0" +"WL-0089","47.54166793823242","44.991668701171875","","1996-12-05T00:00:00Z","","2.549999952316284" +"NM-00090","94.51000213623047","94.51000213623047","","2005-03-29T00:00:00Z","","0" +"NM-08503","-91.08999633789062","-91.08999633789062","","1907-12-12T00:00:00Z","","0" +"NM-02043","4","4","","1949-06-15T00:00:00Z","","0" +"NM-14258","-11.399999618530273","-11.399999618530273","","1908-09-08T00:00:00Z","","0" +"NM-03903","331.55999755859375","331.55999755859375","","1975-08-12T00:00:00Z","","0" +"NM-28258","179.64999389648438","179.64999389648438","","2020-06-05T00:00:00Z","","0" +"NM-02384","8.899999618530273","8.899999618530273","","1952-06-15T00:00:00Z","","0" +"NM-13868","-17.170000076293945","-17.170000076293945","","1906-03-06T00:00:00Z","","0" +"DE-0069","210.57000732421875","207.0900115966797","","2000-01-05T00:00:00Z","","3.4800000190734863" +"NM-06183","82.88999938964844","82.88999938964844","","1952-05-22T00:00:00Z","","0" +"NM-07830","7.019999980926514","7.019999980926514","","1976-01-12T00:00:00Z","","0" +"NM-02435","51.38999938964844","51.38999938964844","","1989-03-15T00:00:00Z","","0" +"NM-11880","32.70000076293945","32.70000076293945","","1945-10-10T00:00:00Z","","0" +"NM-10136","-95.70999908447266","-95.70999908447266","","1913-01-23T00:00:00Z","","0" +"NM-08846","36.29999923706055","36.29999923706055","","1970-01-22T00:00:00Z","","0" +"NM-12399","-54.130001068115234","-54.130001068115234","","1912-05-29T00:00:00Z","","0" +"DE-0196","53.279998779296875","53.279998779296875","","2015-11-24T00:00:00Z","","0" +"NM-03086","268.42999267578125","268.42999267578125","","1987-01-12T00:00:00Z","","0" +"NM-02772","14.960000038146973","14.960000038146973","","1940-10-01T00:00:00Z","","0" +"AB-0002","422.4100036621094","422.4100036621094","","1997-06-20T00:00:00Z","","" +"NM-11322","2.3299999237060547","2.3299999237060547","","1972-11-13T00:00:00Z","","0" +"NM-02466","85.58999633789062","85.58999633789062","","1976-01-08T00:00:00Z","","0" +"NM-27234","6.920000076293945","6.920000076293945","","1952-09-05T00:00:00Z","","0" +"NM-13431","40.150001525878906","40.150001525878906","","1937-05-25T00:00:00Z","","0" +"NM-01935","27.75","27.75","","1998-01-24T00:00:00Z","","0" +"NM-28255","45.36000061035156","45.36000061035156","","1956-10-25T00:00:00Z","","0" +"NM-00395","35.119998931884766","35.119998931884766","","1957-06-06T00:00:00Z","","0" +"NM-20229","55.31999969482422","55.31999969482422","","1944-09-28T00:00:00Z","","0" +"NM-28250","93.33000183105469","93.33000183105469","","2015-09-15T00:00:00Z","","0" +"NM-05231","79.87999725341797","79.87999725341797","","1955-12-12T00:00:00Z","","0" +"NM-04827","88.62000274658203","88.62000274658203","","1976-01-06T00:00:00Z","","0" +"NM-16486","112.6500015258789","112.6500015258789","","1967-01-11T00:00:00Z","","0" +"NM-27292","208.9499969482422","208.9499969482422","","1995-08-29T00:00:00Z","","0" +"NM-28252","46.52000045776367","46.52000045776367","","1960-06-05T00:00:00Z","","0" +"NM-02004","6.599999904632568","6.599999904632568","","1950-05-15T00:00:00Z","","0" +"NM-23014","346","346","","1979-10-10T00:00:00Z","","0" +"NM-03423","23.860000610351562","23.860000610351562","Z","1997-06-17T00:00:00Z","","0" +"SA-0037","45.2599983215332","43.5099983215332","","1991-02-25T00:00:00Z","","1.75" +"NM-03369","56.59000015258789","56.59000015258789","R","1991-11-06T00:00:00Z","","0" +"NM-01896","8.859999656677246","8.859999656677246","","2000-07-20T00:00:00Z","","0" +"WL-0088","59.79166793823242","57.19166946411133","","1999-02-10T00:00:00Z","","2.5999999046325684" +"NM-12339","24.43000030517578","24.43000030517578","","1957-01-15T00:00:00Z","","0" +"NM-02396","9.649999618530273","9.649999618530273","","2006-03-02T00:00:00Z","","0" +"NM-18459","84.37999725341797","84.37999725341797","","1967-12-13T00:00:00Z","","0" +"NM-13966","-12.550000190734863","-12.550000190734863","","1909-12-01T00:00:00Z","","0" +"NM-02841","53.349998474121094","53.349998474121094","","1973-01-12T00:00:00Z","","0" +"NM-01299","95.19999694824219","95.19999694824219","","2006-11-28T00:00:00Z","","0" +"NM-02669","58.880001068115234","58.880001068115234","","1981-01-01T00:00:00Z","","0" +"NM-14503","42.54999923706055","42.54999923706055","","1973-01-16T00:00:00Z","","0" +"NM-03998","55.84000015258789","55.84000015258789","","1972-11-30T00:00:00Z","","0" +"NM-03436","59.45000076293945","59.45000076293945","","1947-02-03T00:00:00Z","","0" +"NM-04009","208.02000427246094","208.02000427246094","","1964-01-07T00:00:00Z","","0" +"NM-04480","115.19999694824219","115.19999694824219","","1973-01-24T00:00:00Z","","0" +"NM-11226","2.8399999141693115","2.8399999141693115","","1962-01-08T00:00:00Z","","0" +"NM-09670","26.290000915527344","26.290000915527344","","1950-01-10T00:00:00Z","","0" +"NM-20816","23.079999923706055","23.079999923706055","","1955-08-25T00:00:00Z","","0" +"NM-08567","109.98999786376953","109.98999786376953","","1993-02-05T00:00:00Z","","0" +"NM-08164","48.02000045776367","48.02000045776367","","1968-02-07T00:00:00Z","","0" +"NM-04391","54.209999084472656","54.209999084472656","","1949-02-02T00:00:00Z","","0" +"NM-25680","-106.0199966430664","-106.0199966430664","","1988-10-31T00:00:00Z","","0" +"NM-22673","5.349999904632568","5.349999904632568","Z","2008-04-29T00:00:00Z","","0" +"NM-17542","32.95000076293945","32.95000076293945","","1944-01-20T00:00:00Z","","0" +"NM-01426","86.01000213623047","86.01000213623047","","2001-03-09T00:00:00Z","","0" +"UC-0038","158.58999633789062","158.58999633789062","","1971-03-16T00:00:00Z","","0" +"AB-0039","347.8399963378906","347.8399963378906","","1997-02-04T00:00:00Z","","" +"NM-17300","45.75","45.75","","1955-01-24T00:00:00Z","","0" +"NM-00185","12.609999656677246","12.609999656677246","","1984-06-18T00:00:00Z","","0" +"NM-21306","10.039999961853027","10.039999961853027","","1953-08-19T00:00:00Z","","0" +"UC-0103","118.0999984741211","118.0999984741211","","2011-08-13T00:00:00Z","","0" +"NM-23198","60.369998931884766","60.369998931884766","","1946-09-04T00:00:00Z","","0" +"NM-09218","-88.77999877929688","-88.77999877929688","","1911-06-14T00:00:00Z","","0" +"NM-07719","46.369998931884766","46.369998931884766","","1944-11-23T00:00:00Z","","0" +"NM-02395","36.119998931884766","36.119998931884766","","1986-02-27T00:00:00Z","","0" +"DE-0169","58.099998474121094","58.099998474121094","","2016-03-23T00:00:00Z","","0" +"BC-0239","","318","","2020-08-04T00:00:00Z","","2.380000114440918" +"NM-03269","302.69000244140625","302.69000244140625","","1975-01-03T00:00:00Z","","0" +"EB-267","15.800000190734863","15.800000190734863","Z","1998-08-11T00:00:00Z","","0" +"WL-0089","48.70833206176758","46.15833282470703","","1990-04-03T00:00:00Z","","2.549999952316284" +"NM-08758","6.619999885559082","6.619999885559082","","1955-01-12T00:00:00Z","","0" +"NM-17577","40.20000076293945","40.20000076293945","","1932-03-29T00:00:00Z","","0" +"NM-01929","358.6300048828125","358.6300048828125","","1992-02-24T00:00:00Z","","0" +"NM-28253","25.34000015258789","25.34000015258789","","2014-10-23T00:00:00Z","","0" +"NM-02979","24.020000457763672","24.020000457763672","","1960-06-02T00:00:00Z","","0" +"NM-13874","-4.46999979019165","-4.46999979019165","","1908-09-03T00:00:00Z","","0" +"NM-05309","8.800000190734863","8.800000190734863","","1970-03-15T00:00:00Z","","0" +"NM-15598","102.27999877929688","102.27999877929688","","1990-01-12T00:00:00Z","","0" +"NM-01896","9.199999809265137","9.199999809265137","","1999-07-08T00:00:00Z","","0" +"NM-01020","104.0199966430664","104.0199966430664","","1980-10-13T00:00:00Z","","0" +"NM-05537","21.920000076293945","21.920000076293945","","1991-05-24T00:00:00Z","","0" +"NM-28259","65.9000015258789","65.9000015258789","","1993-02-25T00:00:00Z","","0" +"NM-02717","33.22999954223633","33.22999954223633","","1945-03-24T00:00:00Z","","0" +"NM-03679","187.1300048828125","187.1300048828125","A","2009-08-11T00:00:00Z","","0" +"NM-01868","6.800000190734863","6.800000190734863","","1993-10-15T00:00:00Z","","0" +"NM-10918","-47.20000076293945","-47.20000076293945","","1911-11-28T00:00:00Z","","0" +"NM-19477","52.91999816894531","52.91999816894531","","1946-05-13T00:00:00Z","","0" +"SA-0179","158","156.85000610351562","","2011-03-31T00:00:00Z","","1.149999976158142" +"NM-00366","150.4600067138672","150.4600067138672","","1979-06-01T00:00:00Z","","0" +"NM-04044","51.54999923706055","51.54999923706055","","1957-11-20T00:00:00Z","","0" +"NM-28259","130.0800018310547","130.0800018310547","","1968-04-15T00:00:00Z","","0" +"NM-06054","11.619999885559082","11.619999885559082","R","1995-03-15T00:00:00Z","","0" +"NM-27415","62.9900016784668","62.9900016784668","","1963-02-21T00:00:00Z","","0" +"NM-15399","88.41999816894531","88.41999816894531","","1956-09-14T00:00:00Z","","0" +"EB-406","227.00999450683594","227.00999450683594","","1979-04-10T00:00:00Z","","0" +"EB-161","440","438.75","","1993-02-28T00:00:00Z","","1.25" +"NM-03104","327.25","327.25","","1985-04-23T00:00:00Z","","0" +"NM-06138","15.140000343322754","15.140000343322754","","2011-09-22T00:00:00Z","","0" +"NM-01035","34.81999969482422","34.81999969482422","","1946-07-30T00:00:00Z","","0" +"NM-13404","-67.98999786376953","-67.98999786376953","","1932-05-10T00:00:00Z","","0" +"EB-288","115","115","","1988-05-31T00:00:00Z","","0" +"NM-01269","83.9800033569336","83.9800033569336","","1950-12-12T00:00:00Z","","0" +"NM-25391","18","18","","1950-09-12T00:00:00Z","","0" +"NM-08539","50.84000015258789","50.84000015258789","","1986-01-22T00:00:00Z","","0" +"NM-01980","136.24000549316406","136.24000549316406","","2002-01-22T00:00:00Z","","0" +"NM-28024","479.69000244140625","479.69000244140625","S","2015-04-25T00:00:00Z","","0" +"SA-0151","127.36000061035156","125.5999984741211","","2010-09-17T00:00:00Z","","1.7599999904632568" +"NM-10063","9.289999961853027","9.289999961853027","","1971-10-25T00:00:00Z","","0" +"NM-09976","49.630001068115234","49.630001068115234","","1971-02-10T00:00:00Z","","0" +"DE-0112","","","D","2016-12-15T00:00:00Z","","0" +"NM-00612","116.98999786376953","116.98999786376953","","2013-12-13T00:00:00Z","","0" +"NM-02427","77.73999786376953","77.73999786376953","","1967-01-05T00:00:00Z","","0" +"SB-0059","124.55000305175781","124.55000305175781","","2007-04-24T00:00:00Z","","0" +"NM-23425","169.5","169.5","","1983-04-04T00:00:00Z","","0" +"NM-00185","13","13","","1963-04-15T00:00:00Z","","0" +"NM-23309","106.93000030517578","106.93000030517578","","1976-02-11T00:00:00Z","","0" +"BC-0199","38.27000045776367","38.27000045776367","","2014-08-12T00:00:00Z","","0" +"NM-20046","29.530000686645508","29.530000686645508","","1944-03-28T00:00:00Z","","0" +"NM-02396","10","10","","1967-08-15T00:00:00Z","","0" +"NM-00876","7.260000228881836","7.260000228881836","","1966-04-07T00:00:00Z","","0" +"NM-28253","34.040000915527344","34.040000915527344","","2015-07-14T00:00:00Z","","0" +"BC-0165","341.55999755859375","341.55999755859375","","2019-04-23T00:00:00Z","","0" +"NM-02647","43.29999923706055","43.29999923706055","","1986-01-21T00:00:00Z","","0" +"NM-17371","39.25","39.25","","1932-01-28T00:00:00Z","","0" +"NM-02892","50.349998474121094","50.349998474121094","","1985-01-08T00:00:00Z","","0" +"NM-01961","111.5999984741211","111.5999984741211","","1973-01-24T00:00:00Z","","0" +"NM-02267","67.12000274658203","67.12000274658203","","2012-02-21T00:00:00Z","","0" +"NM-27673","75.55000305175781","75.55000305175781","","1984-01-19T00:00:00Z","","0" +"NM-28019","485.3699951171875","485.3699951171875","","2015-04-17T00:00:00Z","","0" +"NM-02831","60.189998626708984","60.189998626708984","","1978-03-01T00:00:00Z","","0" +"NM-00202","56.5","56.5","","1966-01-12T00:00:00Z","","0" +"NM-12767","54.15999984741211","54.15999984741211","","1986-03-06T00:00:00Z","","0" +"UC-0091","40.25","40.25","","1981-01-29T00:00:00Z","","0" +"NM-13407","10.800000190734863","10.800000190734863","","1957-08-06T00:00:00Z","","0" +"NM-02396","7.300000190734863","7.300000190734863","","1950-11-15T00:00:00Z","","0" +"NM-12636","24.329999923706055","24.329999923706055","","1976-04-13T00:00:00Z","","0" +"NM-04054","137.47999572753906","137.47999572753906","","1974-01-16T00:00:00Z","","0" +"NM-02286","9.130000114440918","9.130000114440918","","2009-05-14T00:00:00Z","","0" +"NM-03007","85.02999877929688","85.02999877929688","","1980-01-07T00:00:00Z","","0" +"NM-01940","79.20999908447266","79.20999908447266","","1950-03-22T00:00:00Z","","0" +"NM-07121","100.68000030517578","100.68000030517578","","2004-07-09T00:00:00Z","","0" +"EB-479","198","198","P","1988-06-30T00:00:00Z","","0" +"NM-03881","187.97000122070312","187.97000122070312","","1977-01-19T00:00:00Z","","0" +"DE-0112","40","40","","2008-10-20T00:00:00Z","","0" +"NM-28256","147.49000549316406","147.49000549316406","","2006-09-25T00:00:00Z","","0" +"AB-0005","391.239990234375","391.239990234375","","1997-06-12T00:00:00Z","","" +"NM-04692","103.0999984741211","103.0999984741211","","1994-02-08T00:00:00Z","","0" +"NM-28258","149.14999389648438","149.14999389648438","","1986-04-05T00:00:00Z","","0" +"AB-0162","487.1700134277344","487.1700134277344","","2000-06-15T00:00:00Z","","" +"NM-03392","149.08999633789062","149.08999633789062","","1989-06-01T00:00:00Z","","0" +"NM-06353","131.77999877929688","131.77999877929688","","1948-05-19T00:00:00Z","","0" +"NM-07888","659.2100219726562","659.2100219726562","","1975-06-09T00:00:00Z","","0" +"NM-01033","74.81999969482422","74.81999969482422","","2000-07-31T00:00:00Z","","0" +"NM-08764","76.8499984741211","76.8499984741211","","1976-02-12T00:00:00Z","","0" +"NM-13630","-43.7400016784668","-43.7400016784668","","1906-09-20T00:00:00Z","","0" +"NM-07128","158.44000244140625","158.44000244140625","","1976-02-03T00:00:00Z","","0" +"NM-25468","66.9000015258789","66.9000015258789","","1986-05-05T00:00:00Z","","0" +"SV-0039","261","259.4200134277344","","2018-05-27T00:00:00Z","","1.5800000429153442" +"NM-02413","141.89999389648438","141.89999389648438","","1972-02-15T00:00:00Z","","0" +"NM-01336","239.8300018310547","239.8300018310547","","2013-08-22T00:00:00Z","","0" +"SV-0079","300.70001220703125","299.3700256347656","","2016-01-30T00:00:00Z","","1.3300000429153442" +"NM-04583","56.68000030517578","56.68000030517578","","1948-11-17T00:00:00Z","","0" +"NM-22466","54.20000076293945","54.20000076293945","R","1990-08-28T00:00:00Z","","0" +"EB-358","231.1999969482422","229.1999969482422","","2006-05-02T00:00:00Z","","2" +"NM-00338","130.02999877929688","130.02999877929688","","1972-02-07T00:00:00Z","","0" +"NM-06276","221.5","221.5","","1992-09-01T00:00:00Z","","0" +"AB-0039","351.25","351.25","","1999-09-30T00:00:00Z","","" +"NM-01337","65.69999694824219","65.69999694824219","","1980-05-27T00:00:00Z","","0" +"NM-28011","494.5899963378906","494.5899963378906","S","2015-06-03T00:00:00Z","","0" +"NM-17716","-0.25","-0.25","","1943-04-14T00:00:00Z","","0" +"NM-11383","35.290000915527344","35.290000915527344","","1938-05-31T00:00:00Z","","0" +"NM-06596","56.459999084472656","56.459999084472656","","1934-12-30T00:00:00Z","","0" +"NM-13542","-14.859999656677246","-14.859999656677246","","1912-12-31T00:00:00Z","","0" +"SO-0172","6.809999942779541","6.039999961853027","","2021-02-14T00:00:00Z","0001-01-01T08:47:00Z","0.7699999809265137" +"NM-21670","555.9000244140625","555.9000244140625","","2003-04-08T00:00:00Z","","0" +"NM-02164","20.81999969482422","20.81999969482422","","2014-03-11T00:00:00Z","","0" +"NM-04627","108.37000274658203","108.37000274658203","S","1953-05-01T00:00:00Z","","0" +"BC-0201","110.12999725341797","110.12999725341797","","2019-07-22T00:00:00Z","","0" +"EB-305","24.829999923706055","22.829999923706055","","2017-04-05T00:00:00Z","0001-01-01T14:16:00Z","2" +"NM-19955","20.450000762939453","20.450000762939453","","1946-02-06T00:00:00Z","","0" +"NM-20037","28.479999542236328","28.479999542236328","","1943-03-25T00:00:00Z","","0" +"NM-01894","95.25","95.25","","2013-09-11T00:00:00Z","","0" +"NM-09556","155.92999267578125","155.92999267578125","","1961-03-10T00:00:00Z","","0" +"NM-03427","24.18000030517578","24.18000030517578","","2013-02-27T00:00:00Z","","0" +"NM-15273","105.30000305175781","105.30000305175781","","1995-01-18T00:00:00Z","","0" +"NM-03764","58.5","58.5","","1983-01-24T00:00:00Z","","0" +"NM-06596","57.08000183105469","57.08000183105469","","1943-10-10T00:00:00Z","","0" +"NM-23919","52.290000915527344","52.290000915527344","","1973-05-29T00:00:00Z","","0" +"NM-07347","335.489990234375","335.489990234375","","1973-03-06T00:00:00Z","","0" +"NM-08246","22.079999923706055","22.079999923706055","","1938-04-17T00:00:00Z","","0" +"NM-21272","4.300000190734863","4.300000190734863","Z","2011-09-21T00:00:00Z","","0" +"WL-0093","154.85000610351562","153.42001342773438","","2019-06-04T00:00:00Z","0001-01-01T09:31:00Z","1.4299999475479126" +"SO-0245","7.349999904632568","6.380000114440918","","2020-12-15T00:00:00Z","","0.9700000286102295" +"NM-12638","58.369998931884766","58.369998931884766","","1986-05-05T00:00:00Z","","0" +"NM-04638","194.5","194.5","","1977-03-10T00:00:00Z","","0" +"NM-28253","26.059999465942383","26.059999465942383","","1956-10-05T00:00:00Z","","0" +"NM-00185","13.399999618530273","13.399999618530273","","1993-01-27T00:00:00Z","","0" +"NM-23839","50.08000183105469","50.08000183105469","R","1984-07-10T00:00:00Z","","0" +"NM-13145","11.239999771118164","11.239999771118164","","1974-02-15T00:00:00Z","","0" +"AB-0038","344.4100036621094","344.4100036621094","","2003-01-29T00:00:00Z","","" +"NM-28251","68.02999877929688","68.02999877929688","","1995-07-15T00:00:00Z","","0" +"NM-15970","12","12","","1961-07-11T00:00:00Z","","0" +"NM-07225","199.0500030517578","199.0500030517578","","1977-07-01T00:00:00Z","","0" +"NM-05382","59.349998474121094","59.349998474121094","","1932-02-21T00:00:00Z","","0" +"NM-08989","60.84000015258789","60.84000015258789","","1949-05-26T00:00:00Z","","0" +"NM-02513","13.260000228881836","13.260000228881836","","1978-01-09T00:00:00Z","","0" +"SB-0054","119.80999755859375","119.80999755859375","","1971-02-23T00:00:00Z","","0" +"NM-05725","109.54000091552734","109.54000091552734","","1957-09-23T00:00:00Z","","0" +"NM-14895","73.2699966430664","73.2699966430664","","1949-03-12T00:00:00Z","","0" +"NM-28254","31.8700008392334","31.8700008392334","","1956-12-15T00:00:00Z","","0" +"NM-06964","742.0399780273438","742.0399780273438","","2020-09-28T00:00:00Z","0001-01-01T13:45:00Z","0" +"NM-07888","657.0499877929688","657.0499877929688","","1975-04-21T00:00:00Z","","0" +"NM-14868","62.040000915527344","62.040000915527344","","1966-01-10T00:00:00Z","","0" +"NM-20160","55.310001373291016","55.310001373291016","","1949-01-15T00:00:00Z","","0" +"NM-28253","15.039999961853027","15.039999961853027","","2012-02-05T00:00:00Z","","0" +"NM-13875","212.5","212.5","","1976-02-25T00:00:00Z","","0" +"NM-02159","139.22000122070312","139.22000122070312","","1978-01-11T00:00:00Z","","0" +"AR-0007","12.979999542236328","11.579999923706055","","2016-10-18T00:00:00Z","","1.399999976158142" +"NM-09968","44.08000183105469","44.08000183105469","","1956-02-10T00:00:00Z","","0" +"NM-22296","34.79999923706055","34.79999923706055","","1995-06-27T00:00:00Z","","0" +"NM-02568","10.470000267028809","10.470000267028809","","1956-02-09T00:00:00Z","","0" +"NM-19682","273.5799865722656","273.5799865722656","","1982-06-11T00:00:00Z","","0" +"NM-12000","116.52999877929688","116.52999877929688","","1963-11-01T00:00:00Z","","0" +"NM-04799","54.060001373291016","54.060001373291016","R","1965-11-02T00:00:00Z","","0" +"NM-16555","68.5999984741211","68.5999984741211","","1987-02-06T00:00:00Z","","0" +"NM-16411","135.19000244140625","135.19000244140625","","1959-01-16T00:00:00Z","","0" +"SM-0065","8.010000228881836","6.410000324249268","","2006-12-13T00:00:00Z","","1.600000023841858" +"NM-02503","67.62999725341797","67.62999725341797","","2001-01-31T00:00:00Z","","0" +"NM-02772","4.760000228881836","4.760000228881836","","1989-01-01T00:00:00Z","","0" +"NM-12505","23.40999984741211","23.40999984741211","","1950-01-26T00:00:00Z","","0" +"EB-605","69.55000305175781","69.55000305175781","","2008-10-03T00:00:00Z","","0" +"NM-14351","590.030029296875","590.030029296875","","1957-11-01T00:00:00Z","","0" +"NM-02004","5.900000095367432","5.900000095367432","","1949-09-15T00:00:00Z","","0" +"NM-12749","24.489999771118164","24.489999771118164","","1940-01-15T00:00:00Z","","0" +"NM-28257","1.1100000143051147","1.1100000143051147","","1983-01-15T00:00:00Z","","0" +"NM-05309","10.100000381469727","10.100000381469727","","1959-11-15T00:00:00Z","","0" +"NM-00498","57.58000183105469","57.58000183105469","","2001-06-27T00:00:00Z","","0" +"QU-120","36.400001525878906","41.05000305175781","","2015-03-18T00:00:00Z","","-4.650000095367432" +"NM-25539","104","104","","1960-05-01T00:00:00Z","","0" +"NM-01898","45.88999938964844","45.88999938964844","","2002-04-09T00:00:00Z","","0" +"NM-13621","-18.329999923706055","-18.329999923706055","","1910-09-03T00:00:00Z","","0" +"NM-02256","6.699999809265137","6.699999809265137","","1983-01-15T00:00:00Z","","0" +"NM-20031","117.11000061035156","117.11000061035156","","1942-04-08T00:00:00Z","","0" +"NM-12151","-4.809999942779541","-4.809999942779541","","1968-01-04T00:00:00Z","","0" +"NM-06033","83.54000091552734","83.54000091552734","","1962-01-16T00:00:00Z","","0" +"EB-266","11.670000076293945","11.670000076293945","","2009-04-09T00:00:00Z","","0" +"NM-18238","157.42999267578125","157.42999267578125","","1995-02-17T00:00:00Z","","0" +"NM-22923","77.08999633789062","77.08999633789062","","1955-06-13T00:00:00Z","","0" +"NM-03060","166.9199981689453","166.9199981689453","","1990-02-09T00:00:00Z","","0" +"NM-28252","61.970001220703125","61.970001220703125","","1973-10-25T00:00:00Z","","0" +"NM-02169","10.15999984741211","10.15999984741211","","2004-12-28T00:00:00Z","","0" +"NM-13162","10.829999923706055","10.829999923706055","","1963-09-30T00:00:00Z","","0" +"AB-0068","151.60000610351562","151.60000610351562","","1997-08-07T00:00:00Z","","" +"NM-08647","23.81999969482422","23.81999969482422","","1944-07-25T00:00:00Z","","0" +"NM-04061","126.3499984741211","126.3499984741211","","1972-11-30T00:00:00Z","","0" +"NM-18029","102.69000244140625","102.69000244140625","","1974-06-26T00:00:00Z","","0" +"EB-220","127.19999694824219","127.19999694824219","","1980-06-05T00:00:00Z","","0" +"NM-04736","65","65","","1959-01-09T00:00:00Z","","0" +"NM-02864","28.899999618530273","28.899999618530273","","1996-03-12T00:00:00Z","","0" +"NM-26171","87.16999816894531","87.16999816894531","","1981-02-02T00:00:00Z","","0" +"NM-00700","32.400001525878906","32.400001525878906","","1990-11-29T00:00:00Z","","0" +"NM-10696","147.67999267578125","147.67999267578125","P","1963-07-29T00:00:00Z","","0" +"NM-20758","41.06999969482422","41.06999969482422","","1962-12-05T00:00:00Z","","0" +"NM-08854","44.099998474121094","44.099998474121094","","1973-01-15T00:00:00Z","","0" +"NM-17080","41.029998779296875","41.029998779296875","","1949-01-06T00:00:00Z","","0" +"NM-02623","201.9600067138672","201.9600067138672","","1990-03-06T00:00:00Z","","0" +"TB-0234","81.08000183105469","80.08000183105469","","2010-04-28T00:00:00Z","","1" +"NM-02833","28.520000457763672","28.520000457763672","","1963-08-13T00:00:00Z","","0" +"NM-28251","77.7300033569336","77.7300033569336","","2022-01-14T00:00:00Z","","0" +"NM-08246","21.440000534057617","21.440000534057617","","1943-09-29T00:00:00Z","","0" +"NM-01970","127.81999969482422","127.81999969482422","","1979-01-03T00:00:00Z","","0" +"NM-02004","9.399999618530273","9.399999618530273","","1982-07-15T00:00:00Z","","0" +"NM-00370","56.599998474121094","56.599998474121094","","2015-01-06T00:00:00Z","","0" +"NM-05150","61.709999084472656","61.709999084472656","","1935-12-09T00:00:00Z","","0" +"NM-06506","138.30999755859375","138.30999755859375","","1993-01-14T00:00:00Z","","0" +"NM-12215","-58.75","-58.75","","1911-09-29T00:00:00Z","","0" +"NM-01889","31.18000030517578","31.18000030517578","","2015-03-16T00:00:00Z","","0" +"NM-01903","159.8000030517578","159.8000030517578","","1995-01-16T00:00:00Z","","0" +"NM-07081","105.6500015258789","105.6500015258789","","1972-02-24T00:00:00Z","","0" +"NM-27735","42.41999816894531","42.41999816894531","","1952-11-24T00:00:00Z","","0" +"NM-17048","22.100000381469727","22.100000381469727","","1947-09-15T00:00:00Z","","0" +"TV-234","139.6699981689453","139.19000244140625","","2013-09-06T00:00:00Z","","0.47999998927116394" +"NM-17716","5.53000020980835","5.53000020980835","","1949-04-02T00:00:00Z","","0" +"NM-01985","7.199999809265137","7.199999809265137","","1999-05-15T00:00:00Z","","0" +"NM-03220","23.639999389648438","23.639999389648438","","1948-10-25T00:00:00Z","","0" +"NM-02732","128.3800048828125","128.3800048828125","","1977-08-31T00:00:00Z","","0" +"BC-0042","240.3800048828125","240.3800048828125","","2013-06-13T00:00:00Z","","0" +"NM-28015","499.0400085449219","499.0400085449219","S","2015-06-03T00:00:00Z","","0" +"EB-413","207.85000610351562","207.85000610351562","","2014-10-16T00:00:00Z","","0" +"NM-00316","7.46999979019165","7.46999979019165","","1959-01-09T00:00:00Z","","0" +"TB-0023","29.030000686645508","29.030000686645508","","2010-02-19T00:00:00Z","","0" +"NM-08524","11.600000381469727","11.600000381469727","","1952-11-15T00:00:00Z","","0" +"NM-25256","-69.37999725341797","-69.37999725341797","E","1988-11-04T00:00:00Z","","0" +"EB-245","215.67999267578125","215.67999267578125","","2009-04-09T00:00:00Z","","0" +"NM-20758","43.20000076293945","43.20000076293945","","1963-08-05T00:00:00Z","","0" +"NM-15807","172.22999572753906","172.22999572753906","P","1956-08-23T00:00:00Z","","0" +"NM-12659","52.5","52.5","","1961-01-10T00:00:00Z","","0" +"NM-03431","474.5299987792969","474.5299987792969","R","1994-07-06T00:00:00Z","","0" +"NM-00983","304.29998779296875","304.29998779296875","","1976-01-07T00:00:00Z","","0" +"NM-00919","234.89999389648438","234.89999389648438","","1983-01-10T00:00:00Z","","0" +"NM-00366","115.80999755859375","115.80999755859375","","1973-11-01T00:00:00Z","","0" +"NM-02589","43.58000183105469","43.58000183105469","","1992-08-03T00:00:00Z","","0" +"NM-08293","21.489999771118164","21.489999771118164","","1981-01-21T00:00:00Z","","0" +"NM-00448","73.23999786376953","73.23999786376953","","1965-02-12T00:00:00Z","","0" +"NM-10954","143.38999938964844","143.38999938964844","","1969-01-09T00:00:00Z","","0" +"NM-26380","39.65999984741211","39.65999984741211","","1981-02-02T00:00:00Z","","0" +"NM-20120","100.06999969482422","100.06999969482422","P","1954-08-23T00:00:00Z","","0" +"NM-01893","18.389999389648438","18.389999389648438","","1994-05-24T00:00:00Z","","0" +"NM-20389","81.16000366210938","81.16000366210938","","1950-03-31T00:00:00Z","","0" +"NM-21525","318.7799987792969","318.7799987792969","","1991-05-23T00:00:00Z","","0" +"NM-00099","91.68000030517578","91.68000030517578","","1989-01-12T00:00:00Z","","0" +"NM-28257","6.25","6.25","","2019-03-15T00:00:00Z","","0" +"NM-02393","66.5","66.5","","1945-07-17T00:00:00Z","","0" +"NM-28258","159.3000030517578","159.3000030517578","","1970-06-15T00:00:00Z","","0" +"NM-10143","33.63999938964844","33.63999938964844","","1936-09-18T00:00:00Z","","0" +"NM-03483","81.48999786376953","81.48999786376953","","1961-12-14T00:00:00Z","","0" +"NM-02232","103.05000305175781","103.05000305175781","","1963-01-16T00:00:00Z","","0" +"NM-28254","23.5","23.5","","1951-02-25T00:00:00Z","","0" +"NM-21871","459.5899963378906","459.5899963378906","","2007-01-29T00:00:00Z","","0" +"NM-28251","73.2300033569336","73.2300033569336","","2010-11-25T00:00:00Z","","0" +"QU-036","767.5999755859375","766.22998046875","Z","2023-12-07T00:00:00Z","0001-01-01T10:45:00Z","1.3700000047683716" +"NM-01823","338.04998779296875","338.04998779296875","","2012-06-25T00:00:00Z","","0" +"DE-0239","111.22000122070312","111.22000122070312","","2000-08-07T00:00:00Z","","0" +"EB-244","149.39999389648438","149.39999389648438","","2014-03-06T00:00:00Z","","" +"NM-02396","6.900000095367432","6.900000095367432","","1971-05-15T00:00:00Z","","0" +"EB-205","84.5999984741211","84.5999984741211","R","1975-01-16T00:00:00Z","","0" +"NM-17635","2.75","2.75","","1943-05-23T00:00:00Z","","0" +"NM-26690","13.899999618530273","13.899999618530273","","1960-04-19T00:00:00Z","","0" +"NM-13865","4.340000152587891","4.340000152587891","","1958-03-10T00:00:00Z","","0" +"NM-13528","2.700000047683716","2.700000047683716","","1958-05-19T00:00:00Z","","0" +"NM-10143","33.599998474121094","33.599998474121094","","1934-04-17T00:00:00Z","","0" +"NM-28252","38.599998474121094","38.599998474121094","","2003-04-04T00:00:00Z","","0" +"NM-09176","76.80000305175781","76.80000305175781","","1961-07-18T00:00:00Z","","0" +"BC-0051","219.22000122070312","219.22000122070312","","2013-06-13T00:00:00Z","","0" +"NM-17922","66.98999786376953","66.98999786376953","P","1972-01-28T00:00:00Z","","0" +"NM-22966","791.7899780273438","791.7899780273438","","1991-10-04T00:00:00Z","","0" +"NM-02367","14.09000015258789","14.09000015258789","","1961-07-27T00:00:00Z","","0" +"NM-14351","589.47998046875","589.47998046875","","1982-07-01T00:00:00Z","","0" +"NM-07937","349.07000732421875","349.07000732421875","","1955-01-12T00:00:00Z","","0" +"NM-11795","35.7400016784668","35.7400016784668","","1946-05-24T00:00:00Z","","0" +"NM-20061","35.029998779296875","35.029998779296875","","1942-10-20T00:00:00Z","","0" +"NM-03419","24.6299991607666","24.6299991607666","T","1986-02-27T00:00:00Z","","0" +"NM-26739","236.44000244140625","236.44000244140625","","1961-02-07T00:00:00Z","","0" +"NM-17716","1.440000057220459","1.440000057220459","","1945-01-04T00:00:00Z","","0" +"NM-28255","31.799999237060547","31.799999237060547","","1972-11-15T00:00:00Z","","0" +"SB-0348","144.8000030517578","144.8000030517578","","2004-12-16T00:00:00Z","","0" +"EB-244","93.16000366210938","93.16000366210938","","2002-07-21T00:00:00Z","","0" +"NM-05307","11.34000015258789","11.34000015258789","","1975-01-08T00:00:00Z","","0" +"NM-28257","8.34000015258789","8.34000015258789","","1972-12-25T00:00:00Z","","0" +"NM-11696","169.3699951171875","169.3699951171875","","1994-03-16T00:00:00Z","","0" +"NM-12496","12.25","12.25","","1968-05-09T00:00:00Z","","0" +"NM-10915","46.720001220703125","46.720001220703125","","1958-01-10T00:00:00Z","","0" +"BC-0148","335.9800109863281","335.9800109863281","","2017-01-27T00:00:00Z","","0" +"NM-09081","15.699999809265137","15.699999809265137","","1933-10-01T00:00:00Z","","0" +"NM-23876","134.8800048828125","134.8800048828125","","1973-03-14T00:00:00Z","","0" +"NM-00705","122.7699966430664","122.7699966430664","","2011-03-29T00:00:00Z","","0" +"SA-0002","241.8300018310547","240.8300018310547","V","2010-02-10T00:00:00Z","","1" +"NM-14042","-3.309999942779541","-3.309999942779541","","1907-01-04T00:00:00Z","","0" +"NM-11943","-0.8299999833106995","-0.8299999833106995","","1943-04-28T00:00:00Z","","0" +"NM-00263","44.68000030517578","44.68000030517578","","1965-11-04T00:00:00Z","","0" +"NM-02260","53.220001220703125","53.220001220703125","","1992-01-23T00:00:00Z","","0" +"DE-0185","49.04999923706055","49.04999923706055","","2005-12-01T00:00:00Z","","0" +"NM-05148","47.869998931884766","47.869998931884766","","1955-03-18T00:00:00Z","","0" +"NM-14396","6.46999979019165","6.46999979019165","","1975-05-28T00:00:00Z","","0" +"NM-02142","138.0800018310547","138.0800018310547","","1997-02-19T00:00:00Z","","0" +"DE-0126","44.29999923706055","44.29999923706055","","2016-07-27T00:00:00Z","","0" +"NM-02772","80.37999725341797","80.37999725341797","","1956-05-01T00:00:00Z","","0" +"DE-0090","91.0999984741211","91.0999984741211","","1999-02-08T00:00:00Z","","0" +"NM-25845","177.60000610351562","177.60000610351562","","1974-02-07T00:00:00Z","","0" +"NM-01565","-258.7699890136719","-258.7699890136719","","1989-03-02T00:00:00Z","","0" +"NM-05628","102.04000091552734","102.04000091552734","","1958-01-18T00:00:00Z","","0" +"NM-28255","21.65999984741211","21.65999984741211","","1980-01-15T00:00:00Z","","0" +"NM-27544","64.5999984741211","64.5999984741211","","1960-01-06T00:00:00Z","","0" +"NM-14351","593.1799926757812","593.1799926757812","","1964-03-01T00:00:00Z","","0" +"NM-12564","29","29","","1959-03-09T00:00:00Z","","0" +"NM-01986","7.5","7.5","","1946-01-01T00:00:00Z","","0" +"NM-13425","400.0400085449219","400.0400085449219","","1960-05-16T00:00:00Z","","0" +"NM-28010","498.739990234375","498.739990234375","S","2015-05-17T00:00:00Z","","0" +"NM-17628","46.630001068115234","46.630001068115234","","1936-11-22T00:00:00Z","","0" +"NM-02989","85.36000061035156","85.36000061035156","","2005-02-14T00:00:00Z","","0" +"NM-14762","48.939998626708984","48.939998626708984","","1994-02-02T00:00:00Z","","0" +"NM-03349","24.670000076293945","24.670000076293945","","2015-11-02T00:00:00Z","","0" +"NM-02831","38.79999923706055","38.79999923706055","","1993-05-25T00:00:00Z","","0" +"BC-0052","263.3399963378906","263.3399963378906","","2014-09-06T00:00:00Z","","0" +"TB-0020","22.100000381469727","20.700000762939453","","2009-06-30T00:00:00Z","","1.399999976158142" +"NM-16774","25.670000076293945","25.670000076293945","","1933-07-08T00:00:00Z","","0" +"NM-12184","-35.650001525878906","-35.650001525878906","","1912-05-28T00:00:00Z","","0" +"AB-0107","422.7699890136719","422.7699890136719","","2015-01-07T00:00:00Z","","0" +"DE-0108","39.2400016784668","39.2400016784668","","2010-09-27T00:00:00Z","","0" +"NM-17271","78.43000030517578","78.43000030517578","","1967-01-05T00:00:00Z","","0" +"NM-10408","83.33999633789062","83.33999633789062","","1962-01-23T00:00:00Z","","0" +"NM-08246","22.670000076293945","22.670000076293945","","1939-10-16T00:00:00Z","","0" +"NM-21557","7.099999904632568","7.099999904632568","Z","2009-02-24T00:00:00Z","","0" +"EB-381","55","55","","1973-09-24T00:00:00Z","","0" +"NM-09289","90.36000061035156","90.36000061035156","","1957-03-06T00:00:00Z","","0" +"SA-0134","109.37999725341797","109.00999450683594","","2010-05-05T00:00:00Z","","0.3700000047683716" +"NM-01948","5.900000095367432","5.900000095367432","","1960-05-15T00:00:00Z","","0" +"DE-0078","86.19000244140625","86.19000244140625","","2007-06-18T00:00:00Z","","0" +"NM-00615","80.11000061035156","80.11000061035156","","1986-01-17T00:00:00Z","","0" +"NM-13864","44.040000915527344","44.040000915527344","","1956-05-16T00:00:00Z","","0" +"NM-20149","225.77000427246094","225.77000427246094","","1982-01-21T00:00:00Z","","0" +"NM-28256","83.97000122070312","83.97000122070312","","2002-02-15T00:00:00Z","","0" +"NM-09289","90.02999877929688","90.02999877929688","","1952-05-24T00:00:00Z","","0" +"NM-00643","109.36000061035156","109.36000061035156","","1983-02-01T00:00:00Z","","0" +"NM-21500","211.1999969482422","211.1999969482422","","1998-03-27T00:00:00Z","","0" +"NM-01841","260.760009765625","260.760009765625","","1982-09-27T00:00:00Z","","0" +"NM-04249","16.719999313354492","16.719999313354492","","1940-11-15T00:00:00Z","","0" +"TB-0233","81.12999725341797","79.5999984741211","","2010-04-28T00:00:00Z","","1.5299999713897705" +"NM-12718","36.869998931884766","36.869998931884766","","1939-07-22T00:00:00Z","","0" +"NM-00013","360.75","360.75","","1968-03-07T00:00:00Z","","0" +"RA-068","29.329999923706055","27.68000030517578","AA","2023-09-12T00:00:00Z","0001-01-01T13:00:00Z","1.649999976158142" +"NM-24935","15.0600004196167","15.0600004196167","","1981-07-27T00:00:00Z","","0" +"NM-13051","49.869998931884766","49.869998931884766","","1958-01-09T00:00:00Z","","0" +"NM-20761","6.539999961853027","6.539999961853027","","1941-02-14T00:00:00Z","","0" +"NM-00554","68.26000213623047","68.26000213623047","","1995-01-06T00:00:00Z","","0" +"SB-0442","170.6999969482422","170.6999969482422","","2012-01-15T00:00:00Z","","0" +"AB-0213","157.75999450683594","157.75999450683594","","2005-10-18T00:00:00Z","","" +"NM-09168","150","150","","1954-09-29T00:00:00Z","","0" +"BC-0344","149.42999267578125","149.42999267578125","","2020-04-26T00:00:00Z","","0" +"NM-20760","70.11000061035156","70.11000061035156","","1986-04-07T00:00:00Z","","0" +"NM-10566","58.66999816894531","58.66999816894531","","1961-01-18T00:00:00Z","","0" +"NM-28256","244.38999938964844","244.38999938964844","","2018-06-25T00:00:00Z","","0" +"NM-01565","-248.16000366210938","-248.16000366210938","","1988-05-26T00:00:00Z","","0" +"NM-01033","79.5199966430664","79.5199966430664","","2006-08-16T00:00:00Z","","0" +"NM-12341","1.3700000047683716","1.3700000047683716","","1938-05-27T00:00:00Z","","0" +"NM-15323","93.18000030517578","93.18000030517578","","1989-12-19T00:00:00Z","","0" +"DE-0190","53.279998779296875","53.279998779296875","","2008-06-02T00:00:00Z","","0" +"NM-05610","155.22999572753906","155.22999572753906","","1962-01-17T00:00:00Z","","0" +"NM-01868","9.100000381469727","9.100000381469727","","1961-10-15T00:00:00Z","","0" +"NM-00744","12","12","","1971-10-01T00:00:00Z","","0" +"SO-0223","12.319999694824219","11.529999732971191","","2020-08-14T00:00:00Z","0001-01-01T10:39:00Z","0.7900000214576721" +"NM-11275","42.66999816894531","42.66999816894531","","1945-01-10T00:00:00Z","","0" +"NM-04632","11.899999618530273","11.899999618530273","","1966-03-15T00:00:00Z","","0" +"NM-07092","43.060001373291016","43.060001373291016","","2005-12-12T00:00:00Z","","0" +"NM-01925","383.7099914550781","383.7099914550781","","2007-03-13T00:00:00Z","","0" +"NM-07511","57.650001525878906","57.650001525878906","","1955-01-28T00:00:00Z","","0" +"NM-00243","77.6500015258789","77.6500015258789","","1981-03-17T00:00:00Z","","0" +"WL-0018","30.6200008392334","28.880001068115234","","2020-12-09T00:00:00Z","0001-01-01T10:34:00Z","1.7400000095367432" +"NM-02831","39.060001373291016","39.060001373291016","","1961-03-01T00:00:00Z","","0" +"NM-21859","242","242","","2008-01-30T00:00:00Z","","0" +"NM-06595","75.12999725341797","75.12999725341797","","1950-03-16T00:00:00Z","","0" +"NM-02282","399.9800109863281","399.9800109863281","","1967-04-01T00:00:00Z","","0" +"EB-607","200.24000549316406","200.24000549316406","","2013-10-21T00:00:00Z","","0" +"TB-0037","48.7400016784668","45.7400016784668","","2014-02-12T00:00:00Z","","3" +"SB-0313","26.790000915527344","26.790000915527344","","1950-01-03T00:00:00Z","","0" +"NM-11358","7.440000057220459","7.440000057220459","","1970-11-23T00:00:00Z","","0" +"NM-14059","-14.859999656677246","-14.859999656677246","","1913-12-05T00:00:00Z","","0" +"AB-0010","12.40999984741211","12.40999984741211","","2007-01-30T00:00:00Z","","" +"NM-03307","65.91000366210938","65.91000366210938","","1952-05-27T00:00:00Z","","0" +"NM-05920","58.22999954223633","58.22999954223633","","1945-03-23T00:00:00Z","","0" +"NM-14699","34.13999938964844","34.13999938964844","","1978-10-18T00:00:00Z","","0" +"SB-0299","133.16000366210938","133.16000366210938","","1999-09-30T00:00:00Z","","0" +"AB-0183","327.4800109863281","327.4800109863281","","2016-05-25T00:00:00Z","","0" +"NM-07225","198.38999938964844","198.38999938964844","","1978-08-01T00:00:00Z","","0" +"NM-03467","429.94000244140625","429.94000244140625","","1988-12-28T00:00:00Z","","0" +"NM-02332","137.3699951171875","137.3699951171875","P","1961-03-14T00:00:00Z","","0" +"NM-05309","8.399999618530273","8.399999618530273","","1984-08-15T00:00:00Z","","0" +"NM-01765","44.900001525878906","44.900001525878906","","1953-03-20T00:00:00Z","","0" +"NM-13164","-37.959999084472656","-37.959999084472656","","1911-11-17T00:00:00Z","","0" +"NM-28253","20.139999389648438","20.139999389648438","","1992-04-05T00:00:00Z","","0" +"NM-12212","75.9000015258789","75.9000015258789","","1954-01-25T00:00:00Z","","0" +"NM-09670","","","O","1991-01-25T00:00:00Z","","0" +"NM-05422","178.8300018310547","178.8300018310547","","1981-03-19T00:00:00Z","","0" +"NM-17989","18.68000030517578","18.68000030517578","","1936-09-21T00:00:00Z","","0" +"NM-19432","252.83999633789062","252.83999633789062","T","1983-07-25T00:00:00Z","","0" +"NM-02442","69.61000061035156","69.61000061035156","","2002-04-03T00:00:00Z","","0" +"TC-432","88.76000213623047","94.81000518798828","","2017-11-08T00:00:00Z","","-6.050000190734863" +"NM-20776","21.84000015258789","21.84000015258789","","1949-05-02T00:00:00Z","","0" +"DE-0062","22.360000610351562","20.280000686645508","","1998-01-27T00:00:00Z","","2.0799999237060547" +"NM-02797","5.849999904632568","5.849999904632568","","1971-09-29T00:00:00Z","","0" +"NM-17324","40.279998779296875","40.279998779296875","","1947-01-18T00:00:00Z","","0" +"NM-17716","5.559999942779541","5.559999942779541","","1947-09-23T00:00:00Z","","0" +"NM-03651","32.7599983215332","32.7599983215332","","2007-05-07T00:00:00Z","","0" +"NM-13793","-4.46999979019165","-4.46999979019165","","1909-12-01T00:00:00Z","","0" +"NM-03468","145.97999572753906","145.97999572753906","Z","1990-12-05T00:00:00Z","","0" +"NM-21231","61.959999084472656","61.959999084472656","","1995-03-10T00:00:00Z","","0" +"NM-10730","33.45000076293945","33.45000076293945","","1945-01-09T00:00:00Z","","0" +"NM-11323","4.019999980926514","4.019999980926514","","1979-12-01T00:00:00Z","","0" +"NM-17716","3.859999895095825","3.859999895095825","","1934-04-01T00:00:00Z","","0" +"NM-02165","7.449999809265137","7.449999809265137","","2011-03-24T00:00:00Z","","0" +"NM-02232","111.77999877929688","111.77999877929688","","1970-01-15T00:00:00Z","","0" +"NM-02511","106.51000213623047","106.51000213623047","","1977-01-26T00:00:00Z","","0" +"EB-258","95.66000366210938","95.66000366210938","R","1974-03-02T00:00:00Z","","0" +"AB-0162","492.0199890136719","492.0199890136719","","2007-08-01T00:00:00Z","","" +"NM-16497","54.66999816894531","54.66999816894531","","1962-01-18T00:00:00Z","","0" +"AB-0143","308","308","","1983-09-01T00:00:00Z","","0" +"NM-02284","8.770000457763672","8.770000457763672","","1998-03-24T00:00:00Z","","0" +"NM-02761","70.91000366210938","70.91000366210938","","1966-02-16T00:00:00Z","","0" +"NM-20485","45.97999954223633","45.97999954223633","","1986-10-22T00:00:00Z","","0" +"NM-03014","76.26000213623047","76.26000213623047","","1967-01-04T00:00:00Z","","0" +"NM-22431","17.649999618530273","17.649999618530273","","2011-11-18T00:00:00Z","","0" +"NM-17716","8.579999923706055","8.579999923706055","","1940-10-09T00:00:00Z","","0" +"NM-27474","67.80000305175781","67.80000305175781","","1950-09-07T00:00:00Z","","0" +"NM-28258","116.7699966430664","116.7699966430664","","2007-03-05T00:00:00Z","","0" +"NM-03337","11.569999694824219","11.569999694824219","","1993-03-12T00:00:00Z","","0" +"NM-10294","25.440000534057617","25.440000534057617","","1948-09-17T00:00:00Z","","0" +"NM-02496","106.30000305175781","106.30000305175781","","1969-01-10T00:00:00Z","","0" +"NM-02285","5.730000019073486","5.730000019073486","","2001-10-02T00:00:00Z","","0" +"NM-02167","26.690000534057617","26.690000534057617","","2016-04-19T00:00:00Z","","0" +"UC-0096","58.939998626708984","58.939998626708984","","1981-01-28T00:00:00Z","","0" +"NM-17716","3.2699999809265137","3.2699999809265137","","1949-06-25T00:00:00Z","","0" +"NM-02790","95.12000274658203","95.12000274658203","","1955-01-20T00:00:00Z","","0" +"NM-00094","1.8799999952316284","1.8799999952316284","","1960-04-05T00:00:00Z","","0" +"NM-01295","95.97000122070312","95.97000122070312","","1994-01-27T00:00:00Z","","0" +"NM-00931","196.5800018310547","196.5800018310547","","2014-04-03T00:00:00Z","","0" +"NM-11780","37.45000076293945","37.45000076293945","","1937-11-29T00:00:00Z","","0" +"OG-0061","279.239990234375","278.8900146484375","","2023-01-24T00:00:00Z","0001-01-01T14:05:00Z","0.3499999940395355" +"SB-0442","168.1999969482422","168.1999969482422","","2007-12-15T00:00:00Z","","0" +"NM-28250","99.72000122070312","99.72000122070312","","1968-12-05T00:00:00Z","","0" +"NM-00909","48.0099983215332","48.0099983215332","","1986-10-22T00:00:00Z","","0" +"NM-13217","9.520000457763672","9.520000457763672","","1957-03-11T00:00:00Z","","0" +"WL-0107","176.52999877929688","176.52999877929688","","2019-12-13T00:00:00Z","","0" +"NM-12000","124.37999725341797","124.37999725341797","","1979-02-08T00:00:00Z","","0" +"NM-00367","123.63999938964844","123.63999938964844","","1990-05-15T00:00:00Z","","0" +"EB-276","179.3699951171875","179.3699951171875","","1970-09-30T00:00:00Z","","0" +"NM-08048","367.2699890136719","367.2699890136719","","1956-03-06T00:00:00Z","","0" +"NM-28121","140.16000366210938","140.16000366210938","","1959-12-09T00:00:00Z","","0" +"NM-18675","109.58000183105469","109.58000183105469","","1966-11-28T00:00:00Z","","0" +"NM-00047","82.0999984741211","82.0999984741211","","2018-01-25T00:00:00Z","","0" +"NM-02702","4.079999923706055","4.079999923706055","","1982-12-01T00:00:00Z","","0" +"DE-0232","108.27999877929688","108.27999877929688","","2009-08-27T00:00:00Z","","0" +"NM-20122","64.95999908447266","64.95999908447266","","1959-01-21T00:00:00Z","","0" +"NM-08644","64.22000122070312","64.22000122070312","P","1937-08-21T00:00:00Z","","0" +"NM-28257","-6.929999828338623","-6.929999828338623","","2011-01-05T00:00:00Z","","0" +"NM-06268","12.399999618530273","12.399999618530273","","1982-06-15T00:00:00Z","","0" +"NM-01891","77.38999938964844","77.38999938964844","","2010-11-04T00:00:00Z","","0" +"NM-06268","12.5","12.5","","1969-08-15T00:00:00Z","","0" +"NM-05621","65.44000244140625","65.44000244140625","","1933-12-02T00:00:00Z","","0" +"AB-0054","45.959999084472656","45.959999084472656","","2008-03-04T00:00:00Z","","" +"NM-18612","308.4200134277344","308.4200134277344","","1982-01-15T00:00:00Z","","0" +"EB-490","321.8500061035156","317.5500183105469","Z","2008-06-30T00:00:00Z","","4.300000190734863" +"NM-25026","453.5","453.5","","1983-01-27T00:00:00Z","","0" +"NM-05775","40.150001525878906","40.150001525878906","","1936-12-06T00:00:00Z","","0" +"EB-244","81.56999969482422","81.56999969482422","","1987-04-15T00:00:00Z","","0" +"NM-20986","153.1999969482422","153.1999969482422","","1973-10-05T00:00:00Z","","0" +"NM-06799","58.540000915527344","58.540000915527344","","1965-12-01T00:00:00Z","","0" +"AB-0035","359.54998779296875","359.54998779296875","S","1984-11-26T00:00:00Z","","" +"DE-0373","73.30000305175781","70.56000518798828","","2014-05-14T00:00:00Z","","2.740000009536743" +"NM-04423","82.0199966430664","82.0199966430664","","1964-01-08T00:00:00Z","","0" +"NM-03256","20.3700008392334","20.3700008392334","","1945-01-24T00:00:00Z","","0" +"EB-244","88.18000030517578","88.18000030517578","","1999-02-23T00:00:00Z","","0" +"NM-03399","10.350000381469727","10.350000381469727","","1992-10-26T00:00:00Z","","0" +"DE-0196","52.34000015258789","52.34000015258789","","2012-06-26T00:00:00Z","","0" +"NM-10630","45.650001525878906","45.650001525878906","","1981-03-25T00:00:00Z","","0" +"NM-04249","4.760000228881836","4.760000228881836","","1940-07-05T00:00:00Z","","0" +"NM-05590","67.02999877929688","67.02999877929688","","1936-12-06T00:00:00Z","","0" +"NM-02702","55.91999816894531","55.91999816894531","","1982-09-01T00:00:00Z","","0" +"NM-12317","47.45000076293945","47.45000076293945","","1961-02-07T00:00:00Z","","0" +"NM-21213","208.58999633789062","208.58999633789062","","1972-03-03T00:00:00Z","","0" +"NM-11618","60.61000061035156","60.61000061035156","P","1966-02-17T00:00:00Z","","0" +"NM-03029","56.11000061035156","56.11000061035156","","1957-03-12T00:00:00Z","","0" +"SA-0134","116.33000183105469","115.95999908447266","","2022-02-15T00:00:00Z","0001-01-01T11:22:00Z","0.3700000047683716" +"SB-0299","138.17999267578125","138.17999267578125","","2009-11-15T00:00:00Z","","0" +"NM-20866","32.54999923706055","32.54999923706055","","1974-01-05T00:00:00Z","","0" +"NM-11367","103.68000030517578","103.68000030517578","","1953-08-27T00:00:00Z","","0" +"NM-28252","54.939998626708984","54.939998626708984","","1964-04-05T00:00:00Z","","0" +"NM-06463","107.77999877929688","107.77999877929688","","1954-03-10T00:00:00Z","","0" +"NM-01923","10.920000076293945","10.920000076293945","","1997-01-14T00:00:00Z","","0" +"NM-16541","8.180000305175781","8.180000305175781","","1942-01-30T00:00:00Z","","0" +"NM-28255","26.799999237060547","26.799999237060547","","1974-11-25T00:00:00Z","","0" +"NM-00603","53.900001525878906","53.900001525878906","","1955-01-10T00:00:00Z","","0" +"WL-0086","37.375","35.6150016784668","","1992-02-06T00:00:00Z","","1.7599999904632568" +"NM-01875","155.3800048828125","155.3800048828125","","1964-01-08T00:00:00Z","","0" +"NM-02927","98.16000366210938","98.16000366210938","","1980-01-07T00:00:00Z","","0" +"NM-00812","39.9900016784668","39.9900016784668","","1977-01-28T00:00:00Z","","0" +"SB-0442","165.3000030517578","165.3000030517578","","2009-02-15T00:00:00Z","","0" +"NM-02384","10.300000190734863","10.300000190734863","","1997-05-15T00:00:00Z","","0" +"NM-02250","55.18000030517578","55.18000030517578","","1963-01-15T00:00:00Z","","0" +"NM-17471","20.770000457763672","20.770000457763672","","1936-12-19T00:00:00Z","","0" +"NM-14048","1.600000023841858","1.600000023841858","","1960-11-05T00:00:00Z","","0" +"NM-00575","66.70999908447266","66.70999908447266","","1985-08-26T00:00:00Z","","0" +"AB-0107","415.8900146484375","415.8900146484375","","1999-04-19T00:00:00Z","","" +"NM-00853","66.20999908447266","66.20999908447266","","1990-09-11T00:00:00Z","","0" +"NM-17628","90.51000213623047","90.51000213623047","","1992-01-06T00:00:00Z","","0" +"EB-012","102.04000091552734","102.04000091552734","","1958-02-17T00:00:00Z","","0" +"PC-006","26.31999969482422","29.200000762939453","","1998-04-04T00:00:00Z","","0" +"NM-13129","10.5","10.5","","1900-01-01T00:00:00Z","","0" +"NM-10294","39.529998779296875","39.529998779296875","","1941-04-04T00:00:00Z","","0" +"NM-17968","41.04999923706055","41.04999923706055","","1987-01-14T00:00:00Z","","0" +"NM-28257","75.4000015258789","75.4000015258789","","1960-10-25T00:00:00Z","","0" +"EB-288","122.43000030517578","122.43000030517578","","1978-05-05T00:00:00Z","","0" +"UC-0101","109.30000305175781","109.30000305175781","","2013-01-06T00:00:00Z","","0" +"NM-28255","40.66999816894531","40.66999816894531","","1965-11-25T00:00:00Z","","0" +"BC-0009","144.80999755859375","144.80999755859375","","2017-06-13T00:00:00Z","","0" +"NM-09553","69.80999755859375","69.80999755859375","","1965-10-06T00:00:00Z","","0" +"NM-04072","31.079999923706055","31.079999923706055","","1954-01-20T00:00:00Z","","0" +"NM-14111","-24.100000381469727","-24.100000381469727","","1912-01-17T00:00:00Z","","0" +"NM-08896","44.66999816894531","44.66999816894531","","1981-03-11T00:00:00Z","","0" +"NM-12135","-9.949999809265137","-9.949999809265137","","1908-03-17T00:00:00Z","","0" +"NM-27275","34.09000015258789","34.09000015258789","","1987-10-20T00:00:00Z","","0" +"TB-0076","399.5799865722656","398.5799865722656","","2009-10-13T00:00:00Z","","1" +"WL-0089","38.125","35.57500076293945","","1992-01-15T00:00:00Z","","2.549999952316284" +"NM-21678","344.05999755859375","344.05999755859375","","2012-02-03T00:00:00Z","","0" +"NM-20900","170.63999938964844","170.63999938964844","","1986-11-06T00:00:00Z","","0" +"NM-14004","-81.8499984741211","-81.8499984741211","","1910-03-16T00:00:00Z","","0" +"NM-00253","22.270000457763672","22.270000457763672","","1981-11-01T00:00:00Z","","0" +"NM-08769","42.34000015258789","42.34000015258789","","1961-01-20T00:00:00Z","","0" +"NM-27882","87.27999877929688","87.27999877929688","","1979-07-24T00:00:00Z","","0" +"AB-0101","717.010009765625","717.010009765625","","2010-05-26T00:00:00Z","","" +"BC-0278","63.75","63.75","","2017-02-06T00:00:00Z","","0" +"NM-13868","-14.279999732971191","-14.279999732971191","","1908-03-26T00:00:00Z","","0" +"NM-00803","34.59000015258789","34.59000015258789","","2013-05-29T00:00:00Z","","0" +"NM-00208","52.540000915527344","52.540000915527344","","1963-09-03T00:00:00Z","","0" +"NM-24271","59","59","","1980-09-05T00:00:00Z","","0" +"NM-03441","26.8700008392334","26.8700008392334","","2001-01-23T00:00:00Z","","0" +"NM-03032","36.38999938964844","36.38999938964844","","1952-09-23T00:00:00Z","","0" +"NM-03650","32.939998626708984","32.939998626708984","","2003-11-19T00:00:00Z","","0" +"NM-21274","4.139999866485596","4.139999866485596","Z","2006-05-02T00:00:00Z","","0" +"NM-02189","145.64999389648438","145.64999389648438","","1992-01-30T00:00:00Z","","0" +"NM-13520","5.71999979019165","5.71999979019165","","1959-06-07T00:00:00Z","","0" +"NM-12353","32.83000183105469","32.83000183105469","","1957-06-07T00:00:00Z","","0" +"NM-00644","12.770000457763672","12.770000457763672","","1989-01-24T00:00:00Z","","0" +"NM-21290","","","D","2003-03-10T00:00:00Z","","0" +"NM-00573","38.22999954223633","38.22999954223633","","1989-02-13T00:00:00Z","","0" +"NM-21109","655.0999755859375","655.0999755859375","Z","1994-09-22T00:00:00Z","","0" +"NM-28259","97","97","","1986-10-15T00:00:00Z","","0" +"NM-11017","57.369998931884766","57.369998931884766","P","1961-01-20T00:00:00Z","","0" +"NM-07141","86.19999694824219","86.19999694824219","","2003-10-08T00:00:00Z","","0" +"NM-12297","5.860000133514404","5.860000133514404","","1949-11-04T00:00:00Z","","0" +"NM-05516","10.100000381469727","10.100000381469727","","1962-04-15T00:00:00Z","","0" +"NM-02043","4.5","4.5","","1989-07-15T00:00:00Z","","0" +"NM-08036","23.3700008392334","23.3700008392334","","1978-01-18T00:00:00Z","","0" +"NM-10571","18.479999542236328","18.479999542236328","P","1938-10-03T00:00:00Z","","0" +"NM-02412","34.720001220703125","34.720001220703125","","1947-07-28T00:00:00Z","","0" +"NM-00185","14.5","14.5","","1985-03-15T00:00:00Z","","0" +"NM-16987","47.869998931884766","47.869998931884766","","1982-03-24T00:00:00Z","","0" +"NM-21556","7.309999942779541","7.309999942779541","Z","2006-02-22T00:00:00Z","","0" +"NM-17768","146.10000610351562","146.10000610351562","","1987-03-24T00:00:00Z","","0" +"NM-01891","75.69999694824219","75.69999694824219","","2001-07-26T00:00:00Z","","0" +"NM-00185","12.699999809265137","12.699999809265137","","1990-04-15T00:00:00Z","","0" +"NM-11909","75.38999938964844","75.38999938964844","","1949-05-12T00:00:00Z","","0" +"BC-0265","31.969999313354492","31.969999313354492","","2017-06-28T00:00:00Z","","0" +"NM-28250","107.66000366210938","107.66000366210938","","1971-07-25T00:00:00Z","","0" +"NM-07728","150.75","150.75","","1983-01-31T00:00:00Z","","0" +"NM-28253","23.8700008392334","23.8700008392334","","1971-02-15T00:00:00Z","","0" +"NM-20451","194.19000244140625","194.19000244140625","","1999-05-11T00:00:00Z","","0" +"NM-07295","117.72000122070312","117.72000122070312","","1964-02-24T00:00:00Z","","0" +"NM-13872","-7.929999828338623","-7.929999828338623","","1906-03-05T00:00:00Z","","0" +"NM-19472","88.68000030517578","88.68000030517578","","1986-10-08T00:00:00Z","","0" +"NM-02702","57.72999954223633","57.72999954223633","","1998-06-10T00:00:00Z","","0" +"NM-04856","28.030000686645508","28.030000686645508","","1952-01-30T00:00:00Z","","0" +"DE-0109","34.33000183105469","34.33000183105469","","2006-03-06T00:00:00Z","","0" +"MG-003","111.29000091552734","109.7300033569336","AA","2024-06-05T00:00:00Z","0001-01-01T10:30:00Z","1.559999942779541" +"UC-0033","96.48999786376953","96.48999786376953","","1993-07-22T00:00:00Z","","0" +"NM-02706","26.299999237060547","26.299999237060547","","1994-01-27T00:00:00Z","","0" +"NM-00686","60.529998779296875","60.529998779296875","","2012-12-21T00:00:00Z","","0" +"NM-12056","78.48999786376953","78.48999786376953","","1944-09-17T00:00:00Z","","0" +"NM-03944","12.600000381469727","12.600000381469727","","1973-03-06T00:00:00Z","","0" +"NM-11279","71.48999786376953","71.48999786376953","","1958-09-11T00:00:00Z","","0" +"SO-0251","11.720000267028809","10.15000057220459","","2020-06-10T00:00:00Z","0001-01-01T10:25:00Z","1.5700000524520874" +"NM-10294","43","43","","1945-03-24T00:00:00Z","","0" +"NM-28020","466.4800109863281","466.4800109863281","S","2015-04-18T00:00:00Z","","0" +"NM-23789","127.37000274658203","127.37000274658203","","1978-03-30T00:00:00Z","","0" +"NM-03113","361.739990234375","361.739990234375","","1977-01-05T00:00:00Z","","0" +"NM-03903","331.0899963378906","331.0899963378906","","1976-06-15T00:00:00Z","","0" +"NM-03029","74.26000213623047","74.26000213623047","","1990-01-05T00:00:00Z","","0" +"NM-21480","8.649999618530273","8.649999618530273","","2016-03-18T00:00:00Z","","0" +"NM-11670","29.350000381469727","29.350000381469727","","1961-01-16T00:00:00Z","","0" +"NM-28250","85.02999877929688","85.02999877929688","","2007-04-05T00:00:00Z","","0" +"NM-28253","21.139999389648438","21.139999389648438","","2020-03-25T00:00:00Z","","0" +"NM-03376","23.8700008392334","23.8700008392334","","1991-08-29T00:00:00Z","","0" +"NM-03090","55.54999923706055","55.54999923706055","","1965-02-17T00:00:00Z","","0" +"NM-00020","88.83000183105469","88.83000183105469","","1976-01-08T00:00:00Z","","0" +"TV-181","57.04999923706055","62.89999771118164","","2011-10-12T00:00:00Z","","-5.849999904632568" +"NM-03401","8.210000038146973","8.210000038146973","","1989-10-31T00:00:00Z","","0" +"AB-0102","577.9500122070312","577.9500122070312","","2006-05-15T00:00:00Z","","" +"UC-0042","174.47000122070312","174.47000122070312","","1980-01-31T00:00:00Z","","0" +"NM-00369","","","O","2010-12-16T00:00:00Z","","0" +"NM-02650","40.65999984741211","40.65999984741211","","1966-09-26T00:00:00Z","","0" +"NM-10240","237.67999267578125","237.67999267578125","","1981-03-13T00:00:00Z","","0" +"NM-16036","124.80000305175781","124.80000305175781","","1975-03-14T00:00:00Z","","0" +"NM-07152","92.6500015258789","92.6500015258789","","2009-06-17T00:00:00Z","","0" +"NM-12317","49.52000045776367","49.52000045776367","","1967-01-05T00:00:00Z","","0" +"NM-02169","7.449999809265137","7.449999809265137","","2004-08-26T00:00:00Z","","0" +"NM-13092","8.119999885559082","8.119999885559082","","1970-07-15T00:00:00Z","","0" +"NM-24992","594.3300170898438","594.3300170898438","","2001-04-25T00:00:00Z","","0" +"NM-20335","73.2300033569336","73.2300033569336","","1948-03-23T00:00:00Z","","0" +"NM-08990","82.36000061035156","82.36000061035156","S","1948-05-27T00:00:00Z","","0" +"NM-09042","66.0999984741211","66.0999984741211","","1952-01-08T00:00:00Z","","0" +"NM-20887","90.7300033569336","90.7300033569336","","1973-10-05T00:00:00Z","","0" +"BC-0392","","267.8999938964844","","2021-11-10T00:00:00Z","","2" +"NM-12316","45.529998779296875","45.529998779296875","","1971-03-03T00:00:00Z","","0" +"NM-11475","81.69000244140625","81.69000244140625","","1963-09-05T00:00:00Z","","0" +"NM-13133","29.489999771118164","29.489999771118164","","1990-11-28T00:00:00Z","","0" +"DE-0314","43.18000030517578","43.18000030517578","","2009-08-20T00:00:00Z","","0" +"NM-28258","159.9499969482422","159.9499969482422","","1989-05-25T00:00:00Z","","0" +"NM-05956","83.0199966430664","83.0199966430664","","1950-01-04T00:00:00Z","","0" +"DE-0111","37.900001525878906","37.900001525878906","","2008-05-20T00:00:00Z","","0" +"NM-20563","12.220000267028809","12.220000267028809","","1942-01-22T00:00:00Z","","0" +"NM-16810","32.63999938964844","32.63999938964844","","1936-10-21T00:00:00Z","","0" +"BC-0149","225.4600067138672","225.4600067138672","","2019-10-29T00:00:00Z","","0" +"NM-02115","33.9900016784668","33.9900016784668","","1966-01-15T00:00:00Z","","0" +"NM-13797","23.979999542236328","23.979999542236328","","1957-02-21T00:00:00Z","","0" +"NM-00185","9.800000190734863","9.800000190734863","","1971-08-15T00:00:00Z","","0" +"NM-09812","-49.5099983215332","-49.5099983215332","","1916-07-27T00:00:00Z","","0" +"NM-05455","56.02000045776367","56.02000045776367","","1948-01-15T00:00:00Z","","0" +"NM-02773","47.939998626708984","47.939998626708984","","1998-07-28T00:00:00Z","","0" +"NM-19435","314.1600036621094","314.1600036621094","","1990-01-03T00:00:00Z","","0" +"NM-11889","1.5800000429153442","1.5800000429153442","","1944-11-01T00:00:00Z","","0" +"BC-0023","54.599998474121094","54.599998474121094","","2018-09-05T00:00:00Z","","0" +"NM-10865","55.779998779296875","55.779998779296875","","1948-01-15T00:00:00Z","","0" +"NM-25680","-104.36000061035156","-104.36000061035156","","1989-03-03T00:00:00Z","","0" +"NM-27513","77.87000274658203","77.87000274658203","Z","1986-06-11T00:00:00Z","","0" +"NM-12808","37.9900016784668","37.9900016784668","","1940-04-01T00:00:00Z","","0" +"NM-17638","38.959999084472656","38.959999084472656","","1978-01-06T00:00:00Z","","0" +"NM-28254","67.5999984741211","67.5999984741211","","1999-05-25T00:00:00Z","","0" +"NM-28257","72.77999877929688","72.77999877929688","","1953-08-25T00:00:00Z","","0" +"NM-02256","6.199999809265137","6.199999809265137","M","1962-12-15T00:00:00Z","","0" +"NM-11578","26.850000381469727","26.850000381469727","","1940-01-16T00:00:00Z","","0" +"NM-03353","55.41999816894531","55.41999816894531","","1994-07-01T00:00:00Z","","0" +"NM-01830","6","6","","1989-08-15T00:00:00Z","","0" +"NM-05094","92.29000091552734","92.29000091552734","R","1954-09-13T00:00:00Z","","0" +"NM-03586","19.940000534057617","19.940000534057617","","1982-02-02T00:00:00Z","","0" +"NM-03392","148.02999877929688","148.02999877929688","","1985-05-25T00:00:00Z","","0" +"NM-01699","162.6699981689453","162.6699981689453","","1966-02-07T00:00:00Z","","0" +"NM-13597","-46.04999923706055","-46.04999923706055","","1908-12-10T00:00:00Z","","0" +"NM-25026","437.20001220703125","437.20001220703125","","1981-04-30T00:00:00Z","","0" +"NM-07533","35.95000076293945","35.95000076293945","","1976-02-05T00:00:00Z","","0" +"NM-28017","486.6499938964844","486.6499938964844","S","2015-04-16T00:00:00Z","","0" +"NM-00204","58.70000076293945","58.70000076293945","","2011-01-10T00:00:00Z","","0" +"SA-0055","58.95000076293945","58.95000076293945","","1991-02-15T00:00:00Z","","0" +"NM-11875","55.79999923706055","55.79999923706055","","1976-03-31T00:00:00Z","","0" +"NM-22466","65.80000305175781","65.80000305175781","R","1990-05-29T00:00:00Z","","0" +"NM-20942","160.47999572753906","160.47999572753906","","1977-03-04T00:00:00Z","","0" +"NM-01035","51.68000030517578","51.68000030517578","R","1994-09-15T00:00:00Z","","0" +"NM-23413","78.80000305175781","78.80000305175781","X","1995-07-20T00:00:00Z","","0" +"NM-28010","494.80999755859375","494.80999755859375","","2016-02-29T00:00:00Z","","0" +"NM-22482","30","30","","1984-06-28T00:00:00Z","","0" +"NM-08676","37.959999084472656","37.959999084472656","","1966-03-09T00:00:00Z","","0" +"NM-02006","8.399999618530273","8.399999618530273","","1952-10-15T00:00:00Z","","0" +"NM-01881","105.5999984741211","105.5999984741211","","1959-04-16T00:00:00Z","","0" +"NM-00974","340.8500061035156","340.8500061035156","","1957-09-24T00:00:00Z","","0" +"NM-01932","353.260009765625","353.260009765625","","1986-12-30T00:00:00Z","","0" +"DE-0250","46.68000030517578","46.68000030517578","","2011-09-12T00:00:00Z","","0" +"NM-10759","-128.0500030517578","-128.0500030517578","","1908-12-23T00:00:00Z","","0" +"NM-24928","36.47999954223633","36.47999954223633","R","1985-07-17T00:00:00Z","","0" +"NM-08644","77.7300033569336","77.7300033569336","P","1938-09-01T00:00:00Z","","0" +"NM-14802","103.9800033569336","103.9800033569336","","1981-03-24T00:00:00Z","","0" +"NM-02772","121.54000091552734","121.54000091552734","","1999-07-26T00:00:00Z","","0" +"NM-09682","430.2699890136719","430.2699890136719","","1978-05-01T00:00:00Z","","0" +"NM-02435","65.72000122070312","65.72000122070312","","2006-01-05T00:00:00Z","","0" +"NM-13121","11.609999656677246","11.609999656677246","","1959-09-21T00:00:00Z","","0" +"NM-02029","9.199999809265137","9.199999809265137","","2002-05-15T00:00:00Z","","0" +"NM-02794","68.91000366210938","68.91000366210938","","1960-07-19T00:00:00Z","","0" +"NM-03094","95.63999938964844","95.63999938964844","","2004-02-25T00:00:00Z","","0" +"NM-02108","12","12","","1988-02-01T00:00:00Z","","0" +"NM-21380","49.150001525878906","49.150001525878906","R","1955-02-02T00:00:00Z","","0" +"NM-04870","102.41999816894531","102.41999816894531","","1986-03-12T00:00:00Z","","0" +"DE-0127","45.59000015258789","45.59000015258789","","2016-02-04T00:00:00Z","","0" +"NM-00213","168.8000030517578","168.8000030517578","","1958-12-01T00:00:00Z","","0" +"NM-02794","77.18000030517578","77.18000030517578","","1968-01-03T00:00:00Z","","0" +"NM-27200","114.8499984741211","114.8499984741211","","2008-10-16T00:00:00Z","","0" +"NM-00644","40.439998626708984","40.439998626708984","S","2010-11-23T00:00:00Z","","0" +"NM-20897","60.7599983215332","60.7599983215332","","1943-02-04T00:00:00Z","","0" +"NM-28252","41.599998474121094","41.599998474121094","","1998-09-05T00:00:00Z","","0" +"NM-07330","124.94999694824219","124.94999694824219","","1955-03-25T00:00:00Z","","0" +"SD-0225","138.3000030517578","138.3000030517578","","1948-08-25T00:00:00Z","","0" +"NM-07815","20.75","20.75","S","1946-03-21T00:00:00Z","","0" +"NM-00854","219.5399932861328","219.5399932861328","","2015-02-03T00:00:00Z","","0" +"NM-09412","161.25","161.25","","1953-11-20T00:00:00Z","","0" +"NM-04507","117.0999984741211","117.0999984741211","P","1965-05-12T00:00:00Z","","0" +"NM-13919","-8.319999694824219","-8.319999694824219","","1908-06-26T00:00:00Z","","0" +"NM-11070","42.529998779296875","42.529998779296875","","1960-01-19T00:00:00Z","","0" +"NM-04063","96.02999877929688","96.02999877929688","","1972-11-30T00:00:00Z","","0" +"NM-03419","32.75","32.75","Z","1997-12-31T00:00:00Z","","0" +"NM-02282","400.3599853515625","400.3599853515625","","1970-09-01T00:00:00Z","","0" +"NM-11919","1.0499999523162842","1.0499999523162842","","1960-08-01T00:00:00Z","","0" +"NM-00149","19.399999618530273","19.399999618530273","","2006-02-07T00:00:00Z","","0" +"NM-13910","-18.329999923706055","-18.329999923706055","","1910-10-01T00:00:00Z","","0" +"NM-11518","36.189998626708984","36.189998626708984","","1945-09-24T00:00:00Z","","0" +"NM-07131","114.56999969482422","114.56999969482422","","2005-05-09T00:00:00Z","","0" +"NM-02209","102.80999755859375","102.80999755859375","","1981-01-01T00:00:00Z","","0" +"NM-00702","32.59000015258789","32.59000015258789","","2012-06-06T00:00:00Z","","0" +"NM-14075","-18.329999923706055","-18.329999923706055","","1912-01-19T00:00:00Z","","0" +"NM-14916","142.0800018310547","142.0800018310547","","1980-01-17T00:00:00Z","","0" +"WL-0089","80.83333587646484","78.28333282470703","","2002-07-23T00:00:00Z","","2.549999952316284" +"NM-02497","73.19000244140625","73.19000244140625","","1992-06-03T00:00:00Z","","0" +"NM-19732","407.2699890136719","407.2699890136719","","1967-02-01T00:00:00Z","","0" +"SB-0275","225.1699981689453","225.1699981689453","","2007-01-09T00:00:00Z","","0" +"NM-21953","27.75","27.75","","1950-08-01T00:00:00Z","","0" +"NM-17716","0.9800000190734863","0.9800000190734863","","1941-09-07T00:00:00Z","","0" +"NM-10288","257.4800109863281","257.4800109863281","","1959-11-10T00:00:00Z","","0" +"NM-15885","112.91999816894531","112.91999816894531","","1980-01-31T00:00:00Z","","0" +"NM-02487","9.300000190734863","9.300000190734863","","1979-11-15T00:00:00Z","","0" +"NM-12002","71.23999786376953","71.23999786376953","","1972-01-12T00:00:00Z","","0" +"NM-02772","17.25","17.25","","1970-01-01T00:00:00Z","","0" +"NM-02004","8.399999618530273","8.399999618530273","","2001-08-15T00:00:00Z","","0" +"NM-01914","22.200000762939453","22.200000762939453","","1957-01-19T00:00:00Z","","0" +"SA-0068","232.27000427246094","230.85000610351562","","2016-02-15T00:00:00Z","","1.4199999570846558" +"EB-229","216.58999633789062","222.58999633789062","","1984-05-31T00:00:00Z","","-6" +"NM-01068","125.04000091552734","125.04000091552734","","1982-03-23T00:00:00Z","","0" +"NM-02069","388.1700134277344","388.1700134277344","","2001-02-16T00:00:00Z","","0" +"NM-21725","258.1499938964844","258.1499938964844","","2009-11-16T00:00:00Z","","0" +"AR-0028","11.1899995803833","11.1899995803833","","2017-01-23T00:00:00Z","0001-01-01T12:10:00Z","0" +"SB-0299","154.52000427246094","154.52000427246094","","2016-08-20T00:00:00Z","","0" +"NM-28022","486.0799865722656","486.0799865722656","S","2015-04-17T00:00:00Z","","0" +"NM-00469","72.94999694824219","72.94999694824219","","1969-01-16T00:00:00Z","","0" +"NM-00367","118.1500015258789","118.1500015258789","","1982-02-01T00:00:00Z","","0" +"AB-0003","426","426","","2005-07-26T00:00:00Z","","" +"NM-07475","147","147","","1993-04-30T00:00:00Z","","0" +"NM-09813","12","12","","1945-07-22T00:00:00Z","","0" +"NM-28256","242.6199951171875","242.6199951171875","","1974-04-05T00:00:00Z","","0" +"AB-0109","38.63999938964844","38.63999938964844","","2007-04-05T00:00:00Z","","" +"NM-13562","3.9000000953674316","3.9000000953674316","","1958-03-24T00:00:00Z","","0" +"NM-10589","5.800000190734863","5.800000190734863","","1957-01-10T00:00:00Z","","0" +"NM-14076","-18.329999923706055","-18.329999923706055","","1911-11-11T00:00:00Z","","0" +"NM-03341","5.960000038146973","5.960000038146973","Z","2006-08-14T00:00:00Z","","0" +"NM-01830","5.900000095367432","5.900000095367432","","1991-10-15T00:00:00Z","","0" +"NM-28257","70.16999816894531","70.16999816894531","","1954-11-05T00:00:00Z","","0" +"NM-00257","92.45999908447266","92.45999908447266","","1988-07-21T00:00:00Z","","0" +"NM-28178","45.52000045776367","45.52000045776367","","1976-01-07T00:00:00Z","","0" +"NM-15822","94.5","94.5","R","1976-01-08T00:00:00Z","","0" +"NM-28256","231.19000244140625","231.19000244140625","","2012-06-05T00:00:00Z","","0" +"NM-28256","95.79000091552734","95.79000091552734","","1979-12-15T00:00:00Z","","0" +"NM-02416","76.26000213623047","76.26000213623047","","1981-01-17T00:00:00Z","","0" +"NM-02043","5.599999904632568","5.599999904632568","","1969-04-15T00:00:00Z","","0" +"NM-17526","22.850000381469727","22.850000381469727","","1937-03-18T00:00:00Z","","0" +"NM-27252","275.67999267578125","275.67999267578125","","1993-05-04T00:00:00Z","","0" +"NM-02408","10.5","10.5","","1992-02-10T00:00:00Z","","0" +"NM-01986","6.800000190734863","6.800000190734863","","1989-01-15T00:00:00Z","","0" +"NM-01796","7.099999904632568","7.099999904632568","","1955-06-15T00:00:00Z","","0" +"NM-06027","62.58000183105469","62.58000183105469","","1941-03-11T00:00:00Z","","0" +"NM-21285","8.569999694824219","8.569999694824219","","1978-01-30T00:00:00Z","","0" +"NM-05455","18.100000381469727","18.100000381469727","","1934-04-21T00:00:00Z","","0" +"NM-08179","46.689998626708984","46.689998626708984","P","1958-01-29T00:00:00Z","","0" +"NM-28255","144.9499969482422","144.9499969482422","","2000-07-15T00:00:00Z","","0" +"NM-20486","66","66","","1949-06-01T00:00:00Z","","0" +"NM-28253","22.34000015258789","22.34000015258789","","2009-03-25T00:00:00Z","","0" +"EB-012","167.5","167.5","","1972-02-02T00:00:00Z","","0" +"NM-14089","38.880001068115234","38.880001068115234","","1965-01-05T00:00:00Z","","0" +"NM-08524","11.399999618530273","11.399999618530273","","1961-01-15T00:00:00Z","","0" +"NM-03307","86.26000213623047","86.26000213623047","","1961-09-12T00:00:00Z","","0" +"NM-12739","30.229999542236328","30.229999542236328","","1950-07-22T00:00:00Z","","0" +"NM-20160","53.33000183105469","53.33000183105469","","1948-01-19T00:00:00Z","","0" +"NM-00131","104.94999694824219","104.94999694824219","","2000-01-13T00:00:00Z","","0" +"QU-164","86.72000122070312","84.55999755859375","","2014-12-10T00:00:00Z","","2.1600000858306885" +"NM-28252","49.939998626708984","49.939998626708984","","2008-07-07T00:00:00Z","","0" +"NM-08071","11.600000381469727","11.600000381469727","","1957-05-15T00:00:00Z","","0" +"NM-09688","75.29000091552734","75.29000091552734","","1953-01-09T00:00:00Z","","0" +"NM-06110","18.010000228881836","18.010000228881836","","1975-01-29T00:00:00Z","","0" +"NM-01863","14.619999885559082","14.619999885559082","","2001-12-11T00:00:00Z","","0" +"NM-28256","240.2899932861328","240.2899932861328","","1995-04-25T00:00:00Z","","0" +"NM-14192","34.91999816894531","34.91999816894531","","1949-11-03T00:00:00Z","","0" +"NM-20308","79.33999633789062","79.33999633789062","","1951-09-28T00:00:00Z","","0" +"NM-08392","17.34000015258789","17.34000015258789","","2004-05-14T00:00:00Z","","0" +"NM-28259","54.150001525878906","54.150001525878906","","1954-01-05T00:00:00Z","","0" +"NM-04475","101.13999938964844","101.13999938964844","","1986-03-06T00:00:00Z","","0" +"NM-28257","132.55999755859375","132.55999755859375","","1966-11-25T00:00:00Z","","0" +"NM-27393","74.01000213623047","74.01000213623047","","1955-01-13T00:00:00Z","","0" +"DE-0109","38.349998474121094","38.349998474121094","","2010-06-01T00:00:00Z","","0" +"NM-22091","23.649999618530273","23.649999618530273","","1969-01-13T00:00:00Z","","0" +"NM-23446","153.67999267578125","153.67999267578125","","1958-11-19T00:00:00Z","","0" +"TO-0395","71.5999984741211","71.5999984741211","","1950-05-03T00:00:00Z","","0" +"NM-03028","80.02999877929688","80.02999877929688","","1987-02-03T00:00:00Z","","0" +"NM-02384","8.699999809265137","8.699999809265137","","1990-12-15T00:00:00Z","","0" +"SB-0299","138.82000732421875","138.82000732421875","","1977-05-30T00:00:00Z","","0" +"NM-01885","34.66999816894531","34.66999816894531","","2014-10-30T00:00:00Z","","0" +"NM-28095","800","800","P","1987-08-15T00:00:00Z","","0" +"NM-01251","87.33000183105469","87.33000183105469","","1957-05-07T00:00:00Z","","0" +"NM-04544","72.2300033569336","72.2300033569336","","1981-03-25T00:00:00Z","","0" +"NM-02207","9.100000381469727","9.100000381469727","","1951-10-15T00:00:00Z","","0" +"NM-11178","39.86000061035156","39.86000061035156","R","1966-02-18T00:00:00Z","","0" +"NM-01841","254.50999450683594","254.50999450683594","","1980-02-19T00:00:00Z","","0" +"NM-27450","52.2400016784668","52.2400016784668","","1957-06-25T00:00:00Z","","0" +"BC-0262","155.55999755859375","155.55999755859375","","2019-07-25T00:00:00Z","","0" +"NM-13145","12.800000190734863","12.800000190734863","","1957-04-08T00:00:00Z","","0" +"NM-17417","69.18000030517578","69.18000030517578","","1961-01-12T00:00:00Z","","0" +"NM-27722","46.0099983215332","46.0099983215332","","1954-01-25T00:00:00Z","","0" +"NM-08179","63.9900016784668","63.9900016784668","S","1960-05-20T00:00:00Z","","0" +"NM-12518","-28.719999313354492","-28.719999313354492","","1936-01-14T00:00:00Z","","0" +"NM-06090","70.0999984741211","70.0999984741211","","1931-05-17T00:00:00Z","","0" +"NM-09374","31.469999313354492","31.469999313354492","","1936-06-16T00:00:00Z","","0" +"NM-20123","41.2400016784668","41.2400016784668","","1946-03-29T00:00:00Z","","0" +"NM-10779","44.529998779296875","44.529998779296875","","1942-02-03T00:00:00Z","","0" +"NM-28250","90.43000030517578","90.43000030517578","","1988-01-05T00:00:00Z","","0" +"NM-23515","31.420000076293945","31.420000076293945","","2014-10-06T00:00:00Z","","0" +"NM-07588","57.650001525878906","57.650001525878906","","1958-01-30T00:00:00Z","","0" +"NM-20075","29.56999969482422","29.56999969482422","","1946-02-07T00:00:00Z","","0" +"NM-02207","10.800000190734863","10.800000190734863","","1962-01-15T00:00:00Z","","0" +"NM-07429","22.190000534057617","22.190000534057617","","1954-07-23T00:00:00Z","","0" +"NM-03418","301.42999267578125","301.42999267578125","","1993-02-03T00:00:00Z","","0" +"NM-03373","36.18000030517578","36.18000030517578","","1983-04-21T00:00:00Z","","0" +"QU-086","417.75","415.20001220703125","","2013-04-08T00:00:00Z","","2.549999952316284" +"AB-0067","151.42999267578125","151.42999267578125","","2010-01-05T00:00:00Z","","" +"NM-03113","331.3599853515625","331.3599853515625","","1971-01-09T00:00:00Z","","0" +"NM-06807","78.08000183105469","78.08000183105469","","2003-05-22T00:00:00Z","","0" +"NM-11383","70.33999633789062","70.33999633789062","","1951-07-13T00:00:00Z","","0" +"NM-17527","31.889999389648438","31.889999389648438","","1936-07-20T00:00:00Z","","0" +"NM-12392","260.239990234375","260.239990234375","","1966-12-01T00:00:00Z","","0" +"NM-02101","9.5","9.5","","1971-02-15T00:00:00Z","","0" +"NM-28250","86.08000183105469","86.08000183105469","","1991-01-15T00:00:00Z","","0" +"NM-09289","89.94000244140625","89.94000244140625","","1953-09-11T00:00:00Z","","0" +"NM-12060","-26.40999984741211","-26.40999984741211","","1915-07-15T00:00:00Z","","0" +"NM-25026","440.70001220703125","440.70001220703125","","1982-08-29T00:00:00Z","","0" +"NM-04632","13.300000190734863","13.300000190734863","","1954-08-15T00:00:00Z","","0" +"NM-28256","85.94000244140625","85.94000244140625","","1991-02-25T00:00:00Z","","0" +"NM-01893","24.329999923706055","24.329999923706055","","1996-12-18T00:00:00Z","","0" +"NM-23480","","","D","2016-05-03T00:00:00Z","","0" +"NM-01259","14.84000015258789","14.84000015258789","","2015-01-12T00:00:00Z","","0" +"NM-02029","8","8","","2001-07-15T00:00:00Z","","0" +"NM-02644","56.41999816894531","56.41999816894531","","2011-01-26T00:00:00Z","","0" +"NM-02711","98.38999938964844","98.38999938964844","","1963-08-13T00:00:00Z","","0" +"EB-204","65.8499984741211","65.8499984741211","","1982-01-20T00:00:00Z","","0" +"NM-13145","9.859999656677246","9.859999656677246","","1976-04-13T00:00:00Z","","0" +"NM-12466","11.640000343322754","11.640000343322754","","1960-04-06T00:00:00Z","","0" +"NM-26357","193.1999969482422","193.1999969482422","","1981-02-01T00:00:00Z","","0" +"NM-13120","3.5199999809265137","3.5199999809265137","","1959-05-13T00:00:00Z","","0" +"NM-01248","40.4900016784668","40.4900016784668","","2003-03-06T00:00:00Z","","0" +"NM-03673","84.77999877929688","84.77999877929688","","1977-01-27T00:00:00Z","","0" +"AB-0122","538.8300170898438","538.8300170898438","","2009-10-09T00:00:00Z","","" +"DE-0108","43","43","","2012-11-29T00:00:00Z","","0" +"NM-28253","22.049999237060547","22.049999237060547","","1970-02-15T00:00:00Z","","0" +"NM-22760","19.389999389648438","19.389999389648438","S","1954-06-15T00:00:00Z","","0" +"NM-06009","70.75","70.75","","1947-05-19T00:00:00Z","","0" +"NM-03393","54.45000076293945","54.45000076293945","P","1976-09-29T00:00:00Z","","0" +"NM-00185","12.899999618530273","12.899999618530273","","1948-06-15T00:00:00Z","","0" +"NM-17552","25.739999771118164","25.739999771118164","","1936-01-08T00:00:00Z","","0" +"NM-01796","6.199999809265137","6.199999809265137","","1980-08-15T00:00:00Z","","0" +"NM-17716","5.389999866485596","5.389999866485596","","1951-06-25T00:00:00Z","","0" +"AB-0213","154.75","154.75","","2001-01-16T00:00:00Z","","" +"NM-03235","70.5999984741211","70.5999984741211","R","1951-08-22T00:00:00Z","","0" +"NM-28091","931.4500122070312","931.4500122070312","","2007-07-12T00:00:00Z","","0" +"NM-00762","122.18000030517578","122.18000030517578","","1957-01-02T00:00:00Z","","0" +"NM-14031","-14.859999656677246","-14.859999656677246","","1911-06-19T00:00:00Z","","0" +"BC-0306","","268.20001220703125","","2020-11-08T00:00:00Z","","0.6499999761581421" +"NM-02999","124.12999725341797","124.12999725341797","","1998-01-07T00:00:00Z","","0" +"NM-02489","114.98999786376953","114.98999786376953","","1984-02-02T00:00:00Z","","0" +"NM-11928","-0.2800000011920929","-0.2800000011920929","","1957-08-05T00:00:00Z","","0" +"NM-01947","4.099999904632568","4.099999904632568","","1966-08-15T00:00:00Z","","0" +"NM-28258","128.61000061035156","128.61000061035156","","1977-02-25T00:00:00Z","","0" +"NM-01695","37.38999938964844","37.38999938964844","","2013-04-08T00:00:00Z","","0" +"NM-07275","9.380000114440918","9.380000114440918","","1949-11-16T00:00:00Z","","0" +"SO-0257","15.149999618530273","13.519999504089355","","2020-12-15T00:00:00Z","","1.6299999952316284" +"QY-0906","40.099998474121094","40.099998474121094","","1955-04-14T00:00:00Z","","0" +"NM-27281","22.700000762939453","22.700000762939453","","1946-07-26T00:00:00Z","","0" +"NM-10366","38.15999984741211","38.15999984741211","","1967-01-28T00:00:00Z","","0" +"NM-16323","33.720001220703125","33.720001220703125","","1972-01-11T00:00:00Z","","0" +"DE-0178","51.9900016784668","51.9900016784668","","2015-12-16T00:00:00Z","","0" +"SA-0053","85.44000244140625","85.44000244140625","","2008-04-30T00:00:00Z","","0" +"NM-01796","6.900000095367432","6.900000095367432","","1981-10-15T00:00:00Z","","0" +"NM-00253","23.290000915527344","23.290000915527344","","1990-05-15T00:00:00Z","","0" +"NM-08524","12.699999809265137","12.699999809265137","","2001-02-15T00:00:00Z","","0" +"NM-12326","18.600000381469727","18.600000381469727","","2005-01-10T00:00:00Z","","0" +"NM-11388","42","42","","1938-01-11T00:00:00Z","","0" +"NM-05638","161.64999389648438","161.64999389648438","P","1965-08-11T00:00:00Z","","0" +"NM-00039","106.80000305175781","106.80000305175781","","1973-01-08T00:00:00Z","","0" +"NM-13366","21.979999542236328","21.979999542236328","","1986-01-16T00:00:00Z","","0" +"NM-01920","385.7300109863281","385.7300109863281","","1996-02-09T00:00:00Z","","0" +"NM-12197","15.09000015258789","15.09000015258789","","1941-09-10T00:00:00Z","","0" +"NM-22094","103.48999786376953","103.48999786376953","","1993-03-17T00:00:00Z","","0" +"WL-0021","38.33000183105469","37.630001068115234","","2013-09-01T00:00:00Z","","0.699999988079071" +"ED-0050","60.70000076293945","60.70000076293945","","1948-09-03T00:00:00Z","","0" +"NM-22767","77","77","","1978-12-27T00:00:00Z","","0" +"NM-00702","33.91999816894531","33.91999816894531","","2013-11-19T00:00:00Z","","0" +"NM-01600","292.54998779296875","292.54998779296875","","2011-02-23T00:00:00Z","","0" +"NM-13272","6.690000057220459","6.690000057220459","","1955-01-19T00:00:00Z","","0" +"AB-0102","577.9099731445312","577.9099731445312","","2005-04-12T00:00:00Z","","" +"NM-02571","42.630001068115234","42.630001068115234","","2011-01-24T00:00:00Z","","0" +"NM-14192","40.529998779296875","40.529998779296875","","1955-01-20T00:00:00Z","","0" +"NM-20313","101.33000183105469","101.33000183105469","","1986-10-16T00:00:00Z","","0" +"NM-01908","128.75","128.75","R","1960-04-06T00:00:00Z","","0" +"NM-17054","70","70","","1992-12-15T00:00:00Z","","0" +"NM-01931","355.7099914550781","355.7099914550781","","1985-01-29T00:00:00Z","","0" +"AB-0184","351.8999938964844","351.8999938964844","","2003-03-31T00:00:00Z","","" +"NM-07145","82.81999969482422","82.81999969482422","","1999-01-28T00:00:00Z","","0" +"DE-0246","108.3499984741211","108.3499984741211","","2010-06-28T00:00:00Z","","0" +"WL-0021","41.58000183105469","40.880001068115234","","2011-09-01T00:00:00Z","","0.699999988079071" +"NM-11331","9.989999771118164","9.989999771118164","","1980-10-28T00:00:00Z","","0" +"NM-02702","38.75","38.75","","2000-09-06T00:00:00Z","","0" +"NM-05309","9.600000381469727","9.600000381469727","","1974-10-15T00:00:00Z","","0" +"EB-338","185.5399932861328","185.5399932861328","","2008-06-03T00:00:00Z","","0" +"NM-17206","71.4800033569336","71.4800033569336","","1960-09-14T00:00:00Z","","0" +"NM-19032","45.279998779296875","45.279998779296875","","1990-03-01T00:00:00Z","","0" +"NM-08232","1000.280029296875","1000.280029296875","","1965-01-01T00:00:00Z","","0" +"NM-16271","55.2400016784668","55.2400016784668","","1971-12-16T00:00:00Z","","0" +"NM-11888","-2.6500000953674316","-2.6500000953674316","","1965-01-06T00:00:00Z","","0" +"NM-05920","55.939998626708984","55.939998626708984","","1941-11-10T00:00:00Z","","0" +"NM-16755","12.779999732971191","12.779999732971191","","1945-01-21T00:00:00Z","","0" +"NM-15344","100.22000122070312","100.22000122070312","","1990-01-04T00:00:00Z","","0" +"NM-09696","39.25","39.25","","1953-01-09T00:00:00Z","","0" +"NM-28253","18.440000534057617","18.440000534057617","","2002-10-15T00:00:00Z","","0" +"EB-270","197.22999572753906","197.22999572753906","","2005-01-20T00:00:00Z","","0" +"SO-0126","5.019999980926514","4.460000038146973","","2016-07-07T00:00:00Z","","0.5600000023841858" +"NM-10063","10.229999542236328","10.229999542236328","","1977-06-20T00:00:00Z","","0" +"NM-27446","23.31999969482422","23.31999969482422","","1957-07-02T00:00:00Z","","0" +"EB-605","69.70999908447266","69.70999908447266","","2013-03-14T00:00:00Z","","0" +"NM-12451","28.899999618530273","28.899999618530273","","1941-01-28T00:00:00Z","","0" +"NM-02520","5.199999809265137","5.199999809265137","","1959-05-15T00:00:00Z","","0" +"NM-14154","-18.329999923706055","-18.329999923706055","","1909-06-07T00:00:00Z","","0" +"NM-13978","-11.109999656677246","-11.109999656677246","","1910-12-18T00:00:00Z","","0" +"NM-10779","53.36000061035156","53.36000061035156","","1952-01-08T00:00:00Z","","0" +"NM-04155","105.7699966430664","105.7699966430664","","1965-01-19T00:00:00Z","","0" +"NM-11909","44.880001068115234","44.880001068115234","","1937-07-19T00:00:00Z","","0" +"NM-15425","8","8","","1982-09-08T00:00:00Z","","0" +"NM-20545","70.54000091552734","70.54000091552734","","1987-03-10T00:00:00Z","","0" +"NM-02314","10.300000190734863","10.300000190734863","","1952-05-15T00:00:00Z","","0" +"NM-24863","203","203","P","1958-08-25T00:00:00Z","","0" +"NM-02168","17.079999923706055","17.079999923706055","","2014-01-30T00:00:00Z","","0" +"NM-16136","95.77999877929688","95.77999877929688","","1964-02-19T00:00:00Z","","0" +"NM-27316","212.42999267578125","212.42999267578125","","1995-02-22T00:00:00Z","","0" +"NM-16620","23.719999313354492","23.719999313354492","","1957-03-13T00:00:00Z","","0" +"NM-02181","9.329999923706055","9.329999923706055","","1988-02-02T00:00:00Z","","0" +"NM-00974","357.8299865722656","357.8299865722656","","1992-12-15T00:00:00Z","","0" +"NM-16456","19.799999237060547","19.799999237060547","","1984-02-16T00:00:00Z","","0" +"NM-28250","99.30000305175781","99.30000305175781","","1970-01-15T00:00:00Z","","0" +"DE-0091","90.30999755859375","90.30999755859375","","2000-03-27T00:00:00Z","","0" +"AB-0183","336.2900085449219","336.2900085449219","","2013-05-03T00:00:00Z","","" +"NM-14293","7.199999809265137","7.199999809265137","","1958-09-02T00:00:00Z","","0" +"TV-275","255.4499969482422","253.14999389648438","","2004-08-06T00:00:00Z","","2.299999952316284" +"EB-244","118.7699966430664","118.7699966430664","","2007-08-09T00:00:00Z","","0" +"NM-11786","69.0199966430664","69.0199966430664","","1975-01-07T00:00:00Z","","0" +"NM-02386","51.7400016784668","51.7400016784668","","1995-07-12T00:00:00Z","","0" +"NM-16621","43.7599983215332","43.7599983215332","","1970-01-06T00:00:00Z","","0" +"NM-20818","34.900001525878906","34.900001525878906","","1990-03-02T00:00:00Z","","0" +"BW-0234","186.86000061035156","186.86000061035156","","1969-01-09T00:00:00Z","","0" +"NM-15810","162.66000366210938","162.66000366210938","","1995-01-07T00:00:00Z","","0" +"NM-00498","59.599998474121094","59.599998474121094","","1991-03-28T00:00:00Z","","0" +"NM-13135","8.869999885559082","8.869999885559082","","1972-08-02T00:00:00Z","","0" +"NM-13259","-81.8499984741211","-81.8499984741211","","1913-01-24T00:00:00Z","","0" +"NM-15044","452.4599914550781","452.4599914550781","","1963-08-01T00:00:00Z","","0" +"SB-0031","180","180","","1963-07-26T00:00:00Z","","0" +"NM-13135","10.420000076293945","10.420000076293945","","1958-06-02T00:00:00Z","","0" +"NM-00245","83.76000213623047","83.76000213623047","","1954-08-30T00:00:00Z","","0" +"NM-03340","7.519999980926514","7.519999980926514","","2005-03-18T00:00:00Z","","0" +"NM-05347","12","12","","1981-04-15T00:00:00Z","","0" +"NM-03483","91.55000305175781","91.55000305175781","","1968-01-17T00:00:00Z","","0" +"UC-0123","25.290000915527344","25.290000915527344","","2011-01-05T00:00:00Z","","0" +"NM-20196","39.61000061035156","39.61000061035156","","1955-01-14T00:00:00Z","","0" +"NM-03193","117.18000030517578","117.18000030517578","","2000-01-10T00:00:00Z","","0" +"NM-15044","459.6499938964844","459.6499938964844","","1974-09-01T00:00:00Z","","0" +"NM-02609","-40.27000045776367","-40.27000045776367","","1919-01-31T00:00:00Z","","0" +"NM-16675","17.190000534057617","17.190000534057617","","1953-11-18T00:00:00Z","","0" +"NM-02085","10.619999885559082","10.619999885559082","","1979-02-01T00:00:00Z","","0" +"NM-17995","284.5","284.5","","1951-01-26T00:00:00Z","","0" +"NM-02609","-102.63999938964844","-102.63999938964844","","1907-01-25T00:00:00Z","","0" +"NM-10288","256.25","256.25","","1965-02-17T00:00:00Z","","0" +"NM-12718","34.31999969482422","34.31999969482422","","1937-12-17T00:00:00Z","","0" +"NM-16867","37.79999923706055","37.79999923706055","","1961-01-13T00:00:00Z","","0" +"NM-05315","89.16999816894531","89.16999816894531","R","1951-07-22T00:00:00Z","","0" +"EB-276","133.22000122070312","133.22000122070312","","1961-10-09T00:00:00Z","","0" +"NM-14397","256.0199890136719","256.0199890136719","Z","1990-10-10T00:00:00Z","","0" +"NM-03188","354.0299987792969","354.0299987792969","","1975-01-04T00:00:00Z","","0" +"NM-23198","60.349998474121094","60.349998474121094","","1946-07-11T00:00:00Z","","0" +"NM-03085","289.29998779296875","289.29998779296875","","1999-08-29T00:00:00Z","","0" +"NM-11727","70.54000091552734","70.54000091552734","","1946-01-23T00:00:00Z","","0" +"NM-25026","382","382","","1978-12-02T00:00:00Z","","0" +"NM-03429","40.529998779296875","40.529998779296875","","1994-05-11T00:00:00Z","","0" +"NM-00579","62.220001220703125","62.220001220703125","","1975-01-07T00:00:00Z","","0" +"NM-27850","52.970001220703125","52.970001220703125","","1982-03-25T00:00:00Z","","0" +"NM-14078","-10.819999694824219","-10.819999694824219","","1907-09-17T00:00:00Z","","0" +"NM-24863","214.4499969482422","214.4499969482422","","1968-02-06T00:00:00Z","","0" +"NM-18271","113.43000030517578","113.43000030517578","","1995-03-24T00:00:00Z","","0" +"NM-08940","5.46999979019165","5.46999979019165","","1958-11-04T00:00:00Z","","0" +"NM-01152","182.16000366210938","182.16000366210938","R","2010-02-05T00:00:00Z","","0" +"NM-21576","5.099999904632568","5.099999904632568","Z","2004-11-08T00:00:00Z","","0" +"DE-0287","87.27999877929688","87.27999877929688","","2019-06-24T00:00:00Z","","0" +"NM-05418","129.00999450683594","129.00999450683594","","1961-01-10T00:00:00Z","","0" +"NM-00257","93.55999755859375","93.55999755859375","","1978-11-01T00:00:00Z","","0" +"NM-15044","454.4200134277344","454.4200134277344","","1970-04-01T00:00:00Z","","0" +"NM-12404","84","84","","1976-03-26T00:00:00Z","","0" +"NM-28250","86.33000183105469","86.33000183105469","","2003-08-15T00:00:00Z","","0" +"NM-16189","15.069999694824219","15.069999694824219","","2015-01-29T00:00:00Z","","0" +"AB-0124","543.1599731445312","543.1599731445312","","1999-03-11T00:00:00Z","","" +"NM-12620","-31.030000686645508","-31.030000686645508","","1907-12-12T00:00:00Z","","0" +"NM-03014","86.0199966430664","86.0199966430664","","1988-01-11T00:00:00Z","","0" +"NM-13543","57.5099983215332","57.5099983215332","","1976-06-18T00:00:00Z","","0" +"NM-13491","199","199","","1984-02-08T00:00:00Z","","0" +"NM-25241","15.84000015258789","15.84000015258789","","1970-08-19T00:00:00Z","","0" +"SB-0258","84.6500015258789","84.6500015258789","","2018-02-15T00:00:00Z","","0" +"NM-00935","223.75","223.75","","1969-01-07T00:00:00Z","","0" +"NM-23357","112","112","","1949-10-12T00:00:00Z","","0" +"NM-18080","168.75999450683594","168.75999450683594","","1967-01-26T00:00:00Z","","0" +"AB-0161","489.05999755859375","489.05999755859375","","2012-05-24T00:00:00Z","","" +"NM-01896","10.819999694824219","10.819999694824219","","2005-02-18T00:00:00Z","","0" +"NM-14985","245.22000122070312","245.22000122070312","","1993-06-30T00:00:00Z","","0" +"NM-28016","489.2799987792969","489.2799987792969","S","2015-05-18T00:00:00Z","","0" +"NM-02256","10.399999618530273","10.399999618530273","","1957-02-15T00:00:00Z","","0" +"NM-28255","41.91999816894531","41.91999816894531","","2001-11-05T00:00:00Z","","0" +"DE-0095","93.19000244140625","93.19000244140625","","2005-04-13T00:00:00Z","","0" +"NM-13969","-8.220000267028809","-8.220000267028809","","1910-12-19T00:00:00Z","","0" +"NM-10607","43.84000015258789","43.84000015258789","","1941-01-25T00:00:00Z","","0" +"NM-04962","61.91999816894531","61.91999816894531","","1941-01-10T00:00:00Z","","0" +"NM-17989","15.539999961853027","15.539999961853027","P","1945-01-16T00:00:00Z","","0" +"BC-0067","","272.8999938964844","","2020-11-07T00:00:00Z","","1.5800000429153442" +"SA-0104","8.829999923706055","5.380000114440918","R","2010-05-07T00:00:00Z","","3.450000047683716" +"NM-02831","32.36000061035156","32.36000061035156","","1994-01-25T00:00:00Z","","0" +"NM-20147","120.97000122070312","120.97000122070312","","1973-02-26T00:00:00Z","","0" +"NM-02620","9.300000190734863","9.300000190734863","","1987-02-15T00:00:00Z","","0" +"NM-04248","110.2699966430664","110.2699966430664","","1959-06-23T00:00:00Z","","0" +"NM-02509","83.08999633789062","83.08999633789062","","2003-01-23T00:00:00Z","","0" +"NM-03373","36.779998779296875","36.779998779296875","","1984-04-27T00:00:00Z","","0" +"NM-28258","122.8499984741211","122.8499984741211","","1984-12-25T00:00:00Z","","0" +"NM-07699","57.58000183105469","57.58000183105469","","1971-01-21T00:00:00Z","","0" +"NM-02288","11.539999961853027","11.539999961853027","","2015-11-12T00:00:00Z","","0" +"NM-02320","186.3000030517578","186.3000030517578","","1974-12-18T00:00:00Z","","0" +"NM-21320","30.459999084472656","30.459999084472656","P","1987-10-27T00:00:00Z","","0" +"UC-0034","96.80000305175781","96.80000305175781","","1995-10-24T00:00:00Z","","0" +"NM-01695","36.66999816894531","36.66999816894531","","2009-03-24T00:00:00Z","","0" +"NM-06833","98.76000213623047","98.76000213623047","","1976-01-21T00:00:00Z","","0" +"SB-0442","167.10000610351562","167.10000610351562","","2010-02-28T00:00:00Z","","0" +"BC-0201","110.19000244140625","110.19000244140625","","2016-06-29T00:00:00Z","","0" +"NM-05575","93.91999816894531","93.91999816894531","P","1954-09-10T00:00:00Z","","0" +"NM-20222","360.8299865722656","360.8299865722656","","1982-01-06T00:00:00Z","","0" +"NM-20272","313.32000732421875","313.32000732421875","","1959-06-09T00:00:00Z","","0" +"NM-13967","-9.09000015258789","-9.09000015258789","","1910-09-21T00:00:00Z","","0" +"NM-13860","-12.550000190734863","-12.550000190734863","","1907-11-30T00:00:00Z","","0" +"NM-21949","27","27","","1958-06-26T00:00:00Z","","0" +"SM-0021","106.97000122070312","104.8499984741211","","2006-04-04T00:00:00Z","","2.119999885559082" +"NM-03810","312.5","312.5","P","1956-09-25T00:00:00Z","","0" +"NM-17542","33.02000045776367","33.02000045776367","","1943-11-25T00:00:00Z","","0" +"NM-08024","18.209999084472656","18.209999084472656","","1957-01-16T00:00:00Z","","0" +"NM-01644","178.14999389648438","178.14999389648438","","2015-08-17T00:00:00Z","","0" +"DE-0111","42.75","42.75","","2015-07-08T00:00:00Z","","0" +"NM-19094","381.05999755859375","381.05999755859375","","1977-01-14T00:00:00Z","","0" +"DE-0279","83.0999984741211","83.0999984741211","","2016-12-14T00:00:00Z","","0" +"AB-0179","177.8000030517578","177.8000030517578","","1998-02-20T00:00:00Z","","" +"NM-07393","152.9600067138672","152.9600067138672","","1959-01-14T00:00:00Z","","0" +"NM-06201","63.97999954223633","63.97999954223633","","1965-10-26T00:00:00Z","","0" +"NM-04632","10.600000381469727","10.600000381469727","","1969-03-15T00:00:00Z","","0" +"NM-01971","7.300000190734863","7.300000190734863","","1967-06-15T00:00:00Z","","0" +"NM-20738","5.699999809265137","5.699999809265137","","1945-09-07T00:00:00Z","","0" +"NM-02017","7.699999809265137","7.699999809265137","","1951-05-15T00:00:00Z","","0" +"NM-17716","2.5","2.5","","1945-05-25T00:00:00Z","","0" +"NM-00522","76.66000366210938","76.66000366210938","","1988-01-07T00:00:00Z","","0" +"NM-11343","424.1400146484375","424.1400146484375","","1975-01-13T00:00:00Z","","0" +"NM-17779","109.12000274658203","109.12000274658203","","2004-12-15T00:00:00Z","","0" +"NM-17716","3.0899999141693115","3.0899999141693115","","1946-04-17T00:00:00Z","","0" +"NM-03388","42.779998779296875","42.779998779296875","S","1987-01-28T00:00:00Z","","0" +"NM-03369","56.709999084472656","56.709999084472656","","1989-02-24T00:00:00Z","","0" +"NM-01156","124.18000030517578","124.18000030517578","","1997-02-06T00:00:00Z","","0" +"NM-11562","39.720001220703125","39.720001220703125","","1939-02-07T00:00:00Z","","0" +"NM-21476","47.04999923706055","47.04999923706055","","1950-05-03T00:00:00Z","","0" +"NM-28255","129.80999755859375","129.80999755859375","","2019-04-05T00:00:00Z","","0" +"NM-14361","46.9900016784668","46.9900016784668","","1946-09-04T00:00:00Z","","0" +"NM-01590","180.25999450683594","180.25999450683594","","1967-03-18T00:00:00Z","","0" +"NM-10331","581.0499877929688","581.0499877929688","","1960-07-01T00:00:00Z","","0" +"NM-03924","6.949999809265137","6.949999809265137","","2007-09-26T00:00:00Z","","0" +"NM-27518","86.08999633789062","86.08999633789062","","2008-03-18T00:00:00Z","","0" +"SV-0045","338.20001220703125","335.95001220703125","","2016-11-06T00:00:00Z","","2.25" +"NM-07225","198.88999938964844","198.88999938964844","","1971-08-01T00:00:00Z","","0" +"NM-01947","5.699999809265137","5.699999809265137","","1952-09-15T00:00:00Z","","0" +"NM-02891","32.04999923706055","32.04999923706055","","1996-03-13T00:00:00Z","","0" +"NM-16033","22.3700008392334","22.3700008392334","","1950-08-07T00:00:00Z","","0" +"NM-01955","6.199999809265137","6.199999809265137","","1976-05-15T00:00:00Z","","0" +"NM-00283","311.92999267578125","311.92999267578125","","1986-02-06T00:00:00Z","","0" +"DE-0082","94.04000091552734","94.04000091552734","","1998-11-24T00:00:00Z","","0" +"NM-28255","110.76000213623047","110.76000213623047","","1959-07-15T00:00:00Z","","0" +"EB-244","82.33000183105469","82.33000183105469","","1986-10-10T00:00:00Z","","0" +"NM-01971","5.699999809265137","5.699999809265137","","1946-09-15T00:00:00Z","","0" +"NM-21244","353.07000732421875","353.07000732421875","","1993-09-21T00:00:00Z","","0" +"NM-00366","98.25","98.25","","2003-03-12T00:00:00Z","","0" +"NM-21500","206.08999633789062","206.08999633789062","","2011-10-11T00:00:00Z","","0" +"DE-0308","48.540000915527344","48.540000915527344","","2018-03-06T00:00:00Z","","0" +"NM-21621","272.7200012207031","272.7200012207031","","2005-12-28T00:00:00Z","","0" +"NM-19350","60.849998474121094","60.849998474121094","","1966-01-05T00:00:00Z","","0" +"NM-28258","167.00999450683594","167.00999450683594","","2004-08-16T00:00:00Z","","0" +"NM-07389","124.22000122070312","124.22000122070312","","1968-01-22T00:00:00Z","","0" +"NM-08314","36.459999084472656","36.459999084472656","","1952-07-16T00:00:00Z","","0" +"NM-01926","6.400000095367432","6.400000095367432","","1970-01-15T00:00:00Z","","0" +"NM-13891","-26.40999984741211","-26.40999984741211","","1911-01-26T00:00:00Z","","0" +"NM-00245","80.8499984741211","80.8499984741211","","1958-01-10T00:00:00Z","","0" +"NM-08646","53.43000030517578","53.43000030517578","","1955-07-19T00:00:00Z","","0" +"NM-00829","51.279998779296875","51.279998779296875","","1984-01-04T00:00:00Z","","0" +"NM-14299","106.0199966430664","106.0199966430664","R","1970-09-02T00:00:00Z","","0" +"NM-16614","24.34000015258789","24.34000015258789","","1937-02-20T00:00:00Z","","0" +"NM-28251","74.79000091552734","74.79000091552734","","1987-03-05T00:00:00Z","","0" +"NM-16973","14.25","14.25","","1942-01-28T00:00:00Z","","0" +"SB-0234","117.8499984741211","117.8499984741211","","1965-01-27T00:00:00Z","","0" +"NM-12444","65.7300033569336","65.7300033569336","","1946-01-31T00:00:00Z","","0" +"NM-02069","384.19000244140625","384.19000244140625","","1990-02-27T00:00:00Z","","0" +"ED-0097","76.4000015258789","76.4000015258789","","1949-11-15T00:00:00Z","","0" +"NM-01947","4.5","4.5","","1994-02-20T00:00:00Z","","0" +"DE-0109","39.599998474121094","39.599998474121094","","2009-06-02T00:00:00Z","","0" +"DE-0108","36.27000045776367","36.27000045776367","","2006-11-06T00:00:00Z","","0" +"AB-0180","152.5399932861328","152.5399932861328","","1998-11-17T00:00:00Z","","" +"NM-00836","107.4800033569336","107.4800033569336","","2003-01-30T00:00:00Z","","0" +"NM-17716","4.679999828338623","4.679999828338623","","1948-04-24T00:00:00Z","","0" +"NM-13252","25.979999542236328","25.979999542236328","R","1971-03-12T00:00:00Z","","0" +"NM-01812","13.09000015258789","13.09000015258789","","1994-07-05T00:00:00Z","","0" +"NM-05206","8.850000381469727","8.850000381469727","","2010-04-27T00:00:00Z","","0" +"NM-00237","11.710000038146973","11.710000038146973","","1956-05-02T00:00:00Z","","0" +"NM-03378","31.68000030517578","31.68000030517578","S","1986-01-30T00:00:00Z","","0" +"WL-0021","25.209999084472656","24.509998321533203","","2009-05-01T00:00:00Z","","0.699999988079071" +"DE-0108","40.040000915527344","40.040000915527344","","2010-11-22T00:00:00Z","","0" +"NM-09373","-107.26000213623047","-107.26000213623047","","1908-08-26T00:00:00Z","","0" +"NM-00686","60.529998779296875","60.529998779296875","","1983-08-18T00:00:00Z","","0" +"NM-00498","57.849998474121094","57.849998474121094","","1994-01-04T00:00:00Z","","0" +"NM-13047","24.450000762939453","24.450000762939453","","1959-01-08T00:00:00Z","","0" +"NM-00633","51.27000045776367","51.27000045776367","","1986-01-15T00:00:00Z","","0" +"NM-28252","32","32","","1995-01-05T00:00:00Z","","0" +"NM-17183","30.420000076293945","30.420000076293945","","1947-01-20T00:00:00Z","","0" +"NM-23935","72.87999725341797","72.87999725341797","","1973-03-15T00:00:00Z","","0" +"NM-01269","85.93000030517578","85.93000030517578","","1950-10-16T00:00:00Z","","0" +"NM-07828","28.90999984741211","28.90999984741211","","1936-05-18T00:00:00Z","","0" +"NM-06030","35.380001068115234","35.380001068115234","","2004-05-19T00:00:00Z","","0" +"EB-288","94.66000366210938","94.66000366210938","","1973-02-08T00:00:00Z","","0" +"NM-20961","16.719999313354492","16.719999313354492","","1949-02-16T00:00:00Z","","0" +"NM-11682","39.560001373291016","39.560001373291016","","1938-01-28T00:00:00Z","","0" +"SO-0139","6.369999885559082","5.539999961853027","","2016-04-11T00:00:00Z","","0.8299999833106995" +"NM-09696","25.709999084472656","25.709999084472656","","1938-04-28T00:00:00Z","","0" +"NM-17106","52.13999938964844","52.13999938964844","","1955-03-16T00:00:00Z","","0" +"NM-02728","105.18000030517578","105.18000030517578","","2013-01-29T00:00:00Z","","0" +"NM-05315","92.13999938964844","92.13999938964844","","1952-07-17T00:00:00Z","","0" +"NM-28251","79.68000030517578","79.68000030517578","","2011-09-05T00:00:00Z","","0" +"NM-09973","42.40999984741211","42.40999984741211","","1961-06-01T00:00:00Z","","0" +"NM-20372","12.579999923706055","12.579999923706055","P","1955-02-04T00:00:00Z","","0" +"NM-23818","118.19000244140625","118.19000244140625","","1966-11-30T00:00:00Z","","0" +"NM-11869","22","22","","1947-01-26T00:00:00Z","","0" +"NM-08524","14.699999809265137","14.699999809265137","","1965-06-15T00:00:00Z","","0" +"NM-20343","53.04999923706055","53.04999923706055","S","1952-05-29T00:00:00Z","","0" +"NM-23380","135.38999938964844","135.38999938964844","","1950-08-24T00:00:00Z","","0" +"NM-27327","5.5","5.5","","1950-11-14T00:00:00Z","","0" +"NM-02196","28.43000030517578","28.43000030517578","","2004-06-24T00:00:00Z","","0" +"BC-0295","","299.9800109863281","","2023-03-30T00:00:00Z","","1.5" +"NM-23514","44.119998931884766","44.119998931884766","","2001-06-14T00:00:00Z","","0" +"NM-05737","88.98999786376953","88.98999786376953","","1957-01-16T00:00:00Z","","0" +"EB-267","16.43000030517578","16.43000030517578","","2013-07-10T00:00:00Z","","0" +"NM-13434","-22.950000762939453","-22.950000762939453","","1911-01-28T00:00:00Z","","0" +"NM-03391","23.290000915527344","23.290000915527344","","1988-11-28T00:00:00Z","","0" +"NM-03397","22.5","22.5","","1994-02-10T00:00:00Z","","0" +"NM-28253","2.140000104904175","2.140000104904175","","1997-02-15T00:00:00Z","","0" +"AB-0131","102.2699966430664","102.2699966430664","","1998-08-04T00:00:00Z","","0" +"NM-21693","76.08999633789062","76.08999633789062","","1958-02-13T00:00:00Z","","0" +"NM-17271","60.16999816894531","60.16999816894531","","1955-07-21T00:00:00Z","","0" +"NM-27429","16.639999389648438","16.639999389648438","","1940-01-23T00:00:00Z","","0" +"NM-11725","124.43000030517578","124.43000030517578","","1990-11-29T00:00:00Z","","0" +"NM-02831","43.59000015258789","43.59000015258789","","1962-03-01T00:00:00Z","","0" +"NM-03258","95.56999969482422","95.56999969482422","","2005-02-04T00:00:00Z","","0" +"NM-01769","42.599998474121094","42.599998474121094","","1981-01-12T00:00:00Z","","0" +"NM-07905","22.969999313354492","22.969999313354492","","1957-04-18T00:00:00Z","","0" +"NM-24482","3.009999990463257","3.009999990463257","","1988-03-03T00:00:00Z","","0" +"NM-02772","151.94000244140625","151.94000244140625","","1973-06-01T00:00:00Z","","0" +"NM-01884","12.100000381469727","12.100000381469727","","1996-01-11T00:00:00Z","","0" +"NM-02772","32.290000915527344","32.290000915527344","","2003-11-14T00:00:00Z","","0" +"BW-0461","293","293","","1954-03-10T00:00:00Z","","0" +"SB-0621","309.7799987792969","309.7799987792969","","1961-07-03T00:00:00Z","","0" +"SO-0154","12.149999618530273","11.339999198913574","","2020-10-02T00:00:00Z","","0.8100000023841858" +"NM-21630","490.0400085449219","490.0400085449219","","1998-06-01T00:00:00Z","","0" +"NM-02620","14.100000381469727","14.100000381469727","","1966-03-15T00:00:00Z","","0" +"NM-01769","38.970001220703125","38.970001220703125","","1953-01-23T00:00:00Z","","0" +"NM-09600","-91.08999633789062","-91.08999633789062","","1913-12-02T00:00:00Z","","0" +"NM-02396","5.800000190734863","5.800000190734863","","1998-11-15T00:00:00Z","","0" +"NM-17716","0.7400000095367432","0.7400000095367432","","1944-01-01T00:00:00Z","","0" +"NM-01739","161.6199951171875","161.6199951171875","","1982-03-04T00:00:00Z","","0" +"NM-01914","17.079999923706055","17.079999923706055","","1975-01-21T00:00:00Z","","0" +"NM-01841","258.8999938964844","258.8999938964844","","1983-01-21T00:00:00Z","","0" +"NM-07442","33.13999938964844","33.13999938964844","","1976-12-08T00:00:00Z","","0" +"NM-09722","12.260000228881836","12.260000228881836","","2016-04-07T00:00:00Z","","0" +"NM-12667","130.58999633789062","130.58999633789062","","1956-09-10T00:00:00Z","","0" +"NM-04840","56.31999969482422","56.31999969482422","","1954-03-03T00:00:00Z","","0" +"NM-01821","307.4700012207031","307.4700012207031","","1974-06-13T00:00:00Z","","0" +"NM-07275","10.1899995803833","10.1899995803833","","1954-05-18T00:00:00Z","","0" +"AB-0107","416.57000732421875","416.57000732421875","","1999-08-25T00:00:00Z","","" +"NM-27696","189.7899932861328","189.7899932861328","S","1982-03-31T00:00:00Z","","0" +"NM-22466","55.70000076293945","55.70000076293945","R","1990-08-14T00:00:00Z","","0" +"NM-00938","195.64999389648438","195.64999389648438","","1958-01-15T00:00:00Z","","0" +"NM-14031","36.650001525878906","36.650001525878906","","1984-02-09T00:00:00Z","","0" +"AB-0143","301","301","","1983-11-01T00:00:00Z","","0" +"NM-19057","375.0799865722656","375.0799865722656","","1977-01-14T00:00:00Z","","0" +"NM-03113","337.7699890136719","337.7699890136719","","1985-01-13T00:00:00Z","","0" +"EB-283","275.9599914550781","275.9599914550781","T","1994-07-13T00:00:00Z","","0" +"BC-0262","157.9600067138672","157.9600067138672","","2018-04-08T00:00:00Z","","0" +"NM-27720","50.279998779296875","50.279998779296875","S","1947-07-31T00:00:00Z","","0" +"NM-19782","70.58999633789062","70.58999633789062","","1951-01-09T00:00:00Z","","0" +"NM-01872","12.399999618530273","12.399999618530273","","1994-08-15T00:00:00Z","","0" +"NM-06038","41.04999923706055","41.04999923706055","","2013-07-09T00:00:00Z","","0" +"NM-00112","47.95000076293945","47.95000076293945","P","1992-11-04T00:00:00Z","","0" +"NM-00370","57.27000045776367","57.27000045776367","","2013-12-12T00:00:00Z","","0" +"NM-12051","41.2400016784668","41.2400016784668","","1950-01-15T00:00:00Z","","0" +"NM-13122","11.100000381469727","11.100000381469727","","1956-12-19T00:00:00Z","","0" +"WL-0236","193.85000610351562","192.1800079345703","","2021-05-28T00:00:00Z","0001-01-01T12:00:00Z","1.6699999570846558" +"EB-481","250","250","P","1990-05-31T00:00:00Z","","0" +"NM-01948","5.400000095367432","5.400000095367432","","1963-09-15T00:00:00Z","","0" +"NM-01717","23.010000228881836","23.010000228881836","","2013-07-09T00:00:00Z","","0" +"NM-01416","49.5","49.5","","1982-02-03T00:00:00Z","","0" +"NM-02669","55.34000015258789","55.34000015258789","","1972-01-01T00:00:00Z","","0" +"NM-05516","10.5","10.5","","1975-12-15T00:00:00Z","","0" +"NM-21617","","","D","2005-09-01T00:00:00Z","","0" +"NM-04927","25.059999465942383","25.059999465942383","","1949-03-21T00:00:00Z","","0" +"NM-02616","72.08999633789062","72.08999633789062","","2010-01-21T00:00:00Z","","0" +"NM-10063","7.139999866485596","7.139999866485596","","1973-04-27T00:00:00Z","","0" +"NM-10125","25.75","25.75","","1974-01-09T00:00:00Z","","0" +"NM-03078","137.9199981689453","137.9199981689453","","2004-09-16T00:00:00Z","","0" +"NM-20758","40.150001525878906","40.150001525878906","","1965-02-04T00:00:00Z","","0" +"NM-08518","39.34000015258789","39.34000015258789","","1961-03-08T00:00:00Z","","0" +"NM-06734","57.40999984741211","57.40999984741211","","1959-08-18T00:00:00Z","","0" +"SO-0170","5.360000133514404","5.03000020980835","","2019-11-06T00:00:00Z","0001-01-01T14:46:00Z","0.33000001311302185" +"NM-19735","23.100000381469727","23.100000381469727","","1986-05-13T00:00:00Z","","0" +"NM-01768","72.25","72.25","","1981-01-12T00:00:00Z","","0" +"NM-11487","18.200000762939453","18.200000762939453","","1960-05-18T00:00:00Z","","0" +"NM-26720","165.35000610351562","165.35000610351562","","1955-08-22T00:00:00Z","","0" +"NM-02591","11.899999618530273","11.899999618530273","","1979-07-15T00:00:00Z","","0" +"EB-012","98.97000122070312","98.97000122070312","","1958-06-23T00:00:00Z","","0" +"NM-12431","35.2599983215332","35.2599983215332","","1964-09-15T00:00:00Z","","0" +"NM-00507","45.38999938964844","45.38999938964844","","1962-01-30T00:00:00Z","","0" +"NM-01175","50.9900016784668","50.9900016784668","","1950-07-13T00:00:00Z","","0" +"NM-09919","176.19000244140625","176.19000244140625","","1986-03-25T00:00:00Z","","0" +"NM-17716","2.450000047683716","2.450000047683716","","1944-08-30T00:00:00Z","","0" +"NM-02017","6.800000190734863","6.800000190734863","","1989-11-15T00:00:00Z","","0" +"NM-28252","32.83000183105469","32.83000183105469","","1959-01-05T00:00:00Z","","0" +"EB-224","28.920000076293945","28.920000076293945","","2003-01-29T00:00:00Z","","0" +"NM-09589","60.2400016784668","60.2400016784668","","1954-07-28T00:00:00Z","","0" +"NM-02194","157.08999633789062","157.08999633789062","","1960-11-14T00:00:00Z","","0" +"NM-10786","178.4199981689453","178.4199981689453","","1975-11-06T00:00:00Z","","0" +"MG-038","108.47000122070312","107.04000091552734","","2015-05-15T00:00:00Z","","1.4299999475479126" +"NM-21939","7.829999923706055","7.829999923706055","","1956-10-18T00:00:00Z","","0" +"NM-28255","114.45999908447266","114.45999908447266","","1985-08-15T00:00:00Z","","0" +"NM-09148","338.05999755859375","338.05999755859375","","1942-08-14T00:00:00Z","","0" +"NM-28255","16.450000762939453","16.450000762939453","","1958-10-25T00:00:00Z","","0" +"NM-22717","","","W","2016-01-28T00:00:00Z","","0" +"NM-13731","56.38999938964844","56.38999938964844","","1969-01-13T00:00:00Z","","0" +"NM-12595","2.8499999046325684","2.8499999046325684","","1955-01-04T00:00:00Z","","0" +"NM-28256","193.58999633789062","193.58999633789062","","2013-10-04T00:00:00Z","","0" +"NM-03259","16.81999969482422","16.81999969482422","","1990-01-24T00:00:00Z","","0" +"QU-100","19.219999313354492","16.420000076293945","","2019-10-22T00:00:00Z","0001-01-01T14:18:00Z","2.799999952316284" +"NM-02518","6.099999904632568","6.099999904632568","","1989-10-15T00:00:00Z","","0" +"NM-03903","329.5299987792969","329.5299987792969","","1976-09-10T00:00:00Z","","0" +"DE-0320","32.11000061035156","32.11000061035156","","2015-06-09T00:00:00Z","","0" +"NM-03672","229.86000061035156","229.86000061035156","","1963-08-08T00:00:00Z","","0" +"NM-00044","48.09000015258789","48.09000015258789","","1980-02-05T00:00:00Z","","0" +"NM-25680","-99.47000122070312","-99.47000122070312","","1988-04-02T00:00:00Z","","0" +"EB-195","142.9499969482422","150.4499969482422","","2003-05-02T00:00:00Z","","-7.5" +"BC-0006","32.45000076293945","32.45000076293945","","2014-06-02T00:00:00Z","","0" +"NM-03034","74.72000122070312","74.72000122070312","","1997-01-14T00:00:00Z","","0" +"NM-01894","65.6500015258789","65.6500015258789","","1999-08-04T00:00:00Z","","0" +"NM-01926","6.5","6.5","","1963-10-15T00:00:00Z","","0" +"BC-0104","113.22000122070312","113.22000122070312","","2013-12-26T00:00:00Z","","0" +"NM-25680","-99.73999786376953","-99.73999786376953","","1988-03-03T00:00:00Z","","0" +"NM-14913","37.130001068115234","37.130001068115234","","2005-01-25T00:00:00Z","","0" +"NM-00718","148.16000366210938","148.16000366210938","","2012-03-28T00:00:00Z","","0" +"NM-27825","157.00999450683594","157.00999450683594","","1990-02-22T00:00:00Z","","0" +"NM-13878","-19.479999542236328","-19.479999542236328","","1910-05-21T00:00:00Z","","0" +"NM-21566","6.019999980926514","6.019999980926514","Z","2004-01-16T00:00:00Z","","0" +"SB-0299","149.52999877929688","149.52999877929688","","2014-08-30T00:00:00Z","","0" +"NM-06262","405.54998779296875","405.54998779296875","","1979-06-01T00:00:00Z","","0" +"NM-02487","12.520000457763672","12.520000457763672","","2014-03-11T00:00:00Z","","0" +"NM-02270","27.420000076293945","27.420000076293945","","1984-03-07T00:00:00Z","","0" +"NM-17716","8.25","8.25","","1940-08-24T00:00:00Z","","0" +"NM-11920","2.4700000286102295","2.4700000286102295","","1954-11-18T00:00:00Z","","0" +"NM-28255","186.91000366210938","186.91000366210938","","2012-07-17T00:00:00Z","","0" +"NM-10745","63.34000015258789","63.34000015258789","","1977-01-07T00:00:00Z","","0" +"NM-03394","19.1299991607666","19.1299991607666","","1988-12-27T00:00:00Z","","0" +"NM-02352","7.800000190734863","7.800000190734863","","1998-05-15T00:00:00Z","","0" +"AB-0041","11.350000381469727","11.350000381469727","","2014-02-24T00:00:00Z","","0" +"NM-13162","13.949999809265137","13.949999809265137","","1953-03-11T00:00:00Z","","0" +"NM-16914","20.25","20.25","","1966-03-08T00:00:00Z","","0" +"NM-17716","5.150000095367432","5.150000095367432","","1949-09-29T00:00:00Z","","0" +"NM-03342","13.109999656677246","13.109999656677246","","2000-08-21T00:00:00Z","","0" +"NM-02004","9","9","","1955-07-15T00:00:00Z","","0" +"NM-09817","41.130001068115234","41.130001068115234","","1940-05-27T00:00:00Z","","0" +"NM-11551","80.5","80.5","","1956-01-04T00:00:00Z","","0" +"NM-03468","152.5800018310547","152.5800018310547","Z","1996-10-30T00:00:00Z","","0" +"NM-01010","","","O","2015-01-27T00:00:00Z","","0" +"NM-21680","327.3800048828125","327.3800048828125","","2003-07-24T00:00:00Z","","0" +"NM-27598","89.48999786376953","89.48999786376953","","1971-12-13T00:00:00Z","","0" +"NM-03679","201.13999938964844","201.13999938964844","","1962-08-21T00:00:00Z","","0" +"NM-28202","35.369998931884766","35.369998931884766","","1971-02-02T00:00:00Z","","0" +"EB-296","526.1699829101562","526.1699829101562","","2014-07-25T00:00:00Z","","0" +"WL-0089","55.70833206176758","53.15833282470703","","1998-04-09T00:00:00Z","","2.549999952316284" +"NM-11928","0.699999988079071","0.699999988079071","","1956-12-05T00:00:00Z","","0" +"UC-0033","102.08000183105469","102.08000183105469","","1998-06-26T00:00:00Z","","0" +"NM-02027","65.8499984741211","65.8499984741211","","1968-01-23T00:00:00Z","","0" +"NM-12753","145.3000030517578","145.3000030517578","","1979-01-31T00:00:00Z","","0" +"UC-0009","280.92999267578125","280.92999267578125","","2009-02-24T00:00:00Z","","0" +"NM-28250","82.91999816894531","82.91999816894531","","1992-05-05T00:00:00Z","","0" +"NM-01893","23.31999969482422","23.31999969482422","","1996-06-19T00:00:00Z","","0" +"NM-13594","10.34000015258789","10.34000015258789","","1959-02-12T00:00:00Z","","0" +"NM-11578","24.31999969482422","24.31999969482422","","1943-01-19T00:00:00Z","","0" +"NM-07154","98.80000305175781","98.80000305175781","","2007-01-10T00:00:00Z","","0" +"SV-0075","318.1000061035156","316.67999267578125","","2017-08-05T00:00:00Z","","1.4199999570846558" +"NM-01454","595.0999755859375","595.0999755859375","R","1988-02-24T00:00:00Z","","0" +"NM-12967","2.390000104904175","2.390000104904175","","1978-05-01T00:00:00Z","","0" +"NM-02285","8.140000343322754","8.140000343322754","","2007-01-29T00:00:00Z","","0" +"NM-00645","32.09000015258789","32.09000015258789","","1998-08-26T00:00:00Z","","0" +"NM-01875","182.0800018310547","182.0800018310547","","1976-08-03T00:00:00Z","","0" +"NM-03342","12.890000343322754","12.890000343322754","X","1996-12-27T00:00:00Z","","0" +"NM-22786","20.780000686645508","20.780000686645508","","1953-08-19T00:00:00Z","","0" +"NM-01547","-51.5099983215332","-51.5099983215332","E","1987-04-01T00:00:00Z","","0" +"NM-21345","161.38999938964844","161.38999938964844","R","1992-01-16T00:00:00Z","","0" +"EB-207","176.3000030517578","176.3000030517578","","1979-01-16T00:00:00Z","","0" +"BC-0256","269.989990234375","269.989990234375","","2020-04-28T00:00:00Z","","0" +"NM-02658","239.3000030517578","239.3000030517578","","1954-09-16T00:00:00Z","","0" +"NM-02256","4","4","","2001-09-15T00:00:00Z","","0" +"NM-03903","328.05999755859375","328.05999755859375","","1974-10-17T00:00:00Z","","0" +"NM-00200","48.75","48.75","","1998-01-07T00:00:00Z","","0" +"NM-02591","15","15","","1980-12-15T00:00:00Z","","0" +"NM-03827","13.579999923706055","13.579999923706055","","1956-05-11T00:00:00Z","","0" +"EB-336","209.36000061035156","209.36000061035156","","2004-11-09T00:00:00Z","","0" +"BC-0137","664.9500122070312","664.9500122070312","","2012-03-14T00:00:00Z","","0" +"NM-08650","165.2899932861328","165.2899932861328","","2008-01-15T00:00:00Z","","0" +"WL-0086","37.02083206176758","35.260833740234375","","1988-02-11T00:00:00Z","","1.7599999904632568" +"NM-02702","51.869998931884766","51.869998931884766","","1998-06-15T00:00:00Z","","0" +"NM-07770","26.81999969482422","26.81999969482422","","1976-01-30T00:00:00Z","","0" +"EB-619","415.17999267578125","413.2799987792969","","2005-06-03T00:00:00Z","","1.899999976158142" +"NM-05497","93.58000183105469","93.58000183105469","","1953-09-17T00:00:00Z","","0" +"NM-10924","48.0099983215332","48.0099983215332","","1956-01-12T00:00:00Z","","0" +"EB-357","238.8070068359375","236.8070068359375","T","2002-01-30T00:00:00Z","","2" +"EB-265","164.74000549316406","164.74000549316406","","2004-06-22T00:00:00Z","","0" +"SB-0299","118.80999755859375","118.80999755859375","","1999-03-15T00:00:00Z","","0" +"BC-0001","344.75","344.75","","2013-03-18T00:00:00Z","","0" +"NM-16780","24.690000534057617","24.690000534057617","","1950-01-09T00:00:00Z","","0" +"NM-07167","143.13999938964844","143.13999938964844","","1974-01-24T00:00:00Z","","0" +"NM-10674","-58.75","-58.75","","1910-02-18T00:00:00Z","","0" +"NM-14802","83.27999877929688","83.27999877929688","","1960-12-01T00:00:00Z","","0" +"NM-02335","223","223","","1975-02-25T00:00:00Z","","0" +"NM-18281","292.44000244140625","292.44000244140625","","2000-08-10T00:00:00Z","","0" +"NM-13914","-10.239999771118164","-10.239999771118164","","1911-12-20T00:00:00Z","","0" +"NM-01249","65.19000244140625","65.19000244140625","","1957-10-02T00:00:00Z","","0" +"NM-08505","60.599998474121094","60.599998474121094","","1939-08-25T00:00:00Z","","0" +"NM-28254","97.80000305175781","97.80000305175781","","1968-08-05T00:00:00Z","","0" +"AB-0180","159.55999755859375","159.55999755859375","","2006-07-19T00:00:00Z","","" +"NM-26642","199.02999877929688","199.02999877929688","","2011-11-10T00:00:00Z","","0" +"AB-0184","342.489990234375","342.489990234375","","2014-10-08T00:00:00Z","","" +"NM-24754","94.69999694824219","94.69999694824219","","1957-04-23T00:00:00Z","","0" +"NM-13122","11.300000190734863","11.300000190734863","","1959-11-16T00:00:00Z","","0" +"AB-0039","334.8999938964844","334.8999938964844","","2016-03-14T00:00:00Z","","0" +"NM-08692","12.199999809265137","12.199999809265137","","1957-01-15T00:00:00Z","","0" +"NM-02006","7.699999809265137","7.699999809265137","","1962-05-15T00:00:00Z","","0" +"NM-00644","113.5","113.5","","1983-09-26T00:00:00Z","","0" +"NM-22466","155","155","T","1984-10-06T00:00:00Z","","0" +"NM-20620","26.68000030517578","26.68000030517578","","1948-03-24T00:00:00Z","","0" +"NM-03069","220.27999877929688","220.27999877929688","","1994-01-05T00:00:00Z","","0" +"SA-0077","265.92999267578125","264.1400146484375","","2024-02-21T00:00:00Z","0001-01-01T09:37:00Z","1.7899999618530273" +"BW-0397","77","77","","1955-01-06T00:00:00Z","","0" +"NM-02412","13.760000228881836","13.760000228881836","","1949-05-17T00:00:00Z","","0" +"NM-08648","40.72999954223633","40.72999954223633","","1957-03-06T00:00:00Z","","0" +"NM-28255","182.83999633789062","182.83999633789062","","1974-07-15T00:00:00Z","","0" +"NM-02772","73.33000183105469","73.33000183105469","","1972-10-01T00:00:00Z","","0" +"NM-14261","27.469999313354492","27.469999313354492","","1959-07-28T00:00:00Z","","0" +"NM-03418","287.9800109863281","287.9800109863281","","1988-03-30T00:00:00Z","","0" +"NM-00366","99.54000091552734","99.54000091552734","","2010-01-04T00:00:00Z","","0" +"NM-14345","36.439998626708984","36.439998626708984","R","1971-04-02T00:00:00Z","","0" +"NM-16500","64.04000091552734","64.04000091552734","","1972-01-12T00:00:00Z","","0" +"NM-28254","58.43000030517578","58.43000030517578","","1947-07-05T00:00:00Z","","0" +"NM-02563","31.549999237060547","31.549999237060547","","1958-08-27T00:00:00Z","","0" +"NM-07974","55.959999084472656","55.959999084472656","","1943-01-29T00:00:00Z","","0" +"NM-18591","60.38999938964844","60.38999938964844","","1972-01-20T00:00:00Z","","0" +"BC-0069","72.7699966430664","72.7699966430664","","2015-03-11T00:00:00Z","","0" +"NM-28254","104.0999984741211","104.0999984741211","","1981-03-25T00:00:00Z","","0" +"NM-02286","10.170000076293945","10.170000076293945","","2005-02-17T00:00:00Z","","0" +"NM-21505","4.230000019073486","4.230000019073486","","1959-07-07T00:00:00Z","","0" +"AB-0074","17.43000030517578","17.43000030517578","","1999-05-11T00:00:00Z","","" +"NM-20198","348","348","","1982-01-06T00:00:00Z","","0" +"NM-02466","70.3499984741211","70.3499984741211","","1957-08-15T00:00:00Z","","0" +"SO-0251","12.880000114440918","11.3100004196167","","2020-12-15T00:00:00Z","","1.5700000524520874" +"AB-0026","898","898","","1990-05-03T00:00:00Z","","0" +"NM-02560","111.4000015258789","111.4000015258789","","1967-01-01T00:00:00Z","","0" +"NM-02655","49.97999954223633","49.97999954223633","","1950-01-11T00:00:00Z","","0" +"NM-28258","93.25","93.25","","1993-02-05T00:00:00Z","","0" +"NM-28255","114.76000213623047","114.76000213623047","","1965-05-25T00:00:00Z","","0" +"NM-13213","11.279999732971191","11.279999732971191","","1959-09-10T00:00:00Z","","0" +"NM-14927","115.6500015258789","115.6500015258789","","1975-01-17T00:00:00Z","","0" +"NM-16780","22.440000534057617","22.440000534057617","","1946-09-27T00:00:00Z","","0" +"NM-24955","27.969999313354492","27.969999313354492","","1971-08-18T00:00:00Z","","0" +"NM-02382","55.709999084472656","55.709999084472656","","1980-01-09T00:00:00Z","","0" +"NM-28259","132.57000732421875","132.57000732421875","","1995-04-25T00:00:00Z","","0" +"NM-00260","39.06999969482422","39.06999969482422","","1986-03-04T00:00:00Z","","0" +"NM-07760","28","28","","1992-04-01T00:00:00Z","","0" +"NM-03421","32.7400016784668","32.7400016784668","","1987-12-22T00:00:00Z","","0" +"NM-16755","14.800000190734863","14.800000190734863","","1950-01-11T00:00:00Z","","0" +"AR-0021","35.72999954223633","34.93000030517578","R","2016-06-01T00:00:00Z","","0.800000011920929" +"DE-0268","84.95999908447266","84.95999908447266","","2016-06-20T00:00:00Z","","0" +"NM-04184","472.4700012207031","472.4700012207031","","1969-01-23T00:00:00Z","","0" +"NM-28253","17.799999237060547","17.799999237060547","","1961-11-05T00:00:00Z","","0" +"NM-22684","5.800000190734863","5.800000190734863","Z","2009-06-03T00:00:00Z","","0" +"NM-00094","-0.3400000035762787","-0.3400000035762787","","1955-01-01T00:00:00Z","","0" +"EB-478","375.989990234375","375.989990234375","Z","2008-10-31T00:00:00Z","","0" +"NM-18083","72.04000091552734","72.04000091552734","","2002-06-04T00:00:00Z","","0" +"NM-00699","5.420000076293945","5.420000076293945","R","2010-03-22T00:00:00Z","","0" +"NM-19385","57.41999816894531","57.41999816894531","","1959-02-02T00:00:00Z","","0" +"NM-13145","14.75","14.75","","1958-12-15T00:00:00Z","","0" +"NM-21060","45.43000030517578","45.43000030517578","","1995-03-24T00:00:00Z","","0" +"NM-02314","10.5","10.5","","1975-12-15T00:00:00Z","","0" +"SA-0469","64","64","","1952-11-17T00:00:00Z","","0" +"NM-17716","6.139999866485596","6.139999866485596","","1948-10-16T00:00:00Z","","0" +"NM-01080","92.80000305175781","92.80000305175781","","1982-01-20T00:00:00Z","","0" +"NM-08071","11","11","","1978-02-15T00:00:00Z","","0" +"NM-03636","64.33000183105469","64.33000183105469","","1991-01-26T00:00:00Z","","0" +"NM-09832","46.88999938964844","46.88999938964844","","1962-02-02T00:00:00Z","","0" +"NM-17542","33.66999816894531","33.66999816894531","P","1942-03-27T00:00:00Z","","0" +"NM-13928","-88.77999877929688","-88.77999877929688","","1905-06-19T00:00:00Z","","0" +"NM-10533","84.69000244140625","84.69000244140625","","1989-02-15T00:00:00Z","","0" +"NM-01824","122.19000244140625","122.19000244140625","","1998-07-07T00:00:00Z","","0" +"NM-24795","148.00999450683594","148.00999450683594","","1963-06-11T00:00:00Z","","0" +"NM-02250","54.11000061035156","54.11000061035156","","1980-01-09T00:00:00Z","","0" +"NM-11318","16.600000381469727","16.600000381469727","","1975-09-25T00:00:00Z","","0" +"EB-217","57.58000183105469","56.28000259399414","","1974-07-08T00:00:00Z","","1.2999999523162842" +"NM-28255","154.66000366210938","154.66000366210938","","1976-06-05T00:00:00Z","","0" +"NM-18281","300.04998779296875","300.04998779296875","","2003-08-20T00:00:00Z","","0" +"NM-00621","70.87000274658203","70.87000274658203","","1972-01-14T00:00:00Z","","0" +"SA-0010","189.91000366210938","189.91000366210938","","1996-02-08T00:00:00Z","","0" +"NM-17569","52.029998779296875","52.029998779296875","","1958-01-28T00:00:00Z","","0" +"NM-05241","232.9199981689453","232.9199981689453","","1980-01-08T00:00:00Z","","0" +"NM-04022","199.89999389648438","199.89999389648438","","1957-03-07T00:00:00Z","","0" +"NM-19432","280.9100036621094","280.9100036621094","","2015-02-12T00:00:00Z","","0" +"BC-0016","52.650001525878906","52.650001525878906","","2013-06-14T00:00:00Z","","0" +"WL-0098","233.05999755859375","233.05999755859375","","2020-09-29T00:00:00Z","0001-01-01T11:24:00Z","0" +"NM-01278","114.55000305175781","114.55000305175781","","1994-01-26T00:00:00Z","","0" +"SA-0248","9.460000038146973","9.460000038146973","","2017-02-20T00:00:00Z","0001-01-01T15:33:00Z","0" +"TO-0089","71.19999694824219","71.19999694824219","","1950-02-08T00:00:00Z","","0" +"NM-00075","35.54999923706055","35.54999923706055","","1953-08-27T00:00:00Z","","0" +"NM-12953","36.560001373291016","36.560001373291016","P","1981-02-26T00:00:00Z","","0" +"EB-270","227.99000549316406","227.99000549316406","","2001-01-08T00:00:00Z","","0" +"NM-18967","130","130","","1955-03-22T00:00:00Z","","0" +"NM-00921","8.819999694824219","8.819999694824219","P","1962-01-16T00:00:00Z","","0" +"NM-21345","148.61000061035156","148.61000061035156","R","1992-04-22T00:00:00Z","","0" +"NM-27237","47.400001525878906","47.400001525878906","","1972-03-09T00:00:00Z","","0" +"AB-0037","329.3900146484375","329.3900146484375","","1997-01-17T00:00:00Z","","" +"TB-0020","18.25","16.850000381469727","","2010-06-14T00:00:00Z","","1.399999976158142" +"NM-28252","67.69000244140625","67.69000244140625","","1975-06-15T00:00:00Z","","0" +"DE-0112","39.810001373291016","39.810001373291016","","2008-01-02T00:00:00Z","","0" +"AR-0059","33.029998779296875","31.729999542236328","","2015-08-19T00:00:00Z","","1.2999999523162842" +"DE-0154","77.7300033569336","77.7300033569336","","2011-10-24T00:00:00Z","","0" +"NM-02669","60.130001068115234","60.130001068115234","","1980-03-01T00:00:00Z","","0" +"NM-16192","106.79000091552734","106.79000091552734","","1975-02-19T00:00:00Z","","0" +"NM-02163","13.380000114440918","13.380000114440918","","2009-05-11T00:00:00Z","","0" +"NM-01127","95.22000122070312","95.22000122070312","R","1968-01-18T00:00:00Z","","0" +"EB-012","128.5500030517578","128.5500030517578","","1969-03-03T00:00:00Z","","0" +"NM-23010","347.989990234375","347.989990234375","Z","1991-05-01T00:00:00Z","","0" +"UC-0104","72.94000244140625","72.94000244140625","","2013-03-07T00:00:00Z","","0" +"NM-28254","57","57","","1961-10-25T00:00:00Z","","0" +"AB-0144","512.9400024414062","512.9400024414062","","2006-02-15T00:00:00Z","","" +"NM-02256","4.900000095367432","4.900000095367432","","1992-08-15T00:00:00Z","","0" +"NM-11066","126.05000305175781","126.05000305175781","S","1955-08-25T00:00:00Z","","0" +"NM-13106","5.96999979019165","5.96999979019165","","1979-05-28T00:00:00Z","","0" +"NM-02281","24.049999237060547","24.049999237060547","","2003-05-19T00:00:00Z","","0" +"NM-02758","293.9599914550781","293.9599914550781","","1988-01-19T00:00:00Z","","0" +"NM-13455","26.170000076293945","26.170000076293945","","1996-02-13T00:00:00Z","","0" +"NM-05869","44.220001220703125","44.220001220703125","","1949-01-20T00:00:00Z","","0" +"NM-02620","12.5","12.5","","1973-03-15T00:00:00Z","","0" +"SB-0299","112.63999938964844","112.63999938964844","","1991-02-12T00:00:00Z","","0" +"NM-27535","134.67999267578125","134.67999267578125","","1982-03-24T00:00:00Z","","0" +"NM-22296","30.90999984741211","30.90999984741211","","1988-11-28T00:00:00Z","","0" +"NM-28254","8.199999809265137","8.199999809265137","","2001-01-16T00:00:00Z","","0" +"NM-28254","78.9800033569336","78.9800033569336","","1974-03-05T00:00:00Z","","0" +"EB-014","232.69000244140625","240.38999938964844","","2005-03-29T00:00:00Z","","-7.699999809265137" +"NM-09716","-86.47000122070312","-86.47000122070312","","1908-06-16T00:00:00Z","","0" +"NM-03903","330.5400085449219","330.5400085449219","","1974-08-25T00:00:00Z","","0" +"NM-00355","10.020000457763672","10.020000457763672","","1970-01-06T00:00:00Z","","0" +"UC-0117","103.8499984741211","103.8499984741211","","1981-01-29T00:00:00Z","","0" +"SO-0199","28.010000228881836","27.3700008392334","","2021-02-12T00:00:00Z","0001-01-01T14:00:00Z","0.6399999856948853" +"NM-02424","30.899999618530273","30.899999618530273","","1952-05-22T00:00:00Z","","0" +"NM-28157","","","F","1954-05-31T00:00:00Z","","0" +"NM-27393","121.87999725341797","121.87999725341797","","1979-03-08T00:00:00Z","","0" +"SB-0166","248.14999389648438","248.14999389648438","","1993-02-18T00:00:00Z","","0" +"NM-04591","64.81999969482422","64.81999969482422","P","1948-05-25T00:00:00Z","","0" +"NM-20054","65.98999786376953","65.98999786376953","","1952-02-20T00:00:00Z","","0" +"NM-23336","113.20999908447266","113.20999908447266","","1953-12-17T00:00:00Z","","0" +"NM-00355","9.279999732971191","9.279999732971191","","1976-01-14T00:00:00Z","","0" +"NM-10214","33.119998931884766","33.119998931884766","","1948-01-17T00:00:00Z","","0" +"NM-03380","71.79000091552734","71.79000091552734","","2003-02-11T00:00:00Z","","0" +"NM-09074","-107.26000213623047","-107.26000213623047","","1906-04-17T00:00:00Z","","0" +"NM-13263","8.649999618530273","8.649999618530273","","1938-02-05T00:00:00Z","","0" +"NM-14481","44.47999954223633","44.47999954223633","","1962-01-22T00:00:00Z","","0" +"NM-28255","83.05000305175781","83.05000305175781","","1953-06-25T00:00:00Z","","0" +"NM-21622","8.170000076293945","8.170000076293945","","2007-11-20T00:00:00Z","","0" +"NM-18993","62.70000076293945","62.70000076293945","","1972-02-10T00:00:00Z","","0" +"NM-05447","23.139999389648438","23.139999389648438","","1963-01-05T00:00:00Z","","0" +"NM-27367","140.08999633789062","140.08999633789062","","1993-07-02T00:00:00Z","","0" +"NM-11039","49.150001525878906","49.150001525878906","","1981-01-16T00:00:00Z","","0" +"SO-0223","11.010000228881836","10.220000267028809","","2019-08-30T00:00:00Z","0001-01-01T10:19:00Z","0.7900000214576721" +"NM-23086","11.600000381469727","11.600000381469727","","1988-02-18T00:00:00Z","","0" +"SO-0183","10.949999809265137","10.630000114440918","","2020-11-13T00:00:00Z","","0.3199999928474426" +"NM-08189","8.5","8.5","","1961-08-15T00:00:00Z","","0" +"SM-0002","150.7899932861328","149.01998901367188","","2008-05-22T00:00:00Z","","1.7699999809265137" +"NM-01994","386.5199890136719","386.5199890136719","","1994-02-07T00:00:00Z","","0" +"NM-03354","75.75","75.75","","1949-05-03T00:00:00Z","","0" +"NM-17690","6.769999980926514","6.769999980926514","","1983-10-27T00:00:00Z","","0" +"NM-02168","9.390000343322754","9.390000343322754","","2005-09-08T00:00:00Z","","0" +"NM-03355","32.310001373291016","32.310001373291016","Z","1997-03-26T00:00:00Z","","0" +"NM-03004","53.34000015258789","53.34000015258789","","1958-01-25T00:00:00Z","","0" +"NM-13843","-3.309999942779541","-3.309999942779541","","1914-08-25T00:00:00Z","","0" +"NM-10491","51.099998474121094","51.099998474121094","","1942-02-03T00:00:00Z","","0" +"NM-27194","366.2300109863281","366.2300109863281","","2009-10-29T00:00:00Z","","0" +"SV-0077","266","263.3299865722656","","2017-02-18T00:00:00Z","","2.6700000762939453" +"NM-13852","-10.239999771118164","-10.239999771118164","","1907-11-30T00:00:00Z","","0" +"NM-14183","18.489999771118164","18.489999771118164","","1937-12-21T00:00:00Z","","0" +"NM-17684","157.89999389648438","157.89999389648438","","1974-07-25T00:00:00Z","","0" +"NM-09682","463.8399963378906","463.8399963378906","","1958-08-01T00:00:00Z","","0" +"NM-02591","16","16","","2003-05-15T00:00:00Z","","0" +"NM-07760","35","35","","1993-10-01T00:00:00Z","","0" +"NM-02702","15.989999771118164","15.989999771118164","","2005-04-18T00:00:00Z","","0" +"NM-22786","22.299999237060547","22.299999237060547","","1953-06-23T00:00:00Z","","0" +"NM-10098","-86.47000122070312","-86.47000122070312","","1908-08-27T00:00:00Z","","0" +"NM-28009","498.6300048828125","498.6300048828125","S","2015-06-01T00:00:00Z","","0" +"NM-17104","71.16999816894531","71.16999816894531","","1959-01-08T00:00:00Z","","0" +"NM-05347","13.199999809265137","13.199999809265137","","1965-02-15T00:00:00Z","","0" +"NM-17271","57.33000183105469","57.33000183105469","","1954-07-01T00:00:00Z","","0" +"NM-28259","98.37000274658203","98.37000274658203","","1974-01-05T00:00:00Z","","0" +"NM-12400","50.58000183105469","50.58000183105469","","1939-11-03T00:00:00Z","","0" +"NM-19887","30.950000762939453","30.950000762939453","","1952-11-24T00:00:00Z","","0" +"NM-08267","13.670000076293945","13.670000076293945","","1944-01-06T00:00:00Z","","0" +"NM-12844","12.050000190734863","12.050000190734863","","1959-11-17T00:00:00Z","","0" +"NM-02831","49.560001373291016","49.560001373291016","","1962-05-01T00:00:00Z","","0" +"NM-23336","112.5199966430664","112.5199966430664","","1955-12-07T00:00:00Z","","0" +"NM-26508","66.16000366210938","66.16000366210938","","2004-06-01T00:00:00Z","","0" +"EB-483","344","344","P","1992-04-30T00:00:00Z","","0" +"NM-10629","124.16999816894531","124.16999816894531","","1986-01-20T00:00:00Z","","0" +"NM-00229","67.2699966430664","67.2699966430664","","2010-09-21T00:00:00Z","","0" +"DE-0129","40.880001068115234","40.880001068115234","","2013-07-02T00:00:00Z","","0" +"NM-02383","36.709999084472656","36.709999084472656","","1985-08-01T00:00:00Z","","0" +"EB-230","95.9000015258789","100.6500015258789","","2005-03-29T00:00:00Z","","-4.75" +"NM-21556","4.789999961853027","4.789999961853027","Z","2009-05-18T00:00:00Z","","0" +"NM-15027","185.4199981689453","185.4199981689453","","1985-01-23T00:00:00Z","","0" +"NM-17028","20.479999542236328","20.479999542236328","","1943-01-31T00:00:00Z","","0" +"NM-02591","13.199999809265137","13.199999809265137","","1981-05-15T00:00:00Z","","0" +"NM-11663","63.369998931884766","63.369998931884766","","1986-01-22T00:00:00Z","","0" +"NM-17034","16.729999542236328","16.729999542236328","","1942-01-28T00:00:00Z","","0" +"NM-03281","22.649999618530273","22.649999618530273","","1953-02-19T00:00:00Z","","0" +"NM-07510","24.200000762939453","24.200000762939453","","1961-06-28T00:00:00Z","","0" +"AB-0144","474.29998779296875","474.29998779296875","","1985-02-01T00:00:00Z","","" +"BC-0099","14.649999618530273","14.649999618530273","R","1991-02-14T00:00:00Z","","0" +"NM-28250","77.7300033569336","77.7300033569336","","1997-03-15T00:00:00Z","","0" +"NM-09787","59.400001525878906","59.400001525878906","","1958-08-26T00:00:00Z","","0" +"EB-651","78.44000244140625","78.44000244140625","","2008-04-09T00:00:00Z","","0" +"NM-23057","54.40999984741211","54.40999984741211","","1946-11-07T00:00:00Z","","0" +"NM-02501","46.689998626708984","46.689998626708984","","1939-01-10T00:00:00Z","","0" +"NM-00644","144.9199981689453","144.9199981689453","Z","1998-07-31T00:00:00Z","","0" +"NM-03463","202.24000549316406","202.24000549316406","","1950-06-28T00:00:00Z","","0" +"UC-0006","289.17999267578125","289.17999267578125","","1996-01-24T00:00:00Z","","0" +"NM-20233","302.9700012207031","302.9700012207031","","1954-11-24T00:00:00Z","","0" +"NM-24338","51.36000061035156","51.36000061035156","","1980-10-20T00:00:00Z","","0" +"NM-28253","27.979999542236328","27.979999542236328","","1965-11-15T00:00:00Z","","0" +"NM-17716","0.41999998688697815","0.41999998688697815","","1943-05-13T00:00:00Z","","0" +"NM-03689","118.51000213623047","118.51000213623047","","1961-11-27T00:00:00Z","","0" +"NM-18936","343.95001220703125","343.95001220703125","","1975-01-06T00:00:00Z","","0" +"NM-09026","11.489999771118164","11.489999771118164","","1984-02-01T00:00:00Z","","0" +"NM-09740","-190.4199981689453","-190.4199981689453","","1904-11-01T00:00:00Z","","0" +"NM-28257","13.779999732971191","13.779999732971191","","1976-01-25T00:00:00Z","","0" +"NM-27951","36.25","36.25","","1957-12-05T00:00:00Z","","0" +"NM-01499","92.97000122070312","92.97000122070312","","2013-04-04T00:00:00Z","","0" +"NM-17271","40.2400016784668","40.2400016784668","","1947-01-20T00:00:00Z","","0" +"NM-07881","11.770000457763672","11.770000457763672","","1934-08-19T00:00:00Z","","0" +"NM-28250","100.23999786376953","100.23999786376953","","1985-02-05T00:00:00Z","","0" +"NM-04627","106.33000183105469","106.33000183105469","","1953-04-23T00:00:00Z","","0" +"NM-28258","207.89999389648438","207.89999389648438","","1977-07-15T00:00:00Z","","0" +"NM-28255","25.709999084472656","25.709999084472656","","1982-12-15T00:00:00Z","","0" +"NM-02240","43.29999923706055","43.29999923706055","","1970-01-21T00:00:00Z","","0" +"UC-0116","122.83000183105469","122.83000183105469","","2012-01-04T00:00:00Z","","0" +"NM-11562","40.06999969482422","40.06999969482422","","1940-02-04T00:00:00Z","","0" +"NM-28254","22.1200008392334","22.1200008392334","","1955-12-25T00:00:00Z","","0" +"NM-19858","53.279998779296875","53.279998779296875","P","1945-04-08T00:00:00Z","","0" +"NM-01545","76.97000122070312","76.97000122070312","","1995-08-12T00:00:00Z","","0" +"NM-18347","199.63999938964844","199.63999938964844","","1959-01-14T00:00:00Z","","0" +"NM-14802","103.69999694824219","103.69999694824219","","1983-05-25T00:00:00Z","","0" +"NM-02209","98","98","","1955-01-01T00:00:00Z","","0" +"NM-04404","87.41000366210938","87.41000366210938","","1950-12-04T00:00:00Z","","0" +"NM-15042","44","44","","1900-05-01T00:00:00Z","","0" +"NM-10732","36.47999954223633","36.47999954223633","","1938-05-17T00:00:00Z","","0" +"NM-11383","40.38999938964844","40.38999938964844","","1944-09-17T00:00:00Z","","0" +"NM-02381","48.54999923706055","48.54999923706055","","1948-12-21T00:00:00Z","","0" +"SM-0049","252.3699951171875","250.47000122070312","","2007-05-10T00:00:00Z","","1.899999976158142" +"NM-13920","-9.65999984741211","-9.65999984741211","","1907-06-10T00:00:00Z","","0" +"NM-03336","13.470000267028809","13.470000267028809","Z","2010-02-24T00:00:00Z","","0" +"NM-21256","2.7699999809265137","2.7699999809265137","Z","2005-06-01T00:00:00Z","","0" +"NM-05718","94.05999755859375","94.05999755859375","","1949-11-17T00:00:00Z","","0" +"SB-0299","129.4600067138672","129.4600067138672","","1995-09-30T00:00:00Z","","0" +"NM-02043","6","6","","1972-08-15T00:00:00Z","","0" +"NM-10090","145.69000244140625","145.69000244140625","","1972-01-14T00:00:00Z","","0" +"NM-01345","283.2799987792969","283.2799987792969","","2010-03-18T00:00:00Z","","0" +"NM-19611","189.0800018310547","189.0800018310547","","1977-02-22T00:00:00Z","","0" +"BC-0044","151.27999877929688","151.27999877929688","","2017-01-30T00:00:00Z","","0" +"NM-01247","37.5","37.5","","1973-01-30T00:00:00Z","","0" +"NM-17452","52.56999969482422","52.56999969482422","","1948-07-29T00:00:00Z","","0" +"NM-21580","6.380000114440918","6.380000114440918","Z","2008-10-27T00:00:00Z","","0" +"NM-01891","34.91999816894531","34.91999816894531","","2001-03-19T00:00:00Z","","0" +"NM-07244","442.3999938964844","442.3999938964844","","2010-07-01T00:00:00Z","","0" +"NM-11675","39.68000030517578","39.68000030517578","","1938-01-28T00:00:00Z","","0" +"NM-03458","120.70999908447266","120.70999908447266","","1998-04-09T00:00:00Z","","0" +"NM-10239","3.559999942779541","3.559999942779541","","1950-01-11T00:00:00Z","","0" +"NM-00608","99.58999633789062","99.58999633789062","","2007-01-11T00:00:00Z","","0" +"NM-00366","127.56999969482422","127.56999969482422","","1978-10-01T00:00:00Z","","0" +"BC-0022","63.41999816894531","63.41999816894531","","2017-06-12T00:00:00Z","","0" +"NM-23836","79.18000030517578","79.18000030517578","","1984-06-12T00:00:00Z","","0" +"NM-03258","41.59000015258789","41.59000015258789","","1961-12-05T00:00:00Z","","0" +"NM-21862","257.6499938964844","257.6499938964844","","2009-12-01T00:00:00Z","","0" +"NM-21052","151.5500030517578","151.5500030517578","","1972-03-01T00:00:00Z","","0" +"NM-04586","54.939998626708984","54.939998626708984","","1948-04-01T00:00:00Z","","0" +"TB-0017","158.5","157.3000030517578","","2009-12-17T00:00:00Z","","1.2000000476837158" +"NM-13938","26.440000534057617","26.440000534057617","","1963-09-30T00:00:00Z","","0" +"NM-28255","13.109999656677246","13.109999656677246","","2015-01-05T00:00:00Z","","0" +"NM-15028","206.86000061035156","206.86000061035156","","1963-01-15T00:00:00Z","","0" +"NM-08783","91.04000091552734","91.04000091552734","","1944-01-10T00:00:00Z","","0" +"NM-21636","","","D","2004-06-28T00:00:00Z","","0" +"NM-13846","-12.199999809265137","-12.199999809265137","","1909-03-03T00:00:00Z","","0" +"NM-27466","112.68000030517578","112.68000030517578","","2015-01-28T00:00:00Z","","0" +"NM-11339","11.300000190734863","11.300000190734863","","1971-09-01T00:00:00Z","","0" +"NM-02702","12.930000305175781","12.930000305175781","","1992-04-25T00:00:00Z","","0" +"NM-00438","42.630001068115234","42.630001068115234","","2009-02-25T00:00:00Z","","0" +"NM-19401","359.3699951171875","359.3699951171875","","1997-02-20T00:00:00Z","","0" +"AB-0052","50.27000045776367","50.27000045776367","","1998-05-06T00:00:00Z","","" +"NM-01781","366.4599914550781","366.4599914550781","","1997-01-21T00:00:00Z","","0" +"SB-0299","119.80999755859375","119.80999755859375","","1968-06-30T00:00:00Z","","0" +"NM-11329","50.279998779296875","50.279998779296875","","1981-01-20T00:00:00Z","","0" +"NM-14614","59.20000076293945","59.20000076293945","","1969-10-15T00:00:00Z","","0" +"DE-0082","90.26000213623047","90.26000213623047","","2010-11-15T00:00:00Z","","0" +"NM-02535","11.300000190734863","11.300000190734863","","2000-01-12T00:00:00Z","","0" +"NM-01868","8.199999809265137","8.199999809265137","","1981-09-15T00:00:00Z","","0" +"NM-23198","65.91999816894531","65.91999816894531","","1950-02-07T00:00:00Z","","0" +"DE-0113","39.119998931884766","39.119998931884766","","2011-02-15T00:00:00Z","","0" +"NM-28251","87.70999908447266","87.70999908447266","","1981-01-25T00:00:00Z","","0" +"NM-13068","20","20","","1957-11-18T00:00:00Z","","0" +"NM-20030","62.540000915527344","62.540000915527344","","1953-02-18T00:00:00Z","","0" +"AB-0124","543.9600219726562","543.9600219726562","","2009-01-30T00:00:00Z","","" +"NM-27245","51.33000183105469","51.33000183105469","","1940-01-06T00:00:00Z","","0" +"NM-28253","26.940000534057617","26.940000534057617","","2019-10-05T00:00:00Z","","0" +"NM-21776","7.119999885559082","7.119999885559082","","1966-09-22T00:00:00Z","","0" +"NM-10033","16.600000381469727","16.600000381469727","","1947-01-14T00:00:00Z","","0" +"NM-08957","45.279998779296875","45.279998779296875","","1961-02-02T00:00:00Z","","0" +"EB-072","289.8900146484375","289.8900146484375","","1982-09-07T00:00:00Z","","0" +"NM-28256","144.69000244140625","144.69000244140625","","2016-09-23T00:00:00Z","","0" +"NM-24831","37.720001220703125","37.720001220703125","P","1952-05-09T00:00:00Z","","0" +"NM-04495","325.6000061035156","325.6000061035156","","1937-06-23T00:00:00Z","","0" +"NM-27985","378.489990234375","378.489990234375","","1992-12-01T00:00:00Z","","0" +"AB-0110","27.68000030517578","27.68000030517578","","2016-08-15T00:00:00Z","","0" +"SB-0522","944","944","","1972-07-17T00:00:00Z","","0" +"SB-0174","156.72000122070312","156.72000122070312","","1971-02-12T00:00:00Z","","0" +"NM-00094","-0.5099999904632568","-0.5099999904632568","","1955-12-10T00:00:00Z","","0" +"NM-02207","12","12","","2002-04-15T00:00:00Z","","0" +"NM-02818","39.560001373291016","39.560001373291016","","1977-01-14T00:00:00Z","","0" +"NM-27198","81.37999725341797","81.37999725341797","","2009-06-05T00:00:00Z","","0" +"NM-05704","72.4000015258789","72.4000015258789","","1949-01-20T00:00:00Z","","0" +"NM-28252","68.5","68.5","","1975-07-15T00:00:00Z","","0" +"NM-23333","6.75","6.75","","1957-07-09T00:00:00Z","","0" +"NM-18218","221.67999267578125","221.67999267578125","","1982-01-21T00:00:00Z","","0" +"NM-28250","88.33000183105469","88.33000183105469","","2006-06-15T00:00:00Z","","0" +"SV-0071","306.70001220703125","304.70001220703125","","2015-02-08T00:00:00Z","","2" +"NM-23198","66.66000366210938","66.66000366210938","","1949-10-11T00:00:00Z","","0" +"SB-0299","115.79000091552734","115.79000091552734","","1999-02-15T00:00:00Z","","0" +"NM-03289","148.5500030517578","148.5500030517578","","2003-01-24T00:00:00Z","","0" +"NM-02095","367.239990234375","367.239990234375","","2008-03-10T00:00:00Z","","0" +"NM-04584","37.56999969482422","37.56999969482422","","1963-01-22T00:00:00Z","","0" +"NM-10892","66.19000244140625","66.19000244140625","","1955-05-24T00:00:00Z","","0" +"NM-03364","724","724","","1985-05-14T00:00:00Z","","0" +"NM-00356","35.16999816894531","35.16999816894531","","1986-01-24T00:00:00Z","","0" +"NM-00675","9.460000038146973","9.460000038146973","","1994-01-04T00:00:00Z","","0" +"NM-09918","115.08999633789062","115.08999633789062","","1955-01-14T00:00:00Z","","0" +"NM-05367","108.12999725341797","108.12999725341797","","1961-01-10T00:00:00Z","","0" +"NM-14091","-4.230000019073486","-4.230000019073486","","1912-01-19T00:00:00Z","","0" +"DE-0060","191.38999938964844","188.67999267578125","","1993-01-01T00:00:00Z","","2.7100000381469727" +"NM-03109","324.1099853515625","324.1099853515625","","1992-01-07T00:00:00Z","","0" +"NM-28256","192.3000030517578","192.3000030517578","","1972-09-05T00:00:00Z","","0" +"NM-13801","-12.550000190734863","-12.550000190734863","","1907-06-11T00:00:00Z","","0" +"NM-02835","","","O","2005-01-14T00:00:00Z","","0" +"NM-17716","-1.2400000095367432","-1.2400000095367432","","1943-01-05T00:00:00Z","","0" +"SB-0299","105.9800033569336","105.9800033569336","","1973-03-15T00:00:00Z","","0" +"NM-01947","9.399999618530273","9.399999618530273","","1957-05-15T00:00:00Z","","0" +"BC-0308","135.63999938964844","135.63999938964844","","2019-04-25T00:00:00Z","","0" +"NM-21864","4.610000133514404","4.610000133514404","Z","2008-04-29T00:00:00Z","","0" +"NM-00762","123.5999984741211","123.5999984741211","","1959-05-26T00:00:00Z","","0" +"NM-22877","8.229999542236328","8.229999542236328","","1958-12-12T00:00:00Z","","0" +"NM-13873","-3.0199999809265137","-3.0199999809265137","","1910-03-28T00:00:00Z","","0" +"NM-08380","32.34000015258789","32.34000015258789","","1971-01-15T00:00:00Z","","0" +"NM-14100","414.0799865722656","414.0799865722656","","1956-01-12T00:00:00Z","","0" +"NM-23953","159.25","159.25","","1973-03-30T00:00:00Z","","0" +"NM-03193","112.58000183105469","112.58000183105469","","1995-01-03T00:00:00Z","","0" +"NM-10088","-26.40999984741211","-26.40999984741211","","1908-08-25T00:00:00Z","","0" +"QU-002","151.67999267578125","151.12998962402344","","2013-09-13T00:00:00Z","","0.550000011920929" +"NM-19816","19.579999923706055","19.579999923706055","","1949-01-14T00:00:00Z","","0" +"SV-0101","75.19999694824219","74.19999694824219","","2017-08-06T00:00:00Z","","1" +"NM-10769","57.22999954223633","57.22999954223633","","1963-08-01T00:00:00Z","","0" +"NM-11623","46.459999084472656","46.459999084472656","","1958-01-16T00:00:00Z","","0" +"NM-20180","6.329999923706055","6.329999923706055","","1969-01-15T00:00:00Z","","0" +"NM-00433","85.86000061035156","85.86000061035156","","1989-01-04T00:00:00Z","","0" +"NM-00548","","","D","2007-12-20T00:00:00Z","","0" +"NM-01885","21.989999771118164","21.989999771118164","","2009-06-17T00:00:00Z","","0" +"NM-27275","54.279998779296875","54.279998779296875","","1983-01-11T00:00:00Z","","0" +"AB-0102","577.47998046875","577.47998046875","","2007-02-08T00:00:00Z","","" +"NM-04397","64.51000213623047","64.51000213623047","","1953-02-24T00:00:00Z","","0" +"NM-22147","5.570000171661377","5.570000171661377","Z","2011-11-09T00:00:00Z","","0" +"NM-04809","110.13999938964844","110.13999938964844","","1959-02-10T00:00:00Z","","0" +"NM-28255","37.470001220703125","37.470001220703125","","1964-12-05T00:00:00Z","","0" +"NM-09081","33.099998474121094","33.099998474121094","","1940-07-01T00:00:00Z","","0" +"NM-22053","102.25","102.25","P","1954-11-12T00:00:00Z","","0" +"WL-0086","36.04166793823242","34.28166961669922","","1988-01-04T00:00:00Z","","1.7599999904632568" +"NM-13213","7.920000076293945","7.920000076293945","","1958-04-07T00:00:00Z","","0" +"AB-0039","351.7200012207031","351.7200012207031","","2011-03-14T00:00:00Z","","" +"NM-14359","52.459999084472656","52.459999084472656","S","1949-07-12T00:00:00Z","","0" +"SV-0045","338.79998779296875","336.54998779296875","","2018-01-07T00:00:00Z","","2.25" +"EB-246","330.8999938964844","330.8999938964844","","1988-06-30T00:00:00Z","","0" +"NM-00800","20.100000381469727","20.100000381469727","","2012-08-01T00:00:00Z","","0" +"NM-02288","5.130000114440918","5.130000114440918","","2010-03-15T00:00:00Z","","0" +"NM-21861","262.9100036621094","262.9100036621094","","2009-06-04T00:00:00Z","","0" +"NM-13047","24.950000762939453","24.950000762939453","","1958-08-25T00:00:00Z","","0" +"AB-0143","308","308","","1983-07-01T00:00:00Z","","0" +"WL-0089","64.91666412353516","62.36666488647461","","1999-12-15T00:00:00Z","","2.549999952316284" +"NM-13924","13","13","","1981-01-24T00:00:00Z","","0" +"NM-26720","131.97999572753906","131.97999572753906","","2009-02-24T00:00:00Z","","0" +"NM-20758","19.260000228881836","19.260000228881836","","1942-04-09T00:00:00Z","","0" +"NM-25717","77.66999816894531","77.66999816894531","","1986-10-07T00:00:00Z","","0" +"NM-00643","100.04000091552734","100.04000091552734","","2001-06-27T00:00:00Z","","0" +"NM-28250","101.12999725341797","101.12999725341797","","1982-02-25T00:00:00Z","","0" +"NM-13888","2.4600000381469727","2.4600000381469727","","1958-11-24T00:00:00Z","","0" +"NM-02831","59.20000076293945","59.20000076293945","","1979-12-01T00:00:00Z","","0" +"NM-11837","64.45999908447266","64.45999908447266","","1943-01-19T00:00:00Z","","0" +"NM-02538","10.640000343322754","10.640000343322754","","1972-02-02T00:00:00Z","","0" +"NM-03643","167.27000427246094","167.27000427246094","","2009-08-11T00:00:00Z","","0" +"DE-0184","48.22999954223633","48.22999954223633","","2010-06-11T00:00:00Z","","0" +"DE-0112","40.380001068115234","40.380001068115234","","2009-11-03T00:00:00Z","","0" +"NM-01893","32.939998626708984","32.939998626708984","","2014-03-11T00:00:00Z","","0" +"NM-00381","8.640000343322754","8.640000343322754","","2007-11-14T00:00:00Z","","0" +"NM-02525","25.760000228881836","25.760000228881836","R","1966-03-10T00:00:00Z","","0" +"NM-07888","658.469970703125","658.469970703125","","1975-05-28T00:00:00Z","","0" +"NM-28016","497.20001220703125","497.20001220703125","S","2015-06-04T00:00:00Z","","0" +"NM-07881","11.789999961853027","11.789999961853027","","1940-07-13T00:00:00Z","","0" +"NM-11679","29.149999618530273","29.149999618530273","","1945-11-13T00:00:00Z","","0" +"NM-02207","11.399999618530273","11.399999618530273","","1976-10-15T00:00:00Z","","0" +"NM-00644","34.93000030517578","34.93000030517578","","1974-11-01T00:00:00Z","","0" +"NM-00253","22.079999923706055","22.079999923706055","","1984-02-01T00:00:00Z","","0" +"NM-06561","183.1300048828125","183.1300048828125","","1976-02-02T00:00:00Z","","0" +"NM-05757","69.58000183105469","69.58000183105469","","1933-12-03T00:00:00Z","","0" +"NM-01868","6.199999809265137","6.199999809265137","","1947-08-15T00:00:00Z","","0" +"NM-15044","460.5199890136719","460.5199890136719","","1969-01-01T00:00:00Z","","0" +"NM-20333","54.43000030517578","54.43000030517578","","1949-01-15T00:00:00Z","","0" +"NM-06392","137.0399932861328","137.0399932861328","","1966-09-22T00:00:00Z","","0" +"NM-11358","7.610000133514404","7.610000133514404","","1970-07-15T00:00:00Z","","0" +"SB-0275","212.52000427246094","212.52000427246094","","1980-01-24T00:00:00Z","","0" +"UC-0112","247.5","247.5","","2010-01-19T00:00:00Z","","0" +"NM-02518","6.599999904632568","6.599999904632568","","1963-08-15T00:00:00Z","","0" +"NM-00630","46.810001373291016","46.810001373291016","","1976-04-01T00:00:00Z","","0" +"NM-03404","6.190000057220459","6.190000057220459","","2009-08-27T00:00:00Z","","0" +"NM-03039","92.33999633789062","92.33999633789062","","2016-02-10T00:00:00Z","","0" +"NM-01872","6.599999904632568","6.599999904632568","","1992-10-15T00:00:00Z","","0" +"NM-00686","61.689998626708984","61.689998626708984","","1977-10-01T00:00:00Z","","0" +"NM-02130","141.10000610351562","141.10000610351562","","1974-01-16T00:00:00Z","","0" +"NM-28252","56.349998474121094","56.349998474121094","","1984-11-05T00:00:00Z","","0" +"NM-22475","58.18000030517578","58.18000030517578","","1984-04-18T00:00:00Z","","0" +"NM-07141","83.13999938964844","83.13999938964844","","1999-04-22T00:00:00Z","","0" +"NM-16810","33.689998626708984","33.689998626708984","","1936-09-22T00:00:00Z","","0" +"NM-12154","99.05999755859375","99.05999755859375","","1969-10-15T00:00:00Z","","0" +"NM-22296","29.25","29.25","T","1986-10-01T00:00:00Z","","0" +"NM-01955","5.5","5.5","","1966-03-15T00:00:00Z","","0" +"NM-16619","14.430000305175781","14.430000305175781","","1932-11-13T00:00:00Z","","0" +"NM-11546","53.220001220703125","53.220001220703125","","1939-01-18T00:00:00Z","","0" +"NM-02005","11.100000381469727","11.100000381469727","","1955-03-15T00:00:00Z","","0" +"NM-17469","39.18000030517578","39.18000030517578","","1953-01-27T00:00:00Z","","0" +"NM-19430","71.95999908447266","71.95999908447266","","1951-11-14T00:00:00Z","","0" +"NM-13962","-21.790000915527344","-21.790000915527344","","1910-10-01T00:00:00Z","","0" +"NM-28012","480.5199890136719","480.5199890136719","S","2015-06-05T00:00:00Z","","0" +"NM-02772","-3.4800000190734863","-3.4800000190734863","","1945-01-20T00:00:00Z","","0" +"NM-03827","14.489999771118164","14.489999771118164","","1956-11-10T00:00:00Z","","0" +"WS-012","2.549999952316284","2.549999952316284","","2011-05-16T00:00:00Z","","0" +"NM-12289","-19.479999542236328","-19.479999542236328","","1908-12-15T00:00:00Z","","0" +"NM-21503","9.020000457763672","9.020000457763672","","2014-10-07T00:00:00Z","","0" +"DE-0086","89.94999694824219","89.94999694824219","","1998-01-09T00:00:00Z","","0" +"NM-28252","34","34","","2001-04-16T00:00:00Z","","0" +"NM-12477","13.619999885559082","13.619999885559082","","1957-03-11T00:00:00Z","","0" +"NM-11907","20.139999389648438","20.139999389648438","","1960-01-14T00:00:00Z","","0" +"EB-012","416.75","416.75","","1971-04-08T00:00:00Z","","0" +"NM-01947","8","8","","1955-09-15T00:00:00Z","","0" +"NM-02209","104.7300033569336","104.7300033569336","","1960-11-11T00:00:00Z","","0" +"NM-04074","32.099998474121094","32.099998474121094","","1955-01-20T00:00:00Z","","0" +"NM-04240","17","17","","1957-01-09T00:00:00Z","","0" +"NM-17716","4.679999828338623","4.679999828338623","","1948-02-05T00:00:00Z","","0" +"NM-05572","78.38999938964844","78.38999938964844","","1961-04-04T00:00:00Z","","0" +"NM-05417","99.12999725341797","99.12999725341797","","1960-04-01T00:00:00Z","","0" +"NM-10303","-49.5099983215332","-49.5099983215332","","1906-10-09T00:00:00Z","","0" +"NM-03036","69.37000274658203","69.37000274658203","","1995-01-07T00:00:00Z","","0" +"NM-28257","35.619998931884766","35.619998931884766","","1972-02-25T00:00:00Z","","0" +"NM-28010","498.82000732421875","498.82000732421875","S","2015-06-02T00:00:00Z","","0" +"NM-11994","34.810001373291016","34.810001373291016","","1938-08-01T00:00:00Z","","0" +"NM-13713","14.800000190734863","14.800000190734863","","1975-01-20T00:00:00Z","","0" +"NM-13846","-17.170000076293945","-17.170000076293945","","1905-06-10T00:00:00Z","","0" +"NM-11556","45.68000030517578","45.68000030517578","","1943-01-21T00:00:00Z","","0" +"WL-0090","49.20833206176758","46.828330993652344","","1997-12-23T00:00:00Z","","2.380000114440918" +"NM-03197","344","344","","1984-01-17T00:00:00Z","","0" +"NM-02396","7.300000190734863","7.300000190734863","","1989-12-15T00:00:00Z","","0" +"NM-02115","26.850000381469727","26.850000381469727","","1991-01-02T00:00:00Z","","0" +"NM-00662","33.77000045776367","33.77000045776367","","1960-03-22T00:00:00Z","","0" +"NM-02208","6.800000190734863","6.800000190734863","","1989-10-15T00:00:00Z","","0" +"DE-0111","35.0099983215332","35.0099983215332","","2007-09-10T00:00:00Z","","0" +"NM-19335","81.19999694824219","81.19999694824219","","1965-08-18T00:00:00Z","","0" +"NM-07621","26.65999984741211","26.65999984741211","R","1966-03-03T00:00:00Z","","0" +"NM-02043","7.199999809265137","7.199999809265137","","2001-01-15T00:00:00Z","","0" +"NM-04285","79.86000061035156","79.86000061035156","","1958-12-18T00:00:00Z","","0" +"NM-02283","18.1299991607666","18.1299991607666","","2003-01-22T00:00:00Z","","0" +"NM-03723","72.41000366210938","72.41000366210938","","1967-01-05T00:00:00Z","","0" +"NM-07692","9.279999732971191","9.279999732971191","","1962-07-09T00:00:00Z","","0" +"NM-06009","72.52999877929688","72.52999877929688","","1950-03-17T00:00:00Z","","0" +"NM-00185","13.800000190734863","13.800000190734863","","1991-02-01T00:00:00Z","","0" +"NM-21632","440.54998779296875","440.54998779296875","","1997-11-01T00:00:00Z","","0" +"NM-02354","51.310001373291016","51.310001373291016","","1988-02-17T00:00:00Z","","0" +"NM-08645","41.56999969482422","41.56999969482422","","1939-08-25T00:00:00Z","","0" +"NM-17974","28.18000030517578","28.18000030517578","","1965-02-18T00:00:00Z","","0" +"SA-0014","182.57000732421875","182.57000732421875","","2008-05-11T00:00:00Z","","0" +"SM-0037","31.639999389648438","30.739999771118164","","2007-10-15T00:00:00Z","","0.8999999761581421" +"SB-0299","117.33999633789062","117.33999633789062","","1972-10-15T00:00:00Z","","0" +"NM-18243","217.14999389648438","217.14999389648438","","1972-01-12T00:00:00Z","","0" +"AB-0010","17.65999984741211","17.65999984741211","","2005-02-28T00:00:00Z","","" +"NM-12024","53.349998474121094","53.349998474121094","","1954-01-12T00:00:00Z","","0" +"NM-01879","12.989999771118164","12.989999771118164","","1980-01-04T00:00:00Z","","0" +"NM-07828","28.649999618530273","28.649999618530273","","1937-04-19T00:00:00Z","","0" +"SB-0299","114.19000244140625","114.19000244140625","","1997-01-30T00:00:00Z","","0" +"SB-0347","120.06999969482422","120.06999969482422","","1974-01-02T00:00:00Z","","0" +"NM-02006","9","9","","1979-03-15T00:00:00Z","","0" +"NM-08838","58.459999084472656","58.459999084472656","","1948-01-14T00:00:00Z","","0" +"NM-14383","3.799999952316284","3.799999952316284","","1931-12-15T00:00:00Z","","0" +"NM-09348","-58.75","-58.75","","1907-06-28T00:00:00Z","","0" +"SB-0299","155.97999572753906","155.97999572753906","","2020-08-10T00:00:00Z","","0" +"NM-02669","50.72999954223633","50.72999954223633","","1970-01-01T00:00:00Z","","0" +"NM-19955","28.049999237060547","28.049999237060547","","1983-01-07T00:00:00Z","","0" +"NM-09907","-70.30000305175781","-70.30000305175781","","1914-12-22T00:00:00Z","","0" +"SA-0028","174.91000366210938","174.91000366210938","","1996-02-08T00:00:00Z","","0" +"NM-12918","29.5","29.5","","1943-02-19T00:00:00Z","","0" +"NM-16976","26.170000076293945","26.170000076293945","","1982-03-24T00:00:00Z","","0" +"NM-28253","17.84000015258789","17.84000015258789","","1997-03-25T00:00:00Z","","0" +"NM-11679","76.2699966430664","76.2699966430664","","1960-09-20T00:00:00Z","","0" +"NM-14396","6.019999980926514","6.019999980926514","","1982-10-15T00:00:00Z","","0" +"NM-04170","107.20999908447266","107.20999908447266","P","1977-03-01T00:00:00Z","","0" +"NM-11397","75.93000030517578","75.93000030517578","","1979-01-03T00:00:00Z","","0" +"NM-23329","26.59000015258789","26.59000015258789","","1983-03-10T00:00:00Z","","0" +"NM-00257","95.38999938964844","95.38999938964844","","1984-05-01T00:00:00Z","","0" +"NM-27446","28.479999542236328","28.479999542236328","","1957-05-20T00:00:00Z","","0" +"SB-0299","117.05000305175781","117.05000305175781","","1967-09-15T00:00:00Z","","0" +"EB-146","23.68000030517578","23.68000030517578","","1994-06-21T00:00:00Z","","0" +"NM-13715","4.539999961853027","4.539999961853027","","1943-01-04T00:00:00Z","","0" +"NM-05420","16.270000457763672","16.270000457763672","","1952-09-09T00:00:00Z","","0" +"NM-02167","34.779998779296875","34.779998779296875","","2011-09-06T00:00:00Z","","0" +"NM-06268","14.199999809265137","14.199999809265137","","1960-01-15T00:00:00Z","","0" +"NM-18701","100.68000030517578","100.68000030517578","","1975-08-12T00:00:00Z","","0" +"NM-03331","10.489999771118164","10.489999771118164","Z","1991-07-31T00:00:00Z","","0" +"BC-0344","","148.1999969482422","","2020-11-05T00:00:00Z","","1.3700000047683716" +"NM-27300","190.02000427246094","190.02000427246094","","1981-08-07T00:00:00Z","","0" +"NM-01134","232.33999633789062","232.33999633789062","","1968-01-01T00:00:00Z","","0" +"NM-17668","42.459999084472656","42.459999084472656","","1966-03-23T00:00:00Z","","0" +"NM-16639","20.520000457763672","20.520000457763672","","1955-01-18T00:00:00Z","","0" +"NM-24554","4.519999980926514","4.519999980926514","","1988-02-09T00:00:00Z","","0" +"NM-01887","69.77999877929688","69.77999877929688","","2010-08-18T00:00:00Z","","0" +"NM-01890","61.189998626708984","61.189998626708984","","2005-11-07T00:00:00Z","","0" +"NM-16566","18.3700008392334","18.3700008392334","","1952-05-26T00:00:00Z","","0" +"NM-28258","103.08999633789062","103.08999633789062","","1998-02-25T00:00:00Z","","0" +"NM-22529","272.5199890136719","272.5199890136719","","1969-01-13T00:00:00Z","","0" +"NM-02240","43.7599983215332","43.7599983215332","","1959-01-09T00:00:00Z","","0" +"NM-24933","6.269999980926514","6.269999980926514","","1959-12-07T00:00:00Z","","0" +"NM-00208","58.689998626708984","58.689998626708984","","2003-01-22T00:00:00Z","","0" +"NM-13865","5.949999809265137","5.949999809265137","","1979-03-01T00:00:00Z","","0" +"NM-18393","76.52999877929688","76.52999877929688","","1977-02-04T00:00:00Z","","0" +"NM-18961","402.2900085449219","402.2900085449219","","1982-03-12T00:00:00Z","","0" +"NM-21256","4.78000020980835","4.78000020980835","Z","2006-05-02T00:00:00Z","","0" +"NM-03258","24.020000457763672","24.020000457763672","","1948-03-23T00:00:00Z","","0" +"NM-06018","345.3999938964844","345.3999938964844","","1981-03-30T00:00:00Z","","0" +"NM-14391","-0.9800000190734863","-0.9800000190734863","","1965-01-04T00:00:00Z","","0" +"WL-0086","68.91666412353516","67.15666198730469","","2000-04-19T00:00:00Z","","1.7599999904632568" +"NM-11815","138.6300048828125","138.6300048828125","","1972-02-08T00:00:00Z","","0" +"DE-0246","108.0199966430664","108.0199966430664","","2011-08-16T00:00:00Z","","0" +"AB-0161","487.4599914550781","487.4599914550781","","2015-01-07T00:00:00Z","","0" +"NM-04155","178.5","178.5","P","1965-08-10T00:00:00Z","","0" +"NM-10478","74.80000305175781","74.80000305175781","","1965-01-07T00:00:00Z","","0" +"NM-05516","15.100000381469727","15.100000381469727","","1977-09-15T00:00:00Z","","0" +"NM-17716","1.4500000476837158","1.4500000476837158","","1945-01-11T00:00:00Z","","0" +"NM-27471","70.88999938964844","70.88999938964844","","1988-09-02T00:00:00Z","","0" +"NM-08155","19.420000076293945","19.420000076293945","","2013-09-16T00:00:00Z","","0" +"NM-04659","48.5","48.5","","1941-01-10T00:00:00Z","","0" +"NM-21374","229.6199951171875","229.6199951171875","","1987-05-21T00:00:00Z","","0" +"NM-02773","52.310001373291016","52.310001373291016","","2005-08-17T00:00:00Z","","0" +"NM-01947","6","6","","1953-11-15T00:00:00Z","","0" +"NM-02147","140.6999969482422","140.6999969482422","","1974-01-16T00:00:00Z","","0" +"NM-20758","40.70000076293945","40.70000076293945","","1964-06-22T00:00:00Z","","0" +"NM-00761","29.5","29.5","","1958-05-20T00:00:00Z","","0" +"NM-18353","145.3800048828125","145.3800048828125","","1963-12-12T00:00:00Z","","0" +"NM-16712","38.34000015258789","38.34000015258789","","1977-01-06T00:00:00Z","","0" +"NM-28258","147.39999389648438","147.39999389648438","","2005-05-25T00:00:00Z","","0" +"NM-20289","43.43000030517578","43.43000030517578","","1952-03-28T00:00:00Z","","0" +"NM-01049","325.69000244140625","325.69000244140625","","1967-02-01T00:00:00Z","","0" +"DE-0112","","","D","2014-03-10T00:00:00Z","","0" +"NM-13623","18.84000015258789","18.84000015258789","","1945-03-22T00:00:00Z","","0" +"NM-01868","10.399999618530273","10.399999618530273","","1977-11-15T00:00:00Z","","0" +"NM-02286","13.520000457763672","13.520000457763672","","2012-01-18T00:00:00Z","","0" +"NM-17716","2.569999933242798","2.569999933242798","","1946-10-15T00:00:00Z","","0" +"NM-02811","88.19000244140625","88.19000244140625","","2008-02-11T00:00:00Z","","0" +"NM-16538","8.710000038146973","8.710000038146973","","1951-05-24T00:00:00Z","","0" +"NM-17255","23.399999618530273","23.399999618530273","","1936-01-10T00:00:00Z","","0" +"NM-03504","61.5","61.5","","2003-01-23T00:00:00Z","","0" +"NM-00917","23.389999389648438","23.389999389648438","","1951-01-11T00:00:00Z","","0" +"NM-22119","27.360000610351562","27.360000610351562","R","1990-01-09T00:00:00Z","","0" +"NM-14259","-14.859999656677246","-14.859999656677246","","1909-12-03T00:00:00Z","","0" +"NM-28023","485.94000244140625","485.94000244140625","S","2015-04-15T00:00:00Z","","0" +"NM-14927","71.31999969482422","71.31999969482422","","1952-01-23T00:00:00Z","","0" +"NM-03903","329.7699890136719","329.7699890136719","","1976-09-15T00:00:00Z","","0" +"NM-23594","26.200000762939453","26.200000762939453","","1956-09-14T00:00:00Z","","0" +"NM-28258","173.0500030517578","173.0500030517578","","1985-04-25T00:00:00Z","","0" +"DE-0119","30.8700008392334","30.8700008392334","","2005-10-19T00:00:00Z","","0" +"UC-0033","98.5999984741211","98.5999984741211","","1996-01-26T00:00:00Z","","0" +"NM-21709","177.82000732421875","177.82000732421875","","2008-01-31T00:00:00Z","","0" +"NM-04624","78.4800033569336","78.4800033569336","","1955-05-17T00:00:00Z","","0" +"NM-02280","33.099998474121094","33.099998474121094","","2009-06-30T00:00:00Z","","0" +"AB-0077","5.519999980926514","5.519999980926514","","1998-08-12T00:00:00Z","","" +"NM-16574","12.140000343322754","12.140000343322754","","1944-08-07T00:00:00Z","","0" +"NM-02831","16.850000381469727","16.850000381469727","","1941-02-01T00:00:00Z","","0" +"NM-01986","4.599999904632568","4.599999904632568","","1958-09-15T00:00:00Z","","0" +"NM-28252","37","37","","1992-06-15T00:00:00Z","","0" +"NM-16188","39","39","","1975-03-07T00:00:00Z","","0" +"NM-09665","64.04000091552734","64.04000091552734","","1971-02-03T00:00:00Z","","0" +"NM-10906","30.479999542236328","30.479999542236328","","1950-11-10T00:00:00Z","","0" +"NM-01733","243.07000732421875","243.07000732421875","","2011-07-25T00:00:00Z","","0" +"NM-28019","478.5799865722656","478.5799865722656","S","2015-04-26T00:00:00Z","","0" +"NM-03344","75.87000274658203","75.87000274658203","","1995-01-24T00:00:00Z","","0" +"NM-00444","106.5999984741211","106.5999984741211","","1996-01-31T00:00:00Z","","0" +"SB-0299","135.7899932861328","135.7899932861328","","1999-07-25T00:00:00Z","","0" +"NM-18901","347.17999267578125","347.17999267578125","","1962-03-14T00:00:00Z","","0" +"NM-28251","64.7300033569336","64.7300033569336","","1993-01-05T00:00:00Z","","0" +"NM-03354","73.63999938964844","73.63999938964844","","1948-05-20T00:00:00Z","","0" +"NM-02217","46.400001525878906","46.400001525878906","P","1952-07-18T00:00:00Z","","0" +"NM-12405","30.270000457763672","30.270000457763672","","1963-09-04T00:00:00Z","","0" +"NM-03074","88.31999969482422","88.31999969482422","","1990-02-20T00:00:00Z","","0" +"NM-20849","313.20001220703125","313.20001220703125","","1994-09-21T00:00:00Z","","0" +"NM-05815","417.17999267578125","417.17999267578125","","1962-08-08T00:00:00Z","","0" +"TO-0401","96.4000015258789","96.4000015258789","","1950-02-22T00:00:00Z","","0" +"NM-13082","-13.710000038146973","-13.710000038146973","","1909-09-28T00:00:00Z","","0" +"NM-03667","68.94999694824219","68.94999694824219","","2000-02-29T00:00:00Z","","0" +"NM-27469","70.30000305175781","70.30000305175781","","2013-01-28T00:00:00Z","","0" +"NM-16514","22.459999084472656","22.459999084472656","S","1948-05-29T00:00:00Z","","0" +"NM-02763","100.93000030517578","100.93000030517578","","2013-01-29T00:00:00Z","","0" +"NM-24711","261.29998779296875","261.29998779296875","","1956-07-21T00:00:00Z","","0" +"BW-0290","99","99","","1969-01-17T00:00:00Z","","0" +"NM-01985","10.100000381469727","10.100000381469727","","1969-11-15T00:00:00Z","","0" +"NM-10793","-25.260000228881836","-25.260000228881836","","1912-02-02T00:00:00Z","","0" +"NM-02152","9.399999618530273","9.399999618530273","","2001-01-15T00:00:00Z","","0" +"NM-03034","52.7599983215332","52.7599983215332","","1987-01-12T00:00:00Z","","0" +"NM-02561","134.0800018310547","134.0800018310547","","1994-02-09T00:00:00Z","","0" +"NM-19218","265.2300109863281","265.2300109863281","","1967-02-01T00:00:00Z","","0" +"NM-17747","13.430000305175781","13.430000305175781","","1944-01-20T00:00:00Z","","0" +"NM-22956","901.0800170898438","901.0800170898438","","2015-03-06T00:00:00Z","","0" +"NM-17351","47.5","47.5","","1956-01-19T00:00:00Z","","0" +"NM-02072","91.33000183105469","91.33000183105469","","1981-01-15T00:00:00Z","","0" +"NM-03388","51.20000076293945","51.20000076293945","","1992-01-10T00:00:00Z","","0" +"AB-0179","177.6199951171875","177.6199951171875","","1997-10-03T00:00:00Z","","" +"NM-12751","129.8000030517578","129.8000030517578","","1956-07-30T00:00:00Z","","0" +"NM-21588","3.369999885559082","3.369999885559082","Z","2010-08-16T00:00:00Z","","0" +"NM-28010","498.739990234375","498.739990234375","S","2015-05-26T00:00:00Z","","0" +"NM-28258","150.35000610351562","150.35000610351562","","1983-03-25T00:00:00Z","","0" +"NM-14316","35.38999938964844","35.38999938964844","","1939-09-18T00:00:00Z","","0" +"NM-26281","43.54999923706055","43.54999923706055","","1986-02-05T00:00:00Z","","0" +"NM-11287","192.33999633789062","192.33999633789062","","1976-03-29T00:00:00Z","","0" +"NM-14802","105.69999694824219","105.69999694824219","","1971-08-25T00:00:00Z","","0" +"NM-07148","83.5999984741211","83.5999984741211","","2002-10-10T00:00:00Z","","0" +"NM-04608","65.8499984741211","65.8499984741211","","1953-11-20T00:00:00Z","","0" +"NM-05757","76.19999694824219","76.19999694824219","","1939-01-14T00:00:00Z","","0" +"NM-17542","34.279998779296875","34.279998779296875","P","1951-09-25T00:00:00Z","","0" +"NM-20196","39.869998931884766","39.869998931884766","","1954-01-22T00:00:00Z","","0" +"NM-02396","8.199999809265137","8.199999809265137","","1960-01-15T00:00:00Z","","0" +"NM-04905","77.87000274658203","77.87000274658203","","1965-10-21T00:00:00Z","","0" +"NM-20029","48.06999969482422","48.06999969482422","","1949-02-14T00:00:00Z","","0" +"NM-08232","1000.97998046875","1000.97998046875","","1969-12-01T00:00:00Z","","0" +"EB-276","201.8000030517578","201.8000030517578","","1971-11-12T00:00:00Z","","0" +"NM-11073","104.72000122070312","104.72000122070312","","1976-03-24T00:00:00Z","","0" +"NM-02207","8.800000190734863","8.800000190734863","","1947-02-15T00:00:00Z","","0" +"NM-13464","12.720000267028809","12.720000267028809","","1965-01-13T00:00:00Z","","0" +"NM-09861","51.41999816894531","51.41999816894531","","1966-03-29T00:00:00Z","","0" +"DE-0379","","","D","2013-05-20T00:00:00Z","","0.6499999761581421" +"NM-03041","70.20999908447266","70.20999908447266","","1988-01-12T00:00:00Z","","0" +"NM-07596","-33.34000015258789","-33.34000015258789","","1907-06-27T00:00:00Z","","0" +"NM-28251","78.47000122070312","78.47000122070312","","2007-08-15T00:00:00Z","","0" +"NM-11650","79.30999755859375","79.30999755859375","","1947-01-07T00:00:00Z","","0" +"EB-208","213.75999450683594","213.75999450683594","","1965-02-05T00:00:00Z","","0" +"NM-14167","-31.690000534057617","-31.690000534057617","","1910-02-04T00:00:00Z","","0" +"NM-01743","118.22000122070312","118.22000122070312","","1983-01-26T00:00:00Z","","0" +"BC-0310","243.80999755859375","243.80999755859375","","2019-04-25T00:00:00Z","","0" +"WL-0131","27.190000534057617","25.360000610351562","","2021-10-07T00:00:00Z","","1.8300000429153442" +"NM-02915","92.80000305175781","92.80000305175781","","1972-01-06T00:00:00Z","","0" +"NM-02196","20.719999313354492","20.719999313354492","","2005-10-06T00:00:00Z","","0" +"NM-16152","132.99000549316406","132.99000549316406","","1990-02-07T00:00:00Z","","0" +"WL-0278","166.41000366210938","163.9600067138672","","2022-03-16T00:00:00Z","0001-01-01T14:35:00Z","2.450000047683716" +"NM-11578","26.149999618530273","26.149999618530273","","1937-04-17T00:00:00Z","","0" +"NM-19797","47.08000183105469","47.08000183105469","","1942-09-22T00:00:00Z","","0" +"NM-14359","40.099998474121094","40.099998474121094","","1947-03-12T00:00:00Z","","0" +"NM-14414","82.44999694824219","82.44999694824219","","1963-08-13T00:00:00Z","","0" +"NM-13145","15.100000381469727","15.100000381469727","","1959-11-16T00:00:00Z","","0" +"EB-266","6.710000038146973","6.710000038146973","","2013-07-10T00:00:00Z","","0" +"DE-0111","36.150001525878906","36.150001525878906","","2008-06-16T00:00:00Z","","0" +"BC-0134","373.94000244140625","373.94000244140625","","2013-06-13T00:00:00Z","","0" +"NM-27450","51.720001220703125","51.720001220703125","","1958-07-25T00:00:00Z","","0" +"NM-13538","102.66000366210938","102.66000366210938","","1980-05-16T00:00:00Z","","0" +"NM-28252","55.900001525878906","55.900001525878906","","1971-02-15T00:00:00Z","","0" +"NM-02487","11","11","","1958-08-15T00:00:00Z","","0" +"NM-21723","28.969999313354492","28.969999313354492","","2014-10-07T00:00:00Z","","0" +"NM-01699","158.47999572753906","158.47999572753906","","1956-04-18T00:00:00Z","","0" +"NM-22982","6.5","6.5","Z","2009-08-11T00:00:00Z","","0" +"NM-03419","26.579999923706055","26.579999923706055","","1988-12-27T00:00:00Z","","0" +"NM-02560","123.23999786376953","123.23999786376953","","1992-09-28T00:00:00Z","","0" +"NM-27289","146.88999938964844","146.88999938964844","","1995-02-23T00:00:00Z","","0" +"WL-0109","127.41000366210938","125.54000091552734","R","2022-06-15T00:00:00Z","0001-01-01T11:35:00Z","1.8700000047683716" +"NM-02665","94.06999969482422","94.06999969482422","","2008-01-23T00:00:00Z","","0" +"NM-01435","135.22999572753906","135.22999572753906","P","1992-02-26T00:00:00Z","","0" +"NM-02260","31.93000030517578","31.93000030517578","","1951-07-31T00:00:00Z","","0" +"NM-22979","10.260000228881836","10.260000228881836","Z","2008-04-02T00:00:00Z","","0" +"NM-07283","405.2699890136719","405.2699890136719","","2011-11-30T00:00:00Z","","0" +"NM-28255","126.75","126.75","","1956-09-05T00:00:00Z","","0" +"TV-127","69.20999908447266","67.55999755859375","Z","2012-04-10T00:00:00Z","","1.649999976158142" +"NM-28018","486.3599853515625","486.3599853515625","S","2015-04-17T00:00:00Z","","0" +"AB-0214","156.82000732421875","156.82000732421875","","2006-08-15T00:00:00Z","","" +"NM-05575","136","136","P","1956-09-07T00:00:00Z","","0" +"NM-02407","23.170000076293945","23.170000076293945","","1949-09-01T00:00:00Z","","0" +"NM-01890","85.54000091552734","85.54000091552734","","2011-06-02T00:00:00Z","","0" +"NM-02198","19.559999465942383","19.559999465942383","","2008-08-04T00:00:00Z","","0" +"NM-05313","73.94999694824219","73.94999694824219","","1953-01-10T00:00:00Z","","0" +"NM-00367","134.47999572753906","134.47999572753906","","2000-11-16T00:00:00Z","","0" +"NM-28258","155.0500030517578","155.0500030517578","","1986-05-05T00:00:00Z","","0" +"DE-0090","91.4800033569336","91.4800033569336","","2000-03-06T00:00:00Z","","0" +"NM-21280","61.70000076293945","61.70000076293945","R","1984-02-17T00:00:00Z","","0" +"NM-05345","87.30999755859375","87.30999755859375","","1940-07-05T00:00:00Z","","0" +"NM-28256","72.04000091552734","72.04000091552734","","2001-02-26T00:00:00Z","","0" +"NM-03423","23.959999084472656","23.959999084472656","","2001-03-14T00:00:00Z","","0" +"NM-05481","188.6699981689453","188.6699981689453","","1986-03-04T00:00:00Z","","0" +"NM-02669","56.86000061035156","56.86000061035156","","1993-09-28T00:00:00Z","","0" +"NM-28252","47","47","","1987-04-15T00:00:00Z","","0" +"NM-13218","11.239999771118164","11.239999771118164","","1959-07-16T00:00:00Z","","0" +"AB-0122","543.2000122070312","543.2000122070312","","2002-05-07T00:00:00Z","","" +"NM-01804","326.9100036621094","326.9100036621094","","1993-02-22T00:00:00Z","","0" +"NM-00919","177.7899932861328","177.7899932861328","","1959-01-14T00:00:00Z","","0" +"TV-219","268.6600036621094","267.5","","2008-01-08T00:00:00Z","","1.159999966621399" +"NM-26436","25.489999771118164","25.489999771118164","","1988-04-25T00:00:00Z","","0" +"NM-13594","28.940000534057617","28.940000534057617","","1966-11-01T00:00:00Z","","0" +"SB-0288","84.44000244140625","84.44000244140625","","1954-01-22T00:00:00Z","","0" +"NM-17452","57.470001220703125","57.470001220703125","","1953-01-24T00:00:00Z","","0" +"NM-16689","49.79999923706055","49.79999923706055","","1978-01-05T00:00:00Z","","0" +"NM-03462","171.0399932861328","171.0399932861328","","1958-01-05T00:00:00Z","","0" +"NM-18247","187.49000549316406","187.49000549316406","","1954-02-26T00:00:00Z","","0" +"NM-02790","119.43000030517578","119.43000030517578","","2003-01-21T00:00:00Z","","0" +"NM-13888","4.929999828338623","4.929999828338623","","1962-09-04T00:00:00Z","","0" +"NM-20542","14.930000305175781","14.930000305175781","","1965-11-16T00:00:00Z","","0" +"NM-04112","175.2100067138672","175.2100067138672","","1975-01-13T00:00:00Z","","0" +"NM-14222","-26.40999984741211","-26.40999984741211","","1915-07-29T00:00:00Z","","0" +"NM-28017","486.3299865722656","486.3299865722656","S","2015-04-16T00:00:00Z","","0" +"NM-16979","75.41999816894531","75.41999816894531","","1962-01-08T00:00:00Z","","0" +"TV-157","155.6199951171875","154.47999572753906","","2016-09-07T00:00:00Z","","1.1399999856948853" +"NM-07830","7.420000076293945","7.420000076293945","","1972-02-21T00:00:00Z","","0" +"NM-02732","93.41000366210938","93.41000366210938","","1957-09-24T00:00:00Z","","0" +"AB-0053","37.65999984741211","37.65999984741211","","2016-08-15T00:00:00Z","","0" +"NM-09696","6.380000114440918","6.380000114440918","","1941-12-10T00:00:00Z","","0" +"NM-06893","14.520000457763672","14.520000457763672","","1963-01-21T00:00:00Z","","0" +"NM-21661","463","463","S","1984-01-14T00:00:00Z","","0" +"NM-05699","342.55999755859375","342.55999755859375","","1970-12-08T00:00:00Z","","0" +"NM-00983","346.30999755859375","346.30999755859375","","2004-02-29T00:00:00Z","","0" +"NM-03401","7.460000038146973","7.460000038146973","","1993-05-10T00:00:00Z","","0" +"NM-27322","85.04000091552734","85.04000091552734","","1998-02-05T00:00:00Z","","0" +"DA-0014","229","229","","1967-12-29T00:00:00Z","","0" +"NM-21744","10.300000190734863","10.300000190734863","","2010-06-14T00:00:00Z","","0" +"NM-06027","74.73999786376953","74.73999786376953","","1963-08-08T00:00:00Z","","0" +"NM-28011","489.2900085449219","489.2900085449219","S","2015-05-18T00:00:00Z","","0" +"NM-02682","54.5099983215332","54.5099983215332","","2006-01-25T00:00:00Z","","0" +"UC-0078","161.75","161.75","","2000-02-25T00:00:00Z","","0" +"NM-01899","65.47000122070312","65.47000122070312","","2001-08-30T00:00:00Z","","0" +"EB-483","343","343","P","2000-01-31T00:00:00Z","","0" +"NM-02732","94.86000061035156","94.86000061035156","","2001-03-14T00:00:00Z","","0" +"NM-03153","22.520000457763672","22.520000457763672","","1963-12-19T00:00:00Z","","0" +"NM-03426","361.8599853515625","361.8599853515625","Z","1997-03-27T00:00:00Z","","0" +"AB-0139","478.6000061035156","478.6000061035156","","2007-01-23T00:00:00Z","","" +"NM-02773","49.43000030517578","49.43000030517578","","1995-02-10T00:00:00Z","","0" +"NM-07808","24.959999084472656","24.959999084472656","P","1963-09-23T00:00:00Z","","0" +"NM-10245","33.349998474121094","33.349998474121094","","1962-01-03T00:00:00Z","","0" +"NM-28259","139.16000366210938","139.16000366210938","","1994-06-25T00:00:00Z","","0" +"NM-03342","12.399999618530273","12.399999618530273","","2013-09-04T00:00:00Z","","0" +"NM-17424","53.2599983215332","53.2599983215332","","1947-07-28T00:00:00Z","","0" +"BC-0095","","38.72999954223633","","2020-07-26T00:00:00Z","","0.4000000059604645" +"NM-17542","33.29999923706055","33.29999923706055","","1945-11-23T00:00:00Z","","0" +"DE-0283","76.70999908447266","76.70999908447266","","2016-03-24T00:00:00Z","","0" +"NM-01547","-77.83999633789062","-77.83999633789062","E","1988-02-23T00:00:00Z","","0" +"BC-0058","175.05999755859375","175.05999755859375","","2019-11-02T00:00:00Z","","0" +"NM-00185","11.5","11.5","","1999-01-15T00:00:00Z","","0" +"HS-021","6.360000133514404","5.940000057220459","","2013-09-05T00:00:00Z","","0.41999998688697815" +"NM-02256","5.800000190734863","5.800000190734863","","1952-06-15T00:00:00Z","","0" +"NM-01663","-65","-65","","1972-09-14T00:00:00Z","","0" +"NM-06700","42.20000076293945","42.20000076293945","","1982-01-27T00:00:00Z","","0" +"NM-08959","-21.790000915527344","-21.790000915527344","","1926-12-03T00:00:00Z","","0" +"NM-00213","187.61000061035156","187.61000061035156","","1966-01-01T00:00:00Z","","0" +"NM-05615","47.06999969482422","47.06999969482422","","1969-01-08T00:00:00Z","","0" +"NM-19435","315.2900085449219","315.2900085449219","","1983-01-08T00:00:00Z","","0" +"NM-13235","3.4200000762939453","3.4200000762939453","","1958-11-04T00:00:00Z","","0" +"SB-0299","151.33999633789062","151.33999633789062","","2003-09-05T00:00:00Z","","0" +"NM-20061","40.220001220703125","40.220001220703125","","1946-05-31T00:00:00Z","","0" +"NM-01791","307.5799865722656","307.5799865722656","","1984-06-20T00:00:00Z","","0" +"NM-00427","71.6500015258789","71.6500015258789","","1974-01-08T00:00:00Z","","0" +"NM-03254","344.3299865722656","344.3299865722656","","1997-01-02T00:00:00Z","","0" +"NM-03339","8.029999732971191","8.029999732971191","","1989-06-02T00:00:00Z","","0" +"NM-07510","26.579999923706055","26.579999923706055","","1961-11-01T00:00:00Z","","0" +"SB-0458","262","262","","1986-07-10T00:00:00Z","","0" +"SV-0085","119","117.16666412353516","","2014-02-16T00:00:00Z","","1.8333333730697632" +"NM-07719","54.08000183105469","54.08000183105469","","1951-01-08T00:00:00Z","","0" +"NM-28258","143.5500030517578","143.5500030517578","","1993-04-05T00:00:00Z","","0" +"EB-482","472.79998779296875","472.79998779296875","Z","2002-11-30T00:00:00Z","","0" +"NM-00291","27.809999465942383","27.809999465942383","","2011-01-13T00:00:00Z","","0" +"NM-28258","162.64999389648438","162.64999389648438","","1985-06-25T00:00:00Z","","0" +"NM-28259","134.67999267578125","134.67999267578125","","1994-10-05T00:00:00Z","","0" +"NM-01986","7.5","7.5","","1999-02-15T00:00:00Z","","0" +"DE-0131","32.61000061035156","32.61000061035156","","2003-01-14T00:00:00Z","","0" +"NM-17716","3.069999933242798","3.069999933242798","","1947-02-20T00:00:00Z","","0" +"NM-01579","24","24","","1986-02-03T00:00:00Z","","0" +"NM-16185","41.75","41.75","","1964-02-19T00:00:00Z","","0" +"NM-00367","129.38999938964844","129.38999938964844","","2011-01-31T00:00:00Z","","0" +"QY-0183","260","260","","1917-01-01T00:00:00Z","","0" +"DE-0106","36.04999923706055","36.04999923706055","","2006-12-05T00:00:00Z","","0" +"NM-00783","21.530000686645508","21.530000686645508","","1957-07-23T00:00:00Z","","0" +"NM-01379","42.02000045776367","42.02000045776367","","2010-03-15T00:00:00Z","","0" +"NM-20292","96.9000015258789","96.9000015258789","","1952-01-10T00:00:00Z","","0" +"NM-11760","133.07000732421875","133.07000732421875","","1956-01-26T00:00:00Z","","0" +"NM-21567","5.78000020980835","5.78000020980835","X","2003-09-12T00:00:00Z","","0" +"NM-05736","71.44000244140625","71.44000244140625","","1962-04-02T00:00:00Z","","0" +"BW-0251","103.62000274658203","103.62000274658203","","1969-01-09T00:00:00Z","","0" +"BC-0012","40.5099983215332","40.5099983215332","","1980-02-26T00:00:00Z","","0" +"NM-01985","8.800000190734863","8.800000190734863","","1979-05-15T00:00:00Z","","0" +"NM-20308","84.58999633789062","84.58999633789062","","1956-09-19T00:00:00Z","","0" +"NM-02209","109","109","","1966-10-01T00:00:00Z","","0" +"NM-28256","216.69000244140625","216.69000244140625","","1990-04-25T00:00:00Z","","0" +"NM-12199","88.11000061035156","88.11000061035156","","1991-03-13T00:00:00Z","","0" +"NM-07225","195.4499969482422","195.4499969482422","","1981-12-01T00:00:00Z","","0" +"BC-0133","349.5899963378906","349.5899963378906","","2020-04-28T00:00:00Z","","0" +"NM-11710","12.130000114440918","12.130000114440918","","1947-01-26T00:00:00Z","","0" +"NM-14164","-2.5199999809265137","-2.5199999809265137","","1909-03-04T00:00:00Z","","0" +"NM-13563","2.1700000762939453","2.1700000762939453","","1958-04-21T00:00:00Z","","0" +"SA-0055","60.08000183105469","58.68000030517578","","2015-03-10T00:00:00Z","","1.399999976158142" +"NM-02209","111","111","","1961-08-01T00:00:00Z","","0" +"NM-01796","6.099999904632568","6.099999904632568","","1985-09-15T00:00:00Z","","0" +"NM-03143","348.05999755859375","348.05999755859375","","1986-01-11T00:00:00Z","","0" +"NM-13966","-11.109999656677246","-11.109999656677246","","1910-12-18T00:00:00Z","","0" +"NM-17147","67.3499984741211","67.3499984741211","","1962-01-08T00:00:00Z","","0" +"NM-28251","93.33000183105469","93.33000183105469","","1974-10-05T00:00:00Z","","0" +"NM-25522","169.8000030517578","169.8000030517578","","1976-01-07T00:00:00Z","","0" +"NM-06976","98.83000183105469","98.83000183105469","","2009-06-16T00:00:00Z","","0" +"NM-16538","18.170000076293945","18.170000076293945","","1953-05-28T00:00:00Z","","0" +"NM-01269","98.7699966430664","98.7699966430664","S","1954-08-27T00:00:00Z","","0" +"SO-0239","4.849999904632568","3.569999933242798","","2021-03-13T00:00:00Z","0001-01-01T09:05:00Z","1.2799999713897705" +"DE-0353","76.3499984741211","73.44999694824219","","2015-04-21T00:00:00Z","","2.9000000953674316" +"AB-0002","427.25","427.25","","2003-09-11T00:00:00Z","","" +"NM-28254","122.30000305175781","122.30000305175781","","2008-04-25T00:00:00Z","","0" +"NM-07228","99.94999694824219","99.94999694824219","","1976-12-15T00:00:00Z","","0" +"DE-0109","35.40999984741211","35.40999984741211","","2007-07-17T00:00:00Z","","0" +"NM-03399","10.079999923706055","10.079999923706055","","1995-01-10T00:00:00Z","","0" +"BC-0397","","11.0600004196167","","2021-03-19T00:00:00Z","","1.5" +"NM-25832","92.29000091552734","92.29000091552734","","1981-01-20T00:00:00Z","","0" +"DE-0312","42.06999969482422","42.06999969482422","","2008-05-12T00:00:00Z","","0" +"NM-03340","8.079999923706055","8.079999923706055","","2010-08-31T00:00:00Z","","0" +"NM-26795","379.1000061035156","379.1000061035156","","2016-09-22T00:00:00Z","","0" +"NM-02725","49.130001068115234","49.130001068115234","","2005-01-19T00:00:00Z","","0" +"NM-07719","54.84000015258789","54.84000015258789","","1945-09-18T00:00:00Z","","0" +"NM-06415","76.5","76.5","","1966-09-22T00:00:00Z","","0" +"NM-02501","60.20000076293945","60.20000076293945","","1949-07-21T00:00:00Z","","0" +"NM-28258","118.3499984741211","118.3499984741211","","2008-02-05T00:00:00Z","","0" +"NM-01282","124.41999816894531","124.41999816894531","","1957-08-17T00:00:00Z","","0" +"NM-06805","91.76000213623047","91.76000213623047","","2006-01-05T00:00:00Z","","0" +"NM-05090","98.4000015258789","98.4000015258789","","1965-10-21T00:00:00Z","","0" +"NM-16364","71.91999816894531","71.91999816894531","","1989-01-13T00:00:00Z","","0" +"NM-11331","11.489999771118164","11.489999771118164","","1968-08-02T00:00:00Z","","0" +"NM-06697","179.86000061035156","179.86000061035156","","1991-05-01T00:00:00Z","","0" +"NM-02442","62.189998626708984","62.189998626708984","","2008-12-09T00:00:00Z","","0" +"NM-14006","213.9199981689453","213.9199981689453","","1959-03-16T00:00:00Z","","0" +"NM-00312","320.5","320.5","","1983-02-18T00:00:00Z","","0" +"NM-03400","14.149999618530273","14.149999618530273","","2005-09-07T00:00:00Z","","0" +"NM-18998","271.7699890136719","271.7699890136719","","1954-03-04T00:00:00Z","","0" +"NM-00368","12.229999542236328","12.229999542236328","","1978-01-09T00:00:00Z","","0" +"NM-28022","485.8399963378906","485.8399963378906","S","2015-04-16T00:00:00Z","","0" +"NM-02529","42.93000030517578","42.93000030517578","","2010-01-21T00:00:00Z","","0" +"NM-01372","110","110","","1995-11-28T00:00:00Z","","0" +"NM-02153","126.7699966430664","126.7699966430664","R","1964-08-08T00:00:00Z","","0" +"NM-01525","147.64999389648438","147.64999389648438","","1974-02-05T00:00:00Z","","0" +"NM-10288","257.4100036621094","257.4100036621094","","1959-12-18T00:00:00Z","","0" +"NM-05963","35.41999816894531","35.41999816894531","","1942-10-15T00:00:00Z","","0" +"NM-28255","62.220001220703125","62.220001220703125","","1957-05-15T00:00:00Z","","0" +"NM-13233","6.28000020980835","6.28000020980835","","1958-01-31T00:00:00Z","","0" +"NM-13942","-3.309999942779541","-3.309999942779541","","1914-08-24T00:00:00Z","","0" +"NM-09042","83.5999984741211","83.5999984741211","","1961-09-25T00:00:00Z","","0" +"SB-0076","194.1999969482422","194.1999969482422","","1967-01-25T00:00:00Z","","0" +"NM-13688","-9.09000015258789","-9.09000015258789","","1912-05-21T00:00:00Z","","0" +"NM-12508","42.29999923706055","42.29999923706055","P","1961-02-14T00:00:00Z","","0" +"NM-17716","8.449999809265137","8.449999809265137","","1940-11-08T00:00:00Z","","0" +"NM-02447","82.04000091552734","82.04000091552734","","1962-04-12T00:00:00Z","","0" +"SO-0169","7.050000190734863","6.410000324249268","","2018-04-11T00:00:00Z","0001-01-01T13:55:00Z","0.6399999856948853" +"NM-19437","145.9199981689453","145.9199981689453","","1967-02-28T00:00:00Z","","0" +"NM-19959","48.08000183105469","48.08000183105469","","1955-11-15T00:00:00Z","","0" +"BC-0181","406.9100036621094","406.9100036621094","","2013-03-14T00:00:00Z","","0" +"NM-20452","194.30999755859375","194.30999755859375","","2003-09-09T00:00:00Z","","0" +"NM-13465","17.93000030517578","17.93000030517578","","1957-05-20T00:00:00Z","","0" +"NM-10239","173","173","","1963-08-14T00:00:00Z","","0" +"WL-0018","31.040000915527344","29.30000114440918","","2021-12-07T00:00:00Z","","1.7400000095367432" +"NM-11624","86.2699966430664","86.2699966430664","","1994-01-04T00:00:00Z","","0" +"NM-03146","352.1700134277344","352.1700134277344","","1977-01-04T00:00:00Z","","0" +"NM-04834","28.520000457763672","28.520000457763672","","1948-11-21T00:00:00Z","","0" +"EB-686","47.04999923706055","46.64999771118164","","2011-03-10T00:00:00Z","","0.4000000059604645" +"NM-16979","42.86000061035156","42.86000061035156","","1936-05-20T00:00:00Z","","0" +"NM-06381","132.8800048828125","132.8800048828125","","1970-01-23T00:00:00Z","","0" +"NM-14612","133.1300048828125","133.1300048828125","","1976-05-20T00:00:00Z","","0" +"NM-17716","-1.100000023841858","-1.100000023841858","","1943-01-26T00:00:00Z","","0" +"NM-05972","36.97999954223633","36.97999954223633","","1954-07-16T00:00:00Z","","0" +"NM-05490","84.75","84.75","","1948-05-20T00:00:00Z","","0" +"NM-11623","53","53","","1966-02-16T00:00:00Z","","0" +"NM-10074","64.37000274658203","64.37000274658203","","1981-04-01T00:00:00Z","","0" +"NM-13854","-7.46999979019165","-7.46999979019165","","1909-06-04T00:00:00Z","","0" +"NM-17716","3.549999952316284","3.549999952316284","","1945-08-26T00:00:00Z","","0" +"NM-02688","327.7699890136719","327.7699890136719","","2005-02-15T00:00:00Z","","0" +"NM-01872","10","10","","1968-07-15T00:00:00Z","","0" +"NM-11518","37.77000045776367","37.77000045776367","","1938-10-21T00:00:00Z","","0" +"NM-00455","","","D","2010-12-15T00:00:00Z","","0" +"NM-15119","185.02000427246094","185.02000427246094","","1994-02-02T00:00:00Z","","0" +"NM-00580","67.44000244140625","67.44000244140625","","1981-03-03T00:00:00Z","","0" +"NM-00030","57.810001373291016","57.810001373291016","","2013-01-09T00:00:00Z","","0" +"NM-02702","25.950000762939453","25.950000762939453","","1998-08-31T00:00:00Z","","0" +"NM-03792","40.70000076293945","40.70000076293945","","1956-01-23T00:00:00Z","","0" +"NM-02658","266.5299987792969","266.5299987792969","","1982-03-11T00:00:00Z","","0" +"NM-12727","81.7699966430664","81.7699966430664","","1974-01-07T00:00:00Z","","0" +"NM-02772","5.880000114440918","5.880000114440918","","2002-01-15T00:00:00Z","","0" +"NM-22863","158.91000366210938","158.91000366210938","","2006-05-18T00:00:00Z","","0" +"NM-09176","29.719999313354492","29.719999313354492","","1939-06-22T00:00:00Z","","0" +"NM-05345","64.61000061035156","64.61000061035156","","1935-02-01T00:00:00Z","","0" +"NM-07808","25.799999237060547","25.799999237060547","P","1965-09-13T00:00:00Z","","0" +"SO-0180","9.100000381469727","8.260000228881836","","2020-11-13T00:00:00Z","","0.8399999737739563" +"NM-00494","70.5199966430664","70.5199966430664","","2013-12-12T00:00:00Z","","0" +"BC-0135","334.1400146484375","334.1400146484375","","2018-04-06T00:00:00Z","","0" +"DE-0320","32.779998779296875","32.779998779296875","","2011-08-23T00:00:00Z","","0" +"NM-01927","162.7899932861328","162.7899932861328","","2005-01-12T00:00:00Z","","0" +"NM-06164","21.700000762939453","21.700000762939453","","1946-09-05T00:00:00Z","","0" +"NM-17715","13.859999656677246","13.859999656677246","P","1954-09-22T00:00:00Z","","0" +"NM-02043","8.899999618530273","8.899999618530273","","1971-04-15T00:00:00Z","","0" +"WL-0087","51.79166793823242","50.11166763305664","","1996-10-17T00:00:00Z","","1.6799999475479126" +"EB-012","91","91","","1954-12-06T00:00:00Z","","0" +"NM-05516","7.800000190734863","7.800000190734863","","1962-11-15T00:00:00Z","","0" +"NM-10040","83","83","","1992-05-01T00:00:00Z","","0" +"NM-01007","337.70001220703125","337.70001220703125","","1976-01-07T00:00:00Z","","0" +"NM-02101","3.4000000953674316","3.4000000953674316","","1970-08-15T00:00:00Z","","0" +"NM-02622","167.3699951171875","167.3699951171875","","1976-07-01T00:00:00Z","","0" +"NM-27535","132.0399932861328","132.0399932861328","","1986-12-03T00:00:00Z","","0" +"NM-13254","11.0600004196167","11.0600004196167","","1957-10-18T00:00:00Z","","0" +"NM-22187","416.8999938964844","416.8999938964844","","2015-11-04T00:00:00Z","","0" +"NM-17369","56.599998474121094","56.599998474121094","","1957-01-16T00:00:00Z","","0" +"NM-01796","5.800000190734863","5.800000190734863","","1969-01-15T00:00:00Z","","0" +"NM-09163","131.72999572753906","131.72999572753906","","1976-02-13T00:00:00Z","","0" +"NM-05515","113.44000244140625","113.44000244140625","","1968-02-28T00:00:00Z","","0" +"NM-08651","100.68000030517578","100.68000030517578","","1965-12-01T00:00:00Z","","0" +"NM-19911","46.599998474121094","46.599998474121094","","1962-01-04T00:00:00Z","","0" +"NM-01406","237.86000061035156","237.86000061035156","","1986-02-20T00:00:00Z","","0" +"NM-03372","162.25","162.25","","2005-02-03T00:00:00Z","","0" +"EB-303","17.030000686645508","24.229999542236328","P","2011-10-06T00:00:00Z","","" +"NM-19685","44.380001068115234","44.380001068115234","R","1966-09-16T00:00:00Z","","0" +"NM-08648","40.310001373291016","40.310001373291016","","1950-05-17T00:00:00Z","","0" +"SA-0068","229.89999389648438","228.47999572753906","","2010-05-10T00:00:00Z","","1.4199999570846558" +"NM-02624","249.02000427246094","249.02000427246094","","1994-02-17T00:00:00Z","","0" +"SB-0299","115.94000244140625","115.94000244140625","","1999-02-20T00:00:00Z","","0" +"NM-12775","-49.5099983215332","-49.5099983215332","","1912-01-29T00:00:00Z","","0" +"NM-28253","28.75","28.75","","1977-12-15T00:00:00Z","","0" +"SB-0299","143.22000122070312","143.22000122070312","","2012-05-25T00:00:00Z","","0" +"NM-17452","66.31999969482422","66.31999969482422","","1955-11-21T00:00:00Z","","0" +"NM-03363","665","665","","1988-08-19T00:00:00Z","","0" +"NM-17716","7.230000019073486","7.230000019073486","","1940-03-07T00:00:00Z","","0" +"NM-01720","152.6999969482422","152.6999969482422","","2011-11-08T00:00:00Z","","0" +"SO-0155","12.970000267028809","12.25","","2021-08-19T00:00:00Z","0001-01-01T14:56:00Z","0.7200000286102295" +"NM-03233","18.450000762939453","18.450000762939453","","1950-02-08T00:00:00Z","","0" +"NM-02837","73.31999969482422","73.31999969482422","","1963-01-07T00:00:00Z","","0" +"NM-25680","-102.68000030517578","-102.68000030517578","","1988-08-20T00:00:00Z","","0" +"NM-28257","46.540000915527344","46.540000915527344","","1990-06-15T00:00:00Z","","0" +"NM-09042","84.19999694824219","84.19999694824219","","1962-01-24T00:00:00Z","","0" +"NM-28252","43.439998626708984","43.439998626708984","","2011-01-05T00:00:00Z","","0" +"NM-23205","47.72999954223633","47.72999954223633","Z","1995-06-02T00:00:00Z","","0" +"NM-13389","-5.269999980926514","-5.269999980926514","","1911-12-17T00:00:00Z","","0" +"DE-0327","27.8799991607666","27.8799991607666","","2011-12-16T00:00:00Z","","0" +"NM-02256","10.399999618530273","10.399999618530273","","1956-03-15T00:00:00Z","","0" +"NM-17548","17.229999542236328","17.229999542236328","","1953-07-27T00:00:00Z","","0" +"NM-00185","12.600000381469727","12.600000381469727","","1962-09-15T00:00:00Z","","0" +"NM-03389","33.369998931884766","33.369998931884766","","2008-02-25T00:00:00Z","","0" +"NM-01926","5.699999809265137","5.699999809265137","","1984-12-15T00:00:00Z","","0" +"NM-09596","-47.20000076293945","-47.20000076293945","","1913-08-05T00:00:00Z","","0" +"DE-0091","90.1500015258789","90.1500015258789","","2005-11-29T00:00:00Z","","0" +"NM-28023","486.4800109863281","486.4800109863281","S","2015-04-18T00:00:00Z","","0" +"EB-336","209.22999572753906","209.22999572753906","","2009-08-06T00:00:00Z","","0" +"NM-28257","53.810001373291016","53.810001373291016","","1981-09-05T00:00:00Z","","0" +"NM-09036","53.9900016784668","53.9900016784668","","1945-01-05T00:00:00Z","","0" +"NM-27720","44.13999938964844","44.13999938964844","","1946-01-25T00:00:00Z","","0" +"NM-00144","111.08999633789062","111.08999633789062","","1980-02-06T00:00:00Z","","0" +"NM-01427","785.489990234375","785.489990234375","","2008-03-04T00:00:00Z","","0" +"NM-00273","52.369998931884766","52.369998931884766","","2016-01-07T00:00:00Z","","0" +"NM-17343","30.950000762939453","30.950000762939453","","1944-01-22T00:00:00Z","","0" +"NM-02518","7.599999904632568","7.599999904632568","","2002-06-15T00:00:00Z","","0" +"NM-00526","48.34000015258789","48.34000015258789","","1956-01-10T00:00:00Z","","0" +"NM-14293","5.630000114440918","5.630000114440918","","1965-01-04T00:00:00Z","","0" +"UC-0108","71.2300033569336","71.2300033569336","","2014-03-24T00:00:00Z","","0" +"AB-0183","348.4700012207031","348.4700012207031","","2007-01-11T00:00:00Z","","" +"EB-298","152.8800048828125","152.8800048828125","","2006-10-17T00:00:00Z","","0" +"NM-21180","67.94999694824219","67.94999694824219","","1941-07-12T00:00:00Z","","0" +"NM-28020","465.739990234375","465.739990234375","S","2015-04-24T00:00:00Z","","0" +"NM-28259","120.66000366210938","120.66000366210938","","2019-11-15T00:00:00Z","","0" +"NM-02591","","","D","1954-08-15T00:00:00Z","","0" +"EB-012","100.69000244140625","100.69000244140625","","1960-11-09T00:00:00Z","","0" +"NM-04404","102.66999816894531","102.66999816894531","","1958-07-30T00:00:00Z","","0" +"NM-28252","58.4900016784668","58.4900016784668","","1980-01-15T00:00:00Z","","0" +"SB-0360","92.12000274658203","92.12000274658203","","1972-12-19T00:00:00Z","","0" +"NM-02466","86.94999694824219","86.94999694824219","","1964-01-14T00:00:00Z","","0" +"NM-17404","60.7400016784668","60.7400016784668","","1975-11-01T00:00:00Z","","0" +"NM-14403","-14.859999656677246","-14.859999656677246","","1910-08-10T00:00:00Z","","0" +"DE-0190","54.04999923706055","54.04999923706055","","2005-04-11T00:00:00Z","","0" +"NM-02667","65.6500015258789","65.6500015258789","","1987-01-06T00:00:00Z","","0" +"NM-09167","45.369998931884766","45.369998931884766","","1971-02-04T00:00:00Z","","0" +"SO-0252","8.199999809265137","7.769999980926514","","2021-02-13T00:00:00Z","0001-01-01T12:00:00Z","0.4300000071525574" +"NM-03795","6.679999828338623","6.679999828338623","","1947-01-13T00:00:00Z","","0" +"SB-0234","120.12000274658203","120.12000274658203","","1970-01-06T00:00:00Z","","0" +"NM-06676","9.899999618530273","9.899999618530273","","1970-07-15T00:00:00Z","","0" +"NM-01896","20.3700008392334","20.3700008392334","","2014-01-30T00:00:00Z","","0" +"NM-13430","-11.680000305175781","-11.680000305175781","","1910-03-18T00:00:00Z","","0" +"TV-219","267.8299865722656","266.66998291015625","","2007-04-02T00:00:00Z","","1.159999966621399" +"NM-10803","-0.550000011920929","-0.550000011920929","","1950-01-11T00:00:00Z","","0" +"NM-02117","97.41999816894531","97.41999816894531","","1973-01-25T00:00:00Z","","0" +"NM-01896","11.109999656677246","11.109999656677246","","2003-12-22T00:00:00Z","","0" +"NM-20685","18.739999771118164","18.739999771118164","","1944-02-24T00:00:00Z","","0" +"NM-09412","162.24000549316406","162.24000549316406","","1956-07-26T00:00:00Z","","0" +"DE-0080","82.02999877929688","82.02999877929688","","2014-10-20T00:00:00Z","","0" +"NM-08086","126.36000061035156","126.36000061035156","","1976-12-07T00:00:00Z","","0" +"NM-00543","75.19999694824219","75.19999694824219","","2004-01-06T00:00:00Z","","0" +"DE-0119","32.47999954223633","32.47999954223633","","2003-02-26T00:00:00Z","","0" +"NM-10652","8.579999923706055","8.579999923706055","","1951-01-15T00:00:00Z","","0" +"NM-00548","81.83000183105469","81.83000183105469","","2001-01-04T00:00:00Z","","0" +"NM-02471","149.13999938964844","149.13999938964844","","1990-10-26T00:00:00Z","","0" +"SO-0203","12.859999656677246","12.859999656677246","","2020-11-03T00:00:00Z","","0" +"NM-11727","123.56999969482422","123.56999969482422","","1959-01-14T00:00:00Z","","0" +"QY-0385","59.900001525878906","59.900001525878906","","1955-03-16T00:00:00Z","","0" +"NM-03197","328","328","","1972-01-04T00:00:00Z","","0" +"NM-11831","74.73999786376953","74.73999786376953","","1945-01-13T00:00:00Z","","0" +"NM-02356","140.1999969482422","140.1999969482422","","1992-01-28T00:00:00Z","","0" +"NM-11684","143","143","","1971-10-15T00:00:00Z","","0" +"NM-09536","-51.81999969482422","-51.81999969482422","","1912-05-31T00:00:00Z","","0" +"NM-13869","-8.6899995803833","-8.6899995803833","","1910-03-22T00:00:00Z","","0" +"NM-13775","-3.890000104904175","-3.890000104904175","","1911-06-04T00:00:00Z","","0" +"SB-0056","80.52999877929688","80.52999877929688","","1968-01-22T00:00:00Z","","0" +"NM-21032","33.849998474121094","33.849998474121094","","1987-11-03T00:00:00Z","","0" +"NM-02006","7.599999904632568","7.599999904632568","","1959-08-15T00:00:00Z","","0" +"NM-13621","-21.790000915527344","-21.790000915527344","","1911-01-26T00:00:00Z","","0" +"BC-0312","228.8300018310547","228.8300018310547","","2019-01-11T00:00:00Z","","0" +"NM-02707","14.869999885559082","14.869999885559082","","1947-01-17T00:00:00Z","","0" +"NM-17189","61.40999984741211","61.40999984741211","","1955-01-25T00:00:00Z","","0" +"NM-00387","61.13999938964844","61.13999938964844","","1974-01-08T00:00:00Z","","0" +"NM-13594","20.520000457763672","20.520000457763672","","1968-01-25T00:00:00Z","","0" +"NM-01315","38.220001220703125","38.220001220703125","","2006-07-14T00:00:00Z","","0" +"NM-01992","129","129","","1997-01-30T00:00:00Z","","0" +"NM-08648","44.290000915527344","44.290000915527344","","1971-01-19T00:00:00Z","","0" +"DE-0108","43.099998474121094","43.099998474121094","","2015-07-07T00:00:00Z","","0" +"NM-01836","174.44000244140625","174.44000244140625","","1977-02-28T00:00:00Z","","0" +"NM-03060","164.44000244140625","164.44000244140625","","1982-11-18T00:00:00Z","","0" +"EB-478","17","17","","1984-11-30T00:00:00Z","","0" +"NM-04198","40.77000045776367","40.77000045776367","","1970-01-16T00:00:00Z","","0" +"NM-06112","26.3799991607666","26.3799991607666","","1948-01-12T00:00:00Z","","0" +"UC-0036","231.36000061035156","231.36000061035156","","2010-01-13T00:00:00Z","","0" +"NM-03397","25.059999465942383","25.059999465942383","","1991-02-06T00:00:00Z","","0" +"NM-14161","-44.88999938964844","-44.88999938964844","","1913-12-05T00:00:00Z","","0" +"NM-04582","64.0999984741211","64.0999984741211","","1946-01-12T00:00:00Z","","0" +"TV-218","214.16000366210938","213.55999755859375","","2006-06-02T00:00:00Z","","0.6000000238418579" +"NM-17716","4.730000019073486","4.730000019073486","","1947-07-24T00:00:00Z","","0" +"NM-24430","-157.5800018310547","-157.5800018310547","","1983-02-12T00:00:00Z","","0" +"NM-10099","173.6300048828125","173.6300048828125","","1970-07-01T00:00:00Z","","0" +"NM-28010","498.92999267578125","498.92999267578125","S","2015-05-18T00:00:00Z","","0" +"SA-0058","20.459999084472656","20.459999084472656","","1996-02-07T00:00:00Z","","0" +"NM-09587","79.22000122070312","79.22000122070312","","1966-01-14T00:00:00Z","","0" +"NM-07775","36.849998474121094","36.849998474121094","P","1966-02-09T00:00:00Z","","0" +"NM-19627","383.7300109863281","383.7300109863281","","1959-01-15T00:00:00Z","","0" +"NM-02527","6.300000190734863","6.300000190734863","","1987-09-15T00:00:00Z","","0" +"NM-19862","48.790000915527344","48.790000915527344","","1943-02-01T00:00:00Z","","0" +"NM-12911","65.05000305175781","65.05000305175781","","1944-03-24T00:00:00Z","","0" +"EB-245","191.08999633789062","191.08999633789062","","1998-11-24T00:00:00Z","","0" +"NM-05731","150","150","","1950-03-17T00:00:00Z","","0" +"NM-27404","182.2899932861328","182.2899932861328","","2009-01-14T00:00:00Z","","0" +"NM-03903","330.04998779296875","330.04998779296875","","1976-03-27T00:00:00Z","","0" +"NM-27771","104.44999694824219","104.44999694824219","","1980-01-16T00:00:00Z","","0" +"NM-21920","8.819999694824219","8.819999694824219","","1959-02-18T00:00:00Z","","0" +"NM-01135","216.52000427246094","216.52000427246094","","1986-10-22T00:00:00Z","","0" +"NM-11331","11","11","","1977-03-25T00:00:00Z","","0" +"NM-04775","66.06999969482422","66.06999969482422","","1945-01-09T00:00:00Z","","0" +"NM-17301","136.1199951171875","136.1199951171875","P","1977-06-03T00:00:00Z","","0" +"AB-0105","409.739990234375","409.739990234375","","2000-07-19T00:00:00Z","","" +"NM-02839","265","265","","1973-11-05T00:00:00Z","","0" +"AB-0210","168.3800048828125","168.3800048828125","","2015-11-03T00:00:00Z","","0" +"NM-13573","22.950000762939453","22.950000762939453","","1960-10-14T00:00:00Z","","0" +"NM-03420","33.279998779296875","33.279998779296875","","1987-08-28T00:00:00Z","","0" +"NM-04292","10.010000228881836","10.010000228881836","","1969-01-28T00:00:00Z","","0" +"NM-01986","6.099999904632568","6.099999904632568","","1949-04-15T00:00:00Z","","0" +"NM-16781","41.02000045776367","41.02000045776367","","1972-01-05T00:00:00Z","","0" +"SO-0245","8.100000381469727","7.130000114440918","","2020-10-03T00:00:00Z","","0.9700000286102295" +"NM-05836","59.4900016784668","59.4900016784668","","1934-02-10T00:00:00Z","","0" +"NM-25994","197.2100067138672","197.2100067138672","","1970-03-27T00:00:00Z","","0" +"QU-007","94.80999755859375","93.58999633789062","","2013-12-16T00:00:00Z","","1.2200000286102295" +"NM-28259","115.26000213623047","115.26000213623047","","2015-11-24T00:00:00Z","","0" +"NM-07573","89.87000274658203","89.87000274658203","P","1973-03-20T00:00:00Z","","0" +"NM-02256","6.099999904632568","6.099999904632568","","1966-10-15T00:00:00Z","","0" +"NM-17206","76.01000213623047","76.01000213623047","","1967-01-04T00:00:00Z","","0" +"NM-25878","20","20","","1962-08-07T00:00:00Z","","0" +"SB-0218","207.72999572753906","207.72999572753906","","1969-02-16T00:00:00Z","","0" +"NM-20668","30.270000457763672","30.270000457763672","","1947-05-29T00:00:00Z","","0" +"NM-21367","280","280","","1979-07-16T00:00:00Z","","0" +"NM-08047","-37.959999084472656","-37.959999084472656","","1913-01-31T00:00:00Z","","0" +"NM-02349","14.300000190734863","14.300000190734863","","1970-05-15T00:00:00Z","","0" +"NM-00434","11.25","11.25","","1960-01-08T00:00:00Z","","0" +"NM-00951","284.0299987792969","284.0299987792969","","1986-01-13T00:00:00Z","","0" +"EB-276","191.8300018310547","191.8300018310547","","1973-08-22T00:00:00Z","","0" +"AB-0054","41.220001220703125","41.220001220703125","","2012-10-04T00:00:00Z","","" +"NM-16122","200","200","","1950-01-01T00:00:00Z","","0" +"NM-23201","85.11000061035156","85.11000061035156","","1956-10-03T00:00:00Z","","0" +"NM-13044","61.15999984741211","61.15999984741211","","1986-02-21T00:00:00Z","","0" +"NM-21680","327.6499938964844","327.6499938964844","","2006-01-11T00:00:00Z","","0" +"NM-00548","82.02999877929688","82.02999877929688","","2002-01-06T00:00:00Z","","0" +"NM-20061","56.099998474121094","56.099998474121094","","1954-09-24T00:00:00Z","","0" +"NM-28250","101.2300033569336","101.2300033569336","","1985-04-15T00:00:00Z","","0" +"WL-0090","54.13999938964844","51.7599983215332","","2018-02-14T00:00:00Z","","2.380000114440918" +"EB-276","162.75","162.75","","1969-03-03T00:00:00Z","","0" +"NM-08284","145.99000549316406","145.99000549316406","","1968-04-03T00:00:00Z","","0" +"NM-01913","105.69999694824219","105.69999694824219","","1995-01-16T00:00:00Z","","0" +"NM-02349","","","D","1955-07-15T00:00:00Z","","0" +"NM-21940","22.020000457763672","22.020000457763672","","1960-10-19T00:00:00Z","","0" +"NM-24166","43.779998779296875","43.779998779296875","","1978-03-31T00:00:00Z","","0" +"NM-16465","72.87999725341797","72.87999725341797","","1956-01-17T00:00:00Z","","0" +"NM-28254","39.25","39.25","","1960-03-05T00:00:00Z","","0" +"NM-02349","13.899999618530273","13.899999618530273","","1975-02-15T00:00:00Z","","0" +"TC-240","344.0799865722656","342.5299987792969","","2013-06-21T00:00:00Z","","1.5499999523162842" +"NM-09075","-59.90999984741211","-59.90999984741211","","1908-08-29T00:00:00Z","","0" +"NM-02189","141.27999877929688","141.27999877929688","","1987-02-04T00:00:00Z","","0" +"NM-19298","46.470001220703125","46.470001220703125","","1986-10-08T00:00:00Z","","0" +"NM-09536","-86.47000122070312","-86.47000122070312","","1919-02-14T00:00:00Z","","0" +"NM-09289","89.80999755859375","89.80999755859375","","1953-07-21T00:00:00Z","","0" +"NM-19782","70.9800033569336","70.9800033569336","","1956-01-10T00:00:00Z","","0" +"NM-12684","33.91999816894531","33.91999816894531","","1977-04-28T00:00:00Z","","0" +"NM-01035","35.02000045776367","35.02000045776367","","1945-08-02T00:00:00Z","","0" +"NM-10517","11.640000343322754","11.640000343322754","","1943-01-23T00:00:00Z","","0" +"SB-0287","58.61000061035156","58.61000061035156","","1950-01-05T00:00:00Z","","0" +"NM-21293","14.59000015258789","14.59000015258789","","1957-05-07T00:00:00Z","","0" +"NM-21251","3.0399999618530273","3.0399999618530273","Z","2008-07-02T00:00:00Z","","0" +"NM-12140","10.989999771118164","10.989999771118164","","1943-01-14T00:00:00Z","","0" +"NM-04237","12.649999618530273","12.649999618530273","","1956-01-17T00:00:00Z","","0" +"NM-00754","54.900001525878906","54.900001525878906","","1979-01-03T00:00:00Z","","0" +"NM-25154","182.3000030517578","182.3000030517578","","1967-10-31T00:00:00Z","","0" +"NM-03387","34.7400016784668","34.7400016784668","","1989-02-23T00:00:00Z","","0" +"NM-17716","1.4800000190734863","1.4800000190734863","","1943-07-05T00:00:00Z","","0" +"NM-00489","52.810001373291016","52.810001373291016","","2002-01-03T00:00:00Z","","0" +"NM-06848","14.430000305175781","14.430000305175781","","1952-12-03T00:00:00Z","","0" +"NM-04700","77.62000274658203","77.62000274658203","","1959-11-03T00:00:00Z","","0" +"NM-28250","101.33999633789062","101.33999633789062","","1983-03-05T00:00:00Z","","0" +"SB-0442","171.3000030517578","171.3000030517578","","2006-06-25T00:00:00Z","","0" +"NM-00257","96.19000244140625","96.19000244140625","","1977-11-01T00:00:00Z","","0" +"NM-21374","229.1300048828125","229.1300048828125","","1995-07-17T00:00:00Z","","0" +"NM-22709","7.989999771118164","7.989999771118164","Z","2008-02-05T00:00:00Z","","0" +"NM-28253","38.08000183105469","38.08000183105469","","1967-06-15T00:00:00Z","","0" +"NM-16434","106.62000274658203","106.62000274658203","","1967-01-12T00:00:00Z","","0" +"NM-21920","8.8100004196167","8.8100004196167","","1951-08-16T00:00:00Z","","0" +"NM-02348","14","14","","1995-04-15T00:00:00Z","","0" +"NM-20776","25.09000015258789","25.09000015258789","","1954-02-25T00:00:00Z","","0" +"NM-11391","59.18000030517578","59.18000030517578","","1981-03-03T00:00:00Z","","0" +"NM-00847","183.72999572753906","183.72999572753906","","2001-03-15T00:00:00Z","","0" +"BW-0215","76.55000305175781","76.55000305175781","","1957-03-18T00:00:00Z","","0" +"EB-478","65","65","","1988-12-31T00:00:00Z","","0" +"NM-07760","31.1200008392334","31.1200008392334","","1992-08-28T00:00:00Z","","0" +"NM-03427","23.549999237060547","23.549999237060547","","2002-09-19T00:00:00Z","","0" +"NM-00316","6.730000019073486","6.730000019073486","","1963-01-08T00:00:00Z","","0" +"EB-651","148.1999969482422","148.1999969482422","","2008-08-06T00:00:00Z","","0" +"NM-11815","126.26000213623047","126.26000213623047","","1961-01-24T00:00:00Z","","0" +"NM-00643","101.5","101.5","","2002-07-23T00:00:00Z","","0" +"NM-27711","114.08999633789062","114.08999633789062","","1987-02-18T00:00:00Z","","0" +"NM-28010","498.9200134277344","498.9200134277344","S","2015-05-28T00:00:00Z","","0" +"NM-21503","10.890000343322754","10.890000343322754","","2009-10-05T00:00:00Z","","0" +"EB-214","77.22000122070312","76.81999969482422","","2004-03-31T00:00:00Z","","0.4000000059604645" +"AB-0053","49.97999954223633","49.97999954223633","","1996-10-01T00:00:00Z","","" +"NM-20254","37.279998779296875","37.279998779296875","","1943-02-02T00:00:00Z","","0" +"NM-03294","110.30999755859375","110.30999755859375","","1986-01-15T00:00:00Z","","0" +"NM-07661","317.6000061035156","317.6000061035156","","1987-01-18T00:00:00Z","","0" +"EB-276","126.69000244140625","126.69000244140625","","1959-08-31T00:00:00Z","","0" +"NM-13899","3.069999933242798","3.069999933242798","","1970-03-09T00:00:00Z","","0" +"NM-02273","26.350000381469727","26.350000381469727","","2007-02-02T00:00:00Z","","0" +"NM-07685","26.889999389648438","26.889999389648438","","1943-03-30T00:00:00Z","","0" +"NM-09769","20.799999237060547","20.799999237060547","","1939-01-13T00:00:00Z","","0" +"NM-17716","5.78000020980835","5.78000020980835","","1948-11-24T00:00:00Z","","0" +"DE-0125","39.45000076293945","39.45000076293945","","2016-07-27T00:00:00Z","","0" +"NM-21985","10.140000343322754","10.140000343322754","","1993-10-21T00:00:00Z","","0" +"NM-04120","47.58000183105469","47.58000183105469","","1964-01-17T00:00:00Z","","0" +"NM-13774","-11.399999618530273","-11.399999618530273","","1911-08-26T00:00:00Z","","0" +"NM-28019","477.989990234375","477.989990234375","S","2015-03-19T00:00:00Z","","0" +"NM-28254","37.099998474121094","37.099998474121094","","2016-11-23T00:00:00Z","","0" +"NM-22966","788.1599731445312","788.1599731445312","Z","1991-04-05T00:00:00Z","","0" +"NM-26003","86.94000244140625","86.94000244140625","","1976-06-16T00:00:00Z","","0" +"NM-03281","77.5","77.5","","1972-01-19T00:00:00Z","","0" +"NM-13438","62.970001220703125","62.970001220703125","","1978-08-25T00:00:00Z","","0" +"SO-0179","9.399999618530273","8.469999313354492","","2020-11-13T00:00:00Z","","0.9300000071525574" +"NM-02259","37.06999969482422","37.06999969482422","","2013-01-24T00:00:00Z","","0" +"NM-02758","260.1700134277344","260.1700134277344","","1942-09-09T00:00:00Z","","0" +"NM-07815","20.729999542236328","20.729999542236328","","1948-03-25T00:00:00Z","","0" +"SB-0424","54.18000030517578","54.18000030517578","","1976-02-05T00:00:00Z","","0" +"AB-0183","346.44000244140625","346.44000244140625","","1996-10-31T00:00:00Z","","" +"NM-08612","80.05999755859375","80.05999755859375","","1954-01-08T00:00:00Z","","0" +"NM-21503","10.90999984741211","10.90999984741211","","1999-05-11T00:00:00Z","","0" +"NM-28259","91.38999938964844","91.38999938964844","","1955-05-25T00:00:00Z","","0" +"NM-00677","58.18000030517578","58.18000030517578","","1961-01-04T00:00:00Z","","0" +"NM-13036","7.840000152587891","7.840000152587891","","1974-03-29T00:00:00Z","","0" +"AB-0101","714.5599975585938","714.5599975585938","","2011-05-05T00:00:00Z","","" +"NM-07881","12.199999809265137","12.199999809265137","","1950-11-20T00:00:00Z","","0" +"NM-19432","257.3800048828125","257.3800048828125","T","1983-09-06T00:00:00Z","","0" +"NM-03467","430.67999267578125","430.67999267578125","Z","1990-10-03T00:00:00Z","","0" +"NM-18428","289.2200012207031","289.2200012207031","","1987-01-15T00:00:00Z","","0" +"NM-02181","9.300000190734863","9.300000190734863","","1989-02-13T00:00:00Z","","0" +"NM-11815","123.05000305175781","123.05000305175781","","1957-01-09T00:00:00Z","","0" +"NM-18017","25.59000015258789","25.59000015258789","","1962-03-07T00:00:00Z","","0" +"NM-22866","52.040000915527344","52.040000915527344","","1973-01-30T00:00:00Z","","0" +"NM-03364","737","737","","1988-05-18T00:00:00Z","","0" +"BC-0201","108.33999633789062","108.33999633789062","","2016-03-09T00:00:00Z","","0" +"NM-00191","68.69000244140625","68.69000244140625","","1993-02-03T00:00:00Z","","0" +"SO-0181","8.869999885559082","7.899999618530273","","2017-10-09T00:00:00Z","0001-01-01T13:57:00Z","0.9700000286102295" +"NM-07208","124.16999816894531","124.16999816894531","","1971-01-25T00:00:00Z","","0" +"AR-0212","13.720000267028809","12.84000015258789","","2016-11-21T00:00:00Z","0001-01-01T12:00:00Z","0.8799999952316284" +"NM-20372","10.779999732971191","10.779999732971191","","1946-02-20T00:00:00Z","","0" +"NM-03760","46.77000045776367","46.77000045776367","","1953-01-23T00:00:00Z","","0" +"NM-01986","6.400000095367432","6.400000095367432","","1996-01-15T00:00:00Z","","0" +"NM-25496","90.66000366210938","90.66000366210938","","1973-06-12T00:00:00Z","","0" +"NM-01971","7.300000190734863","7.300000190734863","","1974-04-15T00:00:00Z","","0" +"NM-28250","92.08999633789062","92.08999633789062","","1987-04-25T00:00:00Z","","0" +"OG-0019","431.989990234375","431.8900146484375","","2023-01-23T00:00:00Z","0001-01-01T12:46:00Z","0.10000000149011612" +"WL-0090","49.45833206176758","47.078330993652344","","1998-01-28T00:00:00Z","","2.380000114440918" +"NM-03421","44.349998474121094","44.349998474121094","","2000-12-13T00:00:00Z","","0" +"SB-0166","254.8300018310547","254.8300018310547","","1985-01-10T00:00:00Z","","0" +"NM-02367","14.09000015258789","14.09000015258789","","1960-07-20T00:00:00Z","","0" +"NM-21263","2.6700000762939453","2.6700000762939453","Z","2008-04-15T00:00:00Z","","0" +"NM-01456","367.7900085449219","367.7900085449219","","2003-04-30T00:00:00Z","","0" +"NM-02563","36.38999938964844","36.38999938964844","","1963-07-23T00:00:00Z","","0" +"NM-15341","93.25","93.25","","1965-03-10T00:00:00Z","","0" +"NM-02996","66.33999633789062","66.33999633789062","","2008-03-18T00:00:00Z","","0" +"NM-20333","53.150001525878906","53.150001525878906","","1945-11-29T00:00:00Z","","0" +"NM-02710","39.189998626708984","39.189998626708984","","1978-08-01T00:00:00Z","","0" +"HS-024","10.84000015258789","11.3100004196167","","2012-10-26T00:00:00Z","","-0.4699999988079071" +"NM-28259","166.7100067138672","166.7100067138672","","1981-07-15T00:00:00Z","","0" +"NM-03380","","","D","2006-02-28T00:00:00Z","","0" +"NM-13573","48.33000183105469","48.33000183105469","","1957-03-21T00:00:00Z","","0" +"NM-07409","278.760009765625","278.760009765625","","1984-02-01T00:00:00Z","","0" +"NM-18658","21.25","21.25","","1982-04-20T00:00:00Z","","0" +"NM-13331","17.649999618530273","17.649999618530273","","1991-02-22T00:00:00Z","","0" +"NM-10143","33.31999969482422","33.31999969482422","","1939-02-03T00:00:00Z","","0" +"NM-05553","124.72000122070312","124.72000122070312","","1997-02-19T00:00:00Z","","0" +"NM-02830","-42","-42","","1974-01-31T00:00:00Z","","0" +"NM-11944","-0.36000001430511475","-0.36000001430511475","","1948-07-20T00:00:00Z","","0" +"EB-218","257.7099914550781","257.7099914550781","","1973-08-03T00:00:00Z","","0" +"NM-05713","68.94999694824219","68.94999694824219","","1931-09-21T00:00:00Z","","0" +"NM-01775","221.6999969482422","221.6999969482422","","1979-01-08T00:00:00Z","","0" +"BC-0268","302.1300048828125","302.1300048828125","","2018-12-18T00:00:00Z","","0" +"NM-12711","33.849998474121094","33.849998474121094","","1958-01-18T00:00:00Z","","0" +"NM-17526","22.8700008392334","22.8700008392334","","1935-09-17T00:00:00Z","","0" +"NM-28250","80.2300033569336","80.2300033569336","","1998-06-25T00:00:00Z","","0" +"NM-17071","34.380001068115234","34.380001068115234","","1946-01-20T00:00:00Z","","0" +"NM-08100","61.04999923706055","61.04999923706055","","1983-01-12T00:00:00Z","","0" +"NM-05167","139.55999755859375","139.55999755859375","","1953-11-27T00:00:00Z","","0" +"NM-28257","-9.239999771118164","-9.239999771118164","","2010-12-23T00:00:00Z","","0" +"NM-17127","32.310001373291016","32.310001373291016","","1945-08-01T00:00:00Z","","0" +"NM-20769","25.170000076293945","25.170000076293945","","1953-02-26T00:00:00Z","","0" +"NM-10570","100.7699966430664","100.7699966430664","","1958-08-25T00:00:00Z","","0" +"NM-11552","124.16000366210938","124.16000366210938","","1969-01-15T00:00:00Z","","0" +"EB-246","331.9200134277344","331.9200134277344","","2005-06-28T00:00:00Z","","0" +"NM-03007","97.12999725341797","97.12999725341797","","2005-02-16T00:00:00Z","","0" +"NM-00691","24.809999465942383","24.809999465942383","","2009-07-07T00:00:00Z","","0" +"NM-02702","35.86000061035156","35.86000061035156","","1996-04-15T00:00:00Z","","0" +"NM-25680","-96.80999755859375","-96.80999755859375","","1988-05-11T00:00:00Z","","0" +"AB-0092","507.1400146484375","507.1400146484375","","2009-08-04T00:00:00Z","","" +"NM-22708","185.22000122070312","185.22000122070312","","1959-05-06T00:00:00Z","","0" +"NM-08189","9.699999809265137","9.699999809265137","","1966-10-15T00:00:00Z","","0" +"NM-02527","9.5","9.5","","1977-05-15T00:00:00Z","","0" +"NM-01897","11.779999732971191","11.779999732971191","","2005-09-09T00:00:00Z","","0" +"NM-00366","99.06999969482422","99.06999969482422","","1978-01-01T00:00:00Z","","0" +"NM-01118","154.17999267578125","154.17999267578125","","1986-10-23T00:00:00Z","","0" +"NM-00494","45.900001525878906","45.900001525878906","","1993-01-06T00:00:00Z","","0" +"NM-03071","253.6999969482422","253.6999969482422","","1990-01-04T00:00:00Z","","0" +"NM-01841","266.1499938964844","266.1499938964844","","1986-11-21T00:00:00Z","","0" +"NM-02207","9.5","9.5","","1962-11-15T00:00:00Z","","0" +"NM-10468","244.6699981689453","244.6699981689453","","1966-02-16T00:00:00Z","","0" +"NM-01791","313.2300109863281","313.2300109863281","","1994-01-20T00:00:00Z","","0" +"NM-05800","2.7200000286102295","2.7200000286102295","","1975-07-02T00:00:00Z","","0" +"DE-0308","47.900001525878906","47.900001525878906","","2016-03-08T00:00:00Z","","0" +"NM-03920","107.30999755859375","107.30999755859375","","2000-01-10T00:00:00Z","","0" +"AH-044","20.5","20.5","","2006-03-10T00:00:00Z","","0" +"NM-02666","51.97999954223633","51.97999954223633","","1952-01-14T00:00:00Z","","0" +"BC-0107","246.0500030517578","246.0500030517578","","2015-06-08T00:00:00Z","","0" +"NM-27480","212.39999389648438","212.39999389648438","","1971-01-11T00:00:00Z","","0" +"NM-22707","186.6699981689453","186.6699981689453","","2008-02-26T00:00:00Z","","0" +"NM-07275","10.3100004196167","10.3100004196167","","1955-11-15T00:00:00Z","","0" +"NM-21436","24.270000457763672","24.270000457763672","","1993-03-04T00:00:00Z","","0" +"NM-13946","-7.929999828338623","-7.929999828338623","","1909-09-07T00:00:00Z","","0" +"NM-07360","146.8000030517578","146.8000030517578","","1992-01-07T00:00:00Z","","0" +"NM-00792","31.239999771118164","31.239999771118164","","2012-09-24T00:00:00Z","","0" +"NM-02443","95.69000244140625","95.69000244140625","","2003-01-08T00:00:00Z","","0" +"NM-12364","6.25","6.25","","1984-02-27T00:00:00Z","","0" +"SA-0044","132.41000366210938","130.57000732421875","","2009-11-04T00:00:00Z","","1.840000033378601" +"NM-27446","27.610000610351562","27.610000610351562","","1956-12-14T00:00:00Z","","0" +"NM-13106","7.650000095367432","7.650000095367432","","1970-04-02T00:00:00Z","","0" +"NM-20513","121.45999908447266","121.45999908447266","","1975-02-08T00:00:00Z","","0" +"SO-0141","11.729999542236328","10.559999465942383","","2021-05-07T00:00:00Z","0001-01-01T18:50:00Z","1.1699999570846558" +"AB-0112","22.25","22.25","","2010-02-09T00:00:00Z","","" +"NM-02017","6.099999904632568","6.099999904632568","","1998-11-15T00:00:00Z","","0" +"NM-12911","90","90","P","1952-09-05T00:00:00Z","","0" +"NM-03342","11.949999809265137","11.949999809265137","","1993-01-28T00:00:00Z","","0" +"NM-05607","107.98999786376953","107.98999786376953","","1953-03-13T00:00:00Z","","0" +"NM-11822","7","7","","1960-04-10T00:00:00Z","","0" +"NM-05689","72.94999694824219","72.94999694824219","","1932-08-04T00:00:00Z","","0" +"NM-01971","6.599999904632568","6.599999904632568","","2000-08-15T00:00:00Z","","0" +"NM-19539","30.329999923706055","30.329999923706055","","1946-09-04T00:00:00Z","","0" +"NM-21636","395.3900146484375","395.3900146484375","","1992-09-13T00:00:00Z","","0" +"NM-01440","196.5","196.5","","1980-06-11T00:00:00Z","","0" +"NM-00974","360.20001220703125","360.20001220703125","","1999-03-05T00:00:00Z","","0" +"NM-02017","10.699999809265137","10.699999809265137","","1958-05-15T00:00:00Z","","0" +"EB-479","354.2900085449219","354.2900085449219","Z","2007-01-31T00:00:00Z","","0" +"SB-0056","76.3499984741211","76.3499984741211","","1961-02-07T00:00:00Z","","0" +"SO-0218","12.420000076293945","11.110000610351562","","2020-09-12T00:00:00Z","0001-01-01T15:13:00Z","1.309999942779541" +"NM-05267","64.0199966430664","64.0199966430664","","1942-03-10T00:00:00Z","","0" +"NM-14802","108.0999984741211","108.0999984741211","","1977-06-01T00:00:00Z","","0" +"NM-26126","72.30000305175781","72.30000305175781","","1959-09-16T00:00:00Z","","0" +"NM-16071","141.6999969482422","141.6999969482422","","1964-10-27T00:00:00Z","","0" +"SO-0181","8.109999656677246","7.1399993896484375","","2021-03-13T00:00:00Z","0001-01-01T14:54:00Z","0.9700000286102295" +"NM-00526","52.61000061035156","52.61000061035156","","1961-01-20T00:00:00Z","","0" +"NM-02018","111.81999969482422","111.81999969482422","","1979-01-11T00:00:00Z","","0" +"EB-170","80","77.30000305175781","","1978-06-29T00:00:00Z","","2.700000047683716" +"NM-02250","55.79999923706055","55.79999923706055","","1987-01-14T00:00:00Z","","0" +"NM-28254","102","102","","2003-04-15T00:00:00Z","","0" +"NM-23385","173.5","173.5","","1956-07-18T00:00:00Z","","0" +"NM-13717","11.029999732971191","11.029999732971191","","1947-07-11T00:00:00Z","","0" +"NM-10244","-47.20000076293945","-47.20000076293945","","1911-02-06T00:00:00Z","","0" +"NM-06242","162.8699951171875","162.8699951171875","","1957-01-12T00:00:00Z","","0" +"NM-27706","30.979999542236328","30.979999542236328","","1950-09-25T00:00:00Z","","0" +"SO-0266","5.789999961853027","4.529999732971191","","2018-11-29T00:00:00Z","0001-01-01T11:06:00Z","1.2599999904632568" +"NM-10579","-95.70999908447266","-95.70999908447266","","1907-12-23T00:00:00Z","","0" +"NM-08018","11.640000343322754","11.640000343322754","","2013-04-23T00:00:00Z","","0" +"NM-00367","127.12000274658203","127.12000274658203","","1977-04-01T00:00:00Z","","0" +"NM-17280","26.190000534057617","26.190000534057617","","1936-02-16T00:00:00Z","","0" +"NM-24925","26.59000015258789","26.59000015258789","","1972-04-14T00:00:00Z","","0" +"NM-12762","28.030000686645508","28.030000686645508","P","1961-02-09T00:00:00Z","","0" +"NM-28005","467","467","R","1985-08-06T00:00:00Z","","0" +"NM-20606","6.440000057220459","6.440000057220459","","1962-01-02T00:00:00Z","","0" +"NM-02092","87.5999984741211","87.5999984741211","","1967-02-01T00:00:00Z","","0" +"NM-02592","59.25","59.25","","1977-01-07T00:00:00Z","","0" +"NM-07287","107.43000030517578","107.43000030517578","","1975-01-21T00:00:00Z","","0" +"NM-05416","89.29000091552734","89.29000091552734","","1952-01-25T00:00:00Z","","0" +"NM-02017","6.800000190734863","6.800000190734863","","1986-10-15T00:00:00Z","","0" +"NM-13750","-6.730000019073486","-6.730000019073486","","1914-01-27T00:00:00Z","","0" +"NM-21847","7.190000057220459","7.190000057220459","Z","2007-08-16T00:00:00Z","","0" +"NM-08647","27.290000915527344","27.290000915527344","","1940-09-26T00:00:00Z","","0" +"NM-01491","125.0199966430664","125.0199966430664","","1998-07-21T00:00:00Z","","0" +"BC-0018","58.54999923706055","58.54999923706055","","2017-06-12T00:00:00Z","","0" +"NM-20333","51.630001068115234","51.630001068115234","","1943-09-24T00:00:00Z","","0" +"NM-02438","102.98999786376953","102.98999786376953","","1963-01-11T00:00:00Z","","0" +"NM-17048","12.449999809265137","12.449999809265137","","1944-03-22T00:00:00Z","","0" +"NM-28258","131.35000610351562","131.35000610351562","","1986-07-15T00:00:00Z","","0" +"NM-05283","40.709999084472656","40.709999084472656","","1956-07-17T00:00:00Z","","0" +"NM-15988","43.29999923706055","43.29999923706055","","1970-02-19T00:00:00Z","","0" +"NM-23683","1181.9599609375","1181.9599609375","","2002-06-12T00:00:00Z","","0" +"NM-09604","114.22000122070312","114.22000122070312","","1977-02-28T00:00:00Z","","0" +"NM-20576","65.9000015258789","65.9000015258789","","1963-09-09T00:00:00Z","","0" +"NM-02109","36.810001373291016","36.810001373291016","","1960-11-09T00:00:00Z","","0" +"NM-02082","97.19999694824219","97.19999694824219","","1992-02-04T00:00:00Z","","0" +"NM-13414","46.08000183105469","46.08000183105469","","1994-01-26T00:00:00Z","","0" +"NM-03040","72.7699966430664","72.7699966430664","","1984-01-18T00:00:00Z","","0" +"NM-01869","44.279998779296875","44.279998779296875","","1958-08-01T00:00:00Z","","0" +"NM-28257","67.86000061035156","67.86000061035156","","1969-06-05T00:00:00Z","","0" +"NM-13968","-11.399999618530273","-11.399999618530273","","1907-11-30T00:00:00Z","","0" +"EB-519","219","219","","1997-03-03T00:00:00Z","","0" +"SV-0108","333.20001220703125","331.95001220703125","","2017-07-08T00:00:00Z","","1.25" +"NM-04786","55.4900016784668","55.4900016784668","","1986-03-11T00:00:00Z","","0" +"NM-27859","361.1300048828125","361.1300048828125","","2015-01-28T00:00:00Z","","0" +"NM-00099","100.70999908447266","100.70999908447266","","2005-08-18T00:00:00Z","","0" +"NM-28253","48.349998474121094","48.349998474121094","","1974-04-15T00:00:00Z","","0" +"NM-03644","143.47000122070312","143.47000122070312","","1978-01-25T00:00:00Z","","0" +"NM-02956","175.22999572753906","175.22999572753906","","2000-02-11T00:00:00Z","","0" +"NM-07888","526.5800170898438","526.5800170898438","","1968-07-01T00:00:00Z","","0" +"NM-03038","188.97999572753906","188.97999572753906","P","2009-03-03T00:00:00Z","","0" +"NM-10380","57.060001373291016","57.060001373291016","","1986-02-20T00:00:00Z","","0" +"NM-17716","5.710000038146973","5.710000038146973","","1950-05-26T00:00:00Z","","0" +"NM-10635","28.860000610351562","28.860000610351562","","1938-09-12T00:00:00Z","","0" +"NM-28010","498.6499938964844","498.6499938964844","S","2015-05-27T00:00:00Z","","0" +"NM-01890","57.400001525878906","57.400001525878906","","1999-03-31T00:00:00Z","","0" +"NM-28255","123.97000122070312","123.97000122070312","","1964-05-05T00:00:00Z","","0" +"NM-08298","109.44000244140625","109.44000244140625","S","1954-06-14T00:00:00Z","","0" +"DE-0240","107.08999633789062","107.08999633789062","","2002-11-08T00:00:00Z","","0" +"NM-06030","47.310001373291016","47.310001373291016","","2015-03-17T00:00:00Z","","0" +"NM-05364","73.33000183105469","73.33000183105469","","1947-01-10T00:00:00Z","","0" +"NM-28019","481.8500061035156","481.8500061035156","","2015-04-17T00:00:00Z","","0" +"NM-13121","4.090000152587891","4.090000152587891","","1961-05-10T00:00:00Z","","0" +"NM-05563","71.76000213623047","71.76000213623047","","1939-11-09T00:00:00Z","","0" +"NM-28009","498.8800048828125","498.8800048828125","S","2015-05-17T00:00:00Z","","0" +"NM-28255","6.170000076293945","6.170000076293945","","1949-11-05T00:00:00Z","","0" +"NM-03376","24.59000015258789","24.59000015258789","","1994-12-29T00:00:00Z","","0" +"NM-02620","11","11","","1985-12-15T00:00:00Z","","0" +"AB-0158","130","130","","1979-10-31T00:00:00Z","","0" +"NM-25051","190.17999267578125","190.17999267578125","","1988-03-10T00:00:00Z","","0" +"NM-06268","10","10","Z","1979-05-15T00:00:00Z","","0" +"NM-02773","62.29999923706055","62.29999923706055","","1978-02-16T00:00:00Z","","0" +"NM-08351","23.020000457763672","23.020000457763672","","1971-01-20T00:00:00Z","","0" +"NM-14193","-23.100000381469727","-23.100000381469727","","1913-07-13T00:00:00Z","","0" +"NM-21965","132.60000610351562","132.60000610351562","","1962-11-09T00:00:00Z","","0" +"AB-0052","51.7400016784668","51.7400016784668","","2002-05-07T00:00:00Z","","" +"NM-10137","-101.48999786376953","-101.48999786376953","","1908-03-20T00:00:00Z","","0" +"NM-10954","135.44000244140625","135.44000244140625","","1977-05-02T00:00:00Z","","0" +"NM-05061","184.5","184.5","P","1960-08-02T00:00:00Z","","0" +"NM-06159","29.6200008392334","29.6200008392334","","1983-01-26T00:00:00Z","","0" +"NM-08232","1000.25","1000.25","","1968-09-01T00:00:00Z","","0" +"DE-0212","135.8800048828125","135.8800048828125","","2013-11-13T00:00:00Z","","0" +"NM-28250","81.62999725341797","81.62999725341797","","1995-10-25T00:00:00Z","","0" +"NM-10166","80.75","80.75","P","1952-01-11T00:00:00Z","","0" +"NM-17645","87.62999725341797","87.62999725341797","","1987-01-30T00:00:00Z","","0" +"SB-0316","60.959999084472656","60.959999084472656","","1988-02-18T00:00:00Z","","0" +"NM-00068","46.2400016784668","46.2400016784668","","1955-09-15T00:00:00Z","","0" +"NM-12374","8.010000228881836","8.010000228881836","","1943-01-13T00:00:00Z","","0" +"NM-11994","35.939998626708984","35.939998626708984","","1939-03-31T00:00:00Z","","0" +"NM-01891","27.399999618530273","27.399999618530273","","1993-03-19T00:00:00Z","","0" +"NM-07092","43.060001373291016","43.060001373291016","","2002-07-10T00:00:00Z","","0" +"NM-01889","13.619999885559082","13.619999885559082","","1989-01-20T00:00:00Z","","0" +"NM-01113","236.9600067138672","236.9600067138672","R","2014-04-23T00:00:00Z","","0" +"NM-06215","97.16999816894531","97.16999816894531","","1953-01-23T00:00:00Z","","0" +"NM-14312","-11.399999618530273","-11.399999618530273","","1911-10-15T00:00:00Z","","0" +"NM-02773","51.40999984741211","51.40999984741211","","2004-01-27T00:00:00Z","","0" +"NM-11298","57.02000045776367","57.02000045776367","","1964-01-13T00:00:00Z","","0" +"NM-28256","247.88999938964844","247.88999938964844","","1988-08-15T00:00:00Z","","0" +"NM-03839","16.969999313354492","16.969999313354492","","1954-09-15T00:00:00Z","","0" +"NM-00253","21.84000015258789","21.84000015258789","","1979-11-01T00:00:00Z","","0" +"DA-0051","79","79","","1965-09-15T00:00:00Z","","0" +"NM-11578","27.010000228881836","27.010000228881836","","1940-04-15T00:00:00Z","","0" +"NM-25264","69.5199966430664","69.5199966430664","","1969-01-15T00:00:00Z","","0" +"NM-13233","7.28000020980835","7.28000020980835","","1959-12-09T00:00:00Z","","0" +"NM-26648","44.79999923706055","44.79999923706055","","2012-05-09T00:00:00Z","","0" +"NM-05216","126.80000305175781","126.80000305175781","","1964-08-13T00:00:00Z","","0" +"NM-27635","19.059999465942383","19.059999465942383","","1963-01-16T00:00:00Z","","0" +"SB-0299","140.35000610351562","140.35000610351562","","1979-09-30T00:00:00Z","","0" +"SA-0033","286.0199890136719","285.2200012207031","","2018-02-20T00:00:00Z","0001-01-01T10:20:00Z","0.800000011920929" +"NM-00969","382.0799865722656","382.0799865722656","","1980-01-08T00:00:00Z","","0" +"NM-01891","67.22000122070312","67.22000122070312","","2010-08-18T00:00:00Z","","0" +"NM-08127","19.84000015258789","19.84000015258789","","1939-02-08T00:00:00Z","","0" +"NM-03035","82.66000366210938","82.66000366210938","","1988-01-12T00:00:00Z","","0" +"NM-17716","4.570000171661377","4.570000171661377","","1949-05-27T00:00:00Z","","0" +"NM-00836","107.58999633789062","107.58999633789062","","2003-07-24T00:00:00Z","","0" +"NM-02352","7.599999904632568","7.599999904632568","","1970-09-15T00:00:00Z","","0" +"NM-01891","56.22999954223633","56.22999954223633","","1994-11-18T00:00:00Z","","0" +"AB-0183","349.4700012207031","349.4700012207031","","2000-12-20T00:00:00Z","","" +"NM-07340","119","119","","1968-01-23T00:00:00Z","","0" +"NM-04986","33.93000030517578","33.93000030517578","","1971-01-26T00:00:00Z","","0" +"NM-01262","497.32000732421875","497.32000732421875","","1989-11-28T00:00:00Z","","0" +"NM-28250","92.80000305175781","92.80000305175781","","1987-11-05T00:00:00Z","","0" +"NM-06304","142.14999389648438","142.14999389648438","","1956-01-06T00:00:00Z","","0" +"NM-21075","21.579999923706055","21.579999923706055","","1946-09-06T00:00:00Z","","0" +"NM-06417","56.56999969482422","56.56999969482422","","1973-01-12T00:00:00Z","","0" +"NM-02284","10.199999809265137","10.199999809265137","","2002-11-13T00:00:00Z","","0" +"NM-05292","41.790000915527344","41.790000915527344","","1942-03-10T00:00:00Z","","0" +"NM-06076","37.400001525878906","37.400001525878906","","1941-01-07T00:00:00Z","","0" +"NM-02732","87.41999816894531","87.41999816894531","","1959-01-07T00:00:00Z","","0" +"BC-0002","309.7099914550781","309.7099914550781","","2017-06-28T00:00:00Z","","0" +"NM-14271","147.74000549316406","147.74000549316406","","1960-03-16T00:00:00Z","","0" +"NM-02702","46.540000915527344","46.540000915527344","","1990-06-15T00:00:00Z","","0" +"NM-01826","38.38999938964844","38.38999938964844","","1952-05-15T00:00:00Z","","0" +"NM-02090","71.68000030517578","71.68000030517578","","1955-01-05T00:00:00Z","","0" +"NM-03188","370.20001220703125","370.20001220703125","","1978-01-06T00:00:00Z","","0" +"NM-02260","38.369998931884766","38.369998931884766","","1960-11-09T00:00:00Z","","0" +"NM-01251","88.54000091552734","88.54000091552734","","1970-02-16T00:00:00Z","","0" +"NM-04632","10","10","","1951-02-15T00:00:00Z","","0" +"NM-12252","82.66000366210938","82.66000366210938","S","1989-01-07T00:00:00Z","","0" +"SO-0125","7.510000228881836","6.020000457763672","","2021-06-16T00:00:00Z","0001-01-01T11:50:00Z","1.4900000095367432" +"NM-07945","6.639999866485596","6.639999866485596","","1994-03-20T00:00:00Z","","0" +"NM-05968","138.42999267578125","138.42999267578125","","1959-03-26T00:00:00Z","","0" +"NM-05869","43.4900016784668","43.4900016784668","","1948-01-16T00:00:00Z","","0" +"NM-03212","42.540000915527344","42.540000915527344","","1957-02-04T00:00:00Z","","0" +"NM-00231","175.27999877929688","175.27999877929688","","1996-02-15T00:00:00Z","","0" +"NM-20310","53.599998474121094","53.599998474121094","","1948-07-30T00:00:00Z","","0" +"NM-01971","6.400000095367432","6.400000095367432","","1948-09-15T00:00:00Z","","0" +"NM-00229","61.95000076293945","61.95000076293945","","2015-03-19T00:00:00Z","","0" +"NM-27488","17.899999618530273","17.899999618530273","","2015-01-15T00:00:00Z","","0" +"NM-27307","132.75","132.75","","1992-09-01T00:00:00Z","","0" +"WL-0015","53.33000183105469","54.11000061035156","AA","2023-07-20T00:00:00Z","0001-01-01T12:18:00Z","-0.7799999713897705" +"NM-08183","59.810001373291016","59.810001373291016","","1981-01-21T00:00:00Z","","0" +"NM-01841","277.510009765625","277.510009765625","","1995-11-28T00:00:00Z","","0" +"NM-00638","34.63999938964844","34.63999938964844","","2000-01-05T00:00:00Z","","0" +"NM-11795","37.560001373291016","37.560001373291016","","1950-03-27T00:00:00Z","","0" +"NM-28253","12.4399995803833","12.4399995803833","","2008-02-05T00:00:00Z","","0" +"NM-14217","12.869999885559082","12.869999885559082","","1945-01-12T00:00:00Z","","0" +"AB-0124","544.1799926757812","544.1799926757812","","1999-12-02T00:00:00Z","","" +"NM-01759","48.63999938964844","48.63999938964844","","1971-09-01T00:00:00Z","","0" +"NM-05361","8.9399995803833","8.9399995803833","","1998-01-20T00:00:00Z","","0" +"NM-02352","8.199999809265137","8.199999809265137","","1971-05-15T00:00:00Z","","0" +"NM-05575","82.13999938964844","82.13999938964844","","1958-01-14T00:00:00Z","","0" +"BC-0094","27.690000534057617","27.690000534057617","","2015-09-01T00:00:00Z","","0" +"SM-0128","308.4100036621094","308.4100036621094","","2004-01-29T00:00:00Z","","0" +"NM-08383","59.689998626708984","59.689998626708984","","1955-07-06T00:00:00Z","","0" +"NM-06914","65.70999908447266","65.70999908447266","","2004-04-07T00:00:00Z","","0" +"NM-17716","3.2100000381469727","3.2100000381469727","","1945-06-18T00:00:00Z","","0" +"WL-0021","42.34000015258789","41.59000015258789","R","2018-04-11T00:00:00Z","0001-01-01T10:30:00Z","0.75" +"NM-00366","144.5800018310547","144.5800018310547","","2008-06-09T00:00:00Z","","0" +"NM-24338","56.13999938964844","56.13999938964844","","1982-09-14T00:00:00Z","","0" +"NM-00669","9.930000305175781","9.930000305175781","","2008-02-06T00:00:00Z","","0" +"NM-02005","10.600000381469727","10.600000381469727","","1956-07-15T00:00:00Z","","0" +"NM-21660","474.8299865722656","474.8299865722656","","1991-02-21T00:00:00Z","","0" +"NM-02256","8.100000381469727","8.100000381469727","","1953-12-15T00:00:00Z","","0" +"NM-28011","490.1600036621094","490.1600036621094","S","2015-05-25T00:00:00Z","","0" +"NM-03020","78.20999908447266","78.20999908447266","S","1960-06-03T00:00:00Z","","0" +"NM-03445","56.779998779296875","56.779998779296875","Z","1997-01-02T00:00:00Z","","0" +"NM-03211","187.7899932861328","187.7899932861328","R","1995-01-20T00:00:00Z","","0" +"NM-19784","68.27999877929688","68.27999877929688","","1950-11-30T00:00:00Z","","0" +"NM-03388","40.369998931884766","40.369998931884766","","1983-08-25T00:00:00Z","","0" +"NM-10571","13.829999923706055","13.829999923706055","","1939-03-07T00:00:00Z","","0" +"NM-01888","9.199999809265137","9.199999809265137","","1998-01-17T00:00:00Z","","0" +"SA-0213","65.19999694824219","64.5","","2011-05-14T00:00:00Z","","0.699999988079071" +"NM-02285","6.820000171661377","6.820000171661377","","2001-02-01T00:00:00Z","","0" +"BC-0227","218.3000030517578","218.3000030517578","","2017-01-25T00:00:00Z","","0" +"EB-084","144.89999389648438","151.89999389648438","","1995-12-20T00:00:00Z","","-7" +"SB-0316","75.37999725341797","75.37999725341797","","2007-01-09T00:00:00Z","","0" +"NM-07145","87.04000091552734","87.04000091552734","","2007-04-10T00:00:00Z","","0" +"NM-28258","97.94999694824219","97.94999694824219","","1987-01-25T00:00:00Z","","0" +"NM-26644","18.690000534057617","18.690000534057617","","2013-02-27T00:00:00Z","","0" +"NM-10187","13.029999732971191","13.029999732971191","","1975-01-08T00:00:00Z","","0" +"NM-11035","35.7400016784668","35.7400016784668","","1962-01-30T00:00:00Z","","0" +"NM-28255","6.110000133514404","6.110000133514404","","2010-02-05T00:00:00Z","","0" +"NM-17716","0.8500000238418579","0.8500000238418579","","1942-08-27T00:00:00Z","","0" +"AB-0213","155.7100067138672","155.7100067138672","","1996-08-22T00:00:00Z","","" +"NM-13659","25.75","25.75","","1979-02-08T00:00:00Z","","0" +"NM-01841","276.510009765625","276.510009765625","","1994-07-20T00:00:00Z","","0" +"NM-00491","59.779998779296875","59.779998779296875","","1985-01-09T00:00:00Z","","0" +"AB-0038","331.4700012207031","331.4700012207031","","2014-08-18T00:00:00Z","","" +"NM-01926","5.199999809265137","5.199999809265137","","1947-08-15T00:00:00Z","","0" +"NM-01423","5.760000228881836","5.760000228881836","","1968-03-07T00:00:00Z","","0" +"NM-10732","34.13999938964844","34.13999938964844","","1939-11-27T00:00:00Z","","0" +"NM-01854","119.58000183105469","119.26000213623047","","2020-01-23T00:00:00Z","0001-01-01T13:48:00Z","0.3199999928474426" +"NM-08886","-93.4000015258789","-93.4000015258789","","1908-12-29T00:00:00Z","","0" +"NM-06475","131.97000122070312","131.97000122070312","","1978-01-03T00:00:00Z","","0" +"NM-00027","89.30999755859375","89.30999755859375","","1980-02-05T00:00:00Z","","0" +"NM-07237","75.2699966430664","75.2699966430664","T","1981-03-03T00:00:00Z","","0" +"NM-07056","71.7699966430664","71.7699966430664","","1981-02-27T00:00:00Z","","0" +"NM-13761","0.5","0.5","","1909-12-01T00:00:00Z","","0" +"NM-28251","90.23999786376953","90.23999786376953","","1984-05-15T00:00:00Z","","0" +"QU-050","6.079999923706055","6.539999961853027","","2013-04-29T00:00:00Z","","-0.46000000834465027" +"NM-23051","74.61000061035156","74.61000061035156","","1960-02-09T00:00:00Z","","0" +"NM-02052","69.80999755859375","69.80999755859375","","1961-04-04T00:00:00Z","","0" +"BC-0017","53.310001373291016","53.310001373291016","","2014-03-05T00:00:00Z","","0" +"NM-01955","4.5","4.5","","1961-04-15T00:00:00Z","","0" +"NM-07501","44.70000076293945","44.70000076293945","","1955-01-27T00:00:00Z","","0" +"NM-02651","162.7899932861328","162.7899932861328","","2011-01-24T00:00:00Z","","0" +"NM-17127","33.0099983215332","33.0099983215332","","1950-07-27T00:00:00Z","","0" +"NM-10589","0.8999999761581421","0.8999999761581421","","1962-01-04T00:00:00Z","","0" +"NM-23425","165.97000122070312","165.97000122070312","","1988-03-09T00:00:00Z","","0" +"SB-0299","141.32000732421875","141.32000732421875","","1981-09-01T00:00:00Z","","0" +"SM-0023","202.2100067138672","202.2100067138672","","2007-08-23T00:00:00Z","","0" +"NM-14535","89.1500015258789","89.1500015258789","","1981-10-26T00:00:00Z","","0" +"AB-0092","502.54998779296875","502.54998779296875","","2006-08-14T00:00:00Z","","" +"PC-122","160","160","","1998-04-29T00:00:00Z","","0" +"NM-05709","50.54999923706055","50.54999923706055","","1937-09-13T00:00:00Z","","0" +"NM-17638","43.470001220703125","43.470001220703125","","1983-01-11T00:00:00Z","","0" +"NM-11800","13","13","","1965-07-16T00:00:00Z","","0" +"EB-483","657.5999755859375","657.5999755859375","P","2001-10-31T00:00:00Z","","0" +"NM-11786","41.279998779296875","41.279998779296875","","1949-01-21T00:00:00Z","","0" +"NM-15451","30","30","","1984-03-26T00:00:00Z","","0" +"NM-01955","5.300000190734863","5.300000190734863","","1974-05-15T00:00:00Z","","0" +"NM-23923","40","40","","1961-03-01T00:00:00Z","","0" +"NM-13843","-13.710000038146973","-13.710000038146973","","1905-10-09T00:00:00Z","","0" +"NM-01963","409.1000061035156","409.1000061035156","","2015-03-03T00:00:00Z","","0" +"NM-28257","74.63999938964844","74.63999938964844","","1954-09-05T00:00:00Z","","0" +"NM-02748","82.33000183105469","82.33000183105469","P","1958-08-25T00:00:00Z","","0" +"NM-28255","14.819999694824219","14.819999694824219","","2000-11-15T00:00:00Z","","0" +"NM-02390","238.00999450683594","238.00999450683594","","1962-01-17T00:00:00Z","","0" +"EB-285","464.0799865722656","461.2799987792969","","1976-07-30T00:00:00Z","","2.799999952316284" +"NM-10187","24.719999313354492","24.719999313354492","","1972-02-10T00:00:00Z","","0" +"NM-28254","51.97999954223633","51.97999954223633","","1953-03-15T00:00:00Z","","0" +"NM-01955","7.099999904632568","7.099999904632568","","1973-02-15T00:00:00Z","","0" +"NM-05475","62.619998931884766","62.619998931884766","","1941-01-08T00:00:00Z","","0" +"NM-17340","61.849998474121094","61.849998474121094","","1962-01-23T00:00:00Z","","0" +"SB-0289","110.12999725341797","110.12999725341797","","1984-01-17T00:00:00Z","","0" +"NM-21236","4.320000171661377","4.320000171661377","Z","2005-07-11T00:00:00Z","","0" +"NM-21219","6.739999771118164","6.739999771118164","","1972-01-31T00:00:00Z","","0" +"NM-01786","148.10000610351562","148.10000610351562","","1995-01-13T00:00:00Z","","0" +"NM-10566","160.58999633789062","160.58999633789062","","1964-09-01T00:00:00Z","","0" +"NM-27360","123.26000213623047","123.26000213623047","","1990-09-20T00:00:00Z","","0" +"NM-06848","14.630000114440918","14.630000114440918","","1970-01-21T00:00:00Z","","0" +"NM-13876","13.680000305175781","13.680000305175781","","1971-11-30T00:00:00Z","","0" +"NM-03192","108.80000305175781","108.80000305175781","","2005-02-02T00:00:00Z","","0" +"NM-13977","-10.630000114440918","-10.630000114440918","","1912-09-21T00:00:00Z","","0" +"NM-01947","4.800000190734863","4.800000190734863","","1988-03-15T00:00:00Z","","0" +"SO-0167","5.880000114440918","5.360000133514404","","2018-02-27T00:00:00Z","0001-01-01T11:24:00Z","0.5199999809265137" +"DE-0108","40.380001068115234","40.380001068115234","","2011-03-07T00:00:00Z","","0" +"NM-19852","49.66999816894531","49.66999816894531","","1943-05-21T00:00:00Z","","0" +"EB-336","209.39999389648438","209.39999389648438","","2010-01-12T00:00:00Z","","0" +"EB-269","158.27000427246094","158.27000427246094","","2008-12-04T00:00:00Z","","0" +"EB-012","338","338","","2001-01-31T00:00:00Z","","0" +"NM-28258","111.77999877929688","111.77999877929688","","1996-03-05T00:00:00Z","","0" +"NM-13094","21.600000381469727","21.600000381469727","","1989-01-13T00:00:00Z","","0" +"NM-21708","172","172","","1988-11-15T00:00:00Z","","0" +"NM-05119","97.19999694824219","97.19999694824219","","1958-01-17T00:00:00Z","","0" +"NM-25876","162.52000427246094","162.52000427246094","","1974-02-06T00:00:00Z","","0" +"NM-25139","264.6199951171875","264.6199951171875","","1977-01-13T00:00:00Z","","0" +"NM-24290","12.899999618530273","12.899999618530273","Z","1992-03-31T00:00:00Z","","0" +"NM-02197","13.850000381469727","13.850000381469727","","2002-05-21T00:00:00Z","","0" +"NM-12302","14.770000457763672","14.770000457763672","","1949-01-31T00:00:00Z","","0" +"NM-20973","25.700000762939453","25.700000762939453","","1941-09-10T00:00:00Z","","0" +"NM-00335","38.06999969482422","38.06999969482422","","1971-02-11T00:00:00Z","","0" +"NM-13788","-3.309999942779541","-3.309999942779541","","1906-06-20T00:00:00Z","","0" +"SM-0001","36.869998931884766","34.790000915527344","","2007-04-18T00:00:00Z","","2.0799999237060547" +"NM-21285","8","8","","1957-10-29T00:00:00Z","","0" +"NM-00469","60.61000061035156","60.61000061035156","","1954-01-07T00:00:00Z","","0" +"SB-0045","1134.3900146484375","1134.3900146484375","","2011-10-05T00:00:00Z","","0" +"NM-13923","22.700000762939453","22.700000762939453","","1938-02-05T00:00:00Z","","0" +"NM-12808","33.560001373291016","33.560001373291016","","1938-04-01T00:00:00Z","","0" +"NM-03200","178.8800048828125","178.8800048828125","","2003-01-30T00:00:00Z","","0" +"NM-06990","49.02000045776367","49.02000045776367","","1960-01-15T00:00:00Z","","0" +"EB-489","369.6499938964844","366.4499816894531","Z","2007-04-30T00:00:00Z","","3.200000047683716" +"BC-0245","167.1999969482422","167.1999969482422","","2018-09-23T00:00:00Z","","0" +"NM-16574","15.8100004196167","15.8100004196167","","1935-05-21T00:00:00Z","","0" +"NM-11904","21.84000015258789","21.84000015258789","","1942-01-23T00:00:00Z","","0" +"NM-09813","19.049999237060547","19.049999237060547","","1952-01-09T00:00:00Z","","0" +"NM-28251","89.4000015258789","89.4000015258789","","1979-12-25T00:00:00Z","","0" +"NM-01523","90.43000030517578","90.43000030517578","","1974-02-05T00:00:00Z","","0" +"NM-14265","423.92999267578125","423.92999267578125","","1968-03-01T00:00:00Z","","0" +"NM-24269","8.640000343322754","8.640000343322754","","1952-01-02T00:00:00Z","","0" +"NM-00987","286.92999267578125","286.92999267578125","","1956-01-12T00:00:00Z","","0" +"NM-21971","41.86000061035156","41.86000061035156","","1988-03-08T00:00:00Z","","0" +"NM-17476","53.25","53.25","R","1954-01-26T00:00:00Z","","0" +"NM-02630","31.709999084472656","31.709999084472656","","1955-11-08T00:00:00Z","","0" +"WL-0151","8.399999618530273","6.579999923706055","AA","2023-07-07T00:00:00Z","0001-01-01T09:00:00Z","1.8200000524520874" +"NM-28017","486.42999267578125","486.42999267578125","S","2015-05-07T00:00:00Z","","0" +"NM-02510","87.66000366210938","87.66000366210938","","1990-03-27T00:00:00Z","","0" +"SV-0005","175.89999389648438","173.64999389648438","","2018-11-17T00:00:00Z","","2.25" +"NM-05309","10.399999618530273","10.399999618530273","","1959-04-15T00:00:00Z","","0" +"NM-13594","18.5","18.5","","1963-12-26T00:00:00Z","","0" +"NM-00931","191.27000427246094","191.27000427246094","","1991-01-04T00:00:00Z","","0" +"NM-01780","169.1300048828125","169.1300048828125","","1980-01-10T00:00:00Z","","0" +"NM-00367","128.82000732421875","128.82000732421875","","1964-09-01T00:00:00Z","","0" +"NM-04027","69.5","69.5","","1997-01-24T00:00:00Z","","0" +"NM-02772","131.80999755859375","131.80999755859375","","1998-05-26T00:00:00Z","","0" +"NM-12626","26.309999465942383","26.309999465942383","","1991-01-16T00:00:00Z","","0" +"NM-26375","116.9000015258789","116.9000015258789","","1981-02-02T00:00:00Z","","0" +"NM-28258","145.25","145.25","","1970-10-25T00:00:00Z","","0" +"DE-0106","45.400001525878906","45.400001525878906","","2016-02-04T00:00:00Z","","0" +"NM-12197","14.569999694824219","14.569999694824219","","1942-08-18T00:00:00Z","","0" +"NM-01204","364.1099853515625","364.1099853515625","","2003-09-11T00:00:00Z","","0" +"NM-13234","3.119999885559082","3.119999885559082","","1959-05-27T00:00:00Z","","0" +"NM-02017","6.199999809265137","6.199999809265137","","1986-07-15T00:00:00Z","","0" +"WL-0090","55.70833206176758","53.328330993652344","","1999-01-08T00:00:00Z","","2.380000114440918" +"NM-13834","-9.09000015258789","-9.09000015258789","","1909-09-07T00:00:00Z","","0" +"NM-22095","7.809999942779541","7.809999942779541","Z","2009-02-19T00:00:00Z","","0" +"NM-00658","62.70000076293945","62.70000076293945","","1976-06-24T00:00:00Z","","0" +"EB-276","176.66000366210938","176.66000366210938","","1976-11-01T00:00:00Z","","0" +"NM-04335","67.79000091552734","67.79000091552734","","1972-01-07T00:00:00Z","","0" +"NM-17769","60.86000061035156","60.86000061035156","","1987-02-10T00:00:00Z","","0" +"NM-28253","33.040000915527344","33.040000915527344","","2016-08-25T00:00:00Z","","0" +"NM-05963","30.790000915527344","30.790000915527344","","1931-09-13T00:00:00Z","","0" +"NM-00185","13.800000190734863","13.800000190734863","","1962-01-15T00:00:00Z","","0" +"NM-28257","76","76","","1983-08-05T00:00:00Z","","0" +"NM-00612","95.0199966430664","95.0199966430664","","2002-01-05T00:00:00Z","","0" +"NM-02603","68.4800033569336","68.4800033569336","","2006-01-30T00:00:00Z","","0" +"NM-04637","95.9000015258789","95.9000015258789","","1957-01-11T00:00:00Z","","0" +"NM-00027","63.5","63.5","","1956-04-11T00:00:00Z","","0" +"NM-09384","54.290000915527344","54.290000915527344","","1976-02-20T00:00:00Z","","0" +"NM-10606","-70.30000305175781","-70.30000305175781","","1911-08-09T00:00:00Z","","0" +"NM-21456","288.6000061035156","288.6000061035156","Z","1990-06-05T00:00:00Z","","0" +"NM-28011","496.5799865722656","496.5799865722656","S","2015-06-02T00:00:00Z","","0" +"NM-09508","-16.799999237060547","-16.799999237060547","","1961-01-05T00:00:00Z","","0" +"NM-28249","172.75","172.75","","1957-04-18T00:00:00Z","","0" +"NM-00795","200.1999969482422","200.1999969482422","P","2003-03-05T00:00:00Z","","0" +"NM-12052","60.36000061035156","60.36000061035156","","1954-01-12T00:00:00Z","","0" +"NM-25680","-96.81999969482422","-96.81999969482422","","1988-05-14T00:00:00Z","","0" +"NM-04462","73.47000122070312","73.47000122070312","","1950-01-18T00:00:00Z","","0" +"NM-02447","140.88999938964844","140.88999938964844","","1980-01-16T00:00:00Z","","0" +"NM-06856","24.84000015258789","24.84000015258789","","1971-01-13T00:00:00Z","","0" +"NM-03297","9.670000076293945","9.670000076293945","","1994-01-14T00:00:00Z","","0" +"NM-03839","16.100000381469727","16.100000381469727","","1978-01-10T00:00:00Z","","0" +"AB-0004","416.6199951171875","416.6199951171875","","2005-09-22T00:00:00Z","","" +"BC-0210","170.60000610351562","170.60000610351562","","2015-09-01T00:00:00Z","","0" +"NM-12376","5.190000057220459","5.190000057220459","","1943-01-13T00:00:00Z","","0" +"EB-481","391","391","P","1989-04-30T00:00:00Z","","0" +"NM-16857","25.6200008392334","25.6200008392334","","1946-09-28T00:00:00Z","","0" +"NM-16504","26","26","","1966-03-01T00:00:00Z","","0" +"NM-28256","201.49000549316406","201.49000549316406","","2010-07-06T00:00:00Z","","0" +"NM-28251","90.83000183105469","90.83000183105469","","1978-11-05T00:00:00Z","","0" +"NM-12052","53.7400016784668","53.7400016784668","","1952-01-15T00:00:00Z","","0" +"NM-02998","66.16000366210938","66.16000366210938","","1993-01-05T00:00:00Z","","0" +"NM-03188","382.3500061035156","382.3500061035156","","1981-01-10T00:00:00Z","","0" +"NM-02935","87.4800033569336","87.4800033569336","","1956-04-18T00:00:00Z","","0" +"NM-13594","60.08000183105469","60.08000183105469","","1964-09-04T00:00:00Z","","0" +"NM-02324","75.9000015258789","75.9000015258789","","1975-03-17T00:00:00Z","","0" +"NM-25941","30","30","","1978-02-01T00:00:00Z","","0" +"BC-0267","","459.5","","2021-10-23T00:00:00Z","","1.059999942779541" +"NM-08071","8.100000381469727","8.100000381469727","","1953-01-15T00:00:00Z","","0" +"EB-246","260.1400146484375","260.1400146484375","","1987-05-15T00:00:00Z","","0" +"NM-09817","33.95000076293945","33.95000076293945","","1943-01-25T00:00:00Z","","0" +"NM-06621","7.369999885559082","7.369999885559082","","1981-03-18T00:00:00Z","","0" +"NM-28251","67.12999725341797","67.12999725341797","","2002-12-15T00:00:00Z","","0" +"NM-03843","17.299999237060547","17.299999237060547","","1951-09-04T00:00:00Z","","0" +"NM-05169","39.959999084472656","39.959999084472656","","1970-01-21T00:00:00Z","","0" +"EB-012","101","101","","1958-03-24T00:00:00Z","","0" +"NM-01770","49.939998626708984","49.939998626708984","","1963-01-09T00:00:00Z","","0" +"NM-13594","27.579999923706055","27.579999923706055","","1966-03-04T00:00:00Z","","0" +"EB-276","181.3300018310547","181.3300018310547","","1975-04-29T00:00:00Z","","0" +"NM-14640","71.86000061035156","71.86000061035156","","1963-08-13T00:00:00Z","","0" +"NM-05689","91.80000305175781","91.80000305175781","","1944-11-25T00:00:00Z","","0" +"NM-23396","34.29999923706055","34.29999923706055","","1960-07-13T00:00:00Z","","0" +"NM-13489","-17.170000076293945","-17.170000076293945","","1911-07-10T00:00:00Z","","0" +"NM-20791","101.06999969482422","101.06999969482422","","1978-08-03T00:00:00Z","","0" +"NM-06935","67.91999816894531","67.91999816894531","P","1951-07-23T00:00:00Z","","0" +"NM-04112","173.0800018310547","173.0800018310547","","1974-01-08T00:00:00Z","","0" +"NM-02752","78.43000030517578","78.43000030517578","","1982-01-06T00:00:00Z","","0" +"CX-0095","81.9000015258789","81.9000015258789","","1946-05-14T00:00:00Z","","0" +"NM-23357","127.08000183105469","127.08000183105469","","1956-02-06T00:00:00Z","","0" +"NM-11142","55.540000915527344","55.540000915527344","R","1971-02-26T00:00:00Z","","0" +"NM-22187","445.04998779296875","445.04998779296875","","2006-05-15T00:00:00Z","","0" +"NM-00292","52.56999969482422","52.56999969482422","","1971-01-13T00:00:00Z","","0" +"NM-13594","43.15999984741211","43.15999984741211","","1966-05-25T00:00:00Z","","0" +"NM-00332","138.17999267578125","138.17999267578125","R","2014-01-14T00:00:00Z","","0" +"NM-09155","-77.2300033569336","-77.2300033569336","","1906-10-12T00:00:00Z","","0" +"NM-13554","21.860000610351562","21.860000610351562","","1984-01-26T00:00:00Z","","0" +"NM-12339","17.770000457763672","17.770000457763672","","1957-03-08T00:00:00Z","","0" +"QU-167","57.7400016784668","57.7400016784668","","1994-11-08T00:00:00Z","","0" +"NM-20770","159.17999267578125","159.17999267578125","","1986-11-20T00:00:00Z","","0" +"NM-02209","106.02999877929688","106.02999877929688","","1992-10-20T00:00:00Z","","0" +"NM-02520","12.5","12.5","Z","1974-10-15T00:00:00Z","","0" +"NM-06268","13.800000190734863","13.800000190734863","","1986-01-15T00:00:00Z","","0" +"NM-07367","205.5","205.5","","1955-02-24T00:00:00Z","","0" +"DE-0111","36.68000030517578","36.68000030517578","","2009-03-24T00:00:00Z","","0" +"NM-02349","8.300000190734863","8.300000190734863","Z","1993-08-15T00:00:00Z","","0" +"NM-27571","17.579999923706055","17.579999923706055","","1962-12-01T00:00:00Z","","0" +"NM-11544","226.5399932861328","226.5399932861328","","1966-03-30T00:00:00Z","","0" +"NM-01376","5.070000171661377","5.070000171661377","E","1984-03-28T00:00:00Z","","0" +"NM-26663","23.440000534057617","23.440000534057617","R","2012-01-11T00:00:00Z","","0" +"NM-06676","14.100000381469727","14.100000381469727","","1978-07-15T00:00:00Z","","0" +"NM-02209","95.27999877929688","95.27999877929688","","1952-11-08T00:00:00Z","","0" +"NM-26590","31.579999923706055","31.579999923706055","","1958-08-14T00:00:00Z","","0" +"NM-17716","3.6700000762939453","3.6700000762939453","","1945-08-22T00:00:00Z","","0" +"NM-02757","21.799999237060547","21.799999237060547","","1978-08-18T00:00:00Z","","0" +"NM-03396","11.260000228881836","11.260000228881836","","1989-08-10T00:00:00Z","","0" +"AB-0038","344.82000732421875","344.82000732421875","","2001-02-22T00:00:00Z","","" +"NM-01435","149.2899932861328","149.2899932861328","P","1990-05-22T00:00:00Z","","0" +"NM-05864","10.359999656677246","10.359999656677246","","1954-11-02T00:00:00Z","","0" +"NM-12943","3.009999990463257","3.009999990463257","","1978-04-10T00:00:00Z","","0" +"NM-02034","296.2099914550781","296.2099914550781","","1964-07-07T00:00:00Z","","0" +"AB-0004","417.4800109863281","417.4800109863281","","1999-01-07T00:00:00Z","","" +"NM-28257","39.7400016784668","39.7400016784668","","2003-04-04T00:00:00Z","","0" +"NM-08853","22.020000457763672","22.020000457763672","","1940-01-06T00:00:00Z","","0" +"NM-23333","7.989999771118164","7.989999771118164","","1959-06-04T00:00:00Z","","0" +"NM-28254","127.69999694824219","127.69999694824219","","2010-06-05T00:00:00Z","","0" +"NM-28250","101.93000030517578","101.93000030517578","","1968-10-05T00:00:00Z","","0" +"NM-01201","28.719999313354492","28.719999313354492","","1985-08-13T00:00:00Z","","0" +"NM-06848","35.70000076293945","35.70000076293945","P","1953-11-25T00:00:00Z","","0" +"SB-0299","147.8699951171875","147.8699951171875","","1981-07-10T00:00:00Z","","0" +"EB-484","638.2999877929688","637.7000122070312","P","2005-05-31T00:00:00Z","","0.6000000238418579" +"NM-12136","13.4399995803833","13.4399995803833","","1947-01-28T00:00:00Z","","0" +"NM-04363","56.650001525878906","56.650001525878906","","1972-04-10T00:00:00Z","","0" +"JM-029","","","","","","0" +"NM-23200","7.409999847412109","7.409999847412109","Z","1990-01-12T00:00:00Z","","0" +"NM-08648","39.70000076293945","39.70000076293945","","1946-05-23T00:00:00Z","","0" +"NM-20372","10.760000228881836","10.760000228881836","","1958-02-11T00:00:00Z","","0" +"NM-05661","84.95999908447266","84.95999908447266","R","1946-02-02T00:00:00Z","","0" +"NM-02740","72.98999786376953","72.98999786376953","","1970-01-08T00:00:00Z","","0" +"NM-16277","810","810","","1967-07-28T00:00:00Z","","0" +"WL-0091","81.20833587646484","78.43833923339844","","2005-03-28T00:00:00Z","","2.7699999809265137" +"NM-17480","57.45000076293945","57.45000076293945","P","1962-01-24T00:00:00Z","","0" +"NM-11747","137.89999389648438","137.89999389648438","","1962-01-17T00:00:00Z","","0" +"NM-15926","125.4000015258789","125.4000015258789","","1995-02-02T00:00:00Z","","0" +"NM-22629","103.62999725341797","103.62999725341797","","1973-04-30T00:00:00Z","","0" +"NM-03046","9.779999732971191","9.779999732971191","","1991-07-02T00:00:00Z","","0" +"NM-02720","55.619998931884766","55.619998931884766","","1961-01-16T00:00:00Z","","0" +"NM-11035","42","42","","1974-01-08T00:00:00Z","","0" +"NM-01926","5","5","","1987-08-15T00:00:00Z","","0" +"NM-06122","209.1300048828125","209.1300048828125","","1975-02-25T00:00:00Z","","0" +"QU-180","428","426","","2015-04-29T00:00:00Z","","2" +"NM-13135","11.100000381469727","11.100000381469727","","1959-12-09T00:00:00Z","","0" +"NM-13465","19.559999465942383","19.559999465942383","","1957-07-22T00:00:00Z","","0" +"NM-12968","8.550000190734863","8.550000190734863","","1955-05-13T00:00:00Z","","0" +"SM-0018","15.800000190734863","14.8100004196167","","2006-12-13T00:00:00Z","","0.9900000095367432" +"NM-02090","64.18000030517578","64.18000030517578","","1951-01-08T00:00:00Z","","0" +"NM-02678","73.6500015258789","73.6500015258789","","1988-01-07T00:00:00Z","","0" +"NM-22984","5.21999979019165","5.21999979019165","Z","2010-01-26T00:00:00Z","","0" +"NM-01926","8.399999618530273","8.399999618530273","","1958-03-15T00:00:00Z","","0" +"BC-0085","75.56999969482422","75.56999969482422","","2013-12-03T00:00:00Z","","0" +"NM-27432","31.520000457763672","31.520000457763672","","1944-11-28T00:00:00Z","","0" +"DE-0055","49.0099983215332","49.0099983215332","","2015-01-13T00:00:00Z","","0" +"NM-28240","","","D","2012-04-13T00:00:00Z","","0" +"NM-13071","2.8499999046325684","2.8499999046325684","","1980-03-12T00:00:00Z","","0" +"NM-03165","134.1300048828125","134.1300048828125","","2005-02-10T00:00:00Z","","0" +"BC-0079","","267","","2021-10-20T00:00:00Z","","1.3200000524520874" +"NM-28257","17.3799991607666","17.3799991607666","","2006-10-05T00:00:00Z","","0" +"NM-10696","124.37999725341797","124.37999725341797","","1952-04-12T00:00:00Z","","0" +"NM-03369","55.88999938964844","55.88999938964844","R","1995-01-24T00:00:00Z","","0" +"NM-11556","47.25","47.25","","1939-08-25T00:00:00Z","","0" +"NM-24757","147.22999572753906","147.22999572753906","","1959-04-27T00:00:00Z","","0" +"NM-01996","345.8500061035156","345.8500061035156","R","1975-01-03T00:00:00Z","","0" +"NM-02270","22.739999771118164","22.739999771118164","","1989-02-22T00:00:00Z","","0" +"NM-13652","-13.550000190734863","-13.550000190734863","","1914-07-15T00:00:00Z","","0" +"AS-001","35.2400016784668","35.2400016784668","","2005-04-27T00:00:00Z","","0" +"NM-06861","39.41999816894531","39.41999816894531","","1931-12-12T00:00:00Z","","0" +"NM-01769","37.97999954223633","37.97999954223633","","1950-12-01T00:00:00Z","","0" +"BC-0257","166.6699981689453","166.6699981689453","","2018-12-17T00:00:00Z","","0" +"NM-20479","108.98999786376953","108.98999786376953","","1982-01-22T00:00:00Z","","0" +"NM-05347","10.699999809265137","10.699999809265137","","1969-01-15T00:00:00Z","","0" +"NM-02484","39.560001373291016","39.560001373291016","","1991-05-01T00:00:00Z","","0" +"NM-03073","","","W","2005-03-22T00:00:00Z","","0" +"NM-10695","22.489999771118164","22.489999771118164","P","1956-01-24T00:00:00Z","","0" +"NM-01390","118.2699966430664","118.2699966430664","","2014-12-05T00:00:00Z","","0" +"NM-28259","86.16000366210938","86.16000366210938","","1968-02-15T00:00:00Z","","0" +"NM-14535","93.63999938964844","93.63999938964844","","1971-08-05T00:00:00Z","","0" +"NM-09597","51.0099983215332","51.0099983215332","","1950-01-09T00:00:00Z","","0" +"NM-17234","57.849998474121094","57.849998474121094","","1956-06-08T00:00:00Z","","0" +"NM-02017","8","8","","1949-01-15T00:00:00Z","","0" +"NM-00635","82.87999725341797","82.87999725341797","","1984-01-04T00:00:00Z","","0" +"NM-13039","40.849998474121094","40.849998474121094","","1949-01-20T00:00:00Z","","0" +"AB-0183","334.8699951171875","334.8699951171875","","2014-07-23T00:00:00Z","","" +"NM-02128","118.51000213623047","118.51000213623047","","1976-01-13T00:00:00Z","","0" +"NM-27327","14.239999771118164","14.239999771118164","","1960-11-22T00:00:00Z","","0" +"NM-16054","30.899999618530273","30.899999618530273","","1995-02-17T00:00:00Z","","0" +"NM-06676","13.5","13.5","","1972-09-15T00:00:00Z","","0" +"SO-0239","4.980000019073486","3.700000047683716","","2021-01-13T00:00:00Z","0001-01-01T11:51:00Z","1.2799999713897705" +"SB-0610","698","698","","1994-08-30T00:00:00Z","","0" +"NM-00253","21.510000228881836","21.510000228881836","","1966-09-01T00:00:00Z","","0" +"NM-01926","6.699999809265137","6.699999809265137","","1990-03-15T00:00:00Z","","0" +"NM-20891","210.72000122070312","210.72000122070312","","1977-02-24T00:00:00Z","","0" +"NM-10736","12.850000381469727","12.850000381469727","","1946-07-13T00:00:00Z","","0" +"SB-0299","134.36000061035156","134.36000061035156","","2015-02-05T00:00:00Z","","0" +"NM-27204","288.8999938964844","288.8999938964844","","2013-01-23T00:00:00Z","","0" +"NM-28256","138.24000549316406","138.24000549316406","","1985-03-25T00:00:00Z","","0" +"NM-03468","145.3300018310547","145.3300018310547","","1990-03-07T00:00:00Z","","0" +"NM-01954","350.82000732421875","350.82000732421875","","1983-12-26T00:00:00Z","","0" +"NM-00751","29.969999313354492","29.969999313354492","","1956-11-28T00:00:00Z","","0" +"SB-0299","143.77000427246094","143.77000427246094","","2016-11-30T00:00:00Z","","0" +"NM-00208","54.66999816894531","54.66999816894531","","1957-05-15T00:00:00Z","","0" +"NM-04591","68.91000366210938","68.91000366210938","","1952-11-11T00:00:00Z","","0" +"NM-11725","86.66000366210938","86.66000366210938","R","1966-02-17T00:00:00Z","","0" +"NM-19025","38.970001220703125","38.970001220703125","","1987-03-04T00:00:00Z","","0" +"NM-10802","39.75","39.75","","1940-01-15T00:00:00Z","","0" +"WL-0145","31.299999237060547","29.399999618530273","AA","2023-03-10T00:00:00Z","0001-01-01T10:30:00Z","1.899999976158142" +"NM-28252","45.83000183105469","45.83000183105469","","1962-11-05T00:00:00Z","","0" +"NM-03667","71","71","","2003-07-11T00:00:00Z","","0" +"NM-02287","6.96999979019165","6.96999979019165","","2010-11-18T00:00:00Z","","0" +"SM-0217","530.4000244140625","528.5","","2008-10-17T00:00:00Z","","1.899999976158142" +"SM-0117","35.7400016784668","35.7400016784668","","1954-08-09T00:00:00Z","","0" +"NM-04354","61.130001068115234","61.130001068115234","","1958-12-12T00:00:00Z","","0" +"NM-10411","-26.40999984741211","-26.40999984741211","","1916-01-21T00:00:00Z","","0" +"NM-00932","21.969999313354492","21.969999313354492","","2010-03-02T00:00:00Z","","0" +"SB-0686","400","400","","1990-05-23T00:00:00Z","","0" +"NM-28256","89.88999938964844","89.88999938964844","","1988-11-25T00:00:00Z","","0" +"NM-22149","7.820000171661377","7.820000171661377","Z","2009-02-18T00:00:00Z","","0" +"EB-269","513.4600219726562","513.4600219726562","","1999-12-16T00:00:00Z","","0" +"NM-20512","174.92999267578125","174.92999267578125","","1967-02-01T00:00:00Z","","0" +"NM-10908","50.5099983215332","50.5099983215332","","1952-01-15T00:00:00Z","","0" +"NM-13582","-31.030000686645508","-31.030000686645508","","1911-10-09T00:00:00Z","","0" +"NM-14271","161.6300048828125","161.6300048828125","S","1963-07-01T00:00:00Z","","0" +"NM-16265","94.54000091552734","94.54000091552734","P","1977-01-06T00:00:00Z","","0" +"NM-03354","124.83999633789062","124.83999633789062","","1985-02-19T00:00:00Z","","0" +"NM-28252","72.87000274658203","72.87000274658203","","1972-08-05T00:00:00Z","","0" +"NM-17716","5.679999828338623","5.679999828338623","","1949-05-08T00:00:00Z","","0" +"NM-01239","33.59000015258789","33.59000015258789","","1961-02-16T00:00:00Z","","0" +"NM-28256","144.0500030517578","144.0500030517578","","2003-11-05T00:00:00Z","","0" +"NM-12207","165","165","","1978-08-01T00:00:00Z","","0" +"NM-02527","9.300000190734863","9.300000190734863","","1975-05-15T00:00:00Z","","0" +"NM-19637","34.040000915527344","34.040000915527344","","1956-02-13T00:00:00Z","","0" +"NM-06676","9.199999809265137","9.199999809265137","","1963-06-15T00:00:00Z","","0" +"NM-00513","56.66999816894531","56.66999816894531","","1976-03-10T00:00:00Z","","0" +"AB-0107","422.3399963378906","422.3399963378906","","2015-07-08T00:00:00Z","","0" +"NM-13535","1.3799999952316284","1.3799999952316284","","1957-09-09T00:00:00Z","","0" +"NM-02702","73.58999633789062","73.58999633789062","","1976-04-01T00:00:00Z","","0" +"NM-00699","13.529999732971191","13.529999732971191","","2012-07-31T00:00:00Z","","0" +"NM-09080","74.43000030517578","74.43000030517578","","1958-08-26T00:00:00Z","","0" +"NM-02031","115.31999969482422","115.31999969482422","","1978-01-05T00:00:00Z","","0" +"NM-00860","253.6999969482422","253.6999969482422","","2010-02-23T00:00:00Z","","0" +"NM-15044","451.3399963378906","451.3399963378906","","1958-12-01T00:00:00Z","","0" +"NM-04895","85.4000015258789","85.4000015258789","","1961-01-11T00:00:00Z","","0" +"NM-00951","225.14999389648438","225.14999389648438","","1966-09-28T00:00:00Z","","0" +"DE-0154","80.0999984741211","80.0999984741211","","2011-06-28T00:00:00Z","","0" +"NM-12341","0.20999999344348907","0.20999999344348907","","1940-11-13T00:00:00Z","","0" +"NM-00150","109.08000183105469","109.08000183105469","","1986-03-05T00:00:00Z","","0" +"NM-22620","49.849998474121094","49.849998474121094","","1985-04-01T00:00:00Z","","0" +"NM-24935","14","14","","1981-03-05T00:00:00Z","","0" +"NM-02501","72.68000030517578","72.68000030517578","R","1957-01-03T00:00:00Z","","0" +"NM-01769","43.22999954223633","43.22999954223633","","1973-01-25T00:00:00Z","","0" +"NM-05554","82.83000183105469","82.83000183105469","","1944-11-22T00:00:00Z","","0" +"NM-07808","24.969999313354492","24.969999313354492","","1960-09-01T00:00:00Z","","0" +"NM-01339","128.1199951171875","128.1199951171875","","2012-07-17T00:00:00Z","","0" +"NM-02237","92.3499984741211","92.3499984741211","","1982-02-04T00:00:00Z","","0" +"NM-12973","296.79998779296875","296.79998779296875","","1986-01-13T00:00:00Z","","0" +"NM-12568","-33.34000015258789","-33.34000015258789","","1911-10-02T00:00:00Z","","0" +"NM-00618","52.540000915527344","52.540000915527344","","1992-01-01T00:00:00Z","","0" +"NM-11185","4.699999809265137","4.699999809265137","","1956-02-08T00:00:00Z","","0" +"NM-20164","59.95000076293945","59.95000076293945","","1962-09-17T00:00:00Z","","0" +"BC-0334","","327","","2020-11-08T00:00:00Z","","0" +"NM-02579","119.27999877929688","119.27999877929688","","2013-01-23T00:00:00Z","","0" +"WL-0021","39.849998474121094","39.14999771118164","","2013-10-01T00:00:00Z","","0.699999988079071" +"NM-02165","8.859999656677246","8.859999656677246","","2014-06-06T00:00:00Z","","0" +"NM-09373","-118.80999755859375","-118.80999755859375","","1907-09-06T00:00:00Z","","0" +"NM-10796","69.68000030517578","69.68000030517578","","1981-01-14T00:00:00Z","","0" +"NM-19742","158.1999969482422","158.1999969482422","","1965-07-13T00:00:00Z","","0" +"NM-02296","48.380001068115234","48.380001068115234","","1994-02-03T00:00:00Z","","0" +"SM-0053","246.10000610351562","245.85000610351562","","2006-06-14T00:00:00Z","","0.25" +"SA-0428","29","29","","1952-11-20T00:00:00Z","","0" +"NM-12187","94.41000366210938","94.41000366210938","","1965-09-15T00:00:00Z","","0" +"NM-22703","268.5","268.5","","2007-11-28T00:00:00Z","","0" +"NM-28015","498.7300109863281","498.7300109863281","S","2015-05-17T00:00:00Z","","0" +"NM-02117","92.25","92.25","","1965-01-13T00:00:00Z","","0" +"WS-011","7.909999847412109","7.909999847412109","","2011-01-06T00:00:00Z","","0" +"NM-02725","39.849998474121094","39.849998474121094","","1961-01-16T00:00:00Z","","0" +"NM-26896","10.350000381469727","13.25","","1994-12-12T00:00:00Z","","0" +"NM-01985","9.699999809265137","9.699999809265137","","1968-10-15T00:00:00Z","","0" +"NM-05347","13.199999809265137","13.199999809265137","","1978-08-15T00:00:00Z","","0" +"EB-295","515.0499877929688","515.0499877929688","","2013-07-11T00:00:00Z","","0" +"SB-0299","143.02000427246094","143.02000427246094","","2015-04-15T00:00:00Z","","0" +"NM-06676","19.399999618530273","19.399999618530273","","1955-09-15T00:00:00Z","","0" +"NM-09682","432.6000061035156","432.6000061035156","","1978-08-01T00:00:00Z","","0" +"NM-11724","31.8700008392334","31.8700008392334","","1945-10-03T00:00:00Z","","0" +"NM-03903","330.3800048828125","330.3800048828125","","1976-10-18T00:00:00Z","","0" +"NM-00003","197.1999969482422","197.1999969482422","","1985-03-10T00:00:00Z","","0" +"NM-28256","243.19000244140625","243.19000244140625","","2014-04-25T00:00:00Z","","0" +"SB-0234","134.36000061035156","134.36000061035156","","2004-01-22T00:00:00Z","","0" +"NM-02800","48.79999923706055","48.79999923706055","","1999-01-07T00:00:00Z","","0" +"NM-03141","380.17999267578125","380.17999267578125","","1997-01-22T00:00:00Z","","0" +"NM-01565","-224.4499969482422","-224.4499969482422","","1988-10-27T00:00:00Z","","0" +"EB-413","206.6999969482422","206.6999969482422","","2009-02-06T00:00:00Z","","0" +"NM-09704","154.94000244140625","154.94000244140625","","1989-02-10T00:00:00Z","","0" +"NM-08466","65.55999755859375","65.55999755859375","","1986-01-23T00:00:00Z","","0" +"NM-24855","122.37000274658203","122.37000274658203","","1974-07-16T00:00:00Z","","0" +"NM-12454","-107.26000213623047","-107.26000213623047","","1913-01-18T00:00:00Z","","0" +"SB-0442","176.5","176.5","","2012-08-15T00:00:00Z","","0" +"NM-13425","398.8599853515625","398.8599853515625","","1963-11-01T00:00:00Z","","0" +"NM-03012","84.27999877929688","84.27999877929688","","1988-01-11T00:00:00Z","","0" +"NM-17716","1.5199999809265137","1.5199999809265137","","1944-12-15T00:00:00Z","","0" +"NM-01947","6.400000095367432","6.400000095367432","","1960-02-15T00:00:00Z","","0" +"NM-21306","5.699999809265137","5.699999809265137","","1947-02-20T00:00:00Z","","0" +"NM-28256","91.75","91.75","","1993-11-15T00:00:00Z","","0" +"TB-0055","204.82000732421875","204.57000732421875","","2011-03-02T00:00:00Z","","0.25" +"NM-03473","23.610000610351562","23.610000610351562","","1999-07-23T00:00:00Z","","0" +"NM-07064","39.75","39.75","","1974-01-14T00:00:00Z","","0" +"NM-10587","-35.650001525878906","-35.650001525878906","","1908-08-27T00:00:00Z","","0" +"NM-10528","61.04999923706055","61.04999923706055","","1966-02-25T00:00:00Z","","0" +"NM-00943","275.7900085449219","275.7900085449219","","1971-01-09T00:00:00Z","","0" +"SB-0299","135.69000244140625","135.69000244140625","","2005-11-10T00:00:00Z","","0" +"EB-483","32","32","","1983-08-31T00:00:00Z","","0" +"NM-02540","70.1500015258789","70.1500015258789","","2009-01-09T00:00:00Z","","0" +"NM-10120","-44.88999938964844","-44.88999938964844","","1907-06-25T00:00:00Z","","0" +"NM-28251","85.70999908447266","85.70999908447266","","1984-02-05T00:00:00Z","","0" +"NM-12933","18.600000381469727","18.600000381469727","","1959-03-17T00:00:00Z","","0" +"NM-23923","54.040000915527344","54.040000915527344","","1986-01-16T00:00:00Z","","0" +"NM-14351","592.5900268554688","592.5900268554688","","1972-03-01T00:00:00Z","","0" +"DE-0088","94.6500015258789","94.6500015258789","","1998-11-24T00:00:00Z","","0" +"HS-010","3.9100000858306885","3.240000009536743","P","2012-10-19T00:00:00Z","","0.6700000166893005" +"NM-06841","37.439998626708984","37.439998626708984","","1996-03-07T00:00:00Z","","0" +"NM-05826","286","286","P","1970-04-13T00:00:00Z","","0" +"TB-0181","71.9800033569336","71.3800048828125","","2009-10-02T00:00:00Z","","0.6000000238418579" +"NM-02352","12.100000381469727","12.100000381469727","","1955-06-15T00:00:00Z","","0" +"NM-01830","6.300000190734863","6.300000190734863","","1991-09-15T00:00:00Z","","0" +"NM-20160","78.12999725341797","78.12999725341797","","1957-03-18T00:00:00Z","","0" +"NM-05753","59.599998474121094","59.599998474121094","","1947-09-10T00:00:00Z","","0" +"NM-17449","24.1299991607666","24.1299991607666","","1951-01-10T00:00:00Z","","0" +"NM-22370","19.030000686645508","19.030000686645508","","1988-02-18T00:00:00Z","","0" +"NM-01751","66.44999694824219","66.44999694824219","","1980-01-24T00:00:00Z","","0" +"WL-0087","86.54166412353516","84.86166381835938","","2003-04-23T00:00:00Z","","1.6799999475479126" +"NM-00946","304.6000061035156","304.6000061035156","","1990-01-04T00:00:00Z","","0" +"NM-05296","69.0999984741211","69.0999984741211","","1947-01-11T00:00:00Z","","0" +"NM-01948","3.5999999046325684","3.5999999046325684","","2000-08-15T00:00:00Z","","0" +"NM-27300","186.17999267578125","186.17999267578125","","1981-01-06T00:00:00Z","","0" +"NM-00779","326.5400085449219","326.5400085449219","","2009-11-17T00:00:00Z","","0" +"NM-28009","498.8500061035156","498.8500061035156","S","2015-05-17T00:00:00Z","","0" +"NM-28259","107.75","107.75","","1965-01-05T00:00:00Z","","0" +"NM-17716","1.7100000381469727","1.7100000381469727","","1945-05-04T00:00:00Z","","0" +"NM-27269","11.4399995803833","11.4399995803833","","1995-07-19T00:00:00Z","","0" +"NM-01872","9.300000190734863","9.300000190734863","","1967-01-15T00:00:00Z","","0" +"NM-05345","89.54000091552734","89.54000091552734","S","1948-09-18T00:00:00Z","","0" +"NM-14802","101.30000305175781","101.30000305175781","","1982-02-07T00:00:00Z","","0" +"EB-483","21.799999237060547","21.799999237060547","","1980-08-05T00:00:00Z","","" +"NM-01955","3.799999952316284","3.799999952316284","","1963-07-15T00:00:00Z","","0" +"NM-17267","72.66999816894531","72.66999816894531","","1960-01-07T00:00:00Z","","0" +"NM-22585","270.69000244140625","270.69000244140625","","2005-01-31T00:00:00Z","","0" +"NM-20389","78.19000244140625","78.19000244140625","","1945-04-08T00:00:00Z","","0" +"NM-13717","8.619999885559082","8.619999885559082","","1950-11-08T00:00:00Z","","0" +"NM-01293","24.079999923706055","24.079999923706055","","1993-04-07T00:00:00Z","","0" +"NM-03436","96.33999633789062","96.33999633789062","P","1954-04-08T00:00:00Z","","0" +"QU-015","503.1000061035156","499.8999938964844","","2013-06-21T00:00:00Z","","3.200000047683716" +"NM-14183","19.09000015258789","19.09000015258789","","1939-05-15T00:00:00Z","","0" +"NM-20089","215.6300048828125","215.6300048828125","","1987-02-11T00:00:00Z","","0" +"SB-0446","40.54999923706055","40.54999923706055","","1961-02-07T00:00:00Z","","0" +"NM-11946","39","39","","1935-01-17T00:00:00Z","","0" +"NM-28257","-15.239999771118164","-15.239999771118164","","2003-02-14T00:00:00Z","","0" +"NM-01972","76.31999969482422","76.31999969482422","P","1951-03-16T00:00:00Z","","0" +"NM-03397","22.450000762939453","22.450000762939453","","1983-03-31T00:00:00Z","","0" +"WL-0091","61.91666793823242","59.14666748046875","","1999-08-09T00:00:00Z","","2.7699999809265137" +"SO-0160","10.430000305175781","9.360000610351562","","2021-03-12T00:00:00Z","0001-01-01T15:32:00Z","1.0700000524520874" +"NM-05611","17.899999618530273","17.899999618530273","T","1968-02-29T00:00:00Z","","0" +"SB-0299","132.10000610351562","132.10000610351562","","2012-02-25T00:00:00Z","","0" +"NM-02499","153.9199981689453","153.9199981689453","P","1987-01-05T00:00:00Z","","0" +"NM-00819","86.9000015258789","86.9000015258789","","2010-10-04T00:00:00Z","","0" +"NM-01796","6.599999904632568","6.599999904632568","","1955-09-15T00:00:00Z","","0" +"NM-14268","68.58000183105469","68.58000183105469","","1978-02-01T00:00:00Z","","0" +"NM-03035","77.98999786376953","77.98999786376953","","1982-03-10T00:00:00Z","","0" +"NM-28258","205.64999389648438","205.64999389648438","","2012-07-05T00:00:00Z","","0" +"NM-02637","81.77999877929688","81.77999877929688","","2011-02-14T00:00:00Z","","0" +"BC-0162","212.85000610351562","212.85000610351562","","2015-06-02T00:00:00Z","","0" +"NM-13754","-29.8799991607666","-29.8799991607666","","1907-03-12T00:00:00Z","","0" +"NM-02237","55.720001220703125","55.720001220703125","","1946-09-26T00:00:00Z","","0" +"NM-16979","65.76000213623047","65.76000213623047","","1954-11-19T00:00:00Z","","0" +"NM-12113","66.94999694824219","66.94999694824219","","1986-01-14T00:00:00Z","","0" +"DE-0323","32.45000076293945","32.45000076293945","","2015-06-09T00:00:00Z","","0" +"NM-16618","21.170000076293945","21.170000076293945","","1955-01-18T00:00:00Z","","0" +"UC-0035","101.9000015258789","101.9000015258789","","2003-03-28T00:00:00Z","","0" +"SB-0285","62.83000183105469","62.83000183105469","","1949-02-03T00:00:00Z","","0" +"NM-00564","71.6500015258789","71.6500015258789","","1989-01-06T00:00:00Z","","0" +"NM-20308","78.5999984741211","78.5999984741211","","1951-07-31T00:00:00Z","","0" +"NM-06676","14.699999809265137","14.699999809265137","","1965-01-15T00:00:00Z","","0" +"NM-03244","38.18000030517578","38.18000030517578","","1962-02-06T00:00:00Z","","0" +"NM-11286","49.84000015258789","49.84000015258789","Z","1986-06-19T00:00:00Z","","0" +"NM-28257","23.700000762939453","23.700000762939453","","2002-05-06T00:00:00Z","","0" +"SA-0003","240.39999389648438","239.27999877929688","","2012-03-06T00:00:00Z","","1.1200000047683716" +"NM-14287","15.859999656677246","15.859999656677246","","1957-01-22T00:00:00Z","","0" +"NM-07206","78.12999725341797","78.12999725341797","S","1976-12-15T00:00:00Z","","0" +"SB-0165","255.25999450683594","255.25999450683594","","1972-03-30T00:00:00Z","","0" +"NM-16537","9.359999656677246","9.359999656677246","","1946-05-28T00:00:00Z","","0" +"NM-02424","35.02000045776367","35.02000045776367","","1993-01-03T00:00:00Z","","0" +"NM-02005","4.400000095367432","4.400000095367432","","1973-09-15T00:00:00Z","","0" +"NM-28258","113.94999694824219","113.94999694824219","","1987-11-15T00:00:00Z","","0" +"NM-28255","105.18000030517578","105.18000030517578","","1957-06-15T00:00:00Z","","0" +"NM-08744","48.9900016784668","48.9900016784668","","1956-09-29T00:00:00Z","","0" +"NM-13594","56.290000915527344","56.290000915527344","","1974-08-05T00:00:00Z","","0" +"NM-28019","476.3299865722656","476.3299865722656","S","2015-05-08T00:00:00Z","","0" +"NM-02498","338.5","338.5","","1974-01-24T00:00:00Z","","0" +"NM-28252","33.369998931884766","33.369998931884766","","1956-12-15T00:00:00Z","","0" +"NM-02232","76.94000244140625","76.94000244140625","","1943-01-08T00:00:00Z","","0" +"DE-0126","33.650001525878906","33.650001525878906","","2003-04-03T00:00:00Z","","0" +"NM-08874","31.420000076293945","31.420000076293945","","1956-01-06T00:00:00Z","","0" +"NM-03338","9.5600004196167","9.5600004196167","Z","1998-10-28T00:00:00Z","","0" +"BC-0069","69.58000183105469","69.58000183105469","","2013-06-11T00:00:00Z","","0" +"NM-05283","40.709999084472656","40.709999084472656","","1959-04-15T00:00:00Z","","0" +"NM-05367","105.20999908447266","105.20999908447266","","1957-08-12T00:00:00Z","","0" +"SB-0286","107.30000305175781","107.30000305175781","","2004-12-16T00:00:00Z","","0" +"NM-28251","73.7699966430664","73.7699966430664","","1988-04-05T00:00:00Z","","0" +"NM-05813","122.94999694824219","122.94999694824219","","1953-03-01T00:00:00Z","","0" +"NM-28256","285.8500061035156","285.8500061035156","","1989-08-15T00:00:00Z","","0" +"NM-08189","9.5","9.5","","1967-04-15T00:00:00Z","","0" +"AB-0214","156.77000427246094","156.77000427246094","","2015-07-02T00:00:00Z","","0" +"NM-08542","-111.87999725341797","-111.87999725341797","","1906-04-20T00:00:00Z","","0" +"NM-02314","7.400000095367432","7.400000095367432","","1979-08-15T00:00:00Z","","0" +"DE-0180","51.189998626708984","51.189998626708984","","2015-04-17T00:00:00Z","","0" +"NM-01025","339.1000061035156","339.1000061035156","","1989-01-09T00:00:00Z","","0" +"NM-11560","74.0999984741211","74.0999984741211","","1944-01-24T00:00:00Z","","0" +"NM-07252","31.93000030517578","31.93000030517578","","1976-01-21T00:00:00Z","","0" +"NM-02607","37.209999084472656","37.209999084472656","","2003-01-24T00:00:00Z","","0" +"EB-288","135","135","","1989-08-31T00:00:00Z","","0" +"NM-09431","78.06999969482422","78.06999969482422","","1961-07-28T00:00:00Z","","0" +"NM-13913","-12.550000190734863","-12.550000190734863","","1909-09-10T00:00:00Z","","0" +"NM-15052","198.66000366210938","198.66000366210938","","1990-02-07T00:00:00Z","","0" +"NM-16857","28.450000762939453","28.450000762939453","","1948-07-27T00:00:00Z","","0" +"NM-14192","33.81999969482422","33.81999969482422","","1946-03-13T00:00:00Z","","0" +"NM-02765","104.25","104.25","","2005-01-06T00:00:00Z","","0" +"NM-07275","8.850000381469727","8.850000381469727","","1952-05-13T00:00:00Z","","0" +"EB-288","115","115","","1986-06-30T00:00:00Z","","0" +"NM-03091","75.38999938964844","75.38999938964844","","1974-06-21T00:00:00Z","","0" +"NM-12237","121","121","","1969-11-19T00:00:00Z","","0" +"NM-13990","4.519999980926514","4.519999980926514","","1949-02-08T00:00:00Z","","0" +"NM-01800","153.55999755859375","153.55999755859375","","1973-01-24T00:00:00Z","","0" +"ED-0319","110","110","","1948-12-22T00:00:00Z","","0" +"NM-02527","12","12","","1978-09-15T00:00:00Z","","0" +"NM-06131","402.8800048828125","402.8800048828125","","1969-01-28T00:00:00Z","","0" +"NM-02085","8.59000015258789","8.59000015258789","","1998-03-10T00:00:00Z","","0" +"NM-22115","8.369999885559082","8.369999885559082","Z","2010-08-24T00:00:00Z","","0" +"BC-0156","151.72000122070312","151.72000122070312","R","1991-05-20T00:00:00Z","","0" +"NM-05169","17.489999771118164","17.489999771118164","","1948-03-25T00:00:00Z","","0" +"NM-03341","6.590000152587891","6.590000152587891","","2013-09-04T00:00:00Z","","0" +"NM-03306","112.4800033569336","112.4800033569336","","1975-02-11T00:00:00Z","","0" +"NM-00987","344.07000732421875","344.07000732421875","","1969-01-08T00:00:00Z","","0" +"NM-05737","87.94999694824219","87.94999694824219","","1956-01-09T00:00:00Z","","0" +"NM-24795","146.5","146.5","","1962-12-11T00:00:00Z","","0" +"NM-01530","145.22000122070312","145.22000122070312","","1971-03-17T00:00:00Z","","0" +"NM-22466","76.18000030517578","76.18000030517578","R","1990-03-19T00:00:00Z","","0" +"NM-02797","3.9700000286102295","3.9700000286102295","","1977-05-20T00:00:00Z","","0" +"NM-02144","83.36000061035156","83.36000061035156","","1966-01-15T00:00:00Z","","0" +"NM-17556","65.0999984741211","65.0999984741211","","1988-01-12T00:00:00Z","","0" +"NM-13425","395.54998779296875","395.54998779296875","","1958-07-01T00:00:00Z","","0" +"NM-21606","84.94999694824219","84.94999694824219","","1951-12-18T00:00:00Z","","0" +"NM-28255","45.5099983215332","45.5099983215332","","2020-11-25T00:00:00Z","","0" +"DE-0266","82.26000213623047","82.26000213623047","","2017-09-19T00:00:00Z","","0" +"NM-02314","11.600000381469727","11.600000381469727","","1995-05-15T00:00:00Z","","0" +"EB-485","214","213","P","1991-11-30T00:00:00Z","","1" +"NM-02520","14.199999809265137","14.199999809265137","Z","1975-01-15T00:00:00Z","","0" +"NM-03986","215.35000610351562","215.35000610351562","","1951-07-30T00:00:00Z","","0" +"NM-10590","-20.639999389648438","-20.639999389648438","","1926-11-30T00:00:00Z","","0" +"NM-06990","53.58000183105469","53.58000183105469","","1976-01-12T00:00:00Z","","0" +"NM-07219","389.29998779296875","389.29998779296875","","2010-02-25T00:00:00Z","","0" +"NM-10769","60.08000183105469","60.08000183105469","","1965-12-01T00:00:00Z","","0" +"NM-05516","18.299999237060547","18.299999237060547","","1964-09-15T00:00:00Z","","0" +"NM-27457","7.900000095367432","7.900000095367432","","1980-02-08T00:00:00Z","","0" +"EB-484","342.5199890136719","341.91998291015625","Z","1993-01-31T00:00:00Z","","0.6000000238418579" +"AB-0070","149.85000610351562","149.85000610351562","","1999-05-10T00:00:00Z","","" +"NM-04632","10.699999809265137","10.699999809265137","","1952-07-15T00:00:00Z","","0" +"NM-26660","2.390000104904175","2.390000104904175","","2011-05-26T00:00:00Z","","0" +"NM-01985","9.300000190734863","9.300000190734863","","1984-02-01T00:00:00Z","","0" +"AB-0144","460","460","","1984-01-01T00:00:00Z","","" +"BW-0884","5","5","","1947-08-11T00:00:00Z","","0" +"NM-25685","23.6299991607666","23.6299991607666","R","1985-11-06T00:00:00Z","","0" +"NM-07149","101.7699966430664","101.7699966430664","","2002-01-08T00:00:00Z","","0" +"NM-28257","7.349999904632568","7.349999904632568","","1973-01-05T00:00:00Z","","0" +"NM-21547","4.670000076293945","4.670000076293945","Z","2007-12-17T00:00:00Z","","0" +"NM-12353","28.059999465942383","28.059999465942383","","1944-05-16T00:00:00Z","","0" +"NM-00644","74.02999877929688","74.02999877929688","Z","2005-06-01T00:00:00Z","","0" +"EB-172","304.3999938964844","303.1000061035156","","2007-05-18T00:00:00Z","","1.2999999523162842" +"NM-01927","140.6999969482422","140.6999969482422","","1987-01-07T00:00:00Z","","0" +"NM-13833","-20.639999389648438","-20.639999389648438","","1912-01-25T00:00:00Z","","0" +"SM-0001","66.38999938964844","64.30999755859375","","2024-11-13T00:00:00Z","0001-01-01T14:30:00Z","2.0799999237060547" +"NM-28251","90.20999908447266","90.20999908447266","","1974-11-15T00:00:00Z","","0" +"QY-0458","156.3000030517578","156.3000030517578","","1954-05-19T00:00:00Z","","0" +"NM-17096","92","92","","1987-01-09T00:00:00Z","","0" +"NM-00572","71.31999969482422","71.31999969482422","","1977-01-08T00:00:00Z","","0" +"NM-17618","5.239999771118164","5.239999771118164","","1942-01-23T00:00:00Z","","0" +"NM-19828","24.950000762939453","24.950000762939453","","1947-05-27T00:00:00Z","","0" +"NM-02043","5.300000190734863","5.300000190734863","","1992-10-15T00:00:00Z","","0" +"NM-27227","33.540000915527344","33.540000915527344","","1978-01-27T00:00:00Z","","0" +"NM-04463","63.45000076293945","63.45000076293945","","1948-09-25T00:00:00Z","","0" +"NM-09682","415.9599914550781","415.9599914550781","","1982-07-23T00:00:00Z","","0" +"DE-0294","85.18000030517578","85.18000030517578","","2016-12-06T00:00:00Z","","0" +"BC-0035","121.44999694824219","121.44999694824219","","2018-09-23T00:00:00Z","","0" +"NM-22965","767.27001953125","767.27001953125","","1984-07-10T00:00:00Z","","0" +"NM-26508","67.87000274658203","67.87000274658203","","2003-10-20T00:00:00Z","","0" +"NM-13588","-19.479999542236328","-19.479999542236328","","1911-01-27T00:00:00Z","","0" +"DE-0093","90.33999633789062","90.33999633789062","","2008-12-08T00:00:00Z","","0" +"TV-188","345.1099853515625","344.0199890136719","","2011-10-13T00:00:00Z","","1.090000033378601" +"NM-01300","12.569999694824219","12.569999694824219","","1959-02-26T00:00:00Z","","0" +"NM-03317","67.8499984741211","67.8499984741211","","1968-02-27T00:00:00Z","","0" +"NM-02164","19.510000228881836","19.510000228881836","","2011-03-24T00:00:00Z","","0" +"NM-09036","65.55999755859375","65.55999755859375","","1951-01-09T00:00:00Z","","0" +"SB-0781","450","450","","1954-02-08T00:00:00Z","","0" +"NM-03399","13.680000305175781","13.680000305175781","Z","2010-02-24T00:00:00Z","","0" +"NM-27712","44.560001373291016","44.560001373291016","","1982-03-25T00:00:00Z","","0" +"AB-0093","499.510009765625","499.510009765625","","2010-01-05T00:00:00Z","","" +"NM-13834","-11.399999618530273","-11.399999618530273","","1907-09-13T00:00:00Z","","0" +"NM-25680","-103.08999633789062","-103.08999633789062","","1989-01-22T00:00:00Z","","0" +"NM-21246","2.359999895095825","2.359999895095825","Z","2009-08-21T00:00:00Z","","0" +"EB-209","66.3499984741211","65.0999984741211","","1980-12-25T00:00:00Z","","1.25" +"NM-28253","23.200000762939453","23.200000762939453","","1971-01-05T00:00:00Z","","0" +"NM-28253","40.84000015258789","40.84000015258789","","1983-04-25T00:00:00Z","","0" +"DE-0110","36.40999984741211","36.40999984741211","","2006-08-28T00:00:00Z","","0" +"NM-13861","-7.010000228881836","-7.010000228881836","","1914-12-17T00:00:00Z","","0" +"NM-02702","-13.210000038146973","-13.210000038146973","","2004-12-06T00:00:00Z","","0" +"PC-102","548","546","","2008-08-26T00:00:00Z","","2" +"NM-02840","6.53000020980835","6.53000020980835","","1969-09-23T00:00:00Z","","0" +"AB-0105","414.239990234375","414.239990234375","","2004-02-17T00:00:00Z","","" +"EB-415","158.97999572753906","158.97999572753906","","2010-07-15T00:00:00Z","","0" +"NM-00612","90.80000305175781","90.80000305175781","","1982-01-06T00:00:00Z","","0" +"NM-10805","39.63999938964844","39.63999938964844","","1951-01-16T00:00:00Z","","0" +"NM-02740","58.41999816894531","58.41999816894531","","1961-02-06T00:00:00Z","","0" +"NM-13788","-5.619999885559082","-5.619999885559082","","1909-12-01T00:00:00Z","","0" +"EB-012","100.76000213623047","100.76000213623047","","1958-04-07T00:00:00Z","","0" +"NM-20969","217.89999389648438","217.89999389648438","","1978-01-06T00:00:00Z","","0" +"NM-09104","419.3800048828125","419.3800048828125","","1950-07-15T00:00:00Z","","0" +"NM-28259","157.8000030517578","157.8000030517578","","2021-06-15T00:00:00Z","","0" +"NM-12034","11.539999961853027","11.539999961853027","","1951-01-23T00:00:00Z","","0" +"NM-02006","8.600000381469727","8.600000381469727","","1973-01-15T00:00:00Z","","0" +"NM-12513","-61.060001373291016","-61.060001373291016","","1906-09-27T00:00:00Z","","0" +"NM-02658","250.35000610351562","250.35000610351562","","1959-07-22T00:00:00Z","","0" +"NM-02377","148.02000427246094","148.02000427246094","","1977-01-13T00:00:00Z","","0" +"NM-08940","5.650000095367432","5.650000095367432","","1959-05-06T00:00:00Z","","0" +"NM-12955","20.049999237060547","20.049999237060547","","1959-01-08T00:00:00Z","","0" +"AB-0071","269","269","","1994-04-26T00:00:00Z","","0" +"NM-08940","9.289999961853027","9.289999961853027","","1957-06-17T00:00:00Z","","0" +"NM-02490","101.41000366210938","101.41000366210938","","1969-01-27T00:00:00Z","","0" +"NM-01493","48.41999816894531","48.41999816894531","","2011-03-09T00:00:00Z","","0" +"NM-24330","143","143","","1995-02-08T00:00:00Z","","0" +"NM-00974","344.4599914550781","344.4599914550781","","1972-01-05T00:00:00Z","","0" +"BC-0239","306.8699951171875","306.8699951171875","","2017-01-31T00:00:00Z","","0" +"NM-28257","59.349998474121094","59.349998474121094","","1958-01-05T00:00:00Z","","0" +"NM-17716","2.759999990463257","2.759999990463257","","1946-10-25T00:00:00Z","","0" +"NM-02740","91.2699966430664","91.2699966430664","","1995-01-06T00:00:00Z","","0" +"AB-0107","420.9599914550781","420.9599914550781","","2004-11-16T00:00:00Z","","" +"TV-121","121.13999938964844","120.02999877929688","","2014-03-03T00:00:00Z","","1.1100000143051147" +"NM-14535","89.0999984741211","89.0999984741211","","1973-12-05T00:00:00Z","","0" +"NM-09238","103.43000030517578","103.43000030517578","","1981-01-23T00:00:00Z","","0" +"NM-23515","31.8799991607666","31.8799991607666","","2006-01-12T00:00:00Z","","0" +"NM-01761","66.30000305175781","66.30000305175781","P","1949-09-03T00:00:00Z","","0" +"NM-08917","125.75","125.75","P","1966-02-16T00:00:00Z","","0" +"NM-13121","7.360000133514404","7.360000133514404","","1970-07-15T00:00:00Z","","0" +"NM-08304","27.329999923706055","27.329999923706055","","1947-01-09T00:00:00Z","","0" +"NM-04162","66","66","","2010-01-27T00:00:00Z","","0" +"NM-09344","234.41000366210938","234.41000366210938","","1979-01-24T00:00:00Z","","0" +"NM-12392","261.45001220703125","261.45001220703125","","1967-08-01T00:00:00Z","","0" +"NM-28255","68.61000061035156","68.61000061035156","","1988-09-25T00:00:00Z","","0" +"NM-13246","61.939998626708984","61.939998626708984","","1944-04-01T00:00:00Z","","0" +"NM-00829","70.88999938964844","70.88999938964844","","2014-05-27T00:00:00Z","","0" +"NM-19023","71.94999694824219","71.94999694824219","","1966-08-24T00:00:00Z","","0" +"NM-17452","69.80999755859375","69.80999755859375","","1958-03-21T00:00:00Z","","0" +"NM-01701","36.849998474121094","36.849998474121094","","2012-02-19T00:00:00Z","","0" +"NM-02382","51.45000076293945","51.45000076293945","","1949-11-16T00:00:00Z","","0" +"NM-01345","276.9200134277344","276.9200134277344","","2013-04-03T00:00:00Z","","0" +"NM-11837","80.83000183105469","80.83000183105469","","1946-01-24T00:00:00Z","","0" +"NM-12451","50.900001525878906","50.900001525878906","","1959-01-09T00:00:00Z","","0" +"NM-03099","10.5600004196167","10.5600004196167","","1995-01-13T00:00:00Z","","0" +"NM-08096","58.099998474121094","58.099998474121094","","1976-01-29T00:00:00Z","","0" +"NM-27415","73.87000274658203","73.87000274658203","","1978-01-04T00:00:00Z","","0" +"NM-20075","28.149999618530273","28.149999618530273","","1943-05-21T00:00:00Z","","0" +"TV-174","17","15.940000534057617","","2005-10-11T00:00:00Z","","1.059999942779541" +"SV-0096","122.5","121.33333587646484","","2014-03-02T00:00:00Z","","1.1666666269302368" +"NM-02591","14.100000381469727","14.100000381469727","","1995-02-15T00:00:00Z","","0" +"NM-02384","8.300000190734863","8.300000190734863","","1959-10-15T00:00:00Z","","0" +"BC-0015","99.5999984741211","99.5999984741211","","2016-03-15T00:00:00Z","","0" +"NM-03895","271.489990234375","271.489990234375","","1979-01-08T00:00:00Z","","0" +"NM-02746","90.43000030517578","90.43000030517578","","1955-01-25T00:00:00Z","","0" +"NM-28250","86.26000213623047","86.26000213623047","","2003-10-15T00:00:00Z","","0" +"NM-00464","85.80000305175781","85.80000305175781","","1974-07-10T00:00:00Z","","0" +"AB-0177","163.5","163.5","","1995-11-03T00:00:00Z","","0" +"EB-161","418","416.75","","1988-02-29T00:00:00Z","","1.25" +"NM-01897","13.670000076293945","13.670000076293945","","2010-06-02T00:00:00Z","","0" +"NM-06554","300","300","","1951-08-09T00:00:00Z","","0" +"BC-0146","495.739990234375","495.739990234375","","2016-03-14T00:00:00Z","","0" +"NM-02999","144.66000366210938","144.66000366210938","S","2008-03-18T00:00:00Z","","0" +"SB-0057","99.31999969482422","99.31999969482422","","1968-01-22T00:00:00Z","","0" +"NM-02993","25.100000381469727","25.100000381469727","","1966-01-05T00:00:00Z","","0" +"NM-12011","63.16999816894531","63.16999816894531","","1939-02-03T00:00:00Z","","0" +"NM-05315","102.44999694824219","102.44999694824219","","1955-05-17T00:00:00Z","","0" +"NM-11256","54.459999084472656","54.459999084472656","","1953-01-09T00:00:00Z","","0" +"NM-02911","95.1500015258789","95.1500015258789","","2005-01-13T00:00:00Z","","0" +"NM-04940","83.5","83.5","","1953-07-20T00:00:00Z","","0" +"NM-20136","28.389999389648438","28.389999389648438","P","1959-01-21T00:00:00Z","","0" +"NM-02412","39.790000915527344","39.790000915527344","","1972-02-10T00:00:00Z","","0" +"NM-13759","-7.46999979019165","-7.46999979019165","","1914-01-28T00:00:00Z","","0" +"NM-10987","-12.550000190734863","-12.550000190734863","","1909-06-23T00:00:00Z","","0" +"NM-03022","110.58999633789062","110.58999633789062","A","2010-03-04T00:00:00Z","","0" +"NM-09905","77.79000091552734","77.79000091552734","","1996-01-10T00:00:00Z","","0" +"NM-03395","14.489999771118164","14.489999771118164","","1988-08-23T00:00:00Z","","0" +"NM-01247","82.08000183105469","82.08000183105469","","1956-11-06T00:00:00Z","","0" +"NM-07466","26.229999542236328","26.229999542236328","S","1976-02-10T00:00:00Z","","0" +"NM-28252","60.72999954223633","60.72999954223633","","1984-06-25T00:00:00Z","","0" +"BC-0419","","220.10000610351562","","2021-10-24T00:00:00Z","","1.7000000476837158" +"NM-01872","7.699999809265137","7.699999809265137","","1989-01-15T00:00:00Z","","0" +"NM-09195","-51.81999969482422","-51.81999969482422","","1914-03-30T00:00:00Z","","0" +"NM-02520","7.5","7.5","","1968-02-15T00:00:00Z","","0" +"NM-07685","33.619998931884766","33.619998931884766","","1932-08-07T00:00:00Z","","0" +"NM-12743","27.790000915527344","27.790000915527344","","1959-01-09T00:00:00Z","","0" +"NM-02384","6.599999904632568","6.599999904632568","","1989-08-15T00:00:00Z","","0" +"NM-03476","17.56999969482422","17.56999969482422","","1992-02-05T00:00:00Z","","0" +"NM-01921","30.729999542236328","30.729999542236328","","1954-03-19T00:00:00Z","","0" +"NM-11279","61.540000915527344","61.540000915527344","","1965-02-18T00:00:00Z","","0" +"DE-0098","91.72000122070312","91.72000122070312","","2002-02-01T00:00:00Z","","0" +"NM-02702","-21.59000015258789","-21.59000015258789","","1991-10-21T00:00:00Z","","0" +"NM-03734","40.2599983215332","40.2599983215332","","1956-03-14T00:00:00Z","","0" +"AB-0208","759.7899780273438","759.7899780273438","S","1984-12-31T00:00:00Z","","" +"NM-17659","39.06999969482422","39.06999969482422","","1961-01-13T00:00:00Z","","0" +"NM-00498","65.61000061035156","65.61000061035156","","1980-12-01T00:00:00Z","","0" +"NM-00366","157.25999450683594","157.25999450683594","","1981-06-01T00:00:00Z","","0" +"NM-17251","37.18000030517578","37.18000030517578","","1967-01-17T00:00:00Z","","0" +"AB-0139","490.3999938964844","490.3999938964844","","2008-05-05T00:00:00Z","","" +"NM-28257","115.06999969482422","115.06999969482422","","1965-03-15T00:00:00Z","","0" +"NM-11515","61.31999969482422","61.31999969482422","","1986-02-04T00:00:00Z","","0" +"NM-28259","82.5999984741211","82.5999984741211","","1982-02-05T00:00:00Z","","0" +"NM-12768","2.5999999046325684","2.5999999046325684","","1912-01-03T00:00:00Z","","0" +"NM-07888","655.8800048828125","655.8800048828125","","1975-03-28T00:00:00Z","","0" +"NM-03771","35.29999923706055","35.29999923706055","","1983-01-25T00:00:00Z","","0" +"NM-16640","4.659999847412109","4.659999847412109","","1949-11-21T00:00:00Z","","0" +"NM-08940","11.420000076293945","11.420000076293945","","1957-10-01T00:00:00Z","","0" +"AB-0184","351.44000244140625","351.44000244140625","","1999-09-28T00:00:00Z","","" +"NM-28253","22.469999313354492","22.469999313354492","","1967-02-15T00:00:00Z","","0" +"DE-0179","51.15999984741211","51.15999984741211","","2006-12-13T00:00:00Z","","0" +"QY-0902","209.39999389648438","209.39999389648438","P","1955-04-14T00:00:00Z","","0" +"NM-15377","69.56999969482422","69.56999969482422","","1989-11-16T00:00:00Z","","0" +"NM-03460","179.8300018310547","179.8300018310547","","1956-10-01T00:00:00Z","","0" +"NM-08940","8.069999694824219","8.069999694824219","","1957-05-20T00:00:00Z","","0" +"NM-27510","164.6300048828125","164.6300048828125","","1999-01-26T00:00:00Z","","0" +"NM-02591","13.399999618530273","13.399999618530273","","1970-06-15T00:00:00Z","","0" +"NM-02207","19.700000762939453","19.700000762939453","","1957-02-15T00:00:00Z","","0" +"NM-02840","7.440000057220459","7.440000057220459","","1968-12-11T00:00:00Z","","0" +"NM-05377","209.3699951171875","209.3699951171875","","1975-01-14T00:00:00Z","","0" +"NM-02208","8.899999618530273","8.899999618530273","","1999-02-11T00:00:00Z","","0" +"NM-02540","64.43000030517578","64.43000030517578","","1972-01-14T00:00:00Z","","0" +"NM-08365","65.43000030517578","65.43000030517578","","1961-02-23T00:00:00Z","","0" +"NM-27208","134.47000122070312","134.47000122070312","","1977-01-20T00:00:00Z","","0" +"NM-02702","-6.929999828338623","-6.929999828338623","","2003-12-24T00:00:00Z","","0" +"DE-0106","46.40999984741211","46.40999984741211","","2016-10-20T00:00:00Z","","0" +"NM-05093","97.02999877929688","97.02999877929688","","1965-01-26T00:00:00Z","","0" +"NM-01815","129.36000061035156","129.36000061035156","","1980-01-09T00:00:00Z","","0" +"SB-0299","134.72999572753906","134.72999572753906","","1982-05-25T00:00:00Z","","0" +"NM-04118","85.0999984741211","85.0999984741211","","1985-01-21T00:00:00Z","","0" +"NM-22972","43.9900016784668","43.9900016784668","","1988-02-16T00:00:00Z","","0" +"NM-02286","16.56999969482422","16.56999969482422","","2015-01-20T00:00:00Z","","0" +"EB-295","537.5499877929688","537.5499877929688","","2010-12-09T00:00:00Z","","0" +"BW-0146","22.510000228881836","22.510000228881836","","1956-08-09T00:00:00Z","","0" +"NM-03342","11.579999923706055","11.579999923706055","","2016-08-22T00:00:00Z","","0" +"NM-25493","29.5","29.5","","1986-04-22T00:00:00Z","","0" +"NM-06315","233.30999755859375","233.30999755859375","","1992-01-07T00:00:00Z","","0" +"EB-413","207.47999572753906","207.47999572753906","","2016-08-02T00:00:00Z","","0" +"NM-27474","73.94999694824219","73.94999694824219","","1952-11-06T00:00:00Z","","0" +"EB-207","243.5","243.5","","2001-07-26T00:00:00Z","","0" +"EB-225","154.5800018310547","154.5800018310547","","1958-08-26T00:00:00Z","","0" +"NM-02281","41.5099983215332","41.5099983215332","","2012-09-12T00:00:00Z","","0" +"NM-01796","6","6","","1970-02-15T00:00:00Z","","0" +"NM-11090","41.189998626708984","41.189998626708984","","1953-01-13T00:00:00Z","","0" +"NM-03679","184.0800018310547","184.0800018310547","","2002-08-22T00:00:00Z","","0" +"NM-17716","7.570000171661377","7.570000171661377","","1940-07-01T00:00:00Z","","0" +"NM-14977","12.600000381469727","12.600000381469727","","1964-12-29T00:00:00Z","","0" +"NM-02535","11.789999961853027","11.789999961853027","","1989-01-10T00:00:00Z","","0" +"NM-01888","13.930000305175781","13.930000305175781","","2004-03-10T00:00:00Z","","0" +"NM-02620","11.699999809265137","11.699999809265137","","1983-12-15T00:00:00Z","","0" +"NM-08648","40.900001525878906","40.900001525878906","","1964-02-10T00:00:00Z","","0" +"NM-28258","156.85000610351562","156.85000610351562","","2011-11-23T00:00:00Z","","0" +"NM-02396","7.5","7.5","","1961-07-15T00:00:00Z","","0" +"NM-28017","486.2799987792969","486.2799987792969","S","2015-05-08T00:00:00Z","","0" +"NM-13530","535.0399780273438","535.0399780273438","","1975-01-09T00:00:00Z","","0" +"NM-28255","29.610000610351562","29.610000610351562","","1983-03-05T00:00:00Z","","0" +"NM-13717","7.630000114440918","7.630000114440918","","1944-07-18T00:00:00Z","","0" +"NM-00621","77.6500015258789","77.6500015258789","","1992-01-04T00:00:00Z","","0" +"NM-02772","75.77999877929688","75.77999877929688","","1957-03-01T00:00:00Z","","0" +"SA-0114","196.42999267578125","194.08999633789062","","2018-02-27T00:00:00Z","0001-01-01T09:06:00Z","2.3399999141693115" +"NM-05524","78.05000305175781","78.05000305175781","","1940-01-12T00:00:00Z","","0" +"NM-09675","-35.650001525878906","-35.650001525878906","","1905-06-30T00:00:00Z","","0" +"NM-00068","48.25","48.25","","1959-11-23T00:00:00Z","","0" +"NM-03222","87.33999633789062","87.33999633789062","","1979-12-05T00:00:00Z","","0" +"NM-28252","48.54999923706055","48.54999923706055","","2009-06-05T00:00:00Z","","0" +"SB-0244","58.20000076293945","58.20000076293945","","1954-05-21T00:00:00Z","","0" +"NM-21616","480.1499938964844","480.1499938964844","","1992-03-05T00:00:00Z","","0" +"NM-12122","163.75999450683594","163.75999450683594","","1980-07-23T00:00:00Z","","0" +"QY-0655","99.4000015258789","99.4000015258789","","1956-01-09T00:00:00Z","","0" +"NM-08014","47.83000183105469","47.83000183105469","","1957-05-07T00:00:00Z","","0" +"EB-419","192","193.5800018310547","","1999-06-01T00:00:00Z","","-1.5800000429153442" +"NM-02164","12.539999961853027","12.539999961853027","","2010-11-04T00:00:00Z","","0" +"NM-02649","20.940000534057617","20.940000534057617","","1997-02-28T00:00:00Z","","0" +"NM-02207","9.100000381469727","9.100000381469727","","1993-07-15T00:00:00Z","","0" +"NM-03382","75.7699966430664","75.7699966430664","S","1951-02-21T00:00:00Z","","0" +"NM-00643","104.41000366210938","104.41000366210938","","1990-07-24T00:00:00Z","","0" +"NM-01868","12.100000381469727","12.100000381469727","","1979-03-15T00:00:00Z","","0" +"NM-00213","141.75999450683594","141.75999450683594","","2011-03-03T00:00:00Z","","0" +"NM-00280","167.83999633789062","167.739990234375","","2020-01-06T00:00:00Z","0001-01-01T14:04:00Z","0.10000000149011612" +"NM-03085","329.0799865722656","329.0799865722656","","2013-07-22T00:00:00Z","","0" +"NM-01469","177.4499969482422","177.4499969482422","R","1983-03-01T00:00:00Z","","0" +"NM-20578","15.170000076293945","15.170000076293945","","1953-08-18T00:00:00Z","","0" +"NM-28257","70.41999816894531","70.41999816894531","","1971-04-15T00:00:00Z","","0" +"NM-03462","107.58999633789062","107.58999633789062","","1986-03-01T00:00:00Z","","0" +"NM-01863","10.09000015258789","10.09000015258789","","1989-12-20T00:00:00Z","","0" +"NM-08587","261.7200012207031","261.7200012207031","","1970-11-17T00:00:00Z","","0" +"NM-01926","8","8","","1974-03-15T00:00:00Z","","0" +"NM-04253","337.3299865722656","337.3299865722656","","1982-01-15T00:00:00Z","","0" +"SV-0048","471.8999938964844","470.72998046875","","2016-08-21T00:00:00Z","","1.1699999570846558" +"EB-163","695.4000244140625","694.2000122070312","","2008-07-31T00:00:00Z","","1.2000000476837158" +"NM-03903","329.1600036621094","329.1600036621094","","1974-10-07T00:00:00Z","","0" +"NM-19402","292.9200134277344","292.9200134277344","","1962-03-23T00:00:00Z","","0" +"NM-02794","41.22999954223633","41.22999954223633","","1939-03-07T00:00:00Z","","0" +"NM-11786","57.56999969482422","57.56999969482422","","1964-02-13T00:00:00Z","","0" +"MG-018","146.92999267578125","146.22999572753906","","2013-06-18T00:00:00Z","","0.699999988079071" +"NM-17542","33.58000183105469","33.58000183105469","","1941-11-26T00:00:00Z","","0" +"NM-02352","6.800000190734863","6.800000190734863","","1981-06-15T00:00:00Z","","0" +"NM-10637","64.77999877929688","64.77999877929688","","1966-02-25T00:00:00Z","","0" +"NM-02085","12.600000381469727","12.600000381469727","","1980-01-11T00:00:00Z","","0" +"NM-07245","390.29998779296875","390.29998779296875","","2010-03-26T00:00:00Z","","0" +"NM-02487","7.800000190734863","7.800000190734863","","1976-10-15T00:00:00Z","","0" +"NM-06060","25.549999237060547","25.549999237060547","","1954-05-05T00:00:00Z","","0" +"NM-03388","52.220001220703125","52.220001220703125","","1992-12-14T00:00:00Z","","0" +"NM-01843","74.7699966430664","74.7699966430664","","2014-02-12T00:00:00Z","","0" +"SB-0299","111.08999633789062","111.08999633789062","","1992-02-20T00:00:00Z","","0" +"NM-02393","68.1500015258789","68.1500015258789","","1981-01-16T00:00:00Z","","0" +"NM-03313","314.6199951171875","314.6199951171875","Z","1991-07-03T00:00:00Z","","0" +"NM-12969","-4.619999885559082","-4.619999885559082","","1906-09-25T00:00:00Z","","0" +"NM-13969","-7.639999866485596","-7.639999866485596","","1912-04-04T00:00:00Z","","0" +"NM-23110","3.950000047683716","3.950000047683716","","1988-01-12T00:00:00Z","","0" +"NM-03468","153.2899932861328","153.2899932861328","Z","2000-02-08T00:00:00Z","","0" +"NM-12933","17.420000076293945","17.420000076293945","","1955-07-05T00:00:00Z","","0" +"NM-16620","15.989999771118164","15.989999771118164","","1936-05-21T00:00:00Z","","0" +"NM-05516","8.399999618530273","8.399999618530273","","1960-07-15T00:00:00Z","","0" +"NM-02256","8.100000381469727","8.100000381469727","","1964-11-15T00:00:00Z","","0" +"NM-03397","29.049999237060547","29.049999237060547","","1993-06-29T00:00:00Z","","0" +"NM-21842","207.49000549316406","207.49000549316406","","2009-12-01T00:00:00Z","","0" +"NM-28255","108.20999908447266","108.20999908447266","","1985-09-05T00:00:00Z","","0" +"NM-27195","138.05999755859375","138.05999755859375","","2011-04-27T00:00:00Z","","0" +"NM-10736","11.710000038146973","11.710000038146973","","1963-08-13T00:00:00Z","","0" +"NM-01971","7.699999809265137","7.699999809265137","","1980-04-15T00:00:00Z","","0" +"NM-19959","35.54999923706055","35.54999923706055","","1946-05-30T00:00:00Z","","0" +"NM-01872","9.199999809265137","9.199999809265137","","1973-07-15T00:00:00Z","","0" +"NM-01984","105.05000305175781","105.05000305175781","","1988-01-27T00:00:00Z","","0" +"NM-10099","205","205","","1976-05-25T00:00:00Z","","0" +"DE-0118","38.22999954223633","38.22999954223633","","2007-01-23T00:00:00Z","","0" +"WL-0088","36.20833206176758","33.608333587646484","","1995-11-14T00:00:00Z","","2.5999999046325684" +"NM-28251","73.58999633789062","73.58999633789062","","1989-05-15T00:00:00Z","","0" +"NM-13254","10.170000076293945","10.170000076293945","","1961-08-25T00:00:00Z","","0" +"NM-02499","160.67999267578125","160.67999267578125","","1982-02-11T00:00:00Z","","0" +"NM-02183","20.1200008392334","20.1200008392334","","2012-01-24T00:00:00Z","","0" +"NM-12211","-18.329999923706055","-18.329999923706055","","1909-06-25T00:00:00Z","","0" +"NM-05509","130.6999969482422","130.6999969482422","P","1961-06-02T00:00:00Z","","0" +"NM-17471","16.3799991607666","16.3799991607666","","1945-09-25T00:00:00Z","","0" +"NM-06032","84.4000015258789","84.4000015258789","","1993-01-29T00:00:00Z","","0" +"NM-04586","75.4800033569336","75.4800033569336","","1953-03-23T00:00:00Z","","0" +"DE-0259","84.75","84.75","","2018-06-14T00:00:00Z","","0" +"NM-12936","-21.790000915527344","-21.790000915527344","","1913-07-23T00:00:00Z","","0" +"NM-05380","71.66000366210938","71.66000366210938","","1941-07-10T00:00:00Z","","0" +"NM-16774","25.8799991607666","25.8799991607666","","1931-08-06T00:00:00Z","","0" +"NM-07700","35.779998779296875","35.779998779296875","","1981-02-13T00:00:00Z","","0" +"NM-14294","-26.40999984741211","-26.40999984741211","","1910-03-03T00:00:00Z","","0" +"NM-02520","4.300000190734863","4.300000190734863","","1980-04-15T00:00:00Z","","0" +"UC-0039","173.67999267578125","173.67999267578125","","2009-08-16T00:00:00Z","","0" +"NM-15132","192.60000610351562","192.60000610351562","","1990-02-02T00:00:00Z","","0" +"NM-21219","7.099999904632568","7.099999904632568","","1959-08-18T00:00:00Z","","0" +"NM-00185","13.199999809265137","13.199999809265137","","1975-10-15T00:00:00Z","","0" +"NM-23514","54.2400016784668","54.2400016784668","","2005-09-15T00:00:00Z","","0" +"NM-14705","62.439998626708984","62.439998626708984","","1955-01-12T00:00:00Z","","0" +"NM-13292","51.45000076293945","51.45000076293945","","1981-02-11T00:00:00Z","","0" +"AB-0213","156.10000610351562","156.10000610351562","","2008-01-02T00:00:00Z","","" +"NM-23203","12.789999961853027","12.789999961853027","Z","1997-07-02T00:00:00Z","","0" +"NM-28259","129.07000732421875","129.07000732421875","","1989-09-25T00:00:00Z","","0" +"NM-01439","36.4900016784668","36.4900016784668","R","2012-02-15T00:00:00Z","","0" +"NM-11993","76.5","76.5","","1971-02-25T00:00:00Z","","0" +"EB-478","239","239","","1993-04-30T00:00:00Z","","0" +"NM-28258","171.44000244140625","171.44000244140625","","2002-05-15T00:00:00Z","","0" +"NM-28251","61.029998779296875","61.029998779296875","","1998-03-25T00:00:00Z","","0" +"NM-16466","20.3799991607666","20.3799991607666","","1977-06-23T00:00:00Z","","0" +"NM-00794","80.80000305175781","80.80000305175781","","2008-07-29T00:00:00Z","","0" +"NM-28255","54.849998474121094","54.849998474121094","","1951-04-15T00:00:00Z","","0" +"NM-02169","8.100000381469727","8.100000381469727","","2013-07-08T00:00:00Z","","0" +"EB-298","147.64999389648438","147.64999389648438","","2007-08-08T00:00:00Z","","0" +"NM-15211","99.55000305175781","99.55000305175781","","1990-01-25T00:00:00Z","","0" +"NM-05533","41.150001525878906","41.150001525878906","","1944-01-10T00:00:00Z","","0" +"NM-03000","113.3499984741211","113.3499984741211","","1995-01-04T00:00:00Z","","0" +"NM-13916","-12.550000190734863","-12.550000190734863","","1906-09-10T00:00:00Z","","0" +"NM-21497","6.610000133514404","6.610000133514404","","1993-10-20T00:00:00Z","","0" +"NM-01269","77.41999816894531","77.41999816894531","","1949-10-12T00:00:00Z","","0" +"AB-0143","305.989990234375","305.989990234375","","1985-09-01T00:00:00Z","","0" +"NM-28251","68.43000030517578","68.43000030517578","","2007-01-25T00:00:00Z","","0" +"NM-21340","","","O","1999-02-16T00:00:00Z","","0" +"NM-26794","613.72998046875","613.72998046875","","1967-05-26T00:00:00Z","","0" +"NM-03649","33.400001525878906","33.400001525878906","","2006-11-06T00:00:00Z","","0" +"NM-00204","59.380001068115234","59.380001068115234","","2010-03-22T00:00:00Z","","0" +"NM-03363","647.5700073242188","647.5700073242188","","2005-01-18T00:00:00Z","","0" +"AB-0105","409.17999267578125","409.17999267578125","","2010-10-05T00:00:00Z","","" +"NM-22023","38","38","","1950-12-22T00:00:00Z","","0" +"EB-012","99.87000274658203","99.87000274658203","","1958-05-19T00:00:00Z","","0" +"AB-0149","599","599","","1993-01-27T00:00:00Z","","" +"NM-16985","57.97999954223633","57.97999954223633","","1961-01-10T00:00:00Z","","0" +"NM-18420","295.7900085449219","295.7900085449219","R","2013-07-31T00:00:00Z","","0" +"NM-02223","208.10000610351562","208.10000610351562","","1980-01-08T00:00:00Z","","0" +"NM-00425","44.099998474121094","44.099998474121094","","1976-02-27T00:00:00Z","","0" +"NM-28256","243.7899932861328","243.7899932861328","","1976-05-05T00:00:00Z","","0" +"NM-11904","38.68000030517578","38.68000030517578","","1947-01-27T00:00:00Z","","0" +"NM-03672","229.02000427246094","229.02000427246094","","1959-10-13T00:00:00Z","","0" +"SA-0007","216.7100067138672","216.7100067138672","","1996-02-08T00:00:00Z","","0" +"EB-276","406","406","P","1990-07-31T00:00:00Z","","0" +"NM-01279","78.66999816894531","78.66999816894531","","1977-01-17T00:00:00Z","","0" +"NM-13870","-7.349999904632568","-7.349999904632568","","1912-09-23T00:00:00Z","","0" +"NM-09997","110.02999877929688","110.02999877929688","","1981-01-06T00:00:00Z","","0" +"NM-04168","67.08999633789062","67.08999633789062","","1961-01-12T00:00:00Z","","0" +"NM-08071","9.800000190734863","9.800000190734863","","1976-12-15T00:00:00Z","","0" +"NM-28018","486.1700134277344","486.1700134277344","S","2015-04-26T00:00:00Z","","0" +"NM-02352","12.5","12.5","","1956-09-15T00:00:00Z","","0" +"NM-11856","15.359999656677246","15.359999656677246","","1948-01-24T00:00:00Z","","0" +"NM-10467","49.369998931884766","49.369998931884766","","1966-02-09T00:00:00Z","","0" +"DE-0126","33.61000061035156","33.61000061035156","","2002-10-03T00:00:00Z","","0" +"NM-10566","72.0199966430664","72.0199966430664","","1957-05-01T00:00:00Z","","0" +"NM-28258","129.3300018310547","129.3300018310547","","1973-03-15T00:00:00Z","","0" +"NM-01842","337.6400146484375","337.6400146484375","","1989-12-26T00:00:00Z","","0" +"NM-01791","232.75999450683594","232.75999450683594","","1961-07-13T00:00:00Z","","0" +"NM-00774","303.45001220703125","303.45001220703125","","2009-09-10T00:00:00Z","","0" +"NM-21205","130","130","","1967-01-01T00:00:00Z","","0" +"NM-00498","65.30999755859375","65.30999755859375","","1981-03-01T00:00:00Z","","0" +"NM-10635","28.329999923706055","28.329999923706055","","1951-01-15T00:00:00Z","","0" +"NM-06848","14.199999809265137","14.199999809265137","","1962-11-15T00:00:00Z","","0" +"NM-05587","18.3700008392334","18.3700008392334","","1976-09-30T00:00:00Z","","0" +"NM-28257","-18.940000534057617","-18.940000534057617","","1991-10-15T00:00:00Z","","0" +"NM-02625","64.95999908447266","64.95999908447266","","2004-01-27T00:00:00Z","","0" +"NM-23898","78.36000061035156","78.36000061035156","","1998-02-25T00:00:00Z","","0" +"NM-13307","32.869998931884766","32.869998931884766","","1986-02-18T00:00:00Z","","0" +"NM-28254","113.19999694824219","113.19999694824219","","2002-07-05T00:00:00Z","","0" +"NM-10136","-104.05000305175781","-104.05000305175781","","1913-12-09T00:00:00Z","","0" +"NM-23093","58.060001373291016","58.060001373291016","T","1947-01-03T00:00:00Z","","0" +"NM-10090","95.02999877929688","95.02999877929688","P","1948-01-16T00:00:00Z","","0" +"UC-0139","162.77999877929688","162.77999877929688","","1968-03-28T00:00:00Z","","0" +"NM-14396","5.630000114440918","5.630000114440918","","1983-03-04T00:00:00Z","","0" +"SB-0045","1136.7900390625","1136.7900390625","","2013-06-13T00:00:00Z","","0" +"NM-11565","97.30000305175781","97.30000305175781","","1959-05-14T00:00:00Z","","0" +"NM-14172","95.16999816894531","95.16999816894531","","1965-01-05T00:00:00Z","","0" +"NM-21381","31.729999542236328","31.729999542236328","R","1990-08-22T00:00:00Z","","0" +"NM-01951","81","81","","1987-02-11T00:00:00Z","","0" +"NM-05367","73.91999816894531","73.91999816894531","","1941-05-05T00:00:00Z","","0" +"NM-02049","111.19999694824219","111.19999694824219","","1959-02-10T00:00:00Z","","0" +"NM-26690","16.670000076293945","16.670000076293945","","1958-12-03T00:00:00Z","","0" +"NM-05516","14.100000381469727","14.100000381469727","","1968-03-15T00:00:00Z","","0" +"NM-01390","149.47999572753906","149.47999572753906","","2013-03-21T00:00:00Z","","0" +"NM-00800","17.6200008392334","17.6200008392334","","2011-01-11T00:00:00Z","","0" +"NM-05762","55.58000183105469","55.58000183105469","","1955-09-11T00:00:00Z","","0" +"DE-0236","107.68000030517578","107.68000030517578","","1999-02-23T00:00:00Z","","0" +"NM-00395","34.779998779296875","34.779998779296875","","1955-09-23T00:00:00Z","","0" +"NM-02506","119.91000366210938","119.91000366210938","","2007-02-16T00:00:00Z","","0" +"NM-02998","27.43000030517578","27.43000030517578","","1963-01-18T00:00:00Z","","0" +"NM-11771","46.959999084472656","46.959999084472656","","1937-09-30T00:00:00Z","","0" +"NM-07064","39.81999969482422","39.81999969482422","","1981-01-16T00:00:00Z","","0" +"NM-10635","28.100000381469727","28.100000381469727","","1957-11-26T00:00:00Z","","0" +"NM-17716","5.21999979019165","5.21999979019165","","1949-12-19T00:00:00Z","","0" +"NM-19816","22.459999084472656","22.459999084472656","","1957-01-10T00:00:00Z","","0" +"NM-01796","5.099999904632568","5.099999904632568","","1971-03-15T00:00:00Z","","0" +"TB-0113","67.83999633789062","66.88999938964844","","2009-12-19T00:00:00Z","","0.949999988079071" +"NM-02626","13.020000457763672","13.020000457763672","","2005-02-27T00:00:00Z","","0" +"NM-02281","41.220001220703125","41.220001220703125","","2012-10-19T00:00:00Z","","0" +"NM-17142","40.54999923706055","40.54999923706055","","1956-11-14T00:00:00Z","","0" +"NM-17023","7.139999866485596","7.139999866485596","","1979-07-05T00:00:00Z","","0" +"NM-28254","29.440000534057617","29.440000534057617","","1981-01-05T00:00:00Z","","0" +"NM-20305","41.86000061035156","41.86000061035156","","1945-01-24T00:00:00Z","","0" +"NM-03391","26.6200008392334","26.6200008392334","","1992-10-05T00:00:00Z","","0" +"NM-28022","485.75","485.75","S","2015-04-26T00:00:00Z","","0" +"NM-04997","90.41999816894531","90.41999816894531","","1969-02-05T00:00:00Z","","0" +"NM-28254","83.94999694824219","83.94999694824219","","1952-08-05T00:00:00Z","","0" +"NM-02038","94.27999877929688","94.27999877929688","","1977-01-04T00:00:00Z","","0" +"NM-05189","44.22999954223633","44.22999954223633","","1956-07-17T00:00:00Z","","0" +"PC-102","556","554","","2011-11-15T00:00:00Z","","2" +"NM-27426","27.8700008392334","27.8700008392334","","1940-01-22T00:00:00Z","","0" +"NM-13275","179.52999877929688","179.52999877929688","","1960-03-16T00:00:00Z","","0" +"NM-08669","-27.56999969482422","-27.56999969482422","","1908-12-30T00:00:00Z","","0" +"NM-28250","90.7300033569336","90.7300033569336","","2019-02-25T00:00:00Z","","0" +"NM-10904","53.75","53.75","","1986-01-16T00:00:00Z","","0" +"NM-11420","77.12999725341797","77.12999725341797","","1986-01-22T00:00:00Z","","0" +"DE-0307","47.209999084472656","47.209999084472656","","2016-09-20T00:00:00Z","","0" +"BC-0107","245.64999389648438","245.64999389648438","","2017-06-27T00:00:00Z","","0" +"NM-21724","54.869998931884766","54.869998931884766","","2008-05-01T00:00:00Z","","0" +"NM-00039","90.83999633789062","90.83999633789062","","1957-01-15T00:00:00Z","","0" +"NM-26070","57.68000030517578","57.68000030517578","","1981-02-02T00:00:00Z","","0" +"NM-02631","66.55999755859375","66.55999755859375","","1992-01-02T00:00:00Z","","0" +"AB-0122","539.0499877929688","539.0499877929688","","1999-02-08T00:00:00Z","","" +"NM-26491","135.33999633789062","135.33999633789062","","2003-06-06T00:00:00Z","","0" +"NM-16979","41.790000915527344","41.790000915527344","","1935-06-16T00:00:00Z","","0" +"SV-0070","197.5","196.1666717529297","","2015-02-14T00:00:00Z","","1.3333333730697632" +"EB-606","118.36000061035156","118.36000061035156","","2006-08-09T00:00:00Z","","0" +"NM-03339","10.329999923706055","10.329999923706055","","1993-05-03T00:00:00Z","","0" +"NM-14890","33.290000915527344","33.290000915527344","","1978-10-18T00:00:00Z","","0" +"BC-0068","73.33000183105469","73.33000183105469","","2015-06-03T00:00:00Z","","0" +"NM-02415","46.970001220703125","46.970001220703125","","2002-02-26T00:00:00Z","","0" +"NM-07149","104.87999725341797","104.87999725341797","","2006-01-03T00:00:00Z","","0" +"NM-11096","75.43000030517578","75.43000030517578","","1996-01-05T00:00:00Z","","0" +"NM-22466","71.12999725341797","71.12999725341797","T","1985-04-30T00:00:00Z","","0" +"DE-0233","106.44000244140625","106.44000244140625","","2002-11-03T00:00:00Z","","0" +"NM-14117","-3.5999999046325684","-3.5999999046325684","","1906-03-08T00:00:00Z","","0" +"NM-14778","137.83999633789062","137.83999633789062","","1994-02-03T00:00:00Z","","0" +"NM-03712","97.29000091552734","97.29000091552734","","1951-05-10T00:00:00Z","","0" +"NM-00213","185.97000122070312","185.97000122070312","","1963-10-01T00:00:00Z","","0" +"NM-01066","106.83999633789062","106.83999633789062","","1962-01-03T00:00:00Z","","0" +"NM-13145","11.539999961853027","11.539999961853027","","1971-11-30T00:00:00Z","","0" +"NM-06861","40.22999954223633","40.22999954223633","","1932-05-31T00:00:00Z","","0" +"NM-14535","88.33000183105469","88.33000183105469","","1973-05-14T00:00:00Z","","0" +"NM-02895","249.1199951171875","249.1199951171875","","1954-05-11T00:00:00Z","","0" +"AB-0212","155.50999450683594","155.50999450683594","","2007-01-10T00:00:00Z","","" +"NM-00575","66.95999908447266","66.95999908447266","","1986-09-03T00:00:00Z","","0" +"EB-481","484.3500061035156","484.3500061035156","","2002-11-30T00:00:00Z","","0" +"NM-03827","14.899999618530273","14.899999618530273","","1955-09-14T00:00:00Z","","0" +"NM-11486","14.949999809265137","14.949999809265137","","1959-07-21T00:00:00Z","","0" +"NM-00023","106.33999633789062","106.33999633789062","","1985-02-11T00:00:00Z","","0" +"NM-04558","132.10000610351562","132.10000610351562","","1981-03-25T00:00:00Z","","0" +"NM-17271","73.66000366210938","73.66000366210938","","1964-01-01T00:00:00Z","","0" +"NM-11624","74.80999755859375","74.80999755859375","","1978-02-02T00:00:00Z","","0" +"NM-14483","36.220001220703125","36.220001220703125","","1956-03-20T00:00:00Z","","0" +"NM-28255","95.08000183105469","95.08000183105469","","1953-08-05T00:00:00Z","","0" +"NM-12233","67.93000030517578","67.93000030517578","","1961-02-13T00:00:00Z","","0" +"DE-0140","77.0199966430664","77.0199966430664","","2011-10-24T00:00:00Z","","0" +"NM-28256","236.88999938964844","236.88999938964844","","1984-04-15T00:00:00Z","","0" +"NM-27327","9.640000343322754","9.640000343322754","","1954-01-08T00:00:00Z","","0" +"NM-02384","8","8","","1961-09-15T00:00:00Z","","0" +"NM-09176","29.270000457763672","29.270000457763672","","1939-09-18T00:00:00Z","","0" +"BC-0184","375.9700012207031","375.9700012207031","","2013-03-14T00:00:00Z","","0" +"NM-03932","105.16000366210938","105.16000366210938","","1964-01-07T00:00:00Z","","0" +"NM-10890","12.529999732971191","12.529999732971191","","1947-01-17T00:00:00Z","","0" +"NM-13947","-11.970000267028809","-11.970000267028809","","1908-03-25T00:00:00Z","","0" +"NM-02414","14.699999809265137","14.699999809265137","","1995-07-11T00:00:00Z","","0" +"NM-14114","-1.5800000429153442","-1.5800000429153442","","1906-06-22T00:00:00Z","","0" +"NM-23010","349.54998779296875","349.54998779296875","P","1989-06-02T00:00:00Z","","0" +"NM-02527","10.300000190734863","10.300000190734863","","1969-06-15T00:00:00Z","","0" +"NM-01863","16.59000015258789","16.59000015258789","","2013-01-29T00:00:00Z","","0" +"NM-11176","63.029998779296875","63.029998779296875","","1976-01-14T00:00:00Z","","0" +"SB-0299","131.36000061035156","131.36000061035156","","2008-03-20T00:00:00Z","","0" +"NM-02705","107.5199966430664","107.5199966430664","R","2014-01-07T00:00:00Z","","0" +"NM-02548","55.439998626708984","55.439998626708984","","2010-01-12T00:00:00Z","","0" +"NM-22474","40","40","T","1985-08-08T00:00:00Z","","0" +"NM-02496","102.72000122070312","102.72000122070312","","1975-01-06T00:00:00Z","","0" +"NM-02831","53.939998626708984","53.939998626708984","","1982-02-01T00:00:00Z","","0" +"NM-13563","2.359999895095825","2.359999895095825","","1960-01-26T00:00:00Z","","0" +"NM-01912","9.270000457763672","9.270000457763672","","1981-01-16T00:00:00Z","","0" +"NM-04206","30.59000015258789","30.59000015258789","","1952-09-08T00:00:00Z","","0" +"NM-01926","8.800000190734863","8.800000190734863","","1957-12-15T00:00:00Z","","0" +"WL-0089","28.375","25.825000762939453","","1992-08-14T00:00:00Z","","2.549999952316284" +"SO-0143","9.819999694824219","8.529999732971191","","2022-02-03T00:00:00Z","0001-01-01T11:20:00Z","1.2899999618530273" +"NM-07554","58.18000030517578","58.18000030517578","","2015-01-12T00:00:00Z","","0" +"NM-28252","39.38999938964844","39.38999938964844","","1958-10-05T00:00:00Z","","0" +"NM-00782","16.030000686645508","16.030000686645508","","2010-03-24T00:00:00Z","","0" +"NM-28258","184.25999450683594","184.25999450683594","","1998-07-05T00:00:00Z","","0" +"NM-01868","17.200000762939453","17.200000762939453","","1956-08-15T00:00:00Z","","0" +"NM-11989","58.36000061035156","58.36000061035156","","1961-02-13T00:00:00Z","","0" +"NM-28257","12.170000076293945","12.170000076293945","","1968-07-15T00:00:00Z","","0" +"NM-06075","160.39999389648438","160.39999389648438","","1982-01-21T00:00:00Z","","0" +"NM-13208","120.63999938964844","120.63999938964844","","1958-01-15T00:00:00Z","","0" +"EB-246","342.0299987792969","342.0299987792969","","2005-10-25T00:00:00Z","","0" +"EB-141","31.170000076293945","31.170000076293945","","1994-11-08T00:00:00Z","","0" +"NM-25514","61.33000183105469","61.33000183105469","","1982-02-03T00:00:00Z","","0" +"NM-08498","55.209999084472656","55.209999084472656","","1991-02-27T00:00:00Z","","0" +"NM-01947","7.099999904632568","7.099999904632568","","1965-12-15T00:00:00Z","","0" +"NM-11795","44.16999816894531","44.16999816894531","","1955-03-18T00:00:00Z","","0" +"NM-14769","58.619998931884766","58.619998931884766","","1965-01-06T00:00:00Z","","0" +"NM-19355","362.19000244140625","362.19000244140625","","1982-01-06T00:00:00Z","","0" +"NM-00101","307.010009765625","307.010009765625","","1985-02-28T00:00:00Z","","0" +"NM-02702","66.75","66.75","","1977-04-01T00:00:00Z","","0" +"SM-0026","23.600000381469727","22.450000762939453","","2005-03-21T00:00:00Z","","1.149999976158142" +"NM-04759","39.25","39.25","","1950-01-17T00:00:00Z","","0" +"NM-28254","33.439998626708984","33.439998626708984","","1992-03-15T00:00:00Z","","0" +"NM-21082","26.389999389648438","26.389999389648438","","1961-02-14T00:00:00Z","","0" +"NM-01246","105.33000183105469","105.33000183105469","Z","2000-02-07T00:00:00Z","","0" +"NM-03354","92.05999755859375","92.05999755859375","","1959-06-16T00:00:00Z","","0" +"NM-11526","142.08999633789062","142.08999633789062","","1977-04-29T00:00:00Z","","0" +"NM-09605","108.16999816894531","108.16999816894531","","1964-01-13T00:00:00Z","","0" +"NM-10703","21.579999923706055","21.579999923706055","","1955-01-21T00:00:00Z","","0" +"AB-0219","279.05999755859375","279.05999755859375","","2001-02-26T00:00:00Z","","" +"TB-0091","107.69999694824219","107.04999542236328","","2009-12-14T00:00:00Z","","0.6499999761581421" +"NM-03046","6.389999866485596","6.389999866485596","","1983-05-31T00:00:00Z","","0" +"NM-01949","54.47999954223633","54.47999954223633","","1994-01-03T00:00:00Z","","0" +"NM-24997","350","350","","1961-09-25T00:00:00Z","","0" +"TB-0091","108.08999633789062","107.43999481201172","","2010-02-16T00:00:00Z","","0.6499999761581421" +"NM-17166","38.93000030517578","38.93000030517578","","1948-01-08T00:00:00Z","","0" +"NM-01841","279.4800109863281","279.4800109863281","","1998-02-27T00:00:00Z","","0" +"NM-01986","9.800000190734863","9.800000190734863","","1955-02-15T00:00:00Z","","0" +"NM-02116","147.44000244140625","147.44000244140625","P","1960-04-08T00:00:00Z","","0" +"NM-01897","14.050000190734863","14.050000190734863","","1999-10-15T00:00:00Z","","0" +"NM-21447","59.95000076293945","59.95000076293945","","1983-03-17T00:00:00Z","","0" +"NM-28254","70.75","70.75","","1948-08-05T00:00:00Z","","0" +"NM-14396","6.909999847412109","6.909999847412109","","1979-11-27T00:00:00Z","","0" +"NM-04632","10.899999618530273","10.899999618530273","","1961-05-15T00:00:00Z","","0" +"NM-05922","50.58000183105469","50.58000183105469","","1932-07-06T00:00:00Z","","0" +"WL-0089","40.125","37.57500076293945","","2007-12-14T00:00:00Z","","2.549999952316284" +"NM-05169","18.790000915527344","18.790000915527344","","1949-11-22T00:00:00Z","","0" +"NM-13594","34.95000076293945","34.95000076293945","","1960-03-23T00:00:00Z","","0" +"NM-10063","9.850000381469727","9.850000381469727","","1975-10-16T00:00:00Z","","0" +"NM-14089","40.22999954223633","40.22999954223633","","1968-01-04T00:00:00Z","","0" +"NM-28251","65.62999725341797","65.62999725341797","","1997-06-25T00:00:00Z","","0" +"NM-04233","66.88999938964844","66.88999938964844","","2007-02-20T00:00:00Z","","0" +"QU-155","153.3800048828125","152.49000549316406","","2013-07-02T00:00:00Z","","0.8899999856948853" +"NM-02108","11.100000381469727","11.100000381469727","","1994-02-20T00:00:00Z","","0" +"NM-02286","7.980000019073486","7.980000019073486","","1998-01-23T00:00:00Z","","0" +"NM-11723","-13.710000038146973","-13.710000038146973","","1906-10-02T00:00:00Z","","0" +"NM-10279","58.20000076293945","58.20000076293945","","1973-01-09T00:00:00Z","","0" +"NM-03035","84.75","84.75","","1990-01-05T00:00:00Z","","0" +"NM-00816","166.67999267578125","166.67999267578125","","2003-03-04T00:00:00Z","","0" +"DE-0060","197.72999572753906","195.01998901367188","","2000-01-05T00:00:00Z","","2.7100000381469727" +"NM-06268","9.899999618530273","9.899999618530273","","1947-05-15T00:00:00Z","","0" +"NM-10099","171.85000610351562","171.85000610351562","","1983-05-05T00:00:00Z","","0" +"NM-00489","52","52","","2011-12-21T00:00:00Z","","0" +"NM-13938","23.06999969482422","23.06999969482422","","1958-08-26T00:00:00Z","","0" +"NM-17562","16.579999923706055","16.579999923706055","","1944-05-11T00:00:00Z","","0" +"NM-00434","13.770000457763672","13.770000457763672","","1965-01-11T00:00:00Z","","0" +"BC-0159","196.60000610351562","196.60000610351562","","2014-12-02T00:00:00Z","","0" +"NM-11318","15.510000228881836","15.510000228881836","","1973-08-16T00:00:00Z","","0" +"NM-02624","273.0799865722656","273.0799865722656","R","1963-10-01T00:00:00Z","","0" +"NM-09237","48.77000045776367","48.77000045776367","","1961-06-12T00:00:00Z","","0" +"NM-06990","60.349998474121094","60.349998474121094","","1980-01-09T00:00:00Z","","0" +"NM-00572","78.41000366210938","78.41000366210938","","1987-01-07T00:00:00Z","","0" +"NM-17716","2.369999885559082","2.369999885559082","","1944-08-29T00:00:00Z","","0" +"NM-07283","397.70001220703125","397.70001220703125","","2009-02-27T00:00:00Z","","0" +"NM-28140","6.860000133514404","6.860000133514404","","1977-09-22T00:00:00Z","","0" +"NM-20305","41.810001373291016","41.810001373291016","","1945-09-05T00:00:00Z","","0" +"NM-21972","60","60","","1959-01-01T00:00:00Z","","0" +"AB-0179","182.49000549316406","182.49000549316406","","2011-02-28T00:00:00Z","","" +"NM-04749","189.60000610351562","189.60000610351562","P","1963-06-26T00:00:00Z","","0" +"NM-19897","44.060001373291016","44.060001373291016","","1947-04-01T00:00:00Z","","0" +"NM-15438","93.93000030517578","93.93000030517578","","1995-01-11T00:00:00Z","","0" +"NM-27638","98.87999725341797","98.87999725341797","","1963-01-03T00:00:00Z","","0" +"NM-01891","51.90999984741211","51.90999984741211","","1991-11-20T00:00:00Z","","0" +"NM-07393","152.91000366210938","152.91000366210938","","1958-08-06T00:00:00Z","","0" +"SO-0173","7.260000228881836","6.700000286102295","","2021-09-19T00:00:00Z","0001-01-01T11:00:00Z","0.5600000023841858" +"NM-07881","13","13","","1934-05-13T00:00:00Z","","0" +"NM-02352","7.199999809265137","7.199999809265137","","1975-05-15T00:00:00Z","","0" +"NM-17716","7.820000171661377","7.820000171661377","","1941-04-04T00:00:00Z","","0" +"NM-13876","12.550000190734863","12.550000190734863","","1975-08-14T00:00:00Z","","0" +"NM-00367","137.19000244140625","137.19000244140625","Z","2005-09-15T00:00:00Z","","0" +"NM-01447","288.3299865722656","288.3299865722656","","2003-08-13T00:00:00Z","","0" +"NM-05373","9.59000015258789","9.59000015258789","","1997-12-19T00:00:00Z","","0" +"NM-08842","31.709999084472656","31.709999084472656","","1950-09-19T00:00:00Z","","0" +"NM-28258","113.58000183105469","113.58000183105469","","2003-02-14T00:00:00Z","","0" +"NM-08180","89.26000213623047","89.26000213623047","","1963-08-01T00:00:00Z","","0" +"NM-20397","113.2699966430664","113.2699966430664","","1960-01-28T00:00:00Z","","0" +"NM-11571","168.75","168.75","","1955-09-08T00:00:00Z","","0" +"NM-02169","9.079999923706055","9.079999923706055","","2016-04-19T00:00:00Z","","0" +"NM-02035","106.72000122070312","106.72000122070312","","2012-02-17T00:00:00Z","","0" +"NM-21077","200.2899932861328","200.2899932861328","","1972-02-10T00:00:00Z","","0" +"EB-478","412.6499938964844","412.6499938964844","Z","2003-11-30T00:00:00Z","","0" +"NM-28258","139.14999389648438","139.14999389648438","","2012-02-25T00:00:00Z","","0" +"NM-08536","60.869998931884766","60.869998931884766","","1991-01-16T00:00:00Z","","0" +"NM-24795","149.2100067138672","149.2100067138672","","1964-02-25T00:00:00Z","","0" +"NM-13616","-14.859999656677246","-14.859999656677246","","1911-05-19T00:00:00Z","","0" +"UC-0100","154.60000610351562","154.60000610351562","","2012-02-16T00:00:00Z","","0" +"NM-04057","279.1000061035156","279.1000061035156","P","1971-12-20T00:00:00Z","","0" +"NM-01898","44.560001373291016","44.560001373291016","","2011-01-31T00:00:00Z","","0" +"NM-28253","19.540000915527344","19.540000915527344","","1994-09-15T00:00:00Z","","0" +"NM-17039","83.97000122070312","83.97000122070312","","1966-09-16T00:00:00Z","","0" +"NM-07205","21.790000915527344","21.790000915527344","","1936-07-10T00:00:00Z","","0" +"NM-13955","-8.800000190734863","-8.800000190734863","","1912-09-23T00:00:00Z","","0" +"NM-21915","68.30999755859375","68.30999755859375","","1991-03-12T00:00:00Z","","0" +"NM-01926","6.300000190734863","6.300000190734863","","1963-05-15T00:00:00Z","","0" +"NM-02772","134.7899932861328","134.7899932861328","","2004-06-04T00:00:00Z","","0" +"AB-0054","40.869998931884766","40.869998931884766","","2012-07-31T00:00:00Z","","" +"NM-00565","74.75","74.75","","1991-02-05T00:00:00Z","","0" +"NM-19787","132.7899932861328","132.7899932861328","","2013-05-29T00:00:00Z","","0" +"NM-17175","50.02000045776367","50.02000045776367","","1987-02-03T00:00:00Z","","0" +"NM-03039","89.88999938964844","89.88999938964844","A","2010-02-22T00:00:00Z","","0" +"NM-28257","181.05999755859375","181.05999755859375","","1966-08-05T00:00:00Z","","0" +"NM-14325","65.69999694824219","65.69999694824219","","1972-10-06T00:00:00Z","","0" +"NM-03336","10.979999542236328","10.979999542236328","","1993-06-01T00:00:00Z","","0" +"NM-11580","83.05000305175781","83.05000305175781","","1981-03-06T00:00:00Z","","0" +"NM-10736","12.899999618530273","12.899999618530273","","1941-08-11T00:00:00Z","","0" +"WL-0250","255.7100067138672","254.5900115966797","","2022-02-15T00:00:00Z","0001-01-01T16:40:00Z","1.1200000047683716" +"NM-01926","6.5","6.5","","1980-07-15T00:00:00Z","","0" +"NM-00645","31.280000686645508","31.280000686645508","","1953-07-27T00:00:00Z","","0" +"NM-00367","131.83999633789062","131.83999633789062","Z","1999-07-08T00:00:00Z","","0" +"NM-04561","69.5999984741211","69.5999984741211","","1960-07-22T00:00:00Z","","0" +"NM-02757","16.440000534057617","16.440000534057617","Z","1996-08-16T00:00:00Z","","0" +"NM-21587","4.960000038146973","4.960000038146973","Z","2005-09-14T00:00:00Z","","0" +"NM-01796","5.400000095367432","5.400000095367432","","1962-10-15T00:00:00Z","","0" +"NM-11473","15.5","15.5","","1959-04-23T00:00:00Z","","0" +"NM-02314","12.600000381469727","12.600000381469727","","1955-03-15T00:00:00Z","","0" +"NM-01534","50.47999954223633","50.47999954223633","","1967-06-13T00:00:00Z","","0" +"NM-08648","42.02000045776367","42.02000045776367","","1959-09-15T00:00:00Z","","0" +"NM-02168","8.800000190734863","8.800000190734863","","1992-04-23T00:00:00Z","","0" +"BC-0019","87.69999694824219","87.69999694824219","","2018-09-05T00:00:00Z","","0" +"NM-08846","47.86000061035156","47.86000061035156","","1971-04-20T00:00:00Z","","0" +"EB-253","52.79999923706055","52.79999923706055","","1998-02-19T00:00:00Z","","0" +"NM-19784","70.87999725341797","70.87999725341797","","1962-03-16T00:00:00Z","","0" +"NM-00791","35.380001068115234","35.380001068115234","","1957-01-03T00:00:00Z","","0" +"SA-0037","45.95000076293945","44.20000076293945","","2017-02-20T00:00:00Z","0001-01-01T13:00:00Z","1.75" +"NM-12439","15.350000381469727","15.350000381469727","","1938-03-01T00:00:00Z","","0" +"NM-00288","74.63999938964844","74.63999938964844","","2008-12-17T00:00:00Z","","0" +"NM-13495","65.13999938964844","65.13999938964844","","1978-10-12T00:00:00Z","","0" +"NM-28253","39.79999923706055","39.79999923706055","","1967-08-15T00:00:00Z","","0" +"NM-00068","53.810001373291016","53.810001373291016","","1972-08-02T00:00:00Z","","0" +"NM-12808","72.93000030517578","72.93000030517578","","1952-07-01T00:00:00Z","","0" +"TV-218","214.1999969482422","213.59999084472656","","2005-02-01T00:00:00Z","","0.6000000238418579" +"NM-03274","12.550000190734863","12.550000190734863","","1990-02-13T00:00:00Z","","0" +"NM-02209","90.81999969482422","90.81999969482422","","1949-07-20T00:00:00Z","","0" +"DE-0073","89.6500015258789","89.6500015258789","","2012-10-16T00:00:00Z","","0" +"NM-21531","7.349999904632568","7.349999904632568","","1976-02-17T00:00:00Z","","0" +"NM-23309","107.37999725341797","107.37999725341797","","1972-01-19T00:00:00Z","","0" +"NM-02617","75.22000122070312","75.22000122070312","","1992-02-05T00:00:00Z","","0" +"NM-02586","276.4100036621094","276.4100036621094","","1978-07-01T00:00:00Z","","0" +"NM-11730","113.0199966430664","113.0199966430664","","1949-01-28T00:00:00Z","","0" +"NM-28256","222.88999938964844","222.88999938964844","","1988-07-05T00:00:00Z","","0" +"AB-0161","485.8999938964844","485.8999938964844","","1998-10-16T00:00:00Z","","" +"SB-0884","199.17999267578125","199.17999267578125","","1956-09-12T00:00:00Z","","0" +"SB-0656","345.42999267578125","345.42999267578125","","2001-04-10T00:00:00Z","","0" +"NM-02790","106.33999633789062","106.33999633789062","","1961-01-09T00:00:00Z","","0" +"NM-02725","49.02000045776367","49.02000045776367","","2007-02-20T00:00:00Z","","0" +"NM-16337","137.35000610351562","137.35000610351562","","1977-01-06T00:00:00Z","","0" +"NM-05367","108.80999755859375","108.80999755859375","","1961-11-22T00:00:00Z","","0" +"WS-019","4.46999979019165","4.46999979019165","","2010-05-05T00:00:00Z","","0" +"NM-28254","145.67999267578125","145.67999267578125","","1993-07-05T00:00:00Z","","0" +"NM-14312","-10.529999732971191","-10.529999732971191","","1912-05-16T00:00:00Z","","0" +"NM-02795","185.27000427246094","185.27000427246094","","1968-01-04T00:00:00Z","","0" +"NM-28254","107.0999984741211","107.0999984741211","","2019-04-05T00:00:00Z","","0" +"NM-02710","39.880001068115234","39.880001068115234","","1978-04-01T00:00:00Z","","0" +"NM-11070","25.479999542236328","25.479999542236328","","1945-01-10T00:00:00Z","","0" +"NM-02349","14.800000190734863","14.800000190734863","","1962-03-15T00:00:00Z","","0" +"NM-03373","50.18000030517578","50.18000030517578","","1993-08-06T00:00:00Z","","0" +"NM-22421","14.649999618530273","14.649999618530273","","1951-08-16T00:00:00Z","","0" +"NM-16789","7.610000133514404","7.610000133514404","","1954-01-19T00:00:00Z","","0" +"NM-12197","31.84000015258789","31.84000015258789","","1957-03-08T00:00:00Z","","0" +"NM-00672","48.88999938964844","48.88999938964844","","1969-01-23T00:00:00Z","","0" +"SM-0130","32.43000030517578","32.43000030517578","","1965-01-27T00:00:00Z","","0" +"NM-25740","20","20","","1961-11-29T00:00:00Z","","0" +"NM-27667","30.3700008392334","30.3700008392334","","1965-01-15T00:00:00Z","","0" +"NM-03389","27.489999771118164","27.489999771118164","","1991-03-05T00:00:00Z","","0" +"NM-01008","200.64999389648438","200.64999389648438","R","2007-05-22T00:00:00Z","","0" +"BC-0195","384.57000732421875","384.57000732421875","","2014-12-02T00:00:00Z","","0" +"NM-05708","97.5199966430664","97.5199966430664","","1972-01-11T00:00:00Z","","0" +"NM-28250","83.93000030517578","83.93000030517578","","2004-01-26T00:00:00Z","","0" +"UC-0078","153.72000122070312","153.72000122070312","","1986-02-18T00:00:00Z","","0" +"NM-05425","142.6199951171875","142.6199951171875","","1955-04-11T00:00:00Z","","0" +"NM-28258","212.1999969482422","212.1999969482422","","1974-06-25T00:00:00Z","","0" +"NM-08730","41.400001525878906","41.400001525878906","","1984-02-06T00:00:00Z","","0" +"NM-28250","96.83000183105469","96.83000183105469","","1986-01-15T00:00:00Z","","0" +"NM-00644","29.899999618530273","29.899999618530273","","1966-01-01T00:00:00Z","","0" +"NM-01761","54.59000015258789","54.59000015258789","","1982-03-04T00:00:00Z","","0" +"SD-0115","","","D","1964-10-27T00:00:00Z","","0" +"NM-02728","119.5","119.5","","1963-09-30T00:00:00Z","","0" +"NM-08524","12.199999809265137","12.199999809265137","","1977-05-15T00:00:00Z","","0" +"QY-0508","61","61","","1953-09-18T00:00:00Z","","0" +"NM-01517","43.220001220703125","43.220001220703125","","1967-02-08T00:00:00Z","","0" +"NM-01971","6.699999809265137","6.699999809265137","","1987-05-15T00:00:00Z","","0" +"NM-13623","19.270000457763672","19.270000457763672","R","1949-03-10T00:00:00Z","","0" +"NM-00644","23.010000228881836","23.010000228881836","","1986-01-22T00:00:00Z","","0" +"NM-08647","27.309999465942383","27.309999465942383","","1936-10-17T00:00:00Z","","0" +"NM-11249","124.77999877929688","124.77999877929688","P","1961-03-22T00:00:00Z","","0" +"EB-151","274.0299987792969","271.8699951171875","","1993-08-30T00:00:00Z","","2.1600000858306885" +"NM-06268","13.699999809265137","13.699999809265137","","1982-11-15T00:00:00Z","","0" +"NM-02757","15.34000015258789","15.34000015258789","","1992-08-06T00:00:00Z","","0" +"NM-01939","","","O","2000-03-07T00:00:00Z","","0" +"NM-02393","68.44999694824219","68.44999694824219","","1951-07-18T00:00:00Z","","0" +"NM-28255","86.61000061035156","86.61000061035156","","2004-05-14T00:00:00Z","","0" +"NM-09176","55.099998474121094","55.099998474121094","","1957-01-04T00:00:00Z","","0" +"NM-04962","100.20999908447266","100.20999908447266","R","1955-07-21T00:00:00Z","","0" +"NM-02589","45.34000015258789","45.34000015258789","","2010-01-11T00:00:00Z","","0" +"DE-0292","82.83000183105469","82.83000183105469","","2018-05-24T00:00:00Z","","0" +"BC-0016","54.45000076293945","54.45000076293945","","2019-04-16T00:00:00Z","","0" +"MI-0109","25","25","","1950-12-31T00:00:00Z","","0" +"NM-07553","54.150001525878906","54.150001525878906","","1968-04-03T00:00:00Z","","0" +"NM-01491","129.08999633789062","129.08999633789062","","2012-03-13T00:00:00Z","","0" +"NM-02043","5.099999904632568","5.099999904632568","","1990-06-15T00:00:00Z","","0" +"SM-0068","182.44000244140625","181.02000427246094","","2007-02-28T00:00:00Z","","1.4199999570846558" +"NM-21290","","","D","2005-06-28T00:00:00Z","","0" +"NM-00069","13.350000381469727","13.350000381469727","","1978-01-25T00:00:00Z","","0" +"NM-08869","61.72999954223633","61.72999954223633","S","1955-11-18T00:00:00Z","","0" +"NM-05762","52.84000015258789","52.84000015258789","","1953-10-01T00:00:00Z","","0" +"NM-00766","39.93000030517578","39.93000030517578","","2008-10-02T00:00:00Z","","0" +"NM-03308","15.529999732971191","15.529999732971191","","1957-01-15T00:00:00Z","","0" +"NM-02349","15.199999809265137","15.199999809265137","","1970-02-15T00:00:00Z","","0" +"NM-22866","51.95000076293945","51.95000076293945","","1953-08-21T00:00:00Z","","0" +"EB-245","207.52999877929688","207.52999877929688","","2000-06-14T00:00:00Z","","0" +"NM-04975","66.47000122070312","66.47000122070312","","1956-09-14T00:00:00Z","","0" +"NM-01808","330.70001220703125","330.70001220703125","","2011-05-04T00:00:00Z","","0" +"NM-26220","42.70000076293945","42.70000076293945","","1959-09-25T00:00:00Z","","0" +"NM-00336","60.869998931884766","60.869998931884766","","1996-04-02T00:00:00Z","","0" +"NM-04437","52.689998626708984","52.689998626708984","P","1949-02-02T00:00:00Z","","0" +"NM-19781","29.6299991607666","29.6299991607666","P","1959-06-04T00:00:00Z","","0" +"NM-13118","11.529999732971191","11.529999732971191","","1972-10-16T00:00:00Z","","0" +"NM-22738","61.09000015258789","61.09000015258789","","1958-10-23T00:00:00Z","","0" +"AR-0214","94.02999877929688","91.7300033569336","AA","2024-01-15T00:00:00Z","0001-01-01T12:43:00Z","2.299999952316284" +"NM-07500","14.149999618530273","14.149999618530273","","1975-04-09T00:00:00Z","","0" +"NM-09795","10.720000267028809","10.720000267028809","","1961-07-28T00:00:00Z","","0" +"AB-0114","211.86000061035156","211.86000061035156","","1998-04-17T00:00:00Z","","" +"NM-02996","61.720001220703125","61.720001220703125","","2002-03-05T00:00:00Z","","0" +"NM-26512","75.48999786376953","75.48999786376953","","2002-03-25T00:00:00Z","","0" +"NM-01895","","","O","2003-05-20T00:00:00Z","","0" +"NM-03223","360.239990234375","360.239990234375","","1985-04-23T00:00:00Z","","0" +"NM-13887","5.849999904632568","5.849999904632568","","1958-08-12T00:00:00Z","","0" +"NM-03341","3.3499999046325684","3.3499999046325684","X","1997-06-17T00:00:00Z","","0" +"NM-01565","-260.95001220703125","-260.95001220703125","","1988-11-25T00:00:00Z","","0" +"NM-28021","510.739990234375","510.739990234375","S","2015-04-26T00:00:00Z","","0" +"NM-28256","102.98999786376953","102.98999786376953","","2007-11-26T00:00:00Z","","0" +"NM-00221","85.38999938964844","85.38999938964844","","1947-10-02T00:00:00Z","","0" +"NM-21622","8.170000076293945","8.170000076293945","","1996-01-09T00:00:00Z","","0" +"EB-416","203","203","Z","1990-11-30T00:00:00Z","","0" +"NM-00961","328.1600036621094","328.1600036621094","","1971-01-06T00:00:00Z","","0" +"NM-14074","-13.710000038146973","-13.710000038146973","","1913-12-04T00:00:00Z","","0" +"NM-11795","37.119998931884766","37.119998931884766","","1938-01-12T00:00:00Z","","0" +"TO-0118","257.79998779296875","257.79998779296875","","1950-09-19T00:00:00Z","","0" +"NM-19874","255.02000427246094","255.02000427246094","","1972-01-04T00:00:00Z","","0" +"NM-03213","172.39999389648438","172.39999389648438","","2010-01-20T00:00:00Z","","0" +"NM-21342","82.7699966430664","82.7699966430664","","1968-02-27T00:00:00Z","","0" +"NM-02209","108.47000122070312","108.47000122070312","","1965-11-01T00:00:00Z","","0" +"NM-28256","113.88999938964844","113.88999938964844","","2011-03-05T00:00:00Z","","0" +"NM-04146","11.399999618530273","11.399999618530273","","1955-01-20T00:00:00Z","","0" +"SB-0874","232.6199951171875","232","","2020-08-18T00:00:00Z","0001-01-01T12:45:00Z","0.6200000047683716" +"NM-21308","23.049999237060547","23.049999237060547","","1962-10-15T00:00:00Z","","0" +"NM-03337","11.670000076293945","11.670000076293945","","2001-09-25T00:00:00Z","","0" +"EB-304","14","13.170000076293945","","2002-02-14T00:00:00Z","","0.8299999833106995" +"NM-23293","90.19999694824219","90.19999694824219","","1946-09-03T00:00:00Z","","0" +"SM-0033","31.100000381469727","30.020000457763672","","2007-09-28T00:00:00Z","","1.0800000429153442" +"NM-05114","428.0799865722656","428.0799865722656","","1985-01-29T00:00:00Z","","0" +"SB-0299","120.69000244140625","120.69000244140625","","1994-04-30T00:00:00Z","","0" +"NM-02497","58.63999938964844","58.63999938964844","","1960-01-27T00:00:00Z","","0" +"NM-16831","5.440000057220459","5.440000057220459","","1943-09-27T00:00:00Z","","0" +"NM-09960","58.869998931884766","58.869998931884766","","1981-01-13T00:00:00Z","","0" +"NM-16327","134.67999267578125","134.67999267578125","","1962-01-15T00:00:00Z","","0" +"NM-27809","366.9100036621094","366.9100036621094","","2015-01-30T00:00:00Z","","0" +"NM-00213","185.7100067138672","185.7100067138672","","1980-10-01T00:00:00Z","","0" +"NM-04883","100.3499984741211","100.3499984741211","","1965-10-19T00:00:00Z","","0" +"EB-276","235","235","S","1987-02-28T00:00:00Z","","0" +"NM-10743","46.58000183105469","46.58000183105469","","1941-01-23T00:00:00Z","","0" +"NM-02282","400.8699951171875","400.8699951171875","","1966-02-01T00:00:00Z","","0" +"NM-21531","8.770000457763672","8.770000457763672","","1958-03-11T00:00:00Z","","0" +"SO-0250","12.4399995803833","10.949999809265137","","2016-08-03T00:00:00Z","","1.4900000095367432" +"NM-02407","28.440000534057617","28.440000534057617","","1940-03-16T00:00:00Z","","0" +"NM-01961","135.0800018310547","135.0800018310547","","1960-08-02T00:00:00Z","","0" +"NM-18785","62.220001220703125","62.220001220703125","","1963-01-22T00:00:00Z","","0" +"NM-03212","41.18000030517578","41.18000030517578","","1976-02-23T00:00:00Z","","0" +"NM-21678","356.7699890136719","356.7699890136719","","2005-09-28T00:00:00Z","","0" +"NM-05511","98.52999877929688","98.52999877929688","","1951-01-11T00:00:00Z","","0" +"NM-02283","22.299999237060547","22.299999237060547","","2004-02-17T00:00:00Z","","0" +"NM-12411","41.150001525878906","41.150001525878906","","1976-04-01T00:00:00Z","","0" +"NM-09818","-54.130001068115234","-54.130001068115234","","1907-01-24T00:00:00Z","","0" +"AB-0183","355.32000732421875","355.32000732421875","","2004-05-24T00:00:00Z","","" +"NM-17716","2.819999933242798","2.819999933242798","","1945-07-16T00:00:00Z","","0" +"NM-07591","34.31999969482422","34.31999969482422","","1966-03-07T00:00:00Z","","0" +"NM-11320","82.7699966430664","82.7699966430664","","1986-02-06T00:00:00Z","","0" +"NM-05793","37.5","37.5","","1931-09-13T00:00:00Z","","0" +"NM-15262","97.0199966430664","97.0199966430664","","1970-02-10T00:00:00Z","","0" +"NM-28174","119.69000244140625","119.69000244140625","","1976-01-28T00:00:00Z","","0" +"SM-0259","384.44000244140625","383.1700134277344","AA","2023-11-16T00:00:00Z","0001-01-01T11:30:00Z","1.2699999809265137" +"NM-28252","31","31","","2000-01-05T00:00:00Z","","0" +"NM-07664","12.470000267028809","12.470000267028809","","1963-04-08T00:00:00Z","","0" +"NM-03150","378.260009765625","378.260009765625","","1988-01-12T00:00:00Z","","0" +"NM-18905","65.51000213623047","65.51000213623047","","1974-08-15T00:00:00Z","","0" +"NM-01971","7.300000190734863","7.300000190734863","","1963-03-15T00:00:00Z","","0" +"NM-11322","4.170000076293945","4.170000076293945","","1958-10-21T00:00:00Z","","0" +"NM-02858","21.690000534057617","21.690000534057617","","1975-02-13T00:00:00Z","","0" +"NM-01863","16.170000076293945","16.170000076293945","","1998-01-27T00:00:00Z","","0" +"NM-04725","54","54","","1933-04-02T00:00:00Z","","0" +"SB-0299","125.83000183105469","125.83000183105469","","1993-09-25T00:00:00Z","","0" +"SO-0253","14.619999885559082","14.069999694824219","","2020-07-23T00:00:00Z","0001-01-01T12:34:00Z","0.550000011920929" +"NM-00433","87.9800033569336","87.9800033569336","","1992-01-03T00:00:00Z","","0" +"NM-00436","44.86000061035156","44.86000061035156","","1976-02-25T00:00:00Z","","0" +"NM-21234","3.5199999809265137","3.5199999809265137","Z","2006-08-09T00:00:00Z","","0" +"NM-19975","84.4000015258789","84.4000015258789","","1956-05-07T00:00:00Z","","0" +"SO-0165","10.829999923706055","8.90999984741211","","2021-02-17T00:00:00Z","0001-01-01T14:10:00Z","1.9199999570846558" +"NM-13920","-6.78000020980835","-6.78000020980835","","1911-10-02T00:00:00Z","","0" +"AB-0069","151.41000366210938","151.41000366210938","","2005-01-13T00:00:00Z","","" +"NM-03386","49.70000076293945","49.70000076293945","","2005-09-07T00:00:00Z","","0" +"NM-13122","10.789999961853027","10.789999961853027","","1957-01-29T00:00:00Z","","0" +"NM-13900","5.489999771118164","5.489999771118164","","1960-05-03T00:00:00Z","","0" +"NM-27556","240.02000427246094","240.02000427246094","A","2010-03-09T00:00:00Z","","0" +"NM-17434","28.700000762939453","28.700000762939453","","1944-05-11T00:00:00Z","","0" +"NM-25421","76.44999694824219","76.44999694824219","","1982-02-03T00:00:00Z","","0" +"SO-0212","28.3799991607666","27.139999389648438","","2020-10-02T00:00:00Z","","1.2400000095367432" +"NM-07122","240.60000610351562","240.60000610351562","","2002-01-11T00:00:00Z","","0" +"NM-28258","152.5500030517578","152.5500030517578","","2014-11-14T00:00:00Z","","0" +"NM-22015","26.770000457763672","26.770000457763672","R","1991-02-15T00:00:00Z","","0" +"NM-02979","28.329999923706055","28.329999923706055","","1970-01-06T00:00:00Z","","0" +"NM-03903","331.45001220703125","331.45001220703125","","1976-08-10T00:00:00Z","","0" +"NM-11318","15.979999542236328","15.979999542236328","","1981-01-21T00:00:00Z","","0" +"NM-02017","6.5","6.5","","1992-08-15T00:00:00Z","","0" +"DE-0030","107.80000305175781","107.1500015258789","","2021-05-18T00:00:00Z","0001-01-01T14:58:00Z","0.6499999761581421" +"NM-15597","7.840000152587891","7.840000152587891","","1988-12-20T00:00:00Z","","0" +"NM-16832","55.65999984741211","55.65999984741211","","1972-01-04T00:00:00Z","","0" +"NM-05623","76.9800033569336","76.9800033569336","","1940-09-06T00:00:00Z","","0" +"NM-20366","","","D","2006-02-21T00:00:00Z","","0" +"NM-11782","78.0999984741211","78.0999984741211","","1981-01-30T00:00:00Z","","0" +"NM-12597","59.63999938964844","59.63999938964844","R","1946-03-13T00:00:00Z","","0" +"NM-13012","32.380001068115234","32.380001068115234","","1938-04-02T00:00:00Z","","0" +"QY-0594","51.79999923706055","51.79999923706055","","1941-01-28T00:00:00Z","","0" +"AB-0074","18.15999984741211","18.15999984741211","","1998-12-16T00:00:00Z","","" +"NM-10906","35.540000915527344","35.540000915527344","","1953-07-22T00:00:00Z","","0" +"NM-02620","10.699999809265137","10.699999809265137","","1975-06-15T00:00:00Z","","0" +"NM-00185","13.199999809265137","13.199999809265137","","1987-11-15T00:00:00Z","","0" +"NM-10595","57.220001220703125","57.220001220703125","","1955-02-21T00:00:00Z","","0" +"NM-20667","16.15999984741211","16.15999984741211","","1958-09-10T00:00:00Z","","0" +"EB-481","657.5999755859375","657.5999755859375","P","2001-12-31T00:00:00Z","","0" +"BC-0086","301.05999755859375","301.05999755859375","","2015-08-31T00:00:00Z","","0" +"NM-26520","73.44999694824219","73.44999694824219","","1977-05-10T00:00:00Z","","0" +"NM-27852","21.5","21.5","","1966-11-01T00:00:00Z","","0" +"NM-13901","4.829999923706055","4.829999923706055","","1962-11-05T00:00:00Z","","0" +"NM-28256","230.69000244140625","230.69000244140625","","2018-04-05T00:00:00Z","","0" +"NM-27506","85.7300033569336","85.7300033569336","","1962-01-31T00:00:00Z","","0" +"NM-11435","95.93000030517578","95.93000030517578","","1966-01-13T00:00:00Z","","0" +"NM-17271","35.36000061035156","35.36000061035156","","1936-04-20T00:00:00Z","","0" +"AB-0212","155.97000122070312","155.97000122070312","","2002-04-18T00:00:00Z","","" +"NM-01831","324.9800109863281","324.9800109863281","","2000-01-11T00:00:00Z","","0" +"DE-0237","103.3499984741211","103.3499984741211","","2002-04-30T00:00:00Z","","0" +"NM-00208","68.0999984741211","68.0999984741211","","1954-07-07T00:00:00Z","","0" +"NM-28252","69.55000305175781","69.55000305175781","","1971-06-05T00:00:00Z","","0" +"NM-00253","23.15999984741211","23.15999984741211","","1990-08-21T00:00:00Z","","0" +"NM-16774","17.540000915527344","17.540000915527344","","1942-03-28T00:00:00Z","","0" +"NM-12547","48.47999954223633","48.47999954223633","","1971-02-26T00:00:00Z","","0" +"NM-13165","124.33999633789062","124.33999633789062","","1978-02-20T00:00:00Z","","0" +"SO-0184","12.359999656677246","10.4399995803833","","2021-09-19T00:00:00Z","0001-01-01T10:32:00Z","1.9199999570846558" +"NM-02741","171.2100067138672","171.2100067138672","","1984-02-10T00:00:00Z","","0" +"NM-02075","385.3800048828125","385.3800048828125","","2001-12-18T00:00:00Z","","0" +"NM-11670","41.81999969482422","41.81999969482422","","1979-06-06T00:00:00Z","","0" +"NM-23010","345.1600036621094","345.1600036621094","","1990-06-07T00:00:00Z","","0" +"NM-11902","24.09000015258789","24.09000015258789","","1989-01-18T00:00:00Z","","0" +"TO-0370","21.700000762939453","21.700000762939453","","1941-06-18T00:00:00Z","","0" +"NM-23005","5.829999923706055","5.829999923706055","Z","2009-08-11T00:00:00Z","","0" +"NM-01911","98.55000305175781","98.55000305175781","","1990-01-17T00:00:00Z","","0" +"NM-25130","490.3399963378906","490.3399963378906","","1979-01-08T00:00:00Z","","0" +"NM-05814","414.9100036621094","414.9100036621094","","1962-07-31T00:00:00Z","","0" +"NM-14269","131.6300048828125","131.6300048828125","","1976-05-18T00:00:00Z","","0" +"NM-02232","86.7699966430664","86.7699966430664","","1950-03-16T00:00:00Z","","0" +"NM-28256","85.9800033569336","85.9800033569336","","1972-12-15T00:00:00Z","","0" +"NM-03584","32.02000045776367","32.02000045776367","","1983-01-19T00:00:00Z","","0" +"NM-01947","4.300000190734863","4.300000190734863","","1969-10-15T00:00:00Z","","0" +"NM-28252","67.13999938964844","67.13999938964844","","1978-04-15T00:00:00Z","","0" +"NM-10322","51.720001220703125","51.720001220703125","","1971-02-16T00:00:00Z","","0" +"NM-00621","62.900001525878906","62.900001525878906","","1964-02-19T00:00:00Z","","0" +"TO-0100","31.299999237060547","31.299999237060547","","1946-09-04T00:00:00Z","","0" +"NM-19959","45.060001373291016","45.060001373291016","","1963-01-21T00:00:00Z","","0" +"NM-03943","81.87000274658203","81.87000274658203","","1957-12-20T00:00:00Z","","0" +"NM-04470","41.209999084472656","41.209999084472656","","1948-01-13T00:00:00Z","","0" +"NM-03281","79.05000305175781","79.05000305175781","","1976-02-24T00:00:00Z","","0" +"AB-0200","194.60000610351562","194.60000610351562","","2000-12-11T00:00:00Z","","" +"NM-03710","115.80999755859375","115.80999755859375","","1979-01-16T00:00:00Z","","0" +"UC-0109","111.88999938964844","111.88999938964844","","2012-08-01T00:00:00Z","","0" +"NM-14685","176.32000732421875","176.32000732421875","","1990-02-20T00:00:00Z","","0" +"NM-21382","429","429","","1989-08-01T00:00:00Z","","0" +"NM-10063","7.320000171661377","7.320000171661377","","1975-01-27T00:00:00Z","","0" +"NM-22648","173.89999389648438","173.89999389648438","","1966-01-04T00:00:00Z","","0" +"SO-0276","3.700000047683716","2.5","","2016-09-21T00:00:00Z","","1.2000000476837158" +"NM-13899","3.380000114440918","3.380000114440918","","1968-08-01T00:00:00Z","","0" +"NM-01796","7.099999904632568","7.099999904632568","","1956-12-15T00:00:00Z","","0" +"NM-06038","27.399999618530273","27.399999618530273","","2006-09-14T00:00:00Z","","0" +"NM-11462","180.5500030517578","180.5500030517578","","1964-01-13T00:00:00Z","","0" +"NM-03258","70.29000091552734","70.29000091552734","P","1953-08-17T00:00:00Z","","0" +"NM-06707","85.52999877929688","85.52999877929688","","1976-01-23T00:00:00Z","","0" +"BC-0002","302.30999755859375","302.30999755859375","","2019-07-25T00:00:00Z","","0" +"NM-04224","148.58999633789062","148.58999633789062","","1977-01-03T00:00:00Z","","0" +"NM-21515","94.44999694824219","94.44999694824219","","1966-08-23T00:00:00Z","","0" +"NM-12485","11.329999923706055","11.329999923706055","","1968-05-09T00:00:00Z","","0" +"NM-04436","119.55000305175781","119.55000305175781","","1981-01-05T00:00:00Z","","0" +"NM-08524","","","D","2016-02-02T00:00:00Z","","0" +"NM-13876","13.4399995803833","13.4399995803833","","1970-01-16T00:00:00Z","","0" +"NM-13405","52.099998474121094","52.099998474121094","","1972-01-15T00:00:00Z","","0" +"NM-03452","219.1300048828125","219.1300048828125","","1988-03-10T00:00:00Z","","0" +"NM-02352","7.699999809265137","7.699999809265137","","1985-12-15T00:00:00Z","","0" +"NM-08689","16.8700008392334","16.8700008392334","","1954-10-06T00:00:00Z","","0" +"NM-00676","93.69000244140625","93.69000244140625","P","2013-08-01T00:00:00Z","","0" +"NM-28252","45.2400016784668","45.2400016784668","","2015-03-25T00:00:00Z","","0" +"BC-0214","22.04199981689453","22.04199981689453","","2014-08-05T00:00:00Z","","0" +"NM-00893","119.62000274658203","119.62000274658203","","1985-01-29T00:00:00Z","","0" +"NM-28255","115.12999725341797","115.12999725341797","","1960-04-05T00:00:00Z","","0" +"NM-00253","23.440000534057617","23.440000534057617","","1977-11-01T00:00:00Z","","0" +"NM-07426","197.5","197.5","","1954-06-25T00:00:00Z","","0" +"NM-17716","3.609999895095825","3.609999895095825","","1945-08-10T00:00:00Z","","0" +"NM-28257","16.5","16.5","","1996-03-25T00:00:00Z","","0" +"NM-17295","32.0099983215332","32.0099983215332","","1934-10-17T00:00:00Z","","0" +"NM-02794","40.279998779296875","40.279998779296875","","1938-05-17T00:00:00Z","","0" +"NM-20160","81.23999786376953","81.23999786376953","","1965-02-15T00:00:00Z","","0" +"AB-0212","158.52000427246094","158.52000427246094","","2007-10-02T00:00:00Z","","" +"NM-00673","51.38999938964844","51.38999938964844","","1965-09-27T00:00:00Z","","0" +"NM-24463","55.34000015258789","55.34000015258789","","1987-11-09T00:00:00Z","","0" +"NM-21729","36.16999816894531","36.16999816894531","","1949-02-17T00:00:00Z","","0" +"NM-01841","281.8800048828125","281.8800048828125","","1998-07-31T00:00:00Z","","0" +"NM-02197","11.369999885559082","11.369999885559082","","1991-10-20T00:00:00Z","","0" +"NM-02283","16.399999618530273","16.399999618530273","R","1984-11-10T00:00:00Z","","0" +"NM-03687","124.27999877929688","124.27999877929688","","2003-07-11T00:00:00Z","","0" +"NM-04637","94.55000305175781","94.55000305175781","","1953-05-05T00:00:00Z","","0" +"NM-03845","5.849999904632568","5.849999904632568","","2014-06-12T00:00:00Z","","0" +"NM-21243","2.390000104904175","2.390000104904175","Z","2005-11-29T00:00:00Z","","0" +"NM-16566","17.889999389648438","17.889999389648438","","1948-11-20T00:00:00Z","","0" +"NM-03478","528.6599731445312","528.6599731445312","","1997-02-24T00:00:00Z","","0" +"NM-01337","126.97000122070312","126.97000122070312","","2011-03-09T00:00:00Z","","0" +"WL-0090","29.125","26.744998931884766","","1994-03-30T00:00:00Z","","2.380000114440918" +"NM-01089","126.31999969482422","126.31999969482422","","1972-02-15T00:00:00Z","","0" +"NM-09200","-21.600000381469727","-21.600000381469727","","1949-01-03T00:00:00Z","","0" +"NM-01920","385.5299987792969","385.5299987792969","","2001-02-22T00:00:00Z","","0" +"NM-03692","202.77999877929688","202.77999877929688","P","1962-04-05T00:00:00Z","","0" +"NM-07275","7.159999847412109","7.159999847412109","","1931-04-11T00:00:00Z","","0" +"NM-01791","308.010009765625","308.010009765625","","1990-05-18T00:00:00Z","","0" +"NM-23002","5.329999923706055","5.329999923706055","Z","2008-10-15T00:00:00Z","","0" +"NM-00075","32.43000030517578","32.43000030517578","","1955-11-08T00:00:00Z","","0" +"NM-08714","45.83000183105469","45.83000183105469","","1956-01-06T00:00:00Z","","0" +"NM-04682","49.599998474121094","49.599998474121094","","2003-01-10T00:00:00Z","","0" +"NM-10090","107.33000183105469","107.33000183105469","","1955-01-19T00:00:00Z","","0" +"NM-20528","122.86000061035156","122.86000061035156","","1986-04-25T00:00:00Z","","0" +"NM-00174","306.9700012207031","306.9700012207031","","1995-03-02T00:00:00Z","","0" +"AB-0039","337.010009765625","337.010009765625","","2015-09-18T00:00:00Z","","0" +"NM-14115","64.66999816894531","64.66999816894531","","1961-05-02T00:00:00Z","","0" +"NM-22648","172.82000732421875","172.82000732421875","","1955-11-15T00:00:00Z","","0" +"SB-0299","125.01000213623047","125.01000213623047","","2000-12-15T00:00:00Z","","0" +"NM-00353","79.73999786376953","79.73999786376953","","1993-01-04T00:00:00Z","","0" +"SO-0152","10.770000457763672","9.920000076293945","","2021-04-09T00:00:00Z","0001-01-01T11:38:00Z","0.8500000238418579" +"NM-01955","7.199999809265137","7.199999809265137","","1948-03-15T00:00:00Z","","0" +"NM-13145","13.850000381469727","13.850000381469727","","1959-04-08T00:00:00Z","","0" +"NM-05869","40.619998931884766","40.619998931884766","","1947-01-12T00:00:00Z","","0" +"NM-02924","91.68000030517578","91.68000030517578","","1961-04-05T00:00:00Z","","0" +"DA-0105","76","76","","1968-03-16T00:00:00Z","","0" +"NM-10143","31.030000686645508","31.030000686645508","","1945-03-31T00:00:00Z","","0" +"SO-0167","12.300000190734863","11.779999732971191","","2016-09-14T00:00:00Z","0001-01-01T15:21:00Z","0.5199999809265137" +"BC-0335","","190.8800048828125","","2023-04-12T00:00:00Z","","0" +"NM-07288","81.69999694824219","81.69999694824219","","2014-10-29T00:00:00Z","0001-01-01T07:50:00Z","0" +"EB-276","132.5399932861328","132.5399932861328","","1961-10-30T00:00:00Z","","0" +"NM-01888","9.5","9.5","","1990-01-22T00:00:00Z","","0" +"NM-16651","20.639999389648438","20.639999389648438","","1955-01-18T00:00:00Z","","0" +"NM-09016","40.720001220703125","40.720001220703125","","1952-01-08T00:00:00Z","","0" +"SB-0299","117.7699966430664","117.7699966430664","","1969-05-20T00:00:00Z","","0" +"NM-16689","50.11000061035156","50.11000061035156","","1985-01-13T00:00:00Z","","0" +"NM-04637","92.02999877929688","92.02999877929688","","1956-03-13T00:00:00Z","","0" +"NM-02831","53.369998931884766","53.369998931884766","","1968-12-01T00:00:00Z","","0" +"NM-28255","45.20000076293945","45.20000076293945","","1960-06-15T00:00:00Z","","0" +"NM-07881","12.199999809265137","12.199999809265137","","1935-08-12T00:00:00Z","","0" +"NM-21776","8.350000381469727","8.350000381469727","","1960-09-07T00:00:00Z","","0" +"NM-00652","27.1200008392334","27.1200008392334","","1971-03-04T00:00:00Z","","0" +"WL-0134","261.2799987792969","261.2799987792969","","1996-02-07T00:00:00Z","","0" +"NM-28253","49.70000076293945","49.70000076293945","","1974-05-25T00:00:00Z","","0" +"NM-02563","43.54999923706055","43.54999923706055","","1991-08-09T00:00:00Z","","0" +"NM-03667","71.41999816894531","71.41999816894531","","2004-03-10T00:00:00Z","","0" +"NM-22965","768","768","","1983-10-25T00:00:00Z","","0" +"NM-24925","26.850000381469727","26.850000381469727","","1972-06-02T00:00:00Z","","0" +"NM-27638","90.47000122070312","90.47000122070312","","1956-01-12T00:00:00Z","","0" +"NM-04434","42.400001525878906","42.400001525878906","","1982-01-26T00:00:00Z","","0" +"DA-0193","13","13","","1965-01-01T00:00:00Z","","0" +"NM-17716","3.0199999809265137","3.0199999809265137","","1947-05-09T00:00:00Z","","0" +"NM-02095","366.29998779296875","366.29998779296875","","2002-02-07T00:00:00Z","","0" +"NM-05729","23.530000686645508","23.530000686645508","","1933-10-08T00:00:00Z","","0" +"AB-0075","8.130000114440918","8.130000114440918","","2003-11-17T00:00:00Z","","" +"NM-02359","135.92999267578125","135.92999267578125","","1973-01-25T00:00:00Z","","0" +"ED-0022","109.30000305175781","109.30000305175781","","1950-01-01T00:00:00Z","","0" +"SA-0063","78.66999816894531","78.66999816894531","","1993-02-25T00:00:00Z","","0" +"NM-02614","508.6300048828125","508.6300048828125","","1997-08-11T00:00:00Z","","0" +"NM-11871","39.099998474121094","39.099998474121094","","1951-01-17T00:00:00Z","","0" +"NM-02004","7.699999809265137","7.699999809265137","","1986-09-15T00:00:00Z","","0" +"NM-13853","-13.710000038146973","-13.710000038146973","","1905-10-09T00:00:00Z","","0" +"NM-25711","-10.59000015258789","-10.59000015258789","","1985-08-28T00:00:00Z","","0" +"SA-0012","99.38999938964844","98.38999938964844","","2008-09-19T00:00:00Z","","1" +"NM-03435","79.94999694824219","79.94999694824219","","1986-09-04T00:00:00Z","","0" +"NM-28258","122.19999694824219","122.19999694824219","","1985-12-05T00:00:00Z","","0" +"NM-02831","69.36000061035156","69.36000061035156","","1974-08-01T00:00:00Z","","0" +"NM-02222","89.8499984741211","89.8499984741211","","1968-01-24T00:00:00Z","","0" +"NM-00229","69.4000015258789","69.4000015258789","Z","2011-10-24T00:00:00Z","","0" +"NM-02512","11.789999961853027","11.789999961853027","","2002-05-21T00:00:00Z","","0" +"NM-07685","27.520000457763672","27.520000457763672","","1942-10-23T00:00:00Z","","0" +"NM-00638","37.4900016784668","37.4900016784668","","2013-12-11T00:00:00Z","","0" +"EB-483","330.79998779296875","330.79998779296875","P","2001-05-31T00:00:00Z","","0" +"NM-00077","14.430000305175781","14.430000305175781","P","1992-11-20T00:00:00Z","","0" +"NM-17431","39.66999816894531","39.66999816894531","","1956-01-24T00:00:00Z","","0" +"NM-02396","5.800000190734863","5.800000190734863","","1950-04-15T00:00:00Z","","0" +"NM-14155","-5.619999885559082","-5.619999885559082","","1907-03-11T00:00:00Z","","0" +"SB-0299","134","134","","1999-06-30T00:00:00Z","","0" +"NM-22750","507.3399963378906","507.3399963378906","P","1957-03-25T00:00:00Z","","0" +"NM-20011","41.36000061035156","41.36000061035156","","1944-02-23T00:00:00Z","","0" +"NM-02005","9.390000343322754","9.390000343322754","","2011-02-10T00:00:00Z","","0" +"NM-03329","17.65999984741211","17.65999984741211","","1988-10-27T00:00:00Z","","0" +"NM-13535","0","0","","1959-05-27T00:00:00Z","","0" +"NM-10331","586.489990234375","586.489990234375","","1961-08-01T00:00:00Z","","0" +"TO-0327","99.9000015258789","99.9000015258789","","1950-07-26T00:00:00Z","","0" +"DE-0236","107.56999969482422","107.56999969482422","","1998-08-11T00:00:00Z","","0" +"NM-06268","13.899999618530273","13.899999618530273","","1975-04-15T00:00:00Z","","0" +"NM-22466","100.19999694824219","100.19999694824219","R","1990-02-05T00:00:00Z","","0" +"NM-21268","5.940000057220459","5.940000057220459","Z","2008-04-15T00:00:00Z","","0" +"NM-02794","65.30000305175781","65.30000305175781","","1953-11-05T00:00:00Z","","0" +"NM-17716","8.539999961853027","8.539999961853027","","1940-10-11T00:00:00Z","","0" +"EB-300","185.75999450683594","185.75999450683594","","2004-05-17T00:00:00Z","","0" +"NM-26217","43.11000061035156","43.11000061035156","","1986-01-30T00:00:00Z","","0" +"NM-13276","14.109999656677246","14.109999656677246","","1945-01-17T00:00:00Z","","0" +"SB-0320","29.200000762939453","29.200000762939453","","1948-03-02T00:00:00Z","","0" +"NM-27202","137.5800018310547","137.5800018310547","","2009-08-26T00:00:00Z","","0" +"NM-00734","58.470001220703125","58.470001220703125","Z","2007-08-27T00:00:00Z","","0" +"NM-07225","196.16000366210938","196.16000366210938","","1982-08-01T00:00:00Z","","0" +"EB-222","134.55999755859375","132.05999755859375","","2011-03-09T00:00:00Z","","2.5" +"NM-02004","6.199999809265137","6.199999809265137","","1976-11-15T00:00:00Z","","0" +"NM-11449","172.99000549316406","172.99000549316406","","1976-04-07T00:00:00Z","","0" +"NM-03649","33.4900016784668","33.4900016784668","","2008-06-26T00:00:00Z","","0" +"NM-08940","4.599999904632568","4.599999904632568","","1956-05-29T00:00:00Z","","0" +"NM-13660","-44.88999938964844","-44.88999938964844","","1909-12-09T00:00:00Z","","0" +"NM-10331","588.6099853515625","588.6099853515625","","1965-12-01T00:00:00Z","","0" +"NM-00794","90.0999984741211","90.0999984741211","","2013-08-01T00:00:00Z","","0" +"NM-03385","41.2400016784668","41.2400016784668","","1991-12-02T00:00:00Z","","0" +"NM-02620","9.699999809265137","9.699999809265137","","2002-06-15T00:00:00Z","","0" +"NM-16245","183.8000030517578","183.8000030517578","","1991-02-25T00:00:00Z","","0" +"NM-02547","63.529998779296875","63.529998779296875","","1963-08-12T00:00:00Z","","0" +"NM-00282","45.63999938964844","45.63999938964844","","2001-03-09T00:00:00Z","","0" +"NM-03329","23.139999389648438","23.139999389648438","","1995-04-04T00:00:00Z","","0" +"NM-02702","76.7699966430664","76.7699966430664","","1973-06-01T00:00:00Z","","0" +"SB-0299","134.74000549316406","134.74000549316406","","2015-03-15T00:00:00Z","","0" +"NM-28253","37.7400016784668","37.7400016784668","","1961-06-05T00:00:00Z","","0" +"NM-13594","21.350000381469727","21.350000381469727","","1960-10-01T00:00:00Z","","0" +"NM-02207","13","13","","1984-03-15T00:00:00Z","","0" +"NM-28211","","","D","2013-06-12T00:00:00Z","","0" +"EB-484","499.70001220703125","499.1000061035156","P","1992-09-30T00:00:00Z","","0.6000000238418579" +"SB-0579","414","414","","1972-05-04T00:00:00Z","","0" +"NM-10349","90.18000030517578","90.18000030517578","","1971-01-25T00:00:00Z","","0" +"NM-14002","-18.329999923706055","-18.329999923706055","","1908-03-26T00:00:00Z","","0" +"NM-02101","5.099999904632568","5.099999904632568","","1949-06-15T00:00:00Z","","0" +"NM-14271","152.60000610351562","152.60000610351562","S","1958-07-16T00:00:00Z","","0" +"NM-13594","18.799999237060547","18.799999237060547","","1963-12-16T00:00:00Z","","0" +"NM-12607","49.91999816894531","49.91999816894531","","1937-05-27T00:00:00Z","","0" +"NM-11335","188.39999389648438","188.39999389648438","","1972-01-11T00:00:00Z","","0" +"NM-17093","30.489999771118164","30.489999771118164","","1951-01-13T00:00:00Z","","0" +"NM-01291","93.54000091552734","93.54000091552734","","2009-03-25T00:00:00Z","","0" +"NM-00343","72.26000213623047","72.26000213623047","","1954-05-05T00:00:00Z","","0" +"NM-23683","1183.9599609375","1183.9599609375","","2014-03-21T00:00:00Z","","0" +"NM-22929","54.06999969482422","54.06999969482422","","1947-10-02T00:00:00Z","","0" +"NM-19955","22.149999618530273","22.149999618530273","","1952-09-25T00:00:00Z","","0" +"SM-0012","265.5899963378906","263.94000244140625","","2006-04-05T00:00:00Z","","1.649999976158142" +"BW-0689","256.3999938964844","256.3999938964844","","1955-02-08T00:00:00Z","","0" +"NM-20451","196.1999969482422","196.1999969482422","","2011-07-25T00:00:00Z","","0" +"NM-27534","123.13999938964844","123.13999938964844","","1966-03-17T00:00:00Z","","0" +"EB-389","109.16999816894531","107.18999481201172","","2002-06-01T00:00:00Z","","1.9800000190734863" +"NM-08216","31.729999542236328","31.729999542236328","P","1981-01-23T00:00:00Z","","0" +"NM-02309","177.77999877929688","177.77999877929688","","1979-03-06T00:00:00Z","","0" +"NM-14051","-19.479999542236328","-19.479999542236328","","1909-12-03T00:00:00Z","","0" +"NM-02797","5.349999904632568","5.349999904632568","","1958-08-13T00:00:00Z","","0" +"NM-28256","211.2899932861328","211.2899932861328","","2014-05-27T00:00:00Z","","0" +"NM-27239","264.25","264.25","","1987-10-20T00:00:00Z","","0" +"NM-02017","8.399999618530273","8.399999618530273","","1972-01-15T00:00:00Z","","0" +"NM-03421","43.25","43.25","","1996-05-30T00:00:00Z","","0" +"NM-01887","61.08000183105469","61.08000183105469","","2006-03-14T00:00:00Z","","0" +"EB-650","92.41999816894531","92.41999816894531","","2012-01-11T00:00:00Z","","0" +"AB-0068","155.36000061035156","155.36000061035156","","2006-03-09T00:00:00Z","","" +"NM-20498","59.349998474121094","59.349998474121094","","1949-02-14T00:00:00Z","","0" +"NM-01773","308.7300109863281","308.7300109863281","","2003-01-13T00:00:00Z","","0" +"NM-28253","44.95000076293945","44.95000076293945","","1976-03-25T00:00:00Z","","0" +"NM-13389","-4.46999979019165","-4.46999979019165","","1908-06-24T00:00:00Z","","0" +"NM-03102","294.760009765625","294.760009765625","","1994-01-06T00:00:00Z","","0" +"NM-01872","8.800000190734863","8.800000190734863","","1970-05-15T00:00:00Z","","0" +"NM-25468","68","68","","1979-07-25T00:00:00Z","","0" +"AB-0145","1062.1700439453125","1062.1700439453125","","2007-07-12T00:00:00Z","","0" +"NM-18098","35.54999923706055","35.54999923706055","","1982-03-31T00:00:00Z","","0" +"NM-28253","47.61000061035156","47.61000061035156","","1974-08-15T00:00:00Z","","0" +"NM-28009","498.6099853515625","498.6099853515625","S","2015-06-01T00:00:00Z","","0" +"NM-19431","74.93000030517578","74.93000030517578","","1965-02-04T00:00:00Z","","0" +"NM-10125","13.710000038146973","13.710000038146973","","1950-01-10T00:00:00Z","","0" +"NM-20042","49.13999938964844","49.13999938964844","P","1956-05-21T00:00:00Z","","0" +"DE-0060","192.1999969482422","189.489990234375","","1991-11-15T00:00:00Z","","2.7100000381469727" +"NM-19944","23.270000457763672","23.270000457763672","P","1942-03-26T00:00:00Z","","0" +"NM-00603","49.15999984741211","49.15999984741211","","1953-01-14T00:00:00Z","","0" +"NM-26506","35.11000061035156","35.11000061035156","","1987-07-28T00:00:00Z","","0" +"TB-0203","100.91999816894531","100.02999877929688","","2020-09-08T00:00:00Z","0001-01-01T11:20:00Z","0.8899999856948853" +"NM-11550","-16.170000076293945","-16.170000076293945","","1909-03-26T00:00:00Z","","0" +"NM-03063","92.79000091552734","92.79000091552734","","1990-02-21T00:00:00Z","","0" +"NM-03444","52.36000061035156","52.36000061035156","Z","1995-09-05T00:00:00Z","","0" +"DE-0108","39.900001525878906","39.900001525878906","","2011-01-10T00:00:00Z","","0" +"QY-0193","155","155","","1953-06-23T00:00:00Z","","0" +"NM-28257","13.5","13.5","","1997-03-25T00:00:00Z","","0" +"NM-20703","16.030000686645508","16.030000686645508","","1976-11-03T00:00:00Z","","0" +"SB-0299","118.5999984741211","118.5999984741211","","1989-12-15T00:00:00Z","","0" +"NM-17722","157.36000061035156","157.36000061035156","","1974-07-17T00:00:00Z","","0" +"NM-05575","89.1500015258789","89.1500015258789","","1954-05-21T00:00:00Z","","0" +"NM-16128","64.06999969482422","64.06999969482422","","1964-10-28T00:00:00Z","","0" +"NM-01791","307.760009765625","307.760009765625","","1988-03-21T00:00:00Z","","0" +"NM-28254","106.69999694824219","106.69999694824219","","1976-07-25T00:00:00Z","","0" +"NM-11388","40.060001373291016","40.060001373291016","","1947-01-15T00:00:00Z","","0" +"NM-16627","51.880001068115234","51.880001068115234","","1977-01-06T00:00:00Z","","0" +"NM-21558","6.119999885559082","6.119999885559082","Z","2007-12-05T00:00:00Z","","0" +"EB-152","245.52999877929688","243.61000061035156","","1993-08-30T00:00:00Z","","1.9199999570846558" +"NM-02831","67.80999755859375","67.80999755859375","","1983-07-25T00:00:00Z","","0" +"EB-209","65.4800033569336","64.2300033569336","","1979-11-14T00:00:00Z","","1.25" +"NM-13273","14","14","","1963-11-18T00:00:00Z","","0" +"NM-23019","93.72000122070312","93.72000122070312","","1988-08-23T00:00:00Z","","0" +"NM-02197","10.59000015258789","10.59000015258789","","1995-10-04T00:00:00Z","","0" +"NM-10772","251.67999267578125","251.67999267578125","","1981-05-14T00:00:00Z","","0" +"NM-13313","-77.2300033569336","-77.2300033569336","","1910-01-04T00:00:00Z","","0" +"QY-0717","74.80000305175781","74.80000305175781","P","1955-08-22T00:00:00Z","","0" +"NM-20389","84.29000091552734","84.29000091552734","","1947-09-17T00:00:00Z","","0" +"NM-02950","125.43000030517578","125.43000030517578","","1970-02-12T00:00:00Z","","0" +"NM-01948","5.5","5.5","","1985-05-15T00:00:00Z","","0" +"NM-01947","5.699999809265137","5.699999809265137","","2003-01-15T00:00:00Z","","0" +"NM-19965","32.5099983215332","32.5099983215332","R","1950-02-08T00:00:00Z","","0" +"DE-0097","92.05000305175781","92.05000305175781","","2006-12-11T00:00:00Z","","0" +"NM-05516","12.199999809265137","12.199999809265137","","1983-08-15T00:00:00Z","","0" +"NM-10095","95.55000305175781","95.55000305175781","","1986-02-05T00:00:00Z","","0" +"NM-11875","50.619998931884766","50.619998931884766","","1961-02-06T00:00:00Z","","0" +"NM-05780","58.79999923706055","58.79999923706055","","1947-01-12T00:00:00Z","","0" +"NM-01892","13.550000190734863","13.550000190734863","","2004-12-29T00:00:00Z","","0" +"NM-01035","45.20000076293945","45.20000076293945","","1963-01-21T00:00:00Z","","0" +"NM-09478","92","92","","1954-08-25T00:00:00Z","","0" +"NM-03400","13.020000457763672","13.020000457763672","","2001-12-20T00:00:00Z","","0" +"NM-00843","280.6300048828125","280.6300048828125","","2015-01-27T00:00:00Z","","0" +"NM-03014","91.97000122070312","91.97000122070312","","2005-02-16T00:00:00Z","","0" +"NM-12718","35.59000015258789","35.59000015258789","","1938-04-19T00:00:00Z","","0" +"NM-01712","154.27000427246094","154.27000427246094","","1994-03-09T00:00:00Z","","0" +"NM-28257","67.80000305175781","67.80000305175781","","1970-04-25T00:00:00Z","","0" +"NM-21461","7.46999979019165","7.46999979019165","","2016-07-20T00:00:00Z","","0" +"NM-01971","8.899999618530273","8.899999618530273","","1965-02-15T00:00:00Z","","0" +"NM-28019","480.2900085449219","480.2900085449219","","2015-04-18T00:00:00Z","","0" +"NM-28258","151.35000610351562","151.35000610351562","","1993-04-25T00:00:00Z","","0" +"NM-16979","54.0099983215332","54.0099983215332","","1950-11-22T00:00:00Z","","0" +"NM-12158","-27.719999313354492","-27.719999313354492","","1926-10-15T00:00:00Z","","0" +"NM-22466","152","152","T","1984-10-17T00:00:00Z","","0" +"NM-18121","42.869998931884766","42.869998931884766","","1966-01-01T00:00:00Z","","0" +"BC-0183","454.0799865722656","454.0799865722656","","2015-06-05T00:00:00Z","","0" +"EB-338","185.3699951171875","185.3699951171875","","2007-06-14T00:00:00Z","","0" +"DE-0119","34.90999984741211","34.90999984741211","","2010-07-26T00:00:00Z","","0" +"NM-03373","51.7400016784668","51.7400016784668","","1991-06-26T00:00:00Z","","0" +"AB-0143","305.989990234375","305.989990234375","","1985-11-01T00:00:00Z","","0" +"NM-02996","70.93000030517578","70.93000030517578","A","2010-03-04T00:00:00Z","","0" +"AB-0069","151.32000732421875","151.32000732421875","","2003-12-01T00:00:00Z","","" +"NM-01972","62.61000061035156","62.61000061035156","","1948-09-25T00:00:00Z","","0" +"SM-0040","322.7799987792969","322.0299987792969","P","2008-06-18T00:00:00Z","","0.75" +"SB-0060","144.8000030517578","144.8000030517578","","1993-02-17T00:00:00Z","","0" +"NM-00185","14.399999618530273","14.399999618530273","","1985-01-15T00:00:00Z","","0" +"NM-08647","23.690000534057617","23.690000534057617","","1944-11-27T00:00:00Z","","0" +"SB-0299","100.77999877929688","100.77999877929688","","1967-02-15T00:00:00Z","","0" +"NM-02772","7.429999828338623","7.429999828338623","","1962-01-09T00:00:00Z","","0" +"NM-01295","100.44999694824219","100.44999694824219","","1991-05-30T00:00:00Z","","0" +"NM-03487","112.13999938964844","112.13999938964844","","1973-03-15T00:00:00Z","","0" +"NM-19582","244.2899932861328","244.2899932861328","","1987-03-03T00:00:00Z","","0" +"NM-21244","351.4800109863281","351.4800109863281","","1992-10-13T00:00:00Z","","0" +"NM-02917","84.91999816894531","84.91999816894531","","1956-09-13T00:00:00Z","","0" +"NM-07615","159.6199951171875","159.6199951171875","","1968-02-07T00:00:00Z","","0" +"NM-02726","57.88999938964844","57.88999938964844","","1974-01-14T00:00:00Z","","0" +"NM-03602","12.210000038146973","12.210000038146973","","1992-02-11T00:00:00Z","","0" +"NM-01986","6.400000095367432","6.400000095367432","","1977-07-15T00:00:00Z","","0" +"NM-11263","41.779998779296875","41.779998779296875","","1930-10-31T00:00:00Z","","0" +"NM-14235","-18.329999923706055","-18.329999923706055","","1907-12-05T00:00:00Z","","0" +"NM-02560","119.68000030517578","119.68000030517578","","1980-06-01T00:00:00Z","","0" +"NM-02702","51.709999084472656","51.709999084472656","","1975-09-01T00:00:00Z","","0" +"SB-0511","747.9199829101562","747.9199829101562","","1986-07-19T00:00:00Z","","0" +"NM-02669","45.029998779296875","45.029998779296875","","1967-01-01T00:00:00Z","","0" +"NM-00185","12.199999809265137","12.199999809265137","","2001-07-15T00:00:00Z","","0" +"NM-24997","463","463","","1980-02-26T00:00:00Z","","0" +"NM-03411","308.3999938964844","308.3999938964844","","2001-10-11T00:00:00Z","","0" +"NM-27432","34.33000183105469","34.33000183105469","","1935-05-17T00:00:00Z","","0" +"NM-01948","8.199999809265137","8.199999809265137","","2003-04-15T00:00:00Z","","0" +"NM-11815","122.52999877929688","122.52999877929688","","1955-10-14T00:00:00Z","","0" +"NM-01277","151.7899932861328","151.7899932861328","","1960-02-09T00:00:00Z","","0" +"NM-03333","10.25","10.25","","1994-04-07T00:00:00Z","","0" +"NM-03285","78.4800033569336","78.4800033569336","","2004-09-14T00:00:00Z","","0" +"NM-20680","2.9200000762939453","2.9200000762939453","","2007-07-18T00:00:00Z","","0" +"NM-02256","5.400000095367432","5.400000095367432","","1999-02-19T00:00:00Z","","0" +"NM-05490","74.87000274658203","74.87000274658203","","1939-09-09T00:00:00Z","","0" +"NM-08937","-33.34000015258789","-33.34000015258789","","1908-03-25T00:00:00Z","","0" +"NM-03349","33.529998779296875","33.529998779296875","","2001-03-13T00:00:00Z","","0" +"DE-0318","42.099998474121094","42.099998474121094","","2007-08-09T00:00:00Z","","0" +"NM-02207","16.700000762939453","16.700000762939453","","1978-07-15T00:00:00Z","","0" +"DE-0270","84.68000030517578","84.68000030517578","","2019-12-12T00:00:00Z","","0" +"NM-03395","16.469999313354492","16.469999313354492","","1993-06-16T00:00:00Z","","0" +"NM-02702","6.400000095367432","6.400000095367432","","1969-12-01T00:00:00Z","","0" +"NM-02520","6.599999904632568","6.599999904632568","","1981-01-15T00:00:00Z","","0" +"NM-20667","18.700000762939453","18.700000762939453","","1956-08-06T00:00:00Z","","0" +"NM-01985","5.400000095367432","5.400000095367432","","1946-04-15T00:00:00Z","","0" +"NM-28252","41.77000045776367","41.77000045776367","","1963-01-05T00:00:00Z","","0" +"NM-11035","31.559999465942383","31.559999465942383","","1946-01-30T00:00:00Z","","0" +"NM-23550","150","150","","1990-01-16T00:00:00Z","","0" +"DE-0095","92.62999725341797","92.62999725341797","","1999-06-04T00:00:00Z","","0" +"NM-14802","105.93000030517578","105.93000030517578","","1975-07-25T00:00:00Z","","0" +"NM-03653","34.599998474121094","34.599998474121094","","2002-11-19T00:00:00Z","","0" +"NM-00627","64.16999816894531","64.16999816894531","","1981-01-06T00:00:00Z","","0" +"NM-04984","389.25","389.25","","1999-01-22T00:00:00Z","","0" +"SB-0288","104.0999984741211","104.0999984741211","","1962-10-15T00:00:00Z","","0" +"NM-17716","0.949999988079071","0.949999988079071","","1944-02-26T00:00:00Z","","0" +"EB-295","493.3599853515625","493.3599853515625","","2007-12-06T00:00:00Z","","0" +"AR-0209","7.110000133514404","4.75","AA","2024-01-15T00:00:00Z","0001-01-01T13:40:00Z","2.359999895095825" +"NM-28255","15.449999809265137","15.449999809265137","","1954-11-05T00:00:00Z","","0" +"NM-11928","0.38999998569488525","0.38999998569488525","","1967-01-12T00:00:00Z","","0" +"NM-21374","229.75999450683594","229.75999450683594","","1985-07-01T00:00:00Z","","0" +"NM-07542","63.459999084472656","63.459999084472656","","1976-12-14T00:00:00Z","","0" +"NM-17674","27.079999923706055","27.079999923706055","","1950-01-10T00:00:00Z","","0" +"NM-28257","63.45000076293945","63.45000076293945","","2018-07-16T00:00:00Z","","0" +"NM-19573","308.30999755859375","308.30999755859375","","1977-02-10T00:00:00Z","","0" +"AR-0071","8.520000457763672","6.820000171661377","","2017-06-02T00:00:00Z","0001-01-01T09:20:00Z","1.7000000476837158" +"NM-02287","4.119999885559082","4.119999885559082","","1997-07-08T00:00:00Z","","0" +"NM-21121","9.170000076293945","9.170000076293945","","1995-03-29T00:00:00Z","","0" +"NM-01565","-317.04998779296875","-317.04998779296875","E","1982-07-15T00:00:00Z","","0" +"NM-00922","41.529998779296875","41.529998779296875","R","2015-01-29T00:00:00Z","","0" +"NM-07225","196.1699981689453","196.1699981689453","","1978-11-01T00:00:00Z","","0" +"TV-103","652","652","","2007-04-04T00:00:00Z","","0" +"NM-17048","14.529999732971191","14.529999732971191","","1944-12-02T00:00:00Z","","0" +"NM-01886","46.66999816894531","46.66999816894531","","2001-04-23T00:00:00Z","","0" +"NM-12439","15.319999694824219","15.319999694824219","","1938-06-15T00:00:00Z","","0" +"AB-0074","18.6299991607666","18.6299991607666","","2001-06-14T00:00:00Z","","" +"NM-02163","17.229999542236328","17.229999542236328","","2011-11-07T00:00:00Z","","0" +"NM-17618","14","14","","1936-11-22T00:00:00Z","","0" +"AB-0142","715.469970703125","715.469970703125","","2006-10-11T00:00:00Z","","" +"NM-06348","37.720001220703125","37.720001220703125","","1960-01-12T00:00:00Z","","0" +"NM-00498","66","66","","1977-09-01T00:00:00Z","","0" +"NM-05743","194.22999572753906","194.22999572753906","","1987-10-08T00:00:00Z","","0" +"NM-11672","185.9499969482422","185.9499969482422","","1962-10-03T00:00:00Z","","0" +"NM-02017","7","7","","1988-12-15T00:00:00Z","","0" +"MI-0161","50","50","Z","1950-01-01T00:00:00Z","","0" +"NM-03720","58.209999084472656","58.209999084472656","","1949-09-03T00:00:00Z","","0" +"NM-08842","40.77000045776367","40.77000045776367","","1960-06-03T00:00:00Z","","0" +"DE-0191","50.720001220703125","50.720001220703125","","2005-04-11T00:00:00Z","","0" +"EB-483","151","151","P","1988-04-30T00:00:00Z","","0" +"NM-03146","350.94000244140625","350.94000244140625","","1991-01-04T00:00:00Z","","0" +"NM-24610","158.4499969482422","158.4499969482422","","1975-07-24T00:00:00Z","","0" +"SO-0208","28.450000762939453","27.75","","2021-09-17T00:00:00Z","0001-01-01T14:45:00Z","0.699999988079071" +"NM-02194","173.55999755859375","173.55999755859375","","2001-01-24T00:00:00Z","","0" +"NM-21760","65.8499984741211","65.8499984741211","","1979-01-25T00:00:00Z","","0" +"NM-01137","211.25999450683594","211.25999450683594","","1977-03-01T00:00:00Z","","0" +"NM-07616","46.06999969482422","46.06999969482422","","1967-10-19T00:00:00Z","","0" +"NM-00479","103","103","","1966-02-15T00:00:00Z","","0" +"NM-10940","-24.100000381469727","-24.100000381469727","","1911-02-14T00:00:00Z","","0" +"QY-0369","43.400001525878906","43.400001525878906","","1955-06-16T00:00:00Z","","0" +"NM-26021","","","O","1986-05-28T00:00:00Z","","0" +"NM-01926","6.699999809265137","6.699999809265137","","1962-05-15T00:00:00Z","","0" +"NM-01985","13.199999809265137","13.199999809265137","","1957-12-15T00:00:00Z","","0" +"NM-03528","175.32000732421875","175.32000732421875","","1988-01-21T00:00:00Z","","0" +"NM-01902","158.4499969482422","158.4499969482422","","2003-01-30T00:00:00Z","","0" +"NM-00257","95","95","","2003-09-23T00:00:00Z","","0" +"NM-08779","28.729999542236328","28.729999542236328","","1971-02-11T00:00:00Z","","0" +"NM-01295","101.3499984741211","101.3499984741211","","1949-04-12T00:00:00Z","","0" +"NM-28252","63.220001220703125","63.220001220703125","","1975-05-15T00:00:00Z","","0" +"NM-03331","11.199999809265137","11.199999809265137","","2010-08-31T00:00:00Z","","0" +"NM-18041","55.75","55.75","","2004-07-20T00:00:00Z","","0" +"NM-00514","230.66000366210938","230.66000366210938","","1976-04-01T00:00:00Z","","0" +"NM-23396","34.970001220703125","34.970001220703125","","1959-02-26T00:00:00Z","","0" +"NM-00804","115.08000183105469","115.08000183105469","","2014-09-15T00:00:00Z","","0" +"NM-11500","117.12000274658203","117.12000274658203","","1977-04-27T00:00:00Z","","0" +"NM-15026","20.09000015258789","20.09000015258789","","1967-01-18T00:00:00Z","","0" +"NM-01814","191.89999389648438","191.89999389648438","","1990-01-16T00:00:00Z","","0" +"NM-13928","-65.68000030517578","-65.68000030517578","","1916-01-06T00:00:00Z","","0" +"NM-13118","10.979999542236328","10.979999542236328","","1973-12-20T00:00:00Z","","0" +"NM-02285","5.480000019073486","5.480000019073486","","2007-06-14T00:00:00Z","","0" +"NM-13425","380.4800109863281","380.4800109863281","","1979-03-01T00:00:00Z","","0" +"NM-28259","94.81999969482422","94.81999969482422","","1978-02-15T00:00:00Z","","0" +"WL-0091","52.45833206176758","49.688331604003906","","1998-04-09T00:00:00Z","","2.7699999809265137" +"NM-03986","215.4600067138672","215.4600067138672","","1950-03-22T00:00:00Z","","0" +"NM-12339","10.350000381469727","10.350000381469727","","1937-05-15T00:00:00Z","","0" +"EB-245","218.38999938964844","218.38999938964844","","2005-02-15T00:00:00Z","","0" +"NM-27652","108.37000274658203","108.37000274658203","","1972-01-26T00:00:00Z","","0" +"NM-06145","57.400001525878906","57.400001525878906","","1952-01-30T00:00:00Z","","0" +"NM-27735","52.2400016784668","52.2400016784668","","1961-09-13T00:00:00Z","","0" +"NM-07031","75.56999969482422","75.56999969482422","","2004-07-07T00:00:00Z","","0" +"NM-24935","12.300000190734863","12.300000190734863","","1979-12-31T00:00:00Z","","0" +"NM-21571","151.55999755859375","151.55999755859375","P","1993-03-11T00:00:00Z","","0" +"NM-02501","60.459999084472656","60.459999084472656","","1946-05-20T00:00:00Z","","0" +"NM-12392","262.6000061035156","262.6000061035156","","1970-03-01T00:00:00Z","","0" +"NM-28252","49.75","49.75","","1965-05-25T00:00:00Z","","0" +"AB-0165","479.6300048828125","479.6300048828125","","1999-05-21T00:00:00Z","","" +"NM-24696","145","145","P","1959-10-08T00:00:00Z","","0" +"NM-02382","55.599998474121094","55.599998474121094","","1959-01-15T00:00:00Z","","0" +"NM-01281","389","389","","1984-04-01T00:00:00Z","","0" +"NM-07881","12","12","","1940-12-22T00:00:00Z","","0" +"NM-28252","49.84000015258789","49.84000015258789","","2015-06-25T00:00:00Z","","0" +"NM-10497","71.69999694824219","71.69999694824219","","1966-03-03T00:00:00Z","","0" +"NM-06090","71.5199966430664","71.5199966430664","","1934-07-06T00:00:00Z","","0" +"SB-0621","309.5400085449219","309.5400085449219","","1960-07-20T00:00:00Z","","0" +"NM-17372","39.47999954223633","39.47999954223633","","1939-01-16T00:00:00Z","","0" +"NM-04834","44.689998626708984","44.689998626708984","","1955-11-09T00:00:00Z","","0" +"NM-01906","66.58999633789062","66.58999633789062","","1959-03-10T00:00:00Z","","0" +"NM-02396","7","7","","1962-12-15T00:00:00Z","","0" +"NM-01894","68.93000030517578","68.93000030517578","","2008-01-18T00:00:00Z","","0" +"TC-207","347.8500061035156","347.8500061035156","","2008-05-13T00:00:00Z","","0" +"NM-02043","6.800000190734863","6.800000190734863","","1992-02-19T00:00:00Z","","0" +"NM-01717","22.170000076293945","22.170000076293945","","2011-01-25T00:00:00Z","","0" +"WL-0064","8.729999542236328","6.230000019073486","AA","2023-03-23T00:00:00Z","0001-01-01T12:30:00Z","2.5" +"ED-0341","73.69999694824219","73.69999694824219","","1948-01-19T00:00:00Z","","0" +"NM-01863","12.75","12.75","","1997-01-15T00:00:00Z","","0" +"NM-16631","29.8700008392334","29.8700008392334","","1950-01-11T00:00:00Z","","0" +"EB-427","239.6999969482422","239.1999969482422","","1999-06-01T00:00:00Z","","0.5" +"NM-01796","3.799999952316284","3.799999952316284","","1976-07-15T00:00:00Z","","0" +"NM-11000","70.26000213623047","70.26000213623047","","1995-01-05T00:00:00Z","","0" +"NM-11592","127.12999725341797","127.12999725341797","","1972-02-08T00:00:00Z","","0" +"NM-00680","60.18000030517578","60.18000030517578","","1959-01-15T00:00:00Z","","0" +"AB-0053","50.81999969482422","50.81999969482422","","2008-07-08T00:00:00Z","","" +"EB-479","485","485","P","1988-04-30T00:00:00Z","","0" +"NM-16067","42.15999984741211","42.15999984741211","Z","1986-08-14T00:00:00Z","","0" +"EB-220","127.5999984741211","127.5999984741211","","1980-07-31T00:00:00Z","","0" +"NM-13969","-9.09000015258789","-9.09000015258789","","1908-09-03T00:00:00Z","","0" +"NM-01944","61","61","","1985-03-11T00:00:00Z","","0" +"NM-05622","70.5999984741211","70.5999984741211","","1939-05-09T00:00:00Z","","0" +"NM-02163","32.439998626708984","32.439998626708984","","2012-10-16T00:00:00Z","","0" +"AB-0069","153.66000366210938","153.66000366210938","","2008-12-05T00:00:00Z","","" +"NM-28255","70.95999908447266","70.95999908447266","","1953-03-25T00:00:00Z","","0" +"NM-17626","75.30000305175781","75.30000305175781","","1946-09-30T00:00:00Z","","0" +"DE-0166","57.20000076293945","57.20000076293945","","2016-03-24T00:00:00Z","","0" +"NM-28256","159.38999938964844","159.38999938964844","","2010-04-05T00:00:00Z","","0" +"NM-01284","144.4199981689453","144.4199981689453","P","1948-08-04T00:00:00Z","","0" +"NM-03335","12.300000190734863","12.300000190734863","","2001-12-19T00:00:00Z","","0" +"NM-10099","163.9199981689453","163.9199981689453","","1978-03-27T00:00:00Z","","0" +"NM-09716","-121.12000274658203","-121.12000274658203","","1905-06-29T00:00:00Z","","0" +"AR-0151","9.220000267028809","8.220000267028809","","2018-10-03T00:00:00Z","0001-01-01T14:22:00Z","1" +"NM-07045","62.369998931884766","62.369998931884766","","1970-12-17T00:00:00Z","","0" +"NM-22091","24.520000457763672","24.520000457763672","","1957-09-19T00:00:00Z","","0" +"EB-244","90.5999984741211","90.5999984741211","","2001-07-18T00:00:00Z","","0" +"NM-02004","7.900000095367432","7.900000095367432","","1993-07-15T00:00:00Z","","0" +"QU-055","29.489999771118164","28.149999618530273","","2015-03-18T00:00:00Z","","1.340000033378601" +"TV-187","30.559999465942383","28.649999618530273","","2011-08-02T00:00:00Z","","1.909999966621399" +"NM-02614","530.1300048828125","530.1300048828125","","1990-08-22T00:00:00Z","","0" +"NM-03903","330.1099853515625","330.1099853515625","","1975-07-01T00:00:00Z","","0" +"NM-03764","58.77000045776367","58.77000045776367","","1982-03-03T00:00:00Z","","0" +"NM-01829","310.45001220703125","310.45001220703125","","1974-07-26T00:00:00Z","","0" +"NM-17034","28.3700008392334","28.3700008392334","","1936-05-21T00:00:00Z","","0" +"NM-28256","115.19000244140625","115.19000244140625","","2021-02-25T00:00:00Z","","0" +"EB-608","216.97000122070312","216.97000122070312","","2005-09-21T00:00:00Z","","0" +"EB-220","131.1300048828125","131.1300048828125","Z","2001-05-08T00:00:00Z","","0" +"NM-02650","51.70000076293945","51.70000076293945","","1975-01-20T00:00:00Z","","0" +"NM-27415","69.56999969482422","69.56999969482422","","1973-01-11T00:00:00Z","","0" +"NM-02493","69.94999694824219","69.94999694824219","","1966-01-25T00:00:00Z","","0" +"NM-03075","","","O","2000-02-03T00:00:00Z","","0" +"NM-14593","139.5399932861328","139.5399932861328","","1957-09-04T00:00:00Z","","0" +"NM-10890","29.020000457763672","29.020000457763672","P","1963-08-13T00:00:00Z","","0" +"NM-22299","34.59000015258789","34.59000015258789","","1995-12-11T00:00:00Z","","0" +"NM-22760","8.850000381469727","8.850000381469727","","1950-04-18T00:00:00Z","","0" +"NM-00367","140.22999572753906","140.22999572753906","Z","1998-10-09T00:00:00Z","","0" +"NM-12431","30.739999771118164","30.739999771118164","","1951-07-26T00:00:00Z","","0" +"NM-05718","93.72000122070312","93.72000122070312","","1950-03-16T00:00:00Z","","0" +"NM-02471","154.0500030517578","154.0500030517578","","1991-09-06T00:00:00Z","","0" +"NM-01886","67.55000305175781","67.55000305175781","","2002-05-20T00:00:00Z","","0" +"AB-0214","157.32000732421875","157.32000732421875","","2014-06-18T00:00:00Z","","" +"NM-03336","12.079999923706055","12.079999923706055","","2004-09-13T00:00:00Z","","0" +"NM-06261","26.68000030517578","26.68000030517578","S","1951-01-16T00:00:00Z","","0" +"NM-02535","11.670000076293945","11.670000076293945","","1986-07-14T00:00:00Z","","0" +"NM-00933","251.3000030517578","251.3000030517578","","1984-01-18T00:00:00Z","","0" +"NM-02630","50.29999923706055","50.29999923706055","","1984-03-01T00:00:00Z","","0" +"SV-0019","103.69999694824219","101.77999877929688","","2017-02-19T00:00:00Z","","1.9199999570846558" +"NM-11758","15.289999961853027","15.289999961853027","","1989-01-23T00:00:00Z","","0" +"NM-02970","97.43000030517578","97.43000030517578","","1995-02-03T00:00:00Z","","0" +"NM-21308","22.479999542236328","22.479999542236328","","1961-10-05T00:00:00Z","","0" +"NM-02622","170.02999877929688","170.02999877929688","","1978-04-01T00:00:00Z","","0" +"NM-01898","44.040000915527344","44.040000915527344","","1995-04-13T00:00:00Z","","0" +"NM-12755","-54.130001068115234","-54.130001068115234","","1911-11-30T00:00:00Z","","0" +"PC-080","64.94000244140625","67.84000396728516","T","1998-02-05T00:00:00Z","","0" +"NM-07118","88.66999816894531","88.66999816894531","","2002-04-03T00:00:00Z","","0" +"NM-02772","50.70000076293945","50.70000076293945","","2003-10-15T00:00:00Z","","0" +"SB-0299","115.79000091552734","115.79000091552734","","1993-12-05T00:00:00Z","","0" +"NM-28048","413","413","S","1984-01-18T00:00:00Z","","0" +"NM-04396","124.44000244140625","124.44000244140625","","2001-02-27T00:00:00Z","","0" +"NM-04632","10","10","","1952-09-15T00:00:00Z","","0" +"NM-01926","5","5","","1984-09-15T00:00:00Z","","0" +"SB-0076","208.8800048828125","208.8800048828125","","1986-02-05T00:00:00Z","","0" +"WL-0025","336.1300048828125","334.7799987792969","AA","2024-03-21T00:00:00Z","0001-01-01T10:54:00Z","1.350000023841858" +"NM-13915","-11.109999656677246","-11.109999656677246","","1908-06-25T00:00:00Z","","0" +"NM-17339","73.05999755859375","73.05999755859375","","1958-01-25T00:00:00Z","","0" +"NM-26506","35.7400016784668","35.7400016784668","","1988-03-16T00:00:00Z","","0" +"NM-08336","242.82000732421875","242.82000732421875","","1997-01-24T00:00:00Z","","0" +"EB-186","143.85000610351562","149.85000610351562","R","2003-05-01T00:00:00Z","","-6" +"NM-12197","19.68000030517578","19.68000030517578","","1950-03-10T00:00:00Z","","0" +"NM-13425","394.6600036621094","394.6600036621094","","1980-10-01T00:00:00Z","","0" +"NM-23637","41.58000183105469","41.58000183105469","","1965-01-22T00:00:00Z","","0" +"NM-03319","96.9000015258789","96.9000015258789","","1966-02-17T00:00:00Z","","0" +"NM-21908","480.3900146484375","480.3900146484375","S","2013-06-20T00:00:00Z","","0" +"NM-01746","90.9000015258789","90.9000015258789","","1961-11-13T00:00:00Z","","0" +"EB-479","28","28","","1985-04-30T00:00:00Z","","0" +"NM-11256","57.150001525878906","57.150001525878906","","1954-01-06T00:00:00Z","","0" +"SB-0442","169","169","","2009-12-30T00:00:00Z","","0" +"NM-05713","72.58000183105469","72.58000183105469","","1932-09-03T00:00:00Z","","0" +"NM-05516","18.200000762939453","18.200000762939453","","1965-08-15T00:00:00Z","","0" +"TB-0037","43.45000076293945","40.45000076293945","","2009-12-17T00:00:00Z","","3" +"NM-10456","71.30000305175781","71.30000305175781","R","1971-03-22T00:00:00Z","","0" +"NM-15593","92.76000213623047","92.76000213623047","","1972-01-06T00:00:00Z","","0" +"NM-17553","42.75","42.75","","1957-01-18T00:00:00Z","","0" +"NM-10988","44.529998779296875","44.529998779296875","","1947-01-19T00:00:00Z","","0" +"NM-00805","47.470001220703125","47.470001220703125","","1960-09-23T00:00:00Z","","0" +"NM-12444","66.27999877929688","66.27999877929688","","1948-03-12T00:00:00Z","","0" +"NM-07685","50.41999816894531","50.41999816894531","P","1935-11-19T00:00:00Z","","0" +"NM-13246","82.79000091552734","82.79000091552734","","1954-10-01T00:00:00Z","","0" +"NM-28021","480.79998779296875","480.79998779296875","S","2015-04-28T00:00:00Z","","0" +"NM-22466","59","59","R","1990-07-03T00:00:00Z","","0" +"NM-02101","7.400000095367432","7.400000095367432","","1963-04-15T00:00:00Z","","0" +"NM-00575","74.44000244140625","74.44000244140625","","2005-10-14T00:00:00Z","","0" +"NM-11322","2.5899999141693115","2.5899999141693115","","1970-11-23T00:00:00Z","","0" +"NM-02004","8.899999618530273","8.899999618530273","","1989-10-15T00:00:00Z","","0" +"NM-04325","60.79999923706055","60.79999923706055","","1974-01-16T00:00:00Z","","0" +"NM-02398","19.5","19.5","","1963-01-15T00:00:00Z","","0" +"NM-11100","50.150001525878906","50.150001525878906","","1960-01-19T00:00:00Z","","0" +"NM-25793","20","20","","1971-09-01T00:00:00Z","","0" +"NM-16602","36.59000015258789","36.59000015258789","","1962-01-19T00:00:00Z","","0" +"NM-11035","32.209999084472656","32.209999084472656","","1950-01-17T00:00:00Z","","0" +"NM-23514","57.58000183105469","57.58000183105469","","2012-07-30T00:00:00Z","","0" +"NM-00282","45.41999816894531","45.41999816894531","","1983-01-04T00:00:00Z","","0" +"NM-05116","95.81999969482422","95.81999969482422","","1959-01-05T00:00:00Z","","0" +"NM-01829","313","313","","1984-02-15T00:00:00Z","","0" +"NM-17424","52.400001525878906","52.400001525878906","","1946-07-26T00:00:00Z","","0" +"NM-20948","182.8699951171875","182.8699951171875","","1969-01-07T00:00:00Z","","0" +"NM-01007","351.6000061035156","351.6000061035156","","1979-01-08T00:00:00Z","","0" +"EB-342","27.989999771118164","35.290000915527344","R","2004-05-28T00:00:00Z","","-7.300000190734863" +"NM-06583","124.41000366210938","124.41000366210938","P","1970-12-09T00:00:00Z","","0" +"NM-01616","163.8800048828125","163.8800048828125","","2011-02-23T00:00:00Z","","0" +"DE-0109","36.9900016784668","36.9900016784668","","2010-10-12T00:00:00Z","","0" +"NM-04434","43.5","43.5","","1987-01-22T00:00:00Z","","0" +"NM-04872","97.9800033569336","97.9800033569336","","1981-03-25T00:00:00Z","","0" +"BC-0162","214.50999450683594","214.50999450683594","","2017-06-15T00:00:00Z","","0" +"BC-0090","172.64999389648438","172.64999389648438","","2015-03-02T00:00:00Z","","0" +"NM-19830","19.899999618530273","19.899999618530273","P","1953-02-25T00:00:00Z","","0" +"NM-05762","60.56999969482422","60.56999969482422","","1962-03-12T00:00:00Z","","0" +"NM-02382","52.95000076293945","52.95000076293945","","1939-09-08T00:00:00Z","","0" +"NM-12856","285.3999938964844","285.3999938964844","","1986-01-13T00:00:00Z","","0" +"NM-28257","62.119998931884766","62.119998931884766","","1957-01-25T00:00:00Z","","0" +"NM-12240","10.869999885559082","10.869999885559082","","1968-12-12T00:00:00Z","","0" +"NM-21582","4.949999809265137","4.949999809265137","Z","2011-09-27T00:00:00Z","","0" +"AB-0122","539.4400024414062","539.4400024414062","","1999-03-11T00:00:00Z","","0" +"NM-28250","87.79000091552734","87.79000091552734","","1989-12-25T00:00:00Z","","0" +"NM-25406","57.900001525878906","57.900001525878906","","1982-02-10T00:00:00Z","","0" +"SA-0003","233.88999938964844","233.88999938964844","","1990-01-30T00:00:00Z","","0" +"NM-07423","136.3699951171875","136.3699951171875","","1974-01-22T00:00:00Z","","0" +"NM-03903","330.45001220703125","330.45001220703125","","1975-07-18T00:00:00Z","","0" +"NM-13001","16.25","16.25","","1976-04-13T00:00:00Z","","0" +"NM-25680","-97.76000213623047","-97.76000213623047","","1988-04-25T00:00:00Z","","0" +"NM-02701","20.079999923706055","20.079999923706055","","1958-01-17T00:00:00Z","","0" +"NM-14265","425.6099853515625","425.6099853515625","","1967-07-01T00:00:00Z","","0" +"NM-21697","252.52999877929688","252.52999877929688","S","1986-04-01T00:00:00Z","","0" +"NM-08232","997.7999877929688","997.7999877929688","","1961-03-01T00:00:00Z","","0" +"DE-0290","81.29000091552734","81.29000091552734","","2017-08-29T00:00:00Z","","0" +"NM-07241","67.87999725341797","67.87999725341797","","1972-02-18T00:00:00Z","","0" +"NM-01496","80.76000213623047","80.76000213623047","R","2014-03-20T00:00:00Z","","0" +"NM-11780","45.04999923706055","45.04999923706055","","1939-11-27T00:00:00Z","","0" +"AB-0200","195.22999572753906","195.22999572753906","","2001-06-14T00:00:00Z","","" +"NM-08561","-80.69999694824219","-80.69999694824219","","1908-04-01T00:00:00Z","","0" +"NM-21658","422","422","S","1983-02-07T00:00:00Z","","0" +"NM-21544","372.260009765625","372.260009765625","","1992-08-06T00:00:00Z","","0" +"SO-0225","","","D","2020-08-14T00:00:00Z","0001-01-01T10:07:00Z","1.2200000286102295" +"NM-12564","27.530000686645508","27.530000686645508","","1953-09-09T00:00:00Z","","0" +"NM-00974","340.6199951171875","340.6199951171875","","1957-03-16T00:00:00Z","","0" +"NM-03416","70.2699966430664","70.2699966430664","","1994-05-03T00:00:00Z","","0" +"NM-02256","6.099999904632568","6.099999904632568","","1969-12-15T00:00:00Z","","0" +"NM-17395","65.87000274658203","65.87000274658203","","1967-01-04T00:00:00Z","","0" +"NM-21240","3.890000104904175","3.890000104904175","Z","2006-05-01T00:00:00Z","","0" +"NM-04975","60.81999969482422","60.81999969482422","","1952-09-10T00:00:00Z","","0" +"QU-164","89.80000305175781","87.63999938964844","","2014-01-03T00:00:00Z","","2.1600000858306885" +"NM-13531","4.320000171661377","4.320000171661377","","1958-09-09T00:00:00Z","","0" +"NM-14776","23.6200008392334","23.6200008392334","","1991-02-13T00:00:00Z","","0" +"NM-13121","8.210000038146973","8.210000038146973","","1960-06-16T00:00:00Z","","0" +"NM-08524","10.899999618530273","10.899999618530273","","1970-11-15T00:00:00Z","","0" +"NM-07406","","","W","2015-12-17T00:00:00Z","","0" +"EB-279","241.60000610351562","241.60000610351562","","1994-12-06T00:00:00Z","","0" +"NM-13573","48.47999954223633","48.47999954223633","","1957-07-30T00:00:00Z","","0" +"EB-356","250.6699981689453","248.6699981689453","","2002-02-19T00:00:00Z","","2" +"NM-21295","128.22000122070312","128.22000122070312","","2003-10-09T00:00:00Z","","0" +"NM-13989","-14.859999656677246","-14.859999656677246","","1911-12-19T00:00:00Z","","0" +"NM-02487","13.199999809265137","13.199999809265137","","1964-03-15T00:00:00Z","","0" +"NM-13137","13.899999618530273","13.899999618530273","","1939-01-31T00:00:00Z","","0" +"NM-07837","88.19999694824219","88.19999694824219","","1975-01-15T00:00:00Z","","0" +"NM-14348","25.3700008392334","25.3700008392334","","1957-11-01T00:00:00Z","","0" +"NM-13862","-10.239999771118164","-10.239999771118164","","1905-10-05T00:00:00Z","","0" +"NM-00253","21.809999465942383","21.809999465942383","","1996-11-20T00:00:00Z","","0" +"NM-15640","121.30999755859375","121.30999755859375","","1964-02-19T00:00:00Z","","0" +"NM-09218","-116.5","-116.5","","1910-02-21T00:00:00Z","","0" +"NM-16643","21.90999984741211","21.90999984741211","","1955-01-18T00:00:00Z","","0" +"NM-17716","0.8600000143051147","0.8600000143051147","","1944-01-20T00:00:00Z","","0" +"NM-09647","59.77000045776367","59.77000045776367","","1981-01-08T00:00:00Z","","0" +"NM-01631","16.31999969482422","16.31999969482422","","1983-02-01T00:00:00Z","","0" +"NM-21743","43.349998474121094","43.349998474121094","","2002-02-11T00:00:00Z","","0" +"NM-28257","-2","-2","","1987-12-15T00:00:00Z","","0" +"NM-05209","137.6300048828125","137.6300048828125","","1972-02-16T00:00:00Z","","0" +"NM-27696","177.44000244140625","177.44000244140625","","1977-01-13T00:00:00Z","","0" +"NM-00762","124.69999694824219","124.69999694824219","","1962-05-01T00:00:00Z","","0" +"NM-14192","34.400001525878906","34.400001525878906","P","1946-01-26T00:00:00Z","","0" +"NM-28256","221.38999938964844","221.38999938964844","","2018-05-15T00:00:00Z","","0" +"NM-26491","151.74000549316406","151.74000549316406","","2002-03-19T00:00:00Z","","0" +"SO-0269","4.059999942779541","2.8399999141693115","","2016-05-16T00:00:00Z","","1.2200000286102295" +"NM-22060","52.06999969482422","52.06999969482422","","1988-03-08T00:00:00Z","","0" +"NM-22491","78.95999908447266","78.95999908447266","T","1982-04-20T00:00:00Z","","0" +"EB-269","374.6300048828125","374.6300048828125","","2003-11-18T00:00:00Z","","0" +"NM-06943","116.9000015258789","116.9000015258789","","1967-01-13T00:00:00Z","","0" +"NM-17104","37.779998779296875","37.779998779296875","","1948-01-13T00:00:00Z","","0" +"NM-01955","5.300000190734863","5.300000190734863","","1964-01-15T00:00:00Z","","0" +"NM-01281","400.6400146484375","400.6400146484375","","1986-10-15T00:00:00Z","","0" +"NM-02598","146.39999389648438","146.39999389648438","","1965-01-12T00:00:00Z","","0" +"NM-28256","223.58999633789062","223.58999633789062","","2001-04-16T00:00:00Z","","0" +"NM-03903","330.5299987792969","330.5299987792969","","1975-06-18T00:00:00Z","","0" +"NM-12464","47.27000045776367","47.27000045776367","","1981-01-28T00:00:00Z","","0" +"NM-09924","7.829999923706055","7.829999923706055","","2002-05-20T00:00:00Z","","0" +"NM-02004","10","10","","1957-02-15T00:00:00Z","","0" +"NM-00610","44.560001373291016","44.560001373291016","R","1982-01-05T00:00:00Z","","0" +"NM-10979","83.44000244140625","83.44000244140625","","1976-03-24T00:00:00Z","","0" +"NM-28016","490.2900085449219","490.2900085449219","S","2015-05-18T00:00:00Z","","0" +"NM-04700","55.540000915527344","55.540000915527344","","1951-07-28T00:00:00Z","","0" +"NM-00445","75.94999694824219","75.94999694824219","","1996-02-23T00:00:00Z","","0" +"EB-406","225.3800048828125","225.3800048828125","","1982-08-11T00:00:00Z","","0" +"NM-17618","17.68000030517578","17.68000030517578","","1961-01-07T00:00:00Z","","0" +"NM-01547","-135.8300018310547","-135.8300018310547","","1992-02-27T00:00:00Z","","0" +"NM-21358","253.8699951171875","253.8699951171875","","2011-10-03T00:00:00Z","","0" +"EB-263","3.890000104904175","3.890000104904175","","2001-10-16T00:00:00Z","","0" +"NM-01917","26.25","26.25","","1956-01-13T00:00:00Z","","0" +"NM-02487","9.600000381469727","9.600000381469727","","1962-10-15T00:00:00Z","","0" +"NM-28251","76.83000183105469","76.83000183105469","","2014-11-04T00:00:00Z","","0" +"NM-06238","186.75999450683594","186.75999450683594","","1995-08-25T00:00:00Z","","0" +"WL-0146","339.0400085449219","337.5899963378906","","2020-03-05T00:00:00Z","0001-01-01T10:15:00Z","1.4500000476837158" +"NM-10895","14.020000457763672","14.020000457763672","R","1971-02-24T00:00:00Z","","0" +"NM-03104","307.6700134277344","307.6700134277344","","2004-09-16T00:00:00Z","","0" +"NM-13665","-8.220000267028809","-8.220000267028809","","1908-12-29T00:00:00Z","","0" +"UC-0002","223.47999572753906","223.47999572753906","","1996-01-26T00:00:00Z","","0" +"NM-20699","16.809999465942383","16.809999465942383","","1960-02-15T00:00:00Z","","0" +"NM-02384","9.100000381469727","9.100000381469727","","1994-01-15T00:00:00Z","","0" +"NM-13340","-13.710000038146973","-13.710000038146973","","1907-09-19T00:00:00Z","","0" +"NM-27247","52","52","","1956-05-29T00:00:00Z","","0" +"NM-00635","84.94000244140625","84.94000244140625","","1986-01-08T00:00:00Z","","0" +"NM-06676","9.600000381469727","9.600000381469727","","1980-04-15T00:00:00Z","","0" +"SB-0299","122.08000183105469","122.08000183105469","","1977-12-10T00:00:00Z","","0" +"NM-28253","44.540000915527344","44.540000915527344","","1984-04-25T00:00:00Z","","0" +"WL-0091","47.375","44.60499954223633","","1986-11-12T00:00:00Z","","2.7699999809265137" +"NM-01029","407.32000732421875","407.32000732421875","","1983-01-08T00:00:00Z","","0" +"NM-01808","328.3699951171875","328.3699951171875","","2001-02-26T00:00:00Z","","0" +"NM-01796","6.199999809265137","6.199999809265137","","1979-07-15T00:00:00Z","","0" +"NM-09116","51.93000030517578","51.93000030517578","","1981-03-05T00:00:00Z","","0" +"EB-388","90.37999725341797","88.94999694824219","","2021-04-15T00:00:00Z","0001-01-01T10:35:00Z","1.4299999475479126" +"BC-0020","87.69999694824219","87.69999694824219","","2018-12-17T00:00:00Z","","0" +"BC-0357","","54.310001373291016","","2020-07-25T00:00:00Z","","1.5399999618530273" +"NM-05283","40.380001068115234","40.380001068115234","","1959-01-10T00:00:00Z","","0" +"NM-02345","59.43000030517578","59.43000030517578","","1995-07-12T00:00:00Z","","0" +"NM-17716","8.239999771118164","8.239999771118164","","1940-11-29T00:00:00Z","","0" +"NM-28023","486.32000732421875","486.32000732421875","S","2015-05-07T00:00:00Z","","0" +"NM-19878","243.8000030517578","243.8000030517578","","1977-02-17T00:00:00Z","","0" +"NM-02620","14.100000381469727","14.100000381469727","","1967-01-15T00:00:00Z","","0" +"NM-27198","82.30000305175781","82.30000305175781","","2008-11-06T00:00:00Z","","0" +"NM-16373","32.25","32.25","R","1961-01-11T00:00:00Z","","0" +"NM-01926","7.900000095367432","7.900000095367432","","1978-07-15T00:00:00Z","","0" +"NM-00367","130.4499969482422","130.4499969482422","","1977-05-01T00:00:00Z","","0" +"NM-28256","264.25","264.25","","1976-07-25T00:00:00Z","","0" +"NM-02506","120.16999816894531","120.16999816894531","","2004-02-09T00:00:00Z","","0" +"NM-01926","7.400000095367432","7.400000095367432","","1973-02-15T00:00:00Z","","0" +"NM-16574","16.100000381469727","16.100000381469727","","1936-05-21T00:00:00Z","","0" +"NM-08846","45.27000045776367","45.27000045776367","","1972-04-20T00:00:00Z","","0" +"NM-15292","64.18000030517578","64.18000030517578","","1989-12-13T00:00:00Z","","0" +"NM-02620","9.300000190734863","9.300000190734863","","1983-05-15T00:00:00Z","","0" +"NM-19448","72.69000244140625","72.69000244140625","","1982-03-19T00:00:00Z","","0" +"NM-09587","50.65999984741211","50.65999984741211","","1960-01-12T00:00:00Z","","0" +"NM-19894","100.83000183105469","100.83000183105469","","1982-03-09T00:00:00Z","","0" +"AR-0012","4","3.799999952316284","","2015-08-18T00:00:00Z","","0.20000000298023224" +"NM-02396","9.699999809265137","9.699999809265137","","1967-06-15T00:00:00Z","","0" +"DE-0111","36.900001525878906","36.900001525878906","","2008-11-10T00:00:00Z","","0" +"AB-0052","50.09000015258789","50.09000015258789","","2004-09-22T00:00:00Z","","" +"NM-02560","89","89","","1958-02-01T00:00:00Z","","0" +"NM-01033","77.0999984741211","77.0999984741211","","2013-01-28T00:00:00Z","","0" +"NM-27365","110.9000015258789","110.9000015258789","","1983-01-04T00:00:00Z","","0" +"NM-01292","23.049999237060547","23.049999237060547","","2005-11-17T00:00:00Z","","0" +"NM-11624","78.91000366210938","78.91000366210938","","1979-01-03T00:00:00Z","","0" +"NM-07740","63.349998474121094","63.349998474121094","","1953-01-07T00:00:00Z","","0" +"NM-13921","-6.78000020980835","-6.78000020980835","","1912-04-04T00:00:00Z","","0" +"NM-01948","8.420000076293945","8.420000076293945","","2007-02-01T00:00:00Z","","0" +"NM-00931","188.24000549316406","188.24000549316406","","1972-01-05T00:00:00Z","","0" +"NM-06268","13.600000381469727","13.600000381469727","","1985-01-15T00:00:00Z","","0" +"NM-28251","82.2300033569336","82.2300033569336","","1986-04-15T00:00:00Z","","0" +"NM-12668","132.2899932861328","132.2899932861328","","1956-01-04T00:00:00Z","","0" +"NM-21312","86.25","86.25","","2005-06-27T00:00:00Z","","0" +"NM-14153","1.2699999809265137","1.2699999809265137","","1952-01-29T00:00:00Z","","0" +"NM-19435","307.260009765625","307.260009765625","","1972-01-05T00:00:00Z","","0" +"NM-00395","35.400001525878906","35.400001525878906","","1958-06-25T00:00:00Z","","0" +"NM-03903","330.25","330.25","","1975-05-24T00:00:00Z","","0" +"NM-01819","22","22","","2002-12-30T00:00:00Z","","0" +"NM-28250","103.8499984741211","103.8499984741211","","1981-02-05T00:00:00Z","","0" +"SB-0299","144.0800018310547","144.0800018310547","","2002-09-30T00:00:00Z","","0" +"NM-01896","9.720000267028809","9.720000267028809","","2008-10-07T00:00:00Z","","0" +"NM-02384","6.099999904632568","6.099999904632568","","1948-08-15T00:00:00Z","","0" +"NM-00367","122.4000015258789","122.4000015258789","","1973-12-01T00:00:00Z","","0" +"NM-13958","20.829999923706055","20.829999923706055","","1963-11-18T00:00:00Z","","0" +"NM-05340","85.1500015258789","85.1500015258789","","1963-01-15T00:00:00Z","","0" +"NM-02966","115.2300033569336","115.2300033569336","","1964-02-17T00:00:00Z","","0" +"NM-28259","104.05999755859375","104.05999755859375","","2016-01-05T00:00:00Z","","0" +"NM-28252","42.29999923706055","42.29999923706055","","2003-06-05T00:00:00Z","","0" +"NM-19893","60.54999923706055","60.54999923706055","","1971-01-08T00:00:00Z","","0" +"NM-28018","486.4200134277344","486.4200134277344","S","2015-04-19T00:00:00Z","","0" +"WL-0086","76.91666412353516","75.15666198730469","","2001-08-09T00:00:00Z","","1.7599999904632568" +"SD-0110","164","164","P","1964-10-27T00:00:00Z","","0" +"NM-24338","54.70000076293945","54.70000076293945","","1978-04-06T00:00:00Z","","0" +"NM-09830","48.040000915527344","48.040000915527344","P","1938-06-01T00:00:00Z","","0" +"NM-01456","367.95001220703125","367.95001220703125","","2008-03-24T00:00:00Z","","0" +"NM-16772","61.599998474121094","61.599998474121094","","1977-01-05T00:00:00Z","","0" +"NM-28257","11.75","11.75","","2018-05-04T00:00:00Z","","0" +"NM-03588","274.010009765625","274.010009765625","R","1987-02-03T00:00:00Z","","0" +"NM-28254","21.700000762939453","21.700000762939453","","1985-02-15T00:00:00Z","","0" +"NM-12153","67.44999694824219","67.44999694824219","","1971-02-25T00:00:00Z","","0" +"NM-09176","21.15999984741211","21.15999984741211","P","1941-11-12T00:00:00Z","","0" +"NM-22648","175.2899932861328","175.2899932861328","","1959-03-16T00:00:00Z","","0" +"AB-0211","161.6699981689453","161.6699981689453","","1997-04-01T00:00:00Z","","" +"NM-17479","480","480","","1974-01-09T00:00:00Z","","0" +"NM-16979","50.97999954223633","50.97999954223633","","1946-09-27T00:00:00Z","","0" +"TV-273","66.27999877929688","63.82999801635742","","2006-04-11T00:00:00Z","","2.450000047683716" +"NM-02332","112.19000244140625","112.19000244140625","","1967-01-24T00:00:00Z","","0" +"NM-15572","101.62999725341797","101.62999725341797","","1990-01-12T00:00:00Z","","0" +"NM-27752","153.69000244140625","153.69000244140625","","1990-04-27T00:00:00Z","","0" +"NM-15439","104.94000244140625","104.94000244140625","","1970-02-13T00:00:00Z","","0" +"NM-00213","168.77999877929688","168.77999877929688","","1952-03-01T00:00:00Z","","0" +"NM-11915","46.79999923706055","46.79999923706055","","1963-01-09T00:00:00Z","","0" +"NM-02616","70.37999725341797","70.37999725341797","","2004-02-11T00:00:00Z","","0" +"NM-02165","9.350000381469727","9.350000381469727","","2002-01-16T00:00:00Z","","0" +"EB-479","391.25","391.25","Z","2003-11-30T00:00:00Z","","0" +"NM-05497","88.4800033569336","88.4800033569336","","1947-11-07T00:00:00Z","","0" +"NM-00237","32.04999923706055","32.04999923706055","","1964-08-27T00:00:00Z","","0" +"NM-04313","49.529998779296875","49.529998779296875","","1949-02-02T00:00:00Z","","0" +"NM-28257","17.760000228881836","17.760000228881836","","1972-10-15T00:00:00Z","","0" +"NM-02911","97.12000274658203","97.12000274658203","","2009-02-27T00:00:00Z","","0" +"NM-00257","91.56999969482422","91.56999969482422","","2012-11-26T00:00:00Z","","0" +"NM-19477","54.130001068115234","54.130001068115234","","1941-07-09T00:00:00Z","","0" +"NM-28259","149.60000610351562","149.60000610351562","","1993-07-15T00:00:00Z","","0" +"NM-20578","13.760000228881836","13.760000228881836","","1950-05-18T00:00:00Z","","0" +"NM-08957","61.970001220703125","61.970001220703125","","1991-03-13T00:00:00Z","","0" +"NM-28254","75.69999694824219","75.69999694824219","","1999-09-25T00:00:00Z","","0" +"NM-19497","17.489999771118164","17.489999771118164","","1954-02-16T00:00:00Z","","0" +"NM-17716","7.210000038146973","7.210000038146973","","1940-03-17T00:00:00Z","","0" +"NM-08067","12","12","","1926-08-26T00:00:00Z","","0" +"NM-17209","46.720001220703125","46.720001220703125","","1951-05-25T00:00:00Z","","0" +"NM-03771","44.97999954223633","44.97999954223633","","2003-01-16T00:00:00Z","","0" +"NM-19497","17.56999969482422","17.56999969482422","","1952-08-07T00:00:00Z","","0" +"NM-01464","271.79998779296875","271.79998779296875","","1975-04-19T00:00:00Z","","0" +"NM-01864","72.06999969482422","72.06999969482422","","1975-01-10T00:00:00Z","","0" +"NM-02620","12.699999809265137","12.699999809265137","","1961-01-15T00:00:00Z","","0" +"NM-06110","17.649999618530273","17.649999618530273","","1974-07-27T00:00:00Z","","0" +"DE-0236","108.08000183105469","108.08000183105469","","2003-08-18T00:00:00Z","","0" +"NM-13121","6.809999942779541","6.809999942779541","","1971-12-29T00:00:00Z","","0" +"NM-02702","5.690000057220459","5.690000057220459","","1980-11-01T00:00:00Z","","0" +"NM-27842","151.02000427246094","151.02000427246094","","1990-02-22T00:00:00Z","","0" +"NM-28253","52.63999938964844","52.63999938964844","","1975-08-15T00:00:00Z","","0" +"SD-0103","40","40","","1960-01-01T00:00:00Z","","0" +"NM-03218","42","42","","1961-02-09T00:00:00Z","","0" +"NM-14276","-7.739999771118164","-7.739999771118164","","1931-07-14T00:00:00Z","","0" +"EB-276","126.55999755859375","126.55999755859375","","1959-04-01T00:00:00Z","","0" +"NM-28252","36.29999923706055","36.29999923706055","","2002-12-15T00:00:00Z","","0" +"NM-03654","36.20000076293945","36.20000076293945","","2003-11-17T00:00:00Z","","0" +"NM-20042","31.280000686645508","31.280000686645508","P","1951-11-30T00:00:00Z","","0" +"BC-0170","294.6300048828125","294.6300048828125","","2014-03-11T00:00:00Z","","0" +"NM-02412","28.760000228881836","28.760000228881836","","1934-07-06T00:00:00Z","","0" +"NM-12300","-84.16000366210938","-84.16000366210938","","1906-06-25T00:00:00Z","","0" +"NM-13871","-7.929999828338623","-7.929999828338623","","1907-11-29T00:00:00Z","","0" +"NM-18288","297.989990234375","297.989990234375","","2002-08-15T00:00:00Z","","0" +"NM-05417","86.7699966430664","86.7699966430664","","1951-05-08T00:00:00Z","","0" +"NM-05309","10.5","10.5","","1963-02-15T00:00:00Z","","0" +"NM-03877","24.479999542236328","24.479999542236328","","1960-01-25T00:00:00Z","","0" +"NM-01830","8.5","8.5","","1990-03-15T00:00:00Z","","0" +"NM-10187","24.81999969482422","24.81999969482422","","1976-01-15T00:00:00Z","","0" +"EB-679","161.1999969482422","161.1999969482422","","1997-03-24T00:00:00Z","","0" +"NM-01872","10.600000381469727","10.600000381469727","","1954-03-15T00:00:00Z","","0" +"NM-28254","150.3000030517578","150.3000030517578","","2019-08-26T00:00:00Z","","0" +"WL-0109","114.08999633789062","112.2199935913086","","2018-12-06T00:00:00Z","0001-01-01T09:32:00Z","1.8700000047683716" +"BC-0004","270.70001220703125","270.70001220703125","","2017-10-02T00:00:00Z","","0" +"NM-28253","45.20000076293945","45.20000076293945","","1965-06-25T00:00:00Z","","0" +"AB-0112","23.059999465942383","23.059999465942383","","2001-09-25T00:00:00Z","","" +"NM-23446","169.0399932861328","169.0399932861328","","1957-09-05T00:00:00Z","","0" +"NM-26608","22.350000381469727","22.350000381469727","","2012-10-10T00:00:00Z","","0" +"NM-02349","17.899999618530273","17.899999618530273","","1967-12-15T00:00:00Z","","0" +"NM-28250","106.94999694824219","106.94999694824219","","1975-06-15T00:00:00Z","","0" +"NM-14565","145.61000061035156","145.61000061035156","P","1970-09-03T00:00:00Z","","0" +"BC-0158","278.82000732421875","278.82000732421875","","2014-09-06T00:00:00Z","","0" +"SV-0104","107.80000305175781","105.62999725341797","","2019-08-11T00:00:00Z","","2.1700000762939453" +"NM-02889","91.08999633789062","91.08999633789062","","2000-02-08T00:00:00Z","","0" +"NM-01955","6","6","","2003-02-19T00:00:00Z","","0" +"NM-03373","52.599998474121094","52.599998474121094","","2001-03-13T00:00:00Z","","0" +"NM-26508","69.91000366210938","69.91000366210938","","2002-08-21T00:00:00Z","","0" +"NM-02669","58.02000045776367","58.02000045776367","","1989-08-18T00:00:00Z","","0" +"NM-11922","87.41999816894531","87.41999816894531","","1947-01-25T00:00:00Z","","0" +"DE-0108","37.5","37.5","","2006-08-14T00:00:00Z","","0" +"NM-21823","38.099998474121094","38.099998474121094","","1988-12-29T00:00:00Z","","0" +"NM-00317","274.6099853515625","274.6099853515625","","1979-01-25T00:00:00Z","","0" +"NM-26737","153.6699981689453","153.6699981689453","","1983-01-26T00:00:00Z","","0" +"NM-23075","153.9499969482422","153.9499969482422","","1943-03-22T00:00:00Z","","0" +"NM-00383","29.969999313354492","29.969999313354492","","1970-01-06T00:00:00Z","","0" +"NM-01286","68.80000305175781","68.80000305175781","","1950-02-08T00:00:00Z","","0" +"NM-01796","6.900000095367432","6.900000095367432","","1956-02-15T00:00:00Z","","0" +"NM-20451","196.0500030517578","196.0500030517578","","2015-09-16T00:00:00Z","","0" +"NM-01868","12.600000381469727","12.600000381469727","","1978-05-15T00:00:00Z","","0" +"NM-00543","43.470001220703125","43.470001220703125","","1972-01-13T00:00:00Z","","0" +"NM-10349","66.3499984741211","66.3499984741211","","1954-11-16T00:00:00Z","","0" +"NM-02256","8.699999809265137","8.699999809265137","","1975-09-15T00:00:00Z","","0" +"NM-28258","115.2300033569336","115.2300033569336","","1973-02-15T00:00:00Z","","0" +"NM-12442","-33.34000015258789","-33.34000015258789","","1910-03-23T00:00:00Z","","0" +"UC-0036","181.5500030517578","181.5500030517578","","1975-01-21T00:00:00Z","","0" +"NM-04893","73.33999633789062","73.33999633789062","","1961-01-09T00:00:00Z","","0" +"NM-10435","56.70000076293945","56.70000076293945","","1981-04-01T00:00:00Z","","0" +"SA-0134","120.80000305175781","120.43000030517578","P","2018-08-01T00:00:00Z","0001-01-01T09:16:00Z","0.3700000047683716" +"NM-21541","357.6000061035156","357.6000061035156","","1992-11-06T00:00:00Z","","0" +"NM-02256","5.400000095367432","5.400000095367432","","1947-03-15T00:00:00Z","","0" +"NM-02829","10.09000015258789","10.09000015258789","","2003-01-14T00:00:00Z","","0" +"NM-28258","179.44000244140625","179.44000244140625","","1973-07-05T00:00:00Z","","0" +"NM-11620","109.27999877929688","109.27999877929688","P","1955-01-26T00:00:00Z","","0" +"NM-06893","17.6299991607666","17.6299991607666","","1954-11-08T00:00:00Z","","0" +"NM-07232","474","474","","2008-11-25T00:00:00Z","","0" +"NM-01985","9.199999809265137","9.199999809265137","","1971-09-15T00:00:00Z","","0" +"SO-0251","12.989999771118164","11.420000076293945","","2021-11-14T00:00:00Z","0001-01-01T12:50:00Z","1.5700000524520874" +"NM-16985","25.450000762939453","25.450000762939453","","1941-01-16T00:00:00Z","","0" +"NM-09128","31.299999237060547","31.299999237060547","","1973-06-27T00:00:00Z","","0" +"AB-0215","154.57000732421875","154.57000732421875","","1999-01-13T00:00:00Z","","" +"NM-13127","13.380000114440918","13.380000114440918","","1959-05-27T00:00:00Z","","0" +"NM-02284","10.229999542236328","10.229999542236328","","2002-12-17T00:00:00Z","","0" +"NM-21915","74.30000305175781","74.30000305175781","","2005-04-19T00:00:00Z","","0" +"NM-01782","160.10000610351562","160.10000610351562","","1962-08-14T00:00:00Z","","0" +"MI-0166","24","24","","1950-12-31T00:00:00Z","","0" +"NM-20441","38.290000915527344","38.290000915527344","","1959-06-15T00:00:00Z","","0" +"NM-18347","214.8800048828125","214.8800048828125","P","1954-07-26T00:00:00Z","","0" +"NM-07028","107.66999816894531","107.66999816894531","P","1961-11-27T00:00:00Z","","0" +"NM-17175","65.93000030517578","65.93000030517578","P","1972-01-21T00:00:00Z","","0" +"NM-22709","8.039999961853027","8.039999961853027","Z","2007-01-24T00:00:00Z","","0" +"NM-12434","6.409999847412109","6.409999847412109","","2005-01-10T00:00:00Z","","0" +"NM-10981","220.1300048828125","220.1300048828125","","1981-01-28T00:00:00Z","","0" +"EB-209","65.48999786376953","64.23999786376953","","1979-04-06T00:00:00Z","","1.25" +"UC-0139","170.52999877929688","170.52999877929688","","1995-07-26T00:00:00Z","","0" +"NM-24626","341.69000244140625","341.69000244140625","","1985-02-20T00:00:00Z","","0" +"DE-0111","37.400001525878906","37.400001525878906","","2009-06-09T00:00:00Z","","0" +"NM-02284","9.75","9.75","","2000-01-18T00:00:00Z","","0" +"NM-11047","12.4399995803833","12.4399995803833","","1946-01-19T00:00:00Z","","0" +"NM-06877","19.81999969482422","19.81999969482422","","1964-08-27T00:00:00Z","","0" +"DE-0252","45.90999984741211","45.90999984741211","","2016-04-04T00:00:00Z","","0" +"NM-24644","252.25999450683594","252.25999450683594","","1952-01-15T00:00:00Z","","0" +"EB-221","102.55000305175781","102.55000305175781","","1998-02-11T00:00:00Z","","0" +"NM-00643","110.19000244140625","110.19000244140625","","1983-10-01T00:00:00Z","","0" +"NM-01891","69.97000122070312","69.97000122070312","","1990-06-20T00:00:00Z","","0" +"NM-04085","13.600000381469727","13.600000381469727","","1953-02-18T00:00:00Z","","0" +"NM-12932","292.0400085449219","292.0400085449219","","1947-03-10T00:00:00Z","","0" +"NM-21628","434.8299865722656","434.8299865722656","","2005-06-27T00:00:00Z","","0" +"NM-13162","13.390000343322754","13.390000343322754","","1973-01-12T00:00:00Z","","0" +"NM-02286","9.979999542236328","9.979999542236328","","2003-05-19T00:00:00Z","","0" +"NM-11928","-0.20000000298023224","-0.20000000298023224","","1968-01-18T00:00:00Z","","0" +"NM-13106","7.349999904632568","7.349999904632568","","1975-10-16T00:00:00Z","","0" +"NM-22466","2.700000047683716","2.700000047683716","","2005-04-19T00:00:00Z","","0" +"NM-21480","7.400000095367432","7.400000095367432","","2010-06-16T00:00:00Z","","0" +"NM-28254","35.41999816894531","35.41999816894531","","1977-11-25T00:00:00Z","","0" +"NM-28250","96.12999725341797","96.12999725341797","","2021-05-14T00:00:00Z","","0" +"NM-02831","56.720001220703125","56.720001220703125","","1982-03-01T00:00:00Z","","0" +"NM-02005","7.5","7.5","","1946-10-15T00:00:00Z","","0" +"NM-03188","403.8399963378906","403.8399963378906","","1997-01-03T00:00:00Z","","0" +"NM-28254","9.5","9.5","","2001-01-05T00:00:00Z","","0" +"WL-0091","43.125","40.35499954223633","","1996-11-05T00:00:00Z","","2.7699999809265137" +"NM-01565","-230.38999938964844","-230.38999938964844","","1988-09-22T00:00:00Z","","0" +"EB-012","130","130","","1969-07-14T00:00:00Z","","0" +"NM-00521","52.380001068115234","52.380001068115234","","1954-01-06T00:00:00Z","","0" +"AB-0074","18.040000915527344","18.040000915527344","","2006-10-13T00:00:00Z","","" +"NM-22913","50.060001373291016","50.060001373291016","R","1990-07-17T00:00:00Z","","0" +"BC-0009","149.10000610351562","149.10000610351562","","2018-04-03T00:00:00Z","","0" +"NM-26639","31.860000610351562","31.860000610351562","","2012-08-15T00:00:00Z","","0" +"NM-28252","50.20000076293945","50.20000076293945","","2018-10-25T00:00:00Z","","0" +"NM-02256","5","5","","2002-01-15T00:00:00Z","","0" +"SB-0032","97","97","","1974-02-11T00:00:00Z","","0" +"NM-01948","9.300000190734863","9.300000190734863","","1953-05-15T00:00:00Z","","0" +"NM-20331","30.56999969482422","30.56999969482422","","1957-02-05T00:00:00Z","","0" +"NM-00208","67.25","67.25","","1965-01-13T00:00:00Z","","0" +"NM-24376","158.32000732421875","158.32000732421875","","1998-02-17T00:00:00Z","","0" +"NM-06027","63.97999954223633","63.97999954223633","","1946-03-27T00:00:00Z","","0" +"SM-0048","83.68000030517578","82.18000030517578","","2007-06-13T00:00:00Z","","1.5" +"NM-21308","22.25","22.25","","1958-08-11T00:00:00Z","","0" +"NM-02164","11.170000076293945","11.170000076293945","","2008-07-09T00:00:00Z","","0" +"AB-0037","342.82000732421875","342.82000732421875","","2008-07-11T00:00:00Z","","" +"WL-0086","55.125","53.3650016784668","","1998-01-06T00:00:00Z","","1.7599999904632568" +"NM-12685","40.13999938964844","40.13999938964844","","1994-03-16T00:00:00Z","","0" +"AB-0212","154.17999267578125","154.17999267578125","","2003-03-11T00:00:00Z","","" +"NM-02198","17.790000915527344","17.790000915527344","","2004-05-18T00:00:00Z","","0" +"NM-02314","8","8","","1948-01-15T00:00:00Z","","0" +"NM-00917","28.81999969482422","28.81999969482422","","1961-01-16T00:00:00Z","","0" +"NM-08040","99.55999755859375","99.25999450683594","","2020-02-19T00:00:00Z","0001-01-01T16:41:00Z","0.30000001192092896" +"NM-17752","156.38999938964844","156.38999938964844","","1987-02-05T00:00:00Z","","0" +"TO-0195","170","170","Z","1951-01-05T00:00:00Z","","0" +"NM-27432","33.689998626708984","33.689998626708984","","1940-01-15T00:00:00Z","","0" +"NM-27328","111.08000183105469","111.08000183105469","","1996-08-27T00:00:00Z","","0" +"NM-02532","264.4100036621094","264.4100036621094","P","1974-01-22T00:00:00Z","","0" +"NM-03260","6.889999866485596","6.889999866485596","","1989-07-07T00:00:00Z","","0" +"BC-0175","247.75","247.75","","2013-09-03T00:00:00Z","","0" +"NM-06676","10.199999809265137","10.199999809265137","","1951-09-15T00:00:00Z","","0" +"NM-20305","41.79999923706055","41.79999923706055","","1946-05-13T00:00:00Z","","0" +"NM-11252","166.6199951171875","166.6199951171875","","1964-01-08T00:00:00Z","","0" +"AB-0112","19.219999313354492","19.219999313354492","","2015-09-21T00:00:00Z","","0" +"NM-06596","60.47999954223633","60.47999954223633","","1946-11-09T00:00:00Z","","0" +"BC-0087","152.82000732421875","152.82000732421875","","2019-10-28T00:00:00Z","","0" +"NM-22493","256.239990234375","256.239990234375","","1960-04-05T00:00:00Z","","0" +"NM-05446","79.80999755859375","79.80999755859375","","1955-01-19T00:00:00Z","","0" +"BW-0306","128.41000366210938","128.41000366210938","","1969-01-09T00:00:00Z","","0" +"AB-0114","221.24000549316406","221.24000549316406","","2007-08-02T00:00:00Z","","" +"NM-12105","-37.959999084472656","-37.959999084472656","","1915-02-25T00:00:00Z","","0" +"EB-224","25.110000610351562","25.110000610351562","","1973-10-12T00:00:00Z","","0" +"NM-25508","24.440000534057617","24.440000534057617","","1991-01-31T00:00:00Z","","0" +"NM-23357","128.52999877929688","128.52999877929688","","1955-12-07T00:00:00Z","","0" +"NM-03431","476.0799865722656","476.0799865722656","Z","1999-01-07T00:00:00Z","","0" +"NM-17151","20.6299991607666","20.6299991607666","","1943-01-25T00:00:00Z","","0" +"NM-22708","182.14999389648438","182.14999389648438","","1958-12-12T00:00:00Z","","0" +"NM-03041","41.86000061035156","41.86000061035156","","1962-01-10T00:00:00Z","","0" +"NM-12871","19.799999237060547","19.799999237060547","","1971-03-15T00:00:00Z","","0" +"NM-05793","40.25","40.25","","1941-01-08T00:00:00Z","","0" +"NM-01985","9.699999809265137","9.699999809265137","","1963-09-15T00:00:00Z","","0" +"NM-01140","240.00999450683594","240.00999450683594","","2012-02-07T00:00:00Z","","0" +"NM-25942","205.67999267578125","205.67999267578125","","1975-01-22T00:00:00Z","","0" +"NM-10819","116.41999816894531","116.41999816894531","","1981-01-23T00:00:00Z","","0" +"NM-21832","6.579999923706055","6.579999923706055","Z","2009-07-29T00:00:00Z","","0" +"NM-02231","117.1500015258789","117.1500015258789","","1992-01-29T00:00:00Z","","0" +"NM-01932","348.95001220703125","348.95001220703125","","1967-01-16T00:00:00Z","","0" +"NM-02005","6.199999809265137","6.199999809265137","","1951-07-15T00:00:00Z","","0" +"NM-02186","78.87000274658203","78.87000274658203","","1946-02-02T00:00:00Z","","0" +"NM-28250","89.83000183105469","89.83000183105469","","2008-10-15T00:00:00Z","","0" +"QY-0899","42.099998474121094","42.099998474121094","P","1955-04-14T00:00:00Z","","0" +"NM-13446","15.829999923706055","15.829999923706055","R","1971-03-18T00:00:00Z","","0" +"NM-15636","77.4000015258789","77.4000015258789","","1956-09-18T00:00:00Z","","0" +"NM-10595","57.47999954223633","57.47999954223633","","1956-02-09T00:00:00Z","","0" +"UC-0033","96","96","","1955-01-01T00:00:00Z","","0" +"NM-28023","486.2300109863281","486.2300109863281","S","2015-04-17T00:00:00Z","","0" +"NM-28252","56.25","56.25","","1981-02-15T00:00:00Z","","0" +"SB-0174","131.9600067138672","131.9600067138672","","1956-01-23T00:00:00Z","","0" +"DE-0060","194.19000244140625","191.47999572753906","","1995-07-01T00:00:00Z","","2.7100000381469727" +"NM-01890","90.83000183105469","90.83000183105469","","2012-11-13T00:00:00Z","","0" +"NM-02006","7.699999809265137","7.699999809265137","","1980-06-15T00:00:00Z","","0" +"NM-03419","28.809999465942383","28.809999465942383","Z","1991-09-27T00:00:00Z","","0" +"NM-27552","72.19999694824219","72.19999694824219","","1958-02-20T00:00:00Z","","0" +"NM-20160","75.56999969482422","75.56999969482422","","1962-03-12T00:00:00Z","","0" +"NM-04925","52.060001373291016","52.060001373291016","","1966-01-07T00:00:00Z","","0" +"NM-09682","428.20001220703125","428.20001220703125","","1980-02-01T00:00:00Z","","0" +"NM-07198","14.0600004196167","14.0600004196167","","1982-02-24T00:00:00Z","","0" +"NM-07027","136.02000427246094","136.02000427246094","","1978-02-03T00:00:00Z","","0" +"NM-03990","339.6700134277344","339.6700134277344","","2009-01-27T00:00:00Z","","0" +"DE-0198","50.099998474121094","50.099998474121094","","2007-06-20T00:00:00Z","","0" +"NM-16979","56.189998626708984","56.189998626708984","","1950-09-22T00:00:00Z","","0" +"NM-02807","65.83999633789062","65.83999633789062","","1963-01-11T00:00:00Z","","0" +"TV-154","3.190000057220459","1.690000057220459","","2012-06-06T00:00:00Z","","1.5" +"NM-09402","154.72000122070312","154.72000122070312","","1971-02-16T00:00:00Z","","0" +"SB-0218","211.3000030517578","211.3000030517578","","1997-01-22T00:00:00Z","","0" +"AR-0156","19.84000015258789","18.739999771118164","","2016-11-21T00:00:00Z","0001-01-01T12:00:00Z","1.100000023841858" +"NM-16631","28.950000762939453","28.950000762939453","","1951-01-12T00:00:00Z","","0" +"NM-03386","33.099998474121094","33.099998474121094","","1988-02-19T00:00:00Z","","0" +"TO-0184","29.700000762939453","29.700000762939453","","1941-02-19T00:00:00Z","","0" +"NM-00902","117.58000183105469","117.58000183105469","","1976-08-19T00:00:00Z","","0" +"NM-01592","219.72000122070312","219.72000122070312","","1996-10-15T00:00:00Z","","0" +"NM-11505","135.22999572753906","135.22999572753906","R","1963-07-29T00:00:00Z","","0" +"SA-0232","209.0500030517578","211.4499969482422","","2018-02-19T00:00:00Z","0001-01-01T11:21:00Z","-2.4000000953674316" +"NM-10409","80.33999633789062","80.33999633789062","","1984-01-26T00:00:00Z","","0" +"NM-02976","117.80000305175781","117.80000305175781","","2006-03-05T00:00:00Z","","0" +"NM-02349","17.299999237060547","17.299999237060547","","1959-07-15T00:00:00Z","","0" +"PC-048","52","55","R","1997-10-02T00:00:00Z","","0" +"NM-13258","36.81999969482422","36.81999969482422","","1961-01-19T00:00:00Z","","0" +"AB-0144","465.05999755859375","465.05999755859375","","1987-03-15T00:00:00Z","","" +"NM-09682","419.0899963378906","419.0899963378906","","1977-03-18T00:00:00Z","","0" +"NM-03667","69.19000244140625","69.19000244140625","","1999-06-03T00:00:00Z","","0" +"NM-11942","1.7200000286102295","1.7200000286102295","","1948-07-20T00:00:00Z","","0" +"PC-102","561.0999755859375","559.0999755859375","","2014-05-15T00:00:00Z","","2" +"EB-266","6.829999923706055","6.829999923706055","","2014-07-24T00:00:00Z","","0" +"NM-12095","74.29000091552734","74.29000091552734","T","1976-04-27T00:00:00Z","","0" +"NM-24338","49.099998474121094","49.099998474121094","","1979-08-15T00:00:00Z","","0" +"NM-28251","94.33000183105469","94.33000183105469","","1980-09-25T00:00:00Z","","0" +"NM-06496","72.95999908447266","72.95999908447266","","1959-02-19T00:00:00Z","","0" +"NM-02029","9.300000190734863","9.300000190734863","","1994-12-15T00:00:00Z","","0" +"NM-19774","22.84000015258789","22.84000015258789","P","1946-10-03T00:00:00Z","","0" +"NM-02349","15.199999809265137","15.199999809265137","","1977-06-15T00:00:00Z","","0" +"NM-03336","11.680000305175781","11.680000305175781","","2013-09-04T00:00:00Z","","0" +"NM-15880","126.19999694824219","126.19999694824219","","1975-03-11T00:00:00Z","","0" +"NM-28252","32.400001525878906","32.400001525878906","","1993-02-25T00:00:00Z","","0" +"BC-0040","299.7300109863281","299.7300109863281","","2019-01-10T00:00:00Z","","0" +"NM-28251","72.7300033569336","72.7300033569336","","2016-03-25T00:00:00Z","","0" +"SB-0234","107.0199966430664","107.0199966430664","","1964-01-23T00:00:00Z","","0" +"NM-28234","","","D","2011-10-07T00:00:00Z","","0" +"NM-02813","","","O","2002-08-22T00:00:00Z","","0" +"DE-0258","83.52999877929688","83.52999877929688","","2017-12-13T00:00:00Z","","0" +"NM-04392","98.80999755859375","98.80999755859375","","1970-12-02T00:00:00Z","","0" +"NM-03860","63.540000915527344","63.540000915527344","","1954-11-12T00:00:00Z","","0" +"TB-0191","65.62000274658203","65.17000579833984","","2009-12-19T00:00:00Z","","0.44999998807907104" +"NM-12287","65.16999816894531","65.16999816894531","","1941-01-24T00:00:00Z","","0" +"DE-0113","40.58000183105469","40.58000183105469","","2009-11-30T00:00:00Z","","0" +"NM-01868","10.100000381469727","10.100000381469727","","1959-06-15T00:00:00Z","","0" +"NM-11088","28.09000015258789","28.09000015258789","","1937-10-29T00:00:00Z","","0" +"NM-03364","535","535","","1965-11-01T00:00:00Z","","0" +"NM-01926","7","7","","1972-10-15T00:00:00Z","","0" +"NM-14271","149.6300048828125","149.6300048828125","S","1959-03-16T00:00:00Z","","0" +"NM-00770","110.5999984741211","110.5999984741211","","2013-01-10T00:00:00Z","","0" +"NM-14820","123.20999908447266","123.20999908447266","","1951-01-15T00:00:00Z","","0" +"NM-26498","7.539999961853027","7.539999961853027","","2003-02-05T00:00:00Z","","0" +"NM-28252","63.77000045776367","63.77000045776367","","1973-08-15T00:00:00Z","","0" +"BC-0027","448.9800109863281","448.9800109863281","","2015-08-31T00:00:00Z","","0" +"NM-17372","36.86000061035156","36.86000061035156","","1936-01-10T00:00:00Z","","0" +"EB-264","8.449999809265137","8.449999809265137","Z","1997-10-21T00:00:00Z","","0" +"NM-08289","9.140000343322754","9.140000343322754","","2009-05-13T00:00:00Z","","0" +"NM-18832","298.04998779296875","298.04998779296875","","1957-06-19T00:00:00Z","","0" +"NM-03336","10.779999732971191","10.779999732971191","","1991-04-29T00:00:00Z","","0" +"NM-14296","35.56999969482422","35.56999969482422","","1944-02-09T00:00:00Z","","0" +"NM-02620","13.300000190734863","13.300000190734863","","1980-12-15T00:00:00Z","","0" +"NM-07510","20.06999969482422","20.06999969482422","","1958-05-27T00:00:00Z","","0" +"NM-00185","11.100000381469727","11.100000381469727","","1969-09-15T00:00:00Z","","0" +"NM-25680","-106.1500015258789","-106.1500015258789","","1988-11-03T00:00:00Z","","0" +"NM-28021","476.2799987792969","476.2799987792969","S","2015-04-15T00:00:00Z","","0" +"NM-28021","510.9100036621094","510.9100036621094","S","2015-04-26T00:00:00Z","","0" +"NM-28259","128","128","","2021-03-26T00:00:00Z","","0" +"NM-03916","25.15999984741211","25.15999984741211","","1952-05-15T00:00:00Z","","0" +"NM-03240","73.94000244140625","73.94000244140625","","1954-02-18T00:00:00Z","","0" +"NM-10099","130.22999572753906","130.22999572753906","","1970-10-15T00:00:00Z","","0" +"NM-28019","477.2099914550781","477.2099914550781","S","2015-05-09T00:00:00Z","","0" +"NM-00213","200.0399932861328","200.0399932861328","","1978-10-01T00:00:00Z","","0" +"NM-28250","106.80000305175781","106.80000305175781","","1975-08-25T00:00:00Z","","0" +"NM-06576","112.48999786376953","112.48999786376953","","1963-01-21T00:00:00Z","","0" +"NM-14348","23.889999389648438","23.889999389648438","","1964-01-07T00:00:00Z","","0" +"AB-0067","152.86000061035156","152.86000061035156","","2010-10-07T00:00:00Z","","" +"WL-0086","34.83333206176758","33.073333740234375","","1987-06-17T00:00:00Z","","1.7599999904632568" +"NM-20241","354.7900085449219","354.7900085449219","","1987-03-03T00:00:00Z","","0" +"NM-00951","300.67999267578125","300.67999267578125","","1993-01-08T00:00:00Z","","0" +"NM-01947","","","D","2015-02-11T00:00:00Z","","0" +"NM-28257","66.33000183105469","66.33000183105469","","1963-02-15T00:00:00Z","","0" +"NM-01985","19.299999237060547","19.299999237060547","","1957-07-15T00:00:00Z","","0" +"NM-13218","10","10","","1959-12-09T00:00:00Z","","0" +"DE-0106","35.970001220703125","35.970001220703125","","2006-10-16T00:00:00Z","","0" +"NM-06156","2.640000104904175","2.640000104904175","","1976-07-28T00:00:00Z","","0" +"NM-13946","-9.09000015258789","-9.09000015258789","","1907-06-10T00:00:00Z","","0" +"NM-28255","34.5099983215332","34.5099983215332","","2019-11-15T00:00:00Z","","0" +"NM-04534","87.76000213623047","87.76000213623047","","1963-08-06T00:00:00Z","","0" +"BC-0199","46.09000015258789","46.09000015258789","","2012-11-28T00:00:00Z","","0" +"EB-012","358","358","","1996-05-31T00:00:00Z","","0" +"NM-03386","48.02000045776367","48.02000045776367","","2002-06-06T00:00:00Z","","0" +"EB-207","160.1999969482422","160.1999969482422","","1970-08-11T00:00:00Z","","0" +"NM-04585","71.08999633789062","71.08999633789062","","1949-07-27T00:00:00Z","","0" +"AR-0012","5.429999828338623","5.230000019073486","R","2016-06-01T00:00:00Z","","0.20000000298023224" +"BC-0382","","255.1999969482422","","2023-04-04T00:00:00Z","","1" +"NM-08426","37.130001068115234","37.130001068115234","","1976-01-30T00:00:00Z","","0" +"NM-23413","130.24000549316406","130.24000549316406","","1952-06-25T00:00:00Z","","0" +"NM-13926","18.25","18.25","P","1979-04-26T00:00:00Z","","0" +"NM-04816","70.66999816894531","70.66999816894531","P","1953-02-26T00:00:00Z","","0" +"NM-21219","6.449999809265137","6.449999809265137","","1957-09-19T00:00:00Z","","0" +"NM-02520","4.900000095367432","4.900000095367432","","1953-09-15T00:00:00Z","","0" +"NM-09900","-63.369998931884766","-63.369998931884766","","1912-02-17T00:00:00Z","","0" +"NM-26639","31.709999084472656","31.709999084472656","","2011-11-10T00:00:00Z","","0" +"NM-01247","","","D","2009-08-24T00:00:00Z","","0" +"NM-09081","5.400000095367432","5.400000095367432","","1943-02-01T00:00:00Z","","0" +"NM-10090","132.39999389648438","132.39999389648438","","1970-01-22T00:00:00Z","","0" +"NM-17716","4.710000038146973","4.710000038146973","","1948-04-26T00:00:00Z","","0" +"BC-0042","244.67999267578125","244.67999267578125","","2017-01-25T00:00:00Z","","0" +"NM-01955","5.400000095367432","5.400000095367432","","1980-03-15T00:00:00Z","","0" +"NM-11347","-2.1600000858306885","-2.1600000858306885","","1909-03-23T00:00:00Z","","0" +"DE-0286","91.68000030517578","91.68000030517578","","2018-12-17T00:00:00Z","","0" +"NM-14535","96.72000122070312","96.72000122070312","","1974-07-03T00:00:00Z","","0" +"EB-679","161.1999969482422","161.1999969482422","","1997-02-15T00:00:00Z","","0" +"NM-03344","76.27999877929688","76.27999877929688","R","1990-09-06T00:00:00Z","","0" +"NM-02497","76.55999755859375","76.55999755859375","","2006-02-02T00:00:00Z","","0" +"NM-12002","75.08000183105469","75.08000183105469","","1979-01-03T00:00:00Z","","0" +"NM-02329","60.20000076293945","60.20000076293945","","1993-02-04T00:00:00Z","","0" +"NM-20576","65.7699966430664","65.7699966430664","","1955-11-15T00:00:00Z","","0" +"AB-0075","12.25","12.25","","2011-07-25T00:00:00Z","","" +"NM-05313","61.900001525878906","61.900001525878906","","1946-01-10T00:00:00Z","","0" +"NM-23865","21.56999969482422","21.56999969482422","S","1975-07-31T00:00:00Z","","0" +"DE-0099","93.08000183105469","93.08000183105469","","1999-11-09T00:00:00Z","","0" +"NM-15044","451.9200134277344","451.9200134277344","","1957-04-01T00:00:00Z","","0" +"NM-02501","46.25","46.25","","1937-12-21T00:00:00Z","","0" +"NM-02453","77.2699966430664","77.2699966430664","","1968-01-23T00:00:00Z","","0" +"NM-02536","330.79998779296875","330.79998779296875","","1958-01-30T00:00:00Z","","0" +"NM-02055","164.60000610351562","164.60000610351562","","1997-02-10T00:00:00Z","","0" +"NM-13711","255.6999969482422","255.6999969482422","","1944-07-18T00:00:00Z","","0" +"NM-17716","5.619999885559082","5.619999885559082","","1949-02-01T00:00:00Z","","0" +"NM-02382","54.7599983215332","54.7599983215332","","1966-01-18T00:00:00Z","","0" +"NM-13816","-3.309999942779541","-3.309999942779541","","1926-06-07T00:00:00Z","","0" +"NM-03373","41.5","41.5","","1987-11-25T00:00:00Z","","0" +"SV-0102","148.39999389648438","146.57000732421875","","2019-02-17T00:00:00Z","","1.8300000429153442" +"NM-04632","7.300000190734863","7.300000190734863","","1976-07-15T00:00:00Z","","0" +"DE-0320","32.810001373291016","32.810001373291016","","2008-09-16T00:00:00Z","","0" +"NM-27735","47.7599983215332","47.7599983215332","","1957-06-17T00:00:00Z","","0" +"NM-17220","38.2599983215332","38.2599983215332","","1938-02-12T00:00:00Z","","0" +"NM-11889","1.4700000286102295","1.4700000286102295","","1961-05-01T00:00:00Z","","0" +"NM-23281","87.80000305175781","85.97000122070312","","2017-02-18T00:00:00Z","","1.8300000429153442" +"NM-01955","6.099999904632568","6.099999904632568","","1995-07-15T00:00:00Z","","0" +"DE-0237","103.94000244140625","103.94000244140625","","2010-12-06T00:00:00Z","","0" +"NM-07957","65.02999877929688","65.02999877929688","","1991-06-03T00:00:00Z","","0" +"DE-0232","108.02999877929688","108.02999877929688","","2007-05-16T00:00:00Z","","0" +"NM-11328","53.279998779296875","53.279998779296875","","1981-01-07T00:00:00Z","","0" +"NM-03720","59.0099983215332","59.0099983215332","","1954-03-26T00:00:00Z","","0" +"NM-22941","138.9499969482422","138.9499969482422","","1954-04-02T00:00:00Z","","0" +"DE-0290","81.69999694824219","81.69999694824219","","2018-08-24T00:00:00Z","","0" +"NM-02040","118.27999877929688","118.27999877929688","","1987-01-28T00:00:00Z","","0" +"NM-02004","8.899999618530273","8.899999618530273","","1965-07-15T00:00:00Z","","0" +"TO-0144","70.5999984741211","70.5999984741211","","1946-05-14T00:00:00Z","","0" +"NM-14655","62.15999984741211","62.15999984741211","","1965-01-15T00:00:00Z","","0" +"NM-13819","-3.890000104904175","-3.890000104904175","","1910-09-21T00:00:00Z","","0" +"NM-00428","53.66999816894531","53.66999816894531","","1974-01-08T00:00:00Z","","0" +"NM-13020","14.449999809265137","14.449999809265137","","1957-10-07T00:00:00Z","","0" +"NM-26628","46.88999938964844","46.88999938964844","","1988-11-22T00:00:00Z","","0" +"NM-03372","139.07000732421875","139.07000732421875","","1992-03-12T00:00:00Z","","0" +"NM-02813","189.11000061035156","189.11000061035156","","1963-11-20T00:00:00Z","","0" +"NM-21618","69.9000015258789","69.9000015258789","","1957-10-29T00:00:00Z","","0" +"UC-0088","272.07000732421875","272.07000732421875","","2011-01-27T00:00:00Z","","0" +"NM-00253","22.850000381469727","22.850000381469727","","1964-05-01T00:00:00Z","","0" +"NM-02240","63.040000915527344","63.040000915527344","","1978-01-04T00:00:00Z","","0" +"NM-01868","7.5","7.5","","1994-10-15T00:00:00Z","","0" +"NM-24905","82.91999816894531","82.91999816894531","","1953-09-16T00:00:00Z","","0" +"SB-0231","93.88999938964844","93.88999938964844","","1952-02-07T00:00:00Z","","0" +"NM-06964","787.5700073242188","787.5700073242188","","2014-12-01T00:00:00Z","","0" +"NM-03983","219.5500030517578","219.5500030517578","","1955-05-02T00:00:00Z","","0" +"NM-23797","127.33000183105469","127.33000183105469","","1964-03-03T00:00:00Z","","0" +"NM-26739","235.8300018310547","235.8300018310547","","1959-12-02T00:00:00Z","","0" +"NM-11679","64.94000244140625","64.94000244140625","","1959-11-19T00:00:00Z","","0" +"NM-02702","-11.710000038146973","-11.710000038146973","","2004-11-18T00:00:00Z","","0" +"NM-08524","16.899999618530273","16.899999618530273","","1957-04-15T00:00:00Z","","0" +"SB-0248","32.72999954223633","32.72999954223633","","1956-01-20T00:00:00Z","","0" +"NM-01868","17.200000762939453","17.200000762939453","","1957-03-15T00:00:00Z","","0" +"NM-01448","182","182","","1959-07-27T00:00:00Z","","0" +"NM-24865","275.2099914550781","275.2099914550781","","1960-06-13T00:00:00Z","","0" +"NM-20633","221.9499969482422","221.9499969482422","","1962-03-20T00:00:00Z","","0" +"NM-23380","132.8800048828125","132.8800048828125","","1950-12-13T00:00:00Z","","0" +"NM-00983","311.20001220703125","311.20001220703125","","1978-01-06T00:00:00Z","","0" +"NM-02654","119.72000122070312","119.72000122070312","","1998-08-06T00:00:00Z","","0" +"NM-02729","84.58999633789062","84.58999633789062","","2005-01-19T00:00:00Z","","0" +"NM-20606","7.269999980926514","7.269999980926514","","1957-04-19T00:00:00Z","","0" +"UC-0098","111.1500015258789","111.1500015258789","","2008-09-16T00:00:00Z","","0" +"EB-479","592.219970703125","592.219970703125","P","2000-05-31T00:00:00Z","","0" +"NM-03294","110.33000183105469","110.33000183105469","","1973-02-27T00:00:00Z","","0" +"NM-18859","121","121","","1956-04-04T00:00:00Z","","0" +"NM-21678","355.5299987792969","355.5299987792969","","2008-03-04T00:00:00Z","","0" +"NM-21577","3.9800000190734863","3.9800000190734863","Z","2004-05-07T00:00:00Z","","0" +"NM-01887","70.77999877929688","70.77999877929688","","2010-07-15T00:00:00Z","","0" +"BC-0298","","143.8000030517578","","2023-04-12T00:00:00Z","","1.4299999475479126" +"NM-28257","72.13999938964844","72.13999938964844","","1957-05-25T00:00:00Z","","0" +"NM-02669","58.7400016784668","58.7400016784668","","1974-04-01T00:00:00Z","","0" +"NM-01592","205.8699951171875","205.8699951171875","","1991-10-15T00:00:00Z","","0" +"NM-00969","370.1300048828125","370.1300048828125","","1975-01-06T00:00:00Z","","0" +"NM-02745","207","207","","1975-01-10T00:00:00Z","","0" +"NM-13752","86.26000213623047","86.26000213623047","","1968-01-05T00:00:00Z","","0" +"NM-02062","381.3699951171875","381.3699951171875","","1955-01-22T00:00:00Z","","0" +"NM-04857","35.540000915527344","35.540000915527344","","1949-02-03T00:00:00Z","","0" +"NM-00526","71.2699966430664","71.2699966430664","","1996-01-03T00:00:00Z","","0" +"NM-08447","44.880001068115234","44.880001068115234","","1946-01-31T00:00:00Z","","0" +"NM-03698","217.8000030517578","217.8000030517578","P","1993-01-26T00:00:00Z","","0" +"NM-17716","1.559999942779541","1.559999942779541","","1944-12-25T00:00:00Z","","0" +"NM-00965","47.849998474121094","47.849998474121094","","2014-02-13T00:00:00Z","","0" +"AR-0017","2.819999933242798","2.2199997901916504","","2016-03-15T00:00:00Z","","0.6000000238418579" +"NM-21053","118.41999816894531","118.41999816894531","","1982-01-21T00:00:00Z","","0" +"NM-12718","35.560001373291016","35.560001373291016","","1936-10-16T00:00:00Z","","0" +"NM-27264","68.75","68.75","","1977-01-13T00:00:00Z","","0" +"NM-20388","107.58000183105469","107.58000183105469","","1956-01-13T00:00:00Z","","0" +"NM-28259","139.77999877929688","139.77999877929688","","2000-06-26T00:00:00Z","","0" +"NM-03004","82.05000305175781","82.05000305175781","","1976-01-06T00:00:00Z","","0" +"NM-12014","46.38999938964844","46.38999938964844","","1951-05-21T00:00:00Z","","0" +"AB-0076","6.809999942779541","6.809999942779541","","1998-01-30T00:00:00Z","","" +"NM-02443","87.41999816894531","87.41999816894531","","1997-10-16T00:00:00Z","","0" +"NM-21260","1.8899999856948853","1.8899999856948853","Z","2008-08-06T00:00:00Z","","0" +"NM-13899","2.380000114440918","2.380000114440918","","1975-03-17T00:00:00Z","","0" +"NM-03340","7.119999885559082","7.119999885559082","","1992-04-06T00:00:00Z","","0" +"NM-28257","-9.930000305175781","-9.930000305175781","","1994-10-05T00:00:00Z","","0" +"SV-0108","332.20001220703125","330.95001220703125","","2017-01-23T00:00:00Z","","1.25" +"NM-28252","50.470001220703125","50.470001220703125","","1966-02-15T00:00:00Z","","0" +"NM-28255","22.90999984741211","22.90999984741211","","1980-01-05T00:00:00Z","","0" +"EB-012","423.5","423.5","","1972-03-17T00:00:00Z","","0" +"NM-28254","41.33000183105469","41.33000183105469","","1959-11-15T00:00:00Z","","0" +"DE-0110","40.689998626708984","40.689998626708984","","2008-10-07T00:00:00Z","","0" +"TB-0142","179.44000244140625","177.44000244140625","","2009-10-13T00:00:00Z","","2" +"NM-13901","6.880000114440918","6.880000114440918","","1958-09-09T00:00:00Z","","0" +"SB-0391","25.649999618530273","25.649999618530273","","1994-02-15T00:00:00Z","","0" +"NM-28019","476.29998779296875","476.29998779296875","S","2015-05-08T00:00:00Z","","0" +"NM-01796","5.900000095367432","5.900000095367432","","1985-04-15T00:00:00Z","","0" +"NM-02043","6.300000190734863","6.300000190734863","","1950-10-15T00:00:00Z","","0" +"WL-0090","40.91666793823242","38.53666687011719","","1991-12-12T00:00:00Z","","2.380000114440918" +"TB-0119","39.36000061035156","39.15999984741211","","2009-12-22T00:00:00Z","","0.20000000298023224" +"NM-01586","55.599998474121094","55.599998474121094","","1995-07-24T00:00:00Z","","0" +"NM-10755","64.81999969482422","64.81999969482422","","1960-01-11T00:00:00Z","","0" +"ED-0140","15.5","15.5","","1947-10-10T00:00:00Z","","0" +"NM-09690","-26.40999984741211","-26.40999984741211","","1907-09-03T00:00:00Z","","0" +"BW-0424","36","36","","1968-09-01T00:00:00Z","","0" +"NM-02410","172.38999938964844","172.38999938964844","","1981-01-09T00:00:00Z","","0" +"NM-01079","202.19000244140625","202.19000244140625","","1977-02-15T00:00:00Z","","0" +"NM-21846","4.929999828338623","4.929999828338623","Z","2010-08-19T00:00:00Z","","0" +"NM-04415","391.19000244140625","391.19000244140625","","2016-02-18T00:00:00Z","","0" +"NM-28256","67.13999938964844","67.13999938964844","","1987-02-05T00:00:00Z","","0" +"NM-00212","94.91999816894531","94.91999816894531","","1956-01-06T00:00:00Z","","0" +"NM-15044","454.5299987792969","454.5299987792969","","1966-03-01T00:00:00Z","","0" +"DE-0111","35.060001373291016","35.060001373291016","","2007-08-27T00:00:00Z","","0" +"NM-09509","-71.30000305175781","-71.30000305175781","","1945-01-20T00:00:00Z","","0" +"NM-07652","47.08000183105469","47.08000183105469","","1992-12-04T00:00:00Z","","0" +"NM-04444","22.100000381469727","22.100000381469727","","1983-01-24T00:00:00Z","","0" +"NM-03404","6.300000190734863","6.300000190734863","","2001-03-14T00:00:00Z","","0" +"NM-03667","71.68000030517578","71.68000030517578","","1986-03-06T00:00:00Z","","0" +"NM-02407","28.760000228881836","28.760000228881836","","1945-05-13T00:00:00Z","","0" +"NM-11233","-56.439998626708984","-56.439998626708984","","1910-03-08T00:00:00Z","","0" +"EB-270","156.97000122070312","156.97000122070312","","2006-06-14T00:00:00Z","","0" +"NM-11944","-0.8999999761581421","-0.8999999761581421","","1940-06-15T00:00:00Z","","0" +"BC-0200","249.92999267578125","249.92999267578125","","2015-03-09T00:00:00Z","","0" +"NM-23799","128.6300048828125","128.6300048828125","","1963-05-11T00:00:00Z","","0" +"NM-21557","6.739999771118164","6.739999771118164","","2005-02-14T00:00:00Z","","0" +"NM-28016","491.1700134277344","491.1700134277344","S","2015-05-15T00:00:00Z","","0" +"NM-12490","80.13999938964844","80.13999938964844","","1940-01-26T00:00:00Z","","0" +"NM-03608","201.61000061035156","201.61000061035156","","1967-03-22T00:00:00Z","","0" +"NM-03072","147.2899932861328","147.2899932861328","","1995-01-19T00:00:00Z","","0" +"NM-11121","39.20000076293945","39.20000076293945","P","1976-03-23T00:00:00Z","","0" +"NM-03679","184.33999633789062","184.33999633789062","","1999-04-30T00:00:00Z","","0" +"NM-01868","6.900000095367432","6.900000095367432","","1946-06-15T00:00:00Z","","0" +"SO-0189","9.154999732971191","7.664999961853027","","2021-05-07T00:00:00Z","0001-01-01T17:30:00Z","1.4900000095367432" +"NM-17061","25.860000610351562","25.860000610351562","","1931-07-27T00:00:00Z","","0" +"NM-02296","55.43000030517578","55.43000030517578","","2004-01-13T00:00:00Z","","0" +"NM-01832","53.150001525878906","53.150001525878906","","1995-12-13T00:00:00Z","","0" +"NM-28256","70.58999633789062","70.58999633789062","","1989-01-05T00:00:00Z","","0" +"NM-06156","3.359999895095825","3.359999895095825","","1976-10-04T00:00:00Z","","0" +"NM-12534","16.329999923706055","16.329999923706055","","1944-01-31T00:00:00Z","","0" +"NM-20617","134.14999389648438","134.14999389648438","","1991-11-20T00:00:00Z","","0" +"NM-13464","11.25","11.25","","1962-01-09T00:00:00Z","","0" +"NM-02589","26.65999984741211","26.65999984741211","","1957-01-09T00:00:00Z","","0" +"NM-28259","145.9600067138672","145.9600067138672","","1965-05-05T00:00:00Z","","0" +"NM-21723","30.959999084472656","30.959999084472656","","2011-05-03T00:00:00Z","","0" +"NM-09742","10.649999618530273","10.649999618530273","","2007-11-14T00:00:00Z","","0" +"NM-11017","42.33000183105469","42.33000183105469","","1953-01-13T00:00:00Z","","0" +"NM-02509","85.81999969482422","85.81999969482422","","1993-03-01T00:00:00Z","","0" +"SA-0136","47.40999984741211","45.54999923706055","","2010-01-13T00:00:00Z","","1.8600000143051147" +"EB-608","216.0800018310547","216.0800018310547","","2015-03-25T00:00:00Z","","0" +"NM-21915","68.05000305175781","68.05000305175781","R","1992-04-16T00:00:00Z","","0" +"NM-03335","10.949999809265137","10.949999809265137","","1994-01-12T00:00:00Z","","0" +"NM-21504","7.349999904632568","7.349999904632568","","2002-02-20T00:00:00Z","","0" +"NM-17716","5.460000038146973","5.460000038146973","","1951-05-05T00:00:00Z","","0" +"NM-28257","101.4000015258789","101.4000015258789","","1964-04-05T00:00:00Z","","0" +"NM-05622","76.31999969482422","76.31999969482422","","1944-11-22T00:00:00Z","","0" +"NM-02005","6.099999904632568","6.099999904632568","","2000-05-15T00:00:00Z","","0" +"EB-300","198.07000732421875","198.07000732421875","","2015-10-07T00:00:00Z","","0" +"NM-23350","97.1500015258789","97.1500015258789","R","1947-07-07T00:00:00Z","","0" +"NM-10562","18.200000762939453","18.200000762939453","","1941-01-18T00:00:00Z","","0" +"NM-19008","236.08999633789062","236.08999633789062","","1967-01-26T00:00:00Z","","0" +"NM-13014","229.52999877929688","229.52999877929688","","1941-09-08T00:00:00Z","","0" +"NM-02225","152.4199981689453","152.4199981689453","P","1958-08-04T00:00:00Z","","0" +"NM-12738","114.19999694824219","114.19999694824219","","1963-01-07T00:00:00Z","","0" +"NM-01782","162.3699951171875","162.3699951171875","","1978-01-11T00:00:00Z","","0" +"NM-08758","12.34000015258789","12.34000015258789","","1957-05-08T00:00:00Z","","0" +"NM-27377","-58.75","-58.75","","1912-01-19T00:00:00Z","","0" +"NM-03337","11.369999885559082","11.369999885559082","","1993-04-06T00:00:00Z","","0" +"NM-04632","7.900000095367432","7.900000095367432","","1985-09-15T00:00:00Z","","0" +"UC-0111","200.2899932861328","200.2899932861328","","2012-01-04T00:00:00Z","","0" +"NM-00500","43.970001220703125","43.970001220703125","","1953-01-13T00:00:00Z","","0" +"EB-224","37.83000183105469","37.83000183105469","P","1960-02-15T00:00:00Z","","0" +"NM-16810","24.06999969482422","24.06999969482422","","1942-09-24T00:00:00Z","","0" +"NM-00644","27.200000762939453","27.200000762939453","","1970-02-01T00:00:00Z","","0" +"NM-19296","341.8999938964844","341.8999938964844","","1977-01-04T00:00:00Z","","0" +"NM-24187","94","94","","1976-10-12T00:00:00Z","","0" +"NM-11730","86.80000305175781","86.80000305175781","","1942-01-27T00:00:00Z","","0" +"NM-10058","9.149999618530273","9.149999618530273","","1981-09-30T00:00:00Z","","0" +"BW-0184","36","36","","1969-02-06T00:00:00Z","","0" +"NM-03183","113.0999984741211","113.0999984741211","P","1961-09-11T00:00:00Z","","0" +"SA-0048","25.899999618530273","25.899999618530273","","1996-02-06T00:00:00Z","","0" +"NM-23274","206.5","204.6699981689453","","2015-10-18T00:00:00Z","","1.8300000429153442" +"EB-258","94.48999786376953","94.48999786376953","","1975-07-30T00:00:00Z","","0" +"NM-17338","84.76000213623047","84.76000213623047","","1979-01-06T00:00:00Z","","0" +"NM-16537","9.25","9.25","","1940-01-29T00:00:00Z","","0" +"NM-28235","","","D","2011-06-24T00:00:00Z","","0" +"NM-02233","105.1500015258789","105.1500015258789","","1961-01-10T00:00:00Z","","0" +"NM-28014","498.67999267578125","498.67999267578125","S","2015-05-27T00:00:00Z","","0" +"NM-14770","40.150001525878906","40.150001525878906","","1961-01-17T00:00:00Z","","0" +"NM-02288","4.309999942779541","4.309999942779541","","2011-07-07T00:00:00Z","","0" +"NM-13642","65.56999969482422","65.56999969482422","R","1952-01-29T00:00:00Z","","0" +"NM-28251","77.02999877929688","77.02999877929688","","2020-01-06T00:00:00Z","","0" +"NM-21678","355.3699951171875","355.3699951171875","","2006-07-19T00:00:00Z","","0" +"EB-123","209.74000549316406","206.74000549316406","","2014-02-21T00:00:00Z","","3" +"NM-06653","63.650001525878906","63.650001525878906","","1954-05-21T00:00:00Z","","0" +"NM-01809","140.7100067138672","140.7100067138672","","1977-01-03T00:00:00Z","","0" +"SB-0299","141.30999755859375","141.30999755859375","","2020-01-15T00:00:00Z","","0" +"NM-21697","251.07000732421875","251.07000732421875","S","1984-08-30T00:00:00Z","","0" +"NM-28017","486.1700134277344","486.1700134277344","S","2015-04-15T00:00:00Z","","0" +"SB-0112","162.69000244140625","162.69000244140625","","1972-02-10T00:00:00Z","","0" +"NM-28251","78.02999877929688","78.02999877929688","","2020-05-15T00:00:00Z","","0" +"NM-10294","32.810001373291016","32.810001373291016","","1948-01-16T00:00:00Z","","0" +"NM-04632","8.800000190734863","8.800000190734863","","1984-05-15T00:00:00Z","","0" +"NM-20055","104.63999938964844","104.63999938964844","","1982-02-10T00:00:00Z","","0" +"NM-01904","39.68000030517578","39.68000030517578","","1956-11-10T00:00:00Z","","0" +"NM-02772","120.29000091552734","120.29000091552734","","2000-05-15T00:00:00Z","","0" +"NM-02772","22.90999984741211","22.90999984741211","","1980-12-18T00:00:00Z","","0" +"NM-02005","4.5","4.5","","1962-07-15T00:00:00Z","","0" +"NM-12902","42.13999938964844","42.13999938964844","","1979-01-18T00:00:00Z","","0" +"NM-02225","83.68000030517578","83.68000030517578","","1949-11-18T00:00:00Z","","0" +"TB-0106","53.7400016784668","51.69000244140625","","2010-08-26T00:00:00Z","","2.049999952316284" +"NM-20306","147.10000610351562","147.10000610351562","","1950-06-08T00:00:00Z","","0" +"NM-02995","76.62999725341797","76.62999725341797","","1997-01-08T00:00:00Z","","0" +"NM-02668","38.56999969482422","38.56999969482422","","1957-01-09T00:00:00Z","","0" +"NM-28250","102.73999786376953","102.73999786376953","","1975-03-25T00:00:00Z","","0" +"NM-11888","-2.0299999713897705","-2.0299999713897705","","1966-01-24T00:00:00Z","","0" +"NM-03307","85.3499984741211","85.3499984741211","","1960-09-26T00:00:00Z","","0" +"QY-0143","22","22","","1952-10-22T00:00:00Z","","0" +"NM-28016","490.7900085449219","490.7900085449219","S","2015-05-16T00:00:00Z","","0" +"NM-03391","25.940000534057617","25.940000534057617","","1992-10-29T00:00:00Z","","0" +"NM-21632","450.989990234375","450.989990234375","","2003-03-10T00:00:00Z","","0" +"NM-23683","1181.0999755859375","1181.0999755859375","","2006-09-13T00:00:00Z","","0" +"NM-09929","9.960000038146973","9.960000038146973","","1943-01-26T00:00:00Z","","0" +"TV-167","244.25999450683594","242.6599884033203","","2013-06-05T00:00:00Z","","1.600000023841858" +"NM-23865","20.639999389648438","20.639999389648438","","1982-01-18T00:00:00Z","","0" +"NM-21923","10.3100004196167","10.3100004196167","S","1987-05-27T00:00:00Z","","0" +"NM-02128","123.77999877929688","123.77999877929688","","1979-01-15T00:00:00Z","","0" +"AR-0015","7.78000020980835","12.280000686645508","","2016-03-16T00:00:00Z","","-4.5" +"NM-11486","15.9399995803833","15.9399995803833","","1957-12-17T00:00:00Z","","0" +"NM-06756","14.550000190734863","14.550000190734863","","2015-02-24T00:00:00Z","","0" +"NM-20124","66.55999755859375","66.55999755859375","R","1955-01-14T00:00:00Z","","0" +"NM-06596","51.65999984741211","51.65999984741211","","1941-11-11T00:00:00Z","","0" +"NM-01899","66.08999633789062","66.08999633789062","","2001-09-21T00:00:00Z","","0" +"SB-0299","112.52999877929688","112.52999877929688","","1996-05-20T00:00:00Z","","0" +"NM-08957","56.25","56.25","","1981-03-03T00:00:00Z","","0" +"SO-0244","","","D","2022-08-03T00:00:00Z","0001-01-01T10:52:00Z","0.5699999928474426" +"EB-154","337.9800109863281","333.80999755859375","","2004-12-07T00:00:00Z","","4.170000076293945" +"NM-25547","159.8000030517578","159.8000030517578","","1950-12-15T00:00:00Z","","0" +"NM-01829","322.0799865722656","322.0799865722656","","2004-02-04T00:00:00Z","","0" +"NM-02179","15.720000267028809","15.720000267028809","","1985-02-01T00:00:00Z","","0" +"NM-22546","25.799999237060547","25.799999237060547","","1979-06-07T00:00:00Z","","0" +"NM-06914","65.33999633789062","65.33999633789062","","2003-10-06T00:00:00Z","","0" +"NM-14600","35.86000061035156","35.86000061035156","","2011-01-26T00:00:00Z","","0" +"NM-09165","105.86000061035156","105.86000061035156","","1981-03-11T00:00:00Z","","0" +"NM-02895","255.7100067138672","255.7100067138672","","1957-05-02T00:00:00Z","","0" +"DE-0133","","","D","2006-01-23T00:00:00Z","","0" +"DE-0113","35.560001373291016","35.560001373291016","","2008-04-28T00:00:00Z","","0" +"NM-22840","77.44999694824219","77.44999694824219","","2011-01-14T00:00:00Z","","0" +"NM-26733","128.49000549316406","128.49000549316406","","1971-02-04T00:00:00Z","","0" +"NM-17517","68.62000274658203","68.62000274658203","P","1952-01-24T00:00:00Z","","0" +"SB-0285","97.79000091552734","97.79000091552734","","1974-01-02T00:00:00Z","","0" +"NM-05689","95.25","95.25","","1959-08-10T00:00:00Z","","0" +"NM-19952","47.189998626708984","47.189998626708984","","1977-03-02T00:00:00Z","","0" +"NM-02484","53.68000030517578","53.68000030517578","S","2003-01-22T00:00:00Z","","0" +"NM-21359","246.9199981689453","246.9199981689453","","2001-10-22T00:00:00Z","","0" +"NM-05730","65.58000183105469","65.58000183105469","","1987-02-19T00:00:00Z","","0" +"NM-02484","31.829999923706055","31.829999923706055","","1991-09-06T00:00:00Z","","0" +"NM-14802","106","106","","1975-10-24T00:00:00Z","","0" +"NM-28257","57.630001068115234","57.630001068115234","","1961-03-05T00:00:00Z","","0" +"NM-02530","98.19999694824219","98.19999694824219","","1961-01-23T00:00:00Z","","0" +"NM-11624","82.63999938964844","82.63999938964844","","1981-01-07T00:00:00Z","","0" +"WL-0114","100.08999633789062","100.08999633789062","AA","2023-10-18T00:00:00Z","0001-01-01T13:40:00Z","0" +"NM-20103","14.510000228881836","14.510000228881836","","1944-09-20T00:00:00Z","","0" +"NM-10906","25.600000381469727","25.600000381469727","","1960-11-17T00:00:00Z","","0" +"NM-17716","5.239999771118164","5.239999771118164","","1950-01-08T00:00:00Z","","0" +"NM-26751","203.0399932861328","203.0399932861328","","1968-03-26T00:00:00Z","","0" +"NM-28254","22.75","22.75","","2004-11-24T00:00:00Z","","0" +"NM-02163","13.319999694824219","13.319999694824219","","2010-01-25T00:00:00Z","","0" +"NM-28257","20.15999984741211","20.15999984741211","","2004-09-15T00:00:00Z","","0" +"AB-0106","420.2900085449219","420.2900085449219","","2013-02-07T00:00:00Z","","" +"NM-02285","4.849999904632568","4.849999904632568","","2005-09-08T00:00:00Z","","0" +"NM-22466","100.69999694824219","100.69999694824219","R","1990-02-04T00:00:00Z","","0" +"NM-00095","50.959999084472656","50.959999084472656","","1965-01-27T00:00:00Z","","0" +"NM-00226","50.70000076293945","50.70000076293945","","1975-01-10T00:00:00Z","","0" +"NM-05447","18.8799991607666","18.8799991607666","","1956-09-15T00:00:00Z","","0" +"NM-02648","58.279998779296875","58.279998779296875","","1965-01-08T00:00:00Z","","0" +"NM-10143","31.65999984741211","31.65999984741211","","1942-02-04T00:00:00Z","","0" +"SB-0504","72","72","","1986-08-05T00:00:00Z","","0" +"NM-11941","1.3700000047683716","1.3700000047683716","","1944-06-22T00:00:00Z","","0" +"NM-02101","3.5","3.5","","1981-07-15T00:00:00Z","","0" +"QY-0654","39","39","","1955-08-17T00:00:00Z","","0" +"NM-20136","25.600000381469727","25.600000381469727","","1968-01-24T00:00:00Z","","0" +"NM-18007","241.14999389648438","241.14999389648438","","1993-01-07T00:00:00Z","","0" +"NM-01888","9.420000076293945","9.420000076293945","","2003-06-23T00:00:00Z","","0" +"NM-01796","5.099999904632568","5.099999904632568","","1953-06-15T00:00:00Z","","0" +"NM-17007","48.41999816894531","48.41999816894531","","1977-01-12T00:00:00Z","","0" +"NM-19965","29.1299991607666","29.1299991607666","","1941-09-09T00:00:00Z","","0" +"AB-0066","160.5","160.5","","1998-11-17T00:00:00Z","","" +"NM-13801","-12.550000190734863","-12.550000190734863","","1907-01-03T00:00:00Z","","0" +"NM-28010","498.75","498.75","S","2015-05-18T00:00:00Z","","0" +"NM-07092","42.959999084472656","42.959999084472656","","2003-05-19T00:00:00Z","","0" +"NM-14065","-8.510000228881836","-8.510000228881836","","1910-05-16T00:00:00Z","","0" +"NM-17716","4.820000171661377","4.820000171661377","","1947-08-05T00:00:00Z","","0" +"NM-13602","-14.859999656677246","-14.859999656677246","","1912-05-22T00:00:00Z","","0" +"NM-00645","31.40999984741211","31.40999984741211","","1956-05-08T00:00:00Z","","0" +"NM-02669","66.58000183105469","66.58000183105469","","2002-01-23T00:00:00Z","","0" +"NM-21819","22.3700008392334","22.3700008392334","","1961-08-07T00:00:00Z","","0" +"NM-11044","12.569999694824219","12.569999694824219","","1959-09-21T00:00:00Z","","0" +"NM-07312","144.35000610351562","144.35000610351562","","1969-02-28T00:00:00Z","","0" +"NM-14112","-6.5","-6.5","","1926-04-07T00:00:00Z","","0" +"NM-10726","7.25","7.25","","1962-08-22T00:00:00Z","","0" +"NM-08060","66.23999786376953","66.23999786376953","","1976-01-29T00:00:00Z","","0" +"NM-01204","357.44000244140625","357.44000244140625","","2002-03-19T00:00:00Z","","0" +"NM-12700","24.649999618530273","24.649999618530273","","1986-01-30T00:00:00Z","","0" +"NM-12750","31.610000610351562","31.610000610351562","","1948-11-18T00:00:00Z","","0" +"NM-01895","59.72999954223633","59.72999954223633","","2001-06-29T00:00:00Z","","0" +"MI-0005","143.5399932861328","143.5399932861328","","1947-08-11T00:00:00Z","","0" +"NM-04420","97.91000366210938","97.91000366210938","","1981-03-13T00:00:00Z","","0" +"NM-17716","2.119999885559082","2.119999885559082","","1943-11-18T00:00:00Z","","0" +"NM-21869","39.68000030517578","39.68000030517578","","1984-04-02T00:00:00Z","","0" +"NM-22421","11.890000343322754","11.890000343322754","","1950-12-13T00:00:00Z","","0" +"NM-25794","142.27999877929688","142.27999877929688","","1978-01-25T00:00:00Z","","0" +"AB-0123","546.3300170898438","546.3300170898438","","2006-10-19T00:00:00Z","","" +"NM-28256","172.83999633789062","172.83999633789062","","2007-05-04T00:00:00Z","","0" +"NM-02583","170.74000549316406","170.74000549316406","","1984-02-02T00:00:00Z","","0" +"NM-22276","76.54000091552734","76.54000091552734","","1952-10-08T00:00:00Z","","0" +"NM-01782","130.3000030517578","130.3000030517578","","1995-01-13T00:00:00Z","","0" +"SA-0029","167.72999572753906","167.72999572753906","","1979-02-15T00:00:00Z","","0" +"NM-00325","44.63999938964844","44.63999938964844","","1976-01-30T00:00:00Z","","0" +"AR-0104","5.860000133514404","4.480000019073486","","2016-01-20T00:00:00Z","","1.3799999952316284" +"NM-01868","8.399999618530273","8.399999618530273","","1986-12-15T00:00:00Z","","0" +"WL-0087","68.04166412353516","66.36166381835938","","1999-11-23T00:00:00Z","","1.6799999475479126" +"BW-0485","400","400","","1957-06-08T00:00:00Z","","0" +"NM-16411","136.10000610351562","136.10000610351562","","1961-01-12T00:00:00Z","","0" +"NM-28250","105.4800033569336","105.4800033569336","","1984-06-15T00:00:00Z","","0" +"DE-0098","90.33999633789062","90.33999633789062","","2008-05-20T00:00:00Z","","0" +"NM-07840","54.029998779296875","54.029998779296875","","1967-05-11T00:00:00Z","","0" +"NM-28251","65.83000183105469","65.83000183105469","","1995-11-15T00:00:00Z","","0" +"NM-22966","787.8099975585938","787.8099975585938","","1986-12-23T00:00:00Z","","0" +"AB-0195","521.4000244140625","521.4000244140625","","2015-11-20T00:00:00Z","","0" +"NM-14176","109.9000015258789","109.9000015258789","P","1970-09-02T00:00:00Z","","0" +"DE-0062","9.680000305175781","7.600000381469727","","1991-12-01T00:00:00Z","","2.0799999237060547" +"NM-06615","451.6300048828125","451.6300048828125","","1974-03-01T00:00:00Z","","0" +"BC-0061","202.6999969482422","202.6999969482422","","2016-03-07T00:00:00Z","","0" +"NM-28256","284.95001220703125","284.95001220703125","","2003-07-25T00:00:00Z","","0" +"NM-11984","28.030000686645508","28.030000686645508","","1961-01-11T00:00:00Z","","0" +"NM-02352","8.399999618530273","8.399999618530273","","1998-02-27T00:00:00Z","","0" +"NM-01953","83.27999877929688","83.27999877929688","","1997-01-30T00:00:00Z","","0" +"NM-27898","52.81999969482422","52.81999969482422","","1981-04-29T00:00:00Z","","0" +"NM-03031","91.3499984741211","91.3499984741211","","1986-01-10T00:00:00Z","","0" +"NM-09983","286.44000244140625","286.44000244140625","","1984-02-07T00:00:00Z","","0" +"NM-20451","195.27000427246094","195.27000427246094","","2010-04-05T00:00:00Z","","0" +"NM-01889","15.210000038146973","15.210000038146973","","1994-12-20T00:00:00Z","","0" +"NM-28259","123.86000061035156","123.86000061035156","","1960-04-05T00:00:00Z","","0" +"NM-13899","8.010000228881836","8.010000228881836","","1957-12-30T00:00:00Z","","0" +"NM-04232","33.18000030517578","33.18000030517578","P","1958-04-23T00:00:00Z","","0" +"NM-17674","29.889999389648438","29.889999389648438","","1958-01-25T00:00:00Z","","0" +"OG-0041","411.5299987792969","411.5299987792969","","2023-01-24T00:00:00Z","0001-01-01T11:25:00Z","0" +"NM-05447","17.59000015258789","17.59000015258789","","1954-07-22T00:00:00Z","","0" +"NM-02684","29.93000030517578","29.93000030517578","","1979-02-12T00:00:00Z","","0" +"NM-01565","-253.69000244140625","-253.69000244140625","","1989-02-01T00:00:00Z","","0" +"NM-28256","231.2899932861328","231.2899932861328","","2009-08-14T00:00:00Z","","0" +"NM-21947","6.929999828338623","6.929999828338623","","1960-01-26T00:00:00Z","","0" +"DE-0389","56.38999938964844","53.959999084472656","","2013-10-15T00:00:00Z","","2.430000066757202" +"EB-233","320","320","","1993-08-01T00:00:00Z","","0" +"NM-16704","34.15999984741211","34.15999984741211","","2015-01-28T00:00:00Z","","0" +"NM-00213","181.25999450683594","181.25999450683594","","1962-08-01T00:00:00Z","","0" +"NM-03330","22.93000030517578","22.93000030517578","","1995-01-12T00:00:00Z","","0" +"NM-02349","16.399999618530273","16.399999618530273","","1991-02-01T00:00:00Z","","0" +"NM-03428","6.71999979019165","6.71999979019165","","2004-09-13T00:00:00Z","","0" +"NM-13536","86.48999786376953","86.48999786376953","","1981-02-11T00:00:00Z","","0" +"NM-03667","68.8499984741211","68.8499984741211","","1997-02-27T00:00:00Z","","0" +"NM-01204","367.8399963378906","367.8399963378906","T","2011-11-12T00:00:00Z","","0" +"NM-21544","373.29998779296875","373.29998779296875","","1993-08-03T00:00:00Z","","0" +"NM-21065","149.24000549316406","149.24000549316406","","1982-01-13T00:00:00Z","","0" +"NM-02594","48.54999923706055","48.54999923706055","","2002-02-12T00:00:00Z","","0" +"NM-24775","81.69999694824219","81.69999694824219","","1965-08-17T00:00:00Z","","0" +"NM-00253","21.260000228881836","21.260000228881836","","1966-11-01T00:00:00Z","","0" +"NM-28251","68.26000213623047","68.26000213623047","","2001-10-25T00:00:00Z","","0" +"NM-01534","50.84000015258789","50.84000015258789","","1989-07-19T00:00:00Z","","0" +"NM-00590","50.79999923706055","50.79999923706055","","1994-02-15T00:00:00Z","","0" +"NM-03089","320.260009765625","320.260009765625","","2015-01-29T00:00:00Z","","0" +"NM-01926","8.899999618530273","8.899999618530273","","1957-06-15T00:00:00Z","","0" +"NM-26211","87","87","","1952-05-30T00:00:00Z","","0" +"MB-0003","","","P","2024-07-09T00:00:00Z","0001-01-01T09:45:00Z","1" +"NM-04065","204.13999938964844","204.13999938964844","","1968-01-27T00:00:00Z","","0" +"NM-23147","52.81999969482422","52.81999969482422","","1944-11-06T00:00:00Z","","0" +"AB-0093","501.6099853515625","501.6099853515625","","2014-03-04T00:00:00Z","","" +"NM-10092","63.97999954223633","63.97999954223633","P","1951-03-23T00:00:00Z","","0" +"NM-20108","12.930000305175781","12.930000305175781","","1961-02-10T00:00:00Z","","0" +"NM-27276","246.3000030517578","246.3000030517578","","1973-10-02T00:00:00Z","","0" +"NM-00953","53.099998474121094","53.099998474121094","","1967-01-19T00:00:00Z","","0" +"NM-05976","68.95999908447266","68.95999908447266","","1957-01-14T00:00:00Z","","0" +"NM-00375","259.9700012207031","259.9700012207031","","1994-03-23T00:00:00Z","","0" +"NM-02106","169.66000366210938","169.66000366210938","","1992-02-04T00:00:00Z","","0" +"NM-03667","77.27999877929688","77.27999877929688","","1978-01-27T00:00:00Z","","0" +"NM-02728","93.2300033569336","93.2300033569336","","1969-01-15T00:00:00Z","","0" +"SB-0124","33.70000076293945","33.70000076293945","","1973-05-30T00:00:00Z","","0" +"BC-0008","78.0999984741211","78.0999984741211","","2015-08-31T00:00:00Z","","0" +"NM-07275","9.609999656677246","9.609999656677246","","1965-01-12T00:00:00Z","","0" +"NM-02167","10.569999694824219","10.569999694824219","","2001-01-26T00:00:00Z","","0" +"NM-01926","7.300000190734863","7.300000190734863","","1980-04-15T00:00:00Z","","0" +"NM-03920","104.08999633789062","104.08999633789062","","1980-01-10T00:00:00Z","","0" +"NM-03307","74.6500015258789","74.6500015258789","","1953-08-18T00:00:00Z","","0" +"NM-08071","8.600000381469727","8.600000381469727","","1977-11-15T00:00:00Z","","0" +"AB-0112","21.440000534057617","21.440000534057617","","2013-05-24T00:00:00Z","","" +"NM-00643","109.4000015258789","109.4000015258789","","1982-01-19T00:00:00Z","","0" +"NM-01983","101.94999694824219","101.94999694824219","P","1949-07-28T00:00:00Z","","0" +"TB-0137","188.69000244140625","188.38999938964844","","2011-09-07T00:00:00Z","","0.30000001192092896" +"NM-02005","8.5","8.5","","1968-11-15T00:00:00Z","","0" +"DE-0096","90.55999755859375","90.55999755859375","","2017-11-13T00:00:00Z","","0" +"NM-20042","55.47999954223633","55.47999954223633","P","1957-03-18T00:00:00Z","","0" +"NM-02694","327.69000244140625","327.69000244140625","","1977-02-23T00:00:00Z","","0" +"NM-20347","131.10000610351562","131.10000610351562","","1968-01-19T00:00:00Z","","0" +"NM-28253","2.0399999618530273","2.0399999618530273","","2000-01-05T00:00:00Z","","0" +"NM-02702","-24.59000015258789","-24.59000015258789","","1994-11-04T00:00:00Z","","0" +"NM-01986","13.199999809265137","13.199999809265137","","1956-11-15T00:00:00Z","","0" +"NM-13453","21.899999618530273","21.899999618530273","","1984-02-22T00:00:00Z","","0" +"NM-11776","44.45000076293945","44.45000076293945","","1937-11-29T00:00:00Z","","0" +"NM-01985","8.600000381469727","8.600000381469727","","1984-10-15T00:00:00Z","","0" +"NM-22239","26.15999984741211","26.15999984741211","","1991-03-19T00:00:00Z","","0" +"NM-17463","67.23999786376953","67.23999786376953","","1977-01-20T00:00:00Z","","0" +"NM-27631","45.5099983215332","45.5099983215332","P","1982-03-31T00:00:00Z","","0" +"NM-28254","22.100000381469727","22.100000381469727","","2006-12-15T00:00:00Z","","0" +"NM-14045","35.77000045776367","35.77000045776367","","1960-01-13T00:00:00Z","","0" +"NM-02349","13.899999618530273","13.899999618530273","","1986-11-15T00:00:00Z","","0" +"NM-00014","63.13999938964844","63.13999938964844","","1986-08-20T00:00:00Z","","0" +"NM-21359","247.02000427246094","247.02000427246094","","2004-11-16T00:00:00Z","","0" +"NM-28252","48.84000015258789","48.84000015258789","","2015-10-05T00:00:00Z","","0" +"SO-0262","2.0399999618530273","0.8700000047683716","","2019-05-14T00:00:00Z","0001-01-01T13:40:00Z","1.1699999570846558" +"NM-20896","23.329999923706055","23.329999923706055","","1948-08-10T00:00:00Z","","0" +"NM-00907","76.37999725341797","76.37999725341797","","2014-04-22T00:00:00Z","","0" +"NM-12600","46.33000183105469","46.33000183105469","","1937-09-30T00:00:00Z","","0" +"NM-01894","55.47999954223633","55.47999954223633","","2005-03-23T00:00:00Z","","0" +"NM-02513","11.739999771118164","11.739999771118164","","1966-01-08T00:00:00Z","","0" +"NM-00521","65.4000015258789","65.4000015258789","","1990-01-05T00:00:00Z","","0" +"NM-13488","-18.329999923706055","-18.329999923706055","","1913-01-01T00:00:00Z","","0" +"NM-27541","23.530000686645508","23.530000686645508","","1952-01-18T00:00:00Z","","0" +"NM-00389","126.4000015258789","126.4000015258789","","1974-07-30T00:00:00Z","","0" +"NM-02553","77.70999908447266","77.70999908447266","","1963-08-30T00:00:00Z","","0" +"NM-15044","451.80999755859375","451.80999755859375","","1961-05-01T00:00:00Z","","0" +"NM-00768","350.07000732421875","350.07000732421875","","2014-09-17T00:00:00Z","","0" +"NM-01898","73.98999786376953","73.98999786376953","","1999-03-03T00:00:00Z","","0" +"NM-13275","175.32000732421875","175.32000732421875","","1958-02-07T00:00:00Z","","0" +"NM-02622","160.1199951171875","160.1199951171875","","1966-07-01T00:00:00Z","","0" +"NM-13726","-29.8799991607666","-29.8799991607666","","1912-09-05T00:00:00Z","","0" +"NM-14291","-13.050000190734863","-13.050000190734863","","1913-07-01T00:00:00Z","","0" +"NM-01272","568.5499877929688","568.5499877929688","P","1957-08-10T00:00:00Z","","0" +"AB-0161","485.3299865722656","485.3299865722656","","2016-06-08T00:00:00Z","","0" +"NM-03037","92.19000244140625","92.19000244140625","","1990-01-11T00:00:00Z","","0" +"NM-20809","109.81999969482422","109.81999969482422","","1960-02-15T00:00:00Z","","0" +"LC-011","32.90999984741211","31.65999984741211","R","2011-10-05T00:00:00Z","","1.25" +"NM-20308","78.9000015258789","78.9000015258789","","1951-11-30T00:00:00Z","","0" +"NM-19497","17.260000228881836","17.260000228881836","","1947-05-29T00:00:00Z","","0" +"NM-02679","46.689998626708984","46.689998626708984","","2004-01-23T00:00:00Z","","0" +"NM-00837","78.37000274658203","78.37000274658203","","1988-06-24T00:00:00Z","","0" +"NM-23105","10.539999961853027","10.539999961853027","Z","2009-08-05T00:00:00Z","","0" +"NM-01886","83.08999633789062","83.08999633789062","","2010-06-02T00:00:00Z","","0" +"LC-026","6.590000152587891","7.090000152587891","","2015-06-01T00:00:00Z","","-0.5" +"NM-13818","-7.929999828338623","-7.929999828338623","","1909-09-07T00:00:00Z","","0" +"NM-05315","178.5","178.5","P","1964-04-13T00:00:00Z","","0" +"EB-263","3.7899999618530273","3.7899999618530273","","2010-03-17T00:00:00Z","","0" +"NM-01948","5.900000095367432","5.900000095367432","","1974-08-15T00:00:00Z","","0" +"EB-122","623.7100219726562","623.7100219726562","P","2002-06-30T00:00:00Z","","0" +"NM-07340","108.5999984741211","108.5999984741211","","1967-01-12T00:00:00Z","","0" +"TV-275","245.64999389648438","243.34999084472656","","2006-12-01T00:00:00Z","","2.299999952316284" +"NM-02580","93.55000305175781","93.55000305175781","","1981-01-14T00:00:00Z","","0" +"NM-15991","49.75","49.75","","1970-02-09T00:00:00Z","","0" +"NM-02842","24.90999984741211","24.90999984741211","P","1956-01-09T00:00:00Z","","0" +"NM-02265","242.1699981689453","242.1699981689453","","1974-06-12T00:00:00Z","","0" +"NM-02383","46.11000061035156","46.11000061035156","","1973-03-07T00:00:00Z","","0" +"NM-03551","5.800000190734863","5.800000190734863","","1992-01-30T00:00:00Z","","0" +"NM-19993","27.6299991607666","27.6299991607666","","1946-05-14T00:00:00Z","","0" +"EB-012","200","200","","1989-06-30T00:00:00Z","","0" +"NM-00474","51.79999923706055","51.79999923706055","","1959-01-17T00:00:00Z","","0" +"NM-01786","163.91000366210938","163.91000366210938","","1971-01-19T00:00:00Z","","0" +"NM-12711","29.3799991607666","29.3799991607666","","1946-01-29T00:00:00Z","","0" +"NM-28252","50.13999938964844","50.13999938964844","","2013-11-25T00:00:00Z","","0" +"NM-05972","25.700000762939453","25.700000762939453","","1936-02-03T00:00:00Z","","0" +"NM-06408","14.130000114440918","14.130000114440918","","1965-07-09T00:00:00Z","","0" +"TV-274","86.25","84.0999984741211","","2002-08-01T00:00:00Z","","2.1500000953674316" +"NM-12353","28.729999542236328","28.729999542236328","","1930-02-19T00:00:00Z","","0" +"AB-0140","240.85000610351562","240.85000610351562","","2006-04-07T00:00:00Z","","0" +"NM-00559","96.48999786376953","96.48999786376953","","1981-01-23T00:00:00Z","","0" +"NM-02938","70.9000015258789","70.9000015258789","","1976-02-05T00:00:00Z","","0" +"NM-00974","353.2300109863281","353.2300109863281","","1982-08-31T00:00:00Z","","0" +"AB-0192","784","784","","1983-05-02T00:00:00Z","","" +"NM-00641","41.5","41.5","","1956-01-12T00:00:00Z","","0" +"NM-12103","-49.5099983215332","-49.5099983215332","","1912-02-09T00:00:00Z","","0" +"NM-03423","26.93000030517578","26.93000030517578","","2006-03-01T00:00:00Z","","0" +"SO-0173","6.489999771118164","5.929999828338623","","2021-03-13T00:00:00Z","0001-01-01T15:35:00Z","0.5600000023841858" +"NM-20389","89.4800033569336","89.4800033569336","","1958-03-19T00:00:00Z","","0" +"NM-10600","38.41999816894531","38.41999816894531","R","1954-01-15T00:00:00Z","","0" +"NM-11470","75.63999938964844","75.63999938964844","","1981-03-11T00:00:00Z","","0" +"NM-01990","12.34000015258789","12.34000015258789","","2008-01-17T00:00:00Z","","0" +"NM-13118","9.640000343322754","9.640000343322754","","1979-05-28T00:00:00Z","","0" +"NM-11209","33.369998931884766","33.369998931884766","","1950-01-19T00:00:00Z","","0" +"NM-02197","31.920000076293945","31.920000076293945","","2011-09-06T00:00:00Z","","0" +"AB-0179","178.91000366210938","178.91000366210938","","1999-01-13T00:00:00Z","","" +"DE-0356","71.4000015258789","68.9800033569336","","2015-04-21T00:00:00Z","","2.4200000762939453" +"NM-08823","80.94999694824219","80.94999694824219","","1986-02-20T00:00:00Z","","0" +"NM-05507","80","80","","1939-05-01T00:00:00Z","","0" +"NM-17552","18.6299991607666","18.6299991607666","","1943-01-26T00:00:00Z","","0" +"NM-15307","129.11000061035156","129.11000061035156","","1985-01-08T00:00:00Z","","0" +"NM-04419","117.20999908447266","117.20999908447266","","1978-01-09T00:00:00Z","","0" +"NM-01899","71.08000183105469","71.08000183105469","","2002-02-21T00:00:00Z","","0" +"NM-28252","55.54999923706055","55.54999923706055","","1965-11-15T00:00:00Z","","0" +"NM-01284","123.73999786376953","123.73999786376953","","1948-04-05T00:00:00Z","","0" +"NM-13001","16.940000534057617","16.940000534057617","","1981-03-04T00:00:00Z","","0" +"AB-0070","147.97000122070312","147.97000122070312","","1997-06-09T00:00:00Z","","" +"NM-26476","27.979999542236328","27.979999542236328","","1988-06-08T00:00:00Z","","0" +"NM-12599","114.36000061035156","114.36000061035156","","1979-05-08T00:00:00Z","","0" +"NM-05793","43.27000045776367","43.27000045776367","","1944-06-12T00:00:00Z","","0" +"NM-02556","105.02999877929688","105.02999877929688","","1993-08-02T00:00:00Z","","0" +"NM-02207","9.800000190734863","9.800000190734863","","1953-06-15T00:00:00Z","","0" +"NM-02626","16.8700008392334","16.8700008392334","","1974-01-15T00:00:00Z","","0" +"NM-11747","180.07000732421875","180.07000732421875","","1979-02-22T00:00:00Z","","0" +"NM-28100","123.6500015258789","123.6500015258789","","1947-07-08T00:00:00Z","","0" +"NM-14217","12.920000076293945","12.920000076293945","","1963-09-04T00:00:00Z","","0" +"AB-0102","572.4099731445312","572.4099731445312","","2015-01-08T00:00:00Z","","0" +"BC-0329","282.8800048828125","282.8800048828125","","2020-05-03T00:00:00Z","","0" +"NM-06344","181.1699981689453","181.1699981689453","","1961-10-02T00:00:00Z","","0" +"NM-20272","310.0299987792969","310.0299987792969","","1956-05-18T00:00:00Z","","0" +"NM-01897","10.460000038146973","10.460000038146973","","1998-02-17T00:00:00Z","","0" +"SB-0299","121.12000274658203","121.12000274658203","","2000-03-25T00:00:00Z","","0" +"NM-11284","245.1999969482422","245.1999969482422","","1976-03-29T00:00:00Z","","0" +"NM-20154","71.08000183105469","71.08000183105469","","1962-01-04T00:00:00Z","","0" +"NM-05997","284.1099853515625","284.1099853515625","","1981-03-30T00:00:00Z","","0" +"NM-05893","69.70999908447266","69.70999908447266","","1956-01-04T00:00:00Z","","0" +"SB-0299","147.75","147.75","","2016-05-25T00:00:00Z","","0" +"AB-0037","332.07000732421875","332.07000732421875","","2009-03-03T00:00:00Z","","" +"NM-17885","168.3699951171875","168.3699951171875","","1971-01-06T00:00:00Z","","0" +"NM-00367","133.47999572753906","133.47999572753906","","1971-07-20T00:00:00Z","","0" +"NM-01447","251.36000061035156","251.36000061035156","R","1999-02-19T00:00:00Z","","0" +"NM-21982","193.6999969482422","193.6999969482422","","2007-01-29T00:00:00Z","","0" +"NM-01700","35.84000015258789","35.84000015258789","","1963-08-09T00:00:00Z","","0" +"EB-483","583.6799926757812","583.6799926757812","P","2007-01-31T00:00:00Z","","0" +"NM-03341","6.449999809265137","6.449999809265137","Z","2005-11-30T00:00:00Z","","0" +"NM-26443","92.80000305175781","92.80000305175781","","1981-01-29T00:00:00Z","","0" +"NM-18773","35.56999969482422","35.56999969482422","","1974-08-23T00:00:00Z","","0" +"NM-21566","5.869999885559082","5.869999885559082","X","2003-08-15T00:00:00Z","","0" +"BC-0252","109.69999694824219","109.69999694824219","","2018-09-12T00:00:00Z","","0" +"NM-02527","12.600000381469727","12.600000381469727","","1957-10-15T00:00:00Z","","0" +"NM-12319","44.13999938964844","44.13999938964844","","1961-03-07T00:00:00Z","","0" +"UC-0037","183.92999267578125","183.92999267578125","","1974-02-07T00:00:00Z","","0" +"BC-0151","132.10000610351562","132.10000610351562","","2019-01-10T00:00:00Z","","0" +"NM-01900","318.69000244140625","318.69000244140625","","1999-01-27T00:00:00Z","","0" +"NM-01401","140.5500030517578","140.5500030517578","","2003-04-28T00:00:00Z","","0" +"WL-0021","42.22999954223633","41.529998779296875","","2011-11-01T00:00:00Z","","0.699999988079071" +"WL-0137","88.16000366210938","86.06000518798828","","2021-10-13T00:00:00Z","0001-01-01T09:29:00Z","2.0999999046325684" +"NM-04038","13.199999809265137","13.199999809265137","","1956-01-18T00:00:00Z","","0" +"NM-15605","31.530000686645508","31.530000686645508","","1999-02-09T00:00:00Z","","0" +"NM-28254","38.369998931884766","38.369998931884766","","1964-01-05T00:00:00Z","","0" +"NM-21915","68.80999755859375","68.80999755859375","R","1992-01-14T00:00:00Z","","0" +"NM-14600","34.439998626708984","34.439998626708984","R","1994-02-08T00:00:00Z","","0" +"SB-0442","172.1999969482422","172.1999969482422","","2007-07-25T00:00:00Z","","0" +"NM-13576","21.969999313354492","21.969999313354492","","1986-02-18T00:00:00Z","","0" +"BC-0034","49.90999984741211","49.90999984741211","","2007-12-05T00:00:00Z","","0" +"NM-21634","482.94000244140625","482.94000244140625","","1992-04-09T00:00:00Z","","0" +"NM-17948","25.270000457763672","25.270000457763672","","1962-01-16T00:00:00Z","","0" +"NM-01896","18.110000610351562","18.110000610351562","","2013-05-29T00:00:00Z","","0" +"DE-0121","31.450000762939453","31.450000762939453","","2006-01-04T00:00:00Z","","0" +"NM-08439","55","55","","1956-05-01T00:00:00Z","","0" +"NM-00644","14.430000305175781","14.430000305175781","","1991-11-26T00:00:00Z","","0" +"NM-00921","7.170000076293945","7.170000076293945","","1962-03-07T00:00:00Z","","0" +"NM-20164","48.2400016784668","48.2400016784668","","1948-10-01T00:00:00Z","","0" +"NM-13899","10.59000015258789","10.59000015258789","","1962-11-13T00:00:00Z","","0" +"NM-28252","21.190000534057617","21.190000534057617","","1949-05-05T00:00:00Z","","0" +"NM-00041","189.17999267578125","189.17999267578125","","1960-01-25T00:00:00Z","","0" +"NM-27673","74.88999938964844","74.88999938964844","","1982-01-11T00:00:00Z","","0" +"PC-102","566","564","","2013-07-15T00:00:00Z","","2" +"NM-02794","73.01000213623047","73.01000213623047","","1987-08-19T00:00:00Z","","0" +"NM-14059","-21.790000915527344","-21.790000915527344","","1910-03-03T00:00:00Z","","0" +"NM-11944","1.2300000190734863","1.2300000190734863","","1954-01-05T00:00:00Z","","0" +"ED-0246","64.80000305175781","64.80000305175781","","1947-02-06T00:00:00Z","","0" +"NM-14861","87.77999877929688","87.77999877929688","","1989-12-01T00:00:00Z","","0" +"NM-06392","113.3499984741211","113.3499984741211","","1961-05-24T00:00:00Z","","0" +"NM-28416","69.41999816894531","69.41999816894531","","2020-06-29T00:00:00Z","0001-01-01T13:39:00Z","0" +"NM-02233","103.19999694824219","103.19999694824219","","1960-01-14T00:00:00Z","","0" +"NM-07652","84.01000213623047","84.01000213623047","","1966-01-25T00:00:00Z","","0" +"BC-0063","","365.8999938964844","","2021-03-20T00:00:00Z","","1.75" +"NM-17168","38.33000183105469","38.33000183105469","","1944-01-20T00:00:00Z","","0" +"NM-02683","121.86000061035156","121.86000061035156","","1984-02-08T00:00:00Z","","0" +"NM-13441","-5.909999847412109","-5.909999847412109","","1912-05-22T00:00:00Z","","0" +"NM-28255","94.91000366210938","94.91000366210938","","1990-08-25T00:00:00Z","","0" +"NM-14597","191.52000427246094","191.52000427246094","","1996-01-12T00:00:00Z","","0" +"NM-28258","158.14999389648438","158.14999389648438","","2008-07-15T00:00:00Z","","0" +"NM-21992","282.6499938964844","282.6499938964844","","1963-01-04T00:00:00Z","","0" +"NM-08758","8.279999732971191","8.279999732971191","","1951-11-14T00:00:00Z","","0" +"NM-02135","67","67","","1940-09-09T00:00:00Z","","0" +"NM-02006","7.400000095367432","7.400000095367432","","1992-04-15T00:00:00Z","","0" +"EB-012","186","186","","1988-12-31T00:00:00Z","","0" +"NM-05752","54","54","","1947-09-10T00:00:00Z","","0" +"SM-0068","258.6499938964844","258.6499938964844","","1961-05-02T00:00:00Z","","0" +"SM-0142","615","613.4199829101562","","2007-06-05T00:00:00Z","","1.5800000429153442" +"NM-02527","9.399999618530273","9.399999618530273","","1959-01-15T00:00:00Z","","0" +"NM-11973","52.380001068115234","52.380001068115234","","1955-01-08T00:00:00Z","","0" +"NM-28250","105.2699966430664","105.2699966430664","","1981-10-05T00:00:00Z","","0" +"NM-16575","40.68000030517578","40.68000030517578","R","1962-06-13T00:00:00Z","","0" +"NM-08524","11.100000381469727","11.100000381469727","","1977-11-15T00:00:00Z","","0" +"NM-02807","53.18000030517578","53.18000030517578","","1954-01-29T00:00:00Z","","0" +"NM-21923","10.460000038146973","10.460000038146973","","1983-11-21T00:00:00Z","","0" +"NM-20138","41.7400016784668","41.7400016784668","","1944-03-27T00:00:00Z","","0" +"NM-03243","370.6700134277344","370.6700134277344","","2004-02-25T00:00:00Z","","0" +"NM-28259","32.27000045776367","32.27000045776367","","1948-06-25T00:00:00Z","","0" +"NM-05623","73.51000213623047","73.51000213623047","","1940-05-08T00:00:00Z","","0" +"WL-0087","52.91666793823242","51.23666763305664","","2009-10-27T00:00:00Z","","1.6799999475479126" +"NM-22532","492.1199951171875","492.1199951171875","Z","2000-03-20T00:00:00Z","","0" +"NM-02260","51.150001525878906","51.150001525878906","","1989-07-11T00:00:00Z","","0" +"NM-04145","114.04000091552734","114.04000091552734","","1968-01-16T00:00:00Z","","0" +"NM-28257","3.549999952316284","3.549999952316284","","1983-11-25T00:00:00Z","","0" +"NM-21333","39.38999938964844","39.38999938964844","","1958-11-20T00:00:00Z","","0" +"NM-00185","11.600000381469727","11.600000381469727","","1980-11-15T00:00:00Z","","0" +"NM-03332","10.920000076293945","10.920000076293945","Z","1991-03-07T00:00:00Z","","0" +"NM-03006","102.41999816894531","102.41999816894531","","1985-01-14T00:00:00Z","","0" +"NM-00730","","","D","2008-04-30T00:00:00Z","","0" +"SA-0103","244.4499969482422","241.77999877929688","R","2013-02-19T00:00:00Z","","2.6700000762939453" +"NM-21500","203.89999389648438","203.89999389648438","","2012-12-06T00:00:00Z","","0" +"NM-09085","-78.38999938964844","-78.38999938964844","","1909-02-27T00:00:00Z","","0" +"NM-08265","24.170000076293945","24.170000076293945","","1949-01-04T00:00:00Z","","0" +"NM-14396","5.989999771118164","5.989999771118164","","1975-04-21T00:00:00Z","","0" +"EB-414","192.58999633789062","192.58999633789062","","2014-07-25T00:00:00Z","","0" +"NM-14838","31.700000762939453","31.700000762939453","","1976-02-12T00:00:00Z","","0" +"NM-02523","56.54999923706055","56.54999923706055","","1991-01-30T00:00:00Z","","0" +"EB-151","280.1300048828125","277.9700012207031","","1998-08-24T00:00:00Z","","2.1600000858306885" +"NM-10442","68.4000015258789","68.4000015258789","","1991-02-26T00:00:00Z","","0" +"NM-00802","150.60000610351562","150.60000610351562","","2010-07-26T00:00:00Z","","0" +"NM-02265","241.99000549316406","241.99000549316406","","1969-09-23T00:00:00Z","","0" +"NM-28254","24.200000762939453","24.200000762939453","","2012-01-05T00:00:00Z","","0" +"NM-13223","66.12999725341797","66.12999725341797","","1939-03-07T00:00:00Z","","0" +"NM-02674","13.380000114440918","13.380000114440918","","1959-01-20T00:00:00Z","","0" +"NM-12223","54.599998474121094","54.599998474121094","P","1971-02-26T00:00:00Z","","0" +"NM-04662","79.52999877929688","79.52999877929688","","1950-01-05T00:00:00Z","","0" +"NM-23396","34.130001068115234","34.130001068115234","","1961-10-06T00:00:00Z","","0" +"NM-02493","71.08999633789062","71.08999633789062","","1969-01-13T00:00:00Z","","0" +"NM-03152","162.27999877929688","162.27999877929688","","2009-01-15T00:00:00Z","","0" +"NM-13213","5.900000095367432","5.900000095367432","","1968-08-02T00:00:00Z","","0" +"NM-02758","316.6700134277344","316.6700134277344","","1975-01-10T00:00:00Z","","0" +"AR-0187","10.329999923706055","8.930000305175781","","2018-10-02T00:00:00Z","0001-01-01T13:48:00Z","1.399999976158142" +"NM-02116","95.31999969482422","95.31999969482422","","1955-11-15T00:00:00Z","","0" +"NM-11358","5.460000038146973","5.460000038146973","","1975-01-27T00:00:00Z","","0" +"QY-0393","44.099998474121094","44.099998474121094","","1944-09-27T00:00:00Z","","0" +"NM-13643","107.44999694824219","107.44999694824219","","1979-02-07T00:00:00Z","","0" +"NM-21461","7.570000171661377","7.570000171661377","","2006-07-25T00:00:00Z","","0" +"NM-02911","93.9800033569336","93.9800033569336","","1969-01-21T00:00:00Z","","0" +"NM-22691","6.429999828338623","6.429999828338623","Z","2009-10-30T00:00:00Z","","0" +"NM-06731","347.79998779296875","347.79998779296875","","2012-01-18T00:00:00Z","","0" +"SO-0154","12.279999732971191","11.469999313354492","","2021-10-21T00:00:00Z","0001-01-01T14:50:00Z","0.8100000023841858" +"NM-05437","141","141","P","1963-08-26T00:00:00Z","","0" +"NM-00385","39.900001525878906","39.900001525878906","","1955-05-27T00:00:00Z","","0" +"EB-478","186","186","P","1994-01-31T00:00:00Z","","0" +"NM-02620","8.800000190734863","8.800000190734863","","1999-09-15T00:00:00Z","","0" +"NM-11216","43.04999923706055","43.04999923706055","","2005-02-04T00:00:00Z","","0" +"NM-01926","6.099999904632568","6.099999904632568","","1988-01-15T00:00:00Z","","0" +"NM-28257","4.650000095367432","4.650000095367432","","2007-10-05T00:00:00Z","","0" +"NM-12338","79.29000091552734","79.29000091552734","","1958-08-25T00:00:00Z","","0" +"NM-28255","25.40999984741211","25.40999984741211","","1985-11-05T00:00:00Z","","0" +"NM-28259","85.5999984741211","85.5999984741211","","1982-02-25T00:00:00Z","","0" +"NM-14549","30.34000015258789","30.34000015258789","","1976-05-26T00:00:00Z","","0" +"NM-12527","37.84000015258789","37.84000015258789","","1949-07-28T00:00:00Z","","0" +"NM-06506","137.10000610351562","137.10000610351562","","1948-01-15T00:00:00Z","","0" +"NM-28253","13.84000015258789","13.84000015258789","","2009-01-26T00:00:00Z","","0" +"NM-27690","121.48999786376953","121.48999786376953","","1956-01-09T00:00:00Z","","0" +"NM-22911","121.0999984741211","121.0999984741211","","1954-05-31T00:00:00Z","","0" +"NM-01882","119.23999786376953","119.23999786376953","","1980-01-14T00:00:00Z","","0" +"NM-20160","52.349998474121094","52.349998474121094","","1945-08-03T00:00:00Z","","0" +"NM-11388","42.099998474121094","42.099998474121094","","1934-05-15T00:00:00Z","","0" +"NM-06220","132.72000122070312","132.72000122070312","","1947-03-22T00:00:00Z","","0" +"NM-02281","32.2599983215332","32.2599983215332","","2009-05-28T00:00:00Z","","0" +"NM-03747","44.25","44.25","","1948-11-23T00:00:00Z","","0" +"EB-169","294.1700134277344","293.57000732421875","","2003-05-07T00:00:00Z","","0.6000000238418579" +"NM-28019","476.79998779296875","476.79998779296875","S","2015-05-06T00:00:00Z","","0" +"NM-19997","76.94000244140625","76.94000244140625","P","1946-02-06T00:00:00Z","","0" +"NM-10174","6.510000228881836","6.510000228881836","","1976-01-15T00:00:00Z","","0" +"NM-14396","6.119999885559082","6.119999885559082","","1980-04-18T00:00:00Z","","0" +"NM-06676","10","10","","1961-07-15T00:00:00Z","","0" +"NM-01723","174.2899932861328","174.2899932861328","","2012-03-06T00:00:00Z","","0" +"NM-17572","65.83999633789062","65.83999633789062","","1987-01-13T00:00:00Z","","0" +"TO-0119","59.900001525878906","59.900001525878906","","1949-11-17T00:00:00Z","","0" +"NM-10745","59.31999969482422","59.31999969482422","","1957-01-10T00:00:00Z","","0" +"AB-0067","151.64999389648438","151.64999389648438","","2011-06-01T00:00:00Z","","" +"NM-10978","-32.189998626708984","-32.189998626708984","","1909-09-27T00:00:00Z","","0" +"NM-05520","120.77999877929688","120.77999877929688","","1962-01-18T00:00:00Z","","0" +"NM-05628","82.5999984741211","82.5999984741211","","1942-01-09T00:00:00Z","","0" +"NM-20438","326.510009765625","326.510009765625","","1967-02-01T00:00:00Z","","0" +"NM-26621","132.50999450683594","132.50999450683594","","2012-10-10T00:00:00Z","","0" +"NM-01914","19.3700008392334","19.3700008392334","","1979-01-22T00:00:00Z","","0" +"NM-16358","110.47000122070312","110.47000122070312","","1962-01-16T00:00:00Z","","0" +"NM-01565","-269.8399963378906","-269.8399963378906","","1988-05-09T00:00:00Z","","0" +"NM-24925","26.010000228881836","26.010000228881836","","1972-03-10T00:00:00Z","","0" +"SV-0062","305.8999938964844","303.566650390625","","2013-09-13T00:00:00Z","","2.3333332538604736" +"NM-03420","28.530000686645508","28.530000686645508","T","1984-01-30T00:00:00Z","","0" +"NM-03242","100.58999633789062","100.58999633789062","","1957-12-05T00:00:00Z","","0" +"NM-13862","-5.619999885559082","-5.619999885559082","","1910-06-03T00:00:00Z","","0" +"NM-02217","31.81999969482422","31.81999969482422","","1949-09-05T00:00:00Z","","0" +"NM-12496","12.800000190734863","12.800000190734863","","1961-07-17T00:00:00Z","","0" +"NM-17338","84.80000305175781","84.80000305175781","","1978-01-05T00:00:00Z","","0" +"NM-23584","290","290","","1983-10-06T00:00:00Z","","0" +"NM-13106","10.199999809265137","10.199999809265137","","1958-09-09T00:00:00Z","","0" +"BC-0007","","366.6000061035156","","2021-10-20T00:00:00Z","","2.1600000858306885" +"NM-02173","87.9800033569336","87.9800033569336","","1990-01-08T00:00:00Z","","0" +"NM-23468","142.16000366210938","142.16000366210938","","1947-06-05T00:00:00Z","","0" +"SB-0299","123.22000122070312","123.22000122070312","","1990-04-30T00:00:00Z","","0" +"NM-13007","243.32000732421875","243.32000732421875","","1941-03-31T00:00:00Z","","0" +"NM-03091","74.72000122070312","74.72000122070312","","2007-02-06T00:00:00Z","","0" +"NM-05516","16.399999618530273","16.399999618530273","","1979-10-15T00:00:00Z","","0" +"NM-02382","60.310001373291016","60.310001373291016","","1972-01-14T00:00:00Z","","0" +"NM-02547","63.900001525878906","63.900001525878906","","1966-08-03T00:00:00Z","","0" +"NM-28257","63.20000076293945","63.20000076293945","","1958-04-05T00:00:00Z","","0" +"NM-02158","10.600000381469727","10.600000381469727","","2003-04-15T00:00:00Z","","0" +"NM-11795","35.97999954223633","35.97999954223633","","1943-12-01T00:00:00Z","","0" +"AB-0066","167.33999633789062","167.33999633789062","","2010-12-06T00:00:00Z","","" +"AB-0075","10.039999961853027","10.039999961853027","","2014-10-07T00:00:00Z","","" +"NM-14183","18.059999465942383","18.059999465942383","","1938-08-02T00:00:00Z","","0" +"NM-04933","153.1999969482422","153.1999969482422","P","1957-05-21T00:00:00Z","","0" +"NM-02487","7.699999809265137","7.699999809265137","","1995-11-15T00:00:00Z","","0" +"NM-00575","67.93000030517578","67.93000030517578","","1991-04-04T00:00:00Z","","0" +"NM-00244","10.800000190734863","10.800000190734863","","1990-02-06T00:00:00Z","","0" +"BC-0321","315.20001220703125","315.20001220703125","","2019-10-30T00:00:00Z","","0" +"NM-17716","2.9100000858306885","2.9100000858306885","","1944-08-11T00:00:00Z","","0" +"LC-025","7.590000152587891","7.940000057220459","AA","2023-04-13T00:00:00Z","0001-01-01T09:12:00Z","-0.3499999940395355" +"NM-00366","197.6999969482422","197.6999969482422","","1964-08-01T00:00:00Z","","0" +"NM-04133","102.9000015258789","102.9000015258789","","1955-04-27T00:00:00Z","","0" +"NM-01947","5","5","","1958-08-15T00:00:00Z","","0" +"NM-00680","57.38999938964844","57.38999938964844","","1960-01-13T00:00:00Z","","0" +"NM-07486","36.13999938964844","36.13999938964844","","1976-02-24T00:00:00Z","","0" +"NM-20683","56","56","P","1952-08-07T00:00:00Z","","0" +"NM-13819","-2.1600000858306885","-2.1600000858306885","","1911-06-03T00:00:00Z","","0" +"QY-0373","183.6999969482422","183.6999969482422","","1953-09-25T00:00:00Z","","0" +"NM-03002","56.790000915527344","56.790000915527344","","1963-01-22T00:00:00Z","","0" +"NM-17202","28.1299991607666","28.1299991607666","","1933-01-14T00:00:00Z","","0" +"NM-02207","10.800000190734863","10.800000190734863","","1986-02-01T00:00:00Z","","0" +"NM-23402","115.7699966430664","115.7699966430664","","1983-03-07T00:00:00Z","","0" +"AR-0016","5.409999847412109","4.359999656677246","","2017-01-25T00:00:00Z","0001-01-01T12:25:00Z","1.0499999523162842" +"NM-01961","93.51000213623047","93.51000213623047","","1955-05-23T00:00:00Z","","0" +"NM-12666","17.649999618530273","17.649999618530273","","1950-11-09T00:00:00Z","","0" +"NM-24071","35.70000076293945","35.70000076293945","","1974-12-19T00:00:00Z","","0" +"NM-01286","69.51000213623047","69.51000213623047","","1952-08-26T00:00:00Z","","0" +"NM-10224","45.15999984741211","45.15999984741211","","1991-02-21T00:00:00Z","","0" +"NM-00558","100.54000091552734","100.54000091552734","","2013-12-11T00:00:00Z","","0" +"NM-13408","-35.650001525878906","-35.650001525878906","","1909-09-24T00:00:00Z","","0" +"NM-20386","155.24000549316406","155.24000549316406","","1986-10-08T00:00:00Z","","0" +"NM-01750","75.80000305175781","75.80000305175781","","1965-01-09T00:00:00Z","","0" +"NM-14802","92.05999755859375","92.05999755859375","","1964-01-07T00:00:00Z","","0" +"NM-07282","91.5999984741211","91.5999984741211","R","1968-04-17T00:00:00Z","","0" +"NM-22089","135.8300018310547","135.8300018310547","","1949-11-04T00:00:00Z","","0" +"EB-485","412.1000061035156","411.1000061035156","P","2006-09-30T00:00:00Z","","1" +"NM-04700","82.9000015258789","82.9000015258789","","1964-01-08T00:00:00Z","","0" +"NM-16476","184","184","","1965-06-03T00:00:00Z","","0" +"NM-28250","84.2300033569336","84.2300033569336","","2007-03-05T00:00:00Z","","0" +"NM-01887","71.54000091552734","71.54000091552734","","2014-10-30T00:00:00Z","","0" +"NM-10166","115.44000244140625","115.44000244140625","","1966-01-12T00:00:00Z","","0" +"NM-18663","344.6600036621094","344.6600036621094","","1997-02-21T00:00:00Z","","0" +"NM-28417","161.42999267578125","161.42999267578125","","2016-09-29T00:00:00Z","","0" +"NM-21631","439.69000244140625","439.69000244140625","","2008-06-24T00:00:00Z","","0" +"UC-0139","161.30999755859375","161.30999755859375","","2006-08-16T00:00:00Z","","0" +"BC-0271","","277.8999938964844","","2021-10-20T00:00:00Z","","1.6699999570846558" +"NM-00917","32.77000045776367","32.77000045776367","","1978-01-06T00:00:00Z","","0" +"NM-17716","0.7099999785423279","0.7099999785423279","","1942-10-03T00:00:00Z","","0" +"NM-28253","28.84000015258789","28.84000015258789","","1978-11-25T00:00:00Z","","0" +"SA-0452","60.599998474121094","60.599998474121094","","1952-10-30T00:00:00Z","","0" +"NM-21920","","","W","2016-02-18T00:00:00Z","","0" +"NM-02207","9.100000381469727","9.100000381469727","","1999-02-11T00:00:00Z","","0" +"NM-02167","13.720000267028809","13.720000267028809","","2009-11-24T00:00:00Z","","0" +"SB-0299","113.19000244140625","113.19000244140625","","1998-03-05T00:00:00Z","","0" +"NM-02614","545.7000122070312","545.7000122070312","","1983-09-28T00:00:00Z","","0" +"EB-288","195","195","","1998-03-30T00:00:00Z","","0" +"NM-13315","40.29999923706055","40.29999923706055","","1961-01-09T00:00:00Z","","0" +"NM-14020","44.2400016784668","44.2400016784668","","1979-01-17T00:00:00Z","","0" +"NM-17716","2.9700000286102295","2.9700000286102295","","1947-01-18T00:00:00Z","","0" +"NM-01204","346.79998779296875","346.79998779296875","","1988-11-17T00:00:00Z","","0" +"NM-28250","91.87000274658203","91.87000274658203","","1987-11-25T00:00:00Z","","0" +"DE-0110","38.40999984741211","38.40999984741211","","2009-03-24T00:00:00Z","","0" +"NM-03240","91.87000274658203","91.87000274658203","","1966-02-16T00:00:00Z","","0" +"NM-20138","42.83000183105469","42.83000183105469","","1944-08-21T00:00:00Z","","0" +"NM-00294","8.039999961853027","8.039999961853027","","1963-07-25T00:00:00Z","","0" +"NM-02207","12.100000381469727","12.100000381469727","","1985-04-15T00:00:00Z","","0" +"NM-07828","29.1299991607666","29.1299991607666","","1935-06-15T00:00:00Z","","0" +"NM-20620","26.31999969482422","26.31999969482422","","1941-09-09T00:00:00Z","","0" +"NM-00486","63.970001220703125","63.970001220703125","","2016-01-05T00:00:00Z","","0" +"NM-26728","118.1500015258789","118.1500015258789","","1988-03-15T00:00:00Z","","0" +"NM-28016","491.19000244140625","491.19000244140625","S","2015-05-16T00:00:00Z","","0" +"SO-0158","10.630000114440918","9.649999618530273","","2021-08-19T00:00:00Z","0001-01-01T16:10:00Z","0.9800000190734863" +"NM-27720","54.2599983215332","54.2599983215332","","1954-01-26T00:00:00Z","","0" +"NM-13461","-31.030000686645508","-31.030000686645508","","1907-12-07T00:00:00Z","","0" +"NM-02685","14.100000381469727","14.100000381469727","","2004-01-20T00:00:00Z","","0" +"NM-23149","71.08999633789062","71.08999633789062","","1948-10-05T00:00:00Z","","0" +"NM-01908","154.27999877929688","154.27999877929688","","1979-01-05T00:00:00Z","","0" +"NM-28154","40.77000045776367","40.77000045776367","","1943-02-04T00:00:00Z","","0" +"WL-0089","39.125","36.57500076293945","","1988-09-22T00:00:00Z","","2.549999952316284" +"SO-0132","7.130000114440918","6.470000267028809","","2021-10-25T00:00:00Z","0001-01-01T14:30:00Z","0.6600000262260437" +"NM-00385","38.869998931884766","38.869998931884766","","1944-07-26T00:00:00Z","","0" +"NM-28258","113.12999725341797","113.12999725341797","","2005-01-25T00:00:00Z","","0" +"NM-06433","124.9000015258789","124.9000015258789","","1987-01-13T00:00:00Z","","0" +"NM-16735","9.140000343322754","9.140000343322754","","1951-11-27T00:00:00Z","","0" +"NM-28250","103.08000183105469","103.08000183105469","","1980-02-25T00:00:00Z","","0" +"TV-246","264.9599914550781","262.9100036621094","","2012-06-19T00:00:00Z","","2.049999952316284" +"NM-18499","213.25","213.25","","1964-01-13T00:00:00Z","","0" +"NM-08071","9.399999618530273","9.399999618530273","","1964-06-15T00:00:00Z","","0" +"NM-01872","9","9","","1962-05-15T00:00:00Z","","0" +"NM-17099","27.959999084472656","27.959999084472656","","1937-01-12T00:00:00Z","","0" +"NM-28205","136.7899932861328","136.7899932861328","","1996-01-24T00:00:00Z","","0" +"NM-02520","6.800000190734863","6.800000190734863","","1979-12-15T00:00:00Z","","0" +"NM-08322","265.510009765625","265.510009765625","","1973-01-29T00:00:00Z","","0" +"NM-17716","8.539999961853027","8.539999961853027","","1940-09-29T00:00:00Z","","0" +"NM-13118","14.1899995803833","14.1899995803833","","1958-11-04T00:00:00Z","","0" +"NM-28255","30.56999969482422","30.56999969482422","","1965-12-15T00:00:00Z","","0" +"NM-09605","107.06999969482422","107.06999969482422","","1963-07-29T00:00:00Z","","0" +"SD-0129","34.099998474121094","34.099998474121094","","1962-07-26T00:00:00Z","","0" +"NM-28255","55.81999969482422","55.81999969482422","","1954-05-05T00:00:00Z","","0" +"BC-0114","241.8300018310547","241.8300018310547","","2019-04-25T00:00:00Z","","0" +"NM-02427","72.75","72.75","","2000-01-22T00:00:00Z","","0" +"NM-11979","30.809999465942383","30.809999465942383","","1945-01-13T00:00:00Z","","0" +"NM-02741","134.89999389648438","134.89999389648438","","1976-02-10T00:00:00Z","","0" +"NM-03986","215.72999572753906","215.72999572753906","","1949-09-03T00:00:00Z","","0" +"NM-01337","86.5999984741211","86.5999984741211","","1996-11-26T00:00:00Z","","0" +"NM-11000","80.01000213623047","80.01000213623047","R","1981-01-07T00:00:00Z","","0" +"NM-13092","7.630000114440918","7.630000114440918","","1970-09-25T00:00:00Z","","0" +"NM-02004","8.199999809265137","8.199999809265137","","1972-11-15T00:00:00Z","","0" +"NM-17527","49.88999938964844","49.88999938964844","R","1949-09-27T00:00:00Z","","0" +"NM-12191","-40.27000045776367","-40.27000045776367","","1907-06-25T00:00:00Z","","0" +"NM-22577","34.75","34.75","Z","1997-08-07T00:00:00Z","","0" +"NM-28252","50.79999923706055","50.79999923706055","","2021-03-26T00:00:00Z","","0" +"NM-03014","85.36000061035156","85.36000061035156","","1989-01-06T00:00:00Z","","0" +"NM-09696","63.18000030517578","63.18000030517578","","1960-11-18T00:00:00Z","","0" +"NM-04726","176.82000732421875","176.82000732421875","S","1982-01-29T00:00:00Z","","0" +"NM-20562","3.619999885559082","3.619999885559082","","1941-07-12T00:00:00Z","","0" +"SB-0218","217.88999938964844","217.88999938964844","","1989-02-08T00:00:00Z","","0" +"NM-14346","0.8999999761581421","0.8999999761581421","","1913-07-17T00:00:00Z","","0" +"SB-0244","66.45999908447266","66.45999908447266","","1962-02-12T00:00:00Z","","0" +"NM-28251","69.62999725341797","69.62999725341797","","1995-08-25T00:00:00Z","","0" +"NM-28250","92.12999725341797","92.12999725341797","","2014-02-05T00:00:00Z","","0" +"AB-0213","155","155","","1997-03-07T00:00:00Z","","" +"NM-15044","454.4700012207031","454.4700012207031","","1970-09-01T00:00:00Z","","0" +"NM-01926","5.599999904632568","5.599999904632568","","1946-02-15T00:00:00Z","","0" +"NM-02518","5.400000095367432","5.400000095367432","","1974-07-15T00:00:00Z","","0" +"NM-10872","-63.369998931884766","-63.369998931884766","","1908-12-22T00:00:00Z","","0" +"SB-0174","143.55999755859375","143.55999755859375","","1971-12-08T00:00:00Z","","0" +"NM-17716","0.4399999976158142","0.4399999976158142","","1942-07-05T00:00:00Z","","0" +"NM-28257","67.94999694824219","67.94999694824219","","1958-06-05T00:00:00Z","","0" +"NM-19001","142.64999389648438","142.64999389648438","","1962-03-08T00:00:00Z","","0" +"BC-0035","109.3499984741211","109.3499984741211","","2014-03-04T00:00:00Z","","0" +"NM-28257","-4.619999885559082","-4.619999885559082","","2014-01-15T00:00:00Z","","0" +"NM-08951","534.530029296875","534.530029296875","","1957-03-25T00:00:00Z","","0" +"NM-28015","498.6300048828125","498.6300048828125","S","2015-05-15T00:00:00Z","","0" +"NM-28257","69.30000305175781","69.30000305175781","","1963-01-05T00:00:00Z","","0" +"NM-08842","41.349998474121094","41.349998474121094","","1960-09-02T00:00:00Z","","0" +"NM-17618","6.460000038146973","6.460000038146973","","1943-05-23T00:00:00Z","","0" +"NM-13906","-22.950000762939453","-22.950000762939453","","1907-12-05T00:00:00Z","","0" +"NM-24607","1.399999976158142","1.399999976158142","","1987-11-09T00:00:00Z","","0" +"NM-13935","-8.800000190734863","-8.800000190734863","","1912-02-24T00:00:00Z","","0" +"NM-03463","208.7899932861328","208.7899932861328","","1953-02-18T00:00:00Z","","0" +"NM-00853","65.86000061035156","65.86000061035156","","1994-02-17T00:00:00Z","","0" +"NM-00367","120.27999877929688","120.27999877929688","","1982-01-01T00:00:00Z","","0" +"NM-01977","104.5199966430664","104.5199966430664","","1977-03-02T00:00:00Z","","0" +"NM-10769","57.040000915527344","57.040000915527344","","1963-06-01T00:00:00Z","","0" +"NM-03380","66.33000183105469","66.33000183105469","","1994-02-10T00:00:00Z","","0" +"NM-16800","39.20000076293945","39.20000076293945","","1971-12-14T00:00:00Z","","0" +"EB-220","127.19999694824219","127.19999694824219","","1980-06-10T00:00:00Z","","0" +"NM-02622","161.99000549316406","161.99000549316406","","1973-01-10T00:00:00Z","","0" +"NM-02071","23.68000030517578","23.68000030517578","","1971-01-26T00:00:00Z","","0" +"NM-22252","396.3800048828125","396.3800048828125","","2014-12-03T00:00:00Z","","0" +"SB-0299","131.8300018310547","131.8300018310547","","2014-02-15T00:00:00Z","","0" +"NM-17618","15.039999961853027","15.039999961853027","","1940-07-11T00:00:00Z","","0" +"NM-10439","35.029998779296875","35.029998779296875","","1941-01-17T00:00:00Z","","0" +"NM-16982","2.319999933242798","2.319999933242798","R","1965-09-28T00:00:00Z","","0" +"NM-01899","63.97999954223633","63.97999954223633","","1997-12-16T00:00:00Z","","0" +"NM-00189","47.560001373291016","47.560001373291016","","1978-01-03T00:00:00Z","","0" +"BC-0382","","254.39999389648438","","2021-11-06T00:00:00Z","","1" +"NM-00405","63.5","63.5","","1986-01-09T00:00:00Z","","0" +"NM-17469","33.15999984741211","33.15999984741211","","1952-01-26T00:00:00Z","","0" +"NM-03903","330.20001220703125","330.20001220703125","","1975-08-22T00:00:00Z","","0" +"NM-02101","8.100000381469727","8.100000381469727","","1950-03-15T00:00:00Z","","0" +"NM-02831","65.94000244140625","65.94000244140625","","1972-04-01T00:00:00Z","","0" +"NM-01872","14.800000190734863","14.800000190734863","","1955-03-15T00:00:00Z","","0" +"NM-11331","12.050000190734863","12.050000190734863","","1968-10-10T00:00:00Z","","0" +"NM-26289","165.14999389648438","165.14999389648438","","1981-01-31T00:00:00Z","","0" +"NM-01337","83.33000183105469","83.33000183105469","","1994-04-28T00:00:00Z","","0" +"NM-01033","75.94000244140625","75.94000244140625","","2015-07-27T00:00:00Z","","0" +"SB-0299","143.02000427246094","143.02000427246094","","2005-07-05T00:00:00Z","","0" +"NM-02702","18.350000381469727","18.350000381469727","","1989-11-15T00:00:00Z","","0" +"NM-08870","19.799999237060547","19.799999237060547","","1954-03-29T00:00:00Z","","0" +"NM-02005","8.899999618530273","8.899999618530273","","1964-07-15T00:00:00Z","","0" +"NM-01947","2.799999952316284","2.799999952316284","","1961-07-15T00:00:00Z","","0" +"NM-05309","7.099999904632568","7.099999904632568","","1949-05-15T00:00:00Z","","0" +"NM-07689","345","345","","1955-02-15T00:00:00Z","","0" +"NM-10725","136.10000610351562","136.10000610351562","","1986-01-14T00:00:00Z","","0" +"NM-00485","63.529998779296875","63.529998779296875","","1986-02-07T00:00:00Z","","0" +"NM-27200","114.7300033569336","114.7300033569336","","2007-08-24T00:00:00Z","","0" +"NM-21544","372.70001220703125","372.70001220703125","","1993-01-06T00:00:00Z","","0" +"NM-28257","-2","-2","","1988-02-05T00:00:00Z","","0" +"NM-16983","74.7300033569336","74.7300033569336","","1986-12-04T00:00:00Z","","0" +"NM-03220","41.20000076293945","41.20000076293945","P","1956-05-07T00:00:00Z","","0" +"NM-14271","147.05999755859375","147.05999755859375","","1957-11-20T00:00:00Z","","0" +"NM-27492","369.3399963378906","369.3399963378906","","2005-01-20T00:00:00Z","","0" +"NM-05347","10","10","","1982-11-15T00:00:00Z","","0" +"NM-28259","99.05000305175781","99.05000305175781","","2005-11-23T00:00:00Z","","0" +"SB-0053","75.69999694824219","75.69999694824219","","1991-12-05T00:00:00Z","","0" +"SO-0213","15.020000457763672","14.270000457763672","","2020-08-14T00:00:00Z","0001-01-01T11:47:00Z","0.75" +"NM-07145","86.52999877929688","86.52999877929688","","2004-10-05T00:00:00Z","","0" +"TV-218","213.8699951171875","213.26998901367188","","2013-09-06T00:00:00Z","","0.6000000238418579" +"NM-01291","86.22000122070312","86.22000122070312","","1976-08-11T00:00:00Z","","0" +"NM-28014","498.739990234375","498.739990234375","S","2015-05-18T00:00:00Z","","0" +"NM-07881","12.319999694824219","12.319999694824219","","1948-05-24T00:00:00Z","","0" +"NM-10092","36.09000015258789","36.09000015258789","","1948-03-25T00:00:00Z","","0" +"NM-02022","105.6500015258789","105.6500015258789","","1979-01-03T00:00:00Z","","0" +"NM-03839","16.6299991607666","16.6299991607666","","1954-11-10T00:00:00Z","","0" +"NM-03258","87.27999877929688","87.27999877929688","","2000-01-11T00:00:00Z","","0" +"NM-00991","113.81999969482422","113.81999969482422","","1980-05-29T00:00:00Z","","0" +"NM-16602","36.880001068115234","36.880001068115234","","1963-01-04T00:00:00Z","","0" +"NM-27475","14.319999694824219","14.319999694824219","","1979-02-02T00:00:00Z","","0" +"NM-07075","51.779998779296875","51.779998779296875","","1948-11-16T00:00:00Z","","0" +"NM-02209","87.06999969482422","87.06999969482422","","1947-10-01T00:00:00Z","","0" +"NM-12317","50.63999938964844","50.63999938964844","","1963-02-19T00:00:00Z","","0" +"AB-0076","8.100000381469727","8.100000381469727","","1998-08-12T00:00:00Z","","" +"NM-14271","142.77000427246094","142.77000427246094","","1957-01-22T00:00:00Z","","0" +"NM-14966","28.5","28.5","","1976-02-12T00:00:00Z","","0" +"NM-28259","129.27000427246094","129.27000427246094","","1970-04-25T00:00:00Z","","0" +"NM-12439","16.020000457763672","16.020000457763672","","1937-12-22T00:00:00Z","","0" +"NM-00202","59.849998474121094","59.849998474121094","","1980-01-21T00:00:00Z","","0" +"NM-06237","16.299999237060547","16.299999237060547","","1947-09-26T00:00:00Z","","0" +"NM-01025","342.8299865722656","342.8299865722656","","1997-01-03T00:00:00Z","","0" +"NM-01984","101.20999908447266","101.20999908447266","","1983-01-04T00:00:00Z","","0" +"NM-15995","51.2599983215332","51.2599983215332","","1995-02-17T00:00:00Z","","0" +"NM-08853","21.1200008392334","21.1200008392334","","1944-01-06T00:00:00Z","","0" +"NM-03088","47.619998931884766","47.619998931884766","","2003-01-30T00:00:00Z","","0" +"NM-00638","34.439998626708984","34.439998626708984","","1992-01-03T00:00:00Z","","0" +"NM-26479","35.189998626708984","35.189998626708984","","1988-01-14T00:00:00Z","","0" +"QU-100","19.479999542236328","16.68000030517578","","2014-12-11T00:00:00Z","","2.799999952316284" +"NM-23656","104.66999816894531","104.66999816894531","","1987-05-08T00:00:00Z","","0" +"NM-09342","-47.20000076293945","-47.20000076293945","","1910-12-04T00:00:00Z","","0" +"DE-0262","87.81999969482422","87.81999969482422","","2018-12-17T00:00:00Z","","0" +"NM-20546","82.88999938964844","82.88999938964844","","1977-01-21T00:00:00Z","","0" +"NM-21370","139.83999633789062","139.83999633789062","","1998-03-01T00:00:00Z","","0" +"NM-26344","80.69999694824219","80.69999694824219","","1981-02-01T00:00:00Z","","0" +"NM-05709","51.619998931884766","51.619998931884766","P","1939-01-13T00:00:00Z","","0" +"NM-00185","12.800000190734863","12.800000190734863","","1997-11-15T00:00:00Z","","0" +"NM-21358","257.42999267578125","257.42999267578125","","2006-06-05T00:00:00Z","","0" +"NM-14351","592.1400146484375","592.1400146484375","","1975-07-01T00:00:00Z","","0" +"SB-0424","59.70000076293945","59.70000076293945","","1971-12-03T00:00:00Z","","0" +"DE-0246","108.44000244140625","108.44000244140625","","2010-12-06T00:00:00Z","","0" +"NM-13888","4.349999904632568","4.349999904632568","","1962-10-08T00:00:00Z","","0" +"NM-24338","55.5","55.5","","1981-03-05T00:00:00Z","","0" +"NM-02006","7.800000190734863","7.800000190734863","","1998-02-25T00:00:00Z","","0" +"AB-0004","414.739990234375","414.739990234375","","2005-11-07T00:00:00Z","","" +"EB-288","144","144","","1991-02-28T00:00:00Z","","0" +"NM-23141","24.079999923706055","24.079999923706055","","1983-03-10T00:00:00Z","","0" +"NM-08783","182.99000549316406","182.99000549316406","","1960-03-28T00:00:00Z","","0" +"NM-27217","61.9900016784668","61.9900016784668","","1987-10-23T00:00:00Z","","0" +"NM-02250","45.36000061035156","45.36000061035156","","1947-05-19T00:00:00Z","","0" +"NM-01035","47.86000061035156","47.86000061035156","","1954-05-25T00:00:00Z","","0" +"NM-04237","11.380000114440918","11.380000114440918","","1973-01-26T00:00:00Z","","0" +"DE-0127","44.709999084472656","44.709999084472656","","2013-05-09T00:00:00Z","","0" +"NM-13425","396.5199890136719","396.5199890136719","","1982-05-01T00:00:00Z","","0" +"DE-0235","103.68000030517578","103.68000030517578","","2013-06-26T00:00:00Z","","0" +"NM-28256","156.80999755859375","156.80999755859375","","1972-09-15T00:00:00Z","","0" +"NM-02209","104.5999984741211","104.5999984741211","","1974-02-01T00:00:00Z","","0" +"NM-12466","10.350000381469727","10.350000381469727","","1958-01-14T00:00:00Z","","0" +"NM-16831","2.9700000286102295","2.9700000286102295","","1955-01-19T00:00:00Z","","0" +"NM-09813","33.29999923706055","33.29999923706055","R","1949-03-16T00:00:00Z","","0" +"NM-11318","16.25","16.25","","1968-05-10T00:00:00Z","","0" +"NM-17989","20.020000457763672","20.020000457763672","P","1964-09-17T00:00:00Z","","0" +"NM-01985","12.899999618530273","12.899999618530273","","2008-02-12T00:00:00Z","","0" +"NM-27892","283.04998779296875","283.04998779296875","","1987-02-04T00:00:00Z","","0" +"NM-17222","27.209999084472656","27.209999084472656","","1944-01-21T00:00:00Z","","0" +"NM-24482","2.990000009536743","2.990000009536743","","1987-12-09T00:00:00Z","","0" +"NM-22932","72.18000030517578","72.18000030517578","","1952-12-11T00:00:00Z","","0" +"NM-28255","91.20999908447266","91.20999908447266","","1964-03-15T00:00:00Z","","0" +"NM-12525","53.84000015258789","53.84000015258789","","1981-01-06T00:00:00Z","","0" +"NM-02396","8.899999618530273","8.899999618530273","","1967-03-15T00:00:00Z","","0" +"NM-02283","28.290000915527344","28.290000915527344","","2010-08-18T00:00:00Z","","0" +"NM-03679","193.99000549316406","193.99000549316406","","1984-03-15T00:00:00Z","","0" +"NM-02527","10.800000190734863","10.800000190734863","","1998-02-15T00:00:00Z","","0" +"NM-10742","52.34000015258789","52.34000015258789","","1961-03-03T00:00:00Z","","0" +"BC-0414","","900.7000122070312","","2021-12-13T00:00:00Z","","-0.6000000238418579" +"NM-10792","-29.719999313354492","-29.719999313354492","","1910-12-30T00:00:00Z","","0" +"NM-16831","6.519999980926514","6.519999980926514","","1946-09-28T00:00:00Z","","0" +"EB-269","125.41999816894531","125.41999816894531","","2013-08-20T00:00:00Z","","0" +"NM-10099","128.35000610351562","128.35000610351562","","1974-01-14T00:00:00Z","","0" +"NM-08114","265","265","","1954-07-24T00:00:00Z","","0" +"NM-02471","156.47000122070312","156.47000122070312","","1963-11-20T00:00:00Z","","0" +"NM-12338","110.33999633789062","110.33999633789062","","1960-05-17T00:00:00Z","","0" +"SV-0088","173.3000030517578","171.3000030517578","","2017-10-22T00:00:00Z","","2" +"NM-28250","90.7300033569336","90.7300033569336","","2010-10-15T00:00:00Z","","0" +"WL-0091","28.125","25.354999542236328","","1993-03-17T00:00:00Z","","2.7699999809265137" +"NM-02264","100.87000274658203","100.87000274658203","","1961-01-10T00:00:00Z","","0" +"NM-01986","8.199999809265137","8.199999809265137","","1973-02-15T00:00:00Z","","0" +"NM-27427","174.3699951171875","174.3699951171875","","1970-01-06T00:00:00Z","","0" +"NM-28259","75.94000244140625","75.94000244140625","","1955-04-15T00:00:00Z","","0" +"NM-28022","486.260009765625","486.260009765625","S","2015-04-18T00:00:00Z","","0" +"NM-02207","13.5","13.5","","1983-06-15T00:00:00Z","","0" +"NM-17716","0.7699999809265137","0.7699999809265137","","1942-08-20T00:00:00Z","","0" +"NM-11679","64.70999908447266","64.70999908447266","","1960-03-24T00:00:00Z","","0" +"NM-02772","78.51000213623047","78.51000213623047","","1999-06-14T00:00:00Z","","0" +"NM-13654","2.0999999046325684","2.0999999046325684","","1909-09-24T00:00:00Z","","0" +"NM-04835","207.02999877929688","207.02999877929688","","1979-01-09T00:00:00Z","","0" +"NM-00185","9.800000190734863","9.800000190734863","","1971-07-15T00:00:00Z","","0" +"NM-27261","39.150001525878906","39.150001525878906","","1967-01-26T00:00:00Z","","0" +"NM-13301","26.219999313354492","26.219999313354492","","1966-02-14T00:00:00Z","","0" +"NM-05169","22.15999984741211","22.15999984741211","","1953-09-23T00:00:00Z","","0" +"NM-01863","8.5","8.5","","1960-01-18T00:00:00Z","","0" +"NM-05486","68.41999816894531","68.41999816894531","","1941-01-08T00:00:00Z","","0" +"BC-0133","331.7900085449219","331.7900085449219","","2011-05-26T00:00:00Z","","0" +"BC-0135","335.3399963378906","335.3399963378906","","2018-09-23T00:00:00Z","","0" +"NM-02314","8.899999618530273","8.899999618530273","","1996-12-15T00:00:00Z","","0" +"QU-074","","","D","2012-04-04T00:00:00Z","","2.700000047683716" +"NM-07201","75.51000213623047","75.51000213623047","","1964-01-14T00:00:00Z","","0" +"NM-19422","142.97999572753906","142.97999572753906","R","1965-08-19T00:00:00Z","","0" +"TV-209","0","-1","","2004-09-12T00:00:00Z","","1" +"NM-02833","31.229999542236328","31.229999542236328","","1994-01-26T00:00:00Z","","0" +"NM-28256","102.19000244140625","102.19000244140625","","2018-02-26T00:00:00Z","","0" +"NM-06268","13.199999809265137","13.199999809265137","","1988-03-15T00:00:00Z","","0" +"NM-03260","6.099999904632568","6.099999904632568","","1990-07-06T00:00:00Z","","0" +"NM-19999","28.510000228881836","28.510000228881836","","1942-08-13T00:00:00Z","","0" +"NM-05985","38.349998474121094","38.349998474121094","","2006-01-26T00:00:00Z","","0" +"NM-02758","289.3599853515625","289.3599853515625","","1989-03-27T00:00:00Z","","0" +"NM-16763","10.619999885559082","10.619999885559082","","1945-11-27T00:00:00Z","","0" +"AB-0067","146.5800018310547","146.5800018310547","","2001-03-21T00:00:00Z","","" +"NM-00088","103.30999755859375","103.30999755859375","","2018-01-25T00:00:00Z","","0" +"NM-00288","78.68000030517578","78.68000030517578","","2012-12-17T00:00:00Z","","0" +"WL-0086","92.79166412353516","91.03166198730469","","2004-08-12T00:00:00Z","","1.7599999904632568" +"NM-23199","75.80000305175781","75.80000305175781","","1947-08-06T00:00:00Z","","0" +"DE-0089","91.36000061035156","91.36000061035156","","1999-08-10T00:00:00Z","","0" +"SM-0243","47.2599983215332","45.959999084472656","","2009-02-04T00:00:00Z","","1.2999999523162842" +"NM-16538","17.729999542236328","17.729999542236328","","1956-03-22T00:00:00Z","","0" +"NM-27209","84.04000091552734","84.04000091552734","","1963-01-02T00:00:00Z","","0" +"NM-10994","22.68000030517578","22.68000030517578","","1958-12-29T00:00:00Z","","0" +"NM-00550","64.87999725341797","64.87999725341797","","1971-02-26T00:00:00Z","","0" +"NM-00669","13.800000190734863","13.800000190734863","","2011-05-25T00:00:00Z","","0" +"SO-0231","10.189000129699707","8.269000053405762","","2021-02-13T00:00:00Z","0001-01-01T14:30:00Z","1.9199999570846558" +"NM-00384","63.34000015258789","63.34000015258789","","1992-01-02T00:00:00Z","","0" +"DE-0112","40.54999923706055","40.54999923706055","","2007-05-29T00:00:00Z","","0" +"NM-02438","164.25","164.25","","1979-08-20T00:00:00Z","","0" +"NM-27929","360.8999938964844","360.8999938964844","","1995-01-23T00:00:00Z","","0" +"NM-20884","26.260000228881836","26.260000228881836","","1945-08-03T00:00:00Z","","0" +"NM-00213","158.4499969482422","158.4499969482422","Z","1998-09-04T00:00:00Z","","0" +"NM-28011","490.0799865722656","490.0799865722656","S","2015-05-17T00:00:00Z","","0" +"SB-0299","126.13999938964844","126.13999938964844","","1993-06-20T00:00:00Z","","0" +"NM-13779","-2.7300000190734863","-2.7300000190734863","","1909-05-24T00:00:00Z","","0" +"NM-14160","-31.030000686645508","-31.030000686645508","","1911-01-23T00:00:00Z","","0" +"NM-24430","-150","-150","","1971-08-30T00:00:00Z","","0" +"NM-26644","18.959999084472656","18.959999084472656","","2011-09-02T00:00:00Z","","0" +"NM-13340","-14.859999656677246","-14.859999656677246","","1908-09-18T00:00:00Z","","0" +"WL-0086","55.29166793823242","53.53166961669922","","1997-08-15T00:00:00Z","","1.7599999904632568" +"NM-11795","36.97999954223633","36.97999954223633","","1949-05-23T00:00:00Z","","0" +"NM-02527","11","11","","1967-05-15T00:00:00Z","","0" +"NM-28258","108.94999694824219","108.94999694824219","","1970-03-15T00:00:00Z","","0" +"NM-02101","2.299999952316284","2.299999952316284","","1989-08-15T00:00:00Z","","0" +"NM-04632","8","8","","1947-09-15T00:00:00Z","","0" +"NM-02441","72.58999633789062","72.58999633789062","","2002-01-08T00:00:00Z","","0" +"EB-032","107.93000030517578","107.93000030517578","","1983-01-13T00:00:00Z","","0" +"NM-01291","99.30000305175781","99.30000305175781","","1950-10-17T00:00:00Z","","0" +"SB-0299","145.5500030517578","145.5500030517578","","2011-06-15T00:00:00Z","","0" +"NM-22969","315.8500061035156","315.8500061035156","","1989-04-28T00:00:00Z","","0" +"NM-28253","22.399999618530273","22.399999618530273","","1963-11-25T00:00:00Z","","0" +"NM-28255","114.41000366210938","114.41000366210938","","1993-05-05T00:00:00Z","","0" +"NM-02758","315.0400085449219","315.0400085449219","","1984-05-24T00:00:00Z","","0" +"NM-16434","106.62999725341797","106.62999725341797","","1961-01-13T00:00:00Z","","0" +"NM-26617","23.020000457763672","23.020000457763672","","2012-02-07T00:00:00Z","","0" +"NM-17716","2.069999933242798","2.069999933242798","","1943-11-21T00:00:00Z","","0" +"EB-269","67.02999877929688","67.02999877929688","S","1987-03-11T00:00:00Z","","0" +"NM-04072","87.4800033569336","87.4800033569336","","1972-11-30T00:00:00Z","","0" +"NM-01829","322.0799865722656","322.0799865722656","","2004-02-09T00:00:00Z","","0" +"AB-0113","215.63999938964844","215.63999938964844","","1998-05-15T00:00:00Z","","" +"NM-14429","106.9000015258789","106.9000015258789","","1976-02-23T00:00:00Z","","0" +"NM-02669","56.63999938964844","56.63999938964844","","1994-05-26T00:00:00Z","","0" +"NM-00929","284.0199890136719","284.0199890136719","","1997-01-24T00:00:00Z","","0" +"NM-23052","399","399","P","1980-06-04T00:00:00Z","","0" +"AB-0076","7.150000095367432","7.150000095367432","","2002-08-05T00:00:00Z","","" +"NM-02091","86.73999786376953","86.73999786376953","","1966-01-15T00:00:00Z","","0" +"AB-0184","358.5400085449219","358.5400085449219","","2009-08-13T00:00:00Z","","" +"NM-18832","303.5199890136719","303.5199890136719","","1960-03-03T00:00:00Z","","0" +"NM-20289","43.70000076293945","43.70000076293945","","1948-11-23T00:00:00Z","","0" +"NM-27457","8.350000381469727","8.350000381469727","","1974-05-30T00:00:00Z","","0" +"NM-11026","130.07000732421875","130.07000732421875","","1974-04-01T00:00:00Z","","0" +"NM-16514","17.760000228881836","17.760000228881836","","1949-11-21T00:00:00Z","","0" +"NM-13594","37.869998931884766","37.869998931884766","","1967-03-17T00:00:00Z","","0" +"NM-25680","-103.44999694824219","-103.44999694824219","","1988-12-29T00:00:00Z","","0" +"NM-26713","63.75","63.75","","1987-04-01T00:00:00Z","","0" +"NM-02164","11.470000267028809","11.470000267028809","","2008-09-08T00:00:00Z","","0" +"NM-02384","9.5","9.5","","1953-05-15T00:00:00Z","","0" +"NM-00257","94.45999908447266","94.45999908447266","","1993-09-27T00:00:00Z","","0" +"NM-03386","37.77000045776367","37.77000045776367","","1991-04-04T00:00:00Z","","0" +"NM-01295","98.45999908447266","98.45999908447266","","1949-08-19T00:00:00Z","","0" +"NM-05238","165.7899932861328","165.7899932861328","","1975-01-15T00:00:00Z","","0" +"NM-19044","377.82000732421875","377.82000732421875","","1982-02-16T00:00:00Z","","0" +"NM-17434","27.940000534057617","27.940000534057617","","1935-01-11T00:00:00Z","","0" +"NM-19346","376.55999755859375","376.55999755859375","","1992-01-06T00:00:00Z","","0" +"NM-06794","13.329999923706055","13.329999923706055","","1967-01-09T00:00:00Z","","0" +"NM-02043","4.5","4.5","","1993-06-15T00:00:00Z","","0" +"NM-00651","29.43000030517578","29.43000030517578","","1986-01-15T00:00:00Z","","0" +"NM-21547","4.900000095367432","4.900000095367432","Z","2011-09-27T00:00:00Z","","0" +"NM-03411","300.92999267578125","300.92999267578125","Z","1995-02-06T00:00:00Z","","0" +"NM-14102","-9.65999984741211","-9.65999984741211","","1911-11-11T00:00:00Z","","0" +"NM-02062","386.2699890136719","386.2699890136719","","1998-02-03T00:00:00Z","","0" +"SB-0669","395","395","","2001-04-11T00:00:00Z","","0" +"NM-28259","136.4600067138672","136.4600067138672","","2012-11-15T00:00:00Z","","0" +"NM-14183","16.329999923706055","16.329999923706055","","1938-10-03T00:00:00Z","","0" +"NM-22252","420.6300048828125","420.6300048828125","","2008-11-20T00:00:00Z","","0" +"NM-00343","72.19999694824219","72.19999694824219","","1955-03-19T00:00:00Z","","0" +"NM-06344","158.02999877929688","158.02999877929688","","1961-01-11T00:00:00Z","","0" +"NM-06416","203.08999633789062","203.08999633789062","","1990-09-19T00:00:00Z","","0" +"SB-0299","112.01000213623047","112.01000213623047","","1992-02-05T00:00:00Z","","0" +"MG-019","171.49000549316406","169.88999938964844","","2014-03-13T00:00:00Z","","1.600000023841858" +"NM-05240","17.399999618530273","17.399999618530273","","1953-11-27T00:00:00Z","","0" +"NM-15269","43.68000030517578","43.68000030517578","","2005-01-26T00:00:00Z","","0" +"NM-19023","73.22000122070312","73.22000122070312","","1972-02-11T00:00:00Z","","0" +"NM-02560","111","111","","1969-01-01T00:00:00Z","","0" +"SB-0316","58.75","58.75","","1993-02-16T00:00:00Z","","0" +"NM-04206","29.709999084472656","29.709999084472656","","1952-05-20T00:00:00Z","","0" +"AB-0040","28.850000381469727","28.850000381469727","","2010-12-21T00:00:00Z","","" +"NM-14235","-12.550000190734863","-12.550000190734863","","1909-06-06T00:00:00Z","","0" +"NM-27541","22.8799991607666","22.8799991607666","","1950-03-28T00:00:00Z","","0" +"NM-01970","128.57000732421875","128.57000732421875","","1981-01-05T00:00:00Z","","0" +"NM-28257","13.25","13.25","","2018-03-05T00:00:00Z","","0" +"NM-26069","266.9200134277344","266.9200134277344","","1990-05-16T00:00:00Z","","0" +"NM-02586","263.2799987792969","263.2799987792969","","1961-11-24T00:00:00Z","","0" +"NM-02352","8.399999618530273","8.399999618530273","","1971-09-15T00:00:00Z","","0" +"NM-03776","135.6999969482422","135.6999969482422","","1979-01-10T00:00:00Z","","0" +"NM-01182","151.52999877929688","151.52999877929688","","1998-04-07T00:00:00Z","","0" +"NM-26737","135.10000610351562","135.10000610351562","","1993-01-27T00:00:00Z","","0" +"NM-20895","23.549999237060547","23.549999237060547","S","1947-05-28T00:00:00Z","","0" +"NM-05309","9.199999809265137","9.199999809265137","","1961-09-15T00:00:00Z","","0" +"NM-28253","30.010000228881836","30.010000228881836","","1974-11-05T00:00:00Z","","0" +"NM-14293","6.639999866485596","6.639999866485596","","1958-06-30T00:00:00Z","","0" +"NM-28017","486.510009765625","486.510009765625","S","2015-05-09T00:00:00Z","","0" +"NM-12283","-27.56999969482422","-27.56999969482422","","1907-09-24T00:00:00Z","","0" +"EB-481","480","480","P","1995-11-30T00:00:00Z","","0" +"SO-0132","3.8499999046325684","3.18999981880188","","2021-03-18T00:00:00Z","0001-01-01T15:09:00Z","0.6600000262260437" +"NM-08940","7.28000020980835","7.28000020980835","","1957-04-22T00:00:00Z","","0" +"NM-00763","334.8299865722656","334.8299865722656","","1979-01-04T00:00:00Z","","0" +"NM-03979","136.5800018310547","136.5800018310547","","1965-01-16T00:00:00Z","","0" +"NM-17577","39.47999954223633","39.47999954223633","","1934-10-16T00:00:00Z","","0" +"NM-05726","89.12999725341797","89.12999725341797","","1960-01-19T00:00:00Z","","0" +"NM-14029","-11.970000267028809","-11.970000267028809","","1911-05-16T00:00:00Z","","0" +"NM-01006","308.3299865722656","308.3299865722656","A","2010-02-21T00:00:00Z","","0" +"NM-28254","32.29999923706055","32.29999923706055","","1997-10-25T00:00:00Z","","0" +"NM-19787","132.69000244140625","132.69000244140625","","2007-10-01T00:00:00Z","","0" +"BW-0130","30.899999618530273","30.899999618530273","","1957-07-30T00:00:00Z","","0" +"DE-0096","91.87999725341797","91.87999725341797","","2005-04-13T00:00:00Z","","0" +"NM-22569","740.8400268554688","740.8400268554688","Z","1996-11-15T00:00:00Z","","0" +"NM-10140","34.16999816894531","34.16999816894531","","1947-09-11T00:00:00Z","","0" +"NM-02849","92.68000030517578","92.68000030517578","","2010-01-13T00:00:00Z","","0" +"NM-02347","143.11000061035156","143.11000061035156","","1971-02-15T00:00:00Z","","0" +"SA-0108","78.9800033569336","75.55000305175781","","2010-01-14T00:00:00Z","","3.430000066757202" +"NM-01893","13.579999923706055","13.579999923706055","","1991-02-08T00:00:00Z","","0" +"NM-17716","1.2200000286102295","1.2200000286102295","","1944-04-19T00:00:00Z","","0" +"NM-22932","219.14999389648438","219.14999389648438","S","1953-08-19T00:00:00Z","","0" +"DE-0081","88.30000305175781","88.30000305175781","","1998-02-24T00:00:00Z","","0" +"DE-0069","194.4499969482422","190.97000122070312","","1991-10-22T00:00:00Z","","3.4800000190734863" +"NM-08459","430.55999755859375","430.55999755859375","","1968-01-12T00:00:00Z","","0" +"NM-02702","-15.359999656677246","-15.359999656677246","","2005-02-16T00:00:00Z","","0" +"NM-02004","7.099999904632568","7.099999904632568","","1968-07-15T00:00:00Z","","0" +"NM-01983","121.73999786376953","121.73999786376953","","1988-01-27T00:00:00Z","","0" +"NM-14221","-25.260000228881836","-25.260000228881836","","1908-09-09T00:00:00Z","","0" +"NM-02135","68.69999694824219","68.69999694824219","","1951-01-09T00:00:00Z","","0" +"NM-10570","100.87999725341797","100.87999725341797","","1966-01-11T00:00:00Z","","0" +"NM-14793","50.4900016784668","50.4900016784668","","1958-08-28T00:00:00Z","","0" +"NM-03020","92.19000244140625","92.19000244140625","","1977-01-04T00:00:00Z","","0" +"NM-00253","23.239999771118164","23.239999771118164","","1976-09-01T00:00:00Z","","0" +"NM-13121","10.0600004196167","10.0600004196167","","1959-02-25T00:00:00Z","","0" +"NM-04139","181.85000610351562","181.85000610351562","","1998-01-08T00:00:00Z","","0" +"NM-19320","168.52000427246094","168.52000427246094","","1982-03-18T00:00:00Z","","0" +"NM-01948","7.699999809265137","7.699999809265137","","1952-01-15T00:00:00Z","","0" +"NM-02597","90.12000274658203","90.12000274658203","","2011-01-25T00:00:00Z","","0" +"NM-02591","15","15","","1954-02-15T00:00:00Z","","0" +"NM-02101","9.100000381469727","9.100000381469727","","1985-01-15T00:00:00Z","","0" +"NM-20031","114.80000305175781","114.80000305175781","","1945-05-08T00:00:00Z","","0" +"AB-0107","418.20001220703125","418.20001220703125","","2001-06-21T00:00:00Z","","" +"NM-02425","150.67999267578125","150.67999267578125","","1973-02-05T00:00:00Z","","0" +"NM-16598","10.470000267028809","10.470000267028809","","1953-01-20T00:00:00Z","","0" +"NM-02702","26.8700008392334","26.8700008392334","","1976-02-17T00:00:00Z","","0" +"WL-0090","72.91666412353516","70.53666687011719","","2002-03-27T00:00:00Z","","2.380000114440918" +"NM-20961","17.68000030517578","17.68000030517578","","1941-03-11T00:00:00Z","","0" +"TC-265","216.3000030517578","216.3000030517578","","1982-01-22T00:00:00Z","","0" +"NM-02518","9.199999809265137","9.199999809265137","","1964-08-15T00:00:00Z","","0" +"NM-11744","46.66999816894531","46.66999816894531","","1976-03-25T00:00:00Z","","0" +"NM-16546","322.6600036621094","322.6600036621094","P","2005-02-02T00:00:00Z","","0" +"NM-08232","997.0599975585938","997.0599975585938","","1959-11-01T00:00:00Z","","0" +"NM-13909","-24.100000381469727","-24.100000381469727","","1910-02-04T00:00:00Z","","0" +"NM-17651","35.63999938964844","35.63999938964844","","1985-01-11T00:00:00Z","","0" +"NM-28259","92.30000305175781","92.30000305175781","","1954-05-25T00:00:00Z","","0" +"NM-02196","13.289999961853027","13.289999961853027","","2001-01-26T00:00:00Z","","0" +"NM-28259","102.69999694824219","102.69999694824219","","1957-10-15T00:00:00Z","","0" +"NM-18384","32.279998779296875","32.279998779296875","P","1967-01-23T00:00:00Z","","0" +"NM-00333","163.0500030517578","163.0500030517578","P","1987-01-05T00:00:00Z","","0" +"NM-12439","14.380000114440918","14.380000114440918","","1937-08-31T00:00:00Z","","0" +"NM-02512","18.709999084472656","18.709999084472656","","2015-12-16T00:00:00Z","","0" +"BC-0190","","167.10000610351562","","2023-03-27T00:00:00Z","","1.7599999904632568" +"NM-09924","8.199999809265137","8.199999809265137","","2008-05-14T00:00:00Z","","0" +"NM-03435","96.23999786376953","96.23999786376953","","1970-02-16T00:00:00Z","","0" +"NM-07908","18.889999389648438","18.889999389648438","","1966-02-10T00:00:00Z","","0" +"NM-02665","104.98999786376953","104.98999786376953","","2013-01-30T00:00:00Z","","0" +"NM-01390","124.27999877929688","124.27999877929688","","2014-09-25T00:00:00Z","","0" +"NM-12360","-7.929999828338623","-7.929999828338623","","1909-03-18T00:00:00Z","","0" +"NM-03441","25.25","25.25","Z","1998-01-05T00:00:00Z","","0" +"NM-01890","69.45999908447266","69.45999908447266","","2012-04-19T00:00:00Z","","0" +"NM-10954","134.6699981689453","134.6699981689453","","1959-01-07T00:00:00Z","","0" +"NM-28259","122.45999908447266","122.45999908447266","","2010-07-15T00:00:00Z","","0" +"NM-28255","63.61000061035156","63.61000061035156","","2019-06-05T00:00:00Z","","0" +"NM-02168","18.809999465942383","18.809999465942383","","2012-10-16T00:00:00Z","","0" +"NM-01897","11.15999984741211","11.15999984741211","","1991-08-22T00:00:00Z","","0" +"NM-06060","22.940000534057617","22.940000534057617","","1948-09-23T00:00:00Z","","0" +"NM-12600","50.380001068115234","50.380001068115234","","1938-10-03T00:00:00Z","","0" +"NM-00435","46.9900016784668","46.9900016784668","","1957-01-11T00:00:00Z","","0" +"NM-03707","145.55999755859375","145.55999755859375","","1962-03-28T00:00:00Z","","0" +"NM-10566","63.470001220703125","63.470001220703125","","1958-05-01T00:00:00Z","","0" +"SO-0221","7.940000057220459","7.570000171661377","","2019-12-10T00:00:00Z","0001-01-01T02:47:00Z","0.3700000047683716" +"NM-23203","15.100000381469727","15.100000381469727","","2007-01-25T00:00:00Z","","0" +"NM-28252","48.869998931884766","48.869998931884766","","1989-05-25T00:00:00Z","","0" +"SB-0299","143.0800018310547","143.0800018310547","","2016-12-05T00:00:00Z","","0" +"NM-10609","16.209999084472656","16.209999084472656","","1938-01-21T00:00:00Z","","0" +"NM-08861","63.38999938964844","63.38999938964844","","1960-01-23T00:00:00Z","","0" +"NM-08253","39.11000061035156","39.11000061035156","","1986-01-08T00:00:00Z","","0" +"NM-02588","54.58000183105469","54.58000183105469","","1984-02-06T00:00:00Z","","0" +"NM-14535","92.87999725341797","92.87999725341797","","1976-05-25T00:00:00Z","","0" +"NM-14038","-19.479999542236328","-19.479999542236328","","1911-10-18T00:00:00Z","","0" +"WL-0021","38.599998474121094","37.89999771118164","","2012-08-01T00:00:00Z","","0.699999988079071" +"NM-01872","7.699999809265137","7.699999809265137","","1991-01-15T00:00:00Z","","0" +"SB-0383","53","53","","1988-04-03T00:00:00Z","","0" +"NM-17628","45.970001220703125","45.970001220703125","","1961-03-14T00:00:00Z","","0" +"SA-0017","342.19000244140625","341.239990234375","","2019-02-26T00:00:00Z","0001-01-01T10:51:00Z","0.949999988079071" +"NM-24992","594.780029296875","594.780029296875","","2006-01-30T00:00:00Z","","0" +"NM-28257","55.63999938964844","55.63999938964844","","1959-03-05T00:00:00Z","","0" +"NM-28254","117.44999694824219","117.44999694824219","","1961-08-25T00:00:00Z","","0" +"NM-07036","15.170000076293945","15.170000076293945","","2013-09-20T00:00:00Z","","0" +"NM-02019","116.91000366210938","116.91000366210938","","1966-01-07T00:00:00Z","","0" +"NM-16675","15.34000015258789","15.34000015258789","","1936-03-19T00:00:00Z","","0" +"NM-02501","57.220001220703125","57.220001220703125","","1940-10-09T00:00:00Z","","0" +"NM-02857","109.56999969482422","109.56999969482422","","1985-01-24T00:00:00Z","","0" +"NM-01278","120.87000274658203","120.87000274658203","","1961-02-16T00:00:00Z","","0" +"NM-28020","468.57000732421875","468.57000732421875","","2015-02-13T00:00:00Z","","0" +"NM-06076","48.91999816894531","48.91999816894531","","1962-01-16T00:00:00Z","","0" +"NM-28022","486.1600036621094","486.1600036621094","S","2015-04-18T00:00:00Z","","0" +"NM-06030","49.540000915527344","49.540000915527344","","2009-07-21T00:00:00Z","","0" +"NM-03355","29.959999084472656","29.959999084472656","","1992-01-06T00:00:00Z","","0" +"NM-23576","122.0999984741211","122.0999984741211","T","1984-03-24T00:00:00Z","","0" +"NM-01816","100.52999877929688","100.52999877929688","","2000-01-07T00:00:00Z","","0" +"NM-11425","55.189998626708984","55.189998626708984","","1971-02-24T00:00:00Z","","0" +"NM-01872","9.800000190734863","9.800000190734863","","1976-11-15T00:00:00Z","","0" +"NM-05516","12.300000190734863","12.300000190734863","","1973-04-15T00:00:00Z","","0" +"NM-28253","30.239999771118164","30.239999771118164","","2011-10-05T00:00:00Z","","0" +"NM-28252","40.91999816894531","40.91999816894531","","1989-12-25T00:00:00Z","","0" +"NM-23380","134.74000549316406","134.74000549316406","","1950-10-17T00:00:00Z","","0" +"DE-0315","43.15999984741211","43.15999984741211","","2009-05-26T00:00:00Z","","0" +"NM-13531","2.700000047683716","2.700000047683716","","1958-05-06T00:00:00Z","","0" +"NM-05631","106.19999694824219","106.19999694824219","P","1959-05-19T00:00:00Z","","0" +"NM-20372","11.350000381469727","11.350000381469727","","1953-02-11T00:00:00Z","","0" +"NM-13594","24.790000915527344","24.790000915527344","","1975-02-05T00:00:00Z","","0" +"DE-0112","","","D","2015-08-18T00:00:00Z","","0" +"NM-17452","55.029998779296875","55.029998779296875","","1950-07-27T00:00:00Z","","0" +"NM-22617","17.299999237060547","17.299999237060547","","1988-02-16T00:00:00Z","","0" +"NM-08647","23.600000381469727","23.600000381469727","","1950-11-20T00:00:00Z","","0" +"NM-10696","134.75","134.75","","1954-04-17T00:00:00Z","","0" +"NM-14705","62.560001373291016","62.560001373291016","","1953-07-07T00:00:00Z","","0" +"NM-14382","133.77999877929688","133.77999877929688","","1986-04-30T00:00:00Z","","0" +"NM-04694","10.529999732971191","10.529999732971191","","1984-02-14T00:00:00Z","","0" +"NM-01961","98.13999938964844","98.13999938964844","","1963-01-05T00:00:00Z","","0" +"NM-03679","186.97000122070312","186.97000122070312","","1992-08-12T00:00:00Z","","0" +"NM-19614","99.7699966430664","99.7699966430664","","1944-01-25T00:00:00Z","","0" +"NM-03076","35.38999938964844","35.38999938964844","","1964-07-09T00:00:00Z","","0" +"NM-13594","25.639999389648438","25.639999389648438","","1984-02-15T00:00:00Z","","0" +"NM-28256","278.2900085449219","278.2900085449219","","2002-06-05T00:00:00Z","","0" +"NM-01971","6.900000095367432","6.900000095367432","","1987-03-15T00:00:00Z","","0" +"NM-02006","8.199999809265137","8.199999809265137","","1970-01-15T00:00:00Z","","0" +"BW-0275","135.72999572753906","135.72999572753906","","1961-05-11T00:00:00Z","","0" +"SO-0189","12.199999809265137","10.710000038146973","","2018-04-11T00:00:00Z","0001-01-01T12:09:00Z","1.4900000095367432" +"NM-16639","16.5","16.5","","1941-01-17T00:00:00Z","","0" +"NM-12243","126.87000274658203","126.87000274658203","","2007-02-13T00:00:00Z","","0" +"NM-02101","","","D","1956-02-15T00:00:00Z","","0" +"NM-12197","23.770000457763672","23.770000457763672","","1952-05-14T00:00:00Z","","0" +"NM-28252","27.239999771118164","27.239999771118164","","1956-01-15T00:00:00Z","","0" +"NM-05893","56.88999938964844","56.88999938964844","","1945-01-06T00:00:00Z","","0" +"NM-02349","17.899999618530273","17.899999618530273","","1993-05-15T00:00:00Z","","0" +"NM-00812","62.810001373291016","62.810001373291016","","1955-06-15T00:00:00Z","","0" +"NM-14029","-11.399999618530273","-11.399999618530273","","1912-01-25T00:00:00Z","","0" +"NM-01916","99.72000122070312","99.72000122070312","","2008-01-24T00:00:00Z","","0" +"NM-16621","41.66999816894531","41.66999816894531","","1966-01-05T00:00:00Z","","0" +"BC-0194","226.1699981689453","226.1699981689453","","2014-12-03T00:00:00Z","","0" +"NM-10658","-29.8799991607666","-29.8799991607666","","1908-08-24T00:00:00Z","","0" +"NM-11377","81.86000061035156","81.86000061035156","","1986-01-22T00:00:00Z","","0" +"NM-02590","123.0999984741211","123.0999984741211","","1960-01-25T00:00:00Z","","0" +"NM-24038","637.3400268554688","637.3400268554688","","1985-11-21T00:00:00Z","","0" +"NM-13246","118.98999786376953","118.98999786376953","","1963-08-13T00:00:00Z","","0" +"MG-027","429.70001220703125","429.70001220703125","","2014-03-14T00:00:00Z","","0" +"NM-28022","486.2099914550781","486.2099914550781","S","2015-04-18T00:00:00Z","","0" +"NM-10562","17.860000610351562","17.860000610351562","","1940-01-15T00:00:00Z","","0" +"NM-22033","90.33000183105469","90.33000183105469","","1993-03-24T00:00:00Z","","0" +"NM-14840","104.58000183105469","104.58000183105469","","1981-02-10T00:00:00Z","","0" +"NM-02287","10.029999732971191","10.029999732971191","","2014-09-11T00:00:00Z","","0" +"AB-0002","425.010009765625","425.010009765625","","2005-07-26T00:00:00Z","","" +"NM-02207","14.300000190734863","14.300000190734863","","1968-09-15T00:00:00Z","","0" +"NM-25680","-103","-103","","1989-01-08T00:00:00Z","","0" +"NM-21960","41.439998626708984","41.439998626708984","R","1990-03-20T00:00:00Z","","0" +"NM-24480","-67.11000061035156","-67.11000061035156","","1989-05-03T00:00:00Z","","0" +"NM-00257","94.4800033569336","94.4800033569336","","2001-07-26T00:00:00Z","","0" +"WL-0058","118.08999633789062","115.64999389648438","","2021-02-02T00:00:00Z","0001-01-01T09:28:00Z","2.440000057220459" +"NM-28252","41.900001525878906","41.900001525878906","","1963-02-05T00:00:00Z","","0" +"SB-0299","121.05999755859375","121.05999755859375","","1972-04-20T00:00:00Z","","0" +"NM-07974","60.029998779296875","60.029998779296875","","1938-01-24T00:00:00Z","","0" +"NM-02800","68.0199966430664","68.0199966430664","","1966-01-14T00:00:00Z","","0" +"NM-04632","8.5","8.5","","1974-10-15T00:00:00Z","","0" +"NM-08648","40.45000076293945","40.45000076293945","","1962-01-16T00:00:00Z","","0" +"NM-02285","5.829999923706055","5.829999923706055","","2006-07-11T00:00:00Z","","0" +"NM-13861","-7.46999979019165","-7.46999979019165","","1908-06-26T00:00:00Z","","0" +"NM-26050","75.08000183105469","75.08000183105469","","1981-02-02T00:00:00Z","","0" +"NM-02207","14","14","","1983-04-15T00:00:00Z","","0" +"NM-01035","","","O","2006-02-22T00:00:00Z","","0" +"NM-00527","73.04000091552734","73.04000091552734","","2002-01-06T00:00:00Z","","0" +"NM-13666","-3.309999942779541","-3.309999942779541","","1907-03-15T00:00:00Z","","0" +"NM-18254","4.440000057220459","4.440000057220459","","1972-02-16T00:00:00Z","","0" +"NM-28254","27.270000457763672","27.270000457763672","","1960-01-05T00:00:00Z","","0" +"NM-12789","17.239999771118164","17.239999771118164","","1986-02-13T00:00:00Z","","0" +"NM-02487","8.899999618530273","8.899999618530273","","1963-05-15T00:00:00Z","","0" +"NM-02209","101.87999725341797","101.87999725341797","","1998-02-18T00:00:00Z","","0" +"NM-28256","188.2899932861328","188.2899932861328","","2009-05-26T00:00:00Z","","0" +"NM-05904","104.0999984741211","104.0999984741211","","1960-01-15T00:00:00Z","","0" +"NM-17284","16.399999618530273","16.399999618530273","","1980-05-07T00:00:00Z","","0" +"NM-12725","24.200000762939453","24.200000762939453","","1957-03-08T00:00:00Z","","0" +"NM-26682","35","35","","1992-03-25T00:00:00Z","","0" +"BC-0151","128.1999969482422","128.1999969482422","","2018-04-06T00:00:00Z","","0" +"EB-132","56.599998474121094","62.79999923706055","","1973-06-07T00:00:00Z","","-6.199999809265137" +"NM-21067","141.33999633789062","141.33999633789062","","1954-02-26T00:00:00Z","","0" +"EB-454","93.30000305175781","98.30000305175781","","1999-09-14T00:00:00Z","","-5" +"NM-02772","119.45999908447266","119.45999908447266","","1997-08-25T00:00:00Z","","0" +"NM-02783","230.99000549316406","230.99000549316406","","1984-04-19T00:00:00Z","","0" +"NM-02669","44.470001220703125","44.470001220703125","","1966-12-01T00:00:00Z","","0" +"NM-20742","146.58999633789062","146.58999633789062","","1972-02-08T00:00:00Z","","0" +"NM-02194","171.3699951171875","171.3699951171875","","1987-02-04T00:00:00Z","","0" +"NM-02644","55.70000076293945","55.70000076293945","","2004-01-21T00:00:00Z","","0" +"EB-235","52.68000030517578","52.68000030517578","","1980-09-23T00:00:00Z","","0" +"NM-02739","73.44999694824219","73.44999694824219","","1967-01-26T00:00:00Z","","0" +"NM-03258","67.04000091552734","67.04000091552734","","1978-01-16T00:00:00Z","","0" +"NM-28011","490.05999755859375","490.05999755859375","S","2015-05-25T00:00:00Z","","0" +"NM-03344","75.77999877929688","75.77999877929688","R","1992-02-28T00:00:00Z","","0" +"NM-01947","5.5","5.5","","1947-11-15T00:00:00Z","","0" +"NM-01893","13.319999694824219","13.319999694824219","","1998-02-10T00:00:00Z","","0" +"NM-10430","-24.100000381469727","-24.100000381469727","","1911-10-12T00:00:00Z","","0" +"SA-0427","24.799999237060547","24.799999237060547","","1952-11-20T00:00:00Z","","0" +"NM-12408","11.800000190734863","11.800000190734863","","1941-01-28T00:00:00Z","","0" +"EB-209","66.3499984741211","65.0999984741211","","1981-02-10T00:00:00Z","","1.25" +"NM-16620","13.920000076293945","13.920000076293945","","1939-01-20T00:00:00Z","","0" +"NM-22963","23.229999542236328","23.229999542236328","R","2016-07-11T00:00:00Z","","0" +"BW-0016","209","209","","1969-06-25T00:00:00Z","","0" +"NM-01896","8.029999732971191","8.029999732971191","","1990-12-18T00:00:00Z","","0" +"NM-11475","88.3499984741211","88.3499984741211","","1970-02-28T00:00:00Z","","0" +"NM-00196","41.95000076293945","41.95000076293945","","1959-01-08T00:00:00Z","","0" +"NM-26040","70.0199966430664","70.0199966430664","","1996-01-28T00:00:00Z","","0" +"NM-20751","202.1999969482422","202.1999969482422","","1982-02-17T00:00:00Z","","0" +"NM-01841","253.57000732421875","253.57000732421875","","1978-11-20T00:00:00Z","","0" +"DE-0108","40.349998474121094","40.349998474121094","","2010-04-13T00:00:00Z","","0" +"NM-01899","79.7699966430664","79.7699966430664","","2005-11-07T00:00:00Z","","0" +"BC-0148","342.17999267578125","342.17999267578125","","2019-10-28T00:00:00Z","","0" +"NM-02291","146.38999938964844","146.38999938964844","","2008-01-06T00:00:00Z","","0" +"NM-07045","63","63","","1974-02-12T00:00:00Z","","0" +"NM-15218","85.4800033569336","85.4800033569336","","1995-02-24T00:00:00Z","","0" +"NM-08173","32.77000045776367","32.77000045776367","","1971-01-28T00:00:00Z","","0" +"BC-0117","379.5899963378906","379.5899963378906","","2012-03-06T00:00:00Z","","0" +"NM-28254","26.790000915527344","26.790000915527344","","1958-11-05T00:00:00Z","","0" +"NM-28250","91.12999725341797","91.12999725341797","","2017-12-27T00:00:00Z","","0" +"NM-00385","39.16999816894531","39.16999816894531","","1946-05-25T00:00:00Z","","0" +"NM-28259","121.26000213623047","121.26000213623047","","2001-05-04T00:00:00Z","","0" +"NM-28251","76.83000183105469","76.83000183105469","","2018-05-25T00:00:00Z","","0" +"NM-21986","146.13999938964844","146.13999938964844","","1952-02-14T00:00:00Z","","0" +"NM-01894","36.59000015258789","36.59000015258789","","1997-04-09T00:00:00Z","","0" +"NM-05093","103.8499984741211","103.8499984741211","","1970-01-26T00:00:00Z","","0" +"BC-0091","232.77999877929688","232.77999877929688","","2014-09-02T00:00:00Z","","0" +"NM-04608","73.22000122070312","73.22000122070312","","1956-09-14T00:00:00Z","","0" +"NM-01575","84.23999786376953","84.23999786376953","","1994-07-20T00:00:00Z","","0" +"NM-02026","55.939998626708984","55.939998626708984","","1975-01-16T00:00:00Z","","0" +"NM-11889","-0.05999999865889549","-0.05999999865889549","","1958-03-05T00:00:00Z","","0" +"NM-03081","242.83999633789062","242.83999633789062","","1992-03-13T00:00:00Z","","0" +"NM-00713","9.65999984741211","9.65999984741211","","1955-07-05T00:00:00Z","","0" +"NM-00269","422.1000061035156","422.1000061035156","","1984-01-27T00:00:00Z","","0" +"BC-0102","325.3900146484375","325.3900146484375","","2019-11-03T00:00:00Z","","0" +"NM-01327","175.8000030517578","175.8000030517578","","2009-03-12T00:00:00Z","","0" +"NM-03344","76.7300033569336","76.7300033569336","R","1984-08-27T00:00:00Z","","0" +"EB-122","607.5399780273438","607.5399780273438","","2000-07-31T00:00:00Z","","0" +"DE-0111","37.4900016784668","37.4900016784668","","2009-07-20T00:00:00Z","","0" +"NM-02092","73.36000061035156","73.36000061035156","","1956-01-07T00:00:00Z","","0" +"NM-04403","197.63999938964844","197.63999938964844","","1965-10-14T00:00:00Z","","0" +"SD-0277","222.10000610351562","222.10000610351562","","1962-07-05T00:00:00Z","","0" +"NM-01705","109","109","","1972-10-05T00:00:00Z","","0" +"EB-357","229.52000427246094","227.52000427246094","","2003-09-12T00:00:00Z","","2" +"NM-19059","48.15999984741211","48.15999984741211","","1981-07-07T00:00:00Z","","0" +"NM-17420","48.150001525878906","48.150001525878906","","1941-05-21T00:00:00Z","","0" +"NM-14196","-31.030000686645508","-31.030000686645508","","1911-12-04T00:00:00Z","","0" +"NM-01048","275.3500061035156","275.3500061035156","A","2010-02-20T00:00:00Z","","0" +"NM-04395","228.6300048828125","228.6300048828125","","1970-12-02T00:00:00Z","","0" +"NM-17716","2.809999942779541","2.809999942779541","","1946-02-10T00:00:00Z","","0" +"EB-276","134.3300018310547","134.3300018310547","","1961-07-25T00:00:00Z","","0" +"EB-250","48.15999984741211","48.15999984741211","","1973-02-15T00:00:00Z","","0" +"NM-17516","46.369998931884766","46.369998931884766","","1948-01-06T00:00:00Z","","0" +"NM-28253","6.139999866485596","6.139999866485596","","2003-01-24T00:00:00Z","","0" +"NM-20498","62.84000015258789","62.84000015258789","","1953-02-16T00:00:00Z","","0" +"NM-13308","54.40999984741211","54.40999984741211","","1986-02-06T00:00:00Z","","0" +"NM-08842","47.5","47.5","S","1946-07-24T00:00:00Z","","0" +"NM-21207","30.229999542236328","30.229999542236328","","1948-10-27T00:00:00Z","","0" +"NM-20808","89.26000213623047","89.26000213623047","","1950-08-09T00:00:00Z","","0" +"AB-0184","357.3399963378906","357.3399963378906","","2004-09-27T00:00:00Z","","" +"NM-07708","29.780000686645508","29.780000686645508","","1991-12-04T00:00:00Z","","0" +"NM-11105","17.280000686645508","17.280000686645508","","1950-01-19T00:00:00Z","","0" +"NM-02518","8.800000190734863","8.800000190734863","","1979-02-15T00:00:00Z","","0" +"NM-12376","13.260000228881836","13.260000228881836","","1960-01-13T00:00:00Z","","0" +"SB-0032","98.5999984741211","98.5999984741211","","1972-03-31T00:00:00Z","","0" +"NM-20289","44.290000915527344","44.290000915527344","","1944-05-19T00:00:00Z","","0" +"NM-02361","87.0999984741211","87.0999984741211","","1963-01-15T00:00:00Z","","0" +"NM-09289","94.30000305175781","94.30000305175781","","1967-01-03T00:00:00Z","","0" +"NM-04224","139.52000427246094","139.52000427246094","","1972-02-01T00:00:00Z","","0" +"NM-27750","49.52000045776367","49.52000045776367","","1974-06-06T00:00:00Z","","0" +"NM-01427","800.510009765625","800.510009765625","","2016-02-24T00:00:00Z","","0" +"NM-04690","76.7699966430664","76.7699966430664","","1954-07-15T00:00:00Z","","0" +"NM-13749","-5.619999885559082","-5.619999885559082","","1910-03-27T00:00:00Z","","0" +"NM-14068","-6.199999809265137","-6.199999809265137","","1911-01-21T00:00:00Z","","0" +"NM-00226","39.279998779296875","39.279998779296875","","2010-04-08T00:00:00Z","","0" +"DE-0109","34.36000061035156","34.36000061035156","","2006-11-21T00:00:00Z","","0" +"SA-0078","177.6199951171875","175.6599884033203","R","2017-02-28T00:00:00Z","0001-01-01T15:02:00Z","1.9600000381469727" +"SD-0213","142.1999969482422","142.1999969482422","","1962-11-09T00:00:00Z","","0" +"NM-01948","6.599999904632568","6.599999904632568","","1992-01-15T00:00:00Z","","0" +"NM-06676","11.699999809265137","11.699999809265137","","1952-08-15T00:00:00Z","","0" +"NM-02209","98.44999694824219","98.44999694824219","","1953-11-01T00:00:00Z","","0" +"DE-0106","42.47999954223633","42.47999954223633","","2010-07-13T00:00:00Z","","0" +"AR-0214","60.900001525878906","58.60000228881836","","2017-03-20T00:00:00Z","0001-01-01T13:07:00Z","2.299999952316284" +"NM-11925","89.87000274658203","89.87000274658203","","1991-01-07T00:00:00Z","","0" +"NM-02520","7.900000095367432","7.900000095367432","","1964-01-15T00:00:00Z","","0" +"NM-09692","156.1199951171875","156.1199951171875","","1951-03-24T00:00:00Z","","0" +"NM-05420","16.40999984741211","16.40999984741211","","1953-03-23T00:00:00Z","","0" +"NM-02490","143.49000549316406","143.49000549316406","","1979-01-25T00:00:00Z","","0" +"NM-00578","113.36000061035156","113.36000061035156","","2016-02-04T00:00:00Z","","0" +"NM-00068","46.869998931884766","46.869998931884766","","1999-08-24T00:00:00Z","","0" +"SM-0029","33.099998474121094","32.09000015258789","","2006-08-07T00:00:00Z","","1.0099999904632568" +"BC-0339","","80.9000015258789","","2021-03-06T00:00:00Z","","0" +"NM-22303","6.079999923706055","6.079999923706055","","1997-02-27T00:00:00Z","","0" +"NM-16566","12.789999961853027","12.789999961853027","","1951-01-12T00:00:00Z","","0" +"NM-16762","3.359999895095825","3.359999895095825","","1946-05-27T00:00:00Z","","0" +"NM-01291","93.4000015258789","93.4000015258789","","2007-04-17T00:00:00Z","","0" +"NM-13036","7.050000190734863","7.050000190734863","","1983-03-04T00:00:00Z","","0" +"NM-20292","103.19999694824219","103.19999694824219","","1955-01-14T00:00:00Z","","0" +"NM-28019","476.7200012207031","476.7200012207031","S","2015-05-06T00:00:00Z","","0" +"NM-20804","20.059999465942383","20.059999465942383","","1951-02-13T00:00:00Z","","0" +"NM-10069","8.550000190734863","8.550000190734863","","1972-11-13T00:00:00Z","","0" +"NM-02167","24.75","24.75","","2011-03-24T00:00:00Z","","0" +"NM-21500","212.13999938964844","212.13999938964844","","1998-07-17T00:00:00Z","","0" +"UC-0095","141.6999969482422","141.6999969482422","","1976-01-28T00:00:00Z","","0" +"NM-12559","15.640000343322754","15.640000343322754","","1947-01-29T00:00:00Z","","0" +"NM-00070","17.469999313354492","17.469999313354492","","1993-05-04T00:00:00Z","","0" +"NM-02591","15.699999809265137","15.699999809265137","","1971-11-15T00:00:00Z","","0" +"NM-20310","54.599998474121094","54.599998474121094","","1946-10-02T00:00:00Z","","0" +"BC-0045","215.22000122070312","215.22000122070312","","2013-09-03T00:00:00Z","","0" +"NM-08606","37.150001525878906","37.150001525878906","","1982-02-09T00:00:00Z","","0" +"NM-08647","23.729999542236328","23.729999542236328","","1942-10-24T00:00:00Z","","0" +"NM-03032","31.350000381469727","31.350000381469727","","1952-05-27T00:00:00Z","","0" +"NM-25524","60.689998626708984","60.689998626708984","","1987-02-03T00:00:00Z","","0" +"NM-02791","60.970001220703125","60.970001220703125","","2006-02-07T00:00:00Z","","0" +"NM-21333","40.150001525878906","40.150001525878906","","1958-09-05T00:00:00Z","","0" +"NM-23200","5.559999942779541","5.559999942779541","","1992-10-05T00:00:00Z","","0" +"NM-28259","80.41999816894531","80.41999816894531","","1959-12-25T00:00:00Z","","0" +"SB-0525","1111","1111","","1972-04-11T00:00:00Z","","0" +"NM-04417","80.4000015258789","80.4000015258789","","1982-01-26T00:00:00Z","","0" +"NM-01868","8.199999809265137","8.199999809265137","","1948-12-15T00:00:00Z","","0" +"EB-117","54.5","54.5","","1991-07-31T00:00:00Z","","0" +"BC-0313","117.08000183105469","117.08000183105469","","2018-09-29T00:00:00Z","","0" +"NM-00172","38.36000061035156","38.36000061035156","","1996-01-24T00:00:00Z","","0" +"NM-28254","60.81999969482422","60.81999969482422","","1966-12-25T00:00:00Z","","0" +"NM-13287","138.6999969482422","138.6999969482422","","1976-02-27T00:00:00Z","","0" +"NM-04597","54.70000076293945","54.70000076293945","","1978-03-01T00:00:00Z","","0" +"NM-13246","95.62999725341797","95.62999725341797","","1956-07-01T00:00:00Z","","0" +"NM-05593","93.04000091552734","93.04000091552734","","1950-09-22T00:00:00Z","","0" +"SB-0381","41.79999923706055","41.79999923706055","","1966-02-08T00:00:00Z","","0" +"NM-08842","27.09000015258789","27.09000015258789","","1942-02-04T00:00:00Z","","0" +"NM-28250","92.93000030517578","92.93000030517578","","2018-12-05T00:00:00Z","","0" +"NM-02248","19.530000686645508","19.530000686645508","","1992-02-21T00:00:00Z","","0" +"EB-414","192.44000244140625","192.44000244140625","","2014-05-22T00:00:00Z","","0" +"NM-25680","-106.12999725341797","-106.12999725341797","","1988-11-13T00:00:00Z","","0" +"NM-15890","91.0199966430664","91.0199966430664","","1985-01-15T00:00:00Z","","0" +"NM-03212","39.88999938964844","39.88999938964844","","1945-05-07T00:00:00Z","","0" +"NM-14503","43.599998474121094","43.599998474121094","","1975-01-17T00:00:00Z","","0" +"NM-28254","68.5999984741211","68.5999984741211","","1979-10-15T00:00:00Z","","0" +"NM-09036","55.04999923706055","55.04999923706055","","1938-01-09T00:00:00Z","","0" +"NM-02367","11.789999961853027","11.789999961853027","","1993-02-04T00:00:00Z","","0" +"NM-18232","367.55999755859375","367.55999755859375","","2015-01-22T00:00:00Z","","0" +"NM-03057","77.83000183105469","77.83000183105469","","1981-01-09T00:00:00Z","","0" +"AB-0100","723.2899780273438","723.2899780273438","","2005-05-24T00:00:00Z","","" +"SO-0189","10.5","9.010000228881836","","2021-06-18T00:00:00Z","0001-01-01T19:00:00Z","1.4900000095367432" +"NM-02622","150.52999877929688","150.52999877929688","","1954-09-01T00:00:00Z","","0" +"NM-01725","-95.2300033569336","-95.2300033569336","E","1986-10-28T00:00:00Z","","0" +"NM-10238","46.34000015258789","46.34000015258789","","1988-01-07T00:00:00Z","","0" +"NM-02501","59.720001220703125","59.720001220703125","","1946-09-10T00:00:00Z","","0" +"NM-01761","55.5","55.5","","1976-02-06T00:00:00Z","","0" +"WL-0119","14.520000457763672","13.600000381469727","","2018-06-19T00:00:00Z","","0.9200000166893005" +"NM-09176","69.44999694824219","69.44999694824219","","1960-07-27T00:00:00Z","","0" +"SM-0255","20.540000915527344","19.540000915527344","","2009-04-16T00:00:00Z","","1" +"NM-23491","134.3000030517578","134.3000030517578","","1986-01-14T00:00:00Z","","0" +"NM-02843","39.86000061035156","39.86000061035156","","1958-01-08T00:00:00Z","","0" +"NM-10140","31.899999618530273","31.899999618530273","","1947-11-08T00:00:00Z","","0" +"NM-13976","-11.109999656677246","-11.109999656677246","","1911-06-04T00:00:00Z","","0" +"NM-19475","65.5999984741211","65.5999984741211","","1965-07-15T00:00:00Z","","0" +"NM-07225","197.83999633789062","197.83999633789062","","1977-10-01T00:00:00Z","","0" +"NM-00202","60.099998474121094","60.099998474121094","","1985-08-28T00:00:00Z","","0" +"NM-00542","72.72000122070312","72.72000122070312","","2001-01-18T00:00:00Z","","0" +"NM-01971","8.399999618530273","8.399999618530273","","1974-02-15T00:00:00Z","","0" +"NM-03054","230.3800048828125","230.3800048828125","","1993-01-07T00:00:00Z","","0" +"NM-12512","6.389999866485596","6.389999866485596","","1942-02-14T00:00:00Z","","0" +"NM-02029","9","9","","1993-11-15T00:00:00Z","","0" +"NM-03376","25.770000457763672","25.770000457763672","","1991-01-08T00:00:00Z","","0" +"NM-05367","106.30000305175781","106.30000305175781","","1962-01-18T00:00:00Z","","0" +"NM-05511","113.77999877929688","113.77999877929688","","1954-01-08T00:00:00Z","","0" +"NM-19382","94.31999969482422","94.31999969482422","","1954-02-16T00:00:00Z","","0" +"EB-481","358","358","P","1997-12-31T00:00:00Z","","0" +"NM-06960","124.33999633789062","124.33999633789062","","1973-03-26T00:00:00Z","","0" +"NM-13408","-17.170000076293945","-17.170000076293945","","1907-01-09T00:00:00Z","","0" +"NM-15873","89.30999755859375","89.30999755859375","","1977-10-04T00:00:00Z","","0" +"NM-04679","233.60000610351562","233.60000610351562","","1983-01-27T00:00:00Z","","0" +"NM-20606","6.110000133514404","6.110000133514404","","1966-02-23T00:00:00Z","","0" +"NM-13888","3.619999885559082","3.619999885559082","","1962-12-03T00:00:00Z","","0" +"NM-13007","233.77999877929688","233.77999877929688","","1943-11-13T00:00:00Z","","0" +"NM-11857","22.469999313354492","22.469999313354492","","1963-09-05T00:00:00Z","","0" +"NM-09286","65.4000015258789","65.4000015258789","","1981-01-09T00:00:00Z","","0" +"NM-18089","180.1199951171875","180.1199951171875","","1970-01-06T00:00:00Z","","0" +"NM-06138","19.15999984741211","19.15999984741211","","2014-03-12T00:00:00Z","","0" +"AB-0161","490.94000244140625","490.94000244140625","","2005-03-28T00:00:00Z","","" +"NM-13797","19.059999465942383","19.059999465942383","","1960-04-05T00:00:00Z","","0" +"EB-478","685.2000122070312","685.2000122070312","P","2000-11-30T00:00:00Z","","0" +"NM-28258","169.5500030517578","169.5500030517578","","1990-08-25T00:00:00Z","","0" +"NM-26512","76.55999755859375","76.55999755859375","","2002-09-18T00:00:00Z","","0" +"NM-02524","14.949999809265137","14.949999809265137","","2014-10-16T00:00:00Z","","0" +"NM-11427","37","37","","1946-06-19T00:00:00Z","","0" +"NM-03432","75.72000122070312","75.72000122070312","","1959-05-05T00:00:00Z","","0" +"WL-0090","47.125","44.744998931884766","","1991-05-08T00:00:00Z","","2.380000114440918" +"NM-13274","-14.859999656677246","-14.859999656677246","","1909-06-18T00:00:00Z","","0" +"NM-28259","65.4000015258789","65.4000015258789","","1958-12-25T00:00:00Z","","0" +"NM-14045","39.52000045776367","39.52000045776367","P","1959-08-12T00:00:00Z","","0" +"EB-484","495.0799865722656","494.47998046875","P","1993-05-31T00:00:00Z","","0.6000000238418579" +"NM-14274","-9.09000015258789","-9.09000015258789","","1926-11-29T00:00:00Z","","0" +"NM-00500","103.45999908447266","103.45999908447266","","2014-12-18T00:00:00Z","","0" +"NM-23147","57.25","57.25","R","1946-05-09T00:00:00Z","","0" +"NM-18089","166.85000610351562","166.85000610351562","","1955-05-25T00:00:00Z","","0" +"SA-0211","221","219.99000549316406","","2010-11-09T00:00:00Z","","1.0099999904632568" +"NM-01300","11.34000015258789","11.34000015258789","","1957-07-09T00:00:00Z","","0" +"NM-22970","12.229999542236328","12.229999542236328","Z","2008-02-11T00:00:00Z","","0" +"SB-0236","75.13999938964844","75.13999938964844","","1948-03-11T00:00:00Z","","0" +"NM-01940","79.9800033569336","79.9800033569336","","1949-11-23T00:00:00Z","","0" +"NM-22756","36.47999954223633","36.47999954223633","","1953-06-23T00:00:00Z","","0" +"NM-25321","425.5","425.5","","1985-07-31T00:00:00Z","","0" +"QU-103","102.48999786376953","101.48999786376953","","2012-12-19T00:00:00Z","","1" +"NM-12755","-10.239999771118164","-10.239999771118164","","1909-06-28T00:00:00Z","","0" +"NM-02169","9.890000343322754","9.890000343322754","","2006-01-30T00:00:00Z","","0" +"NM-05315","109.4000015258789","109.4000015258789","","1957-11-23T00:00:00Z","","0" +"NM-00279","202.02000427246094","202.02000427246094","","1984-01-27T00:00:00Z","","0" +"NM-02709","19.600000381469727","19.600000381469727","","1962-01-19T00:00:00Z","","0" +"NM-06038","27.010000228881836","27.010000228881836","","2004-10-06T00:00:00Z","","0" +"NM-21597","354.8800048828125","354.8800048828125","","1997-09-01T00:00:00Z","","0" +"NM-00384","86.63999938964844","86.63999938964844","","2013-08-09T00:00:00Z","","0" +"NM-26517","55.38999938964844","55.38999938964844","","2003-07-08T00:00:00Z","","0" +"EB-012","198","198","","1992-06-30T00:00:00Z","","0" +"NM-23307","155","152.6699981689453","","2018-10-20T00:00:00Z","","2.3299999237060547" +"NM-21915","68.72000122070312","68.72000122070312","R","1991-01-08T00:00:00Z","","0" +"NM-11815","132.02000427246094","132.02000427246094","","1966-01-12T00:00:00Z","","0" +"NM-28250","88.66999816894531","88.66999816894531","","1990-06-05T00:00:00Z","","0" +"NM-18653","69.04000091552734","69.04000091552734","","1963-01-23T00:00:00Z","","0" +"NM-00474","53.29999923706055","53.29999923706055","","1960-01-21T00:00:00Z","","0" +"NM-13162","11.770000457763672","11.770000457763672","","1950-01-04T00:00:00Z","","0" +"NM-03468","151.8699951171875","151.8699951171875","Z","1996-11-27T00:00:00Z","","0" +"NM-12932","292.7699890136719","292.7699890136719","","1947-04-21T00:00:00Z","","0" +"NM-14827","60.29999923706055","60.29999923706055","","1989-11-30T00:00:00Z","","0" +"NM-28083","31.579999923706055","31.579999923706055","","2016-06-01T00:00:00Z","","0" +"NM-02006","8","8","","1999-02-17T00:00:00Z","","0" +"SM-0003","50.400001525878906","49.20000076293945","","2007-12-14T00:00:00Z","","1.2000000476837158" +"NM-28250","90.93000030517578","90.93000030517578","","2017-06-05T00:00:00Z","","0" +"NM-00669","8.550000190734863","8.550000190734863","","2010-10-06T00:00:00Z","","0" +"NM-11527","36.790000915527344","36.790000915527344","","1954-04-16T00:00:00Z","","0" +"NM-16852","18.790000915527344","18.790000915527344","","1939-01-20T00:00:00Z","","0" +"NM-25666","22","22","","1977-03-02T00:00:00Z","","0" +"DE-0111","33.33000183105469","33.33000183105469","","2004-12-08T00:00:00Z","","0" +"NM-17562","23.639999389648438","23.639999389648438","R","1950-11-29T00:00:00Z","","0" +"NM-01201","30.3700008392334","30.3700008392334","","1988-09-29T00:00:00Z","","0" +"NM-02520","7","7","","1990-01-15T00:00:00Z","","0" +"QU-057","134.97999572753906","133.67999267578125","","2013-02-15T00:00:00Z","","1.2999999523162842" +"NM-28253","11.4399995803833","11.4399995803833","","1997-10-05T00:00:00Z","","0" +"NM-27377","-33.34000015258789","-33.34000015258789","","1917-07-20T00:00:00Z","","0" +"NM-05214","118.2300033569336","118.2300033569336","","1972-03-07T00:00:00Z","","0" +"NM-14147","24.93000030517578","24.93000030517578","","1978-02-01T00:00:00Z","","0" +"NM-07683","49.45000076293945","49.45000076293945","","1976-02-18T00:00:00Z","","0" +"NM-17280","27.8700008392334","27.8700008392334","","1934-08-14T00:00:00Z","","0" +"NM-28024","480.25","480.25","S","2015-04-24T00:00:00Z","","0" +"SV-0088","169.8000030517578","167.8000030517578","","2017-04-02T00:00:00Z","","2" +"NM-03420","42.29999923706055","42.29999923706055","","2001-01-11T00:00:00Z","","0" +"NM-15694","81.87999725341797","81.87999725341797","","1975-02-27T00:00:00Z","","0" +"NM-17569","60.029998779296875","60.029998779296875","","1968-01-10T00:00:00Z","","0" +"NM-00037","99.4800033569336","96.08000183105469","AA","2024-10-02T00:00:00Z","0001-01-01T11:30:00Z","3.4000000953674316" +"EB-480","609.9099731445312","606.9099731445312","Z","2003-12-31T00:00:00Z","","3" +"NM-02396","6.900000095367432","6.900000095367432","","1953-08-15T00:00:00Z","","0" +"NM-03653","34.47999954223633","34.47999954223633","","1997-09-08T00:00:00Z","","0" +"NM-17990","29.440000534057617","29.440000534057617","","1966-02-10T00:00:00Z","","0" +"NM-02668","34.790000915527344","34.790000915527344","P","1950-01-19T00:00:00Z","","0" +"NM-11323","3.7300000190734863","3.7300000190734863","","1979-04-24T00:00:00Z","","0" +"NM-17394","28.309999465942383","28.309999465942383","","1945-09-25T00:00:00Z","","0" +"NM-02412","37.97999954223633","37.97999954223633","","1956-03-07T00:00:00Z","","0" +"BC-0235","23.610000610351562","23.610000610351562","","2018-04-03T00:00:00Z","","0" +"NM-04232","27.600000381469727","27.600000381469727","P","1972-04-11T00:00:00Z","","0" +"AR-0092","65.91000366210938","65.11000061035156","","2017-01-25T00:00:00Z","0001-01-01T13:43:00Z","0.800000011920929" +"NM-02644","21.1200008392334","21.1200008392334","","1952-01-11T00:00:00Z","","0" +"NM-09824","-130.39999389648438","-130.39999389648438","","1905-06-29T00:00:00Z","","0" +"NM-11024","-67.98999786376953","-67.98999786376953","","1910-12-30T00:00:00Z","","0" +"NM-06734","57.119998931884766","57.119998931884766","","1960-01-05T00:00:00Z","","0" +"NM-01868","7.300000190734863","7.300000190734863","","2000-05-15T00:00:00Z","","0" +"NM-02005","3.700000047683716","3.700000047683716","","1998-08-15T00:00:00Z","","0" +"NM-01326","50.720001220703125","50.720001220703125","","2008-09-26T00:00:00Z","","0" +"NM-03399","9.170000076293945","9.170000076293945","","1989-04-26T00:00:00Z","","0" +"NM-28259","112.62999725341797","112.62999725341797","","1970-11-05T00:00:00Z","","0" +"CX-0044","160","160","Z","1946-06-25T00:00:00Z","","0" +"NM-28253","18.139999389648438","18.139999389648438","","1998-04-25T00:00:00Z","","0" +"NM-27876","9.770000457763672","9.770000457763672","","1966-12-16T00:00:00Z","","0" +"NM-03401","7.809999942779541","7.809999942779541","Z","1991-05-29T00:00:00Z","","0" +"NM-11019","19.8799991607666","19.8799991607666","","1961-01-17T00:00:00Z","","0" +"NM-12749","20.780000686645508","20.780000686645508","","1944-09-22T00:00:00Z","","0" +"NM-20164","51.29999923706055","51.29999923706055","","1953-01-21T00:00:00Z","","0" +"BC-0055","90.54000091552734","90.54000091552734","","2017-06-22T00:00:00Z","","0" +"NM-12050","138.75999450683594","138.75999450683594","","2011-01-31T00:00:00Z","","0" +"NM-06108","17.600000381469727","17.600000381469727","","1992-02-13T00:00:00Z","","0" +"NM-03323","69.2300033569336","69.2300033569336","T","1985-12-30T00:00:00Z","","0" +"NM-28254","27.600000381469727","27.600000381469727","","1955-11-05T00:00:00Z","","0" +"NM-02513","13.770000457763672","13.770000457763672","","1970-01-26T00:00:00Z","","0" +"NM-02320","178.61000061035156","178.61000061035156","","1993-08-24T00:00:00Z","","0" +"AB-0039","347.3800048828125","347.3800048828125","","1997-03-07T00:00:00Z","","" +"NM-11424","89.3499984741211","89.3499984741211","","1952-01-22T00:00:00Z","","0" +"NM-17651","33.02000045776367","33.02000045776367","","1982-02-26T00:00:00Z","","0" +"NM-06893","11.470000267028809","11.470000267028809","","1951-03-22T00:00:00Z","","0" +"NM-01948","6.199999809265137","6.199999809265137","","1971-08-15T00:00:00Z","","0" +"EB-484","603.6500244140625","603.050048828125","Z","2008-01-31T00:00:00Z","","0.6000000238418579" +"NM-02766","378.7699890136719","378.7699890136719","","1984-02-06T00:00:00Z","","0" +"NM-01897","12.65999984741211","12.65999984741211","","2001-10-24T00:00:00Z","","0" +"SB-0262","146.1199951171875","146.1199951171875","","1953-01-28T00:00:00Z","","0" +"DE-0236","107.95999908447266","107.95999908447266","","2012-11-07T00:00:00Z","","0" +"NM-26103","30","30","","1993-05-20T00:00:00Z","","0" +"NM-09670","92.69000244140625","92.69000244140625","","1979-01-23T00:00:00Z","","0" +"AB-0039","333.5899963378906","333.5899963378906","","2016-07-05T00:00:00Z","","0" +"NM-14225","0.5","0.5","","1957-01-10T00:00:00Z","","0" +"NM-03737","62.79999923706055","62.79999923706055","","1968-01-27T00:00:00Z","","0" +"NM-11322","2.700000047683716","2.700000047683716","","1971-02-19T00:00:00Z","","0" +"NM-11620","116.16999816894531","116.16999816894531","","1958-01-15T00:00:00Z","","0" +"NM-17562","20.799999237060547","20.799999237060547","","1950-01-07T00:00:00Z","","0" +"NM-01299","106.6500015258789","106.6500015258789","","2005-11-17T00:00:00Z","","0" +"NM-08189","10.199999809265137","10.199999809265137","","1974-03-15T00:00:00Z","","0" +"NM-01841","232.5800018310547","232.5800018310547","","1965-09-20T00:00:00Z","","0" +"NM-17577","32.41999816894531","32.41999816894531","","1946-03-26T00:00:00Z","","0" +"NM-17220","59.68000030517578","59.68000030517578","","1957-01-17T00:00:00Z","","0" +"NM-24129","14.170000076293945","14.170000076293945","","1987-09-14T00:00:00Z","","0" +"NM-13877","-35.650001525878906","-35.650001525878906","","1913-07-16T00:00:00Z","","0" +"NM-02321","208.0500030517578","208.0500030517578","","1980-02-07T00:00:00Z","","0" +"NM-12551","60.70000076293945","60.70000076293945","","1942-02-03T00:00:00Z","","0" +"NM-13763","43.20000076293945","43.20000076293945","","1994-01-27T00:00:00Z","","0" +"NM-13594","25.84000015258789","25.84000015258789","","1981-02-13T00:00:00Z","","0" +"DE-0112","40.65999984741211","40.65999984741211","","2010-04-05T00:00:00Z","","0" +"NM-08950","34","34","","1911-09-01T00:00:00Z","","0" +"NM-14443","54","54","","1976-02-24T00:00:00Z","","0" +"NM-28252","37.900001525878906","37.900001525878906","","1957-05-05T00:00:00Z","","0" +"NM-14059","-25.260000228881836","-25.260000228881836","","1905-10-17T00:00:00Z","","0" +"NM-04857","46.65999984741211","46.65999984741211","","1954-01-25T00:00:00Z","","0" +"AB-0102","579.8400268554688","579.8400268554688","","2001-10-25T00:00:00Z","","" +"NM-28255","50.5099983215332","50.5099983215332","","1997-10-05T00:00:00Z","","0" +"EB-485","510.70001220703125","509.70001220703125","P","1997-12-31T00:00:00Z","","1" +"NM-17232","92.30000305175781","92.30000305175781","","1977-01-28T00:00:00Z","","0" +"NM-19682","271.67999267578125","271.67999267578125","","1980-11-07T00:00:00Z","","0" +"NM-28021","468.2699890136719","468.2699890136719","S","2015-04-20T00:00:00Z","","0" +"NM-06043","64.61000061035156","64.61000061035156","","1957-09-10T00:00:00Z","","0" +"NM-06132","221.64999389648438","221.64999389648438","R","1973-04-30T00:00:00Z","","0" +"NM-03746","57.970001220703125","57.970001220703125","","1966-08-12T00:00:00Z","","0" +"NM-03145","77.88999938964844","77.88999938964844","","1990-03-06T00:00:00Z","","0" +"NM-03723","71.51000213623047","71.51000213623047","","1968-01-04T00:00:00Z","","0" +"NM-02702","-23.030000686645508","-23.030000686645508","","1999-01-25T00:00:00Z","","0" +"TB-0131","55.45000076293945","55.45000076293945","R","2009-12-19T00:00:00Z","","0" +"NM-03048","152.4199981689453","152.4199981689453","","1986-01-13T00:00:00Z","","0" +"NM-04246","66.43000030517578","66.43000030517578","","2013-09-20T00:00:00Z","","0" +"NM-02169","9.359999656677246","9.359999656677246","","2001-12-27T00:00:00Z","","0" +"NM-02111","137.8699951171875","137.8699951171875","","1977-01-27T00:00:00Z","","0" +"NM-28254","29.260000228881836","29.260000228881836","","1989-11-15T00:00:00Z","","0" +"NM-03903","329.32000732421875","329.32000732421875","","1974-12-29T00:00:00Z","","0" +"NM-20850","165.27999877929688","165.27999877929688","","1968-01-30T00:00:00Z","","0" +"NM-01915","150.25","150.25","","2005-01-12T00:00:00Z","","0" +"DE-0091","91.02999877929688","91.02999877929688","","2000-02-14T00:00:00Z","","0" +"NM-03428","6.429999828338623","6.429999828338623","","2014-08-21T00:00:00Z","","0" +"NM-26618","45.34000015258789","45.34000015258789","","2012-05-09T00:00:00Z","","0" +"NM-10517","29.280000686645508","29.280000686645508","","1952-01-14T00:00:00Z","","0" +"NM-05606","22.530000686645508","22.530000686645508","","1944-07-19T00:00:00Z","","0" +"NM-25969","8","8","","1960-06-20T00:00:00Z","","0" +"NM-13594","32.47999954223633","32.47999954223633","","1971-03-01T00:00:00Z","","0" +"NM-03025","74.73999786376953","74.73999786376953","","1979-01-06T00:00:00Z","","0" +"NM-07559","57.20000076293945","57.20000076293945","","1962-08-21T00:00:00Z","","0" +"NM-28250","90.68000030517578","90.68000030517578","","1990-08-05T00:00:00Z","","0" +"SB-0299","108.01000213623047","108.01000213623047","","1968-11-15T00:00:00Z","","0" +"NM-04564","121.05000305175781","121.05000305175781","","2008-01-10T00:00:00Z","","0" +"NM-08843","52","52","","1992-05-01T00:00:00Z","","0" +"NM-02314","9","9","","1998-02-27T00:00:00Z","","0" +"NM-03254","345.0799865722656","345.0799865722656","","1977-01-04T00:00:00Z","","0" +"NM-17716","5.78000020980835","5.78000020980835","","1948-07-26T00:00:00Z","","0" +"NM-06374","161.11000061035156","161.11000061035156","P","1971-02-15T00:00:00Z","","0" +"EB-365","120.80000305175781","117.80000305175781","","2012-02-14T00:00:00Z","","3" +"NM-01300","12.800000190734863","12.800000190734863","","1958-05-12T00:00:00Z","","0" +"NM-28259","135.77000427246094","135.77000427246094","","1984-06-25T00:00:00Z","","0" +"NM-21142","152.52000427246094","152.52000427246094","","1987-02-11T00:00:00Z","","0" +"NM-23350","106.77999877929688","106.77999877929688","","1952-08-25T00:00:00Z","","0" +"NM-00682","157.10000610351562","157.10000610351562","","1979-01-12T00:00:00Z","","0" +"NM-28253","27.040000915527344","27.040000915527344","","2004-06-04T00:00:00Z","","0" +"NM-10300","-72.61000061035156","-72.61000061035156","","1908-08-25T00:00:00Z","","0" +"EB-264","11.149999618530273","11.149999618530273","","2010-05-04T00:00:00Z","","0" +"NM-04323","93.41999816894531","93.41999816894531","","1948-09-27T00:00:00Z","","0" +"SM-0015","311.95001220703125","311.8500061035156","","2006-06-20T00:00:00Z","","0.10000000149011612" +"NM-20587","21.649999618530273","21.649999618530273","","1957-02-06T00:00:00Z","","0" +"NM-14535","89","89","","1977-01-05T00:00:00Z","","0" +"NM-28252","44.900001525878906","44.900001525878906","","2016-04-15T00:00:00Z","","0" +"NM-02207","10.800000190734863","10.800000190734863","","2003-01-15T00:00:00Z","","0" +"NM-03734","27.190000534057617","27.190000534057617","","1960-01-22T00:00:00Z","","0" +"NM-28254","70.0999984741211","70.0999984741211","","1987-03-25T00:00:00Z","","0" +"NM-19969","56.79999923706055","56.79999923706055","","1945-01-24T00:00:00Z","","0" +"NM-03019","109.33999633789062","109.33999633789062","","1985-01-10T00:00:00Z","","0" +"NM-22167","14.579999923706055","14.579999923706055","","1993-02-25T00:00:00Z","","0" +"BC-0088","166.82000732421875","166.82000732421875","","2016-06-02T00:00:00Z","","0" +"NM-14290","-28.719999313354492","-28.719999313354492","","1912-12-03T00:00:00Z","","0" +"NM-24338","52.689998626708984","52.689998626708984","","1975-01-20T00:00:00Z","","0" +"NM-02017","5.800000190734863","5.800000190734863","","2001-06-15T00:00:00Z","","0" +"NM-17039","82.70999908447266","82.70999908447266","","1965-09-15T00:00:00Z","","0" +"NM-02924","93.8499984741211","93.8499984741211","","1960-06-21T00:00:00Z","","0" +"NM-09510","17.31999969482422","17.31999969482422","","1984-03-01T00:00:00Z","","0" +"NM-09104","469.45001220703125","469.45001220703125","R","1963-07-26T00:00:00Z","","0" +"NM-28250","80.33000183105469","80.33000183105469","","2000-11-22T00:00:00Z","","0" +"NM-06103","105.4800033569336","105.4800033569336","","1960-01-30T00:00:00Z","","0" +"NM-21791","9.260000228881836","9.260000228881836","","1992-05-26T00:00:00Z","","0" +"UC-0105","177.02000427246094","177.02000427246094","","2016-03-02T00:00:00Z","","0" +"SB-0289","108.73999786376953","108.73999786376953","","1978-01-19T00:00:00Z","","0" +"NM-05332","250.9499969482422","250.9499969482422","","1983-01-12T00:00:00Z","","0" +"NM-13404","-78.38999938964844","-78.38999938964844","","1930-11-29T00:00:00Z","","0" +"NM-06038","27.31999969482422","27.31999969482422","","2005-05-11T00:00:00Z","","0" +"NM-04966","105.62999725341797","105.62999725341797","","1968-04-02T00:00:00Z","","0" +"TV-218","214.47000122070312","213.8699951171875","","2005-11-09T00:00:00Z","","0.6000000238418579" +"NM-01359","10.039999961853027","10.039999961853027","","2014-04-25T00:00:00Z","","0" +"NM-23976","35","35","","1978-10-04T00:00:00Z","","0" +"NM-00773","14.850000381469727","14.850000381469727","","2006-02-23T00:00:00Z","","0" +"BC-0225","","37.290000915527344","","2021-10-24T00:00:00Z","","1.649999976158142" +"NM-07510","26.530000686645508","26.530000686645508","","1957-05-07T00:00:00Z","","0" +"NM-02115","42.20000076293945","42.20000076293945","","1964-08-06T00:00:00Z","","0" +"NM-20196","39.11000061035156","39.11000061035156","","1960-03-02T00:00:00Z","","0" +"NM-05716","104.08000183105469","104.08000183105469","S","1949-07-20T00:00:00Z","","0" +"NM-01063","9.869999885559082","9.869999885559082","","1959-01-28T00:00:00Z","","0" +"SB-0299","152.22999572753906","152.22999572753906","","2011-09-05T00:00:00Z","","0" +"NM-17670","75.91000366210938","75.91000366210938","","1991-01-08T00:00:00Z","","0" +"NM-17452","73.95999908447266","73.95999908447266","","1960-01-08T00:00:00Z","","0" +"EB-295","527.0499877929688","527.0499877929688","","2015-10-09T00:00:00Z","","0" +"AB-0183","342.17999267578125","342.17999267578125","","1996-12-31T00:00:00Z","","" +"DE-0087","88.73999786376953","88.73999786376953","","2015-05-11T00:00:00Z","","0" +"NM-27635","17.6200008392334","17.6200008392334","","1961-01-17T00:00:00Z","","0" +"WL-0045","50.29999923706055","49.64999771118164","","2019-10-23T00:00:00Z","0001-01-01T12:00:00Z","0.6499999761581421" +"NM-10731","13.399999618530273","13.399999618530273","","1948-01-19T00:00:00Z","","0" +"NM-01291","91.02999877929688","91.02999877929688","","1965-02-09T00:00:00Z","","0" +"NM-11320","61.439998626708984","61.439998626708984","","1966-02-17T00:00:00Z","","0" +"NM-02644","29.450000762939453","29.450000762939453","","1958-11-28T00:00:00Z","","0" +"DE-0113","36.709999084472656","36.709999084472656","","2001-12-11T00:00:00Z","","0" +"WL-0090","29.29166603088379","26.911666870117188","","1992-09-30T00:00:00Z","","2.380000114440918" +"NM-22681","5.980000019073486","5.980000019073486","Z","2011-10-05T00:00:00Z","","0" +"NM-10792","-32.029998779296875","-32.029998779296875","","1910-03-07T00:00:00Z","","0" +"NM-28250","78.2300033569336","78.2300033569336","","1995-02-05T00:00:00Z","","0" +"NM-13594","39.83000183105469","39.83000183105469","","1958-08-05T00:00:00Z","","0" +"NM-01787","252.39999389648438","252.39999389648438","","1969-01-13T00:00:00Z","","0" +"NM-28251","93.83999633789062","93.83999633789062","","1975-08-25T00:00:00Z","","0" +"NM-03653","33.560001373291016","33.560001373291016","","2010-07-22T00:00:00Z","","0" +"NM-02924","96.33999633789062","96.33999633789062","","1985-02-05T00:00:00Z","","0" +"NM-03349","30.329999923706055","30.329999923706055","","2008-02-14T00:00:00Z","","0" +"BC-0284","87.19999694824219","87.19999694824219","","2019-01-12T00:00:00Z","","0" +"NM-04502","85.16999816894531","85.16999816894531","","1963-01-17T00:00:00Z","","0" +"NM-02174","94.62999725341797","94.62999725341797","","1975-01-17T00:00:00Z","","0" +"NM-28255","87.30000305175781","87.30000305175781","","1954-06-05T00:00:00Z","","0" +"NM-23137","4.949999809265137","4.949999809265137","Z","2010-01-22T00:00:00Z","","0" +"NM-00171","40.189998626708984","40.189998626708984","","2003-01-28T00:00:00Z","","0" +"NM-02260","46.720001220703125","46.720001220703125","","1979-01-02T00:00:00Z","","0" +"NM-17271","34.189998626708984","34.189998626708984","","1934-11-16T00:00:00Z","","0" +"EB-329","92.55000305175781","91.05000305175781","","2004-03-24T00:00:00Z","","1.5" +"AB-0142","713.1799926757812","713.1799926757812","","2006-03-20T00:00:00Z","","" +"NM-17398","29.139999389648438","29.139999389648438","","1971-12-15T00:00:00Z","","0" +"NM-11523","79.27999877929688","79.27999877929688","","1986-01-22T00:00:00Z","","0" +"NM-28259","51.619998931884766","51.619998931884766","","1947-09-15T00:00:00Z","","0" +"NM-13966","-14.569999694824219","-14.569999694824219","","1907-01-02T00:00:00Z","","0" +"NM-07465","31.290000915527344","31.290000915527344","P","1966-11-29T00:00:00Z","","0" +"NM-24338","54.560001373291016","54.560001373291016","","1984-08-30T00:00:00Z","","0" +"NM-04479","69.18000030517578","69.18000030517578","","1951-01-16T00:00:00Z","","0" +"AB-0183","353.42999267578125","353.42999267578125","","1996-09-03T00:00:00Z","","" +"EB-478","90","90","","1985-11-30T00:00:00Z","","0" +"NM-12147","142.89999389648438","142.89999389648438","","1971-01-15T00:00:00Z","","0" +"NM-12353","28.170000076293945","28.170000076293945","","1944-11-28T00:00:00Z","","0" +"NM-05347","8.699999809265137","8.699999809265137","","1951-12-15T00:00:00Z","","0" +"WS-015","3.9100000858306885","3.9100000858306885","","2012-05-21T00:00:00Z","","0" +"NM-21597","355.3999938964844","355.3999938964844","","1997-06-01T00:00:00Z","","0" +"NM-01936","11.640000343322754","11.640000343322754","","2007-02-12T00:00:00Z","","0" +"NM-24463","55.400001525878906","55.400001525878906","","1987-12-09T00:00:00Z","","0" +"NM-28255","60.11000061035156","60.11000061035156","","1999-10-15T00:00:00Z","","0" +"NM-27402","47.400001525878906","47.400001525878906","","1957-01-21T00:00:00Z","","0" +"NM-14867","46.599998474121094","46.599998474121094","","1957-04-05T00:00:00Z","","0" +"SB-0299","113.4000015258789","113.4000015258789","","1966-08-30T00:00:00Z","","0" +"NM-28011","491.19000244140625","491.19000244140625","S","2015-05-27T00:00:00Z","","0" +"NM-03411","301.2300109863281","301.2300109863281","Z","1995-04-19T00:00:00Z","","0" +"NM-02194","157.75999450683594","157.75999450683594","","1961-11-22T00:00:00Z","","0" +"NM-09004","53.06999969482422","53.06999969482422","","1980-01-07T00:00:00Z","","0" +"NM-02383","42.2400016784668","42.2400016784668","","1983-01-01T00:00:00Z","","0" +"NM-11058","48.869998931884766","48.869998931884766","","1966-03-09T00:00:00Z","","0" +"NM-28257","-14.319999694824219","-14.319999694824219","","2004-01-05T00:00:00Z","","0" +"NM-11035","38.040000915527344","38.040000915527344","","1964-02-12T00:00:00Z","","0" +"NM-04525","74.93000030517578","74.93000030517578","","1968-01-19T00:00:00Z","","0" +"NM-05554","103.93000030517578","103.93000030517578","","1961-01-10T00:00:00Z","","0" +"NM-11267","-19.479999542236328","-19.479999542236328","","1912-05-28T00:00:00Z","","0" +"NM-19146","336.92999267578125","336.92999267578125","S","1956-01-13T00:00:00Z","","0" +"SO-0200","14.229999542236328","13.389999389648438","","2021-01-20T00:00:00Z","","0.8399999737739563" +"NM-09520","2.930000066757202","2.930000066757202","","1954-03-18T00:00:00Z","","0" +"NM-01251","86.5999984741211","86.5999984741211","","1960-08-25T00:00:00Z","","0" +"NM-06842","215.07000732421875","215.07000732421875","","1993-05-11T00:00:00Z","","0" +"NM-11795","35.77000045776367","35.77000045776367","","1947-01-16T00:00:00Z","","0" +"SO-0214","15.40999984741211","14.380000114440918","","2020-08-14T00:00:00Z","0001-01-01T11:48:00Z","1.0299999713897705" +"NM-02367","11.979999542236328","11.979999542236328","","1998-03-10T00:00:00Z","","0" +"SD-0150","96.4000015258789","96.4000015258789","","1962-06-05T00:00:00Z","","0" +"NM-04197","18.290000915527344","18.290000915527344","","1976-01-14T00:00:00Z","","0" +"NM-07868","16.219999313354492","16.219999313354492","","1967-01-03T00:00:00Z","","0" +"UC-0046","53.619998931884766","53.619998931884766","","1968-03-05T00:00:00Z","","0" +"NM-01868","9.899999618530273","9.899999618530273","","1966-09-15T00:00:00Z","","0" +"NM-09616","-61.060001373291016","-61.060001373291016","","1919-02-14T00:00:00Z","","0" +"NM-03581","55.52000045776367","55.52000045776367","","1967-04-03T00:00:00Z","","0" +"NM-01885","23.59000015258789","23.59000015258789","","2008-01-18T00:00:00Z","","0" +"NM-28254","44.369998931884766","44.369998931884766","","1970-11-15T00:00:00Z","","0" +"NM-17034","22.229999542236328","22.229999542236328","","1933-05-16T00:00:00Z","","0" +"NM-02514","12.710000038146973","12.710000038146973","","1962-02-01T00:00:00Z","","0" +"NM-01269","97.98999786376953","97.98999786376953","T","1955-10-10T00:00:00Z","","0" +"NM-28259","72.80000305175781","72.80000305175781","","1987-03-15T00:00:00Z","","0" +"NM-20310","55.11000061035156","55.11000061035156","","1952-01-11T00:00:00Z","","0" +"NM-02373","167.9600067138672","167.9600067138672","","1993-02-08T00:00:00Z","","0" +"NM-11975","103.66999816894531","103.66999816894531","","1956-02-01T00:00:00Z","","0" +"NM-10063","8.65999984741211","8.65999984741211","","1970-03-09T00:00:00Z","","0" +"NM-14279","9.350000381469727","9.350000381469727","","1955-01-31T00:00:00Z","","0" +"NM-07208","145.27999877929688","145.27999877929688","","1977-01-31T00:00:00Z","","0" +"NM-16411","138.22999572753906","138.22999572753906","","1982-02-24T00:00:00Z","","0" +"NM-18681","8.720000267028809","8.720000267028809","","1969-12-03T00:00:00Z","","0" +"NM-17150","27.469999313354492","27.469999313354492","","1945-01-23T00:00:00Z","","0" +"BC-0321","308.3999938964844","308.3999938964844","","2018-04-06T00:00:00Z","","0" +"EB-264","9.729999542236328","9.729999542236328","","2014-03-06T00:00:00Z","","0" +"NM-05695","15.229999542236328","15.229999542236328","","1959-07-27T00:00:00Z","","0" +"NM-20308","77.44000244140625","77.44000244140625","","1949-08-02T00:00:00Z","","0" +"NM-09692","160.61000061035156","160.61000061035156","","1953-07-21T00:00:00Z","","0" +"NM-17716","0.8700000047683716","0.8700000047683716","","1944-01-25T00:00:00Z","","0" +"NM-22664","181.10000610351562","181.10000610351562","","1953-01-07T00:00:00Z","","0" +"SB-0442","171.3000030517578","171.3000030517578","","2010-05-25T00:00:00Z","","0" +"WL-0014","57.45000076293945","57.45000076293945","","2022-06-30T00:00:00Z","0001-01-01T13:40:00Z","0" +"NM-18776","53.63999938964844","53.63999938964844","R","1974-10-03T00:00:00Z","","0" +"NM-02702","20.209999084472656","20.209999084472656","","1994-03-25T00:00:00Z","","0" +"NM-11457","97.38999938964844","97.38999938964844","","1981-01-28T00:00:00Z","","0" +"NM-12855","24.969999313354492","24.969999313354492","","1972-10-11T00:00:00Z","","0" +"NM-01986","8.300000190734863","8.300000190734863","","1971-10-15T00:00:00Z","","0" +"WL-0090","72.04166412353516","69.66166687011719","","2002-03-07T00:00:00Z","","2.380000114440918" +"NM-12680","-41.43000030517578","-41.43000030517578","","1906-03-27T00:00:00Z","","0" +"NM-05804","114.30000305175781","114.30000305175781","","1956-06-28T00:00:00Z","","0" +"NM-20451","194.67999267578125","194.67999267578125","","2001-10-18T00:00:00Z","","0" +"NM-14293","6.510000228881836","6.510000228881836","","1959-09-18T00:00:00Z","","0" +"NM-09682","462.54998779296875","462.54998779296875","","1960-05-01T00:00:00Z","","0" +"DE-0025","250.5800018310547","249.77999877929688","","2021-05-20T00:00:00Z","0001-01-01T14:40:00Z","0.800000011920929" +"NM-05347","11.899999618530273","11.899999618530273","","1974-10-15T00:00:00Z","","0" +"BC-0212","29.5","29.5","","2013-05-06T00:00:00Z","","0" +"EB-240","438.0199890136719","438.0199890136719","","1998-02-11T00:00:00Z","","0" +"NM-00213","182.16000366210938","182.16000366210938","","1954-11-01T00:00:00Z","","0" +"DE-0112","41.41999816894531","41.41999816894531","","2010-10-12T00:00:00Z","","0" +"BC-0218","21.44700050354004","21.44700050354004","","2014-10-16T00:00:00Z","","0" +"SB-0442","171.10000610351562","171.10000610351562","","2011-12-30T00:00:00Z","","0" +"NM-02352","8","8","","1969-10-15T00:00:00Z","","0" +"NM-19990","45.54999923706055","45.54999923706055","","1960-02-11T00:00:00Z","","0" +"NM-02378","133.77999877929688","133.77999877929688","","2003-01-21T00:00:00Z","","0" +"NM-27198","82.05000305175781","82.05000305175781","","2009-01-14T00:00:00Z","","0" +"NM-02527","5.800000190734863","5.800000190734863","","1986-06-15T00:00:00Z","","0" +"NM-01875","134.39999389648438","134.39999389648438","","1952-01-27T00:00:00Z","","0" +"NM-04396","127.31999969482422","127.31999969482422","P","1970-12-07T00:00:00Z","","0" +"NM-02174","96.41000366210938","96.41000366210938","","1982-01-15T00:00:00Z","","0" +"NM-02314","7.900000095367432","7.900000095367432","","1950-12-15T00:00:00Z","","0" +"NM-27814","106.02999877929688","106.02999877929688","","1990-02-22T00:00:00Z","","0" +"NM-02116","97.69999694824219","97.69999694824219","","1959-04-20T00:00:00Z","","0" +"NM-02232","83.33999633789062","83.33999633789062","","1947-01-08T00:00:00Z","","0" +"NM-02208","9.300000190734863","9.300000190734863","","2002-02-01T00:00:00Z","","0" +"UC-0078","162.02999877929688","162.02999877929688","","1967-10-31T00:00:00Z","","0" +"NM-01947","3","3","","1991-07-15T00:00:00Z","","0" +"NM-01948","","","D","2011-02-10T00:00:00Z","","0" +"EB-481","207","207","","1991-03-31T00:00:00Z","","0" +"NM-25902","201.6199951171875","201.6199951171875","","1979-01-23T00:00:00Z","","0" +"NM-17716","0.6399999856948853","0.6399999856948853","","1943-05-28T00:00:00Z","","0" +"SO-0254","10.979999542236328","9.539999008178711","","2021-01-13T00:00:00Z","0001-01-01T09:15:00Z","1.440000057220459" +"NM-05624","78.76000213623047","78.76000213623047","","1941-01-08T00:00:00Z","","0" +"DE-0112","39.2400016784668","39.2400016784668","","2008-04-28T00:00:00Z","","0" +"QY-0353","96.5","96.5","","1954-11-05T00:00:00Z","","0" +"NM-02402","47.02000045776367","47.02000045776367","","1971-02-23T00:00:00Z","","0" +"NM-19614","99.12999725341797","99.12999725341797","","1951-11-29T00:00:00Z","","0" +"NM-03392","147.9499969482422","147.9499969482422","R","1984-06-27T00:00:00Z","","0" +"MI-0278","30","30","","1950-12-31T00:00:00Z","","0" +"NM-05347","10.699999809265137","10.699999809265137","","1967-03-15T00:00:00Z","","0" +"NM-03121","45.66999816894531","45.66999816894531","","2000-01-13T00:00:00Z","","0" +"NM-28251","75.83000183105469","75.83000183105469","","2018-04-15T00:00:00Z","","0" +"NM-10509","76.4800033569336","76.4800033569336","","1960-01-21T00:00:00Z","","0" +"NM-21109","655.2000122070312","655.2000122070312","Z","1995-08-31T00:00:00Z","","0" +"NM-01985","10.100000381469727","10.100000381469727","","1978-01-15T00:00:00Z","","0" +"NM-02394","73.05000305175781","73.05000305175781","","1939-03-16T00:00:00Z","","0" +"NM-17716","1.0700000524520874","1.0700000524520874","","1944-03-22T00:00:00Z","","0" +"NM-21879","4.210000038146973","4.210000038146973","Z","2009-07-30T00:00:00Z","","0" +"NM-01854","120.62000274658203","120.62000274658203","","1974-01-17T00:00:00Z","","0" +"NM-03373","53.119998931884766","53.119998931884766","","2008-08-29T00:00:00Z","","0" +"NM-03687","94.95999908447266","94.95999908447266","","1962-11-29T00:00:00Z","","0" +"NM-13857","3.5199999809265137","3.5199999809265137","","1959-01-07T00:00:00Z","","0" +"BC-0273","","268.20001220703125","","2021-11-06T00:00:00Z","","1.7999999523162842" +"NM-02396","6.599999904632568","6.599999904632568","","1998-02-20T00:00:00Z","","0" +"NM-20310","71.94000244140625","71.94000244140625","","1972-01-06T00:00:00Z","","0" +"NM-27359","22.549999237060547","22.549999237060547","","1983-01-17T00:00:00Z","","0" +"NM-12220","11.5","11.5","","1968-01-15T00:00:00Z","","0" +"NM-21758","45","45","","1981-01-04T00:00:00Z","","0" +"NM-04701","42.9900016784668","42.9900016784668","","1970-12-16T00:00:00Z","","0" +"NM-11795","37.119998931884766","37.119998931884766","","1938-05-15T00:00:00Z","","0" +"NM-28252","47.84000015258789","47.84000015258789","","2012-03-26T00:00:00Z","","0" +"DE-0110","39.11000061035156","39.11000061035156","","2010-03-22T00:00:00Z","","0" +"NM-00687","51.459999084472656","51.459999084472656","","1960-05-26T00:00:00Z","","0" +"BC-0301","202.10000610351562","202.10000610351562","","2018-04-05T00:00:00Z","","0" +"NM-00501","197.55999755859375","197.55999755859375","","1981-01-28T00:00:00Z","","0" +"NM-28253","43.81999969482422","43.81999969482422","","1965-04-05T00:00:00Z","","0" +"NM-12580","44.43000030517578","44.43000030517578","","1991-03-26T00:00:00Z","","0" +"NM-12893","18.780000686645508","18.780000686645508","","1984-03-21T00:00:00Z","","0" +"NM-01926","6.199999809265137","6.199999809265137","","1976-12-15T00:00:00Z","","0" +"AB-0100","725.4199829101562","725.4199829101562","","2004-05-24T00:00:00Z","","" +"NM-12048","92.83000183105469","92.83000183105469","P","1950-01-24T00:00:00Z","","0" +"NM-02702","14.859999656677246","14.859999656677246","","1989-10-31T00:00:00Z","","0" +"NM-16096","27.549999237060547","27.549999237060547","","1966-09-22T00:00:00Z","","0" +"NM-27327","13.9399995803833","13.9399995803833","","1991-08-20T00:00:00Z","","0" +"NM-02520","4.800000190734863","4.800000190734863","","1969-08-15T00:00:00Z","","0" +"NM-19382","95.30000305175781","95.30000305175781","","1957-06-03T00:00:00Z","","0" +"NM-19917","45.439998626708984","45.439998626708984","","1954-01-19T00:00:00Z","","0" +"NM-02254","","","O","2015-02-26T00:00:00Z","","0" +"NM-03356","123.23999786376953","123.23999786376953","","2000-01-11T00:00:00Z","","0" +"NM-03389","26.739999771118164","26.739999771118164","","1988-06-30T00:00:00Z","","0" +"NM-28253","21.940000534057617","21.940000534057617","","2016-04-05T00:00:00Z","","0" +"NM-21719","45.9900016784668","45.9900016784668","S","1985-01-28T00:00:00Z","","0" +"NM-08071","7.699999809265137","7.699999809265137","","1965-09-15T00:00:00Z","","0" +"NM-22188","447.8800048828125","447.8800048828125","","2006-07-18T00:00:00Z","","0" +"NM-01281","414.5","414.5","P","1987-05-15T00:00:00Z","","0" +"NM-00494","25.079999923706055","25.079999923706055","","1955-03-18T00:00:00Z","","0" +"NM-25734","22.780000686645508","22.780000686645508","","1975-10-17T00:00:00Z","","0" +"NM-02396","11","11","","1965-03-15T00:00:00Z","","0" +"NM-06783","323.5","323.5","","2012-04-25T00:00:00Z","","0" +"NM-02911","92.4800033569336","92.4800033569336","","1961-01-11T00:00:00Z","","0" +"NM-11240","14.1899995803833","14.1899995803833","","2010-01-26T00:00:00Z","","0" +"SB-0316","27.719999313354492","27.719999313354492","","1949-02-03T00:00:00Z","","0" +"NM-01885","21.700000762939453","21.700000762939453","","2005-01-31T00:00:00Z","","0" +"NM-02664","83.55000305175781","83.55000305175781","","2015-01-28T00:00:00Z","","0" +"NM-05087","60.5","60.5","","1969-07-30T00:00:00Z","","0" +"NM-01787","246.05999755859375","246.05999755859375","","1961-08-16T00:00:00Z","","0" +"NM-01473","337.5899963378906","337.5899963378906","","1982-07-21T00:00:00Z","","0" +"SO-0218","11.979999542236328","10.670000076293945","","2021-06-15T00:00:00Z","0001-01-01T10:30:00Z","1.309999942779541" +"NM-28253","41.369998931884766","41.369998931884766","","1957-08-05T00:00:00Z","","0" +"AB-0143","304","304","","1984-04-01T00:00:00Z","","0" +"NM-11578","26.270000457763672","26.270000457763672","","1930-12-26T00:00:00Z","","0" +"NM-10186","138.9499969482422","138.9499969482422","","1989-02-13T00:00:00Z","","0" +"NM-02101","8.100000381469727","8.100000381469727","","1959-11-15T00:00:00Z","","0" +"NM-15537","79.0199966430664","79.0199966430664","","1956-09-11T00:00:00Z","","0" +"NM-27478","88.08999633789062","88.08999633789062","T","2004-02-23T00:00:00Z","","0" +"NM-17839","126.23999786376953","126.23999786376953","","2002-08-27T00:00:00Z","","0" +"NM-08769","26.309999465942383","26.309999465942383","","1950-01-09T00:00:00Z","","0" +"WL-0086","36.29166793823242","34.53166961669922","","1987-04-07T00:00:00Z","","1.7599999904632568" +"NM-20808","90.5199966430664","90.5199966430664","","1951-11-16T00:00:00Z","","0" +"QU-086","417.54998779296875","415","","2012-04-25T00:00:00Z","","2.549999952316284" +"NM-28253","39.15999984741211","39.15999984741211","","1961-07-15T00:00:00Z","","0" +"SA-0010","185.02000427246094","185.02000427246094","","1977-12-14T00:00:00Z","","0" +"NM-20308","79.04000091552734","79.04000091552734","","1953-05-30T00:00:00Z","","0" +"NM-28257","11.760000228881836","11.760000228881836","","1973-11-15T00:00:00Z","","0" +"NM-00804","115.36000061035156","115.36000061035156","P","2003-03-05T00:00:00Z","","0" +"EB-209","65.76000213623047","64.51000213623047","","1977-02-24T00:00:00Z","","1.25" +"NM-13865","5.099999904632568","5.099999904632568","","1957-10-07T00:00:00Z","","0" +"NM-03326","27.920000076293945","27.920000076293945","P","1962-02-08T00:00:00Z","","0" +"NM-20895","22.56999969482422","22.56999969482422","","1942-01-22T00:00:00Z","","0" +"PC-080","93.11000061035156","96.01000213623047","","1996-06-16T00:00:00Z","","0" +"NM-17989","17.709999084472656","17.709999084472656","","1933-10-19T00:00:00Z","","0" +"NM-12725","25.100000381469727","25.100000381469727","","1952-09-19T00:00:00Z","","0" +"NM-01770","43.93000030517578","43.93000030517578","","1952-07-17T00:00:00Z","","0" +"NM-28250","104.88999938964844","104.88999938964844","","1981-10-15T00:00:00Z","","0" +"NM-00247","32","32","","1948-09-14T00:00:00Z","","0" +"NM-00644","91.5199966430664","91.5199966430664","Z","1994-09-06T00:00:00Z","","0" +"NM-14275","-13.130000114440918","-13.130000114440918","","1910-12-15T00:00:00Z","","0" +"DE-0054","47.7599983215332","47.7599983215332","","2015-01-13T00:00:00Z","","0" +"NM-22776","252.8800048828125","252.8800048828125","","2014-02-12T00:00:00Z","","0" +"NM-06060","25.3799991607666","25.3799991607666","","1954-10-12T00:00:00Z","","0" +"NM-03737","62.849998474121094","62.849998474121094","","1977-01-20T00:00:00Z","","0" +"NM-03029","79.02999877929688","79.02999877929688","","1983-01-10T00:00:00Z","","0" +"NM-18982","47.84000015258789","47.84000015258789","","1966-08-24T00:00:00Z","","0" +"NM-12197","13.989999771118164","13.989999771118164","","1941-04-05T00:00:00Z","","0" +"NM-18662","303.8999938964844","303.8999938964844","","1982-01-15T00:00:00Z","","0" +"NM-00039","153.7100067138672","152.41000366210938","S","2023-10-05T00:00:00Z","0001-01-01T13:40:00Z","1.2999999523162842" +"NM-10423","76.81999969482422","76.81999969482422","","1986-04-03T00:00:00Z","","0" +"NM-28018","485.8299865722656","485.8299865722656","S","2015-05-08T00:00:00Z","","0" +"NM-08973","-42.58000183105469","-42.58000183105469","","1910-06-07T00:00:00Z","","0" +"NM-07225","197.69000244140625","197.69000244140625","","1977-05-01T00:00:00Z","","0" +"NM-03390","29.1200008392334","29.1200008392334","","1989-06-12T00:00:00Z","","0" +"NM-09347","26.8700008392334","26.8700008392334","","1945-01-12T00:00:00Z","","0" +"NM-17637","165.8800048828125","165.8800048828125","","1997-02-06T00:00:00Z","","0" +"DE-0109","42.33000183105469","42.33000183105469","","2016-09-15T00:00:00Z","","0" +"DE-0112","40.77000045776367","40.77000045776367","","2008-12-08T00:00:00Z","","0" +"NM-02794","39.599998474121094","39.599998474121094","","1942-05-12T00:00:00Z","","0" +"NM-26001","58.15999984741211","58.15999984741211","","1976-06-21T00:00:00Z","","0" +"NM-28250","97.30000305175781","97.30000305175781","","1986-09-15T00:00:00Z","","0" +"NM-10336","104.87000274658203","104.87000274658203","","1979-02-21T00:00:00Z","","0" +"DE-0110","","","D","2015-06-08T00:00:00Z","","0" +"NM-05821","117.0999984741211","117.0999984741211","","1971-01-13T00:00:00Z","","0" +"NM-13937","-11.399999618530273","-11.399999618530273","","1909-09-08T00:00:00Z","","0" +"NM-18582","341","341","","1977-01-04T00:00:00Z","","0" +"NM-05212","223.3800048828125","223.3800048828125","","1955-03-08T00:00:00Z","","0" +"NM-09597","33.029998779296875","33.029998779296875","","1939-01-12T00:00:00Z","","0" +"NM-01872","9.800000190734863","9.800000190734863","","1961-01-15T00:00:00Z","","0" +"NM-07614","106.69000244140625","106.69000244140625","","1970-12-08T00:00:00Z","","0" +"NM-02979","44.779998779296875","44.779998779296875","","1989-01-05T00:00:00Z","","0" +"NM-00974","340.9200134277344","340.9200134277344","","1956-03-28T00:00:00Z","","0" +"NM-13118","13.850000381469727","13.850000381469727","","1958-12-01T00:00:00Z","","0" +"NM-09196","-65.68000030517578","-65.68000030517578","","1905-11-06T00:00:00Z","","0" +"NM-13554","19.219999313354492","19.219999313354492","","1963-01-11T00:00:00Z","","0" +"NM-16762","3.880000114440918","3.880000114440918","","1946-09-28T00:00:00Z","","0" +"EB-652","8.380000114440918","8.380000114440918","","1992-01-20T00:00:00Z","","0" +"SA-0010","187.67999267578125","186.55999755859375","","2018-02-19T00:00:00Z","0001-01-01T14:40:00Z","1.1200000047683716" +"NM-02669","61.470001220703125","61.470001220703125","","1977-06-01T00:00:00Z","","0" +"NM-09682","415.1700134277344","415.1700134277344","","1982-02-01T00:00:00Z","","0" +"NM-23336","95.86000061035156","95.86000061035156","","1947-01-04T00:00:00Z","","0" +"NM-07510","27.139999389648438","27.139999389648438","","1957-01-29T00:00:00Z","","0" +"NM-14535","85.75","85.75","","1983-02-14T00:00:00Z","","0" +"NM-02520","7.800000190734863","7.800000190734863","","1997-01-15T00:00:00Z","","0" +"NM-28020","465.0199890136719","465.0199890136719","S","2015-03-19T00:00:00Z","","0" +"NM-02563","40.52000045776367","40.52000045776367","","1974-01-10T00:00:00Z","","0" +"NM-17618","14.319999694824219","14.319999694824219","","1954-07-23T00:00:00Z","","0" +"NM-08541","363.5","363.5","","1972-01-06T00:00:00Z","","0" +"NM-22965","767","767","","1983-09-29T00:00:00Z","","0" +"NM-08770","17.100000381469727","17.100000381469727","","2006-05-09T00:00:00Z","","0" +"NM-19484","2.509999990463257","2.509999990463257","","1977-02-16T00:00:00Z","","0" +"NM-02197","36.040000915527344","36.040000915527344","","2015-11-19T00:00:00Z","","0" +"NM-01796","5.599999904632568","5.599999904632568","","2005-02-16T00:00:00Z","","0" +"NM-01872","8","8","","1992-01-15T00:00:00Z","","0" +"NM-18359","248.99000549316406","248.99000549316406","","1972-02-16T00:00:00Z","","0" +"NM-16662","69.69999694824219","69.69999694824219","","1956-01-10T00:00:00Z","","0" +"NM-02017","6.900000095367432","6.900000095367432","","1962-07-15T00:00:00Z","","0" +"NM-04728","19.40999984741211","19.40999984741211","","1976-01-19T00:00:00Z","","0" +"BC-0156","204.36000061035156","204.36000061035156","","2008-11-04T00:00:00Z","","0" +"NM-03035","77.86000061035156","77.86000061035156","","1982-01-11T00:00:00Z","","0" +"NM-11896","102.9000015258789","102.9000015258789","","1955-01-26T00:00:00Z","","0" +"NM-01791","302.1600036621094","302.1600036621094","","1988-12-19T00:00:00Z","","0" +"NM-01746","86.77999877929688","86.77999877929688","","1953-07-30T00:00:00Z","","0" +"NM-00498","57.54999923706055","57.54999923706055","","2003-02-12T00:00:00Z","","0" +"NM-21597","348.1600036621094","348.1600036621094","","2006-07-17T00:00:00Z","","0" +"NM-06417","33.95000076293945","33.95000076293945","","1948-02-09T00:00:00Z","","0" +"NM-05267","66.36000061035156","66.36000061035156","","1947-11-05T00:00:00Z","","0" +"NM-17271","33.18000030517578","33.18000030517578","","1932-07-30T00:00:00Z","","0" +"NM-13942","-10.239999771118164","-10.239999771118164","","1913-02-25T00:00:00Z","","0" +"NM-23081","9.279999732971191","9.279999732971191","","1985-06-26T00:00:00Z","","0" +"NM-02488","145.3000030517578","145.3000030517578","","1987-01-19T00:00:00Z","","0" +"DE-0108","","","D","2016-04-14T00:00:00Z","","0" +"NM-07027","135.8000030517578","135.8000030517578","","1978-07-18T00:00:00Z","","0" +"NM-11909","41.79999923706055","41.79999923706055","","1935-09-17T00:00:00Z","","0" +"NM-07148","83.81999969482422","83.81999969482422","","2008-03-21T00:00:00Z","","0" +"AB-0209","539.239990234375","539.239990234375","","2001-12-17T00:00:00Z","","" +"NM-01866","13.199999809265137","13.199999809265137","","1991-02-06T00:00:00Z","","0" +"NM-06183","83.16000366210938","83.16000366210938","","1953-03-19T00:00:00Z","","0" +"NM-28255","20.6299991607666","20.6299991607666","","1948-06-25T00:00:00Z","","0" +"NM-12911","76.30000305175781","76.30000305175781","P","1937-12-21T00:00:00Z","","0" +"AB-0101","718.3900146484375","718.3900146484375","","1999-01-20T00:00:00Z","","" +"NM-02669","71.30000305175781","71.30000305175781","","2004-07-22T00:00:00Z","","0" +"NM-02187","90.22000122070312","90.22000122070312","","1955-11-22T00:00:00Z","","0" +"NM-17911","60.29999923706055","60.29999923706055","","1975-08-12T00:00:00Z","","0" +"NM-01985","13.300000190734863","13.300000190734863","","1978-08-15T00:00:00Z","","0" +"NM-02029","8","8","","2000-04-15T00:00:00Z","","0" +"NM-15397","93.66000366210938","93.66000366210938","","1970-02-09T00:00:00Z","","0" +"NM-13135","7.210000038146973","7.210000038146973","","1970-04-02T00:00:00Z","","0" +"NM-06268","16.399999618530273","16.399999618530273","","1964-06-15T00:00:00Z","","0" +"NM-21907","469.1700134277344","469.1700134277344","","2016-03-01T00:00:00Z","","0" +"NM-04551","59.15999984741211","59.15999984741211","","1948-11-21T00:00:00Z","","0" +"NM-02685","18.149999618530273","18.149999618530273","","1984-01-25T00:00:00Z","","0" +"NM-01997","57.86000061035156","57.86000061035156","","1986-03-11T00:00:00Z","","0" +"NM-13615","58.93000030517578","58.93000030517578","P","1966-02-09T00:00:00Z","","0" +"NM-13145","9.220000267028809","9.220000267028809","","1981-12-16T00:00:00Z","","0" +"NM-09682","460.42999267578125","460.42999267578125","","1959-06-01T00:00:00Z","","0" +"NM-01948","6.400000095367432","6.400000095367432","","1974-10-15T00:00:00Z","","0" +"NM-02583","171.3000030517578","171.3000030517578","","2004-02-10T00:00:00Z","","0" +"NM-02005","8.600000381469727","8.600000381469727","","1995-04-15T00:00:00Z","","0" +"NM-22956","900.97998046875","900.97998046875","Z","2009-12-18T00:00:00Z","","0" +"NM-13036","8.649999618530273","8.649999618530273","","1973-07-17T00:00:00Z","","0" +"NM-28023","486.4100036621094","486.4100036621094","S","2015-04-16T00:00:00Z","","0" +"NM-12666","17.43000030517578","17.43000030517578","","1947-07-15T00:00:00Z","","0" +"BC-0200","200.14999389648438","200.14999389648438","","2017-02-01T00:00:00Z","","0" +"EB-268","-102.44999694824219","-102.44999694824219","S","1988-05-05T00:00:00Z","","0" +"NM-02170","86.33999633789062","86.33999633789062","","1958-01-27T00:00:00Z","","0" +"NM-01791","317.7300109863281","317.7300109863281","","1991-10-18T00:00:00Z","","0" +"NM-28256","91.13999938964844","91.13999938964844","","1995-11-25T00:00:00Z","","0" +"DE-0356","71.30000305175781","68.8800048828125","","2013-05-20T00:00:00Z","","2.4200000762939453" +"NM-01868","8.600000381469727","8.600000381469727","","1963-03-15T00:00:00Z","","0" +"NM-06550","4000","4000","","1991-07-01T00:00:00Z","","0" +"BC-0099","15.09000015258789","15.09000015258789","R","1991-06-13T00:00:00Z","","0" +"NM-04918","71.25","71.25","","1975-01-07T00:00:00Z","","0" +"NM-07219","394.7699890136719","394.7699890136719","","2011-12-29T00:00:00Z","","0" +"NM-11699","34.709999084472656","34.709999084472656","","1966-02-16T00:00:00Z","","0" +"NM-11819","37.86000061035156","37.86000061035156","","1945-10-17T00:00:00Z","","0" +"NM-28252","42.20000076293945","42.20000076293945","","2002-06-05T00:00:00Z","","0" +"EB-279","244.24000549316406","244.24000549316406","T","1994-09-29T00:00:00Z","","0" +"NM-02220","169.5800018310547","169.5800018310547","","2004-01-21T00:00:00Z","","0" +"NM-02831","63.529998779296875","63.529998779296875","","1977-10-01T00:00:00Z","","0" +"NM-01904","125.69000244140625","125.69000244140625","P","1956-09-12T00:00:00Z","","0" +"NM-12844","11.520000457763672","11.520000457763672","","1958-12-03T00:00:00Z","","0" +"NM-16524","14.0600004196167","14.0600004196167","","1951-01-12T00:00:00Z","","0" +"NM-21525","312.2099914550781","312.2099914550781","","1993-09-27T00:00:00Z","","0" +"EB-269","252.36000061035156","252.36000061035156","","2004-05-17T00:00:00Z","","0" +"NM-10589","12.479999542236328","12.479999542236328","","1963-11-19T00:00:00Z","","0" +"EB-245","227.17999267578125","227.17999267578125","","2011-02-04T00:00:00Z","","0" +"NM-02452","107.0199966430664","107.0199966430664","","1971-01-22T00:00:00Z","","0" +"NM-02453","68.66999816894531","68.66999816894531","","1966-01-25T00:00:00Z","","0" +"NM-18726","110.3499984741211","110.3499984741211","","1982-02-19T00:00:00Z","","0" +"NM-04181","50.060001373291016","50.060001373291016","","1955-12-14T00:00:00Z","","0" +"DE-0304","44.06999969482422","44.06999969482422","","2018-10-29T00:00:00Z","","0" +"DE-0195","51.459999084472656","51.459999084472656","","2015-10-21T00:00:00Z","","0" +"NM-28255","178.41000366210938","178.41000366210938","","2002-07-25T00:00:00Z","","0" +"NM-20098","30.989999771118164","30.989999771118164","","1944-01-24T00:00:00Z","","0" +"NM-08860","16.540000915527344","16.540000915527344","","1957-01-14T00:00:00Z","","0" +"NM-04391","57.220001220703125","57.220001220703125","P","1948-04-05T00:00:00Z","","0" +"NM-10099","128.25","128.25","","1974-01-09T00:00:00Z","","0" +"SA-0155","19.09000015258789","17.809999465942383","","2011-09-14T00:00:00Z","","1.2799999713897705" +"NM-09042","52.119998931884766","52.119998931884766","","1937-09-04T00:00:00Z","","0" +"NM-01955","5.400000095367432","5.400000095367432","","1975-08-15T00:00:00Z","","0" +"NM-12297","7.559999942779541","7.559999942779541","","1951-07-11T00:00:00Z","","0" +"NM-11245","105.88999938964844","105.88999938964844","","1977-05-02T00:00:00Z","","0" +"NM-28254","16.219999313354492","16.219999313354492","","1988-02-25T00:00:00Z","","0" +"NM-01525","197.24000549316406","197.24000549316406","","2008-02-06T00:00:00Z","","0" +"NM-20451","194.27999877929688","194.27999877929688","","1998-09-25T00:00:00Z","","0" +"NM-02239","34.4900016784668","34.4900016784668","","1955-01-23T00:00:00Z","","0" +"NM-10087","25.600000381469727","25.600000381469727","","1947-01-14T00:00:00Z","","0" +"NM-08246","23.84000015258789","23.84000015258789","P","1933-02-17T00:00:00Z","","0" +"NM-24338","50.79999923706055","50.79999923706055","","1980-05-15T00:00:00Z","","0" +"EB-235","56.900001525878906","56.900001525878906","","1978-07-26T00:00:00Z","","0" +"NM-06323","98.70999908447266","98.70999908447266","","1988-02-11T00:00:00Z","","0" +"NM-22954","109.22000122070312","109.22000122070312","","1955-01-03T00:00:00Z","","0" +"NM-13594","34.65999984741211","34.65999984741211","","1956-07-19T00:00:00Z","","0" +"NM-26656","16.530000686645508","16.530000686645508","","2011-11-09T00:00:00Z","","0" +"UC-0046","49.439998626708984","49.439998626708984","","1976-01-27T00:00:00Z","","0" +"BC-0012","64.44000244140625","64.44000244140625","","2015-03-02T00:00:00Z","","0" +"EB-114","203.22000122070312","201.72000122070312","","2004-03-24T00:00:00Z","","1.5" +"NM-10682","53.400001525878906","53.400001525878906","","1948-01-17T00:00:00Z","","0" +"NM-20366","356.2799987792969","356.2799987792969","","1972-01-04T00:00:00Z","","0" +"NM-13852","-13.420000076293945","-13.420000076293945","","1908-09-02T00:00:00Z","","0" +"NM-16540","16.59000015258789","16.59000015258789","","1954-01-19T00:00:00Z","","0" +"NM-02509","82.02999877929688","82.02999877929688","","1992-05-05T00:00:00Z","","0" +"NM-28255","29.270000457763672","29.270000457763672","","1950-09-25T00:00:00Z","","0" +"NM-25617","72.4800033569336","72.4800033569336","","1981-02-16T00:00:00Z","","0" +"NM-01459","636.9400024414062","636.9400024414062","P","2007-04-19T00:00:00Z","","0" +"NM-17255","18.81999969482422","18.81999969482422","","1931-08-24T00:00:00Z","","0" +"NM-01983","115.33000183105469","115.33000183105469","","1980-01-03T00:00:00Z","","0" +"NM-02043","7.099999904632568","7.099999904632568","","1971-02-15T00:00:00Z","","0" +"NM-03692","202.47999572753906","202.47999572753906","P","1960-11-16T00:00:00Z","","0" +"NM-14098","-3.309999942779541","-3.309999942779541","","1906-09-12T00:00:00Z","","0" +"NM-01511","86.54000091552734","86.54000091552734","","1973-02-02T00:00:00Z","","0" +"NM-20160","66.87999725341797","66.87999725341797","","1953-03-28T00:00:00Z","","0" +"NM-02680","18.670000076293945","18.670000076293945","","1975-01-20T00:00:00Z","","0" +"NM-11556","43.650001525878906","43.650001525878906","","1938-08-30T00:00:00Z","","0" +"BW-0363","49","49","","1954-08-17T00:00:00Z","","0" +"NM-10058","7.619999885559082","7.619999885559082","","1978-03-21T00:00:00Z","","0" +"NM-02518","6.699999809265137","6.699999809265137","","1960-04-15T00:00:00Z","","0" +"NM-28257","36.95000076293945","36.95000076293945","","2015-09-04T00:00:00Z","","0" +"NM-17716","4.789999961853027","4.789999961853027","","1947-08-03T00:00:00Z","","0" +"NM-08758","18.3799991607666","18.3799991607666","","1964-01-14T00:00:00Z","","0" +"AB-0144","490","490","S","1983-08-01T00:00:00Z","","" +"NM-03258","43.68000030517578","43.68000030517578","","1962-09-04T00:00:00Z","","0" +"NM-02772","125.8499984741211","125.8499984741211","","1975-04-01T00:00:00Z","","0" +"NM-10681","52.65999984741211","52.65999984741211","","1940-02-01T00:00:00Z","","0" +"NM-16985","68.01000213623047","68.01000213623047","","1966-01-06T00:00:00Z","","0" +"NM-02772","103.70999908447266","103.70999908447266","","1957-09-01T00:00:00Z","","0" +"SB-0424","63.060001373291016","63.060001373291016","","1988-02-18T00:00:00Z","","0" +"NM-02447","113.44999694824219","113.44999694824219","","1972-02-15T00:00:00Z","","0" +"NM-02287","5.690000057220459","5.690000057220459","","2003-05-19T00:00:00Z","","0" +"NM-00420","40.290000915527344","40.290000915527344","","1961-02-03T00:00:00Z","","0" +"NM-20389","84.08000183105469","84.08000183105469","","1951-07-31T00:00:00Z","","0" +"NM-00705","128.02000427246094","128.02000427246094","","2008-06-25T00:00:00Z","","0" +"NM-28255","40.06999969482422","40.06999969482422","","1967-11-15T00:00:00Z","","0" +"NM-22677","5.96999979019165","5.96999979019165","Z","2009-02-25T00:00:00Z","","0" +"NM-02831","35.75","35.75","","2000-11-06T00:00:00Z","","0" +"NM-00395","35.720001220703125","35.720001220703125","","1960-06-02T00:00:00Z","","0" +"BC-0229","","237.8000030517578","","2021-03-06T00:00:00Z","","1.3600000143051147" +"AB-0067","148.6199951171875","148.6199951171875","","2005-03-24T00:00:00Z","","" +"NM-07159","81.16000366210938","81.16000366210938","","2000-01-21T00:00:00Z","","0" +"NM-01868","6.5","6.5","","2001-09-15T00:00:00Z","","0" +"NM-02702","3.950000047683716","3.950000047683716","","1979-01-01T00:00:00Z","","0" +"NM-17094","32.630001068115234","32.630001068115234","","1948-11-22T00:00:00Z","","0" +"NM-28016","491.1400146484375","491.1400146484375","S","2015-05-15T00:00:00Z","","0" +"NM-07121","98.02999877929688","98.02999877929688","","2000-10-17T00:00:00Z","","0" +"NM-17530","32.04999923706055","32.04999923706055","S","1990-04-11T00:00:00Z","","0" +"NM-08246","20.010000228881836","20.010000228881836","","1947-07-25T00:00:00Z","","0" +"BC-0133","","356.3999938964844","","2020-11-07T00:00:00Z","","1.559999942779541" +"NM-11941","1.7599999904632568","1.7599999904632568","","1950-01-23T00:00:00Z","","0" +"NM-03365","45.66999816894531","45.66999816894531","","1969-02-14T00:00:00Z","","0" +"NM-15325","70.63999938964844","70.63999938964844","","1976-01-07T00:00:00Z","","0" +"SB-0299","145.3800048828125","145.3800048828125","","2015-05-30T00:00:00Z","","0" +"NM-27269","12.300000190734863","12.300000190734863","","1996-01-25T00:00:00Z","","0" +"NM-01044","247.55999755859375","247.55999755859375","","2015-02-13T00:00:00Z","","0" +"NM-02424","34.130001068115234","34.130001068115234","","1964-01-13T00:00:00Z","","0" +"NM-04770","56.90999984741211","56.90999984741211","","1949-01-11T00:00:00Z","","0" +"EB-288","106","106","","1974-07-26T00:00:00Z","","0" +"NM-19774","23.989999771118164","23.989999771118164","","1950-01-06T00:00:00Z","","0" +"NM-01868","10.59000015258789","10.59000015258789","","2006-03-03T00:00:00Z","","0" +"NM-28254","150.1999969482422","150.1999969482422","","2018-07-05T00:00:00Z","","0" +"NM-00634","60.11000061035156","60.11000061035156","","1975-01-07T00:00:00Z","","0" +"NM-13218","9.600000381469727","9.600000381469727","","1958-12-15T00:00:00Z","","0" +"NM-00644","84.87999725341797","84.87999725341797","","1968-05-01T00:00:00Z","","0" +"NM-02668","32.90999984741211","32.90999984741211","","1951-01-15T00:00:00Z","","0" +"NM-23252","285","285","","1982-09-01T00:00:00Z","","0" +"NM-02006","9.399999618530273","9.399999618530273","","2003-02-15T00:00:00Z","","0" +"NM-26739","234.47000122070312","234.47000122070312","","1957-12-04T00:00:00Z","","0" +"NM-10448","-72.61000061035156","-72.61000061035156","","1912-06-03T00:00:00Z","","0" +"NM-14052","-21.790000915527344","-21.790000915527344","","1907-09-19T00:00:00Z","","0" +"AB-0038","345.1400146484375","345.1400146484375","","2013-07-29T00:00:00Z","","" +"NM-17330","75.4800033569336","75.4800033569336","","1959-01-07T00:00:00Z","","0" +"NM-03747","56.470001220703125","56.470001220703125","","1955-05-25T00:00:00Z","","0" +"NM-08077","47.849998474121094","47.849998474121094","","1968-04-19T00:00:00Z","","0" +"NM-27327","10.710000038146973","10.710000038146973","","1979-01-22T00:00:00Z","","0" +"NM-21526","290.8399963378906","290.8399963378906","","2007-03-20T00:00:00Z","","0" +"NM-05516","9.600000381469727","9.600000381469727","","1984-11-15T00:00:00Z","","0" +"NM-19892","212.5500030517578","212.5500030517578","","1982-02-10T00:00:00Z","","0" +"NM-01791","317.510009765625","317.510009765625","","1990-07-20T00:00:00Z","","0" +"NM-13213","8.4399995803833","8.4399995803833","","1960-09-01T00:00:00Z","","0" +"DE-0243","99.72000122070312","99.72000122070312","","2002-02-20T00:00:00Z","","0" +"QY-0615","41.20000076293945","41.20000076293945","","1941-04-30T00:00:00Z","","0" +"NM-06688","73","73","S","1950-03-21T00:00:00Z","","0" +"NM-22569","748.280029296875","748.280029296875","","2014-12-02T00:00:00Z","","0" +"QU-158","163.75999450683594","168.25999450683594","X","2019-04-19T00:00:00Z","0001-01-01T08:53:00Z","-4.5" +"NM-02209","105","105","","1963-01-01T00:00:00Z","","0" +"NM-07027","134.9499969482422","134.9499969482422","","1977-10-25T00:00:00Z","","0" +"EB-336","209.1199951171875","209.1199951171875","","2014-05-23T00:00:00Z","","0" +"TV-217","276.1000061035156","275.5","","2007-02-06T00:00:00Z","","0.6000000238418579" +"NM-00294","9.600000381469727","9.600000381469727","","1968-01-07T00:00:00Z","","0" +"NM-18999","385.6000061035156","385.6000061035156","","1987-01-14T00:00:00Z","","0" +"NM-05480","129.77000427246094","129.77000427246094","","1955-05-19T00:00:00Z","","0" +"NM-03030","82.12999725341797","82.12999725341797","","2002-03-07T00:00:00Z","","0" +"EB-478","246","246","","1998-07-31T00:00:00Z","","0" +"NM-21665","541","541","S","1983-08-14T00:00:00Z","","0" +"NM-02669","73.08999633789062","73.08999633789062","","2005-05-09T00:00:00Z","","0" +"EB-245","184.14999389648438","184.14999389648438","","1987-01-10T00:00:00Z","","0" +"AB-0122","545.1599731445312","545.1599731445312","","2004-09-23T00:00:00Z","","" +"NM-20061","53.5","53.5","","1955-11-15T00:00:00Z","","0" +"NM-13106","8.09000015258789","8.09000015258789","","1969-02-28T00:00:00Z","","0" +"NM-13594","22.56999969482422","22.56999969482422","","1971-01-01T00:00:00Z","","0" +"NM-11785","36.47999954223633","36.47999954223633","","1939-05-18T00:00:00Z","","0" +"NM-10099","185.3300018310547","185.3300018310547","","1981-09-04T00:00:00Z","","0" +"NM-00562","95.88999938964844","95.88999938964844","R","1995-01-04T00:00:00Z","","0" +"NM-18277","295.3500061035156","295.3500061035156","","1999-08-29T00:00:00Z","","0" +"NM-13431","46.2599983215332","46.2599983215332","","1937-07-20T00:00:00Z","","0" +"NM-08665","35.290000915527344","35.290000915527344","","1942-01-24T00:00:00Z","","0" +"NM-01095","143.6199951171875","143.6199951171875","","1982-03-04T00:00:00Z","","0" +"NM-00507","79.45999908447266","79.45999908447266","","1994-01-07T00:00:00Z","","0" +"NM-05494","97.44000244140625","97.44000244140625","","1962-01-16T00:00:00Z","","0" +"NM-02592","77.80000305175781","77.80000305175781","","1997-01-03T00:00:00Z","","0" +"NM-03218","94.80000305175781","94.80000305175781","P","1961-06-06T00:00:00Z","","0" +"SB-0275","211.0500030517578","211.0500030517578","","1998-01-22T00:00:00Z","","0" +"NM-02024","84.12000274658203","84.12000274658203","","1960-01-07T00:00:00Z","","0" +"NM-02534","68.48999786376953","68.48999786376953","","1974-01-22T00:00:00Z","","0" +"NM-20340","60.599998474121094","60.599998474121094","","1987-03-09T00:00:00Z","","0" +"NM-02831","15.449999809265137","15.449999809265137","","1941-05-01T00:00:00Z","","0" +"NM-03025","76.80999755859375","76.80999755859375","","1977-01-04T00:00:00Z","","0" +"NM-20075","38.099998474121094","38.099998474121094","","1953-01-21T00:00:00Z","","0" +"NM-10143","29.969999313354492","29.969999313354492","P","1946-07-23T00:00:00Z","","0" +"NM-27327","13.949999809265137","13.949999809265137","","1962-08-16T00:00:00Z","","0" +"NM-02757","17.1299991607666","17.1299991607666","","1960-01-18T00:00:00Z","","0" +"NM-01990","11.869999885559082","11.869999885559082","","2009-01-06T00:00:00Z","","0" +"NM-00229","67.80000305175781","67.80000305175781","","2001-05-15T00:00:00Z","","0" +"SB-0299","135.52999877929688","135.52999877929688","","1981-10-01T00:00:00Z","","0" +"BC-0147","499.6700134277344","499.6700134277344","","2020-04-25T00:00:00Z","","0" +"NM-19933","13.010000228881836","13.010000228881836","","1948-03-23T00:00:00Z","","0" +"NM-08647","27.09000015258789","27.09000015258789","","1941-02-18T00:00:00Z","","0" +"NM-10331","589.7000122070312","589.7000122070312","","1967-06-01T00:00:00Z","","0" +"NM-17716","3.319999933242798","3.319999933242798","","1949-06-12T00:00:00Z","","0" +"EB-246","291.1199951171875","291.1199951171875","","2001-11-20T00:00:00Z","","0" +"NM-28253","13.640000343322754","13.640000343322754","","2008-03-05T00:00:00Z","","0" +"NM-05713","67.55000305175781","67.55000305175781","","1934-04-22T00:00:00Z","","0" +"NM-10477","69.94000244140625","69.94000244140625","","1979-02-22T00:00:00Z","","0" +"NM-11624","33.93000030517578","33.93000030517578","","1947-01-16T00:00:00Z","","0" +"NM-00498","65.37000274658203","65.37000274658203","","1975-10-01T00:00:00Z","","0" +"NM-05369","24.100000381469727","24.100000381469727","","1959-11-03T00:00:00Z","","0" +"NM-08289","","","D","2013-02-12T00:00:00Z","","0" +"NM-26461","39.34000015258789","39.34000015258789","","1987-08-20T00:00:00Z","","0" +"NM-28255","159.80999755859375","159.80999755859375","","2008-06-05T00:00:00Z","","0" +"NM-02772","169.42999267578125","169.42999267578125","","1995-06-15T00:00:00Z","","0" +"NM-00561","77.72000122070312","77.72000122070312","","1996-03-21T00:00:00Z","","0" +"EB-276","190","190","","1974-08-30T00:00:00Z","","0" +"NM-03032","56.939998626708984","56.939998626708984","","1965-09-14T00:00:00Z","","0" +"NM-13882","-5.039999961853027","-5.039999961853027","","1906-06-19T00:00:00Z","","0" +"NM-28250","79.83000183105469","79.83000183105469","","1998-06-15T00:00:00Z","","0" +"NM-05734","21.31999969482422","21.31999969482422","","1968-02-29T00:00:00Z","","0" +"NM-19473","78.94000244140625","78.94000244140625","","1990-02-12T00:00:00Z","","0" +"NM-02702","-22.239999771118164","-22.239999771118164","","2000-11-16T00:00:00Z","","0" +"NM-01890","59.86000061035156","59.86000061035156","","2007-09-07T00:00:00Z","","0" +"NM-02589","11.020000457763672","11.020000457763672","","1944-01-07T00:00:00Z","","0" +"NM-09520","2.509999990463257","2.509999990463257","","1959-03-19T00:00:00Z","","0" +"NM-11559","30.649999618530273","30.649999618530273","","1955-01-27T00:00:00Z","","0" +"NM-12334","24.6299991607666","24.6299991607666","","2004-04-08T00:00:00Z","","0" +"DE-0244","100.98999786376953","100.98999786376953","","2011-08-16T00:00:00Z","","0" +"NM-14051","-17.170000076293945","-17.170000076293945","","1913-12-06T00:00:00Z","","0" +"NM-03269","301.29998779296875","301.29998779296875","","1983-01-07T00:00:00Z","","0" +"NM-10988","76.43000030517578","76.43000030517578","","1981-01-07T00:00:00Z","","0" +"NM-05622","66.91000366210938","66.91000366210938","","1935-06-01T00:00:00Z","","0" +"NM-03236","75.63999938964844","75.63999938964844","","1962-02-06T00:00:00Z","","0" +"AB-0112","21.649999618530273","21.649999618530273","","2006-01-09T00:00:00Z","","" +"SB-0363","41.4900016784668","41.4900016784668","","1950-02-21T00:00:00Z","","0" +"NM-17716","8.5","8.5","","1940-09-15T00:00:00Z","","0" +"NM-22252","416.7300109863281","416.7300109863281","","2009-11-13T00:00:00Z","","0" +"AB-0076","6.829999923706055","6.829999923706055","","2009-12-07T00:00:00Z","","" +"NM-06027","63.470001220703125","63.470001220703125","","1944-01-09T00:00:00Z","","0" +"NM-00771","8.350000381469727","8.350000381469727","","1979-01-18T00:00:00Z","","0" +"NM-21079","12.9399995803833","12.9399995803833","","1952-02-20T00:00:00Z","","0" +"NM-08957","60.54999923706055","60.54999923706055","","1986-01-16T00:00:00Z","","0" +"NM-02180","15.460000038146973","15.460000038146973","","2011-01-12T00:00:00Z","","0" +"NM-11026","124.75","124.75","","1984-02-29T00:00:00Z","","0" +"NM-24134","399.6199951171875","399.6199951171875","","1982-02-02T00:00:00Z","","0" +"NM-13170","12.119999885559082","12.119999885559082","","1979-09-11T00:00:00Z","","0" +"NM-13594","16.770000457763672","16.770000457763672","","1960-03-01T00:00:00Z","","0" +"NM-00644","53.70000076293945","53.70000076293945","","1971-10-01T00:00:00Z","","0" +"EB-482","410.42999267578125","410.42999267578125","Z","2004-04-30T00:00:00Z","","0" +"SB-0404","28.190000534057617","28.190000534057617","","2014-08-15T00:00:00Z","","0" +"NM-09695","219.3800048828125","219.3800048828125","","1963-09-04T00:00:00Z","","0" +"NM-14152","557.47998046875","557.47998046875","","1970-01-16T00:00:00Z","","0" +"NM-11925","47.97999954223633","47.97999954223633","","1949-01-19T00:00:00Z","","0" +"NM-07815","26.18000030517578","26.18000030517578","","1957-01-12T00:00:00Z","","0" +"SB-0299","100.69000244140625","100.69000244140625","","1967-02-05T00:00:00Z","","0" +"NM-01875","142.49000549316406","142.49000549316406","","1955-11-08T00:00:00Z","","0" +"NM-20055","103.37999725341797","103.37999725341797","","1967-01-31T00:00:00Z","","0" +"NM-25680","-98.01000213623047","-98.01000213623047","","1988-05-01T00:00:00Z","","0" +"AB-0147","20","20","","1983-07-26T00:00:00Z","","0" +"NM-21284","5.130000114440918","5.130000114440918","","1958-08-11T00:00:00Z","","0" +"NM-02560","120.79000091552734","120.79000091552734","","1982-08-17T00:00:00Z","","0" +"NM-08688","19.610000610351562","19.610000610351562","P","1950-01-09T00:00:00Z","","0" +"DE-0325","29.260000228881836","29.260000228881836","","2010-11-22T00:00:00Z","","0" +"EB-010","71.87000274658203","71.87000274658203","","1988-03-28T00:00:00Z","","0" +"NM-02536","411.3399963378906","411.3399963378906","","1963-09-04T00:00:00Z","","0" +"NM-01450","469.57000732421875","469.57000732421875","","1997-02-24T00:00:00Z","","0" +"NM-28009","498.8599853515625","498.8599853515625","S","2015-05-17T00:00:00Z","","0" +"NM-17271","54.369998931884766","54.369998931884766","","1953-08-01T00:00:00Z","","0" +"NM-02757","16.270000457763672","16.270000457763672","","1956-05-10T00:00:00Z","","0" +"NM-13711","255.05999755859375","255.05999755859375","","1944-11-17T00:00:00Z","","0" +"NM-08524","9.600000381469727","9.600000381469727","","1975-08-15T00:00:00Z","","0" +"NM-28255","187.42999267578125","187.42999267578125","","1973-09-05T00:00:00Z","","0" +"NM-01394","1028.550048828125","1028.550048828125","","1986-07-16T00:00:00Z","","0" +"NM-02497","72.88999938964844","72.88999938964844","","1990-10-26T00:00:00Z","","0" +"NM-28254","45.16999816894531","45.16999816894531","","1948-05-05T00:00:00Z","","0" +"NM-02990","33.29999923706055","33.29999923706055","","1961-01-09T00:00:00Z","","0" +"NM-01289","22.440000534057617","22.440000534057617","","2008-01-17T00:00:00Z","","0" +"NM-22677","6.03000020980835","6.03000020980835","Z","2008-02-06T00:00:00Z","","0" +"NM-02256","5.599999904632568","5.599999904632568","","1985-01-15T00:00:00Z","","0" +"NM-24271","59","59","","1979-11-30T00:00:00Z","","0" +"NM-11920","1.6200000047683716","1.6200000047683716","","1946-01-06T00:00:00Z","","0" +"NM-14847","64.80000305175781","64.80000305175781","","1963-01-16T00:00:00Z","","0" +"NM-14614","58.15999984741211","58.15999984741211","","1973-10-18T00:00:00Z","","0" +"NM-02560","116.51000213623047","116.51000213623047","","1974-11-01T00:00:00Z","","0" +"NM-12718","36.599998474121094","36.599998474121094","","1937-03-13T00:00:00Z","","0" +"NM-14358","-12.260000228881836","-12.260000228881836","","1911-10-15T00:00:00Z","","0" +"NM-03389","35.400001525878906","35.400001525878906","Z","2008-08-26T00:00:00Z","","0" +"NM-21054","18.81999969482422","18.81999969482422","R","1984-08-09T00:00:00Z","","0" +"NM-04185","74.33000183105469","74.33000183105469","R","1952-07-19T00:00:00Z","","0" +"BC-0024","64.6500015258789","64.6500015258789","","2014-03-05T00:00:00Z","","0" +"NM-02702","6.550000190734863","6.550000190734863","","1988-10-14T00:00:00Z","","0" +"NM-09649","-77.2300033569336","-77.2300033569336","","1907-06-19T00:00:00Z","","0" +"NM-26945","370","373","","1990-03-09T00:00:00Z","","0" +"NM-28257","72.30000305175781","72.30000305175781","","1957-06-05T00:00:00Z","","0" +"NM-05073","30.229999542236328","30.229999542236328","","1984-02-16T00:00:00Z","","0" +"NM-02501","51.939998626708984","51.939998626708984","","1939-03-31T00:00:00Z","","0" +"NM-18529","225.88999938964844","225.88999938964844","","1954-03-08T00:00:00Z","","0" +"DE-0075","87.1500015258789","87.1500015258789","","2013-05-07T00:00:00Z","","0" +"NM-01756","44.08000183105469","44.08000183105469","","1998-01-16T00:00:00Z","","0" +"NM-28259","101.37999725341797","101.37999725341797","","1975-12-25T00:00:00Z","","0" +"NM-17879","83.05999755859375","83.05999755859375","","1961-01-16T00:00:00Z","","0" +"NM-02470","56.029998779296875","56.029998779296875","","1957-04-19T00:00:00Z","","0" +"NM-16998","22.260000228881836","22.260000228881836","","1935-09-17T00:00:00Z","","0" +"NM-21519","32.2599983215332","32.2599983215332","","2010-05-28T00:00:00Z","","0" +"NM-28259","100.87000274658203","100.87000274658203","","1985-03-15T00:00:00Z","","0" +"NM-12172","-21.790000915527344","-21.790000915527344","","1911-10-05T00:00:00Z","","0" +"WL-0264","260.6199951171875","260","AA","2024-10-01T00:00:00Z","0001-01-01T15:00:00Z","0.6200000047683716" +"NM-03667","69.4000015258789","69.4000015258789","","2001-02-07T00:00:00Z","","0" +"NM-08234","32.849998474121094","32.849998474121094","","1937-05-19T00:00:00Z","","0" +"DE-0108","37.13999938964844","37.13999938964844","","2007-10-11T00:00:00Z","","0" +"NM-01889","16.280000686645508","16.280000686645508","","2009-06-17T00:00:00Z","","0" +"NM-28251","68.93000030517578","68.93000030517578","","2002-06-14T00:00:00Z","","0" +"NM-27284","161.3800048828125","161.3800048828125","","1983-01-19T00:00:00Z","","0" +"NM-02794","41.13999938964844","41.13999938964844","","1939-01-30T00:00:00Z","","0" +"NM-03013","104","104","","2008-03-19T00:00:00Z","","0" +"NM-13594","20.459999084472656","20.459999084472656","","1961-03-01T00:00:00Z","","0" +"NM-04553","99.62000274658203","99.62000274658203","","1977-03-03T00:00:00Z","","0" +"NM-10932","9.130000114440918","9.130000114440918","","1966-08-30T00:00:00Z","","0" +"NM-20170","85.66999816894531","85.66999816894531","","1949-12-07T00:00:00Z","","0" +"AB-0053","47.060001373291016","47.060001373291016","","2009-03-04T00:00:00Z","","" +"NM-01823","323.8999938964844","323.8999938964844","","1984-02-15T00:00:00Z","","0" +"DE-0276","85.68000030517578","85.68000030517578","","2016-12-13T00:00:00Z","","0" +"NM-28259","134.16000366210938","134.16000366210938","","2016-05-25T00:00:00Z","","0" +"NM-00610","42.119998931884766","42.119998931884766","","2003-01-03T00:00:00Z","","0" +"NM-28252","39.099998474121094","39.099998474121094","","1960-11-25T00:00:00Z","","0" +"NM-05448","119.08999633789062","119.08999633789062","","1981-03-18T00:00:00Z","","0" +"NM-02487","9.699999809265137","9.699999809265137","","2003-01-15T00:00:00Z","","0" +"NM-05516","9.699999809265137","9.699999809265137","","1986-02-01T00:00:00Z","","0" +"NM-17716","1.75","1.75","","1944-12-02T00:00:00Z","","0" +"NM-06847","150.75","150.75","","1966-01-06T00:00:00Z","","0" +"SM-0119","7.130000114440918","7.130000114440918","","1993-09-09T00:00:00Z","","0" +"NM-18772","379.3500061035156","379.3500061035156","","1980-06-12T00:00:00Z","","0" +"NM-05716","89.41999816894531","89.41999816894531","","1950-11-28T00:00:00Z","","0" +"NM-21308","23.100000381469727","23.100000381469727","","1960-02-02T00:00:00Z","","0" +"NM-07114","77.04000091552734","77.04000091552734","","2004-06-24T00:00:00Z","","0" +"NM-14351","595.0499877929688","595.0499877929688","","1965-09-01T00:00:00Z","","0" +"NM-01897","15.34000015258789","15.34000015258789","","2004-02-18T00:00:00Z","","0" +"NM-17869","33.369998931884766","33.369998931884766","","1982-04-01T00:00:00Z","","0" +"AB-0106","426.45001220703125","426.45001220703125","","2006-10-13T00:00:00Z","","" +"NM-02396","9.100000381469727","9.100000381469727","","1954-03-15T00:00:00Z","","0" +"NM-02591","15.600000381469727","15.600000381469727","","1964-02-15T00:00:00Z","","0" +"NM-28023","486.1199951171875","486.1199951171875","S","2015-05-08T00:00:00Z","","0" +"NM-25676","16.649999618530273","16.649999618530273","","1970-10-02T00:00:00Z","","0" +"WL-0089","38.125","35.57500076293945","","1987-02-11T00:00:00Z","","2.549999952316284" +"NM-02551","81.30000305175781","81.30000305175781","P","1996-02-20T00:00:00Z","","0" +"NM-02314","8","8","","1987-01-15T00:00:00Z","","0" +"AR-0092","57.869998931884766","57.06999969482422","","2016-10-19T00:00:00Z","","0.800000011920929" +"NM-28257","-19.100000381469727","-19.100000381469727","","1992-10-25T00:00:00Z","","0" +"NM-17989","18.3700008392334","18.3700008392334","","1936-10-20T00:00:00Z","","0" +"NM-14593","122.12999725341797","122.12999725341797","","1965-09-14T00:00:00Z","","0" +"NM-09474","20.889999389648438","20.889999389648438","","1955-07-28T00:00:00Z","","0" +"NM-13180","31.690000534057617","31.690000534057617","","1965-01-07T00:00:00Z","","0" +"NM-03274","7.809999942779541","7.809999942779541","","1951-02-14T00:00:00Z","","0" +"NM-01858","11.40999984741211","11.40999984741211","","2007-03-06T00:00:00Z","","0" +"NM-15654","126.80000305175781","126.80000305175781","","1995-02-17T00:00:00Z","","0" +"NM-28255","120.02999877929688","120.02999877929688","","1956-08-05T00:00:00Z","","0" +"NM-10096","10.649999618530273","10.649999618530273","","1983-08-23T00:00:00Z","","0" +"EB-482","646.0499877929688","646.0499877929688","P","2002-12-31T00:00:00Z","","0" +"NM-10719","-51.81999969482422","-51.81999969482422","","1914-04-01T00:00:00Z","","0" +"NM-16574","11.920000076293945","11.920000076293945","R","1943-07-26T00:00:00Z","","0" +"NM-28252","33.20000076293945","33.20000076293945","","1996-12-05T00:00:00Z","","0" +"NM-05757","81.41999816894531","81.41999816894531","","1942-10-15T00:00:00Z","","0" +"NM-03436","82.9000015258789","82.9000015258789","","1966-08-23T00:00:00Z","","0" +"NM-28251","91.29000091552734","91.29000091552734","","1983-07-05T00:00:00Z","","0" +"NM-22289","36.59000015258789","36.59000015258789","Z","1997-03-24T00:00:00Z","","0" +"NM-17424","55.90999984741211","55.90999984741211","","1939-01-16T00:00:00Z","","0" +"SB-0299","117.69000244140625","117.69000244140625","","1970-05-15T00:00:00Z","","0" +"NM-20366","359.8500061035156","359.8500061035156","","1983-01-07T00:00:00Z","","0" +"NM-11225","-20.639999389648438","-20.639999389648438","","1909-03-24T00:00:00Z","","0" +"SA-0037","45.060001373291016","43.310001373291016","","2010-03-24T00:00:00Z","","1.75" +"NM-21719","55.400001525878906","55.400001525878906","S","1984-05-14T00:00:00Z","","0" +"AB-0092","505.989990234375","505.989990234375","","2010-01-05T00:00:00Z","","" +"NM-00612","94.9000015258789","94.9000015258789","","2001-01-04T00:00:00Z","","0" +"NM-01281","400.260009765625","400.260009765625","","1987-08-15T00:00:00Z","","0" +"NM-03261","7.46999979019165","7.46999979019165","","2003-09-28T00:00:00Z","","0" +"NM-01796","7.199999809265137","7.199999809265137","","1961-03-15T00:00:00Z","","0" +"NM-02065","113.05999755859375","113.05999755859375","","1959-02-10T00:00:00Z","","0" +"AB-0129","762.4600219726562","762.4600219726562","Z","1998-02-09T00:00:00Z","","" +"NM-21567","5.300000190734863","5.300000190734863","Z","2005-09-14T00:00:00Z","","0" +"NM-07249","33.650001525878906","33.650001525878906","","1955-02-25T00:00:00Z","","0" +"NM-08189","9.600000381469727","9.600000381469727","","1959-10-15T00:00:00Z","","0" +"NM-06556","59.70000076293945","59.70000076293945","","1970-12-08T00:00:00Z","","0" +"NM-01052","365.57000732421875","365.57000732421875","","2006-02-21T00:00:00Z","","0" +"NM-01926","5.5","5.5","","1950-03-15T00:00:00Z","","0" +"NM-28255","68.80000305175781","68.80000305175781","","1952-07-25T00:00:00Z","","0" +"NM-21544","392.70001220703125","392.70001220703125","","2005-08-31T00:00:00Z","","0" +"NM-26622","133.00999450683594","133.00999450683594","","2011-06-24T00:00:00Z","","0" +"NM-11928","-0.33000001311302185","-0.33000001311302185","","1949-08-02T00:00:00Z","","0" +"BC-0346","","190.60000610351562","","2021-03-11T00:00:00Z","","1.5" +"NM-11539","46.02000045776367","46.02000045776367","","1944-01-17T00:00:00Z","","0" +"NM-02967","138.38999938964844","138.38999938964844","","1995-02-15T00:00:00Z","","0" +"NM-03242","87.31999969482422","87.31999969482422","","1948-10-25T00:00:00Z","","0" +"EB-271","48.18000030517578","48.18000030517578","","1980-01-28T00:00:00Z","","0" +"NM-22539","230.67999267578125","230.67999267578125","Z","1997-01-08T00:00:00Z","","0" +"NM-17833","82.5199966430664","82.5199966430664","","1963-12-11T00:00:00Z","","0" +"NM-05087","35.130001068115234","35.130001068115234","","1972-01-26T00:00:00Z","","0" +"AB-0038","344.489990234375","344.489990234375","","2000-02-07T00:00:00Z","","" +"NM-02328","22.950000762939453","22.950000762939453","","2013-01-24T00:00:00Z","","0" +"NM-06848","14.800000190734863","14.800000190734863","","1968-01-22T00:00:00Z","","0" +"NM-03385","43.040000915527344","43.040000915527344","","1993-06-09T00:00:00Z","","0" +"NM-00226","62.25","62.25","","1966-09-22T00:00:00Z","","0" +"NM-19473","74.5199966430664","74.5199966430664","","1977-01-18T00:00:00Z","","0" +"NM-13861","-8.510000228881836","-8.510000228881836","","1908-09-03T00:00:00Z","","0" +"NM-03344","75.4800033569336","75.4800033569336","R","1991-10-01T00:00:00Z","","0" +"NM-01501","145.86000061035156","145.86000061035156","","1987-02-10T00:00:00Z","","0" +"EB-164","405.4599914550781","405.4599914550781","","2015-02-17T00:00:00Z","","0" +"NM-07888","590.760009765625","590.760009765625","","1971-07-01T00:00:00Z","","0" +"NM-17716","5.230000019073486","5.230000019073486","","1950-01-25T00:00:00Z","","0" +"NM-03986","229.32000732421875","229.32000732421875","","1967-01-19T00:00:00Z","","0" +"NM-13974","-14.859999656677246","-14.859999656677246","","1910-09-12T00:00:00Z","","0" +"NM-07802","48.959999084472656","48.959999084472656","","1967-05-11T00:00:00Z","","0" +"NM-16882","16.440000534057617","16.440000534057617","","1936-08-25T00:00:00Z","","0" +"AB-0054","44.61000061035156","44.61000061035156","","2005-11-15T00:00:00Z","","" +"BC-0190","197.1300048828125","197.1300048828125","","2012-09-11T00:00:00Z","","0" +"NM-03445","58.47999954223633","58.47999954223633","Z","1997-07-02T00:00:00Z","","0" +"NM-24836","191.99000549316406","191.99000549316406","","1967-03-01T00:00:00Z","","0" +"NM-22982","7.090000152587891","7.090000152587891","Z","2008-02-12T00:00:00Z","","0" +"SV-0112","303.3999938964844","301.3999938964844","","2016-02-06T00:00:00Z","","2" +"NM-13900","4.300000190734863","4.300000190734863","","1958-10-06T00:00:00Z","","0" +"NM-02353","151.22999572753906","151.22999572753906","","1975-01-16T00:00:00Z","","0" +"NM-05480","156.10000610351562","156.10000610351562","","1957-08-12T00:00:00Z","","0" +"NM-12197","21.15999984741211","21.15999984741211","","1948-01-28T00:00:00Z","","0" +"NM-02209","100","100","","1954-10-01T00:00:00Z","","0" +"DE-0236","108.19999694824219","108.19999694824219","","2003-05-20T00:00:00Z","","0" +"NM-02383","49.560001373291016","49.560001373291016","","2003-07-09T00:00:00Z","","0" +"NM-05309","7.099999904632568","7.099999904632568","","1950-03-15T00:00:00Z","","0" +"NM-24199","-157","-157","","1951-05-01T00:00:00Z","","0" +"NM-14593","120.52999877929688","120.52999877929688","","1950-03-07T00:00:00Z","","0" +"NM-03101","59.56999969482422","59.56999969482422","","1987-01-29T00:00:00Z","","0" +"NM-21114","687.4000244140625","687.4000244140625","","1997-06-20T00:00:00Z","","0" +"AB-0184","352.8900146484375","352.8900146484375","","2005-03-28T00:00:00Z","","" +"NM-00480","50.38999938964844","50.38999938964844","","2016-01-05T00:00:00Z","","0" +"NM-02207","8.899999618530273","8.899999618530273","","1992-03-15T00:00:00Z","","0" +"NM-12733","38.7599983215332","38.7599983215332","","1971-03-04T00:00:00Z","","0" +"NM-27598","74.55000305175781","74.55000305175781","","1961-01-10T00:00:00Z","","0" +"NM-02209","105.44000244140625","105.44000244140625","","1979-04-01T00:00:00Z","","0" +"NM-01295","128.44000244140625","128.44000244140625","","2003-08-11T00:00:00Z","","0" +"NM-11679","52.38999938964844","52.38999938964844","","1954-11-15T00:00:00Z","","0" +"NM-12485","10.329999923706055","10.329999923706055","","1974-11-15T00:00:00Z","","0" +"NM-02207","11.5","11.5","","1974-08-15T00:00:00Z","","0" +"NM-03336","12.5","12.5","","2000-12-19T00:00:00Z","","0" +"WL-0101","546.4500122070312","546.4500122070312","","2018-12-20T00:00:00Z","0001-01-01T11:55:00Z","0" +"NM-01971","6.800000190734863","6.800000190734863","","1986-04-15T00:00:00Z","","0" +"NM-27253","36.029998779296875","36.029998779296875","","1976-01-19T00:00:00Z","","0" +"NM-02005","4.099999904632568","4.099999904632568","","2001-07-15T00:00:00Z","","0" +"NM-13275","201.91000366210938","201.91000366210938","","1974-01-17T00:00:00Z","","0" +"NM-10682","47.31999969482422","47.31999969482422","","1944-01-16T00:00:00Z","","0" +"NM-11734","-44.88999938964844","-44.88999938964844","","1909-12-11T00:00:00Z","","0" +"DE-0109","33.45000076293945","33.45000076293945","","2005-11-03T00:00:00Z","","0" +"NM-13256","-47.20000076293945","-47.20000076293945","","1911-05-25T00:00:00Z","","0" +"NM-21975","380.75","380.75","","1973-03-27T00:00:00Z","","0" +"NM-22489","17.100000381469727","17.100000381469727","R","1955-03-03T00:00:00Z","","0" +"NM-28258","121.05000305175781","121.05000305175781","","1989-11-15T00:00:00Z","","0" +"NM-27626","57.95000076293945","57.95000076293945","","1947-01-15T00:00:00Z","","0" +"NM-06392","96.37000274658203","96.37000274658203","","1961-01-05T00:00:00Z","","0" +"NM-02396","6.099999904632568","6.099999904632568","","1999-10-15T00:00:00Z","","0" +"NM-22980","11.6899995803833","11.6899995803833","Z","2009-08-19T00:00:00Z","","0" +"SB-0514","317.29998779296875","317.29998779296875","","1989-04-28T00:00:00Z","","0" +"NM-14833","35.029998779296875","35.029998779296875","","1957-09-16T00:00:00Z","","0" +"AR-0076","24.18000030517578","23.079999923706055","","2015-08-18T00:00:00Z","","1.100000023841858" +"NM-00644","18.469999313354492","18.469999313354492","","2002-12-10T00:00:00Z","","0" +"NM-05689","78.69999694824219","78.69999694824219","S","1935-09-07T00:00:00Z","","0" +"NM-01931","323.6700134277344","323.6700134277344","","1956-01-21T00:00:00Z","","0" +"NM-02208","8.899999618530273","8.899999618530273","","1990-06-15T00:00:00Z","","0" +"NM-15416","51.810001373291016","51.810001373291016","","2008-05-01T00:00:00Z","","0" +"NM-02772","109.16000366210938","109.16000366210938","","1984-03-26T00:00:00Z","","0" +"NM-15269","45.04999923706055","45.04999923706055","","2013-01-23T00:00:00Z","","0" +"EB-489","509.70001220703125","506.5","P","2008-01-31T00:00:00Z","","3.200000047683716" +"NM-25680","-102.95999908447266","-102.95999908447266","","1989-01-17T00:00:00Z","","0" +"AB-0075","7.239999771118164","7.239999771118164","","1998-01-09T00:00:00Z","","" +"NM-02413","167.1699981689453","167.1699981689453","","1981-01-09T00:00:00Z","","0" +"NM-21359","246.08999633789062","246.08999633789062","","2012-10-12T00:00:00Z","","0" +"NM-17716","4.449999809265137","4.449999809265137","","1946-06-28T00:00:00Z","","0" +"NM-01194","64.1500015258789","64.1500015258789","","1975-01-16T00:00:00Z","","0" +"NM-03356","66.0999984741211","66.0999984741211","","1959-02-06T00:00:00Z","","0" +"NM-00558","49.279998779296875","49.279998779296875","","1953-01-14T00:00:00Z","","0" +"SB-0444","59.220001220703125","59.220001220703125","","1977-02-24T00:00:00Z","","0" +"NM-02256","7.5","7.5","","1972-12-15T00:00:00Z","","0" +"AB-0183","357.2799987792969","357.2799987792969","","1996-08-08T00:00:00Z","","" +"NM-12486","-33.34000015258789","-33.34000015258789","","1910-05-31T00:00:00Z","","0" +"NM-11388","40.52000045776367","40.52000045776367","","1942-09-26T00:00:00Z","","0" +"NM-00213","199.9499969482422","199.9499969482422","","1954-09-01T00:00:00Z","","0" +"NM-05315","167.1699981689453","167.1699981689453","P","1956-09-11T00:00:00Z","","0" +"NM-02390","271.0199890136719","271.0199890136719","","2002-02-27T00:00:00Z","","0" +"AB-0065","164.85000610351562","164.85000610351562","","1999-06-16T00:00:00Z","","" +"NM-02026","56.900001525878906","56.900001525878906","","1956-01-12T00:00:00Z","","0" +"NM-12349","31.350000381469727","31.350000381469727","","1945-01-19T00:00:00Z","","0" +"NM-08648","38.90999984741211","38.90999984741211","","1941-10-12T00:00:00Z","","0" +"NM-25007","95.30000305175781","95.30000305175781","","1953-09-09T00:00:00Z","","0" +"NM-02393","74.31999969482422","74.31999969482422","","1973-01-23T00:00:00Z","","0" +"NM-10572","34.900001525878906","34.900001525878906","","1959-01-20T00:00:00Z","","0" +"NM-02283","23.989999771118164","23.989999771118164","","2009-02-18T00:00:00Z","","0" +"BC-0148","341.7799987792969","341.7799987792969","","2017-06-14T00:00:00Z","","0" +"NM-12599","108.72000122070312","108.72000122070312","P","1958-08-25T00:00:00Z","","0" +"NM-03387","34.54999923706055","34.54999923706055","","1988-12-27T00:00:00Z","","0" +"NM-06174","126.05000305175781","126.05000305175781","P","1977-02-02T00:00:00Z","","0" +"NM-03274","7.179999828338623","7.179999828338623","","1949-08-16T00:00:00Z","","0" +"NM-00644","155.1699981689453","155.1699981689453","Z","2011-08-23T00:00:00Z","","0" +"NM-10906","27.75","27.75","","1960-01-19T00:00:00Z","","0" +"NM-02117","86.29000091552734","86.29000091552734","","1992-01-30T00:00:00Z","","0" +"NM-08551","393.739990234375","393.739990234375","","1980-01-08T00:00:00Z","","0" +"NM-01586","55.5","55.5","","1983-01-18T00:00:00Z","","0" +"ED-0290","74.80000305175781","74.80000305175781","","1947-10-15T00:00:00Z","","0" +"NM-17703","23.8799991607666","23.8799991607666","P","1958-01-25T00:00:00Z","","0" +"NM-01891","52.36000061035156","52.36000061035156","","1999-03-03T00:00:00Z","","0" +"TO-0101","36.79999923706055","36.79999923706055","","1941-02-13T00:00:00Z","","0" +"NM-12339","11.329999923706055","11.329999923706055","","1939-11-27T00:00:00Z","","0" +"NM-12392","256.1499938964844","256.1499938964844","","1978-10-01T00:00:00Z","","0" +"NM-20103","15.210000038146973","15.210000038146973","","1949-02-15T00:00:00Z","","0" +"NM-10676","339.82000732421875","339.82000732421875","","1979-01-24T00:00:00Z","","0" +"AB-0063","224.7899932861328","224.7899932861328","","1956-05-09T00:00:00Z","","0" +"NM-01884","25.979999542236328","25.979999542236328","","2013-03-06T00:00:00Z","","0" +"NM-02194","183.22999572753906","183.22999572753906","","1994-07-05T00:00:00Z","","0" +"NM-28252","51.36000061035156","51.36000061035156","","1968-02-05T00:00:00Z","","0" +"NM-00398","153.22999572753906","153.22999572753906","","1981-01-27T00:00:00Z","","0" +"NM-03436","74.5199966430664","74.5199966430664","","1952-10-23T00:00:00Z","","0" +"EB-219","70.75","69.25","","1983-10-01T00:00:00Z","","1.5" +"QY-0537","172.1999969482422","172.1999969482422","","1954-01-28T00:00:00Z","","0" +"EB-269","11.979999542236328","11.979999542236328","","2015-09-15T00:00:00Z","","0" +"NM-02282","401.2799987792969","401.2799987792969","","1986-05-01T00:00:00Z","","0" +"NM-03392","149.8800048828125","149.8800048828125","R","1991-10-04T00:00:00Z","","0" +"NM-17716","5.230000019073486","5.230000019073486","","1950-01-01T00:00:00Z","","0" +"NM-08678","39.75","39.75","","1984-02-06T00:00:00Z","","0" +"NM-28256","98.5199966430664","98.5199966430664","","1978-02-25T00:00:00Z","","0" +"BC-0219","29.940000534057617","29.940000534057617","","2014-04-16T00:00:00Z","","0" +"NM-13285","-20.639999389648438","-20.639999389648438","","1911-10-18T00:00:00Z","","0" +"NM-04632","8","8","","1950-07-15T00:00:00Z","","0" +"NM-02424","30.229999542236328","30.229999542236328","","1952-01-11T00:00:00Z","","0" +"NM-27253","33.97999954223633","33.97999954223633","","1964-01-07T00:00:00Z","","0" +"NM-02548","50.81999969482422","50.81999969482422","","1991-08-09T00:00:00Z","","0" +"NM-19816","16.540000915527344","16.540000915527344","","1944-01-25T00:00:00Z","","0" +"NM-12422","-41.43000030517578","-41.43000030517578","","1909-06-25T00:00:00Z","","0" +"NM-03334","13.199999809265137","13.199999809265137","","2000-12-19T00:00:00Z","","0" +"NM-08647","27.31999969482422","27.31999969482422","","1940-10-18T00:00:00Z","","0" +"NM-20452","193.6999969482422","193.6999969482422","","2000-10-11T00:00:00Z","","0" +"NM-03932","95.88999938964844","95.88999938964844","","1966-01-05T00:00:00Z","","0" +"NM-10125","17.700000762939453","17.700000762939453","","1973-01-18T00:00:00Z","","0" +"NM-03437","83.04000091552734","83.04000091552734","","1969-02-12T00:00:00Z","","0" +"NM-04987","107.9000015258789","107.9000015258789","","1976-01-09T00:00:00Z","","0" +"DE-0302","42.36000061035156","42.36000061035156","","2012-09-26T00:00:00Z","","0" +"NM-01201","28.729999542236328","28.729999542236328","","1992-02-25T00:00:00Z","","0" +"NM-22322","20.239999771118164","20.239999771118164","Z","1998-12-28T00:00:00Z","","0" +"NM-20068","35.04999923706055","35.04999923706055","","1947-11-24T00:00:00Z","","0" +"NM-20308","74.1500015258789","74.1500015258789","","1946-10-03T00:00:00Z","","0" +"NM-01272","605.280029296875","605.280029296875","R","1985-09-26T00:00:00Z","","0" +"NM-01872","9.800000190734863","9.800000190734863","","1977-12-15T00:00:00Z","","0" +"NM-02004","8.899999618530273","8.899999618530273","","1982-09-15T00:00:00Z","","0" +"NM-28254","146.30999755859375","146.30999755859375","","1964-09-15T00:00:00Z","","0" +"NM-11017","30.030000686645508","30.030000686645508","R","1947-11-15T00:00:00Z","","0" +"NM-13122","12.180000305175781","12.180000305175781","","1957-10-07T00:00:00Z","","0" +"NM-13594","56.5099983215332","56.5099983215332","","1971-07-01T00:00:00Z","","0" +"SB-0145","118.38999938964844","118.38999938964844","","1995-07-11T00:00:00Z","","0" +"NM-11997","29.59000015258789","29.59000015258789","","1959-01-08T00:00:00Z","","0" +"NM-27541","43.29999923706055","43.29999923706055","","1961-03-15T00:00:00Z","","0" +"NM-03477","77.68000030517578","77.68000030517578","","1983-02-22T00:00:00Z","","0" +"AB-0208","758.4000244140625","758.4000244140625","T","1983-06-16T00:00:00Z","","" +"NM-21652","441.55999755859375","441.55999755859375","","1993-07-28T00:00:00Z","","0" +"NM-08071","7.199999809265137","7.199999809265137","","1973-07-15T00:00:00Z","","0" +"NM-28251","82.2300033569336","82.2300033569336","","2013-08-26T00:00:00Z","","0" +"NM-17715","11.960000038146973","11.960000038146973","P","1951-07-30T00:00:00Z","","0" +"NM-00958","22.420000076293945","22.420000076293945","","1982-03-26T00:00:00Z","","0" +"NM-03195","55.93000030517578","55.93000030517578","","2008-03-27T00:00:00Z","","0" +"WL-0087","52.125","50.44499969482422","","1997-01-15T00:00:00Z","","1.6799999475479126" +"NM-03436","66.04000091552734","66.04000091552734","","1951-02-12T00:00:00Z","","0" +"TV-187","31.920000076293945","30.010000228881836","","2011-12-13T00:00:00Z","","1.909999966621399" +"NM-16621","48","48","P","1954-05-22T00:00:00Z","","0" +"NM-04856","24.020000457763672","24.020000457763672","","1948-11-23T00:00:00Z","","0" +"NM-28259","111.68000030517578","111.68000030517578","","1999-05-15T00:00:00Z","","0" +"NM-17398","21.75","21.75","R","1961-01-12T00:00:00Z","","0" +"NM-28019","476.6000061035156","476.6000061035156","S","2015-05-07T00:00:00Z","","0" +"NM-21851","5.070000171661377","5.070000171661377","Z","2006-05-17T00:00:00Z","","0" +"NM-00498","56.9900016784668","56.9900016784668","","1998-01-06T00:00:00Z","","0" +"NM-19911","43.459999084472656","43.459999084472656","","1942-07-16T00:00:00Z","","0" +"NM-11100","42.52000045776367","42.52000045776367","","1952-11-11T00:00:00Z","","0" +"SB-0442","172.39999389648438","172.39999389648438","","2008-07-15T00:00:00Z","","0" +"BW-0400","81.19999694824219","81.19999694824219","","1956-01-06T00:00:00Z","","0" +"NM-03473","20.940000534057617","20.940000534057617","","1987-09-09T00:00:00Z","","0" +"NM-01286","86.4000015258789","86.4000015258789","","2004-02-18T00:00:00Z","","0" +"NM-17610","89.93000030517578","89.93000030517578","","1956-01-09T00:00:00Z","","0" +"NM-15051","42.220001220703125","42.220001220703125","","1984-02-03T00:00:00Z","","0" +"NM-11620","68.29000091552734","68.29000091552734","","1944-01-24T00:00:00Z","","0" +"NM-07004","216.5500030517578","216.5500030517578","","1976-06-30T00:00:00Z","","0" +"NM-08940","7.019999980926514","7.019999980926514","","1957-02-11T00:00:00Z","","0" +"UC-0123","24.1200008392334","24.1200008392334","","1996-01-22T00:00:00Z","","0" +"NM-07209","63.290000915527344","63.290000915527344","","1963-01-11T00:00:00Z","","0" +"NM-17398","20.780000686645508","20.780000686645508","","1951-07-28T00:00:00Z","","0" +"NM-00257","93.0999984741211","93.0999984741211","","1981-01-01T00:00:00Z","","0" +"NM-28252","15.680000305175781","15.680000305175781","","1951-02-05T00:00:00Z","","0" +"NM-08697","173.50999450683594","173.50999450683594","","1976-05-27T00:00:00Z","","0" +"AB-0037","346.07000732421875","346.07000732421875","","2003-09-23T00:00:00Z","","0" +"NM-01335","148.8300018310547","148.8300018310547","","2006-09-26T00:00:00Z","","0" +"NM-02963","480.80999755859375","480.80999755859375","","1993-02-03T00:00:00Z","","0" +"NM-07719","40.369998931884766","40.369998931884766","","1941-09-09T00:00:00Z","","0" +"NM-03574","45.040000915527344","45.040000915527344","","1977-04-06T00:00:00Z","","0" +"NM-22715","4.789999961853027","4.789999961853027","Z","2009-06-03T00:00:00Z","","0" +"NM-06525","277.7200012207031","277.7200012207031","","1990-02-22T00:00:00Z","","0" +"SB-0299","124.6500015258789","124.6500015258789","","2003-02-10T00:00:00Z","","0" +"NM-11795","37.18000030517578","37.18000030517578","","1937-01-13T00:00:00Z","","0" +"NM-06281","29.100000381469727","29.100000381469727","","1976-01-15T00:00:00Z","","0" +"NM-27722","71.4800033569336","71.4800033569336","","1993-01-07T00:00:00Z","","0" +"NM-16979","39.900001525878906","39.900001525878906","","1934-09-18T00:00:00Z","","0" +"NM-06085","26.56999969482422","26.56999969482422","","1974-12-03T00:00:00Z","","0" +"NM-17527","29.520000457763672","29.520000457763672","","1942-10-22T00:00:00Z","","0" +"NM-28014","498.6000061035156","498.6000061035156","S","2015-05-25T00:00:00Z","","0" +"NM-28253","22.040000915527344","22.040000915527344","","2012-11-26T00:00:00Z","","0" +"NM-28250","104.80000305175781","104.80000305175781","","1971-11-05T00:00:00Z","","0" +"NM-02637","78.8499984741211","78.8499984741211","","2008-01-16T00:00:00Z","","0" +"NM-03329","19.780000686645508","19.780000686645508","","1989-11-29T00:00:00Z","","0" +"TO-0178","21.899999618530273","21.899999618530273","","1946-02-20T00:00:00Z","","0" +"SB-0244","81.37000274658203","81.37000274658203","","1991-02-08T00:00:00Z","","0" +"NM-14181","25","25","","1909-08-12T00:00:00Z","","0" +"NM-28252","58.16999816894531","58.16999816894531","","1974-12-15T00:00:00Z","","0" +"AB-0100","719.1799926757812","719.1799926757812","","1999-05-07T00:00:00Z","","" +"NM-05347","10.600000381469727","10.600000381469727","","1981-07-15T00:00:00Z","","0" +"NM-02005","9.199999809265137","9.199999809265137","","1979-01-15T00:00:00Z","","0" +"NM-00369","66.5","66.5","","1976-02-12T00:00:00Z","","0" +"NM-17378","33.630001068115234","33.630001068115234","","1947-01-07T00:00:00Z","","0" +"NM-05752","63.060001373291016","63.060001373291016","","1952-09-04T00:00:00Z","","0" +"NM-14874","110.06999969482422","110.06999969482422","P","1963-08-22T00:00:00Z","","0" +"NM-11967","34.689998626708984","34.689998626708984","","1941-01-24T00:00:00Z","","0" +"NM-08904","9.539999961853027","9.539999961853027","","2002-05-22T00:00:00Z","","0" +"NM-06038","36.79999923706055","36.79999923706055","","2012-07-19T00:00:00Z","","0" +"NM-03299","45.95000076293945","45.95000076293945","","1965-02-05T00:00:00Z","","0" +"NM-01295","96.70999908447266","96.70999908447266","","1994-10-18T00:00:00Z","","0" +"NM-19828","23.700000762939453","23.700000762939453","","1944-06-10T00:00:00Z","","0" +"SB-0299","133.80999755859375","133.80999755859375","","2013-03-15T00:00:00Z","","0" +"NM-14192","35.849998474121094","35.849998474121094","","1951-07-10T00:00:00Z","","0" +"NM-28011","493.6300048828125","493.6300048828125","S","2015-06-03T00:00:00Z","","0" +"NM-09581","-56.439998626708984","-56.439998626708984","","1907-12-10T00:00:00Z","","0" +"NM-15208","189.75","189.75","","1989-12-20T00:00:00Z","","0" +"SO-0067","0","0","","1949-07-21T00:00:00Z","","0" +"NM-02438","174.22000122070312","174.22000122070312","","1981-12-30T00:00:00Z","","0" +"AB-0214","154.61000061035156","154.61000061035156","","2011-01-04T00:00:00Z","","" +"NM-05908","67.70999908447266","67.70999908447266","","1983-01-10T00:00:00Z","","0" +"NM-28254","38.5","38.5","","1962-11-15T00:00:00Z","","0" +"NM-07888","515.6900024414062","515.6900024414062","","1968-01-01T00:00:00Z","","0" +"NM-17002","46.02000045776367","46.02000045776367","","1982-01-11T00:00:00Z","","0" +"NM-07209","62.54999923706055","62.54999923706055","","1961-11-27T00:00:00Z","","0" +"NM-02109","42.779998779296875","42.779998779296875","","1965-08-04T00:00:00Z","","0" +"NM-08071","12.5","12.5","","1978-09-15T00:00:00Z","","0" +"NM-28254","124.69999694824219","124.69999694824219","","1958-08-15T00:00:00Z","","0" +"NM-16818","373.7300109863281","373.7300109863281","","1991-02-12T00:00:00Z","","0" +"EB-288","104.5","104.5","","1985-01-31T00:00:00Z","","0" +"NM-01890","39.65999984741211","39.65999984741211","","2004-09-01T00:00:00Z","","0" +"NM-04336","99.7300033569336","99.7300033569336","","1972-03-10T00:00:00Z","","0" +"NM-13887","3.9100000858306885","3.9100000858306885","","1967-10-13T00:00:00Z","","0" +"NM-02396","7.300000190734863","7.300000190734863","","1960-11-15T00:00:00Z","","0" +"NM-20916","164.3300018310547","164.3300018310547","","1986-10-24T00:00:00Z","","0" +"NM-17716","2.2100000381469727","2.2100000381469727","","1943-11-12T00:00:00Z","","0" +"NM-02487","11.920000076293945","11.920000076293945","","2014-12-02T00:00:00Z","","0" +"NM-14149","-20.639999389648438","-20.639999389648438","","1910-12-15T00:00:00Z","","0" +"NM-13894","-26.40999984741211","-26.40999984741211","","1911-12-02T00:00:00Z","","0" +"NM-27722","39.9900016784668","39.9900016784668","","1952-01-23T00:00:00Z","","0" +"NM-02408","9.600000381469727","9.600000381469727","","1996-02-28T00:00:00Z","","0" +"NM-28257","87.44999694824219","87.44999694824219","","1960-08-25T00:00:00Z","","0" +"NM-10940","-28.719999313354492","-28.719999313354492","","1907-03-23T00:00:00Z","","0" +"NM-00480","53.36000061035156","53.36000061035156","","1972-01-13T00:00:00Z","","0" +"NM-15031","29","29","","1980-04-24T00:00:00Z","","0" +"NM-03298","30.719999313354492","30.719999313354492","","1957-02-06T00:00:00Z","","0" +"BC-0019","72.72000122070312","72.72000122070312","","2015-06-12T00:00:00Z","","0" +"NM-01901","10.210000038146973","10.210000038146973","","1960-01-13T00:00:00Z","","0" +"NM-02548","46.83000183105469","46.83000183105469","","1979-03-09T00:00:00Z","","0" +"NM-02443","97.41000366210938","97.41000366210938","","2004-06-24T00:00:00Z","","0" +"SB-0442","172.1999969482422","172.1999969482422","","2006-07-30T00:00:00Z","","0" +"NM-03387","47.68000030517578","47.68000030517578","","2004-03-01T00:00:00Z","","0" +"NM-08189","10.899999618530273","10.899999618530273","","1955-07-15T00:00:00Z","","0" +"NM-17193","33.380001068115234","33.380001068115234","","1936-01-09T00:00:00Z","","0" +"NM-23252","287","287","","1987-06-15T00:00:00Z","","0" +"NM-03618","211.1999969482422","211.1999969482422","","1976-01-27T00:00:00Z","","0" +"NM-01868","9.399999618530273","9.399999618530273","","1982-07-15T00:00:00Z","","0" +"NM-06580","435.6199951171875","435.6199951171875","","1990-02-22T00:00:00Z","","0" +"AB-0074","16.149999618530273","16.149999618530273","","2013-02-06T00:00:00Z","","" +"NM-01896","10.09000015258789","10.09000015258789","","2006-09-12T00:00:00Z","","0" +"NM-24833","49.970001220703125","49.970001220703125","","1975-01-13T00:00:00Z","","0" +"NM-12590","76.75","76.75","","1976-05-05T00:00:00Z","","0" +"NM-02352","7.5","7.5","","1991-10-15T00:00:00Z","","0" +"WS-022","4.909999847412109","4.909999847412109","","2015-11-10T00:00:00Z","","0" +"NM-13623","36.029998779296875","36.029998779296875","","1956-05-07T00:00:00Z","","0" +"NM-00297","50.40999984741211","50.40999984741211","","1957-01-08T00:00:00Z","","0" +"EB-207","245.1699981689453","245.1699981689453","","2006-09-06T00:00:00Z","","0" +"NM-28257","62.95000076293945","62.95000076293945","","1957-03-15T00:00:00Z","","0" +"NM-00498","65.66000366210938","65.66000366210938","","1973-01-01T00:00:00Z","","0" +"NM-20899","14.869999885559082","14.869999885559082","","1949-02-17T00:00:00Z","","0" +"NM-02501","54.959999084472656","54.959999084472656","R","1950-09-13T00:00:00Z","","0" +"NM-00480","43.90999984741211","43.90999984741211","","1949-11-17T00:00:00Z","","0" +"NM-13898","3.630000114440918","3.630000114440918","","2015-01-29T00:00:00Z","","0" +"NM-10931","30.31999969482422","30.31999969482422","","1952-01-15T00:00:00Z","","0" +"NM-00480","54.380001068115234","54.380001068115234","","1962-09-21T00:00:00Z","","0" +"NM-09963","114.80000305175781","114.80000305175781","","1963-09-04T00:00:00Z","","0" +"NM-07225","192.8800048828125","192.8800048828125","","2021-04-06T00:00:00Z","","0" +"NM-01002","333.5","333.5","","2006-02-23T00:00:00Z","","0" +"NM-03978","163.52000427246094","163.52000427246094","","1972-11-30T00:00:00Z","","0" +"NM-11518","37.75","37.75","","1937-12-17T00:00:00Z","","0" +"NM-02164","11.069999694824219","11.069999694824219","","1991-05-13T00:00:00Z","","0" +"NM-00735","214.1199951171875","214.1199951171875","Z","2007-11-16T00:00:00Z","","0" +"NM-28258","125.8499984741211","125.8499984741211","","1984-01-05T00:00:00Z","","0" +"NM-26101","88.5999984741211","88.5999984741211","","1991-01-30T00:00:00Z","","0" +"NM-10299","64.02999877929688","64.02999877929688","","1976-04-01T00:00:00Z","","0" +"NM-20134","26.540000915527344","26.540000915527344","","1946-07-31T00:00:00Z","","0" +"AB-0165","483.0799865722656","483.0799865722656","","2003-03-13T00:00:00Z","","" +"NM-10732","40.36000061035156","40.36000061035156","","1939-09-18T00:00:00Z","","0" +"NM-18502","256.04998779296875","256.04998779296875","","1966-01-11T00:00:00Z","","0" +"SB-0265","140.35000610351562","140.35000610351562","","1955-01-21T00:00:00Z","","0" +"NM-00551","39.5099983215332","39.5099983215332","","1966-03-06T00:00:00Z","","0" +"NM-00213","199","199","","1967-10-01T00:00:00Z","","0" +"NM-08044","27.34000015258789","27.34000015258789","","1961-02-14T00:00:00Z","","0" +"SA-0144","26.760000228881836","24.6200008392334","","2010-01-13T00:00:00Z","","2.140000104904175" +"DE-0100","93.19999694824219","93.19999694824219","","2000-08-07T00:00:00Z","","0" +"SO-0208","28.719999313354492","28.01999855041504","","2021-10-21T00:00:00Z","0001-01-01T13:10:00Z","0.699999988079071" +"NM-28023","486.3900146484375","486.3900146484375","S","2015-04-16T00:00:00Z","","0" +"NM-00534","46.66999816894531","46.66999816894531","","1969-01-15T00:00:00Z","","0" +"NM-01948","6.800000190734863","6.800000190734863","","1948-02-15T00:00:00Z","","0" +"NM-03349","30.809999465942383","30.809999465942383","","2009-05-05T00:00:00Z","","0" +"NM-28258","128.99000549316406","128.99000549316406","","1972-12-25T00:00:00Z","","0" +"NM-15310","105.08999633789062","105.08999633789062","","1968-01-16T00:00:00Z","","0" +"TO-0085","81.5","81.5","","1950-05-19T00:00:00Z","","0" +"NM-19991","62.52000045776367","62.52000045776367","","1961-12-05T00:00:00Z","","0" +"NM-02197","20.510000228881836","20.510000228881836","","2008-10-06T00:00:00Z","","0" +"NM-21835","7.829999923706055","7.829999923706055","Z","2005-09-16T00:00:00Z","","0" +"NM-04259","8.899999618530273","8.899999618530273","","1990-02-01T00:00:00Z","","0" +"NM-02728","72.7300033569336","72.7300033569336","","1958-08-25T00:00:00Z","","0" +"EB-479","325","325","P","1993-06-30T00:00:00Z","","0" +"SB-0316","61.099998474121094","61.099998474121094","","1996-01-10T00:00:00Z","","0" +"NM-02527","8.699999809265137","8.699999809265137","","1974-09-15T00:00:00Z","","0" +"NM-28254","127.9000015258789","127.9000015258789","","1983-06-25T00:00:00Z","","0" +"NM-22965","768","768","","1982-06-29T00:00:00Z","","0" +"WL-0086","68.37999725341797","66.62000274658203","E","2023-11-29T00:00:00Z","0001-01-01T10:30:00Z","1.7599999904632568" +"NM-28254","99.16999816894531","99.16999816894531","","1978-05-25T00:00:00Z","","0" +"AB-0107","423.0799865722656","423.0799865722656","","2008-10-17T00:00:00Z","","" +"NM-07118","91.94999694824219","91.94999694824219","","2005-01-28T00:00:00Z","","0" +"NM-28258","163.9499969482422","163.9499969482422","","2005-06-15T00:00:00Z","","0" +"NM-10756","44.599998474121094","44.599998474121094","","1939-01-13T00:00:00Z","","0" +"NM-20238","394.8500061035156","394.8500061035156","R","1980-10-14T00:00:00Z","","0" +"DE-0108","40.560001373291016","40.560001373291016","","2011-03-21T00:00:00Z","","0" +"NM-04140","203.02000427246094","203.02000427246094","","1956-01-02T00:00:00Z","","0" +"NM-24859","40.369998931884766","40.369998931884766","","1972-01-20T00:00:00Z","","0" +"NM-01889","20.290000915527344","20.290000915527344","","1991-11-20T00:00:00Z","","0" +"UC-0011","116.73999786376953","116.73999786376953","","1991-01-25T00:00:00Z","","0" +"NM-01899","52.11000061035156","52.11000061035156","","2012-02-16T00:00:00Z","","0" +"NM-00812","37.790000915527344","37.790000915527344","","1994-09-15T00:00:00Z","","0" +"NM-03248","25.1299991607666","25.1299991607666","","1965-02-04T00:00:00Z","","0" +"NM-16800","41.2400016784668","41.2400016784668","","1961-01-10T00:00:00Z","","0" +"NM-06268","18","18","","1978-03-15T00:00:00Z","","0" +"NM-25427","57.47999954223633","57.47999954223633","","1979-07-24T00:00:00Z","","0" +"PC-055","213.5","212.4199981689453","","2022-03-03T00:00:00Z","0001-01-01T09:12:00Z","1.0800000429153442" +"NM-17716","0.5199999809265137","0.5199999809265137","","1943-05-26T00:00:00Z","","0" +"NM-00213","178.80999755859375","178.80999755859375","","1955-01-01T00:00:00Z","","0" +"NM-01878","80.5999984741211","80.5999984741211","","2013-01-29T00:00:00Z","","0" +"SB-0299","131.2899932861328","131.2899932861328","","2003-04-15T00:00:00Z","","0" +"NM-03355","33.59000015258789","33.59000015258789","","1990-12-03T00:00:00Z","","0" +"BC-0209","235.74000549316406","235.74000549316406","","2013-02-14T00:00:00Z","","0" +"NM-07401","145.69000244140625","145.69000244140625","","1981-01-16T00:00:00Z","","0" +"NM-28258","116.44000244140625","116.44000244140625","","1996-12-05T00:00:00Z","","0" +"TV-224","54.90999984741211","57.06999969482422","","2011-12-13T00:00:00Z","","-2.1600000858306885" +"DE-0079","84.62999725341797","84.62999725341797","","2007-06-18T00:00:00Z","","0" +"NM-11909","44.9900016784668","44.9900016784668","","1939-01-24T00:00:00Z","","0" +"NM-06085","27.139999389648438","27.139999389648438","","1973-06-28T00:00:00Z","","0" +"NM-13065","24.290000915527344","24.290000915527344","","1947-02-03T00:00:00Z","","0" +"NM-21907","480.1199951171875","480.1199951171875","S","2013-04-22T00:00:00Z","","0" +"NM-24824","48.349998474121094","48.349998474121094","","1954-04-01T00:00:00Z","","0" +"DE-0097","90.05000305175781","90.05000305175781","","2007-06-18T00:00:00Z","","0" +"NM-26553","5.300000190734863","5.300000190734863","","1977-05-27T00:00:00Z","","0" +"BC-0148","339.5799865722656","339.5799865722656","","2018-04-04T00:00:00Z","","0" +"NM-02208","8","8","","1995-12-15T00:00:00Z","","0" +"NM-28253","27.84000015258789","27.84000015258789","","2020-11-06T00:00:00Z","","0" +"NM-10805","57.349998474121094","57.349998474121094","","1956-01-10T00:00:00Z","","0" +"NM-02158","7.400000095367432","7.400000095367432","","1996-02-14T00:00:00Z","","0" +"NM-02060","312.760009765625","312.760009765625","","2009-02-02T00:00:00Z","","0" +"NM-09437","148.91000366210938","148.91000366210938","","1976-03-03T00:00:00Z","","0" +"NM-25507","87.4000015258789","87.4000015258789","","1971-01-23T00:00:00Z","","0" +"NM-10063","8.579999923706055","8.579999923706055","","1970-02-17T00:00:00Z","","0" +"PC-002","142.10000610351562","140.5","","2019-02-11T00:00:00Z","0001-01-01T11:41:00Z","1.600000023841858" +"NM-01543","280.8699951171875","280.8699951171875","","1979-01-24T00:00:00Z","","0" +"NM-02331","217.33999633789062","217.33999633789062","","1985-02-27T00:00:00Z","","0" +"NM-11566","20","20","","1915-04-13T00:00:00Z","","0" +"NM-08993","85.62000274658203","85.62000274658203","","1958-08-27T00:00:00Z","","0" +"NM-28255","176.00999450683594","176.00999450683594","","1998-06-25T00:00:00Z","","0" +"NM-19588","53.81999969482422","53.81999969482422","","1949-02-15T00:00:00Z","","0" +"NM-00541","80.83999633789062","80.83999633789062","","2012-12-20T00:00:00Z","","0" +"NM-11131","14.1899995803833","14.1899995803833","Z","1986-06-11T00:00:00Z","","0" +"NM-02043","5.599999904632568","5.599999904632568","","1988-10-15T00:00:00Z","","0" +"NM-03372","104.05000305175781","104.05000305175781","","1966-02-17T00:00:00Z","","0" +"NM-23056","20.459999084472656","20.459999084472656","R","2016-07-21T00:00:00Z","","0" +"NM-00367","131.8000030517578","131.8000030517578","","1968-09-01T00:00:00Z","","0" +"SA-0167","51.88999938964844","51.68000030517578","","2010-11-07T00:00:00Z","","0.20999999344348907" +"NM-02287","4.139999866485596","4.139999866485596","","2000-08-17T00:00:00Z","","0" +"NM-10331","586.2899780273438","586.2899780273438","","1961-05-01T00:00:00Z","","0" +"DE-0069","202.2899932861328","198.80999755859375","","2003-11-07T00:00:00Z","","3.4800000190734863" +"NM-12516","-83.01000213623047","-83.01000213623047","","1911-09-30T00:00:00Z","","0" +"EB-262","149.8300018310547","149.8300018310547","","2004-02-09T00:00:00Z","","0" +"NM-00343","76.77999877929688","76.77999877929688","","1985-01-08T00:00:00Z","","0" +"NM-21545","12.59000015258789","12.59000015258789","Z","2004-06-18T00:00:00Z","","0" +"EB-269","146.39999389648438","146.39999389648438","","2013-08-29T00:00:00Z","","" +"NM-01806","311.17999267578125","311.17999267578125","","2011-07-06T00:00:00Z","","0" +"NM-28251","61.380001068115234","61.380001068115234","","1999-02-15T00:00:00Z","","0" +"SV-0101","76.5","75.5","","2018-08-04T00:00:00Z","","1" +"NM-02520","6.400000095367432","6.400000095367432","","1988-02-15T00:00:00Z","","0" +"NM-02215","162.55999755859375","162.55999755859375","","1976-01-06T00:00:00Z","","0" +"NM-02527","11.800000190734863","11.800000190734863","","1972-03-15T00:00:00Z","","0" +"BC-0027","440.1499938964844","440.1499938964844","","2011-12-16T00:00:00Z","","0" +"NM-03193","72.9800033569336","72.9800033569336","","1954-11-04T00:00:00Z","","0" +"NM-12195","95.55000305175781","95.55000305175781","","1953-01-23T00:00:00Z","","0" +"BC-0300","","144.39999389648438","","2021-03-09T00:00:00Z","","1.7999999523162842" +"SB-0299","157.75","157.75","","2019-09-20T00:00:00Z","","0" +"NM-02229","127.06999969482422","127.06999969482422","","1959-01-20T00:00:00Z","","0" +"NM-11536","194.49000549316406","194.49000549316406","","1968-12-03T00:00:00Z","","0" +"NM-00005","265","265","","1968-06-27T00:00:00Z","","0" +"BC-0199","37.849998474121094","37.849998474121094","","2019-04-16T00:00:00Z","","0" +"DE-0093","90.73999786376953","90.73999786376953","","2013-12-18T00:00:00Z","","0" +"NM-10215","50.689998626708984","50.689998626708984","","1940-05-22T00:00:00Z","","0" +"NM-14070","-7.639999866485596","-7.639999866485596","","1907-12-03T00:00:00Z","","0" +"NM-02198","35.84000015258789","35.84000015258789","","2015-11-19T00:00:00Z","","0" +"ED-0225","38.900001525878906","38.900001525878906","","1948-08-09T00:00:00Z","","0" +"NM-11795","37.459999084472656","37.459999084472656","","1949-11-18T00:00:00Z","","0" +"BC-0093","157.89999389648438","157.89999389648438","","2018-09-12T00:00:00Z","","0" +"NM-03461","69.69999694824219","69.69999694824219","","1988-03-31T00:00:00Z","","0" +"SO-0210","27.43000030517578","26.780000686645508","","2020-10-02T00:00:00Z","","0.6499999761581421" +"AB-0102","576.9099731445312","576.9099731445312","","2007-06-06T00:00:00Z","","" +"NM-12165","31.149999618530273","31.149999618530273","","1959-01-13T00:00:00Z","","0" +"NM-00221","","","O","2013-01-11T00:00:00Z","","0" +"NM-00344","248.3000030517578","248.3000030517578","","1978-01-18T00:00:00Z","","0" +"NM-23365","7","7","","1957-05-01T00:00:00Z","","0" +"NM-02217","29.899999618530273","29.899999618530273","","1949-03-23T00:00:00Z","","0" +"NM-02591","15.199999809265137","15.199999809265137","","1969-01-15T00:00:00Z","","0" +"NM-23336","112.54000091552734","112.54000091552734","","1957-08-01T00:00:00Z","","0" +"NM-09343","-3.309999942779541","-3.309999942779541","","1926-12-01T00:00:00Z","","0" +"NM-01985","5.199999809265137","5.199999809265137","","1949-06-15T00:00:00Z","","0" +"NM-15774","103.47000122070312","103.47000122070312","","1985-01-23T00:00:00Z","","0" +"NM-02076","117.94999694824219","117.94999694824219","","1971-01-21T00:00:00Z","","0" +"SB-0288","102.02999877929688","102.02999877929688","","1962-10-25T00:00:00Z","","0" +"NM-01868","9.399999618530273","9.399999618530273","","1963-07-15T00:00:00Z","","0" +"NM-07974","60.459999084472656","60.459999084472656","","1939-01-10T00:00:00Z","","0" +"EB-235","57.400001525878906","57.400001525878906","","1978-12-13T00:00:00Z","","0" +"NM-02391","50.70000076293945","50.70000076293945","","1955-02-02T00:00:00Z","","0" +"NM-25173","381.6499938964844","381.6499938964844","","1986-04-23T00:00:00Z","","0" +"AB-0039","348.6400146484375","348.6400146484375","","1996-10-31T00:00:00Z","","" +"DE-0108","42.189998626708984","42.189998626708984","","2012-02-23T00:00:00Z","","0" +"NM-09004","73.58999633789062","73.58999633789062","","1959-08-07T00:00:00Z","","0" +"NM-06389","53.099998474121094","53.099998474121094","","1976-01-15T00:00:00Z","","0" +"NM-17371","39.349998474121094","39.349998474121094","","1934-05-08T00:00:00Z","","0" +"NM-01812","","","D","1999-01-07T00:00:00Z","","0" +"NM-13108","-11.109999656677246","-11.109999656677246","","1911-05-24T00:00:00Z","","0" +"NM-17715","6.429999828338623","6.429999828338623","","1947-05-29T00:00:00Z","","0" +"NM-10839","11.770000457763672","11.770000457763672","","1947-01-23T00:00:00Z","","0" +"NM-12833","6.869999885559082","6.869999885559082","","1958-10-20T00:00:00Z","","0" +"NM-12009","19.229999542236328","19.229999542236328","","1939-01-24T00:00:00Z","","0" +"NM-17716","4.96999979019165","4.96999979019165","","1949-09-15T00:00:00Z","","0" +"NM-16763","11.069999694824219","11.069999694824219","","1939-09-21T00:00:00Z","","0" +"NM-17417","67.73999786376953","67.73999786376953","","1962-01-16T00:00:00Z","","0" +"NM-01054","62.06999969482422","62.06999969482422","","2014-02-12T00:00:00Z","","0" +"NM-02300","167.1699981689453","167.1699981689453","","2001-03-06T00:00:00Z","","0" +"NM-17704","46.93000030517578","46.93000030517578","","1959-01-06T00:00:00Z","","0" +"NM-02384","6.099999904632568","6.099999904632568","","1949-09-15T00:00:00Z","","0" +"NM-11795","35.77000045776367","35.77000045776367","","1945-09-24T00:00:00Z","","0" +"NM-03345","101.9000015258789","101.9000015258789","P","1956-08-07T00:00:00Z","","0" +"EB-220","127.0999984741211","127.0999984741211","","1979-08-10T00:00:00Z","","0" +"NM-14579","46.779998779296875","46.779998779296875","","1986-04-10T00:00:00Z","","0" +"NM-14802","105.12999725341797","105.12999725341797","","1972-04-25T00:00:00Z","","0" +"NM-13594","8.6899995803833","8.6899995803833","","1958-10-23T00:00:00Z","","0" +"HS-093","1.590000033378601","1.590000033378601","","1939-03-28T00:00:00Z","","0" +"NM-01575","83.58000183105469","83.58000183105469","","1993-08-12T00:00:00Z","","0" +"DE-0363","56.5","54.08000183105469","","2013-05-20T00:00:00Z","","2.4200000762939453" +"NM-10991","186.74000549316406","186.74000549316406","","1966-02-09T00:00:00Z","","0" +"NM-13135","11.130000114440918","11.130000114440918","","1959-02-05T00:00:00Z","","0" +"EB-235","53.70000076293945","53.70000076293945","","1979-09-15T00:00:00Z","","0" +"NM-05976","78","78","","1965-01-12T00:00:00Z","","0" +"NM-13404","-73.19000244140625","-73.19000244140625","","1926-10-14T00:00:00Z","","0" +"NM-00643","108.93000030517578","108.93000030517578","","1984-05-01T00:00:00Z","","0" +"NM-01985","9.399999618530273","9.399999618530273","","1973-11-15T00:00:00Z","","0" +"NM-01048","280.2300109863281","280.2300109863281","","1982-01-13T00:00:00Z","","0" +"NM-02833","29.899999618530273","29.899999618530273","","1961-01-04T00:00:00Z","","0" +"NM-10090","93.68000030517578","93.68000030517578","","1952-01-12T00:00:00Z","","0" +"NM-28011","494.9100036621094","494.9100036621094","S","2015-06-01T00:00:00Z","","0" +"EB-271","48.810001373291016","48.810001373291016","","1998-02-13T00:00:00Z","","0" +"NM-13887","5.5","5.5","","1957-08-08T00:00:00Z","","0" +"EB-269","7.21999979019165","7.21999979019165","","2015-11-25T00:00:00Z","","0" +"NM-01986","5.400000095367432","5.400000095367432","","1984-07-15T00:00:00Z","","0" +"NM-21692","159.55999755859375","159.55999755859375","","2008-10-30T00:00:00Z","","0" +"NM-06029","29.299999237060547","29.299999237060547","","1957-07-24T00:00:00Z","","0" +"NM-13274","-27.56999969482422","-27.56999969482422","","1907-12-07T00:00:00Z","","0" +"NM-00955","347.6700134277344","347.6700134277344","","2011-04-14T00:00:00Z","","0" +"NM-28015","498.6600036621094","498.6600036621094","S","2015-05-15T00:00:00Z","","0" +"AB-0101","697.9099731445312","697.9099731445312","","2015-03-17T00:00:00Z","","0" +"NM-14631","48.68000030517578","48.68000030517578","","1958-01-21T00:00:00Z","","0" +"NM-08904","","","D","2012-05-17T00:00:00Z","","0" +"NM-23001","5.519999980926514","5.519999980926514","Z","2009-03-03T00:00:00Z","","0" +"NM-28252","64.30000305175781","64.30000305175781","","1971-08-25T00:00:00Z","","0" +"SO-0230","9.449999809265137","7.710000038146973","","2019-09-29T00:00:00Z","0001-01-01T12:23:00Z","1.7400000095367432" +"NM-10732","27.350000381469727","27.350000381469727","","1942-01-19T00:00:00Z","","0" +"NM-22485","270.25","270.25","","1984-03-29T00:00:00Z","","0" +"NM-00394","70.43000030517578","70.43000030517578","","1999-01-22T00:00:00Z","","0" +"NM-01791","310.7900085449219","310.7900085449219","","1991-09-20T00:00:00Z","","0" +"NM-16972","44.060001373291016","44.060001373291016","","1955-01-19T00:00:00Z","","0" +"EB-483","48.9900016784668","48.9900016784668","","1982-05-25T00:00:00Z","","" +"NM-28252","48.290000915527344","48.290000915527344","","1987-10-15T00:00:00Z","","0" +"QY-0578","23.200000762939453","23.200000762939453","","1956-01-10T00:00:00Z","","0" +"NM-01987","10.0600004196167","10.0600004196167","","1985-02-01T00:00:00Z","","0" +"DE-0111","33.65999984741211","33.65999984741211","","2005-09-29T00:00:00Z","","0" +"NM-02757","18.34000015258789","18.34000015258789","","1960-03-24T00:00:00Z","","0" +"NM-03399","10.539999961853027","10.539999961853027","","1989-09-27T00:00:00Z","","0" +"NM-04133","102.26000213623047","102.26000213623047","","1956-02-21T00:00:00Z","","0" +"NM-14780","93.16999816894531","93.16999816894531","","1989-11-30T00:00:00Z","","0" +"NM-23010","344.1600036621094","344.1600036621094","S","1989-11-01T00:00:00Z","","0" +"NM-01987","11.289999961853027","11.289999961853027","","2005-01-25T00:00:00Z","","0" +"NM-04659","62.060001373291016","62.060001373291016","","1952-01-24T00:00:00Z","","0" +"UC-0033","92.91999816894531","92.91999816894531","","1987-08-19T00:00:00Z","","0" +"NM-00361","0","0","","2014-01-13T00:00:00Z","","0" +"NM-06443","256.4800109863281","256.4800109863281","","1962-01-15T00:00:00Z","","0" +"NM-22187","415.0799865722656","415.0799865722656","","2014-06-18T00:00:00Z","","0" +"DE-0090","91.52999877929688","91.52999877929688","","2000-07-11T00:00:00Z","","0" +"NM-03903","330.5","330.5","","1975-07-05T00:00:00Z","","0" +"NM-02797","4.119999885559082","4.119999885559082","","1970-01-20T00:00:00Z","","0" +"NM-02768","110.27999877929688","110.27999877929688","","1961-01-11T00:00:00Z","","0" +"DE-0183","51.58000183105469","51.58000183105469","","2005-12-01T00:00:00Z","","0" +"NM-27546","34.400001525878906","34.400001525878906","","1987-03-11T00:00:00Z","","0" +"NM-16364","72.19000244140625","72.19000244140625","","1994-02-03T00:00:00Z","","0" +"NM-02394","69.62999725341797","69.62999725341797","","1934-02-04T00:00:00Z","","0" +"UC-0134","7.989999771118164","7.989999771118164","","1977-01-27T00:00:00Z","","0" +"NM-01402","545.9000244140625","545.9000244140625","","2004-03-02T00:00:00Z","","0" +"NM-02352","8.5","8.5","","1971-08-15T00:00:00Z","","0" +"NM-02710","30.059999465942383","30.059999465942383","","1979-07-19T00:00:00Z","","0" +"NM-19637","34.36000061035156","34.36000061035156","","1958-02-10T00:00:00Z","","0" +"NM-24220","11.010000228881836","11.010000228881836","","2011-06-30T00:00:00Z","","0" +"NM-00543","55.790000915527344","55.790000915527344","","1991-01-04T00:00:00Z","","0" +"NM-13425","396.8299865722656","396.8299865722656","","1982-08-01T00:00:00Z","","0" +"NM-00857","11.25","11.25","","2015-01-27T00:00:00Z","","0" +"NM-28257","56.29999923706055","56.29999923706055","","1956-03-25T00:00:00Z","","0" +"NM-01292","22.780000686645508","22.780000686645508","","1975-07-09T00:00:00Z","","0" +"DE-0347","70","66.9800033569336","","2014-05-14T00:00:00Z","","3.0199999809265137" +"NM-01872","9.600000381469727","9.600000381469727","","1961-10-15T00:00:00Z","","0" +"NM-01278","114.3499984741211","114.3499984741211","","1956-02-07T00:00:00Z","","0" +"NM-01204","349.989990234375","349.989990234375","","1989-03-14T00:00:00Z","","0" +"NM-17036","82.43000030517578","82.43000030517578","","1988-01-11T00:00:00Z","","0" +"NM-02349","14.699999809265137","14.699999809265137","","1974-12-15T00:00:00Z","","0" +"NM-02527","7.599999904632568","7.599999904632568","","2001-04-15T00:00:00Z","","0" +"DA-0161","362","362","","1966-01-01T00:00:00Z","","0" +"NM-12525","45.619998931884766","45.619998931884766","","1941-01-24T00:00:00Z","","0" +"NM-01251","79.87999725341797","79.87999725341797","","1955-04-15T00:00:00Z","","0" +"NM-12025","42.86000061035156","42.86000061035156","","1964-09-16T00:00:00Z","","0" +"NM-09730","24.709999084472656","24.709999084472656","","1955-01-13T00:00:00Z","","0" +"NM-17220","53.09000015258789","53.09000015258789","","1955-01-22T00:00:00Z","","0" +"NM-01841","255.55999755859375","255.55999755859375","","1981-01-20T00:00:00Z","","0" +"NM-16587","11.100000381469727","11.100000381469727","","1945-01-21T00:00:00Z","","0" +"NM-05417","138.00999450683594","138.00999450683594","P","1969-03-25T00:00:00Z","","0" +"NM-12660","34","34","","1942-02-08T00:00:00Z","","0" +"NM-12425","36.880001068115234","36.880001068115234","P","1967-01-03T00:00:00Z","","0" +"NM-01291","90.30999755859375","90.30999755859375","","2005-01-19T00:00:00Z","","0" +"NM-12371","90.58999633789062","90.58999633789062","R","1952-09-03T00:00:00Z","","0" +"NM-11263","42.02000045776367","42.02000045776367","","1937-02-18T00:00:00Z","","0" +"NM-06036","6.21999979019165","6.21999979019165","","1998-01-23T00:00:00Z","","0" +"NM-21500","210.14999389648438","210.14999389648438","","2010-05-27T00:00:00Z","","0" +"NM-10755","71.58000183105469","71.58000183105469","","1993-01-07T00:00:00Z","","0" +"NM-02743","125.08999633789062","125.08999633789062","","1984-01-24T00:00:00Z","","0" +"NM-13881","-7.929999828338623","-7.929999828338623","","1914-01-27T00:00:00Z","","0" +"NM-01204","357.6000061035156","357.6000061035156","","2006-10-04T00:00:00Z","","0" +"NM-00366","115.05999755859375","115.05999755859375","","2008-11-03T00:00:00Z","","0" +"SB-0244","70.26000213623047","70.26000213623047","","1967-01-30T00:00:00Z","","0" +"NM-28255","69.41000366210938","69.41000366210938","","1972-02-25T00:00:00Z","","0" +"NM-13546","44.040000915527344","44.040000915527344","","1996-01-23T00:00:00Z","","0" +"NM-02033","70.22000122070312","70.22000122070312","","1981-03-25T00:00:00Z","","0" +"NM-04383","7.769999980926514","7.769999980926514","","1976-01-16T00:00:00Z","","0" +"NM-28254","130.6300048828125","130.6300048828125","","1963-06-25T00:00:00Z","","0" +"NM-02856","27.479999542236328","27.479999542236328","","1981-02-11T00:00:00Z","","0" +"NM-01798","120.05000305175781","120.05000305175781","","1979-01-13T00:00:00Z","","0" +"NM-02576","54.060001373291016","54.060001373291016","P","1990-05-30T00:00:00Z","","0" +"NM-16781","38.16999816894531","38.16999816894531","","1985-01-14T00:00:00Z","","0" +"NM-04385","187.1699981689453","187.1699981689453","","1982-02-18T00:00:00Z","","0" +"NM-13594","7.53000020980835","7.53000020980835","","1957-01-28T00:00:00Z","","0" +"NM-28253","30.739999771118164","30.739999771118164","","1993-06-25T00:00:00Z","","0" +"DE-0243","99.83000183105469","99.83000183105469","","2003-08-19T00:00:00Z","","0" +"NM-02520","6.5","6.5","","1995-01-15T00:00:00Z","","0" +"NM-10755","76.33999633789062","76.33999633789062","","1984-01-05T00:00:00Z","","0" +"NM-22554","150","150","","1979-04-10T00:00:00Z","","0" +"NM-15044","459.2900085449219","459.2900085449219","","1973-11-01T00:00:00Z","","0" +"NM-16882","16.510000228881836","16.510000228881836","","1936-10-20T00:00:00Z","","0" +"NM-25270","114.44999694824219","114.44999694824219","","1975-01-22T00:00:00Z","","0" +"NM-17716","5.590000152587891","5.590000152587891","","1947-09-28T00:00:00Z","","0" +"NM-11070","30.729999542236328","30.729999542236328","","1948-01-20T00:00:00Z","","0" +"NM-12775","-63.369998931884766","-63.369998931884766","","1909-12-29T00:00:00Z","","0" +"NM-28024","479.3299865722656","479.3299865722656","S","2015-04-18T00:00:00Z","","0" +"NM-09014","111.29000091552734","111.29000091552734","","1981-03-12T00:00:00Z","","0" +"NM-02348","11.199999809265137","11.199999809265137","","1993-07-15T00:00:00Z","","0" +"NM-01770","44.90999984741211","44.90999984741211","","1955-09-09T00:00:00Z","","0" +"NM-02583","165.22000122070312","165.22000122070312","","1989-01-26T00:00:00Z","","0" +"EB-388","89.37000274658203","87.94000244140625","","2000-01-01T00:00:00Z","","1.4299999475479126" +"NM-03020","62.189998626708984","62.189998626708984","","1957-06-17T00:00:00Z","","0" +"NM-12374","8.699999809265137","8.699999809265137","","1946-01-30T00:00:00Z","","0" +"NM-03391","31.389999389648438","31.389999389648438","","2000-08-21T00:00:00Z","","0" +"NM-17183","30.299999237060547","30.299999237060547","","1946-05-27T00:00:00Z","","0" +"NM-00572","83.72000122070312","83.72000122070312","S","1984-01-06T00:00:00Z","","0" +"NM-12942","23.68000030517578","23.68000030517578","","1981-08-03T00:00:00Z","","0" +"NM-05813","122.43000030517578","122.43000030517578","","1996-02-28T00:00:00Z","","0" +"NM-03916","31.709999084472656","31.709999084472656","","1953-11-14T00:00:00Z","","0" +"NM-16833","40.09000015258789","40.09000015258789","","1957-09-19T00:00:00Z","","0" +"NM-14102","-9.65999984741211","-9.65999984741211","","1910-02-04T00:00:00Z","","0" +"NM-06700","19.030000686645508","19.030000686645508","","1992-01-24T00:00:00Z","","0" +"NM-10143","33.56999969482422","33.56999969482422","","1937-12-18T00:00:00Z","","0" +"NM-22466","129.10000610351562","129.10000610351562","R","1992-01-17T00:00:00Z","","0" +"NM-00185","12","12","","1974-02-15T00:00:00Z","","0" +"NM-03615","201.67999267578125","201.67999267578125","","1976-01-27T00:00:00Z","","0" +"NM-02101","","","D","1954-09-15T00:00:00Z","","0" +"NM-21254","4.380000114440918","4.380000114440918","Z","2006-12-12T00:00:00Z","","0" +"NM-17716","0.8100000023841858","0.8100000023841858","","1944-01-24T00:00:00Z","","0" +"NM-12298","11.5600004196167","11.5600004196167","","1942-02-02T00:00:00Z","","0" +"NM-24141","71.97000122070312","71.97000122070312","","1988-01-22T00:00:00Z","","0" +"NM-02772","62.0099983215332","62.0099983215332","","1985-03-15T00:00:00Z","","0" +"NM-28256","154.77000427246094","154.77000427246094","","1971-04-15T00:00:00Z","","0" +"DE-0327","27.979999542236328","27.979999542236328","","2012-12-13T00:00:00Z","","0" +"NM-17034","17.690000534057617","17.690000534057617","","1941-11-26T00:00:00Z","","0" +"NM-22098","47.720001220703125","47.720001220703125","","1958-08-19T00:00:00Z","","0" +"NM-28254","138.1999969482422","138.1999969482422","","2010-08-05T00:00:00Z","","0" +"NM-00367","129.27999877929688","129.27999877929688","","1968-07-01T00:00:00Z","","0" +"WL-0091","36.91666793823242","34.14666748046875","","1996-02-29T00:00:00Z","","2.7699999809265137" +"AB-0113","221.6699981689453","221.6699981689453","","1999-07-14T00:00:00Z","","" +"NM-06212","14.989999771118164","14.989999771118164","","1982-10-12T00:00:00Z","","0" +"NM-07275","10.199999809265137","10.199999809265137","","1953-09-15T00:00:00Z","","0" +"NM-05285","71.45999908447266","71.45999908447266","","1976-01-20T00:00:00Z","","0" +"NM-05554","110.9800033569336","110.9800033569336","S","1955-03-16T00:00:00Z","","0" +"NM-04925","36.150001525878906","36.150001525878906","","1954-03-26T00:00:00Z","","0" +"NM-10071","39.900001525878906","39.900001525878906","","1940-01-10T00:00:00Z","","0" +"DE-0113","38.650001525878906","38.650001525878906","","2004-07-20T00:00:00Z","","0" +"NM-27547","74.01000213623047","74.01000213623047","","1976-01-06T00:00:00Z","","0" +"SA-0045","128.22000122070312","128.22000122070312","","1991-02-26T00:00:00Z","","0" +"TV-274","88.20999908447266","86.05999755859375","","2005-01-19T00:00:00Z","","2.1500000953674316" +"NM-28254","48.5","48.5","","2003-10-15T00:00:00Z","","0" +"NM-24404","63.810001373291016","63.810001373291016","","1973-06-07T00:00:00Z","","0" +"NM-17918","26.690000534057617","26.690000534057617","","1956-05-28T00:00:00Z","","0" +"NM-28251","93.25","93.25","","1974-05-25T00:00:00Z","","0" +"NM-03126","9.350000381469727","9.350000381469727","","2014-03-06T00:00:00Z","","0" +"AB-0100","719.219970703125","719.219970703125","","2010-10-05T00:00:00Z","","" +"NM-05634","22.93000030517578","22.93000030517578","S","1943-07-10T00:00:00Z","","0" +"SD-0248","94","94","","1962-07-25T00:00:00Z","","0" +"NM-15812","89.30000305175781","89.30000305175781","","1980-01-08T00:00:00Z","","0" +"NM-22965","767.9000244140625","767.9000244140625","","1989-08-30T00:00:00Z","","0" +"DE-0108","40.40999984741211","40.40999984741211","","2008-08-18T00:00:00Z","","0" +"NM-14200","41.20000076293945","41.20000076293945","","1984-02-03T00:00:00Z","","0" +"NM-02797","3.190000057220459","3.190000057220459","","1980-03-21T00:00:00Z","","0" +"NM-20118","87.37000274658203","87.37000274658203","","1977-02-23T00:00:00Z","","0" +"NM-19588","54.66999816894531","54.66999816894531","","1943-06-17T00:00:00Z","","0" +"NM-03595","108.05999755859375","108.05999755859375","","1981-02-14T00:00:00Z","","0" +"NM-28252","59.880001068115234","59.880001068115234","","1973-11-05T00:00:00Z","","0" +"NM-17716","4.659999847412109","4.659999847412109","","1948-04-17T00:00:00Z","","0" +"NM-01985","11.399999618530273","11.399999618530273","","2002-04-15T00:00:00Z","","0" +"NM-28251","69.26000213623047","69.26000213623047","","2007-05-25T00:00:00Z","","0" +"NM-14004","-84.16000366210938","-84.16000366210938","","1906-09-09T00:00:00Z","","0" +"TV-137","8.579999923706055","8.180000305175781","R","2011-06-02T00:00:00Z","","0.4000000059604645" +"NM-17019","43.84000015258789","43.84000015258789","","1971-12-16T00:00:00Z","","0" +"NM-21500","217.77999877929688","217.77999877929688","","2003-11-17T00:00:00Z","","0" +"NM-02101","8.600000381469727","8.600000381469727","","2000-01-15T00:00:00Z","","0" +"NM-02348","14","14","","2002-06-15T00:00:00Z","","0" +"NM-18940","78.27999877929688","78.27999877929688","","1974-08-14T00:00:00Z","","0" +"NM-17756","160","160","","1993-11-05T00:00:00Z","","0" +"NM-00643","101.8499984741211","101.8499984741211","Z","1997-09-19T00:00:00Z","","0" +"NM-22376","83.44000244140625","83.44000244140625","","1953-02-05T00:00:00Z","","0" +"NM-04969","138","138","P","1965-08-23T00:00:00Z","","0" +"NM-01892","13.569999694824219","13.569999694824219","","1997-07-09T00:00:00Z","","0" +"AB-0107","422.6700134277344","422.6700134277344","","2010-02-08T00:00:00Z","","" +"NM-28255","22.809999465942383","22.809999465942383","","1982-01-05T00:00:00Z","","0" +"NM-28259","172.2100067138672","172.2100067138672","","1977-08-15T00:00:00Z","","0" +"NM-19040","373.04998779296875","373.04998779296875","","1987-01-27T00:00:00Z","","0" +"NM-06797","63.9900016784668","63.9900016784668","P","1951-08-01T00:00:00Z","","0" +"NM-02702","61.650001525878906","61.650001525878906","","1982-08-01T00:00:00Z","","0" +"NM-01899","77.04000091552734","77.04000091552734","","2008-01-18T00:00:00Z","","0" +"NM-02391","48.189998626708984","48.189998626708984","","1954-03-10T00:00:00Z","","0" +"NM-02686","12.149999618530273","12.149999618530273","","1986-01-07T00:00:00Z","","0" +"RA-024","43.9900016784668","42.189998626708984","AA","2023-09-18T00:00:00Z","0001-01-01T12:59:00Z","1.7999999523162842" +"AB-0093","493.0899963378906","493.0899963378906","","2003-12-02T00:00:00Z","","" +"NM-01894","43.560001373291016","43.560001373291016","","1993-05-20T00:00:00Z","","0" +"NM-03008","141.1699981689453","141.1699981689453","","1986-01-11T00:00:00Z","","0" +"NM-07512","22.6200008392334","22.6200008392334","","1957-01-03T00:00:00Z","","0" +"NM-24935","15.729999542236328","15.729999542236328","","1982-05-24T00:00:00Z","","0" +"DE-0242","110.08000183105469","110.08000183105469","","2006-05-09T00:00:00Z","","0" +"NM-17905","78.05000305175781","78.05000305175781","","1982-03-30T00:00:00Z","","0" +"NM-05921","52.63999938964844","52.63999938964844","","1939-03-16T00:00:00Z","","0" +"NM-10832","-24.100000381469727","-24.100000381469727","","1909-09-27T00:00:00Z","","0" +"NM-13750","-11.930000305175781","-11.930000305175781","","1907-01-02T00:00:00Z","","0" +"NM-03024","85.69999694824219","85.69999694824219","","1997-01-17T00:00:00Z","","0" +"NM-22534","106.5199966430664","106.5199966430664","","1953-05-24T00:00:00Z","","0" +"EB-356","244.3000030517578","242.3000030517578","","2006-05-02T00:00:00Z","","2" +"NM-12081","17.860000610351562","17.860000610351562","","1946-01-25T00:00:00Z","","0" +"NM-00202","56","56","","1999-01-21T00:00:00Z","","0" +"NM-28253","24.239999771118164","24.239999771118164","","2017-10-25T00:00:00Z","","0" +"NM-05309","9.800000190734863","9.800000190734863","","1973-09-15T00:00:00Z","","0" +"NM-09289","90.13999938964844","90.13999938964844","","1954-11-09T00:00:00Z","","0" +"NM-01314","368.07000732421875","368.07000732421875","","2006-05-05T00:00:00Z","","0" +"WL-0088","64.54166412353516","61.94166564941406","","1999-10-19T00:00:00Z","","2.5999999046325684" +"NM-07401","124.88999938964844","124.88999938964844","","1977-01-31T00:00:00Z","","0" +"NM-28095","780","780","P","1988-02-15T00:00:00Z","","0" +"NM-12852","248.1300048828125","248.1300048828125","","1981-02-12T00:00:00Z","","0" +"NM-00185","13.5","13.5","","1991-12-15T00:00:00Z","","0" +"NM-03400","10.800000190734863","10.800000190734863","","1990-07-03T00:00:00Z","","0" +"EB-235","52.41999816894531","52.41999816894531","","1980-06-03T00:00:00Z","","0" +"NM-17398","18.770000457763672","18.770000457763672","","1945-07-31T00:00:00Z","","0" +"NM-00185","12.600000381469727","12.600000381469727","","1980-02-15T00:00:00Z","","0" +"WL-0089","56.29166793823242","53.741668701171875","","1998-04-16T00:00:00Z","","2.549999952316284" +"NM-02772","24.649999618530273","24.649999618530273","","1978-01-25T00:00:00Z","","0" +"NM-00480","51.02000045776367","51.02000045776367","","1954-11-10T00:00:00Z","","0" +"NM-02510","86.4800033569336","86.4800033569336","","1993-07-01T00:00:00Z","","0" +"NM-08093","16.530000686645508","16.530000686645508","","1946-01-31T00:00:00Z","","0" +"NM-08246","22.229999542236328","22.229999542236328","","1939-02-03T00:00:00Z","","0" +"NM-03723","66.11000061035156","66.11000061035156","","1971-01-12T00:00:00Z","","0" +"NM-01898","94","94","","2014-09-10T00:00:00Z","","0" +"MI-0228","45.869998931884766","45.869998931884766","","1947-10-01T00:00:00Z","","0" +"NM-01872","8","8","","1997-03-15T00:00:00Z","","0" +"NM-11405","80.80000305175781","80.80000305175781","","1954-01-19T00:00:00Z","","0" +"EB-163","691.4000244140625","690.2000122070312","","2008-08-31T00:00:00Z","","1.2000000476837158" +"NM-13135","4.389999866485596","4.389999866485596","","1978-07-12T00:00:00Z","","0" +"NM-08308","24.850000381469727","24.850000381469727","","1949-11-08T00:00:00Z","","0" +"NM-00522","57.310001373291016","57.310001373291016","","1962-01-19T00:00:00Z","","0" +"NM-04186","23.700000762939453","23.700000762939453","","1945-07-18T00:00:00Z","","0" +"DE-0240","107.37000274658203","107.37000274658203","","2006-08-23T00:00:00Z","","0" +"NM-16247","60","60","","1984-07-27T00:00:00Z","","0" +"NM-07133","67.25","67.25","","2004-07-09T00:00:00Z","","0" +"NM-10187","23.93000030517578","23.93000030517578","","1964-01-09T00:00:00Z","","0" +"NM-12076","-17.170000076293945","-17.170000076293945","","1910-10-13T00:00:00Z","","0" +"NM-06800","129","129","","1968-02-17T00:00:00Z","","0" +"AB-0124","541.5","541.5","","1998-01-30T00:00:00Z","","" +"NM-01268","500.67999267578125","500.67999267578125","T","1985-03-07T00:00:00Z","","0" +"NM-12490","83.44000244140625","83.44000244140625","","1963-09-30T00:00:00Z","","0" +"NM-24711","261.8500061035156","261.8500061035156","","1953-01-16T00:00:00Z","","0" +"NM-10572","15.630000114440918","15.630000114440918","","1940-01-13T00:00:00Z","","0" +"NM-10071","41.560001373291016","41.560001373291016","","1943-01-25T00:00:00Z","","0" +"NM-02207","10.199999809265137","10.199999809265137","","1961-05-15T00:00:00Z","","0" +"NM-03376","28.079999923706055","28.079999923706055","","1990-07-02T00:00:00Z","","0" +"NM-03393","51.400001525878906","51.400001525878906","","1975-01-17T00:00:00Z","","0" +"NM-13945","-8.510000228881836","-8.510000228881836","","1910-12-19T00:00:00Z","","0" +"SB-0299","143.17999267578125","143.17999267578125","","2015-05-10T00:00:00Z","","0" +"EB-276","169.9199981689453","169.9199981689453","","1970-05-11T00:00:00Z","","0" +"NM-28257","50.939998626708984","50.939998626708984","","1971-08-05T00:00:00Z","","0" +"NM-16951","39.720001220703125","39.720001220703125","","1950-05-24T00:00:00Z","","0" +"NM-28156","16.010000228881836","16.010000228881836","R","1954-03-18T00:00:00Z","","0" +"NM-28253","18.84000015258789","18.84000015258789","","2006-09-15T00:00:00Z","","0" +"NM-28252","42.29999923706055","42.29999923706055","","2000-08-25T00:00:00Z","","0" +"NM-02004","9.399999618530273","9.399999618530273","","1981-10-15T00:00:00Z","","0" +"NM-02732","109.5","109.5","P","1956-03-27T00:00:00Z","","0" +"NM-09392","31.700000762939453","31.700000762939453","","1949-01-06T00:00:00Z","","0" +"UC-0035","97.58000183105469","97.58000183105469","","1999-02-22T00:00:00Z","","0" +"TV-217","276.7200012207031","276.1199951171875","","2011-12-15T00:00:00Z","","0.6000000238418579" +"NM-14151","247.60000610351562","247.60000610351562","","1940-04-19T00:00:00Z","","0" +"NM-03285","35.04999923706055","35.04999923706055","","1973-02-27T00:00:00Z","","0" +"NM-15445","317.70001220703125","317.70001220703125","","1956-04-17T00:00:00Z","","0" +"NM-03939","71.41000366210938","71.41000366210938","","1960-01-22T00:00:00Z","","0" +"NM-00676","60.81999969482422","60.81999969482422","","2012-09-26T00:00:00Z","","0" +"NM-03349","28.139999389648438","28.139999389648438","","2012-10-16T00:00:00Z","","0" +"NM-02757","18.799999237060547","18.799999237060547","","1991-01-24T00:00:00Z","","0" +"NM-11578","26.229999542236328","26.229999542236328","","1935-12-16T00:00:00Z","","0" +"NM-01985","9","9","","1984-12-15T00:00:00Z","","0" +"NM-28019","478.69000244140625","478.69000244140625","S","2015-04-26T00:00:00Z","","0" +"NM-02393","68.45999908447266","68.45999908447266","","1947-05-20T00:00:00Z","","0" +"NM-01251","86.83999633789062","86.83999633789062","","1956-08-01T00:00:00Z","","0" +"NM-14359","41.38999938964844","41.38999938964844","","1948-03-09T00:00:00Z","","0" +"NM-06797","63.880001068115234","63.880001068115234","P","1951-07-23T00:00:00Z","","0" +"DE-0110","40.41999816894531","40.41999816894531","","2010-07-13T00:00:00Z","","0" +"NM-10736","11.170000076293945","11.170000076293945","","1952-07-11T00:00:00Z","","0" +"NM-14293","5.900000095367432","5.900000095367432","","1959-02-11T00:00:00Z","","0" +"NM-02876","44.130001068115234","44.130001068115234","","1986-01-20T00:00:00Z","","0" +"NM-02043","5.199999809265137","5.199999809265137","","1969-06-15T00:00:00Z","","0" +"WL-0090","42.20833206176758","39.828330993652344","","1987-01-29T00:00:00Z","","2.380000114440918" +"NM-13180","36.5","36.5","","1974-01-08T00:00:00Z","","0" +"NM-08940","11.069999694824219","11.069999694824219","","1957-09-10T00:00:00Z","","0" +"NM-02393","59.439998626708984","59.439998626708984","","1931-08-25T00:00:00Z","","0" +"NM-01796","4.599999904632568","4.599999904632568","","1976-04-15T00:00:00Z","","0" +"NM-21535","8","8","X","1997-02-14T00:00:00Z","","0" +"NM-00243","81.8499984741211","81.8499984741211","","1970-12-03T00:00:00Z","","0" +"NM-02195","119.3499984741211","119.3499984741211","","1986-01-13T00:00:00Z","","0" +"NM-03451","6.639999866485596","6.639999866485596","","1993-04-07T00:00:00Z","","0" +"NM-05773","15.539999961853027","15.539999961853027","","1948-11-23T00:00:00Z","","0" +"NM-00368","12.710000038146973","12.710000038146973","","1976-01-14T00:00:00Z","","0" +"NM-17548","19.190000534057617","19.190000534057617","","1959-09-22T00:00:00Z","","0" +"NM-00212","94.56999969482422","94.56999969482422","","1961-01-10T00:00:00Z","","0" +"NM-24338","52.310001373291016","52.310001373291016","","1975-04-03T00:00:00Z","","0" +"NM-02794","62.13999938964844","62.13999938964844","","1954-01-28T00:00:00Z","","0" +"UC-0033","121","121","","2011-08-13T00:00:00Z","","0" +"NM-28252","19.1200008392334","19.1200008392334","","1949-07-25T00:00:00Z","","0" +"NM-03512","77.77999877929688","77.77999877929688","","1998-03-03T00:00:00Z","","0" +"DE-0195","50.459999084472656","50.459999084472656","","2006-12-14T00:00:00Z","","0" +"NM-04641","56.900001525878906","56.900001525878906","","1980-01-14T00:00:00Z","","0" +"SB-0299","144.4499969482422","144.4499969482422","","2009-09-25T00:00:00Z","","0" +"NM-07152","93.58999633789062","93.58999633789062","","2005-01-21T00:00:00Z","","0" +"NM-02794","39.650001525878906","39.650001525878906","","1937-05-25T00:00:00Z","","0" +"NM-02447","","","O","2007-02-07T00:00:00Z","","0" +"NM-28252","70.61000061035156","70.61000061035156","","1975-08-25T00:00:00Z","","0" +"NM-00724","464.57000732421875","464.57000732421875","","2008-06-19T00:00:00Z","","0" +"NM-03014","84.7300033569336","84.7300033569336","","1990-01-10T00:00:00Z","","0" +"NM-28256","80.43000030517578","80.43000030517578","","2002-12-26T00:00:00Z","","0" +"NM-13164","-24.100000381469727","-24.100000381469727","","1912-05-22T00:00:00Z","","0" +"NM-03421","46.88999938964844","46.88999938964844","","2002-09-16T00:00:00Z","","0" +"NM-05094","84.26000213623047","84.26000213623047","","1956-11-09T00:00:00Z","","0" +"NM-12464","47.810001373291016","47.810001373291016","","1971-03-05T00:00:00Z","","0" +"NM-27327","13.399999618530273","13.399999618530273","","1977-01-13T00:00:00Z","","0" +"NM-01295","101.73999786376953","101.73999786376953","","1947-06-05T00:00:00Z","","0" +"NM-13888","2.6700000762939453","2.6700000762939453","","1960-10-31T00:00:00Z","","0" +"NM-17716","2.6500000953674316","2.6500000953674316","","1944-09-08T00:00:00Z","","0" +"NM-20689","25.8799991607666","25.8799991607666","","1947-02-19T00:00:00Z","","0" +"NM-19969","64.69999694824219","64.69999694824219","","1955-09-14T00:00:00Z","","0" +"NM-02878","50.20000076293945","50.20000076293945","","2001-02-02T00:00:00Z","","0" +"NM-01995","62.16999816894531","62.16999816894531","P","1948-05-23T00:00:00Z","","0" +"NM-08783","116.61000061035156","116.61000061035156","","1947-03-18T00:00:00Z","","0" +"NM-28018","486.510009765625","486.510009765625","S","2015-03-19T00:00:00Z","","0" +"DE-0108","42.79999923706055","42.79999923706055","","2011-08-11T00:00:00Z","","0" +"NM-12405","27.8799991607666","27.8799991607666","","1957-11-21T00:00:00Z","","0" +"NM-12751","130","130","","1956-05-08T00:00:00Z","","0" +"WL-0086","52.79166793823242","51.03166961669922","","1997-04-16T00:00:00Z","","1.7599999904632568" +"NM-28023","485.9599914550781","485.9599914550781","S","2015-04-24T00:00:00Z","","0" +"NM-01955","5.599999904632568","5.599999904632568","","1948-09-15T00:00:00Z","","0" +"NM-01614","360.7900085449219","360.7900085449219","","1986-12-01T00:00:00Z","","0" +"NM-13246","73.68000030517578","73.68000030517578","","1940-09-01T00:00:00Z","","0" +"EB-012","171.5","171.5","","1985-10-31T00:00:00Z","","0" +"NM-04401","205.75","205.75","","1965-10-14T00:00:00Z","","0" +"NM-28252","22.25","22.25","","1947-08-15T00:00:00Z","","0" +"NM-11519","57.40999984741211","57.40999984741211","","1976-04-13T00:00:00Z","","0" +"NM-01785","324.5799865722656","324.5799865722656","","2004-02-10T00:00:00Z","","0" +"NM-02002","106.80000305175781","106.80000305175781","","1981-01-05T00:00:00Z","","0" +"DE-0069","207.19000244140625","203.7100067138672","","2005-04-19T00:00:00Z","","3.4800000190734863" +"NM-02998","16","16","","1950-07-26T00:00:00Z","","0" +"NM-05121","105.98999786376953","105.98999786376953","","1959-01-27T00:00:00Z","","0" +"NM-10756","44.099998474121094","44.099998474121094","","1944-01-14T00:00:00Z","","0" +"NM-28253","40.599998474121094","40.599998474121094","","1970-05-15T00:00:00Z","","0" +"NM-25002","44.75","44.75","","1947-02-09T00:00:00Z","","0" +"NM-03903","330","330","","1974-08-31T00:00:00Z","","0" +"NM-08541","302.70001220703125","302.70001220703125","","1956-02-20T00:00:00Z","","0" +"NM-11900","16.700000762939453","16.700000762939453","","1949-01-26T00:00:00Z","","0" +"NM-20008","49.40999984741211","49.40999984741211","","1995-03-28T00:00:00Z","","0" +"NM-13717","8.579999923706055","8.579999923706055","","1954-02-01T00:00:00Z","","0" +"NM-04873","108.2699966430664","108.2699966430664","S","1968-02-19T00:00:00Z","","0" +"NM-28250","86.62999725341797","86.62999725341797","","2009-03-05T00:00:00Z","","0" +"NM-00366","129.1999969482422","129.1999969482422","","1965-11-01T00:00:00Z","","0" +"NM-06812","38.70000076293945","38.70000076293945","","1955-05-26T00:00:00Z","","0" +"NM-13162","10.399999618530273","10.399999618530273","","1952-01-04T00:00:00Z","","0" +"NM-17933","170.6199951171875","170.6199951171875","","1972-02-01T00:00:00Z","","0" +"NM-10635","29.3799991607666","29.3799991607666","","1939-05-11T00:00:00Z","","0" +"QU-071","26.299999237060547","23.53999900817871","","2013-10-23T00:00:00Z","","2.759999990463257" +"BC-0198","338.0799865722656","338.0799865722656","","2019-07-25T00:00:00Z","","0" +"NM-21312","87.75","87.75","","2006-10-02T00:00:00Z","","0" +"NM-02209","108.01000213623047","108.01000213623047","","1956-07-05T00:00:00Z","","0" +"NM-02266","57.56999969482422","57.56999969482422","","1981-01-16T00:00:00Z","","0" +"BC-0332","183.13999938964844","183.13999938964844","","2018-09-21T00:00:00Z","","0" +"NM-00491","62.47999954223633","62.47999954223633","","1977-01-08T00:00:00Z","","0" +"NM-13654","0","0","","1909-12-10T00:00:00Z","","0" +"NM-00310","68.56999969482422","68.56999969482422","","1990-09-20T00:00:00Z","","0" +"NM-17280","26.290000915527344","26.290000915527344","","1937-02-19T00:00:00Z","","0" +"NM-11397","63.720001220703125","63.720001220703125","","1957-09-10T00:00:00Z","","0" +"NM-20286","46.08000183105469","46.08000183105469","","1978-10-05T00:00:00Z","","0" +"EB-209","66.1500015258789","64.9000015258789","","1980-08-25T00:00:00Z","","1.25" +"NM-02396","5.300000190734863","5.300000190734863","","2001-05-15T00:00:00Z","","0" +"BC-0099","13.510000228881836","13.510000228881836","R","1995-01-09T00:00:00Z","","0" +"NM-13887","3.6500000953674316","3.6500000953674316","","1962-10-01T00:00:00Z","","0" +"NM-04962","104.13999938964844","104.13999938964844","","1960-01-20T00:00:00Z","","0" +"NM-24338","51.77000045776367","51.77000045776367","","1979-04-30T00:00:00Z","","0" +"NM-01894","59.22999954223633","59.22999954223633","","1994-04-15T00:00:00Z","","0" +"NM-02487","7.599999904632568","7.599999904632568","","2000-12-15T00:00:00Z","","0" +"NM-02700","8.800000190734863","8.800000190734863","","1988-01-07T00:00:00Z","","0" +"NM-01411","69.19999694824219","69.19999694824219","P","1993-02-26T00:00:00Z","","0" +"NM-02448","","","O","2002-02-21T00:00:00Z","","0" +"NM-03654","36.099998474121094","36.099998474121094","","1997-09-08T00:00:00Z","","0" +"SB-0299","100.37999725341797","100.37999725341797","","1967-03-05T00:00:00Z","","0" +"NM-05516","12.199999809265137","12.199999809265137","","1983-05-15T00:00:00Z","","0" +"NM-12477","13.520000457763672","13.520000457763672","","1959-05-13T00:00:00Z","","0" +"NM-08524","14.199999809265137","14.199999809265137","","1972-10-15T00:00:00Z","","0" +"NM-19611","189.3800048828125","189.3800048828125","","1972-02-04T00:00:00Z","","0" +"NM-03807","194.22999572753906","194.22999572753906","","1978-01-23T00:00:00Z","","0" +"NM-04258","15.25","15.25","","2011-12-14T00:00:00Z","","0" +"NM-02560","121.22000122070312","121.22000122070312","","1983-09-01T00:00:00Z","","0" +"NM-15535","59","59","","1978-08-30T00:00:00Z","","0" +"NM-03049","113.2300033569336","113.2300033569336","","1993-01-07T00:00:00Z","","0" +"NM-02471","141.16000366210938","141.16000366210938","","1990-04-27T00:00:00Z","","0" +"NM-07749","78.5999984741211","78.5999984741211","","1968-01-31T00:00:00Z","","0" +"NM-16614","25.030000686645508","25.030000686645508","","1936-11-23T00:00:00Z","","0" +"NM-01025","344.3699951171875","344.3699951171875","S","2006-02-22T00:00:00Z","","0" +"NM-22994","8","8","Z","2009-03-03T00:00:00Z","","0" +"NM-05850","82.41999816894531","82.41999816894531","","1959-01-15T00:00:00Z","","0" +"NM-07049","498.2099914550781","498.2099914550781","","2005-07-27T00:00:00Z","","0" +"NM-09754","-81.8499984741211","-81.8499984741211","","1913-01-13T00:00:00Z","","0" +"NM-03244","42.95000076293945","42.95000076293945","","1965-02-04T00:00:00Z","","0" +"NM-04498","80.93000030517578","80.93000030517578","P","1972-10-04T00:00:00Z","","0" +"NM-21665","531","531","S","1983-12-18T00:00:00Z","","0" +"NM-25886","201.8000030517578","201.8000030517578","","1967-02-17T00:00:00Z","","0" +"NM-13837","-5.619999885559082","-5.619999885559082","","1909-12-01T00:00:00Z","","0" +"NM-03334","12.84000015258789","12.84000015258789","","2008-02-25T00:00:00Z","","0" +"NM-04858","47.310001373291016","47.310001373291016","S","1950-03-21T00:00:00Z","","0" +"NM-05382","60.72999954223633","60.72999954223633","","1933-12-01T00:00:00Z","","0" +"NM-03115","12","12","","1993-01-12T00:00:00Z","","0" +"NM-17715","6.019999980926514","6.019999980926514","","1932-02-27T00:00:00Z","","0" +"NM-10736","12.899999618530273","12.899999618530273","","1941-09-09T00:00:00Z","","0" +"NM-02504","9.899999618530273","9.899999618530273","","1990-12-06T00:00:00Z","","0" +"NM-27669","92.66999816894531","92.66999816894531","","1990-03-09T00:00:00Z","","0" +"NM-28257","52.689998626708984","52.689998626708984","","1979-08-25T00:00:00Z","","0" +"EB-609","249.89999389648438","249.89999389648438","","2011-04-05T00:00:00Z","","0" +"TB-0173","52.90999984741211","51.61000061035156","","2009-12-22T00:00:00Z","","1.2999999523162842" +"NM-18499","256.0199890136719","256.0199890136719","","1977-01-12T00:00:00Z","","0" +"NM-16537","10.359999656677246","10.359999656677246","","1934-08-16T00:00:00Z","","0" +"NM-03392","147.99000549316406","147.99000549316406","R","1987-02-27T00:00:00Z","","0" +"DE-0067","19.899999618530273","18.299999237060547","","2015-04-28T00:00:00Z","","1.600000023841858" +"NM-17716","2.4200000762939453","2.4200000762939453","","1944-08-25T00:00:00Z","","0" +"NM-05380","75.37000274658203","75.37000274658203","","1945-03-21T00:00:00Z","","0" +"AB-0002","423.75","423.75","","1998-06-09T00:00:00Z","","" +"NM-06268","10","10","","1946-04-15T00:00:00Z","","0" +"NM-02328","14.210000038146973","14.210000038146973","","1978-02-21T00:00:00Z","","0" +"AB-0053","36.689998626708984","36.689998626708984","","2016-04-18T00:00:00Z","","0" +"NM-15888","94.2699966430664","94.2699966430664","","1975-02-28T00:00:00Z","","0" +"NM-18801","40.790000915527344","40.790000915527344","","1985-01-15T00:00:00Z","","0" +"NM-20068","34.599998474121094","34.599998474121094","","1947-09-18T00:00:00Z","","0" +"NM-12392","257.2300109863281","257.2300109863281","","1980-06-01T00:00:00Z","","0" +"NM-13137","18.559999465942383","18.559999465942383","","1959-01-08T00:00:00Z","","0" +"BC-0214","20.77899932861328","20.77899932861328","","2014-01-30T00:00:00Z","","0" +"NM-02592","51.83000183105469","51.83000183105469","","1973-01-10T00:00:00Z","","0" +"NM-11623","51.869998931884766","51.869998931884766","","1963-09-24T00:00:00Z","","0" +"EB-487","484.54998779296875","481.04998779296875","P","2005-12-31T00:00:00Z","","3.5" +"SB-0786","356.2099914550781","356.2099914550781","","1956-09-04T00:00:00Z","","0" +"NM-00195","21.020000457763672","21.020000457763672","","1955-01-13T00:00:00Z","","0" +"NM-21719","56.08000183105469","56.08000183105469","T","1984-08-23T00:00:00Z","","0" +"NM-00938","198.77999877929688","198.77999877929688","","1962-01-16T00:00:00Z","","0" +"NM-00808","19.190000534057617","19.190000534057617","","2013-09-16T00:00:00Z","","0" +"NM-00436","61.7400016784668","61.7400016784668","","2001-01-16T00:00:00Z","","0" +"NM-27986","15.520000457763672","15.520000457763672","","1983-03-23T00:00:00Z","","0" +"NM-22207","30","30","T","1984-04-06T00:00:00Z","","0" +"NM-04827","95.68000030517578","95.68000030517578","","1953-02-25T00:00:00Z","","0" +"NM-02658","214","214","","1943-09-10T00:00:00Z","","0" +"NM-11597","122.19999694824219","122.19999694824219","","1963-01-10T00:00:00Z","","0" +"NM-28255","111.44999694824219","111.44999694824219","","1992-06-25T00:00:00Z","","0" +"NM-01920","367.1000061035156","367.1000061035156","","1990-02-13T00:00:00Z","","0" +"NM-26190","256.6000061035156","256.6000061035156","","1986-05-15T00:00:00Z","","0" +"SO-0245","7.199999809265137","6.229999542236328","","2021-01-13T00:00:00Z","","0.9700000286102295" +"BC-0017","58.56999969482422","58.56999969482422","","2016-06-08T00:00:00Z","","0" +"BC-0015","109","109","","2014-03-05T00:00:00Z","","0" +"NM-02479","131.25999450683594","131.25999450683594","","1997-01-27T00:00:00Z","","0" +"NM-24992","594.7899780273438","594.7899780273438","","2008-01-30T00:00:00Z","","0" +"WL-0263","98.02999877929688","96.02999877929688","AA","2023-11-16T00:00:00Z","0001-01-01T12:20:00Z","2" +"NM-17716","7.650000095367432","7.650000095367432","","1940-06-22T00:00:00Z","","0" +"NM-28265","542.4400024414062","542.4400024414062","","2019-10-29T00:00:00Z","","0" +"NM-28250","81.02999877929688","81.02999877929688","","1998-07-05T00:00:00Z","","0" +"EB-288","96.80000305175781","96.80000305175781","","1973-07-26T00:00:00Z","","0" +"NM-05206","11.4399995803833","11.4399995803833","","2014-03-12T00:00:00Z","","0" +"NM-10331","582.9299926757812","582.9299926757812","","1959-12-01T00:00:00Z","","0" +"NM-17942","79.75","79.75","","1977-01-21T00:00:00Z","","0" +"NM-02006","8.5","8.5","","1982-10-15T00:00:00Z","","0" +"NM-02990","21.420000076293945","21.420000076293945","","1951-05-24T00:00:00Z","","0" +"NM-01360","95.58000183105469","95.58000183105469","","1966-10-30T00:00:00Z","","0" +"NM-21137","238.5800018310547","238.5800018310547","R","1978-08-02T00:00:00Z","","0" +"SM-0018","17.010000228881836","16.020000457763672","","2008-02-13T00:00:00Z","","0.9900000095367432" +"NM-27571","18.270000457763672","18.270000457763672","","1963-08-01T00:00:00Z","","0" +"NM-17166","26.059999465942383","26.059999465942383","","1935-01-12T00:00:00Z","","0" +"NM-28255","173.52000427246094","173.52000427246094","","1971-06-15T00:00:00Z","","0" +"NM-20418","321.6400146484375","321.6400146484375","","1987-04-03T00:00:00Z","","0" +"NM-18214","2.200000047683716","2.200000047683716","","1972-01-19T00:00:00Z","","0" +"NM-24271","58.77000045776367","58.77000045776367","","1976-09-13T00:00:00Z","","0" +"NM-20154","51.34000015258789","51.34000015258789","","1945-09-28T00:00:00Z","","0" +"NM-12933","14.949999809265137","14.949999809265137","","1944-09-16T00:00:00Z","","0" +"NM-03349","29.450000762939453","29.450000762939453","","2009-12-07T00:00:00Z","","0" +"NM-06098","23.649999618530273","23.649999618530273","","1975-12-04T00:00:00Z","","0" +"EB-203","86.37000274658203","86.37000274658203","","1977-01-11T00:00:00Z","","0" +"NM-25326","292","292","","1964-08-19T00:00:00Z","","0" +"NM-24876","34.619998931884766","34.619998931884766","","2003-01-09T00:00:00Z","","0" +"NM-02248","18.40999984741211","18.40999984741211","","1991-03-06T00:00:00Z","","0" +"BC-0098","43.939998626708984","43.939998626708984","R","1992-04-24T00:00:00Z","","0" +"NM-01295","99.66000366210938","99.66000366210938","","1995-09-26T00:00:00Z","","0" +"SO-0268","4.519999980926514","3.319999933242798","","2019-11-06T00:00:00Z","0001-01-01T10:17:00Z","1.2000000476837158" +"NM-08648","39.47999954223633","39.47999954223633","","1945-09-22T00:00:00Z","","0" +"NM-12392","260.6400146484375","260.6400146484375","","1962-06-01T00:00:00Z","","0" +"WL-0142","31.389999389648438","30.389999389648438","","2020-01-13T00:00:00Z","0001-01-01T11:01:00Z","1" +"NM-06641","57.400001525878906","57.400001525878906","","1965-10-26T00:00:00Z","","0" +"NM-16142","119.80000305175781","119.80000305175781","","1965-04-14T00:00:00Z","","0" +"NM-16149","119.86000061035156","119.86000061035156","","1956-10-08T00:00:00Z","","0" +"SB-0299","130.8800048828125","130.8800048828125","","2009-01-20T00:00:00Z","","0" +"NM-28252","64.41999816894531","64.41999816894531","","1972-03-25T00:00:00Z","","0" +"NM-26631","23.729999542236328","23.729999542236328","S","2011-07-28T00:00:00Z","","0" +"NM-28250","77.62999725341797","77.62999725341797","","1998-04-15T00:00:00Z","","0" +"AB-0074","16.639999389648438","16.639999389648438","","1999-06-14T00:00:00Z","","" +"NM-17716","4.829999923706055","4.829999923706055","","1949-06-08T00:00:00Z","","0" +"NM-21986","144.92999267578125","144.92999267578125","","1951-02-21T00:00:00Z","","0" +"NM-03619","159.00999450683594","159.00999450683594","","1981-02-02T00:00:00Z","","0" +"NM-08071","11","11","","1983-12-15T00:00:00Z","","0" +"NM-28020","468.6199951171875","468.6199951171875","S","2015-04-18T00:00:00Z","","0" +"NM-13162","9.100000381469727","9.100000381469727","R","1938-07-18T00:00:00Z","","0" +"NM-18781","295.489990234375","295.489990234375","","1954-04-21T00:00:00Z","","0" +"DE-0303","40.91999816894531","40.91999816894531","","2012-04-27T00:00:00Z","","0" +"NM-28018","485.8999938964844","485.8999938964844","S","2015-04-26T00:00:00Z","","0" +"NM-01719","153.72999572753906","153.72999572753906","","2002-02-23T00:00:00Z","","0" +"NM-11418","149.10000610351562","149.10000610351562","","1976-04-07T00:00:00Z","","0" +"NM-14265","427.1400146484375","427.1400146484375","","1971-08-01T00:00:00Z","","0" +"NM-03344","77.25","77.25","R","1985-02-26T00:00:00Z","","0" +"SV-0079","304.70001220703125","303.3700256347656","","2017-10-15T00:00:00Z","","1.3300000429153442" +"NM-01891","52.060001373291016","52.060001373291016","","2007-04-17T00:00:00Z","","0" +"NM-11487","18.149999618530273","18.149999618530273","","1958-05-06T00:00:00Z","","0" +"NM-23075","154.5800018310547","154.5800018310547","","1944-06-19T00:00:00Z","","0" +"NM-02702","16.479999542236328","16.479999542236328","","1970-02-01T00:00:00Z","","0" +"DE-0128","41.689998626708984","41.689998626708984","","2011-01-04T00:00:00Z","","0" +"NM-11670","35.47999954223633","35.47999954223633","","1959-03-18T00:00:00Z","","0" +"NM-10635","31.709999084472656","31.709999084472656","","1979-01-25T00:00:00Z","","0" +"NM-00957","86.56999969482422","86.56999969482422","","1958-01-13T00:00:00Z","","0" +"NM-02263","108.63999938964844","108.63999938964844","","2010-01-21T00:00:00Z","","0" +"DE-0196","52.95000076293945","52.95000076293945","","2013-06-20T00:00:00Z","","0" +"NM-12611","65.2699966430664","65.2699966430664","","1964-01-06T00:00:00Z","","0" +"NM-21271","4.489999771118164","4.489999771118164","Z","2008-10-27T00:00:00Z","","0" +"NM-05445","25.549999237060547","25.549999237060547","","1956-01-11T00:00:00Z","","0" +"NM-02027","61.900001525878906","61.900001525878906","","1964-01-27T00:00:00Z","","0" +"NM-01986","7.900000095367432","7.900000095367432","","1967-04-15T00:00:00Z","","0" +"NM-01566","51.5099983215332","51.5099983215332","","1970-04-08T00:00:00Z","","0" +"EB-478","240","240","","2000-01-31T00:00:00Z","","0" +"NM-05309","10.100000381469727","10.100000381469727","","1962-04-15T00:00:00Z","","0" +"NM-28259","154.19000244140625","154.19000244140625","","1976-09-25T00:00:00Z","","0" +"NM-02282","401.8500061035156","401.8500061035156","","1995-02-24T00:00:00Z","","0" +"NM-14334","58.189998626708984","58.189998626708984","P","1954-09-17T00:00:00Z","","0" +"NM-23247","101.3499984741211","101.3499984741211","","1958-02-04T00:00:00Z","","0" +"NM-02831","62.56999969482422","62.56999969482422","","1984-06-05T00:00:00Z","","0" +"NM-03356","106.5199966430664","106.5199966430664","S","1977-08-31T00:00:00Z","","0" +"NM-19545","96.22000122070312","96.22000122070312","","1977-02-17T00:00:00Z","","0" +"NM-01872","9.600000381469727","9.600000381469727","","1966-06-15T00:00:00Z","","0" +"NM-02620","8.300000190734863","8.300000190734863","","2000-07-15T00:00:00Z","","0" +"NM-08071","9.699999809265137","9.699999809265137","","1956-08-15T00:00:00Z","","0" +"NM-13748","-3.309999942779541","-3.309999942779541","","1907-09-18T00:00:00Z","","0" +"NM-00676","86.2300033569336","86.2300033569336","P","2013-11-19T00:00:00Z","","0" +"NM-01788","5.539999961853027","5.539999961853027","","1991-12-12T00:00:00Z","","0" +"NM-28252","52.130001068115234","52.130001068115234","","1967-02-15T00:00:00Z","","0" +"NM-17716","-0.7200000286102295","-0.7200000286102295","","1943-03-11T00:00:00Z","","0" +"EB-170","133","130.3000030517578","","2000-03-31T00:00:00Z","","2.700000047683716" +"NM-03679","184.3800048828125","184.3800048828125","","2000-05-01T00:00:00Z","","0" +"NM-02560","100.69999694824219","100.69999694824219","","1962-08-01T00:00:00Z","","0" +"NM-03576","46.70000076293945","46.70000076293945","","1987-02-11T00:00:00Z","","0" +"NM-03947","55.72999954223633","55.72999954223633","","1957-01-18T00:00:00Z","","0" +"TV-170","153.72999572753906","151.72999572753906","","2003-10-07T00:00:00Z","","2" +"NM-04131","303.8599853515625","303.8599853515625","","1994-02-08T00:00:00Z","","0" +"BW-0860","39.29999923706055","39.29999923706055","","1950-12-15T00:00:00Z","","0" +"NM-09104","462.7200012207031","462.7200012207031","","1977-08-09T00:00:00Z","","0" +"BC-0129","24.8799991607666","24.8799991607666","","2017-02-06T00:00:00Z","","0" +"SB-0442","163.60000610351562","163.60000610351562","","2007-02-25T00:00:00Z","","0" +"BC-0051","223.8300018310547","223.8300018310547","","2015-08-31T00:00:00Z","","0" +"NM-22187","409.8299865722656","409.8299865722656","","2015-04-10T00:00:00Z","","0" +"NM-01955","5","5","","1963-01-15T00:00:00Z","","0" +"NM-02827","55.66999816894531","55.66999816894531","","1984-01-26T00:00:00Z","","0" +"NM-24556","51.439998626708984","51.439998626708984","","1992-01-29T00:00:00Z","","0" +"NM-07888","658.8900146484375","658.8900146484375","","1975-06-04T00:00:00Z","","0" +"NM-02164","9.109999656677246","9.109999656677246","","1991-09-25T00:00:00Z","","0" +"NM-11008","67.43000030517578","67.43000030517578","","1981-01-09T00:00:00Z","","0" +"NM-07225","197.0500030517578","197.0500030517578","","1972-09-01T00:00:00Z","","0" +"NM-09816","95.81999969482422","95.81999969482422","","1957-11-26T00:00:00Z","","0" +"NM-18417","313.6300048828125","313.6300048828125","","2013-07-22T00:00:00Z","","0" +"EB-245","225.14999389648438","225.14999389648438","","2006-08-10T00:00:00Z","","0" +"NM-03205","420.07000732421875","420.07000732421875","","1974-01-03T00:00:00Z","","0" +"NM-14793","64.58999633789062","64.58999633789062","","1965-01-15T00:00:00Z","","0" +"NM-05800","2.9100000858306885","2.9100000858306885","","1975-09-04T00:00:00Z","","0" +"NM-28254","34.400001525878906","34.400001525878906","","2013-01-25T00:00:00Z","","0" +"NM-01805","5.789999961853027","5.789999961853027","","1983-01-12T00:00:00Z","","0" +"NM-09651","186.19000244140625","186.19000244140625","","1989-01-25T00:00:00Z","","0" +"NM-03294","110.37000274658203","110.37000274658203","","1977-01-18T00:00:00Z","","0" +"NM-12725","23.780000686645508","23.780000686645508","","1950-09-20T00:00:00Z","","0" +"NM-26739","237.9499969482422","237.9499969482422","","1962-08-21T00:00:00Z","","0" +"NM-09682","461.32000732421875","461.32000732421875","","1963-02-01T00:00:00Z","","0" +"NM-01890","77.04000091552734","77.04000091552734","","2010-12-08T00:00:00Z","","0" +"NM-05340","73.5","73.5","","1947-03-19T00:00:00Z","","0" +"NM-09696","19.5","19.5","","1938-10-03T00:00:00Z","","0" +"NM-04429","152.67999267578125","152.67999267578125","","1959-03-24T00:00:00Z","","0" +"NM-07341","254.10000610351562","254.10000610351562","","1969-02-28T00:00:00Z","","0" +"NM-21423","9.569999694824219","9.569999694824219","Z","2011-10-31T00:00:00Z","","0" +"NM-03223","372.3800048828125","372.3800048828125","","1988-07-26T00:00:00Z","","0" +"NM-02537","215.5","215.5","P","1974-01-23T00:00:00Z","","0" +"NM-01753","66","66","","2003-01-14T00:00:00Z","","0" +"NM-04107","148.16000366210938","148.16000366210938","","1960-01-08T00:00:00Z","","0" +"NM-15363","76.98999786376953","76.98999786376953","","1980-01-08T00:00:00Z","","0" +"NM-02065","158.5800018310547","158.5800018310547","","1977-03-07T00:00:00Z","","0" +"NM-07685","32.91999816894531","32.91999816894531","","1931-09-01T00:00:00Z","","0" +"NM-17618","16.860000610351562","16.860000610351562","","1959-06-03T00:00:00Z","","0" +"NM-26453","55.540000915527344","55.540000915527344","","2004-05-13T00:00:00Z","","0" +"NM-12711","33.709999084472656","33.709999084472656","","1935-09-17T00:00:00Z","","0" +"NM-25892","60","60","","1979-08-01T00:00:00Z","","0" +"NM-17207","36.5","36.5","","1949-01-11T00:00:00Z","","0" +"DE-0108","37.540000915527344","37.540000915527344","","2006-05-31T00:00:00Z","","0" +"NM-20474","61.650001525878906","61.650001525878906","","1945-11-29T00:00:00Z","","0" +"NM-04986","150.5399932861328","150.5399932861328","P","1962-04-06T00:00:00Z","","0" +"SB-0299","141.6300048828125","141.6300048828125","","2020-01-10T00:00:00Z","","0" +"NM-21693","68.66999816894531","68.66999816894531","","1953-02-20T00:00:00Z","","0" +"NM-16473","67.19000244140625","67.19000244140625","","1963-01-02T00:00:00Z","","0" +"NM-14705","70.31999969482422","70.31999969482422","","1958-08-25T00:00:00Z","","0" +"DE-0127","47.70000076293945","47.70000076293945","","2014-10-01T00:00:00Z","","0" +"NM-02605","199.22000122070312","199.22000122070312","","2009-01-07T00:00:00Z","","0" +"NM-28251","88.29000091552734","88.29000091552734","","1984-04-15T00:00:00Z","","0" +"SB-0299","124.55000305175781","124.55000305175781","","1972-06-15T00:00:00Z","","0" +"NM-07731","-65.68000030517578","-65.68000030517578","","1908-09-09T00:00:00Z","","0" +"NM-02527","9.300000190734863","9.300000190734863","","1990-11-15T00:00:00Z","","0" +"NM-20003","193.83999633789062","193.83999633789062","","1987-02-11T00:00:00Z","","0" +"NM-00611","90.70999908447266","90.70999908447266","R","1995-01-04T00:00:00Z","","0" +"AB-0146","1098.4000244140625","1098.4000244140625","","2006-03-14T00:00:00Z","","" +"NM-00498","66.56999969482422","66.56999969482422","","1971-12-01T00:00:00Z","","0" +"NM-11487","18.989999771118164","18.989999771118164","","1957-11-18T00:00:00Z","","0" +"NM-04963","203.6999969482422","203.6999969482422","","2002-01-28T00:00:00Z","","0" +"DE-0244","101.04000091552734","101.04000091552734","","2011-11-09T00:00:00Z","","0" +"NM-01033","75.02999877929688","75.02999877929688","","1988-12-15T00:00:00Z","","0" +"NM-08071","10","10","","1987-10-15T00:00:00Z","","0" +"NM-00729","101.08000183105469","101.08000183105469","","2003-07-22T00:00:00Z","","0" +"NM-12297","11.15999984741211","11.15999984741211","","1951-09-10T00:00:00Z","","0" +"NM-10094","171.8699951171875","171.8699951171875","","1984-01-30T00:00:00Z","","0" +"NM-02620","3.200000047683716","3.200000047683716","Z","1995-06-15T00:00:00Z","","0" +"NM-03339","10.970000267028809","10.970000267028809","","2001-12-19T00:00:00Z","","0" +"NM-03258","36.5","36.5","","1955-09-23T00:00:00Z","","0" +"NM-02504","6.21999979019165","6.21999979019165","","1991-01-03T00:00:00Z","","0" +"NM-20137","151.0500030517578","151.0500030517578","","1962-03-08T00:00:00Z","","0" +"NM-01868","6.900000095367432","6.900000095367432","","1947-07-15T00:00:00Z","","0" +"NM-21461","7.820000171661377","7.820000171661377","","2010-06-14T00:00:00Z","","0" +"NM-13892","-21.790000915527344","-21.790000915527344","","1911-05-19T00:00:00Z","","0" +"NM-13788","-3.309999942779541","-3.309999942779541","","1911-06-03T00:00:00Z","","0" +"NM-17716","7.269999980926514","7.269999980926514","","1940-01-15T00:00:00Z","","0" +"NM-02772","26.31999969482422","26.31999969482422","","1959-12-01T00:00:00Z","","0" +"NM-07815","22.959999084472656","22.959999084472656","","1951-09-19T00:00:00Z","","0" +"NM-28259","162.11000061035156","162.11000061035156","","1970-07-25T00:00:00Z","","0" +"NM-27265","57.130001068115234","57.130001068115234","","1978-01-13T00:00:00Z","","0" +"NM-03349","36.220001220703125","36.220001220703125","Z","1993-11-03T00:00:00Z","","0" +"NM-28253","30.540000915527344","30.540000915527344","","2004-09-03T00:00:00Z","","0" +"NM-17457","54.38999938964844","54.38999938964844","","1962-01-11T00:00:00Z","","0" +"NM-28252","33.599998474121094","33.599998474121094","","1998-04-05T00:00:00Z","","0" +"NM-14614","62.11000061035156","62.11000061035156","","1972-10-06T00:00:00Z","","0" +"NM-13238","19.06999969482422","19.06999969482422","","1996-02-08T00:00:00Z","","0" +"NM-01796","6.599999904632568","6.599999904632568","","1982-02-15T00:00:00Z","","0" +"NM-00535","34.61000061035156","34.61000061035156","","1966-02-17T00:00:00Z","","0" +"NM-27654","113.33000183105469","113.33000183105469","","1982-03-26T00:00:00Z","","0" +"NM-02429","14.300000190734863","14.300000190734863","","1994-02-13T00:00:00Z","","0" +"NM-09696","49.33000183105469","49.33000183105469","","1952-03-14T00:00:00Z","","0" +"NM-00629","82.76000213623047","82.76000213623047","","2009-02-04T00:00:00Z","","0" +"NM-03425","12.6899995803833","12.6899995803833","","2001-03-14T00:00:00Z","","0" +"NM-04627","109.31999969482422","109.31999969482422","S","1953-06-29T00:00:00Z","","0" +"NM-06676","9.5","9.5","","1961-10-15T00:00:00Z","","0" +"NM-05585","13.899999618530273","13.899999618530273","","1953-02-28T00:00:00Z","","0" +"DE-0380","42.720001220703125","39.97999954223633","","2014-05-14T00:00:00Z","","2.740000009536743" +"NM-09940","33.59000015258789","33.59000015258789","","1963-09-05T00:00:00Z","","0" +"NM-21866","5.730000019073486","5.730000019073486","Z","2006-05-17T00:00:00Z","","0" +"NM-02833","31.290000915527344","31.290000915527344","","2010-01-12T00:00:00Z","","0" +"NM-27428","119.44999694824219","119.44999694824219","","1990-09-07T00:00:00Z","","0" +"NM-05575","102.7300033569336","102.7300033569336","P","1956-07-11T00:00:00Z","","0" +"NM-02649","19.43000030517578","19.43000030517578","","1948-02-09T00:00:00Z","","0" +"NM-17053","39.7599983215332","39.7599983215332","","1961-01-13T00:00:00Z","","0" +"DE-0358","53.45000076293945","50.26000213623047","","2013-10-15T00:00:00Z","","3.190000057220459" +"NM-20468","289.3900146484375","289.3900146484375","","1984-08-30T00:00:00Z","","0" +"NM-11946","39.95000076293945","39.95000076293945","","1937-02-18T00:00:00Z","","0" +"NM-12295","61.68000030517578","61.68000030517578","","1959-01-12T00:00:00Z","","0" +"NM-21692","156.8699951171875","156.8699951171875","","2010-11-10T00:00:00Z","","0" +"NM-15681","54.61000061035156","54.61000061035156","","1990-05-15T00:00:00Z","","0" +"WL-0091","45.83333206176758","43.063331604003906","","1997-03-19T00:00:00Z","","2.7699999809265137" +"NM-27547","73.05999755859375","73.05999755859375","","2006-03-03T00:00:00Z","","0" +"NM-20147","101.87999725341797","101.87999725341797","","1961-02-13T00:00:00Z","","0" +"BC-0099","14.020000457763672","14.020000457763672","R","1992-07-17T00:00:00Z","","0" +"SA-0033","284.7900085449219","284.7900085449219","","1996-02-07T00:00:00Z","","0" +"NM-01239","26.079999923706055","26.079999923706055","","1955-12-07T00:00:00Z","","0" +"NM-09905","63.47999954223633","63.47999954223633","","1972-01-12T00:00:00Z","","0" +"QY-0466","158.39999389648438","158.39999389648438","","1954-06-29T00:00:00Z","","0" +"NM-28257","62.5","62.5","","1985-04-15T00:00:00Z","","0" +"NM-28251","75.18000030517578","75.18000030517578","","1987-11-15T00:00:00Z","","0" +"NM-11624","56.119998931884766","56.119998931884766","","1958-01-11T00:00:00Z","","0" +"NM-07974","60.529998779296875","60.529998779296875","","1940-01-05T00:00:00Z","","0" +"NM-05418","148.72000122070312","148.72000122070312","","1992-01-30T00:00:00Z","","0" +"NM-02831","66.37999725341797","66.37999725341797","","1970-08-01T00:00:00Z","","0" +"NM-07208","167.4499969482422","167.4499969482422","","1984-01-27T00:00:00Z","","0" +"NM-02566","36.900001525878906","36.900001525878906","","1976-02-17T00:00:00Z","","0" +"NM-11889","1.7899999618530273","1.7899999618530273","","1960-02-05T00:00:00Z","","0" +"NM-14748","43.66999816894531","43.66999816894531","","1986-01-14T00:00:00Z","","0" +"NM-21381","21.290000915527344","21.290000915527344","R","1992-03-13T00:00:00Z","","0" +"NM-01281","394","394","","1983-11-01T00:00:00Z","","0" +"NM-05081","65.13999938964844","65.13999938964844","","1941-01-10T00:00:00Z","","0" +"NM-01838","335.8599853515625","335.8599853515625","","1985-01-22T00:00:00Z","","0" +"NM-13120","5.510000228881836","5.510000228881836","","1958-09-22T00:00:00Z","","0" +"NM-23150","69.75","69.75","","1984-03-06T00:00:00Z","","0" +"NM-28253","25.040000915527344","25.040000915527344","","1982-02-25T00:00:00Z","","0" +"NM-19784","67.05000305175781","67.05000305175781","","1944-09-26T00:00:00Z","","0" +"NM-13594","32.70000076293945","32.70000076293945","","1974-03-05T00:00:00Z","","0" +"NM-17354","144.27999877929688","144.27999877929688","","1966-03-10T00:00:00Z","","0" +"AB-0083","502","502","S","1983-11-07T00:00:00Z","","0" +"AB-0162","486.1300048828125","486.1300048828125","","1998-11-13T00:00:00Z","","" +"NM-28254","96.5","96.5","","1990-03-25T00:00:00Z","","0" +"NM-11252","177.50999450683594","177.50999450683594","","1972-01-18T00:00:00Z","","0" +"NM-13265","-53.130001068115234","-53.130001068115234","","1909-02-23T00:00:00Z","","0" +"SB-0299","123.0199966430664","123.0199966430664","","1997-04-10T00:00:00Z","","0" +"NM-28255","16.90999984741211","16.90999984741211","","1989-11-25T00:00:00Z","","0" +"NM-02026","56.75","56.75","","1969-01-27T00:00:00Z","","0" +"NM-13859","-11.399999618530273","-11.399999618530273","","1908-09-04T00:00:00Z","","0" +"NM-00013","360.7699890136719","360.7699890136719","","1974-03-06T00:00:00Z","","0" +"EB-163","685","683.7999877929688","","2003-04-30T00:00:00Z","","1.2000000476837158" +"NM-01926","6","6","","1948-12-15T00:00:00Z","","0" +"NM-13145","14.279999732971191","14.279999732971191","","1957-05-06T00:00:00Z","","0" +"NM-14531","68.87000274658203","68.87000274658203","","1963-01-17T00:00:00Z","","0" +"NM-19156","278.9200134277344","278.9200134277344","","1962-03-03T00:00:00Z","","0" diff --git a/migration/data/welldata.csv b/transfers/data/welldata.csv similarity index 100% rename from migration/data/welldata.csv rename to transfers/data/welldata.csv diff --git a/transfers/data/wellscreens.csv b/transfers/data/wellscreens.csv new file mode 100644 index 000000000..ca4552d5e --- /dev/null +++ b/transfers/data/wellscreens.csv @@ -0,0 +1,3726 @@ +"WellID","WDBID","PointID","counter","ScreenTop","ScreenBottom","ScreenDescription","OBJECTID","GlobalID","SSMA_TimeStamp" +"FE36774A-DC89-4456-9F3F-BBE335133F71","36","UC-0019","0","60","100","","1316","D543F930-EB25-46D9-B42D-00044C9B4771","0x00000000002C4779" +"278069B0-1649-4D40-9892-390F17CB6750","33392","SM-0039","0","120","200","","768","E898A227-3C9A-4696-BE9E-002BE6F06EFA","0x00000000002C477A" +"45A9EB2E-5F3A-4F1D-95A1-9E31D5F53C14","155591","TB-0128","0","120","140","","1288","EF5EC170-2056-4C1C-B7EB-003322DBE052","0x00000000002C477B" +"DB86C570-B336-4D1B-BE7E-BBFD719CEA71","464","EB-459","0","360","370","","519","95A6FA53-1063-4814-99C4-003FD4A5CF0B","0x00000000002C477C" +"D0B771BA-AC4E-4244-B805-229B06B845A5","523","QU-136","0","308","338","","1010","F1729119-DA74-40A9-ADA0-00404D407847","0x00000000002C477D" +"737F3D89-07E0-43A7-A652-23FEB9C56B1A","","BC-0120","0","480","500","","5051","FD1F5F11-1D54-4640-B1BA-004F5E06C5A0","0x00000000002C477E" +"6B44930C-AB58-4842-8182-80287F8412BA","","AH-073","0","383","403","","1803","B48416FC-8C22-49F3-B71E-0057416C5108","0x00000000002C477F" +"5B187DD2-CDA3-44FE-ABDC-B5A6BDA915BE","","BC-0084","0","140","160","","5021","B33C61B0-45D6-4839-86A6-00697D3847D2","0x00000000002C4780" +"62AA881D-B624-4FA3-B3CF-2047EC87502C","235","EB-231","0","140","160","","290","8722F36C-AE42-460A-A2EB-00992E006676","0x00000000002C4781" +"28B3B3B2-7BBC-4672-8A34-6AF80E2C6EC2","379","QU-049","0","130","160","","960","27EC6226-24F6-46C8-915C-00AC86395271","0x00000000002C4782" +"6AE53A94-F44A-4E31-8E02-E3DBF098B5C5","","NM-04044","0","173","203","","5614","39AA898B-5082-CE4E-971E-00B33A238BF5","0x00000000002C4783" +"B0EB29F7-FF44-413E-97BE-55FDA158FCF8","329","EB-325","0","200","220","","401","E4E19618-AB8C-4078-A4A6-00E7712274EC","0x00000000002C4784" +"A4337B54-DBE6-45F8-B3B6-13DA810B1C98","","NM-00808","0","40","43","","3747","FD150E6A-F81E-4815-854B-00F533E0D1F2","0x00000000002C4785" +"28B7D825-573C-4EE9-AEE6-ABBB286F8AA8","375","QU-046","0","720","900","","959","6DAD5C94-AACE-49FD-98DD-01044E8D9D1E","0x00000000002C4786" +"242FE5C9-0221-4E7E-B0D8-7AFC1121A99D","","BC-0032","0","170","180","","3924","AF50E02F-6B35-41D1-9D8B-010EA3784F01","0x00000000002C4787" +"5F331D08-8606-4722-A31E-C5E65CDB3950","","SO-0217","0","3","18","","3221","7430EFC8-10E3-4D8E-A610-01118B7BE497","0x00000000002C4788" +"70437076-FF37-4849-9994-4E14F59BCA44","","AR-0177","0","10","27","","3731","6A2B028D-72A0-46EE-8C0E-011744B01B80","0x00000000002C4789" +"4FBCA007-2CBD-499E-A181-B06FA510448E","155495","TB-0047","0","260","300","","1245","4E2956E2-6157-4EA9-9A79-01186444BF64","0x00000000002C478A" +"BF6A29AB-4DA0-46B9-BF56-895008886D9A","","SO-0230","0","81","86","","3234","B9211D8A-1B56-4AFA-ADB4-0133ADC978D4","0x00000000002C478B" +"99900D7D-556F-4C3A-9323-4F86FDABAFD7","","NM-03691","0","118","158","","2827","5C3534EA-F1AF-43EB-9B12-0161D6A879C0","0x00000000002C478C" +"7D5B0A51-AA8E-48FB-A309-2CB6DF48463A","","AB-0057","0","320","330","","2602","51290C16-F89B-47F1-AD07-0182418A9106","0x00000000002C478D" +"F54ACA98-AD3C-45D6-9612-BC7F72365169","160","TV-140","0","220","260","","1071","07007449-3DBE-4DB1-9A75-018BC47ED10F","0x00000000002C478E" +"2F1F6B46-A00B-425A-9A16-B8133C142793","33310","EB-606","0","620","630","","655","E19A879F-164A-4252-8207-01BA2D7372FD","0x00000000002C478F" +"D3BAF60F-7277-4E00-959D-5347945584EF","","NM-26884","0","340","380","","4931","31339796-FE45-4B0B-95EF-01BF9160BB98","0x00000000002C4790" +"4F22631D-B2C5-4A94-A1E6-8007F6E93483","33315","EB-611","0","1190","1990","","660","6E7B36ED-6394-497F-83FC-01CAAD6D2F05","0x00000000002C4791" +"734F03B4-5D7A-44E7-B8DB-7AD16388F118","325","SM-0258","0","90","110","0.032"" slotted pvc","850","DE0218F6-96CD-4CEA-A8F8-01D366EBE317","0x00000000002C4792" +"8C6D9CAB-D786-418E-B55C-6DA4CA4C561C","33602","SM-0091","0","700","720","","808","12603E79-A0D3-4408-B7A4-01ED1E26BE73","0x00000000002C4793" +"232863A3-F0F3-4700-8629-AAA5BD77BA5F","223","EB-219","0","76","109","","279","6BC0E7D0-2F4F-467B-9D5C-01FF39C72EC2","0x00000000002C4794" +"F4494EB6-7EF8-47C5-BD0C-77675BA2C0EB","262","EB-258","0","191","205","","317","037DB147-0966-4E26-8911-020F35015011","0x00000000002C4795" +"EDAFFD0B-BEA0-4083-8F45-42667BFAAF93","170","TV-150","0","42","84","","1079","D88DE48F-2283-4C24-80B2-022397180B78","0x00000000002C4796" +"431BFF9C-5F28-4E55-8610-2AAE12484B10","","NM-24714","0","440","460","","3670","05191149-473E-4625-A906-024343550D43","0x00000000002C4797" +"8219F918-91FD-452D-8F7D-A193A135BBF5","400","EB-396","0","90","98","","454","B9DEA0E5-7CA7-4E74-AE5B-02464A1E29DF","0x00000000002C4798" +"FB0F0E87-DC74-4C57-9FCF-E0D553F8ED25","","NM-05562","0","240","260","","3877","78DAF18A-9015-4740-8F42-024A5E033A27","0x00000000002C4799" +"DD3326EE-5314-4524-BF96-19A6A296DAB6","","AH-096","0","262","302","","1783","7568C2E1-6F4A-4F47-B693-025793CDD68D","0x00000000002C479A" +"17503A46-1929-4B81-AEE3-BC9FBE80900C","","NM-03404","0","60","70","","2799","C0E19CE3-18CF-4CF8-84F9-02763EE8898A","0x00000000002C479B" +"F89CC8A9-DC0E-459B-8A56-B3DDA6DAC2B1","","AB-0252","0","","","","5763","951928AB-E6E1-4E34-AFA6-0278B084C3F1","0x00000000002CF39E" +"FA275572-7845-45D2-AC40-1B26B0BD44F8","277","EB-273","0","700","800","","332","FC72D3F3-3F44-42A5-B0E0-027E93601727","0x00000000002C479C" +"F162D6AB-BF4A-0947-9228-963552B72F04","","WL-0139","0","70","90","","5633","36C20AEC-9D68-B947-B2BE-029C036DCFC9","0x00000000002C479D" +"B3FFFFAF-8ABE-4D15-959C-297A1769AE95","","AR-0150","0","25","30","","3089","6C12DD19-7372-42B6-8BD9-02C9DAB927BE","0x00000000002C479E" +"1ACA981A-099B-4253-888E-6DB5E46EA3E5","","NM-24683","0","240","260","","3682","016398C3-0A3F-4B44-A570-02D53BAB8CE0","0x00000000002C479F" +"AF160015-5A00-4A11-BA32-3B97C746056C","232","TV-212","0","360","420","","1122","2552FB0C-B618-4C45-A74F-02D7058676AF","0x00000000002C47A0" +"B7417163-D9AE-4CBC-8FE3-189B94C53C6C","","SV-0131","0","342","362","","3437","63B6DAC0-A4E4-4F99-8E1D-02E1022578E4","0x00000000002C47A1" +"E828E96A-783C-4198-85D1-8CBA6B834CB6","364","EB-360","0","420","440","","429","3B2F8F3B-26FC-4BF8-BC0D-02E676DF69DD","0x00000000002C47A2" +"FF40E45E-2619-4B48-8489-75F0DBF48249","8768","BW-0946","876","99","399","kjhkhfj","5751","6961F656-9CAF-47D7-9BF5-02EBAE06C710","0x00000000002CF37E" +"708164B9-ED6B-4511-B761-E22CF29246F9","","NM-01139","0","147","167","","2788","624F34DA-43AD-4C6E-93C5-02EE6F1AF62B","0x00000000002C47A3" +"6DACD5E0-1FD9-F341-B675-860B1CAB4A94","","PC-023","0","90","100","","5330","63669677-20BD-3E43-BF81-02F352A74747","0x00000000002C47A4" +"1E4AB32D-CF65-4853-A454-0447CCB94916","355","QU-027","0","50","110","","1028","9B59D90C-277B-4E8F-B0AB-03074B83D7AC","0x00000000002C47A5" +"B203E3B5-8E93-4E65-A4E8-A2C889CA13D2","","AS-032","0","435","495","","1525","5EDF2F76-AE08-4617-B547-030D8EFB0833","0x00000000002C47A6" +"A590900F-DC41-4DCF-920E-052F077F4BD8","","BC-0101","0","220","240","","5037","B742086F-B5DA-4377-9AA6-03452865F873","0x00000000002C47A7" +"CC2A95D7-06BD-4949-B62E-3A37B84C8414","320","TV-279","0","80","140","","1187","BCB97F19-8D70-4B48-8737-036D2940BC61","0x00000000002C47A8" +"9A9BD5E8-102F-47E3-8CB1-4892CB7EEF74","282","EB-278","0","468","480","","339","58BE937B-184F-46B6-85A4-037FE3D9DB20","0x00000000002C47A9" +"2031F328-C80E-4670-B755-3EF8F529B003","","NM-05604","0","60","237","","4970","70774806-AB50-4170-9B64-03B761049F40","0x00000000002C47AA" +"84354BF9-80AF-4845-9922-FED592D0253F","","NM-27235","0","720","730","","4976","E368A330-4D15-48BE-8F86-03D5E140A361","0x00000000002C47AB" +"516BB706-F593-4D50-90C9-6D72BB0ACC80","","NM-26682","0","48","53","","3444","25C40EAF-E0A9-4C88-9F93-03DB57966840","0x00000000002C47AC" +"A91485BA-4C80-427D-AC2E-93D94C483889","","NM-27127","0","149","162","","5451","BAD56386-F3C5-2148-85D5-03EB950418B8","0x00000000002C47AD" +"157DE72B-6859-4195-92DD-516A5F34B4A9","37","EB-036","0","62","63","","39","0F4FF64C-7BC6-4040-8245-03F43F09D729","0x00000000002C47AE" +"6C9CC5CB-D292-4FBB-9AED-BBE172149483","189","EB-188","0","200","220","","236","45F63292-617A-40BA-AEC7-03F59467531A","0x00000000002C47AF" +"5BE85693-25A2-487B-A854-DFCC4C45DE16","33371","SM-0013","0","220","260","","761","4A143007-BDC8-4754-9F19-040EB389AEC3","0x00000000002C47B0" +"5A9A0FAA-6EB8-4469-9CE7-3E2D04321EFB","","SO-0224","0","42","47","","3228","D7C38885-2B1B-487E-939E-040F67C4D98B","0x00000000002C47B1" +"8A4D37E2-6B1A-4EF2-B304-7291F575F887","210","EB-209","0","238","260","","269","6C3822FC-FB61-45ED-AA05-041F60BD0229","0x00000000002C47B2" +"86BCFF71-F030-4D89-83DB-5A15746EE91E","129","EB-128","0","320","360","","162","241C12E4-EAE6-4B96-9551-04389F7F91B0","0x00000000002C47B3" +"2161E7F3-B426-4A0C-9CFE-603E68D8A2BC","","NM-01917","0","40","50","","5576","D1DAE437-A9D6-464F-B945-044C09F3DFF7","0x00000000002C47B4" +"78201E48-2E45-BC49-A914-E2DC2DB7C7BD","","PP-001","0","45","60","","5255","E4DF8CA9-EF4C-BD41-9B63-048F327FAF43","0x00000000002C47B5" +"504E5A15-6EC7-4F70-A5B1-1919B7CC26A1","","AB-0116","0","547","587","","2653","262AF6B7-DA8A-4625-8771-04B03AD68CE6","0x00000000002C47B6" +"B11962B2-91F9-4A76-82DF-2D89ECE8C0FC","","NM-26218","0","150","250","","3885","BD1FC4EA-661C-4406-9FEA-04CBB1034446","0x00000000002C47B7" +"88B02DD5-ADB7-0440-97CE-E6D10E68A372","","SV-0144","0","120","160","","5480","4A6370BA-2917-4B45-A949-04CE5614FBF5","0x00000000002C47B8" +"C2BECC25-FFF1-4080-904A-715C67E9EF12","","NM-25104","0","488","509","","3477","58C909DA-5183-4678-98F2-04D23AB47F3E","0x00000000002C47B9" +"0EA23243-8541-4F63-A9BA-7B4DD38648BA","","NM-04297","0","290","400","","3109","8DB6BA64-19D2-4CF6-9E1C-04F063437EFD","0x00000000002C47BA" +"FBA980C4-4631-44AA-9DAE-8A91A84FF2E4","","SV-0067","0","285","325","","3365","4A24BAFB-E590-4AF7-BAEA-04F4F1AD3427","0x00000000002C47BB" +"2C9A5BF3-1938-49DB-8790-48C05F079BB3","187","EB-186","0","240","260","","233","5AEF612B-7123-49F1-83AB-052F7DF7B234","0x00000000002C47BC" +"B7B3964A-BB9A-4F2B-AECB-A3FAE7B995CF","33384","SM-0030","0","395","455","","1231","351F0129-5611-4689-A020-0541ABA532CF","0x00000000002C47BD" +"6340CBCB-B03A-D749-8CA4-FB89FC28466D","","PC-003","0","160","200","","5311","23A39236-B9F1-9840-B692-05491E6FECAA","0x00000000002C47BE" +"BF63CBE6-1B60-40A2-9E6C-DF7FB3A3789A","110","EB-109","0","530","550","","137","7D65A1C7-3D27-484A-9157-05492279C487","0x00000000002C47BF" +"58686880-B818-4AFE-804F-E2A9485A1460","","NM-08418","0","251","236","","3898","6EA9FF6F-5CD3-42D3-95E9-055008A8BACA","0x00000000002C47C0" +"FAF88A70-EE70-45E0-88D5-9CAC483016EA","","SO-0232","0","5","20","","3236","6A4C1F01-B90E-437B-B95E-056C6A6FEFC5","0x00000000002C47C1" +"C6240761-073D-44C0-A5D0-C39CDB6B5664","291","TV-257","0","240","280","","1165","4403EFFF-5DFD-497F-AF0B-057E9A774ED2","0x00000000002C47C2" +"D23F1DBF-741C-42C5-959D-127AD9BBFD01","106","EB-105","0","594","854","","131","D6DA20C6-2A63-45BE-9C5D-05AA0D9F920B","0x00000000002C47C3" +"C4F8A31E-0E5B-46C7-96A3-3FA0CEFB4DE1","","NM-01407","0","260","300","","3042","F7FB1E40-BA9B-4666-9B6B-05AFD0E7832C","0x00000000002C47C4" +"3C817A61-9D90-41A7-909A-CD50BB8AD511","113","EB-112","0","360","420","","143","3D9F3F5A-CB6B-4A19-A3A2-05BEF0B36152","0x00000000002C47C5" +"468F5712-5402-4432-984E-A0BD78D69852","","NM-24995","0","355","395","","3568","45B045B5-FC48-462D-9F06-05CA8A851BF9","0x00000000002C47C6" +"FD8226A8-79F9-7147-A450-3D8175D3E36E","","NM-28281","0","60","100","","5434","69420649-3B8E-AC4F-B8C3-05CAD261C89E","0x00000000002C47C7" +"7D807F6A-417B-44F2-85BB-E70AFACBE49C","","QY-0858","0","150","160","","2996","6D1A8481-5CB8-49C9-B649-05CCF8DCC81B","0x00000000002C47C8" +"72786592-067E-4B58-BAE1-A429F4266B8E","568","GT-016","0","55","75","","1341","16A5666F-72C9-454F-9B22-05E121710B00","0x00000000002C47C9" +"274C4763-1114-4171-99EC-CD73D40C6F9F","","SO-0186","0","44","49","","3184","23B51920-D036-4143-AF77-05F3125393D2","0x00000000002C47CA" +"166601AB-666A-49D7-B1AE-92DB397A7465","98","EB-097","0","860","1000","","119","40B7522F-76B0-48B6-8E65-060B6C6463F5","0x00000000002C47CB" +"1AA2BF45-C129-4613-B936-5A56F211DF0C","","AB-0004","0","739","744","","2562","695666EC-AF5D-48E1-BF0E-06371FFA4ADF","0x00000000002C47CC" +"76D6FE6C-E471-41F8-A710-EF52239EE8B2","","NM-01094","0","200","210","","2805","8834DBB9-D81C-457E-BAF6-063799B2436A","0x00000000002C47CD" +"CA0E2632-0E2E-FF43-A404-1E306A700262","","PC-112","0","420","665","","5402","6D410DCC-4903-6A42-9B13-06947D6148BB","0x00000000002C47CE" +"4B49E285-7574-4C81-8F2E-6078DBACB077","","BC-0241","0","530","540","","3535","AB12DD28-BD60-489D-BA60-069E5071EB19","0x00000000002C47CF" +"B67F7B7A-806D-4D21-BF4D-56AD22F874A3","","QU-073","0","33","43","","2418","AD8166F0-9AF3-41C5-B4C1-06A1F33F324F","0x00000000002C47D0" +"A4D92C0D-87C7-4CCB-8754-D21CC93464A0","489","EB-480","0","500","1490","","561","06B9A1FB-798B-4FEB-BBC3-06BBF14F5ADE","0x00000000002C47D1" +"1AF2D0AB-15B6-4E2E-AF9B-394E068D6EE1","","NM-01465","0","88","89","","3061","7F19FEBC-1861-4EF1-9F40-06D5674009D2","0x00000000002C47D2" +"D45184E7-8CFB-294B-93CA-1BCAE8D02566","","WL-0273","0","240","300","","5704","F6A4B53D-C566-5341-B3FF-06DB7B37270A","0x00000000002C47D3" +"5B854F8C-E5DC-4421-A4CD-9D53362A4D60","","SV-0015","0","223","263","","5184","8697D97A-053A-B84C-AB4C-06F649210FFD","0x00000000002C47D4" +"42F0F524-7B4F-4C15-8C4A-85506E939B8C","","AS-046","0","320","720","","1534","94A5BCD0-6240-4202-8E04-06F756396C46","0x00000000002C47D5" +"695CF0C9-D248-414F-AE04-FA71A54F40E2","","QU-166","0","104","114","","2479","3D3DBE4C-E210-4CE7-84DC-0732CDD758DF","0x00000000002C47D6" +"6CAD0E35-DB67-4171-8079-40CDC9767E78","168","TV-148","0","80","100","","1077","62D6B4A0-D95B-4499-B34B-0735B533E836","0x00000000002C47D7" +"3E0615BF-72CF-476B-B863-D42CAB4A1A91","33375","SM-0037","0","42","82","","1227","5825BDA4-2D88-49AD-A2EE-0744B468037A","0x00000000002C47D8" +"534A22B2-175E-4366-BD74-4CBD0FF56366","155696","TB-0214","0","110","120","","1302","11E1C6E1-CC3C-4823-B112-07489AAF27DE","0x00000000002C47D9" +"11275315-7565-42FC-A199-ACB2DE7E4BDF","174","EB-173","0","600","620","","216","BE1E61CC-408D-409D-ACE5-077551D47372","0x00000000002C47DA" +"3C6D3722-C70E-439C-8DAD-1D55BF7FEA8C","","TC-277","0","284","337","","2144","650E2007-E62D-4E36-AA38-079DA8942377","0x00000000002C47DB" +"3DA77CC0-FC95-4C72-92DA-6F930AC03646","","NM-26968","0","220","240","","5104","5F516BB4-3606-4D88-9AD7-079E1F46DAF2","0x00000000002C47DC" +"1D338526-FB43-4F2C-A01C-165E281AFAE6","","CP-0024","0","340","400","","2938","9FAE4A47-5836-4BCF-87B5-07AEBF484C4E","0x00000000002C47DD" +"235C6784-87DE-4561-A569-33E6BF377724","","NM-26951","0","545","575","","5301","6E8FE508-97FF-1B45-8F18-07BD4065AC4C","0x00000000002C47DE" +"C3CD5B8B-FD05-4E79-A695-1C8BE35C66EC","","NM-04691","0","400","430","","3869","C32F0C8B-223A-4CC7-BF4B-07C08426E072","0x00000000002C47DF" +"8FA2DE80-5A81-4D64-A1B3-E8EEBAAFEF6E","","SV-0136","0","178","198","","5209","A21C2B9B-B3A1-1E44-A0A8-07D0BA94B601","0x00000000002C47E0" +"3B5C827D-9A3E-4089-991F-0490D183F2A1","","AS-063","0","640","670","","1551","F69A7CCB-C8A2-4842-80FB-07D711AD7F59","0x00000000002C47E1" +"6263F194-6528-446E-881A-0ACFB12BE6C7","","NM-09575","0","80","260","","5561","031E0B69-B268-6946-8873-07F9BF34349B","0x00000000002C47E2" +"4F21B887-3166-436A-BB7B-7C925A778A4C","","NM-00769","0","163","183","","2902","5E555319-B760-494D-A6D4-0801422860A5","0x00000000002C47E3" +"B7AA6B15-F0D8-A64D-95E9-A5D1C17519CC","","PP-057","0","178","218","","5282","5C3B41F4-26DF-7A4D-84C1-08023231D885","0x00000000002C47E4" +"DA1A0469-D8EA-443A-8E67-E5831D9676C5","262","TV-233","0","269","289","","1145","F32E6114-9946-466E-9465-0812A9CFDCF7","0x00000000002C47E5" +"B994C12E-5553-429F-BFE8-17CD6E1E385B","","NM-21081","0","25","45","","3814","C70EF96E-C4E0-481C-8449-0819BC0A5A88","0x00000000002C47E6" +"D8EB8ED1-106D-4F6B-B618-D59FF1B006D8","","AB-0195","0","760","1520","","2716","45F08402-DBCC-4B26-8D30-0823142D28DC","0x00000000002C47E7" +"7DA63F4F-C776-4A67-9B42-07E3A8198CBC","","SA-0134","0","154","214","","5686","615AABE0-DC45-E54A-82B9-082ABDC13FC2","0x00000000002C47E8" +"1B50EC1F-A312-4D25-B123-7ECBD470DBA2","","NM-06703","0","610","710","","3895","C8656610-B10D-49B6-BDF1-083FA11F3FFB","0x00000000002C47E9" +"5CF2D720-B0BB-4D2F-BF8E-B74E031BD14F","","BC-0161","0","125","145","","5133","4DC91290-9D0A-4C68-AAC9-0869403ED694","0x00000000002C47EA" +"603E5EB1-1390-4BE1-A715-B071D66F54A3","155732","TB-0227","0","0","105","","1305","F3DA7163-3D41-4C69-9E36-087CB307BD2D","0x00000000002C47EB" +"33BE5012-772A-48A0-8A79-C7B94B22802B","","TC-253","0","90","110","","2126","AB8364D5-BDAD-4E60-9D01-087E57DD7CB2","0x00000000002C47EC" +"A585755F-6617-4DCB-AF21-9232753876FA","","SO-0153","0","46","50","","3151","F4DC1E0F-FB37-4506-9B59-088C49656FD3","0x00000000002C47ED" +"B3D3A444-44D0-4C0D-BA3C-BB75AA97189F","","AH-060","0","540","580","","1747","696266BC-052F-41D0-BD93-08C9D8C40151","0x00000000002C47EE" +"AEC357D8-CDAA-491C-9DD0-66035EACD284","","NM-24673","0","230","252","","3687","C2C4F67C-E580-441B-B964-08D1A0D71E42","0x00000000002C47EF" +"8AEE9CB9-0D67-408E-B4F2-1BC4A4BA50DE","","TB-0310","0","100","160","","3126","7A84090D-1F3F-45CC-B49B-08D6CDA9CAE8","0x00000000002C47F0" +"1D26B8A0-EED3-4BBA-9F6C-4F77E2BA34B0","","NM-21280","0","80","100","","3821","B861DEE9-17E7-46FD-8FFD-0902E598A12E","0x00000000002C47F1" +"54A60E49-C54A-48C6-A0D3-892BD3FA8618","","TV-283","0","70","90","","3013","98FF645E-0D39-445E-8D6D-0906BC377E6B","0x00000000002C47F2" +"9E5669BE-9288-4884-A2F8-94E09030C4F1","155530","TB-0064","0","7","50","","1261","088A61FB-C13F-44E9-AD1F-091443D760BA","0x00000000002C47F3" +"593A6885-3589-4AFE-A5AF-3D89BB0DFC75","","SV-0056","0","200","240","","3354","CCBD6C40-A5E6-4223-8299-0924F746E26D","0x00000000002C47F4" +"E9DC18FC-5FAA-4C60-AE7C-1E5A013D7DAF","","NM-24951","0","410","435","","3587","66DA1C8D-AA3E-431A-BFCF-0964433905A7","0x00000000002C47F5" +"061E1499-17FC-46AA-A540-5D15C589F061","283","EB-279","0","395","415","","340","DDCB1BAA-F13E-4DA6-B84F-096D342CC113","0x00000000002C47F6" +"3FA5664A-99AC-4E1C-9895-54B33AD42B06","80","EB-079","0","540","560","","91","92A52578-80E7-43C8-B187-0976B88317D1","0x00000000002C47F7" +"876A4BBB-0C60-D944-9A2C-EE0D18337A83","","WL-0065","0","190","250","","5223","49D41B22-A4BD-894D-ACDF-097FCB5DF39B","0x00000000002C47F8" +"9D7BE9E9-F953-4738-8DBC-7F553258CCAF","33237","EB-522","0","50","65","","596","9EC9A918-E82A-4EC0-B6BF-09B780C0AD7F","0x00000000002C47F9" +"C195D791-7C9C-4CBB-B5A2-E5B640FEF927","","BC-0034","0","120","140","","4959","7536F49C-7F0B-4D88-AB13-09B799FBFE1D","0x00000000002C47FA" +"007A5201-BDD3-4643-B780-B22D56BBEA8B","","BC-0010","0","150","170","","3911","961BBDFC-218C-4A47-AF7B-09CCADF8C7D4","0x00000000002C47FB" +"B152162A-EBDD-394D-A1FB-1EB4549E5D9E","","PC-103","0","73","103","","5394","42AB75D0-5A23-9746-8277-09D72E4A1087","0x00000000002C47FC" +"6EE971B6-71DF-467C-996B-06E44A8BFBCD","444","EB-439","0","207","222","","502","0B58CAA5-C0E9-4AB8-BF8C-0A10C75BE2F1","0x00000000002C47FD" +"80274863-0F34-4491-8577-4BAF27AA4BD7","","NM-03338","0","81","86","","2819","E33C3E3F-E4E4-4455-9907-0A1F2D3B515A","0x00000000002C47FE" +"DE0F748F-3CAA-D149-BE24-9C06392C1FE4","","PC-101","0","664","674","","5393","9BC0BA5A-2263-0941-875F-0A33FFE32694","0x00000000002C47FF" +"E24588EC-06A2-4F9B-98F3-AAC30CBFC3BA","","SO-0150","0","3","13","","3148","AC057E88-07CB-4B40-BF6E-0A4C544E41E6","0x00000000002C4801" +"6C5D62D6-50C1-4AA6-A3A1-41215106165E","78869","SM-0234","0","160","180","","837","65E64E14-3C58-47AC-B6F5-0A5DCB35A500","0x00000000002C4802" +"1C25EDAD-0B30-4B82-A552-896F9AC94FFA","104","EB-103","0","106","108","","126","1CCABF41-037E-437C-8A88-0A7C2A3683E4","0x00000000002C4803" +"44139B9D-08A0-4C0B-9452-611A692333E5","490","EB-481","0","592","620","","564","B17C49D7-89D2-4269-AE35-0A9322154E57","0x00000000002C4804" +"674C1936-BE02-4870-BAA5-EBE76C457E0A","","NM-24850","0","127","137","","3630","5CC2E91B-1853-4D02-9403-0AA721CE56FD","0x00000000002C4805" +"D0F74F13-54DD-4D76-9B2E-DA379A0B5DFC","","TV-301","0","998.5","1039.5","","3002","6847459D-0130-4013-9C93-0AB000458F5F","0x00000000002C4806" +"4F771A6D-32FD-4247-B9C6-2EC84A078068","363","QU-034","0","50","90","","953","9C1A89EB-A612-4657-8BA9-0AB2869DCEFD","0x00000000002C4807" +"7543AF25-5AFA-42DE-B46F-424DC60227D0","406","HS-046","0","25","42","","1207","510B97BF-1E6A-42B4-98D3-0ACA40C2F412","0x00000000002C4808" +"90671ED0-8148-E24F-B3B3-27AEA061E191","","PP-063","0","84","104","","5250","464D39E2-D375-4744-88F3-0AF3D06A1B7A","0x00000000002C4809" +"EE18C300-8E5A-4193-8E1D-4AA3132A99FB","33364","EB-655","0","500","520","","697","70172278-A59D-4932-9803-0B170A6C8C07","0x00000000002C480A" +"479CBB00-4AB2-3C42-91FF-CD5F6AFD1685","","WL-0254","0","200","340","","5685","27CBEB55-8947-4949-9C84-0B2642F34EB7","0x00000000002C480B" +"584EED4A-1036-4C2E-8F95-6D3B59FE2190","","NM-01690","0","300","330","","3760","88A628FD-ECD7-4BF4-AD7B-0B2F8E1999D2","0x00000000002C480C" +"7FEE0937-B92F-412A-A3E2-562968C2CAAB","527","SA-0220","0","395","415","","878","C222AAA6-FC98-46FE-9391-0B58FF27480F","0x00000000002C480D" +"EC50AF10-9C26-42EE-B424-747433AD99FD","195","EB-194","0","148","183","","247","A86811E6-B9BB-4FEA-9438-0B94305EE7D7","0x00000000002C480E" +"F8E061AF-FED4-D34B-816B-74C6F7E7849E","","PC-069","0","184","234","","5369","3A4A6239-D5DE-8B43-B7CE-0B97A19DF8F2","0x00000000002C480F" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","100","120","","2886","E434DAA2-0A1F-467B-AB2B-0B9C4F41FBC1","0x00000000002C4810" +"774D3F74-FB79-4585-A457-94DB8EB24095","","WL-0037","0","105","137","","4946","F127EF00-E757-4F21-B5EF-0BAE3AA3057A","0x00000000002C4811" +"CC3DB2A7-0C1D-4A89-80CB-00FD59008ED3","","AB-0199","0","388","428","","2720","B6D525CD-767A-470B-A520-0BC37E378CA2","0x00000000002C4812" +"BBADE39D-E5A8-4C71-BE1E-D511D94F18C7","464","SA-0175","0","545","574","","871","337E76A5-EF17-4E43-B885-0BC3D92573C7","0x00000000002C4813" +"CDAA06F1-2105-4812-B888-7AACB0A69F1F","","AR-0017","0","12","17","","2949","728336DC-D8B7-452A-B22C-0BCA43EE95BE","0x00000000002C4814" +"EDF64101-F495-4420-ADC9-C6C3D46BBA99","213","TV-193","0","180","200","","1111","C7FD6FE1-3D13-49D0-B05E-0BD8446E9961","0x00000000002C4815" +"414FD68A-E4B8-4B48-8664-591B7AFA6E8A","361","MG-033","0","418","438","","925","7590C2DF-3C48-4B8D-BF72-0BDAA76B5483","0x00000000002C4816" +"EE18C300-8E5A-4193-8E1D-4AA3132A99FB","33364","EB-655","0","560","580","","696","39809F3D-10E5-42AD-91E8-0BDD635B50E0","0x00000000002C4817" +"26BAE4B3-4F43-4A86-B20A-AD5D335E965F","","NM-25192","0","590","630","","3451","3DD66982-B177-4590-8F14-0BF1B686F3C3","0x00000000002C4818" +"B4B8F865-82AA-49C8-9384-2A79432DD0A1","407","HS-047","0","40","60","","1219","084E77D0-E6A7-43DA-8DE9-0C1BE9F2EA63","0x00000000002C4819" +"C6B814D3-5556-4B5F-99A2-C72BBB276054","","SV-0004","0","270","300","","3290","F973577B-35ED-4A25-86AE-0C27332EBD90","0x00000000002C481A" +"F759DABD-722F-4725-863A-19C245CD3389","94","EB-093","0","600","650","","115","B20851DA-0055-45A9-B8ED-0C42B926E9FD","0x00000000002C481B" +"6E0C9EDF-D43C-402E-8D33-414CF4A98BF9","","AH-100","0","400","440","","1787","7D8B7FC3-97BC-4DFC-986D-0C5179CCA24E","0x00000000002C481C" +"6796AE8B-9F19-4444-AB8D-ED5E75A4C09B","251","TV-227","0","145","185","","1137","52810C41-15C5-4944-849F-0C756015E687","0x00000000002C481D" +"50942C54-5673-854C-B457-E61FF092914D","","WL-0074","0","35","105","","5235","C7CD4366-6304-C14D-BE07-0C7C9F99827F","0x00000000002C481E" +"DC117459-3818-5242-B31E-6C5EDE346221","","WL-0085","0","145","165","","5436","D7C2AEBA-4424-FF46-AE50-0C86F48F3158","0x00000000002C481F" +"290EBC3F-1657-AF4D-A565-3CC61B455F26","","PC-122","0","240","270","","5414","225F4D59-2826-9D48-9BCE-0C950698919A","0x00000000002C4820" +"86B9A5EF-D527-400C-A233-959E666EBEF5","","NM-01669","0","252","445","","3757","8B752B15-86F4-414D-91C9-0C9DA536DE73","0x00000000002C4821" +"4AB1F999-A9CC-064F-BFE5-A898B616B848","","PC-022","0","310","320","","5329","156DBBD2-6199-254D-9207-0CA3B9B8F5C2","0x00000000002C4822" +"DC73E296-2CFF-401F-9D5B-340E63A2FF27","305","TV-269","0","60","109","","1175","07C8C4F7-04D5-417C-9B12-0CC437DFCA32","0x00000000002C4823" +"00D8FD85-376F-4DEA-A794-1680A41782DD","","AH-023","0","170","242","","1578","5951D945-C1D7-4158-A267-0CD02B1E92EE","0x00000000002C4824" +"905C87CF-7BEA-5C4F-AA9A-0406D6E216DC","","PC-094","0","575","595","","5385","F244DDDB-B679-D440-A7DE-0CD59EDE5B6F","0x00000000002C4825" +"2EA7A76F-36FE-4667-88B9-7226A0AC19B0","","QY-0630","0","33","85","","2985","47D5FC45-B5DC-4131-A997-0D05665C245F","0x00000000002C4826" +"FC72583A-2F30-4F70-906B-466A360A6B89","423","HS-007","0","290","320","","1215","E996A1F1-4C33-4CDA-9256-0D186C2C25D1","0x00000000002C4827" +"ED6370D2-C70B-4E0C-8A55-E413EA823241","","SV-0115","0","300","320","","3411","02BBCAAE-AF97-42CB-9934-0D21839221B8","0x00000000002C4828" +"A9A53B58-6A74-4264-B44C-7F683D7CCDB2","221","EB-217","0","50","90","","277","E90329FC-C717-4D3C-AE93-0D364C60F7AC","0x00000000002C4829" +"7C830C44-D087-463F-B0AD-68C23460B41F","207","TV-187","0","60","100","","1107","344A94B4-945E-47F9-82AD-0D80FA542F50","0x00000000002C482A" +"6679237F-9B1A-4FF3-96FA-21EC6A0D0681","42","UC-0026","0","74","134","","1320","FE93911B-2705-4862-A39E-0D8D356A008B","0x00000000002C482B" +"E0D0AD28-8EA7-4AEB-A4F7-B0F51CAB3B1E","","NM-24909","0","270","285","","3607","6D9D64C7-AE59-4CCE-B4AA-0DB4C29F5908","0x00000000002C482C" +"A642C6AE-6FC6-4211-B9B0-706B8EADCF7D","409","HS-049","0","30","41","","1220","5FD350E3-3A22-4726-9293-0DBFFD608D4B","0x00000000002C482D" +"29507D34-FAD9-48BE-95FD-1512970F5BB4","","AB-0191","0","980","1121","","2713","35B3DA6D-1BEE-4131-8668-0DC091702182","0x00000000002C482E" +"F94C64B2-7145-4DA3-A0CA-FE5F4BDDD582","","QU-165","0","92","152","","2472","3140EB56-9EA6-49B3-BA84-0DC9408D1650","0x00000000002C482F" +"883EA4B7-C0D4-4243-A762-FDAF352DC264","","WL-0107","0","280","360","","5443","50C93545-3F1A-0946-9533-0DC9F7E9E8A6","0x00000000002C4830" +"6E7DE45E-019C-43F2-9B39-A78A586E4F86","","NM-09236","0","117","297","","5550","BC9D5437-47D7-E84B-B9B9-0DEEC62D6D30","0x00000000002C4831" +"12072D9A-F6CF-4BFD-B8E2-C19012BDB2A2","33317","EB-612","0","116","218","","661","2A6DC731-CB62-4470-B204-0E12C36D2528","0x00000000002C4832" +"535B477D-EB5D-4838-A9F9-E61BBC32A93A","33677","SM-0152","0","715","735","","818","5CC808A3-9AA9-4951-B290-0E168B5C88A7","0x00000000002C4833" +"E9CA46EB-8A83-4498-9870-050358FBD316","475","EB-470","0","560","603","","545","A8963FAF-4579-4CEC-AB0B-0E16D8CC1503","0x00000000002C4834" +"D9F1E745-ED28-4CAA-B736-E06DC83958D0","","BC-0158","0","300","320","","5130","4C2813F4-6F0B-42E0-BA78-0E184A830296","0x00000000002C4835" +"AC9D7445-DFDE-F141-8161-AAEF80473E62","","PC-090","0","185","205","","5381","43BDE8AB-567C-2144-A670-0E1FEA11E27A","0x00000000002C4836" +"5D49E611-3C60-40E9-8A52-30E41718F1A2","","BC-0255","0","350","370","","3542","B08B785E-0EC0-483A-AD49-0E257E0CB55A","0x00000000002C4837" +"C8440178-5DCD-417A-B633-E500C10E490E","","NM-26898","0","95","105","","5291","5592FAE6-CE57-434E-9561-0E25E2213DEC","0x00000000002C4838" +"336B2BE4-A22D-4D58-903A-26A6512005E6","","AB-0124","0","538","598","","2660","1412221D-F9AE-491E-B7A9-0E2D193973C8","0x00000000002C4839" +"2E72A9FD-16C1-41E9-B2B7-C900FC90B68C","","BC-0197","0","580","600","","3520","85E968A5-543C-425A-8945-0E2EC2BB872A","0x00000000002C483A" +"F21BE53B-A436-4FC7-BD7B-512CBA209C3B","","AH-084","0","410","450","","1771","AE112B55-43D9-420A-91F7-0E33039F9E84","0x00000000002C483B" +"D3B9C597-3523-45B3-A3F9-D37325892305","231","TV-211","0","118","218","","1120","5823FDE7-FF72-420D-BE12-0E345C96D728","0x00000000002C483C" +"1D911F77-3214-47E3-80F0-3CF7D0BCEC20","","SV-0020","0","380","400","","3307","89CDFF6A-6422-4A00-82DD-0E36F2956B89","0x00000000002C483D" +"6DA0E858-B44B-2D49-AB93-83BF69D09550","","WL-0043","0","550","590","","5206","9D619417-8FBE-874A-859D-0E4E4E052AED","0x00000000002C483E" +"4C5AC031-6AD7-4EA8-B85A-34951FBC2144","159","TV-139","0","260","360","","1070","47D35A8D-3E9F-4974-B6D2-0E63511FF16C","0x00000000002C483F" +"C02FA93C-3396-F54A-97E9-47187C426A34","","DE-0007","0","460","520","","5658","B885E262-F4A8-9645-B77A-0EA445C120B8","0x00000000002C4840" +"CADAEA9C-171E-4D2D-98D3-C89198FCB66C","","NM-24998","0","111","113","","3564","2DED96A3-57F3-4F9F-ACC4-0EB40B0CA02C","0x00000000002C4841" +"1AE8C119-93BD-4177-92E9-3D857A44042C","","AH-081","0","440","480","","1809","C5D44438-C34A-46C4-93C7-0EC054930C32","0x00000000002C4842" +"123E2E23-905F-4C41-9878-D1C5C703BFEC","468","EB-463","0","526","567","","530","0A149219-6528-48DE-99BB-0EC11B5B26FF","0x00000000002C4843" +"979D5902-09A9-4548-8A07-4126BCAD7390","","NM-21345","0","280","300","","3828","34167ECA-10F9-45C6-BDE5-0EC54292CAA8","0x00000000002C4844" +"6AC8EC72-45B7-4B88-B85C-F8C8FF550D99","","TC-307","0","110","210","","3784","864F8562-3C19-44DB-BAD6-0ED42B1AA65E","0x00000000002C4845" +"71C26D08-EA61-EA4B-9787-A93CC0F3E003","","TC-441","0","20","240","","5236","E4188C55-60A6-CA40-B0AA-0EE8597C7ABA","0x00000000002C4846" +"4E8B3D85-4859-2E42-8F9A-B58644D6D80A","","PC-120","0","280","300","","5412","DC83168E-1B28-DE4C-B3E0-0F043D92FA0B","0x00000000002C4847" +"4EA7605B-0989-4DBD-92ED-F514A8326CA4","","NM-26912","0","130","180","","5058","E9A6145F-354F-4BFB-A22E-0F4BF9B577E1","0x00000000002C4848" +"7CC07B27-E4AF-4947-944D-B13E3081DAF8","203","TV-183","0","115","135","","1102","B613E2B6-0771-4774-A57C-0F708A8DDB09","0x00000000002C4849" +"54E161C8-8A96-4783-91F0-B97EFFF66126","520","QU-133","0","180","200","","1007","81AAE5BB-1E0E-4D6F-A5DD-0F729DB1FC6B","0x00000000002C484A" +"D38770C2-69D2-4A3E-A859-EE2DE0B8D8C3","33278","EB-574","0","80","100","","617","315CD590-0431-4709-A1D1-0F7CA8B6D622","0x00000000002C484B" +"2F48A67F-9652-4F3B-AD63-3574C4372039","363","EB-359","0","740","1310","","428","C42E4A2F-7357-4D28-AE60-0F89FF74FA89","0x00000000002C484C" +"B63D5298-C3AC-4CCF-9D16-4D3C38765DCA","","NM-05990","0","350","450","","3880","478CA0E8-F416-4B64-9CAD-0F8EED74C05A","0x00000000002C484D" +"F2EEA568-D34E-44A0-98B9-5353E796C7EB","","SO-0236","0","5","20","","3240","8B896E1B-FE5A-4F64-A64E-0F8F5B82C435","0x00000000002C484E" +"5579EA25-60A5-4D8E-85F8-4CE98A6BD728","","SO-0129","0","4","19","","3199","937DACA3-1241-4A67-B7B5-0F96542D28AE","0x00000000002C484F" +"EAA4E7DE-DD0D-4DB0-9C2A-CB17041E2DA3","82","EB-081","0","814","824","","97","FE28C329-EE8C-4A58-BB56-0F96B797345B","0x00000000002C4850" +"14E5E939-AF20-4F29-8659-B226976B8D45","124","EB-123","0","400","840","","158","0997D30D-D68E-457A-A4F0-0F9903C18C24","0x00000000002C4851" +"E34F58B6-6F16-4694-9477-235503BA8539","","NM-25000","0","106","108","","3562","6F53566A-B076-4AAE-81A9-0FA25441FB53","0x00000000002C4852" +"31F9725A-A0B6-7B42-93DD-01C98F00FB09","","PC-072","0","210","250","","5372","09250D74-D1BF-DE41-AC14-0FB0120BD62E","0x00000000002C4853" +"A05EB94C-A52C-4F33-B309-F7729C55AA32","","AH-075","0","197","237","","1762","E09D4B60-4A1D-47BA-A783-0FB49E1B1538","0x00000000002C4854" +"96FF477B-17C6-4553-B0FB-14A93EB4D0F9","38","EB-037","0","100","400","","40","5054C2BB-C6B3-481F-A77F-0FBF00BF0BE9","0x00000000002C4855" +"D38770C2-69D2-4A3E-A859-EE2DE0B8D8C3","33278","EB-574","0","460","480","","616","5CA0CAA0-A016-477F-9DC8-0FBFC8A0D7D7","0x00000000002C4856" +"5D87B0CD-BC3A-46A5-900B-483A951D4CF6","44","EB-043","0","200","420","","47","A962BD1D-125A-4883-9750-0FC605B15610","0x00000000002C4857" +"646CA437-8AB9-48C0-B9AA-594568EC9180","139","TV-119","0","60","150","","1057","03F86CFF-A0F5-4151-A1D5-0FCA5DC95E34","0x00000000002C4858" +"B7226734-74CD-4A85-BEE1-48BCF42DD2CE","","NM-23670","0","215","220","","3929","863B1172-C5B1-495F-B088-0FD30CB427C4","0x00000000002C4859" +"7A3BCE38-D499-48A5-81DE-01424B3BA651","","NM-25118","0","737","755","","3469","B87C6627-FC5A-4E84-B51D-0FE9241C079C","0x00000000002C485A" +"EC13ED1E-963E-4281-96E1-B1CFE1BF6874","374","EB-370","0","24","61","","255","5C99D82A-BC58-436B-A4B4-0FED686F69BC","0x00000000002C485B" +"A849B99A-833B-8048-AB29-230775DE986E","","WL-0260","0","60","201","","5687","55B4D6FA-5F8D-6647-BD60-0FF0CBFB3854","0x00000000002C485C" +"70F1A72F-247C-4AB9-88B4-043A5115C3BE","","SV-0057","0","160","180","","3356","166009CD-F54D-4B2A-8062-0FF8D5D2A38D","0x00000000002C485D" +"6DE4C486-2C06-F743-AEC6-37F701B9DE5C","","WL-0215","0","720","760","","5643","114FE213-2D65-FE46-8D0F-100033E24389","0x00000000002C485E" +"D4FAA561-3F86-4AAD-B9E5-A309A71808C8","","NM-21806","0","25","55","","3849","FB85AA85-7EB6-4056-8349-100832EAF668","0x00000000002C485F" +"1834161A-B39F-43BE-A9E6-5EA0B7DD7A25","473","EB-468","0","452","476","","539","A1FC2503-5FA4-49F4-B25A-100ED8988104","0x00000000002C4860" +"81738190-6AF9-413D-B1FF-8D0039454BDD","127","TV-107","0","868","935","","1041","45CB8570-E76E-4801-A992-1019BB84E338","0x00000000002C4861" +"79EAB1E1-C044-4A8D-9659-52C206251EA5","155745","TB-0240","0","50","120","","1309","BA1743E9-FEA5-44F8-A8A4-1029C7B34F44","0x00000000002C4862" +"7E2993DA-5E93-4250-AB48-47FA3452C0FF","","NM-26917","0","120","140","","5065","AAF26535-9B1A-48E7-97C2-1036882BD0B2","0x00000000002C4863" +"25111816-08D6-4225-85D3-78B4AD06A8DF","","SV-0053","0","400","425","","5190","9DC3C8D7-C3C8-5949-836D-104A57025558","0x00000000002C4864" +"1454670A-E015-403C-9DA0-7052F890C5BE","","NM-24577","0","246","258","","3736","D2CC1406-3B7C-4F6B-88B0-1052D8F9D093","0x00000000002C4865" +"C8A69133-BA97-434F-BDAA-87B87D642A6C","","AH-022","0","420","440","","1610","05D90B36-5F11-4EBC-BD7C-1059219EB90C","0x00000000002C4866" +"FCA6183F-E621-4011-8D65-50C352D14717","108","EB-107","0","600","640","","132","8AA57E25-F262-4BE0-ABF0-105C58251103","0x00000000002C4867" +"29862CBC-EB7C-4221-A3C3-7AA71947ABEE","33320","EB-615","0","720","740","","666","E45E7111-BC55-42B4-8496-1069B452E8CF","0x00000000002C4868" +"66D3735E-8DCC-4713-8F29-A47FE5A2E531","","NM-03415","0","139","144","","2810","4C1F31B0-C400-473C-A84A-1075C77A2920","0x00000000002C4869" +"B7FB9E45-AAD0-4E4B-8395-73B2E458648D","231","EB-227","0","390","410","","288","FADC27B9-2C69-412A-9F9F-1097A8B16172","0x00000000002C486A" +"C64F4C76-DABE-472F-8412-EBDAC107926C","","BC-0191","0","260","317","","5162","0E54E945-D2FD-42CB-AC4E-10ADFC6BD0EC","0x00000000002C486B" +"C6E14766-2EC4-9C4D-ADF6-D83DE86CEEBE","","WL-0071","0","353","793","","5225","A5DF5C8D-6ECA-0D41-8C0E-10D0C0F0F29A","0x00000000002C486C" +"6EE971B6-71DF-467C-996B-06E44A8BFBCD","444","EB-439","0","137","147","","501","4179BF89-955B-4B1F-B7A4-10FC4663C89B","0x00000000002C486D" +"212BAFA2-BE18-4D71-8ADB-F6C522F44B68","288","TV-254","0","150","210","","1161","418D4E6A-D1CE-4679-A54D-1106373CE0DC","0x00000000002C486E" +"9C8257EF-490B-4A19-8D18-11311700A3F2","205","EB-204","0","120","140","","268","004B0C2E-C6B9-431B-8690-11097DDDEEE8","0x00000000002C486F" +"422522D1-03D4-4BDA-A933-B8C30AD1BF9E","","QY-0375","0","75","220","","2969","106847B3-B6E8-4DE0-853C-1126C1B7469F","0x00000000002C4870" +"5990A71B-709B-4416-BA15-43F90E068E8C","","SV-0008","0","300","320","","3296","6559DA67-E2A2-41DA-AEC9-115C1AB520B1","0x00000000002C4871" +"9947E6E3-8AA2-4033-994E-D8E9DE6E41D4","","UC-0228","0","380","420","","2846","1C5E4C4E-5E2F-4DC6-AE50-117A65D724B6","0x00000000002C4872" +"8FB8EFC9-9E0B-4C70-A866-1ABD237EBD0A","","AH-088","0","430","470","","1775","387AA4F0-F9D4-4C5B-BFA3-11808773F0FD","0x00000000002C4873" +"B207BEC1-F4E8-4888-98C8-C330E417EE04","","AB-0144","0","670","990","","2678","4CDDC5E2-339E-4370-A55D-11808B3D0688","0x00000000002C4874" +"4A8EDE59-9E7E-4E11-A152-63DAC65FD9BA","51","EB-050","0","340","360","","54","59916E1A-E390-4647-A47D-1190C10662C6","0x00000000002C4875" +"52AFC297-7F11-4DD7-AD5D-DF719D77F614","91","EB-090","0","200","480","","109","D514124E-7534-48C4-98F1-119C9FA25F2D","0x00000000002C4876" +"73E15E3F-DB69-424A-910E-4C77AEE1B264","83","EB-082","0","816","896","","98","0A3286A5-23A9-48FC-9C34-119F047F04DE","0x00000000002C4877" +"41C38F67-43B4-4A49-A2C1-7A28AA9CCF37","","BC-0131","0","340","360","","5112","5289AB77-A9A1-4730-95D8-11A9342ECDDC","0x00000000002C4878" +"1E9356B0-EA4C-4C72-8610-CD645F2D5C69","","AB-0131","0","353","603","","2665","CA9673AF-48FC-4C53-BD32-11D3DF5D9034","0x00000000002C4879" +"F690649A-1CCB-4640-9DD0-5F0461173695","","NM-25042","0","720","747","","3500","21A95564-3C9F-4343-9C03-11DEFAF63DFA","0x00000000002C487A" +"F470DBB8-0ACD-4C37-A207-B042696E3E8F","33285","EB-581","0","520","580","","627","4A06E82F-9C9E-4F41-BF4F-11E2F3110777","0x00000000002C487B" +"CA7C76AD-9D10-4756-86E6-D06BF36DE390","","AB-0094","0","150","160","","2634","36892E09-60B0-4777-885D-11E73CC2B649","0x00000000002C487C" +"0930A01B-CADA-489D-83B8-D3369404985C","33730","SM-0201","0","880","940","","830","84177CFE-AA89-4D2D-9FAC-11F25742A8E7","0x00000000002C487D" +"2539CF6E-0B5D-4B85-8F80-4A0451049B8D","","AB-0127","0","13","23","","2663","E64478D0-219B-4F58-B438-11F89805FD63","0x00000000002C487E" +"6D1717E3-5051-49D9-8FE5-F91B18B6D3E4","33286","EB-582","0","300","314","","628","FBF34EDF-85E2-4285-8D06-1212C8F6F055","0x00000000002C487F" +"3997B311-CF10-D44D-95B9-964AF2A490B6","","WL-0044","0","567","630","","5177","7CE54265-9696-D04F-8C10-125B99F58B29","0x00000000002C4880" +"6CA02302-78C3-4A5F-9947-6F6905EB177E","33339","EB-634","0","1100","1130","","682","664F9002-477F-49F3-B806-127A88B4D704","0x00000000002C4881" +"02154D83-CA58-4AD8-8E5A-EA9D7722B1B0","","NM-26950","0","340","370","","5296","82E37467-1443-0E42-A4C1-128EF3C91F1D","0x00000000002C4882" +"8B31C5AE-23E4-4F4F-BF63-23068CA9ACB4","47","EB-046","0","80","260","","50","3EE3F528-5E74-46FB-8988-12AC0417A08C","0x00000000002C4883" +"D3B9C597-3523-45B3-A3F9-D37325892305","231","TV-211","0","588","668","","1121","58594950-4401-408B-B382-12ACC3D0A392","0x00000000002C4884" +"1F31744D-B89E-3C45-8B52-DCF8BE344AF3","","WL-0060","0","240","260","","5203","ACF7AD08-5CDB-584E-AAEB-12C019CFE450","0x00000000002C4885" +"EC1304E4-C5E0-4E6F-8D7C-E5B3FD10A430","","QY-0766","0","130","140","","2993","8446AE11-15C3-473B-BB8E-12CA2B7EC667","0x00000000002C4886" +"4D210BF5-B0AA-41E7-AF3D-DDE5527C1A77","","NM-23288","0","220","240","","3282","43FB844A-D88D-4430-9693-12EA8BCCA7B7","0x00000000002C4887" +"0354B21A-7687-4171-BB06-E24E3014C23C","","TV-295","0","651","672","","2555","C6F657F2-AAC4-4A12-8191-13034B86F6D6","0x00000000002C4888" +"42B6B151-FFEF-4004-8D18-FC49C75F1B2D","33268","EB-548","0","385","465","","605","51A28F89-4B9C-427D-B77B-131F369FF047","0x00000000002C4889" +"127D9B8E-40C0-44E0-A72D-DBCEA8749B6A","","NM-21509","0","7.5","17.5","","3843","D50D890B-5294-4DCD-A2A0-135CFCC550BF","0x00000000002C488A" +"21AE72A7-9D6E-4AFA-9151-8BA7AF20F8AF","","AB-0231","0","260","320","","2745","59520182-5278-43E2-93BF-137FFA640D5B","0x00000000002C488B" +"E828E96A-783C-4198-85D1-8CBA6B834CB6","364","EB-360","0","360","380","","430","79997461-1A85-4F44-AE07-138A58464A98","0x00000000002C488C" +"CAD2B4D7-149E-4E8F-9409-C691B927D5C5","69","EB-068","0","255","271","","81","CAB2B667-AD82-43D4-8283-139C9ADED4FA","0x00000000002C488D" +"62B48770-E350-48F7-946F-22C9CDE61D7F","33275","EB-572","0","397","420","","613","3BC799FE-89EC-44F0-B570-139F988A4125","0x00000000002C488E" +"D687B428-3EA1-458F-BC95-C468DF60B13F","","SV-0078","0","370","390","","3373","B03C3873-5FF4-43E0-9D77-13B4A7750DE9","0x00000000002C488F" +"D2BD7756-DD55-410F-9EB3-E7907B499936","33354","SM-0035","0","165","185","","1223","6628B2BD-FAE7-4238-9F92-140EA304F3CF","0x00000000002C4890" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","","EB-692","0","600","800","","5461","6A828E3B-6CD0-8F4A-9FCA-1418F95376DA","0x00000000002C4891" +"9FF21A50-2B94-E444-99C4-51934D9DB9AF","","PC-030","0","80","100","","5337","9E85A8BF-06AE-7F42-A178-1422414FFE5C","0x00000000002C4892" +"5C02C604-9C9B-4CE8-ABF8-E6AB59518A33","521","QU-134","0","195","225","","1008","97FBF5A3-F087-4CED-A879-1431BBACE696","0x00000000002C4893" +"100939E3-0DD1-41D2-8F2F-C61443B26B5D","483","EB-434","0","215","248","","493","770198CA-F17D-4675-984D-14443C553F57","0x00000000002C4894" +"06F465FC-B484-49EA-A9DC-9D26BF776969","33354","EB-646","0","504","514","","695","3CCE2924-2D48-4CAD-8887-144BE6E13BE5","0x00000000002C4895" +"E1EA5EAC-49B5-485C-B360-D516A63ECB30","","AR-0001","0","11","31","","2946","597A4D09-D812-435D-B72A-145F8BECB2F8","0x00000000002C4896" +"A835D321-E889-B34C-BFEE-EF038744F99C","","LC-038","0","166","186","","5428","53C65636-530B-5443-A669-1463D241C0B8","0x00000000002C4897" +"136276F6-C6B5-4E40-8103-70D8880866E6","96","EB-095","0","297","302","","117","6A28EEBD-B2FA-4057-B25F-146B6861A1A4","0x00000000002C4898" +"6B8E54C3-0D29-D042-9369-E8ABDCEF0541","","NM-28307","0","80","100","","5494","CB7410B7-225F-E44C-B287-146E134A31A8","0x00000000002C4899" +"FF79EEEC-AC7F-4858-9819-3EA175D0F10D","176","EB-175","0","770","870","","217","095AC223-E56D-4F5F-9397-147D1A56C410","0x00000000002C489A" +"52936F3A-E1C7-4279-8150-1506B570CC91","","NM-01582","0","36","46","","3441","5333F222-C0BC-4B74-8A78-149BB8079295","0x00000000002C489B" +"477A4688-C218-49C6-9B8D-A48888769403","","AB-0190","0","1139","1179","","2712","61035720-50AC-4E47-8678-14B50C222153","0x00000000002C489C" +"8E01FD70-D8CE-4233-9285-40CE5B55BBF4","237","TV-217","0","1492","1655","","1126","F6EC1413-E84E-4F3F-948C-14D74BC36B25","0x00000000002C489D" +"4A3F5FA6-B3B9-487C-8EAE-6D8B338CF2AD","","BC-0110","0","300","320","","5044","786300FC-E0B4-4263-848F-14F815F8C184","0x00000000002C489E" +"4EFA6847-0C70-4817-8DAB-FD789B4AFAB7","","QY-0427","0","128","140","","2971","2513BEDD-5C02-4945-AFDC-14F871DF9C4F","0x00000000002C489F" +"675DAE2C-C151-7745-99D1-DA7B15F77F78","","WL-0051","0","100","140","","5179","92F4944D-AD05-4240-B431-1522E89B373F","0x00000000002C48A0" +"E8B0D391-328C-42C0-9426-20D03C32B6D3","405","QU-070","0","163","183","","1001","41CF50F4-8EC3-4CDD-AE0E-155D124ACFC0","0x00000000002C48A1" +"B776EC35-ECDF-4C09-98E5-B5370A23B63C","","SV-0025","0","75","95","","3316","625DF9D2-26BE-4C5D-8335-156E1A7EA4A5","0x00000000002C48A2" +"5B7DD296-A8FA-416E-AA61-43034D2523AB","","NM-23363","0","345","365","","5201","0D813C3F-A28B-7543-A549-15797759D047","0x00000000002C48A3" +"72786592-067E-4B58-BAE1-A429F4266B8E","568","GT-016","0","25","45","","1340","0517D247-2B79-463D-8647-1582733E3A9C","0x00000000002C48A4" +"3D1EB175-F205-41F7-B163-1724878BC3DE","211","TV-191","0","760","920","","1109","445C5D48-E367-438C-B700-15A38BD76A61","0x00000000002C48A5" +"45C5CD4E-989D-4939-B928-9C4EC7A27F37","33250","EB-509","0","80","120","","588","35517C2C-9B67-4384-8DB9-15A8595AFED8","0x00000000002C48A6" +"4A3F5FA6-B3B9-487C-8EAE-6D8B338CF2AD","","BC-0110","0","260","280","","5043","6741995C-754C-4CAA-B772-15ABF7F51B5E","0x00000000002C48A7" +"F034F55B-EF1A-4CEC-AFEE-88CAE3C3470D","142","TV-122","0","100","160","","1059","4D003E02-69DD-43EC-B2BE-15D21EBB0D64","0x00000000002C48A8" +"8D2AB2E2-15E6-45D5-8A3C-D8F5D169185E","","BC-0126","0","340","360","","5107","C555A4B3-A2BD-407B-B7EB-1615D400D3B8","0x00000000002C48A9" +"FEBA2C3F-832A-4B53-B4B0-CF7F6689B6C5","","SV-0118","0","340","360","","3417","B773ED28-CC70-4D76-A77B-162281A467F6","0x00000000002C48AA" +"D35AFAEF-5C58-4F09-B49D-174555D41786","","NM-01654","0","169","335","","3754","3F830E78-17B7-4500-8035-16365ACC6CC6","0x00000000002C48AB" +"2B9FDFDF-493D-471E-932B-AFD865F8A0FB","30","EB-029","0","70","","","33","5432E59B-3DA4-4434-AB01-163A641929AB","0x00000000002C48AC" +"891AD311-D404-476A-92A8-1C73C9162ED7","","QY-0452","0","65","185","","2974","28E4D792-6766-4FE8-80D5-163CC9BD1D05","0x00000000002C48AD" +"32A34362-95D8-46DD-9F9B-FCA6BE46EC38","","SV-0050","0","320","340","","3348","B0B22982-6A02-4149-9E3D-16427E5232BA","0x00000000002C48AE" +"1102ED7B-8D83-486A-B0F6-D93618546859","","AB-0205","0","269","279","","2725","C94C8A13-43B1-4C47-8329-16547277AA25","0x00000000002C48AF" +"66D4E6F5-844D-4C06-9EAD-CE561E9151D5","387","QU-057","0","150","190","","965","CC1A4D1B-DD0E-4EF9-A434-1656258C0948","0x00000000002C48B0" +"151A3F37-FC1A-4675-A19F-179A55DDF2FC","","NM-04366","0","85","165","","3111","4EA38E2A-38C0-4D6E-94A5-16703653EFB6","0x00000000002C48B1" +"AD10F4FE-528A-448B-952A-0895603C465D","","TB-0084","0","235","275","PVC with 0.032 inch slots","5517","2D369BEA-2E78-F745-AC67-168B5C59305E","0x00000000002C48B2" +"15DFA01C-56CC-4987-A682-015F41FC4CC7","","AR-0099","0","18","23","","3021","159D4DCA-1E44-41B3-A249-168B9A741ABC","0x00000000002C48B3" +"02D4CC66-3B9B-475B-B2F8-095D6D1945EB","","NM-01254","0","621","622","","3073","E0D55A51-89C6-41F7-98AA-16A017EAFB33","0x00000000002C48B4" +"90E46C50-5010-46F5-9AA0-A98F57413030","","CP-0031","0","100","120","","2941","8BE0EB64-5465-4698-A334-16A61D2A9DAF","0x00000000002C48B5" +"2F8CD42C-75B3-4482-B39E-45DC4D729110","99","EB-098","0","680","700","","120","85E7CA05-5B59-4B66-ACFF-16BC61325C6B","0x00000000002C48B6" +"C8CB8F7B-E3A8-4B61-9DA6-59D4E350F7E3","172","TV-152","0","997","1187","","1081","F9C1D13A-2E6D-4B29-B96B-16BD1E2CEC21","0x00000000002C48B7" +"CE23A336-0B6F-48BA-B64C-98C49F60330F","191","EB-190","0","260","280","","241","1079322F-3FB4-45F3-A539-16C6C136042F","0x00000000002C48B8" +"2AEA2BD9-100D-4E1C-9D8A-DF3D1757B29B","443","HS-061","0","49","69","","1208","1F27C83F-4281-441C-9DAC-16D31B8E3927","0x00000000002C48B9" +"DD07335E-2480-44AD-A7A3-8F9A02A10313","","NM-26883","0","515","535","","3933","98A17A57-1B9D-439D-AF6C-16EEA01E39EE","0x00000000002C48BA" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","40","80","","2885","FF26BA35-2156-408C-9450-16F7B19BABD2","0x00000000002C48BB" +"B2DCA77F-32D1-4E9A-8E79-EE323F022A27","258","TV-231","0","151","191","","1141","746EAFFB-EBF6-40C8-BFBA-16F9F6264E4B","0x00000000002C48BC" +"811C768B-B682-4683-BAC7-277FF0184C47","","BC-0260","0","365","385","","3549","B98D5137-3E9F-4BF5-BC34-17117687062B","0x00000000002C48BD" +"6DBD9931-353B-4960-B0D4-00FBC21135A5","","NM-24770","0","71","74","","3649","C9F8F9A9-40C9-4917-BBA8-17120A2B17B4","0x00000000002C48BE" +"9488EFF2-AA28-E743-9C70-3695D767C548","","PC-059","0","20","40","","5361","80BDAD2B-0467-7A4F-A82A-171D8233EC78","0x00000000002C48BF" +"257ECA6C-62C4-4E47-8ED5-77B2E7D1A6BE","179","EB-178","0","180","190","","220","5661F823-AD9D-4968-9182-1729A4AE3DC1","0x00000000002C48C0" +"45C3BF3E-BFC7-4585-9B53-C8B5B986793C","","BC-0146","0","718","758","","5119","149EB995-11D5-42F0-A516-173C65C6E84C","0x00000000002C48C1" +"D8DBCE6F-5429-4831-B2F6-281604C486EE","","TC-268","0","220","251","","2139","F327B040-06C5-4C6F-8901-173D24601F72","0x00000000002C48C2" +"E53C72C4-816F-4ABB-A9AA-21595BE820A9","","NM-21483","0","280","320","","3842","9BD90954-7D1B-43D4-BB9E-1747C97D0231","0x00000000002C48C3" +"56257F1B-CF6A-426F-A4EE-C1AE3AA86878","","BC-0452","0","455","555","","5767","57190DD1-5799-4481-87EE-17608DDDA65A","0x00000000002CF3A8" +"002001DD-5E06-4B9F-BE88-815E51D8ED13","","AB-0228","0","486","506","","2742","24C49571-77B7-49D2-86A4-176251FA23AE","0x00000000002C48C4" +"58794B9E-328A-4F49-A9FD-0314C178CFCB","","PP-023","0","65","105","","5263","41414D6B-19DC-884E-A464-176CF8288464","0x00000000002C48C5" +"74CC7281-11A8-410B-9B79-480B471A8F56","","SV-0089","0","230","250","","3385","6E04479C-9C4C-4056-A28D-176FFD5F270B","0x00000000002C48C6" +"DD16ECB6-AE7C-4F28-A935-E8CEF42F0512","","NM-25236","0","405","422","","3449","43697954-4E50-4C8F-A8BD-177BDF41BCB0","0x00000000002C48C7" +"0C6ACD57-0ECF-40F2-8DED-99E6D37B1029","306","TV-270","0","360","400","","1176","553DADF2-C23F-4420-8C36-1784195A99B6","0x00000000002C48C8" +"31BBF475-2DC2-4A86-B990-27EE15714604","","AB-0170","0","312","984","","2697","29E90535-2CE8-4BBA-9820-178690E6764F","0x00000000002C48C9" +"62A2A4E6-FC69-4D54-9BC7-F6B943F741CB","","NM-01405","0","230","270","","3041","10A829A0-B32F-4CB4-A4DB-17C0F97F6134","0x00000000002C48CA" +"97918FBC-CE75-284F-9B29-E61D89D9CDE2","","PP-069","0","80","100","","5254","BBAA5599-04A8-E946-9F04-17C6F2774A67","0x00000000002C48CB" +"EA80F27A-28D0-4CF2-AB7E-2BFD286B57C9","484","EB-455","0","232","246","","516","62D9EDAB-1F36-4940-961B-17E9A9D35414","0x00000000002C48CC" +"7EB0B0C1-B05B-4717-B7F7-89D0CCEACC11","","SV-0102","0","160","200","","5219","AAE4216D-2FF3-6645-B796-17F87141BC25","0x00000000002C48CD" +"257ECA6C-62C4-4E47-8ED5-77B2E7D1A6BE","179","EB-178","0","277","302","","221","96F489B0-01E3-4F6D-89D9-180162D05463","0x00000000002C48CE" +"05260CA7-BE68-4FAD-83F0-79A5A622B70D","","NM-21287","0","160","165","","3824","65DD6333-D4AB-4D79-905B-180E6F3130FD","0x00000000002C48CF" +"5F8D0B2A-02E9-4793-9238-935CB23CB587","","NM-24656","0","344","374","","3697","1C620E98-C2F1-4425-B4A1-1845E1E765B5","0x00000000002C48D0" +"E0A3159A-FA07-4741-946D-9270AB926544","","SV-0113","0","320","360","","3410","1DA0CA07-8FEE-4FAE-9237-18557905F7BA","0x00000000002C48D1" +"5B6B497F-6B19-9544-834F-A9006621E9C4","","PP-068","0","12","34","","5286","EA91E61D-A67A-F043-BF1C-1858C83B6C3D","0x00000000002C48D2" +"C50EE55B-6033-4764-AF6F-1E677A0FF7C8","","NM-04102","0","188","208","","5617","46481225-773D-334C-AB63-1890D3682F74","0x00000000002C48D3" +"D60C817E-0197-4702-B557-67A5C7F79B63","280","TV-246","0","325","380","","1156","59902426-1EF6-422B-9814-18A0AC460743","0x00000000002C48D4" +"3DBB8C92-D45C-4191-8BDB-E33BAFF25F01","","AB-0213","0","318","323","","2733","69D60922-2F71-4129-81AA-18AFA2C2652B","0x00000000002C48D5" +"E1259146-372D-4E15-8F27-51BCF13A0E2A","","NM-09841","0","71","105","","4974","7259D909-D1B0-456E-AE1A-18E3BD2DF5CF","0x00000000002C48D6" +"42B2794D-CAA9-4E1A-AABD-A619806D4D8F","","AB-0248","0","23","99","","5755","9394CB4C-F5D1-4FB3-BED7-18E8E9C4F63E","0x00000000002CF386" +"B1D5D0E0-AC77-49B1-8390-8E97DA541AAB","","NM-00376","0","70","130","","2873","27396F92-CF39-4FBC-923A-18ED6CA260CC","0x00000000002C48D7" +"29DAB3F4-2540-41FD-95D9-A4C99650DCDA","350","MG-022","0","120","160","","916","E831A8D2-1160-483A-94BA-18EEB690789F","0x00000000002C48D8" +"217FE465-49F5-E44D-BFE1-460AB83C8CBC","","PC-010","0","410","430","","5317","4BDBB8C7-F5D0-A747-8732-18F361DB0461","0x00000000002C48D9" +"1E27D229-81CE-40DF-8EF6-1F0C58A2DE53","","NM-03409","0","528","1056","","2826","958722ED-59A1-422D-8164-18F3DC63878B","0x00000000002C48DA" +"0B917E9D-8BFE-4AE2-8B63-5443A6E24B34","33382","EB-671","0","660","680","","718","E3ED4030-3B7A-40A9-88FD-190565179075","0x00000000002C48DB" +"30A04A76-0676-4484-80EA-120679068D1E","","NM-24747","0","109","112","","3654","607135E2-4F68-481A-B570-190EEB709639","0x00000000002C48DC" +"7F1ED6C5-1A63-4FE4-B414-451837B8E16C","184","EB-183","0","400","540","","228","4D02BEC5-C268-47A5-A0B8-191765A9E817","0x00000000002C48DD" +"DDEDB57F-2707-4E88-A111-553D167A5A78","79","EB-078","0","345","365","","89","CDC21EC4-0AE1-41C1-96F3-191E62B8346C","0x00000000002C48DE" +"AD583087-0B9D-5A4A-A59A-57790003637B","","WL-0169","0","35","43","","5519","1D4B49BC-FAFF-734E-80EA-192162A7206B","0x00000000002C48DF" +"947F716C-94AE-462D-99B2-9835742750CA","169","EB-168","0","660","680","","207","3A927843-EBD2-4D8B-9FAE-19263E38960A","0x00000000002C48E0" +"DC390227-1D0A-4079-B2C6-7E476BA327DA","","AS-048","0","132","152","","1536","64AF07ED-71F5-4D2B-A59E-193200605BD5","0x00000000002C48E1" +"A9073F78-12B7-445E-BDDA-F94189E4C606","","AH-106","0","200","250","","1793","31227212-359B-4D3D-958B-195B2125436F","0x00000000002C48E2" +"A492D44A-7093-4C93-AC50-EE9A92E2EF87","","AB-0090","0","468","996","","2630","C6DD63C6-B153-46E3-BF63-1986709EF07B","0x00000000002C48E3" +"E5EA95E3-F425-445E-BB7B-0423CE6DFEBC","","AB-0091","0","1200","1240","","2631","90E6487C-685B-4E36-A074-19881C2BBA18","0x00000000002C48E4" +"E82AF49D-4D17-4C8E-A7FE-4B63AC1D45AF","","AB-0189","0","510","530","","2711","39A9DA51-9122-4F73-B841-19A1F2352312","0x00000000002C48E5" +"5BD98BA7-83F6-49C2-8FA3-56EDA4FDCB68","","SO-0142","0","6","21","","3140","C903BECB-E72A-41FE-9C48-19AA1EA47A79","0x00000000002C48E6" +"6E65D15A-A8BC-41E4-8304-C20373D91187","","AB-0125","0","200","380","","2661","7BE79ECE-499F-4014-9FAC-19BF998B00C6","0x00000000002C48E7" +"62B26ACD-52A6-4BE8-ACB4-84E866C80CC1","","NM-01461","0","384","387","","3059","1E9FB652-9EE5-450D-9279-19D48192D5EF","0x00000000002C48E8" +"90EA93CF-C524-4242-B849-A07A9967DF4B","365","EB-361","0","460","500","","431","ACDBAA16-14E8-4F27-9AE7-19F3495592B4","0x00000000002C48E9" +"4582E02C-BBCB-4C5D-AE8A-D40420FC8452","33309","EB-605","0","1220","1230","","652","1FA35FB2-F490-4BA6-9396-1A15A47EF74D","0x00000000002C48EA" +"5E8D80B4-E64B-4253-811E-86EABF85B6F2","","AS-058","0","880","960","","1546","B75CBEA4-FD4F-47C2-A0EA-1A186FAC9A2D","0x00000000002C48EB" +"29085EEB-755D-4C1B-8352-EDD6236E5811","","BC-0055","0","120","160","","4991","CDF04E9A-6EC2-4B8B-8405-1A28D5BC902E","0x00000000002C48EC" +"92CD908B-4951-164E-A026-A062F59B2D7A","","PC-132","0","415","455","","5418","3C1110D5-D5F0-4145-BCA3-1A4E9E654285","0x00000000002C48ED" +"20A036FB-CE3A-45AF-A5AC-18B4560AB554","33360","SM-0011","0","330","390","","754","C17A18F3-018F-4693-AF8E-1A58A4857989","0x00000000002C48EE" +"9F55CC74-B98F-45F0-90A5-F8413FE3A5F9","","NM-21426","0","380","440","","3838","02BACFDE-4A7E-4C69-B8E0-1A6146D7DF10","0x00000000002C48EF" +"42D7A3BF-1AEB-4246-BD66-5A2D0DB1FA08","33352","EB-644","0","640","650","","692","160F5E0B-1486-49B7-83E0-1A66E4D6F7E0","0x00000000002C48F0" +"997398C7-A2DE-44D8-B309-A8480C673D13","","AH-031","0","440","460","","1586","E1463725-DE39-4963-B3AE-1A96A5A06606","0x00000000002C48F1" +"10DCACDE-8891-4171-8762-14C60D69A208","","SO-0163","0","6","16","","3161","6434458D-23DB-4A8B-BEB0-1AA385D99EDD","0x00000000002C48F2" +"A16601B1-9811-447C-92B3-449F22CABBF5","","NM-25154","0","180","190","","3455","9EB87C02-F8BE-43E7-B99A-1AB41CE267EA","0x00000000002C48F3" +"9DED229F-C373-4CD9-A453-D296E90BAE7D","","AB-0070","0","238","258","","2613","7E6F7E52-F709-47C7-A6E1-1AC0444EEF39","0x00000000002C48F4" +"1C38AC91-89BC-4620-A917-357BBE9333F5","","BC-0225","0","15","90","","3523","0ABBF95F-6FF2-4D39-AEE2-1AC396B677BC","0x00000000002C48F5" +"7F9D0FC6-CD41-44E1-919C-457D8ABEC415","","SO-0231","0","37","62","","3235","6E60D097-4A08-4FEB-B9D2-1AF2951664D8","0x00000000002C48F6" +"5D60A341-18D6-4300-A4FD-9867A256ECFC","","NM-24645","0","320","340","","3702","37B558FE-6188-4280-8C13-1B04E409AD6E","0x00000000002C48F7" +"DC27B8FB-8A04-42F2-8FFE-9DA2683135BA","","TC-212","0","389","419","","2108","C3D399A9-5AC6-4FEA-8377-1B17BF0F2E49","0x00000000002C48F8" +"E20E7213-8035-C347-9C1F-4CB410861850","","WL-0304","0","280","300","","5739","23EB5200-D8FE-804F-A6EC-1B2A710B2F33","0x00000000002C48F9" +"6D4B1875-3E61-F14A-9B1F-7EA9CE54DBC5","","WL-0264","0","388","428","","5698","9FBE6BAC-C536-534E-BC26-1B2F8BC46CB3","0x00000000002C48FA" +"29862CBC-EB7C-4221-A3C3-7AA71947ABEE","33320","EB-615","0","860","880","","665","7FBE13D0-0AA2-45F2-95C8-1B55A33E9A3C","0x00000000002C48FB" +"CFEC69FD-11DC-4179-AA8D-10F7D8BB7C6E","33331","EB-626","0","1650","1670","","674","7F004E05-52E1-4FFD-BE0C-1B72C06D8DBB","0x00000000002C48FC" +"1CE2CBAF-0007-401B-BA1B-17534F9539A2","","BC-0099","0","13","33","","5036","0088B56D-49B5-44FB-B7E3-1B784CFBA14F","0x00000000002C48FD" +"C7068373-794F-4F01-9468-35C16722DCF0","","NM-27028","0","210","230","","2943","7CA60414-5025-421D-8F0D-1B7C28A92F90","0x00000000002C48FE" +"A9A53B58-6A74-4264-B44C-7F683D7CCDB2","221","EB-217","0","260","300","","275","53DE0BB6-CE38-4908-ACF4-1B7E2860F7EA","0x00000000002C48FF" +"24225621-5F19-4182-B488-9E07078C34BF","155675","TB-0170","0","42","84","","1296","EAFCC5A0-3F2C-44DC-90F5-1B80D78CDC58","0x00000000002C4901" +"7F5D0092-7C02-264B-9243-A46FDD3F64B9","","WL-0096","0","230","170","","5439","31B4A0A2-11D7-B34D-AEC6-1B88110F392C","0x00000000002C4902" +"D198891C-388C-4B33-9AE4-6108DC53E2F5","","SV-0055","0","460","500","","3353","81D8CFFB-709D-4D2A-9C7F-1B9BA8085BE6","0x00000000002C4903" +"1E4B5314-8689-49AF-8BCC-88939D74C6FF","","AH-040","0","506","546","","1595","EB72C58E-0FA5-4CFC-909A-1BA040173D25","0x00000000002C4904" +"01C02972-D703-447A-8D53-4CA477DF358A","","TB-0309","0","180","215","","3130","894C4247-8916-4732-B70D-1BE95379AD28","0x00000000002C4905" +"2199C56B-FD4D-4633-9CC4-AD8A4CEAF080","136","EB-135","0","73","112","","168","26881CA9-CDA7-4FB0-8A4B-1C4244165DB4","0x00000000002C4906" +"A6D35286-68B9-4F6A-BC67-1877EF0563E7","408","EB-404","0","70","85","","460","01D4C0B6-F2B8-4261-83E9-1C4D17F9E71D","0x00000000002C4907" +"0B95575E-AEC4-4A33-96FF-9C7F7F5EEB9F","","NM-03353","0","25","65","","2787","6FC3DB46-A883-4B51-A0C6-1C53CA1E6279","0x00000000002C4908" +"37FF03CD-E2DF-4659-AA83-07A47C37CCB9","","SO-0155","0","30","49","","3153","A419F721-ADC4-4E0C-A6A7-1C9407A05C46","0x00000000002C4909" +"71BEF70A-822E-47BF-BAB0-34B9FC9A5BFA","","WL-0015","0","205","245","","3797","90463856-71E0-4592-8F65-1CA6A13C84A7","0x00000000002C490A" +"F90A5E9E-9681-4D61-B283-E9DA5EBA5927","33389","EB-677","0","210","290","","729","99573CC0-5C66-49CB-A3C8-1CCE917DB543","0x00000000002C490B" +"5ABDAA04-94AF-4DAE-8DA3-44A19BC5A942","527","QU-140","0","40","70","","1014","6A5E4E16-AC49-43F7-9FAF-1CEA6AEBA5A7","0x00000000002C490C" +"4422AA20-925C-4F69-80F1-06FAF3BACB90","","AB-0194","0","598","638","","2715","9652E9B4-4B69-4F46-86F4-1D236857BD25","0x00000000002C490D" +"38BCD2A8-E17F-44AB-99E2-CB1A74AB73DF","155537","TB-0074","0","280","340","","1263","6075AF59-9164-462D-9947-1D41E6032D53","0x00000000002C490E" +"BEBB94CB-ACBE-4FEE-A877-681FB198AB3F","","SO-0164","0","44","50","","3162","CFF4D5A7-21AF-4D99-BA07-1D67D6398BE1","0x00000000002C490F" +"C81C6EF4-5BA9-4F06-AA91-DAF817EE7B90","","BC-0041","0","215","255","","4966","807C1DCB-5225-4C31-A971-1D6C9B4933B8","0x00000000002C4910" +"FFB30470-DB28-4EA1-BBDD-07814CDB9AF7","33514","SM-0069","0","570","590","","792","7DBF40CF-EA55-4165-9D4A-1D8D569BD612","0x00000000002C4911" +"FAB722E2-63BD-46EC-95C5-4A1D5E91A228","333","JM-034","0","20","40","","895","E3E961AD-7243-4FBF-A73B-1D939B5B3FC0","0x00000000002C4912" +"98F4D9DF-7D79-574E-B214-1C147FB470DE","","WL-0151","0","13","28","","5499","7F5E5991-83CC-2A4B-B089-1D9D38D73996","0x00000000002C4913" +"87C80A49-FE0A-467B-A161-D6CEF746A18C","","AB-0061","0","449","500","","2606","1BF28EB2-E3FB-4612-93BE-1DBF37445079","0x00000000002C4914" +"58C71FA8-C1E7-4A28-836B-95070877077D","","AS-039","0","105","145","","1527","861ED553-1FE6-4CBC-8C2E-1DBF3F3BE4B3","0x00000000002C4915" +"2CC7A368-8E48-4AD1-BA5D-C930BF18BF7B","","NM-01326","0","145","185","","5492","BA569BCB-D2CC-D942-84F6-1DE0BB650AE0","0x00000000002C4916" +"443DFBED-612F-4FCC-9644-E2B35B8E14AB","450","EB-445","0","1100","1160","","508","BB831EFE-245C-411A-8D52-1DF12342B4D9","0x00000000002C4917" +"58686880-B818-4AFE-804F-E2A9485A1460","","NM-08418","0","211","191","","3899","0BBDAE73-5CFE-4929-8D54-1DFF8B2F81BA","0x00000000002C4918" +"FAD8675A-BCEF-4668-99F6-A9828E743342","","NM-00517","0","70","82","","4952","8B2D7BB3-BD12-4A3B-BB48-1E01711DB8A2","0x00000000002C4919" +"00746B65-39DF-4018-9A4B-C90277A1DD22","33340","EB-635","0","770","790","","683","9E61B485-C80A-486E-A417-1E047A9AF23E","0x00000000002C491A" +"D8BE78C1-95CD-494F-8932-FCB1A8FBDA3E","244","TV-224","0","60","105","","1134","B9AB41DE-E5D1-4343-884E-1E12A2FC0D09","0x00000000002C491B" +"D1BAD03F-7A13-4835-A1F5-BB3BE38FFA97","131","TV-111","0","80","125","","1047","801DAD49-0BEF-496B-AC42-1E21ACD48E77","0x00000000002C491C" +"224F61BA-85E9-44E3-9B63-8B7C5A91DB32","109","EB-108","0","860","880","","135","7A62535C-9E16-4CD8-99DE-1E232A29E98E","0x00000000002C491D" +"3736EFC8-40D5-4476-8D94-8844B3D0F606","","AS-065","0","220","320","","1552","96500387-296F-4EC1-AEF6-1E4AD0C72CDD","0x00000000002C491E" +"26670F65-4B3C-4C0C-AD77-A8A34DCCEE6D","","SV-0076","0","330","345","","3372","D252FE7C-6582-4930-B6FB-1E777857C846","0x00000000002C491F" +"947783E9-BE3D-4B3F-A4E0-33A53321A185","","NM-24855","0","180","240","","3629","BCA54B13-D88B-423F-9567-1EABF72E03F0","0x00000000002C4920" +"FBF0E520-4521-4529-85DD-03CC008819C1","","AH-001","0","250","290","","1559","21FE8987-C865-4025-8835-1EB7D0176AAE","0x00000000002C4921" +"A604B13C-03DC-4906-AEB5-ADF7C6417B5B","396","HS-036","0","31","41","","1204","663CF87F-60CE-45D5-983B-1EBA35CE8A10","0x00000000002C4922" +"80DC027B-FCC8-4DCC-8B24-7692FB763B50","","NM-25149","0","560","680","","3771","959F5CDB-6CC0-4F1D-8160-1ECE16CF1488","0x00000000002C4923" +"A1A7BACE-A3B3-BD4A-BBE4-5B9B3C60FC25","","WL-0290","0","220","260","","5741","BE713254-BF5A-AE47-B417-1ECF2987946D","0x00000000002C4924" +"87807B52-743B-498B-9ABC-F0BCF1906727","479","EB-474","0","370","450","","551","B255042E-8367-4208-B080-1ED23DCC5D2E","0x00000000002C4925" +"E595E3B7-6E0A-4789-A8A2-3BC0F3DF57E2","","SV-0082","0","450","600","","3376","9E568C4B-6507-446B-A61B-1EDD848ACC8E","0x00000000002C4926" +"AFC8450A-FB1C-4797-B628-E83AB1DCC4B1","","NM-05335","0","200","400","","3875","C0F83F54-2C5A-4728-BB37-1EDDB89C4ECA","0x00000000002C4927" +"AB57B1EC-7F92-46DE-8473-107BA50239EC","","NM-00774","0","1132","1152","","3746","F22A1628-1CD5-407B-B23B-1EEAA63D369E","0x00000000002C4928" +"4BA9013F-ECE2-427D-804F-274F62CFCD39","155605","TB-0142","0","235","395","","1291","F46C65A7-AA5C-4696-9D3F-1EFD2E428A27","0x00000000002C4929" +"5EDB6835-18B5-463E-B68A-B0CD9E756601","476","EB-471","0","400","650","","548","FE6A12F9-5E49-42D8-87AA-1F14C26B4606","0x00000000002C492A" +"ED853387-9ABA-40B0-9562-516A514DDF94","","NM-01422","0","260","300","","3051","67077175-26C8-4876-8E31-1F1A8E43660F","0x00000000002C492B" +"633D1848-972D-4E3E-B44F-40CECB00C95D","","QY-0831","0","208","238","","2994","33556AEA-28B5-4E1F-B5E0-1F3372B1E28B","0x00000000002C492C" +"DAB6981F-AC34-48A1-9C2A-0B1B12676ADB","","BC-0183","0","460","500","","5153","5B1DDD95-9AD0-4093-8197-1F47C4BF2248","0x00000000002C492D" +"07F95EB3-9F71-4669-87E5-36A1B1D2543A","","SO-0154","0","78","83","","3152","C1803982-B5AD-4550-BD29-1F504EE34FB1","0x00000000002C492E" +"B4E804E6-090A-2342-95F1-47E466C2D96A","","NM-28327","0","345","425","","5507","77010CB6-2CA9-2A49-B775-1F59FD1895D8","0x00000000002C492F" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","826","837","","2928","F93A7C57-1B08-4FA9-BA72-1F5A18D38DE2","0x00000000002C4930" +"42D7A3BF-1AEB-4246-BD66-5A2D0DB1FA08","33352","EB-644","0","680","690","","694","F977ED15-A73C-45C2-A604-1F5D6A40AACB","0x00000000002C4931" +"097C7F91-1901-43AA-8474-2A4D4D5D6376","","NM-09220","0","150","170","","5545","FC9C0749-8915-9A4A-A96A-1F62CF788BA3","0x00000000002C4932" +"2B405217-9FCB-47F3-9C6A-612D38AA93A7","33221","EB-535","0","280","300","","603","5BB93798-FCDD-40E4-AC3D-1F6EA0315A1C","0x00000000002C4933" +"2965025B-5E04-42F1-9206-2A4F85F186FF","","TV-296","0","487","508","","2556","CDCB40AD-B762-4B86-8F20-1F846D619BC7","0x00000000002C4934" +"89F0B0F4-9519-5B4D-BA0F-ABF3E898B5BE","","WL-0244","0","438","480","Open, uncased hole; limestone","5671","80A95D43-377B-0849-A539-1F84F0849ECA","0x00000000002C4935" +"986F1540-2614-304A-B531-334B0CA99A99","","WL-0293","0","300","340","","5738","4494AF61-D985-5042-A6A0-1F9064062EE6","0x00000000002C4936" +"3E26FD1B-4980-4203-BC67-F34A4A84162D","","NM-24888","0","387","407","","3615","E1A5ECF5-1125-4AD1-8FA9-1F96BA2C0F71","0x00000000002C4937" +"32881328-21DE-4364-B995-9437E1B5BE06","","AB-0118","0","238","258","","2654","9F0D155E-DAF2-414C-BF3A-1FCB1280CD7D","0x00000000002C4938" +"B7319EF0-609C-4642-9327-A67E3AFDACD5","126","TV-106","0","870","970","","1040","8BDB9F60-5CBB-4413-AED1-1FCD917A3496","0x00000000002C4939" +"8D2AB2E2-15E6-45D5-8A3C-D8F5D169185E","","BC-0126","0","300","320","","5106","0BE4CE7D-CD06-4DBF-9CBF-1FEEFB1264D3","0x00000000002C493A" +"4CFD5DC3-7019-4837-BC20-D1BFEA4D12D8","193","EB-192","0","59","80","","244","67E79650-DE0E-4376-BD8F-1FF0CB8DD730","0x00000000002C493B" +"94B77BFD-6AD3-47BF-93B7-11DBD4FD9888","33230","EB-528","0","399","409","","601","71A4822A-1C15-4F82-B638-1FF934F695FD","0x00000000002C493C" +"313A5EFF-4A33-4B13-A4D4-AF7ABF530E23","278","TV-244","0","280","320","","1154","67CEDEB7-0769-4E9B-ACFA-1FFF821609B8","0x00000000002C493D" +"19CE73CF-1DB7-4788-AE4C-D7861BF3ED22","302","TV-267","0","142","182","","1173","F03D7C9F-B79E-42E4-9876-2005836A5CF8","0x00000000002C493E" +"53134CCA-0930-4A5F-A266-BB89AA4FF53D","","TC-278","0","120","225","","2145","6E65470E-7E40-4F45-AF6E-201608EFBFCA","0x00000000002C493F" +"436946E3-7DAA-41F8-A293-9E57D9242ECF","456","EB-451","0","160","280","","514","B4C12017-E1C9-4097-B82C-2035E879AF85","0x00000000002C4940" +"8B3F762A-28F5-4A43-9957-BA335963A4EC","322","EB-318","0","160","210","","393","DCA16696-0645-42EC-AAB7-203600FF0C97","0x00000000002C4941" +"D307FC09-D9CE-4444-B57D-86B011B3F750","","AR-0048","0","24","38","","3272","25E2A375-BDE3-4FA6-B075-2036DA04EAAC","0x00000000002C4942" +"B5277BED-C9BA-4368-8437-595573FA5968","","NM-24352","0","425","445","","3597","A4E5D37D-5A0C-4776-A87E-2039B0766422","0x00000000002C4943" +"159A53D7-7C80-4778-AA46-E4FFB0BE2D92","346","MG-018","0","315","355","","913","F51F5630-4FEC-405E-997C-2054F1C44ADA","0x00000000002C4944" +"C128C35C-CC53-4BE5-90EA-28E344E6A4B0","","AB-0134","0","620","1436","","2668","ED0E4AD2-95A2-4233-9C92-206105F0F258","0x00000000002C4945" +"2F8CD42C-75B3-4482-B39E-45DC4D729110","99","EB-098","0","800","820","","122","2516783F-FE91-4B0C-905E-207BA5D6FDB1","0x00000000002C4946" +"D2946F22-6F90-4F48-B43A-A4BAE87BF64A","331","EB-327","0","260","280","","406","7B53059F-332A-4E4F-AE72-20A7F059456B","0x00000000002C4947" +"3330E028-C342-C94A-B1C0-021ADB5D8292","","PP-028","0","49","84","","5241","010966EE-081C-654F-B21C-20BA9CE6556E","0x00000000002C4948" +"40A535F7-46D7-4259-888A-C228DC836081","","SO-0125","0","4","19","","3264","A4611D0F-145A-43E6-86DF-20F9160824B5","0x00000000002C4949" +"6E5776AB-D8AE-44A7-94F0-60558A29B8A4","258","EB-254","0","120","140","","311","D5BAFF07-112C-4FA9-A281-21006723F160","0x00000000002C494A" +"4339E67D-4125-4429-ACA7-4915641569AA","","SV-0100","0","55","115","","3399","1410241F-D7F2-4757-83F4-2103ACC0B725","0x00000000002C494B" +"7BEA4149-AA27-4C36-882C-27F00332977C","","AB-0207","0","260","900","","2727","A3EBD8C6-2183-4DAA-A709-210C56032E65","0x00000000002C494C" +"333EA482-7A9C-45FE-897F-452790B6A87F","402","TC-240","0","391","410","","971","F9227C9C-E18E-49C6-9996-2110D245E653","0x00000000002C494D" +"5D74F5EE-EF4E-4370-9FDC-97CADE904D68","33273","EB-570","0","261","301","","611","EB48CABD-E142-4217-826F-213DEACF6E40","0x00000000002C494E" +"BF9361F7-AE1C-4A1B-BC8B-C9A89E37CEFF","345","MG-017","0","97","237","","910","D1E1559C-08F9-4899-BA86-21420AFD7DBB","0x00000000002C494F" +"1D6C6E64-2218-4E6C-A356-412F1FD94EE1","173","EB-172","0","353","433","","213","3A3B7734-69A0-4FA9-8BF6-214FAB46B5E2","0x00000000002C4950" +"E2B61038-C6BC-4BE4-A7E9-DBA92F5C6F57","","NM-26942","0","55","65","","5083","C3B74F29-AFE5-4BDC-B9B1-215221015432","0x00000000002C4951" +"30C782DE-46D8-45C3-8E5B-D95488B7D589","","TC-227","0","202","228","","2113","B939A1D0-917F-4619-8B6E-21548146D927","0x00000000002C4952" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","140","160","","2887","042F01A7-A6E3-4B53-ADB8-215634D58361","0x00000000002C4953" +"16B29A11-530B-4290-BD4B-2322B12EEDB4","","AS-002","0","250","350","","1498","4B8D3C1E-5541-4A87-9F5C-216DB7C1A95F","0x00000000002C4954" +"763BD9F6-29BB-43AF-8995-6A33046423C0","33290","EB-587","0","900","940","","631","5293784B-52DE-4F0A-AFD9-216E5A611D7B","0x00000000002C4955" +"FAB7FBDA-7C26-49F1-9102-DAFC459A8953","","NM-24761","0","320","340","","3651","DD0C0C14-76FD-4272-A047-2190E70C6403","0x00000000002C4956" +"80AED9B1-91D1-4080-8AC0-5CD080925CB3","","NM-00586","0","185","415","","4953","BB141205-E689-4ADD-83DC-21C1E4EE4BD1","0x00000000002C4957" +"DF1CC0C3-D167-401F-95B7-6A3239392985","","NM-21368","0","160","200","","3832","B6A80343-1191-4487-BDB4-21C4F4C02EA6","0x00000000002C4958" +"41415409-352D-42ED-B777-A5DD41A37A1A","","NM-01428","0","320","350","","3053","8B58A51B-040D-42E6-9E34-21E11CBA643B","0x00000000002C4959" +"961018AD-7217-4C2C-93E7-73255B884DB8","271","TV-237","0","1040","1240","","1171","1DB10D90-88CA-4017-B7FC-21F088415C2C","0x00000000002C495A" +"753B4E10-A71E-4ADD-BE67-7E2DE5200739","","TC-209","0","355","400","","2107","9BF6BFC2-D9D6-4728-BDFD-2212565C19B6","0x00000000002C495B" +"8CA771AC-3742-4049-AE87-45545C0D6322","","NM-24877","0","220","225","","3623","5587AD36-3534-4631-BB6A-222243A7C5A8","0x00000000002C495C" +"9295A19B-840A-49C5-B167-29001573F0F3","395","EB-391","0","200","220","","447","AF3DB3A5-1A25-44C6-961C-2227A1B4BC5C","0x00000000002C495D" +"B684F7FD-8B3C-4368-8E2A-F00ED3322BCB","","NM-09228","0","313","318","","5548","15CCB20B-09E1-A943-A9F4-223792DE964C","0x00000000002C495E" +"EFD6103C-D9D7-44B3-A61F-D80C076DCA2F","","NM-00979","0","200","210","","2915","81BAC2C5-F7D1-48B6-8C66-2248AF1B6038","0x00000000002C495F" +"0105A5AC-62B3-4579-96B3-5A22BC345ACC","","TC-247","0","760","800","","2124","A174F898-E556-44C3-80D1-2278693D646A","0x00000000002C4960" +"1E2A64C4-66E4-451F-B978-60720B8AE3B7","","AB-0074","0","1330","1335","","2615","A83D453C-5579-4C8F-B8C2-2279FE0A28BC","0x00000000002C4961" +"34E83A96-0621-DD45-801A-5ABEBD5568B8","","PC-095","0","120","130","","5386","CA0D4E51-B092-D04D-BA6E-228823B4A94D","0x00000000002C4962" +"AEFA1FE1-80A4-4807-99EE-1E8BA8700AEA","227","TV-207","0","540","598","","1118","5D6F9B6A-152A-45EA-969C-228CAF81278E","0x00000000002C4963" +"7CAF47CF-C522-4E8C-AFBA-FDDEB05DD251","","AS-0003","0","","","","5773","3DB1CA8E-3512-49BD-A91A-22AA08B1D129","0x00000000002CF3D3" +"4183CE7A-4531-4D45-9E41-595C7C3B1B4A","33321","EB-616","0","220","240","","667","71CC3BB1-DD2F-41C2-820D-22B40583F77D","0x00000000002C4964" +"FFD86B05-2DA1-45D3-AEEC-B2D1FE6516EB","","NM-00841","0","123","138","","5514","BDB99E03-F16E-124E-BD38-22CC8F032ED8","0x00000000002C4965" +"65F87DBD-925D-4F4F-B65F-E1B96CFADD0A","","NM-02067","0","100","425","","5579","E7979FCB-766D-A542-A084-22D239A9B074","0x00000000002C4966" +"557596A7-4F27-4133-8C52-E69693781A63","","SO-0254","0","4","18","","3258","D6FD35E2-EEE8-4312-A001-22DB7D8BDED1","0x00000000002C4967" +"AC4B0227-A5B9-4EE1-A418-01597DA8616E","181","EB-180","0","140","360","","223","3875BC27-8817-440A-9365-22E8F407BF27","0x00000000002C4968" +"E5A35F37-E8C3-44BA-A049-FC3558B28285","447","EB-442","0","400","500","","506","7E555303-894C-4258-9661-2303851AD418","0x00000000002C4969" +"69CFDF01-5C06-4B38-9BCE-F5F7B5CF46CE","159","EB-158","0","620","640","","192","6FD2709D-BFE2-46D8-98EE-23297B13EF63","0x00000000002C496A" +"305F1805-B9BC-4056-9662-0B662CDF4A48","","NM-04004","0","371","390","","3103","CC7F9D20-ACDC-467F-938A-233F012562A6","0x00000000002C496B" +"304BFFBB-EDE3-4E74-949A-C20488B9D59A","235","TV-215","0","380","420","","1124","AAE965EA-2375-439D-8418-2350E14D08A7","0x00000000002C496C" +"7A2A578D-60B0-48AB-BAD0-0F3419BF05F5","","NM-24927","0","200","214","","3592","7FE24148-BBE4-4B7E-94D3-2354196FD4F0","0x00000000002C496D" +"025F5773-1F5A-4156-83E1-9F944918DFDB","339","EB-335","0","100","120","","416","4F877234-A343-4634-B423-235AAD647DC0","0x00000000002C496E" +"D2488F76-834A-4271-B507-294FF5417E2B","334","MG-006","0","180","200","","931","DBC725C2-711C-4FA2-9F86-23787C6D9CB8","0x00000000002C496F" +"81738190-6AF9-413D-B1FF-8D0039454BDD","127","TV-107","0","932","955","","1042","39AD81F3-3A2D-47A0-BACD-238F4251B55F","0x00000000002C4970" +"DD605C91-5DA8-4E48-8069-F031258938B1","","NM-23561","0","620","660","","5294","72F3C0DB-7194-F04F-A74D-23A5F464DAD9","0x00000000002C4971" +"9B1C9776-1C1C-430F-83C8-9EFC31228E35","","WL-0028","0","80","160","PVC with 0.032 inch slots","5582","C55B91F4-F898-3046-80C3-23B18A711D1C","0x00000000002C4972" +"5EBAD076-05F1-4023-9B2B-AC3317B61DBE","","QY-0727","0","90","110","","2992","A7563D29-DB7B-4F70-8F9B-23BF72BA9F52","0x00000000002C4973" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","33411","EB-692","0","158","161","","743","EB8F8C32-A7FD-4AFE-BD79-23C6B7679650","0x00000000002C4974" +"E19746E8-4A1F-4E8F-B8F5-6A61F74ED9E6","","SO-0252","0","3","18","","3256","C26890FD-C69D-4E29-AA2F-23E3AAC355F2","0x00000000002C4975" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","200","220","","2889","FC045633-188B-490C-88F5-23E6F0543EBA","0x00000000002C4976" +"BCEBE61D-54C6-41CA-AD73-D25013572A06","","NM-24735","0","376","383","","3657","73B6FE40-B7F1-4812-A557-23F6E480D2C6","0x00000000002C4977" +"C84E0BD1-9CA4-4852-A7D5-494B65562DCB","33280","EB-576","0","350","360","","620","132E117C-271C-491C-BD51-23FB233B9C5F","0x00000000002C4978" +"7708C711-A9ED-4882-93C3-F71C2F36E97F","","BC-0135","0","350","400","","5116","49029374-E3C3-43B0-9420-242EC4995576","0x00000000002C4979" +"0A8CB448-197A-4ECB-8ED3-F432BFE4EB1D","","BC-0159","0","203","303","","5131","C111B4F4-9EAE-4E85-BBC5-247C22838FA7","0x00000000002C497A" +"96D8581C-153D-4167-8A9C-58E872E76A07","556","GT-004","0","105","145","","1336","4D434230-F22F-4EF2-A79E-2490EFD3B69B","0x00000000002C497B" +"B7C34321-B52C-4AC6-8F15-57EA486C222C","342","MG-014","0","140","160","","908","3F98A324-8DE7-4AB9-B399-24A2F870AA1B","0x00000000002C497C" +"6147404E-7937-43CD-9A85-E43D82054748","230","EB-226","0","105","125","","287","BA4A84EC-3D7E-4928-B021-24BE7E749505","0x00000000002C497D" +"0BAB943E-235F-4ABC-B75E-79A26C4B703B","","NM-25134","0","594","657","","3459","0BF718F9-3BBE-4B1A-A70B-24DED3773D47","0x00000000002C497E" +"E00A34B2-D9DD-42D4-B6DA-C4D1BDB5E009","","NM-23243","0","280","300","","3279","4EA7EFCC-C6FC-4C63-B491-24E08467B65C","0x00000000002C497F" +"D469E53A-4DEC-4F2F-9C3F-C7DBEF89DCA7","","AH-030","0","250","290","","1585","5834D3A0-4DB7-4424-B521-24F0A3D5DA22","0x00000000002C4980" +"5ED4A54B-48E7-434B-96FD-F2B0B20581FB","","AB-0075","0","805","810","","2616","D5799822-FDD8-4F01-BDC6-24F78CEFAB0C","0x00000000002C4981" +"987BE814-8097-4FBD-89D6-0DDB08EE2E9E","","BC-0166","0","280","380","","3277","39E7AD69-71C6-4EE0-9A49-24FB4ED5AEE3","0x00000000002C4982" +"72E8B8B0-DFD2-0D44-90CA-C34B3717B7B2","","PC-066","0","65","105","","5367","30BE92A6-698B-7341-B4C4-24FD35667D5C","0x00000000002C4983" +"D8B8600D-3832-E441-ABE8-EE907064112C","","PP-027","0","72","102","","5268","C4E762B5-0DCA-5742-B967-2500CE5ADDE2","0x00000000002C4984" +"8593D20C-9F5B-45DA-BF3C-2687D37C4443","33323","EB-618","0","560","620","","671","5024AB3E-3479-476D-BDA5-250BB4003D71","0x00000000002C4985" +"AE9DF9AC-F659-B845-B69E-DE3B5FE8121C","","WL-0182","0","440","465","","5525","37BCF43E-417B-764B-96A1-25149109F539","0x00000000002C4986" +"0ED294CC-F9D7-4F54-872E-F680B6FFF95F","497","EB-488","0","1000","1980","","576","4138E085-602F-42ED-9A74-251D88FD3CF7","0x00000000002C4987" +"9A55E877-B723-4762-B27C-3662F486F6A9","304","EB-300","0","280","290","","375","4465FCB1-FF5E-44EF-83B8-252AF49A65E7","0x00000000002C4988" +"39472FC2-A760-405D-A7E7-A0447A8CC40C","","UC-0215","0","115","135","","2835","2B1E7CD7-3C07-4C3C-80AD-252C1A168820","0x00000000002C4989" +"F0DE4527-9104-4ACA-A88A-7DAA7DC1D722","215","TV-195","0","360","420","","1112","D35922A9-35D4-444C-BAD9-2537263A9AF0","0x00000000002C498A" +"428A8CCE-66CB-8149-AC2C-4E6360E9BBA9","","WL-0285","0","10","805","Open, uncased hole","5725","53F5C97E-876B-8C49-9FBE-25651150A4CE","0x00000000002C498B" +"7B1DF3D2-3D71-4964-92D8-29A9F66EB5AC","","AR-0170","0","36","41","","3094","300C5F3E-8E23-4BC5-81A0-2569E9021CDF","0x00000000002C498C" +"19F9E43E-3988-40EC-B7AA-3BDD0CBD67F7","33666","SM-0141","0","500","540","","813","93A31A6E-F511-4F26-A8DB-257E343AD2C7","0x00000000002C498D" +"8BDC2319-14B9-4713-B07F-B70D815C9173","","WL-0016","0","120","140","","5747","9EE32694-D3AE-0846-B274-25BDA5453D21","0x00000000002C498E" +"FC4984FD-88D5-46B6-ABFC-30D05AC77DF6","","AB-0183","0","1298","1303","","2707","3391E3D6-5391-43A6-955B-25C289675FEB","0x00000000002C498F" +"54408B5A-999B-4E66-BE6D-7B6DBDBDECF4","33359","SM-0034","0","280","300","","1225","F32F12E8-D50C-414F-B084-25CF88753EDE","0x00000000002C4990" +"CC1FFE95-A922-41D1-9A9A-BED961ABDC97","226","EB-222","0","160","220","","283","3A1BF9C6-5D14-4217-8D49-25E6F67A65D8","0x00000000002C4991" +"52F7C8FE-C1DB-4667-AA32-A44C59B1C196","","NM-24584","0","200","400","","3734","20B4A828-B4E8-4514-98C7-260841FD2646","0x00000000002C4992" +"50C7D3AA-ACA4-4DC2-A74E-F25FE10201DD","","SO-0227","0","5","20","","3231","66FF8BD1-B7F5-45DF-B98B-264063E171AA","0x00000000002C4993" +"DD3EFD24-AB0C-441A-8793-5F7A01DAE69D","","NM-01585","0","36","44","","3068","181EB751-8DD4-416A-AF92-264F0A3F9BA0","0x00000000002C4994" +"1E6F6A6F-0887-44DF-96D2-D2909DBA94B3","","NM-25025","0","520","540","","3504","52AC72A8-1BF4-447C-956D-26745F561967","0x00000000002C4995" +"62DB1073-CC08-4092-A199-F6ED554DED90","","AH-107","0","410","510","","1794","5431BA65-9B6C-45BA-A9F7-26A1AB719267","0x00000000002C4996" +"093C4B93-A8B0-4A1F-88C9-C94D1722B752","6","EB-005","0","260","270","","11","B7751205-B565-450D-9D7E-26B0BCE1F734","0x00000000002C4997" +"98FE67F3-5401-4817-9DC5-FE33B92D0833","","BW-0947","0","","","","5760","1A419E29-9CC3-4222-AE58-26B190521E8C","0x00000000002CF395" +"4136DCE5-3EF7-4CA6-A179-8E00A24139B8","137","EB-136","0","800","860","","169","EF6E9E10-D67C-4CD4-B50A-26B4751CFB25","0x00000000002C4998" +"37D9985B-CFE1-4CD2-9756-BF65DE51E8C3","","SV-0075","0","420","440","","5193","0A254B50-F3F2-964D-BDEF-26C7BDC62213","0x00000000002C4999" +"14F2FE2A-1C23-409D-AC34-A2387F629524","33376","EB-665","0","610","1330","","711","DEAC6E67-3985-4713-91A0-2702AF809BEC","0x00000000002C499A" +"CA712584-4262-4341-82D9-45C50059BF7A","","PP-049","0","17","22","","5277","9F81167C-41A5-8048-BE6E-2716C031B56E","0x00000000002C499B" +"C632CA7E-677F-4997-BF0E-EC34F203B86A","","SV-0011","0","200","250","","3298","0C700D40-7E59-482D-8B11-272C87D8AADC","0x00000000002C499C" +"584EED4A-1036-4C2E-8F95-6D3B59FE2190","","NM-01690","0","200","220","","3759","2DC972A7-30F9-40C5-8AB1-2733657A7E65","0x00000000002C499D" +"850CEA1E-44D2-49B1-9D8A-E630FFFBD2A8","357","MG-029","0","160","200","","933","F88059B1-E4CD-43B6-A6E4-275AA283FA3E","0x00000000002C499E" +"7861C9FE-31E0-4F94-9A94-CD658867C9DA","","AB-0177","0","182","212","","2701","1DA09F6F-12E4-46C9-9E78-27648238EF26","0x00000000002C499F" +"5AB74A95-0BC2-4785-A0C6-52F6A2CCAE1E","","BC-0094","0","115","125","","5032","856236EC-7246-49B0-A29C-2778F3013790","0x00000000002C49A0" +"F33F5359-793B-4B92-A932-E8688F21F244","","QY-0676","0","78","122","","2986","404C361C-CF91-46BD-A9C5-27C138ADF4BD","0x00000000002C49A1" +"AF7133DF-39CF-4AD4-A763-79FEAAE754F0","","NM-25138","0","567","631","","3458","371131E1-98E9-4AF3-8708-27C5334E28F1","0x00000000002C49A2" +"A1E2467E-E725-4CDC-A704-8A644889831E","","SO-0260","0","48","53","","3270","EAA7DDA2-B20F-4035-B8E4-27E0644EEAF9","0x00000000002C49A3" +"D5393BC1-A821-4D54-B1EF-A5C9C1F8EEB1","98","UC-0133","0","200","220","","1333","52F589C6-5378-488F-BA4E-27ECC34285C5","0x00000000002C49A4" +"81D73012-3E44-4D80-822E-177BD18E2A65","155504","TB-0051","0","220","240","","1253","D65CBF93-5A52-4C27-9261-27FB961454B3","0x00000000002C49A5" +"903C1C48-FACE-458F-897F-F489E5629484","154","EB-153","0","322","352","","186","38F63A5A-EC83-4BB3-8AE4-27FDE6318ABF","0x00000000002C49A6" +"D615FB8B-1004-4EF2-A52F-0ECB591D78AA","515","QU-128","0","80","150","","1003","E442BC7B-0FB7-4130-B9AB-2805FDB088BB","0x00000000002C49A7" +"2A6F3CCD-624B-49B3-9077-C838639C3C97","","NM-26891","0","342","349","","4938","5AC65B02-1F3D-4062-B51B-283DD65F7270","0x00000000002C49A8" +"8BAA85CB-F598-4D3B-9FB1-06087EE91F19","114","EB-113","0","190","210","","144","348BA427-1CAA-4418-A20F-284D26AEC587","0x00000000002C49A9" +"4AD3C7EE-CB23-5549-B1EC-51E47AAE5293","","DE-0028","0","150","199","","5666","BA274FE8-6D9A-5540-A7CB-2855FF7B826D","0x00000000002C49AA" +"11D756F5-E58F-4056-948F-55181FAE3E1B","35","EB-034","0","200","400","","35","73B81B9C-1805-44C8-8439-285A74342199","0x00000000002C49AB" +"4F21B887-3166-436A-BB7B-7C925A778A4C","","NM-00769","0","203","223","","2903","C29FC8EB-D1C5-462D-8D4C-285E4D717AE2","0x00000000002C49AC" +"FEB5F265-DB3F-43B7-87A1-30C00A429D95","297","EB-293","0","102","340","","368","315E89E8-4A91-4432-97EE-286E6B6AE051","0x00000000002C49AD" +"7E2A9F45-DF74-4615-AE2E-7796024B0183","","EB-697","0","440","445","","2931","71592272-5975-4E06-B1D6-288FDAEB9272","0x00000000002C49AE" +"AFCDE4E8-1CCA-2540-AADC-D2152C2BD2E2","","WL-0185","0","260","300","","5527","928A8CF2-0CF1-9545-8675-289667119CEE","0x00000000002C49AF" +"A5C28CA7-4840-424E-B01C-E9D81D21B843","","NM-24777","0","83","86","","3646","AEF67B75-46D8-414B-9E22-289899FE7CCD","0x00000000002C49B0" +"B0EB29F7-FF44-413E-97BE-55FDA158FCF8","329","EB-325","0","260","280","","402","BB8DC8ED-65A5-403E-A814-289D50F1868C","0x00000000002C49B1" +"AF05D0D1-92CD-4F7B-B990-73206B541B74","","SV-0084","0","680","720","","5218","4DB70233-031C-D542-8C21-28A0791BB5E8","0x00000000002C49B2" +"37974A2E-E300-404C-88B5-DDE224D792E9","","AB-0041","0","144","950","","2589","09B77F28-C397-416A-A58C-28A201BCEB63","0x00000000002C49B3" +"887F2CB8-CA3D-451E-8606-6B6D9C516635","","SO-0192","0","45","50","","3190","40E61460-1F50-4166-A608-28A9C640F5C4","0x00000000002C49B4" +"6C718DF8-AD16-4B88-AD3B-FEDA331B4DCF","","NM-24963","0","1580","1610","","3766","62DEBE4A-2856-4C22-987B-28A9E47C400A","0x00000000002C49B5" +"9DB76F69-3416-43DB-9FA0-D9A08C904CEB","","SO-0256","0","72","76","","3260","5847B284-4293-4159-B734-28CD0AC32E9E","0x00000000002C49B6" +"E0014D4B-7CA6-4A0B-B227-77CCCA7334B6","308","TV-272","0","1927","2088","","1178","430BD5E9-0325-4748-8F0C-28E0475F3B18","0x00000000002C49B7" +"8AB18943-0986-4F2F-8335-490097A5906C","","BC-0162","0","220","240","","5136","52384E5E-12EF-4B8F-BC18-28F9C2CE304E","0x00000000002C49B8" +"9F152C84-1DF7-497B-949B-284D061CE84C","","WL-0036","0","460","480","","3892","EB425DAE-B6C9-4ED0-91C2-2906819EC50A","0x00000000002C49B9" +"31BEC324-DB5B-C34B-928D-2A080B8751EC","","PC-036","0","240","260","","5340","C9EFB76B-030A-4D48-8457-291A46BDC0A8","0x00000000002C49BA" +"EF1DE39F-C9C5-40BA-A452-0DD4268AEBE5","","QY-0526","0","170","180","","2982","8E5915CD-1F2D-410C-A932-291F454772CF","0x00000000002C49BB" +"00EF311B-B7A0-4F84-84E2-804A9949B804","477","EB-472","0","320","400","","549","4249E42B-6F71-45C7-9ABA-2929AEB2622A","0x00000000002C49BC" +"D6A2AA58-745F-40C7-9FB5-2A9DBD201A5E","","QU-171","0","30","60","","2528","4EAD7C40-E24D-483C-A37E-297E132AD5CE","0x00000000002C49BD" +"8C6D9CAB-D786-418E-B55C-6DA4CA4C561C","33602","SM-0091","0","580","600","","806","B888AD7E-9209-4A37-9DEF-2988CB758E32","0x00000000002C49BE" +"28D6AE51-4CC2-42BC-A3CA-0FBD02141245","","UC-0231","0","128","178","","2848","7C4BF29E-1EC6-4099-AEDE-299867AAED5A","0x00000000002C49BF" +"31AA34E7-2945-BA44-AD10-11F1F89418A0","","PP-015","0","80","225","","5260","CFBF4AD4-C4B7-2643-A277-29A5595CC13B","0x00000000002C49C0" +"F924F08B-FF4F-4A28-A293-5D85D5706983","","NM-01232","0","439","445","","2791","4B333234-1635-4BED-9D39-29C5391E83AC","0x00000000002C49C1" +"155DA370-8629-6042-A9B9-85A13537FECC","","AR-0232","0","7","19","","5473","3B8146B4-0B6B-044E-8AF1-29E76EEA7F8C","0x00000000002C49C2" +"6C718DF8-AD16-4B88-AD3B-FEDA331B4DCF","","NM-24963","0","1500","1510","","3764","28080351-992B-45A2-801C-2A031B0808DD","0x00000000002C49C3" +"D5C219E6-C96E-8A46-A669-7E353224F761","","NM-28439","0","104","144","","5640","57682384-61FC-284E-9CD2-2A1407B19545","0x00000000002C49C4" +"5AB9112F-2A7B-418C-97F4-B648E6F4F591","332","EB-328","0","410","510","","407","DE3962DB-1F3D-41D1-BBA8-2A365CE8B82B","0x00000000002C49C5" +"E7C1504C-0EB5-4BBD-99A9-D15AF8D7FE67","","BC-0117","0","300","320","","5709","28831A75-8F95-3744-A6F4-2A3A486A93A3","0x00000000002C49C6" +"D0355A77-10FB-4EC5-831D-5F6A3D1B9E97","","AH-028","0","405","455","","1583","692CDEA1-D5F9-4F19-B6FD-2A476B152E75","0x00000000002C49C7" +"05085AE9-C0EF-42FA-8680-A13B6B0232E0","","AR-0142","0","4","18","","3087","96D49253-C29A-4400-B071-2A4F5CADB317","0x00000000002C49C8" +"A9DB31CE-F447-4C60-8456-D63D5B978635","","AB-0037","0","1557","1562","","2585","6050116A-F0F5-4176-8509-2A65748F3DCC","0x00000000002C49C9" +"0F4239EE-5169-3D4C-B316-27EAD208D940","","PC-042","0","75","85","","5345","B7C4997D-767A-3B43-869C-2A787B790A28","0x00000000002C49CA" +"C90A7F2E-0A7F-4F91-8E80-063A1FD62612","33584","SM-0075","0","100","176","","794","541A888F-F033-481E-9033-2A7B72832981","0x00000000002C49CB" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","585","597","","2923","6DF362FE-DA16-4026-ABAA-2AA45C1082C8","0x00000000002C49CC" +"B79C83EA-69A3-4190-9BAC-FC167B847694","","TC-257","0","126","136","","2130","56375254-B1E2-4D6D-8D8E-2AC2783703E2","0x00000000002C49CD" +"16ADC913-5001-45AB-9427-741C5806E8C8","323","EB-319","0","160","200","","394","C5194F9D-3414-4659-A9EF-2AD8ED47373B","0x00000000002C49CE" +"62E3D68E-FAC5-400D-AC30-28B5969FF139","","NM-24720","0","55","75","","3667","9C41EE8D-DEF4-440E-9B17-2ADCC945395F","0x00000000002C49CF" +"D8E51D45-F13B-406A-8A5C-16BBCD71D583","","AS-042","0","260","335","","1529","A8C6619F-FA7C-428B-B428-2ADF18B84986","0x00000000002C49D0" +"8CD63BE4-2F86-4218-A1C4-450BB8E27B1E","224","EB-220","0","125","161","","281","448A1312-CA66-47B6-8FAB-2ADF9674A400","0x00000000002C49D1" +"C64F4C76-DABE-472F-8412-EBDAC107926C","","BC-0191","0","180","220","","5161","FEAA9624-F5AC-4A91-9EC6-2AF9EE8690A6","0x00000000002C49D2" +"F690649A-1CCB-4640-9DD0-5F0461173695","","NM-25042","0","646","670","","3499","F1D6B1AB-1FA9-4D86-8261-2B4F10D553F9","0x00000000002C49D3" +"D5B3A458-57D9-4692-AE31-B4A6229C52B6","","BC-0176","0","320","380","","5145","8518E4CD-CF02-4AAD-954B-2B6DC9C95D4E","0x00000000002C49D4" +"C891790B-4A0C-4EAC-9920-6D993DBE260E","293","EB-289","0","470","490","","357","797D357C-AA99-4D28-929E-2B6EE420B293","0x00000000002C49D5" +"7EB2F7E6-EC6D-4BCE-AEB7-1196F4F1BEDB","190","EB-189","0","450","470","","239","63FF0DA5-A6BD-42D1-B1EC-2B810548307E","0x00000000002C49D6" +"8F8FEE46-BEE5-4470-AF64-498CE6330ABF","319","TV-278","0","820","940","","1186","9BF06090-0F24-44C2-8988-2B812561D515","0x00000000002C49D7" +"2C07C3E2-A75A-4D47-842F-0B309B866F7A","","AH-046","0","426","446","","1600","CC2FBA33-ACED-41A2-B8D0-2B974A7F913E","0x00000000002C49D8" +"EE498D9D-1A3E-4E00-A4FD-93F1D93671A9","","NM-24972","0","324","364","","3582","AF22FEB9-998A-4502-B8BD-2B9E784095C9","0x00000000002C49D9" +"5646FF49-5636-4EAF-9403-0391527C8DFF","470","EB-465","0","168","189","","534","4BE9F83D-97BD-4084-96B6-2BB7CDFEC0FC","0x00000000002C49DA" +"BA82F126-886F-2A40-BB18-6A89851B0D2A","","PP-020","0","25","150","","5261","8FABFEEA-8D4C-344D-8497-2BC4516223B1","0x00000000002C49DB" +"BEF3835A-D9B9-498E-9769-F3F35AC941E9","309","JM-010","0","70","100","","889","20B11FD6-4C07-4FBE-AD36-2BD24C476B81","0x00000000002C49DC" +"8CD7158C-576B-4C70-9320-1D2033D2408E","","NM-26953","0","160","180","","5092","DD0A782E-7321-4BA5-A541-2BDDF95B2049","0x00000000002C49DD" +"55C6D250-4373-EE45-99D3-BDE75C966F43","","PC-065","0","143","163","","5366","11C89F20-96D2-B44A-A891-2BE719683CA2","0x00000000002C49DE" +"584EED4A-1036-4C2E-8F95-6D3B59FE2190","","NM-01690","0","96","135","","3758","6161D46E-14CE-4318-BCA6-2C2DBC72553D","0x00000000002C49DF" +"6048D387-73DE-42CC-A7EC-4B5C45C3A472","","BC-0081","0","280","320","","5018","FE124EEA-1A7A-43DB-ABF2-2C2F32E594BC","0x00000000002C49E0" +"1597656D-26DD-4CD8-98B5-36C83465B40D","","NM-01268","0","650","1351","","2802","83DD02AA-9442-4D80-B1D9-2C39796ED1B1","0x00000000002C49E1" +"088FC453-9974-4721-8E44-DA951A47AC71","196","EB-195","0","350","440","","248","80212F15-5DAA-40B4-91A6-2C40EA0705FC","0x00000000002C49E2" +"96EBCCF8-8B7B-4466-BD6F-CC6096825AAE","","SV-0068","0","300","360","","3367","FF94BF05-3482-4D91-A0F1-2C41EDF9071D","0x00000000002C49E3" +"DB13F090-F799-4F2A-902D-9B16435F5963","","AB-0098","0","637","657","","2638","BDC02FA4-009A-4A00-8AE8-2C4AC7FD9F12","0x00000000002C49E4" +"257B498A-3E94-4B2D-8CA2-A2E61BED93FC","","SO-0149","0","44","49","","3147","14335A17-16F7-49B6-B540-2C4F1656BC2F","0x00000000002C49E5" +"0B4E6471-C21D-7B47-A890-FE22DEED35A8","","PP-046","0","20","65","","5275","10F0C7C8-D5E0-CE42-8EB5-2C5E6082EF37","0x00000000002C49E6" +"C4B87C88-6031-4B23-8EE5-CCAAB261FC1C","155786","TB-0245","0","479","979","","1312","7BA6FA8B-CE08-4B2D-95A7-2C71E1E0637B","0x00000000002C49E7" +"C8B7A42D-4CA1-49CB-B2A9-49ECF47FE780","93","EB-092","0","770","780","","112","919D7554-A54D-4E10-84A8-2C89F301EEAD","0x00000000002C49E8" +"0FEF9BE5-916B-453D-909F-1AFBD0F70A44","","NM-25001","0","130","160","","3556","4F40BAA3-83AD-4CFB-A76C-2C9400D51157","0x00000000002C49E9" +"5887722F-5099-4C78-9D66-65651DD6039A","315","EB-311","0","15","20","","387","F9FA8451-3965-47DC-91AF-2C9AF7622D6E","0x00000000002C49EA" +"A65B26F9-E384-4F09-905B-DB05C9299103","123","EB-122","0","1000","1980","","157","AF5E9213-A889-4070-927B-2CBA73EE4837","0x00000000002C49EB" +"8AFE6D4A-FE48-4D3D-95BD-EEF08AF495EE","","AH-003","0","360","440","","1560","E4B5763B-0B90-4FA3-A336-2CC8079419E5","0x00000000002C49EC" +"B9FF894C-09D7-445A-A82D-A86BB936A0F4","478","EB-473","0","355","435","","550","D44F5457-0B37-4927-9D53-2CCECBFEB5EF","0x00000000002C49ED" +"E5F9CECC-13F6-4D9E-B852-E0585EBDA7D8","33361","SM-0010","0","305","345","","755","B175BDE9-1D6C-4968-8CC1-2CEBB03F79DB","0x00000000002C49EE" +"DC53D4DC-BD13-40DE-BC98-9AB8E3112FF3","38","UC-0022","0","324","364","","1317","8634483F-8778-4D43-BF7B-2CEE98323151","0x00000000002C49EF" +"E4D5D841-A11C-46B1-9E59-FEE4E77A1BAC","","NM-25109","0","453","470","","3475","0ED654DE-537B-44AF-AB94-2CF471B3308D","0x00000000002C49F0" +"F40CA763-AADF-4112-8623-16C1CB0B3531","","TC-308","0","147","231","","3787","1E42F2EE-5FFC-4093-8C78-2CF581DC79CA","0x00000000002C49F1" +"96C46EE1-D82D-4DF7-80AE-E476E0FD3099","188","TV-168","0","30","50","","1092","F2D3E025-A77D-40C6-BAC3-2CF8DE2FAAAB","0x00000000002C49F2" +"A7CB04EE-0F6D-4805-ABF8-6F9BA7447B6E","","AB-0040","0","204","924","","2588","3FBA7C90-D2F6-4311-AFE3-2D01ABB67A4C","0x00000000002C49F3" +"4D6F02A4-3A41-4DBC-A038-6CBB31AF9DE8","","SA-0200","0","85","125","","2865","94929A5B-5047-4768-9F09-2D1E84EAB18B","0x00000000002C49F4" +"BF63CBE6-1B60-40A2-9E6C-DF7FB3A3789A","110","EB-109","0","490","510","","136","33450A06-7DF4-4842-AEC8-2D2107D481D3","0x00000000002C49F5" +"EE065009-5660-4B47-8EAF-EB2FED64EB70","","NM-26900","0","320","360","","5289","B80F3E6C-5526-2041-82A6-2D268BAEED54","0x00000000002C49F6" +"6DB4AABC-3470-F348-BAD6-24B9A06F0A9E","","PP-052","0","80","100","","5280","5CAB45D8-268E-1944-99AA-2D2C3B412001","0x00000000002C49F7" +"4B9B311E-C064-46A2-ACFC-FAC77F50BA30","","SO-0141","0","46","50","","3139","607F9455-13E5-4AFC-B5DB-2D3338DA67F0","0x00000000002C49F8" +"A79AB6CE-C0B3-495C-8255-91ECEC4C3ED4","471","SA-0183","0","768","917","","872","82AFEC84-8C5F-4B6D-8E2C-2D34410D8B7F","0x00000000002C49F9" +"B1A94055-BD10-4099-A4DF-281E7D349B84","524","QU-137","0","8","28","","1011","C00C528A-3567-49D1-9819-2D49898CD8DA","0x00000000002C49FA" +"E7A84A09-59B0-4A6B-B80E-2381ABA0A836","","AB-0121","0","350","800","","2657","FE65A814-6CB9-4FD2-B9D0-2D509DCD70CF","0x00000000002C49FB" +"3000BBF1-5FD6-4F18-A19F-0D6A162E777E","","NM-01414","0","428","433","","3043","FFB8F3D9-C8A0-4198-A734-2D76D4B4FB77","0x00000000002C49FC" +"69CFDF01-5C06-4B38-9BCE-F5F7B5CF46CE","159","EB-158","0","660","680","","193","9CD2CBFB-57A9-4CC3-8A93-2D770C916BDA","0x00000000002C49FD" +"EA782DFF-3548-4A2D-8737-41B4540688CB","","SV-0032","0","206","366","","3328","10A27E07-C611-4D74-A258-2D78CA589A7D","0x00000000002C49FE" +"37D2F7F6-42CC-4646-884F-47BD40B0C6C0","155690","TB-0208","0","265","285","","1299","6D930235-DE54-438C-B6FE-2DDE58DD763A","0x00000000002C49FF" +"44BA4158-FDE1-4DEA-B87A-4F2B6DDDAA54","","AB-0079","0","19","81","","2620","7781BE7D-0E17-47F8-B26F-2DEA07EC5E46","0x00000000002C4A01" +"A56E349C-6F26-4E79-9B29-5420984A8723","","AB-0201","0","356","690","","2722","F7346A85-4E60-4EAD-B35B-2E0AC71AB17C","0x00000000002C4A02" +"42758397-AAC2-419F-8A55-7590E7E03F42","155500","TB-0054","0","195","345","","1249","A523DAF7-0983-46C3-96AA-2E30623B1F16","0x00000000002C4A03" +"B2BE8439-DB2C-BC42-8369-E7A5A6AAA2C1","","PC-047","0","155","165","","5349","7B8DFF39-12DB-1749-B75A-2E57F4C4F065","0x00000000002C4A04" +"FF5FD78A-934E-40DA-B8CA-F894C161CAB2","","NM-25125","0","146","206","","3462","FD57C3D1-9FC4-4B5A-8F8A-2E5B837FD27D","0x00000000002C4A05" +"A9779C27-58A6-7B45-85E4-0CB26B0554F5","","PP-026","0","190","200","","5267","403F15DA-5415-B84E-8E37-2E5D6BD2DBEA","0x00000000002C4A06" +"DC390227-1D0A-4079-B2C6-7E476BA327DA","","AS-048","0","292","352","","1537","A2090E4C-4FE0-4FA9-BA8F-2ED9BB292F9E","0x00000000002C4A07" +"457D11A6-8A7D-4C39-94E6-34A383D2DA34","","NM-24881","0","430","600","","3619","5DEF8380-581E-4B8B-A7E7-2EE47178AE22","0x00000000002C4A08" +"B8432F4A-00A4-45B3-81A4-A3A00040AFDE","","AH-080","0","440","480","","1807","C6B07B5F-3A93-4C5F-9DB4-2EF1CEB5BFF2","0x00000000002C4A09" +"84564F7D-C815-4D56-949C-1DB2976A11D0","265","EB-261","0","49","59","","320","A14E188F-C9CD-49DF-8E44-2EF6EA7D0906","0x00000000002C4A0A" +"6DC26BE2-1CCA-AF49-B96F-AE89F66C9E11","","WL-0278","0","260","300","","5715","D325A97E-8CCF-2A4E-AA99-2EF979E5616D","0x00000000002C4A0B" +"440B48C0-E557-49C5-B3B2-EF1A1DC70DF3","33350","EB-642","0","1054","1204","","691","DF1DA5BB-E1E9-4895-B7E6-2F1430D93165","0x00000000002C4A0C" +"516BE5DD-0953-4089-B8E9-E1B7B1D84CDF","","SA-0076","0","267","282","Steel with torch cut slots","5626","62D175B5-F9A2-B54A-9285-2F15916474F8","0x00000000002C4A0D" +"6F3B3BFF-048F-4653-AA86-BB2D1A84EEC9","","SO-0204","0","7","22","","3208","D6AF15AE-4012-4243-B7BB-2F3450A9FE02","0x00000000002C4A0E" +"2D619D7F-E6A4-4942-8830-593B1A10787F","","NM-01356","0","190","230","","3031","153F289C-808D-431D-8899-2F3C7AD46C5E","0x00000000002C4A0F" +"1FFE2C9F-F7C5-4F5B-ABBC-4790A142651E","33394","EB-680","0","345","385","","732","4BDCCC9D-932F-4F7D-8965-2F4B61D245DA","0x00000000002C4A10" +"F6907F3C-0C96-42BC-ABB6-C6FC64C8147C","","NM-09552","0","18","253","","5558","693088D6-08EB-044F-986E-2F6E6FA19F2C","0x00000000002C4A11" +"EB6E931C-9849-4B7E-9C80-062A6FC960A7","427","SA-0142","0","56","66","","865","BD4CAFE9-E19A-4564-BAEF-2F6FBF4E9A90","0x00000000002C4A12" +"D7847537-F652-4F3B-B03E-54D24487C178","","NM-04415","0","410","510","","3112","41406736-AD40-4F22-9322-2F952DA76037","0x00000000002C4A13" +"71FDF3B9-9D3D-4116-8158-01216F42253F","","QY-0104","0","202","220","","2957","EFCC4E88-F57E-4CF2-907C-2F9D1FE50819","0x00000000002C4A14" +"D453A953-67BB-4165-99E2-F4E2EC7775AC","78890","SM-0247","0","300","420","","845","2C075901-8FD7-479E-93A1-2FB02D5AF6DD","0x00000000002C4A15" +"B6C284F8-7D35-4633-A53F-9F10759CEFF4","","QU-074","0","115","144","","2422","FDA6D7A8-86DD-48BA-BB4F-2FC63FA5AB61","0x00000000002C4A16" +"EFF0CA9F-5D67-4505-954A-0BD51A108125","","TV-294","0","833","854","","2554","13A683CA-2E35-4D60-BF1D-2FD30E53F03D","0x00000000002C4A17" +"737F3D89-07E0-43A7-A652-23FEB9C56B1A","","BC-0120","0","340","360","","5049","FCA50EC6-82C7-4550-B1ED-2FD3ED39B234","0x00000000002C4A18" +"A560E989-ACA3-460A-A6E2-E8E4DC6931AD","","AB-0099","0","337","352","","2639","1D621FD4-D8F6-474B-95D4-30146210EF46","0x00000000002C4A19" +"339014D5-FA74-421B-B8A2-C73BAEDBBAD1","","AH-032","0","380","420","","1587","DF82F25D-D321-4519-A75B-301DFEA14695","0x00000000002C4A1A" +"542C2E3A-593D-40CF-9432-112709297D4D","","SO-0172","0","4","19","","3170","15F30455-3560-4621-BFCB-30210FF47E59","0x00000000002C4A1B" +"54362B85-74CC-4E32-B7B6-03CF975EED27","321","EB-317","0","140","200","","392","707043D4-0051-493C-ABFB-303448664B83","0x00000000002C4A1C" +"4073BFAE-BC86-3C40-9B14-5F829FADD1B3","","PP-065","0","80","140","","5252","9F11DDC6-FD8B-C941-8D03-303AA2E0519A","0x00000000002C4A1D" +"24A16BDC-1011-453C-8DB1-283200CA5360","33356","SM-0026","0","40","60","","751","CAD4E975-6686-4FF1-A55C-303B8919FA0B","0x00000000002C4A1E" +"BC6086BF-D0E0-403A-A0E6-FF4608FC836A","","NM-24649","0","240","280","","3700","794BBACA-7ADA-4D1F-A1F5-303E6D75AD89","0x00000000002C4A1F" +"F364719F-217D-46AC-8529-BED09F3FEC34","","TC-234","0","600","645","","2115","5985ADA9-638C-4B72-913F-30522696516D","0x00000000002C4A20" +"8AC1472D-5528-4D0A-86B4-ECB7838E0DA3","","AS-014","0","183","343","","1509","175773A8-98A4-4667-A95B-3059F94BE3D3","0x00000000002C4A21" +"0278BEFA-E6EE-4464-AC0B-D7C4FDFB85FB","33400","SM-0047","0","175","235","","773","DCFA1C09-1E0A-4E01-A914-30683A215178","0x00000000002C4A22" +"18F0091D-A51E-4CE0-B34A-51A3AA699801","150","EB-149","0","388","448","","182","BA0D0E88-0B00-405A-BD60-306AD2894AEA","0x00000000002C4A23" +"03C2902A-FB1B-4845-AD47-BA7AF509E6A1","","TC-255","0","100","120","","2128","4A6B3BED-9EDB-4D49-B550-306C31E00E03","0x00000000002C4A24" +"5646FF49-5636-4EAF-9403-0391527C8DFF","470","EB-465","0","68","108","","536","D036BA71-397C-4F4C-B645-30718413052D","0x00000000002C4A25" +"23CFD01F-CC66-4B3E-8B0F-A91901AACD0D","","SO-0148","0","5","20","","3146","D3E1AFA4-9D6B-46F5-A861-3073EF361C7D","0x00000000002C4A26" +"8F91784E-17E8-4B1E-A560-EDF1155DE394","195","TV-175","0","140","160","","1098","DD259251-FCF5-4EB6-8F63-307867826F21","0x00000000002C4A27" +"1834161A-B39F-43BE-A9E6-5EA0B7DD7A25","473","EB-468","0","188","380","","540","CD35DE62-D034-489B-8974-308733D86BDC","0x00000000002C4A28" +"76EBA621-6542-4C95-8B36-7753271A12E2","","NM-00643","0","105","231","","5721","001F29C2-0FEE-D448-AA2C-309B1CD5BF17","0x00000000002C4A29" +"E4197729-3CDF-417A-8812-7A4ACA74293F","33368","SM-0018","0","20","40","","760","C1E5248A-A79F-4FCC-93AB-309E0DA1EAD5","0x00000000002C4A2A" +"2BB9A7EB-28AE-44A0-A86A-8564FC3B6629","","NM-26939","0","370","390","","5081","E6CA48E6-38AC-4C27-9B05-30A4E1D87E07","0x00000000002C4A2B" +"5C4268B7-F7DD-49D6-B30A-A6729D6D6C95","165","EB-164","0","375","415","","199","17E2F175-C190-4CD1-B107-30B13D52A1F1","0x00000000002C4A2C" +"9E91B5F4-38D4-44BF-80F4-B952BAF71C37","","SV-0027","0","220","240","","3318","0A213B4F-B0B9-4A06-82B7-30BE77260996","0x00000000002C4A2D" +"8C075EE1-FF00-4334-851B-0576FFFB58DE","370","QU-041","0","80","130","","957","D979BAFA-9C00-4EE7-8B60-30BEF960FCF4","0x00000000002C4A2E" +"CC2DC842-6903-4F1E-970B-545C9BBBBC12","","AH-079","0","360","400","","1766","76E9B2D2-4CE0-4FD6-BA62-30C6942EA20B","0x00000000002C4A2F" +"DE2BB1A9-404A-4895-8075-A89491C30BAF","","UC-0224","0","140","160","","2842","DD4B62D9-A5BC-40E8-AD01-30C6C284F83A","0x00000000002C4A30" +"E7510FE3-A2C3-4E50-8496-B553194CE346","167","EB-166","0","580","720","","205","479F2CE3-0103-4809-8CEA-30C7F509D293","0x00000000002C4A31" +"242FE5C9-0221-4E7E-B0D8-7AFC1121A99D","","BC-0032","0","200","210","","3925","AD650188-F7E0-474C-926B-30CCD00F86AA","0x00000000002C4A32" +"14C813C7-576B-44BC-8B3D-0AFA1853847A","57","EB-056","0","240","260","","65","20C5DD1C-F4E7-4A88-ACA7-30EC252DAEBB","0x00000000002C4A33" +"1D911F77-3214-47E3-80F0-3CF7D0BCEC20","","SV-0020","0","160","180","","3304","5FA08379-70CC-44B9-B6F2-311FC318B769","0x00000000002C4A34" +"6B9F1BDD-99B7-4723-BAC2-EAC922FBFEBC","","SV-0112","0","350","390","","5199","A94A42EB-DF56-C74A-81B1-312C87EED3AE","0x00000000002C4A35" +"368E8E8C-3B88-4D22-88F3-D7DB9930B520","","AR-0042","0","17","37","","3722","BDB4BD91-4774-4B4C-B6E0-313C98B71439","0x00000000002C4A36" +"87E2E657-DEDD-47B1-898B-2B2C94D92EC2","236","EB-232","0","300","600","","291","0CFC5712-B8F1-45CF-9201-3165ACC63BC7","0x00000000002C4A37" +"57B7D3AD-0797-4C84-8604-7BCAD67F80D7","","BC-0026","0","80","125","","3921","EF1CF3C1-4767-40A5-824F-316C9EEC941C","0x00000000002C4A38" +"D687B428-3EA1-458F-BC95-C468DF60B13F","","SV-0078","0","430","450","","3374","FA6E025B-CAE9-4A3F-80F8-318EF444BD18","0x00000000002C4A39" +"3CF1696D-0641-48AB-9B77-A53562FB63BC","","NM-24985","0","140","160","","3574","9BBC2E75-F7C3-447A-B574-319E07744333","0x00000000002C4A3A" +"84D95D5E-487F-4C1A-AA38-A6358E89F0AE","","TC-221","0","906","1005","","2111","DE1005EB-BA4B-451A-9C54-31C408463B8B","0x00000000002C4A3B" +"AB0C5885-62A0-9442-92C9-1F537F376670","","WL-0073","0","140","220","","5234","DE7CB502-6557-8D42-A1B1-31C95FABEA1D","0x00000000002C4A3C" +"AD2F5B50-E5D2-4FDD-8498-0BFB3A04E4F6","","SO-0182","0","44","49","","3180","ABBD6DC3-ECA9-463F-A277-31EACB03B9C0","0x00000000002C4A3D" +"8B96274A-69D5-4B57-A520-DF576CF38B16","","AR-0049","0","45","49","","3723","E324E710-1C7A-4A6A-9D2D-31EB76540701","0x00000000002C4A3E" +"3EDB971E-947C-4ACC-AD17-9E0A3B99FEEE","","NM-24654","0","215","235","","3698","E2D37CF2-8035-4BA2-B973-3206A39F1BE5","0x00000000002C4A3F" +"2C07C3E2-A75A-4D47-842F-0B309B866F7A","","AH-046","0","466","506","","1614","9788C67C-8447-4B6A-B120-3209281A4239","0x00000000002C4A40" +"CC02774C-CF5A-455D-884F-D001AC1839CA","","BC-0103","0","140","180","","5040","71D88584-6766-43D9-ABD1-320AC07A4C5E","0x00000000002C4A41" +"CC8E0EA1-540F-401F-8F6E-B4BFCB4C716E","133","EB-132","0","60","90","","165","09DDC7EA-DD07-40D3-A156-322BCB6D9A87","0x00000000002C4A42" +"ED33259B-3637-4D8E-8EE0-5C8A50F858DD","356","JM-057","0","340","400","","897","B612E6FB-F2EF-4CA5-BF18-323544A669CD","0x00000000002C4A43" +"1A00EFEB-846F-427F-A5E0-13E68C472321","396","EB-392","0","160","200","","450","965F71E8-5FF0-46CE-96FF-324FD274FA66","0x00000000002C4A44" +"3E55FF2D-A11E-42E7-9934-40EA05B858BF","155728","TB-0223","0","0","21","","1304","26661B7B-3AD6-4D59-AA34-3268E91079C5","0x00000000002C4A45" +"C61B55A0-972E-4B6D-B753-08F9A691C8DE","","AH-082","0","400","460","","1769","E0B6AD96-3206-4AEB-ABD5-3285B43FA874","0x00000000002C4A46" +"46B0D481-0EAA-42DE-96C9-E308CEC075FB","33369","SM-0028","0","60","120","","1226","9A815EB9-6901-4518-B5E5-32930BE4C8E0","0x00000000002C4A47" +"F690649A-1CCB-4640-9DD0-5F0461173695","","NM-25042","0","595","620","","3498","7C8A0FB8-864C-43DD-AADA-329BF3520E32","0x00000000002C4A48" +"13CFC0ED-7858-49BD-8F3A-C47DD7E43D9D","153","EB-152","0","341","361","","185","E0A8B99C-AECD-47E5-9678-32B4D54063C9","0x00000000002C4A49" +"F95681EA-A2AC-46BC-8EAA-C64C5CF75380","","WL-0031","0","720","780","","3928","A9393EDD-DD7C-42D1-A4D3-32B996DB10E6","0x00000000002C4A4A" +"B8F4E068-92D1-48D4-B060-1086D86E1314","","NM-25167","0","160","170","","3454","8977F527-C67C-4479-AFD6-32DDC7B4C06F","0x00000000002C4A4B" +"E1BD348B-6371-4543-B575-A3E0C9EBF13E","","NM-10282","0","25","75","","3904","9244845F-0909-41EA-92AB-32F387EAC29A","0x00000000002C4A4C" +"54408B5A-999B-4E66-BE6D-7B6DBDBDECF4","33359","SM-0034","0","220","260","","1224","E4787EE2-1092-4D48-B885-3316314A7DB8","0x00000000002C4A4D" +"8D660B61-2761-4B62-8B4D-133B16D4604C","403","QU-068","0","25","45","","999","CE9F38A6-8D6D-479B-A383-331D86764BE6","0x00000000002C4A4E" +"9EED881F-F005-46BA-B62F-4981950004F9","325","TV-284","0","17","47","","1190","AB1BB5C6-B248-4286-A758-33470B6AF254","0x00000000002C4A4F" +"6248C619-F9DE-224D-ABD4-3B1258C7CB8E","","PP-042","0","62","82","","5272","E6D28082-3468-844D-8B40-335BD8A58D51","0x00000000002C4A50" +"20B3FBFB-3D47-4664-B0F7-A9E281151C8F","","WL-0361","0","550","560","","5758","EDF872F1-6C1A-4D0D-ADE7-33617B8A2D22","0x00000000002CF38F" +"F2FDECFD-7792-4849-A060-99CF04ABBB97","","SO-0180","0","44","49","","3178","1EA63B83-5D36-4913-9B63-33AB6456DD43","0x00000000002C4A51" +"6D643383-C560-4877-B1A5-DFE4BF9CE2EA","","AB-0112","0","172","177","","2650","459B2410-BD05-455C-BA47-33B09AE19D02","0x00000000002C4A52" +"8D7FD4A0-EB0F-405E-99CB-8D942420BB97","","NM-24625","0","137","157","","3708","476E5991-1FCC-457B-80E6-33BF09F5BAEB","0x00000000002C4A53" +"493C52D0-EA0C-4A24-863E-1694A933C326","","AH-097","0","220","250","","1784","ED85E4AB-56C5-4176-B410-33D39C1822CB","0x00000000002C4A54" +"405D7B0A-1A4B-400C-BB13-F4734CB35C17","33405","EB-687","0","681","696","","738","B746638E-D527-4040-9CEC-33D6080A7390","0x00000000002C4A55" +"86C295E6-0A31-480F-AC12-6CCCF3AFAA39","","TC-286","0","280","300","","2151","CDF41B1B-8E4A-479B-89F6-33D94D76B8A8","0x00000000002C4A56" +"704CC789-37BD-4A62-8459-85DE8F850725","","AH-098","0","420","440","","1785","53B6B981-7A5E-42EE-954F-33E86EBD91C6","0x00000000002C4A57" +"239A301D-55BE-46D2-BC16-A45C7A10A2C6","","AB-0141","0","1343","1721","","2675","A5EADDFB-230A-4ACA-A406-34120DEE7EF1","0x00000000002C4A58" +"99995CFA-24D8-410B-ADA7-DEF1FCC686AF","133","TV-113","0","127","142","","1050","23E535ED-6408-4A6D-9EA9-3416E062FACD","0x00000000002C4A59" +"38B8E177-45F7-4386-836B-18EDF204CB2F","325","EB-321","0","140","180","","396","1132CF97-921F-476D-8217-341CCE6B9E2A","0x00000000002C4A5A" +"B8CE0D97-116B-4F7B-AF0D-B317C2E4AE1B","117","EB-116","0","260","310","","147","D31512DC-BB06-4796-A715-343BBACB284C","0x00000000002C4A5B" +"4B578FC3-88D5-4328-AD8A-6BD6BC32DA2F","302","EB-298","0","2400","2430","","373","82E6A160-E451-4956-9DC1-34601D088948","0x00000000002C4A5C" +"72786592-067E-4B58-BAE1-A429F4266B8E","568","GT-016","0","155","175","","1343","19B60F94-BD17-440F-8B2D-348A5060FE07","0x00000000002C4A5D" +"2428FFE6-25C2-41D8-9829-52CFE96CD5D8","","NM-01362","0","640","660","","3034","0E95B6F5-5F78-4A6D-A541-349724E443F2","0x00000000002C4A5E" +"9A305408-2CC5-428B-971E-81C730F5A4FD","","NM-21881","0","135","155","","3864","0EF23E85-9FD6-43D2-9E03-34B8867560B5","0x00000000002C4A5F" +"F125567F-FF2F-ED42-A1EE-82CFA26A6612","","PC-045","0","355","365","","5347","52EEE0BA-BED7-3A4F-A31D-34BB724F14B7","0x00000000002C4A60" +"DB91B5FD-4209-4439-8316-487208009C00","","BC-0175","0","280","325","","5144","42F6A4CE-B8B4-407F-8E28-34C82CAD6627","0x00000000002C4A61" +"C2DD74B2-C8F3-4F29-AE2E-FB899EBA1EC7","547","SA-0319","0","0","150","","883","F4B3EAD6-CBC2-491F-A161-34C9A849CE16","0x00000000002C4A62" +"37FE135D-C730-490B-89A8-04D7F710A50F","","AB-0218","0","348","368","","2737","E8A90FE2-0289-40BA-986F-34F2BC42A0D0","0x00000000002C4A63" +"EEA1D69E-D4EF-4942-B58E-838A51230DC0","","PC-113","0","586","596","","5403","3D8E315F-79D7-3E4E-8059-34F6D77CF7F3","0x00000000002C4A64" +"29B9390C-2CD9-4656-A8D8-305E977C3221","112","EB-111","0","250","550","","142","78F6B8CF-62BD-41A2-9CC3-34F818A1A745","0x00000000002C4A65" +"99C942BB-7148-42EC-8FEF-39F40B967FEB","48","EB-047","0","170","210","","51","C24449CE-F638-4CF7-8365-3520334C0BFF","0x00000000002C4A66" +"491EE5C2-F7F7-41B0-93F9-C493A0128BCC","","BC-0179","0","580","600","","5147","804360EC-077B-4D46-AC1C-3552CA652423","0x00000000002C4A67" +"09E36C43-B8BD-4712-B8B8-BD62691E476C","","SV-0021","0","160","180","","3309","4CD57103-40AC-4C0F-9596-3557E48E44A5","0x00000000002C4A68" +"AE1D46E9-C7D5-CD43-A783-E80C7BE3DB9D","","PC-053","0","76","88","","5355","05A271E6-6D6D-5049-ADAC-355846C745F2","0x00000000002C4A69" +"306121EF-3FE1-430C-80E7-DDC310E6CD8C","","NM-04362","0","94","140","","5620","45D6011B-203F-9445-A618-35607830BB12","0x00000000002C4A6A" +"754E9FC9-5579-41FD-86C2-28402BCFA849","62","EB-061","0","300","320","","73","109B9D7B-3C5D-40AF-80E0-356647E6F30A","0x00000000002C4A6B" +"59118FEB-1B87-4569-AB26-2319E9F4C855","427","EB-422","0","260","300","","479","31217909-4459-4091-8202-357A78C91042","0x00000000002C4A6C" +"24B83C28-E8A5-431C-8D9C-AC236908DFDC","","NM-00758","0","360","380","","2899","7FFE4748-E851-48F2-BD9E-3585E3A0AEF0","0x00000000002C4A6D" +"370DFF6C-A326-4761-A5D7-D7B92378AADB","","AR-0078","0","11","19","","3113","6FA57146-BC60-472C-AF69-3589A100B637","0x00000000002C4A6E" +"E88E5A46-A70C-4FA5-B757-806BB20BD6B2","423","QU-088","0","117","137","","989","DD0B87BC-2F6C-4AE7-83B9-358A5097A8B0","0x00000000002C4A6F" +"C45F987E-FDD2-48F7-9026-AA072E872957","33383","SM-0014","0","390","430","","763","75963971-1552-405F-983B-35AEF1689770","0x00000000002C4A70" +"7714BA90-203F-4BDF-915D-E22380EB5986","","NM-04042","0","320","360","","3104","B412076B-D6C5-4BCD-BEE1-35BBC6873A02","0x00000000002C4A71" +"414FD68A-E4B8-4B48-8664-591B7AFA6E8A","361","MG-033","0","318","338","","924","09B44872-2CD1-4D7B-B006-35D7893E871C","0x00000000002C4A72" +"9054A5A3-5ADE-41C2-8F92-B50D8200DB25","33386","SM-0009","0","370","436","","765","8A03E4B8-658A-41DA-B6EC-35F16E40168D","0x00000000002C4A73" +"3BAA4A2A-74A6-498B-802C-23231BA1E03C","33296","EB-594","0","820","840","","637","2EEC6491-D9C7-4017-A2A6-35F374A23455","0x00000000002C4A74" +"DD3C8A09-7622-40FB-B8AE-6F207580ED93","434","QU-099","0","94","124","","982","005706A3-4AC6-4155-9BD8-360494DACAE3","0x00000000002C4A75" +"FC525CD4-05B7-43D3-A391-3A449E3AE0A0","123","TV-103","0","930","970","","1038","322EDC19-6E40-4B8B-93FE-361792175022","0x00000000002C4A76" +"5CF2D720-B0BB-4D2F-BF8E-B74E031BD14F","","BC-0161","0","265","285","","5135","36BC241D-F162-4BAE-8571-361B2A56310B","0x00000000002C4A77" +"62B4526F-3579-40AE-8AE7-79BECCAEDE5E","","BC-0190","0","360","400","","5160","9DE8CC9A-475B-4CA2-9452-363A99635CAA","0x00000000002C4A78" +"0CDB83C2-EF29-4A49-93FC-1B2D383EFF1C","","SA-0034","0","218","234","Steel with torch cut slots","5625","8E18593D-11F5-BF46-8848-363EF422BE48","0x00000000002C4A79" +"8EA85C21-0764-4E30-8E61-D1B8B89CED74","77","EB-076","0","195","200","","86","129EC4C7-FA07-4AE9-9FD7-36438C93D388","0x00000000002C4A7A" +"DDCA1BF9-6D11-4931-B74A-FB3105FC5461","","SA-0231","0","30","450","Open, uncased hole","5627","F4F4CF9D-223F-9644-86CB-3657B05C8301","0x00000000002C4A7B" +"09A2D42E-345F-4861-9220-ADA51250BAB7","","WL-0003","0","485","565","","3783","515B2B76-7D9D-4512-8FC2-3660A83E5E02","0x00000000002C4A7C" +"8E71A202-B87F-4335-AF9B-11E5DC5A97CB","","NM-24906","0","200","214","","3611","C5E6CA2B-B959-4A9C-93A7-367DA6CCA190","0x00000000002C4A7D" +"F2971670-0B8A-449A-9D8E-7087726C57B2","","NM-01305","0","300","320","","4949","5DA60D88-A2BD-415D-A6CF-369D969834DE","0x00000000002C4A7E" +"1238C2CA-71BB-417B-8E78-293DC81809BA","","NM-24716","0","125","165","","3668","6391CE9B-42BD-494F-BEA1-36A6EA85F3B5","0x00000000002C4A7F" +"499A69FA-31AE-43CF-B3BE-19E9058B8AB8","335","EB-331","0","250","270","","410","EFF78E3F-B8A6-4D3E-9672-36AE5C31326C","0x00000000002C4A80" +"4D26D501-9177-4252-BE72-71E783BDA208","","NM-23689","0","200","230","","5299","BA84C3F2-80DB-F74C-9151-36CC46B4D2CD","0x00000000002C4A81" +"34F34989-344A-497B-BA3B-E1DEC44D0005","","AH-014","0","258","288","","1571","A8D0F22D-0D6F-4C02-9756-36E7AE95AD33","0x00000000002C4A82" +"1E6F6A6F-0887-44DF-96D2-D2909DBA94B3","","NM-25025","0","640","660","","3507","914B2EC5-FDD9-4EB8-8E96-372060EE3803","0x00000000002C4A83" +"A6178514-379F-E942-9E6C-5FC9DF1CB08A","","WL-0156","0","740","760","","5711","C8C16506-73CF-744A-9B55-375962885DB8","0x00000000002C4A84" +"4316FB1A-CE3C-45A4-9DB9-1C7AAB584285","13","EB-012","0","71","616","","21","D40932B1-60FD-4680-B560-375FC54D5D21","0x00000000002C4A85" +"99ABA3A9-4E90-454F-98EE-450D81410852","375","EB-371","0","959","980","","257","1DBC3AD8-D419-4FB5-AD16-376ADEDC8C92","0x00000000002C4A86" +"BA175B9F-D083-4213-B675-1C1031201697","33287","EB-584","0","640","760","","629","04DB2C97-C36F-4D3E-82FB-3798C48F8342","0x00000000002C4A87" +"8A73AD94-51F0-4A34-87CB-27684552C933","289","TV-255","0","220","286","","1163","8DC3A577-1F15-452E-BCC5-379AFC073B45","0x00000000002C4A88" +"A2272646-2CA9-40C8-B7A5-B8970463F0BA","","SO-0144","0","5","20","","3142","E21888EA-8430-4769-9B5C-37BC230CC0B4","0x00000000002C4A89" +"9D9D4C0E-7013-433F-B530-955123D270A5","","CP-0018","0","310","330","","2937","D7D295AF-9C42-4A6D-9E2B-37C1E57F7525","0x00000000002C4A8A" +"D59C2B2A-09C9-E743-B736-684189A525D2","","PC-109","0","380","423","","5399","15BB2A2D-50AD-8743-9CD4-37C3B7A059FC","0x00000000002C4A8B" +"ED6370D2-C70B-4E0C-8A55-E413EA823241","","SV-0115","0","340","360","","3412","F92EDF71-FBFA-466B-99B5-37C69B45CEAA","0x00000000002C4A8C" +"0ED294CC-F9D7-4F54-872E-F680B6FFF95F","497","EB-488","0","450","980","","575","6AB2415D-8827-4037-8B86-37D573003502","0x00000000002C4A8D" +"E30D5AE2-93B9-4410-9566-064D7688FC3F","","BC-0155","0","410","420","","5127","5D52BEFA-93EA-45F0-8923-37DB629B7F24","0x00000000002C4A8E" +"7DC28D1E-F7D8-40C3-8A2D-533FF947B9BC","","SV-0010","0","180","200","","5477","C7B5BABC-FE4B-9947-BCB0-37F34693E94E","0x00000000002C4A8F" +"25C31FFD-78A7-DA46-AD9C-3B5060C33394","","PC-025","0","200","220","","5335","004DA361-27E5-6F4B-995C-381B44267C07","0x00000000002C4A90" +"8FC5E2B3-36EF-4C0C-8126-14A23B825EFE","466","EB-461","0","600","620","","523","26EF797A-AF0C-4CDD-81A1-3822C37D9A96","0x00000000002C4A91" +"DC5EEA96-25EF-4B06-8B13-9750907494CE","178","EB-177","0","620","680","","219","E5D82474-CF79-487E-8F08-382DBB5316EF","0x00000000002C4A92" +"7747FFD3-82DB-49F8-BF24-0554F6B4C31D","","SV-0022","0","120","140","","3311","4DD7AA51-CB35-4404-BEAB-3876A24AAED2","0x00000000002C4A93" +"AC8CE285-9A72-4F11-B684-846EFE3AEAEA","","SO-0201","0","46","50","","3205","40B70FE2-0242-4C09-B923-387C8514E4BB","0x00000000002C4A94" +"6E1DC921-5C50-4837-9C37-99B9032B369C","156","TV-136","0","82","122","","1069","A1378192-5B47-4B8E-9259-38ACBC338C79","0x00000000002C4A95" +"C891790B-4A0C-4EAC-9920-6D993DBE260E","293","EB-289","0","530","550","","356","B2C51973-9738-489A-95CB-38B9CE392279","0x00000000002C4A96" +"315C03F1-DCF8-0E42-804F-1782DA3E76CE","","PC-091","0","155","175","","5382","2A008D87-AC6A-5848-8B53-39274104D922","0x00000000002C4A97" +"E4CB746F-DB84-40F1-9D6C-40691FEC4846","33363","SM-0005","0","355","375","","759","670739FA-60D1-4ADD-B2FA-395FC415D4DC","0x00000000002C4A98" +"8303A031-117C-4ADC-9AD6-AF896B1512F1","358","MG-030","0","380","420","PVC","921","3C788C12-05F0-4D58-9407-39715504F9CA","0x00000000002C4A99" +"E1259146-372D-4E15-8F27-51BCF13A0E2A","","NM-09841","0","15","55","","4973","4876BB18-B446-44A2-8335-397DD882A176","0x00000000002C4A9A" +"064618C5-6F03-44B5-A37F-A553D3B5776A","","TC-281","0","75","225","","2147","6BE253B0-BA22-470D-B641-397ED1FF37B5","0x00000000002C4A9B" +"3AE580C0-372F-4A4E-A896-29FD43CA2A7A","","NM-26341","0","351","540","","3793","BE1F54B4-BEBD-4B4F-9D59-397EF40C04AD","0x00000000002C4A9C" +"6C37A693-EBE0-4A41-8111-FA9523FE08EC","33421","SM-0063","0","50","100","","784","C39A12CB-252B-4F40-A348-39B43A449D39","0x00000000002C4A9D" +"8FC5E2B3-36EF-4C0C-8126-14A23B825EFE","466","EB-461","0","480","500","","522","DCFEFD7B-06E1-4655-838D-39BF168A531E","0x00000000002C4A9E" +"F8DF7FF0-45EF-43F1-8995-E240E3B167A2","33377","EB-666","0","430","450","","712","C0E9FB02-420F-4C40-B65D-39C5A372246E","0x00000000002C4A9F" +"157C9C0D-3D8D-42BF-823C-02FDD79BB18B","61","EB-060","0","640","682","","72","F4A5C329-3BAC-4584-B005-39D6C99A118E","0x00000000002C4AA0" +"C5531CFD-4CA4-4F7F-A7BA-6E90D3FB5A3F","33318","EB-613","0","130","150","","662","1268ED27-4557-4633-B3A6-39E84D95FBA8","0x00000000002C4AA1" +"52F6EA5F-7F9F-4F68-BE73-0C9C96C4BBA6","78856","SM-0220","0","750","800","","834","7C2C6047-9C1E-4E60-B332-39E894B82147","0x00000000002C4AA2" +"DD53B4AC-14F0-44D0-96A6-21AFACEAD07E","","TC-300","0","80","160","","3785","39360CCB-512A-4CD0-B7AE-39F3F8F0D5C7","0x00000000002C4AA3" +"2E41D15C-2BB9-B749-BCBA-BF706CBD5DC0","","NM-28312","0","160","180","","5496","E5D0E5D8-54D2-B949-A354-3A004C1EDC5E","0x00000000002C4AA4" +"EE59990C-4B10-4CF8-B440-42072097C841","166","EB-165","0","605","645","","202","9F664F1A-8906-4680-BA71-3A14AEC749DD","0x00000000002C4AA5" +"C56711DB-87E6-4D33-A0EB-A18D3BC4ABB8","","NM-00540","0","93","183","","2882","F206C83D-FAD7-4917-BF7C-3A40DE5BB596","0x00000000002C4AA6" +"57E7D507-44CB-46CD-8787-69F356DDEC32","","BC-0264","0","420","440","","3553","057B52B4-CB4C-4079-9ECC-3A47AFA589A7","0x00000000002C4AA7" +"053381E0-E223-488E-85FC-802FB4825530","","TC-285","0","35","50","","2150","91CE8FCB-EAF3-454A-A512-3A55EB3CF15B","0x00000000002C4AA8" +"BD9ACDEA-B25E-41EA-9502-9FDEC652B332","495","EB-486","0","320","1000","","571","58337D84-3BF2-4279-B897-3A66D896B017","0x00000000002C4AA9" +"31C9FFA8-001E-4C25-BFA5-CD2F7143FF7A","380","EB-376","0","300","500","","437","4EB9D881-3EA1-4C87-BEC2-3A8B005C7D80","0x00000000002C4AAA" +"7BA81734-6FA7-493C-955F-3806FF6D6B4A","","NM-02234","0","100","160","","5600","15E0E4B7-D38D-F845-BCE4-3A8D8EE00545","0x00000000002C4AAB" +"8A6C3BC7-A2E5-4296-81AC-B6E3C36AC383","","AS-013","0","520","560","","1508","D684CFD1-5F6B-49CE-AD84-3A90E4D6A1FF","0x00000000002C4AAC" +"B469738A-CE5E-4296-A01B-01AB75F6A67B","","SO-0259","0","50","54","","3263","4C959965-C34D-4C8B-89DE-3A91A22EA14C","0x00000000002C4AAD" +"9327B2E2-9A3D-43AD-A74A-53ED27658923","","AS-023","0","48","99","","1516","16766E39-1EB0-4367-8626-3A99150B150F","0x00000000002C4AAE" +"082EF381-99D5-4F30-A56C-2F8CD532A7E8","327","EB-323","0","160","220","","398","20931B3C-9892-484B-9568-3ABE390BCB2B","0x00000000002C4AAF" +"E4A5D4B0-93C2-114D-B976-393806C5003F","","PP-033","0","30","63","","5269","E8845D14-6260-4944-A097-3AEA6A202CFB","0x00000000002C4AB0" +"FB659F74-0FA2-41D9-9879-C017A25E8B38","","HS-002","0","5","25","","5591","41F0548B-9595-0D40-8171-3AF17E63D6B8","0x00000000002C4AB1" +"C3C64092-15B9-40F6-B990-B6D1F7EDCED3","","SV-0085","0","170","210","","3378","C275BC2D-2E3D-44C1-B021-3AF4787535EE","0x00000000002C4AB2" +"62B48770-E350-48F7-946F-22C9CDE61D7F","33275","EB-572","0","351","374","","612","26392C77-F1DC-4CCF-AA3C-3AF71809A100","0x00000000002C4AB3" +"FC7E4AAE-13F8-4F36-86CA-5F5EB3BABDB5","420","QU-085","0","370","400","","991","920C78EF-98D0-461A-98E1-3AFAF95FE7AD","0x00000000002C4AB4" +"5C39E4E5-EEAC-42F7-932C-86B59B753FC8","125","EB-124","0","230","260","","159","728C5023-B32E-43E3-B3BB-3B3D429613EE","0x00000000002C4AB5" +"90EAAB5D-E5DB-473D-AFE1-FACA4494BA6E","320","EB-316","0","60","80","","390","8172DE1E-1379-45A9-9B0E-3B6B7BD1854E","0x00000000002C4AB6" +"30CECBB1-59DC-4E69-A646-9E0C7AFAAF9C","33351","SM-0019","0","175","235","","747","DD704D5E-C6E7-4E8A-9723-3B7C7D97A8F9","0x00000000002C4AB7" +"3B953B75-431F-4C87-BB45-1A44D6BE2034","","SV-0041","0","80","100","","3337","04993048-0673-4122-B787-3B8C48A3319C","0x00000000002C4AB8" +"C34ECABD-01B6-49C2-B326-FDDADA3D8B70","","QU-121","0","170","270","","3857","4D19C779-FDC2-4810-A1A4-3B9115FA0E25","0x00000000002C4AB9" +"58E20FE7-0197-409C-83BC-818C7D1FD9BF","","AB-0258","0","","","","5775","B23A8272-54CE-4BCD-9552-3BA40904ABDE","0x00000000002CF3DC" +"1AF2D0AB-15B6-4E2E-AF9B-394E068D6EE1","","NM-01465","0","70","72","","3060","5FECEE3F-6E02-4A4C-B677-3BA410953724","0x00000000002C4ABA" +"FB2A3D11-8177-4946-B73C-18D75041A413","255","EB-251","0","294","310","","306","9F7D491E-F8EE-4A76-95CA-3BA910C3EBDA","0x00000000002C4ABB" +"ABB00A9A-0D9D-4B30-9C1F-D78B3AAF239F","467","EB-462","0","490","510","","526","726B8C7C-27B6-4BC2-81CC-3BB72A82B039","0x00000000002C4ABC" +"26381C4B-7A36-4503-BF36-16A94F7A74DA","","BC-0077","0","370","420","","5012","7B1319C1-9A23-4E7C-9447-3BC631263B6D","0x00000000002C4ABD" +"2C30E109-6981-E145-B62E-AA9438063A66","","AR-0217","0","299","339","","5467","13725821-053E-CB47-A468-3BDA47EDEA95","0x00000000002C4ABE" +"A87F3520-59CD-444D-AB70-DF825EB664A5","","NM-08133","0","116","218","","5536","331F07E3-1DCF-C44C-B117-3BF51573A37D","0x00000000002C4ABF" +"61752AA0-E5C1-490F-9CAA-2CD3CF63EFA9","33294","EB-592","0","720","780","","635","FAEC5DA6-78A6-4F08-9AD4-3C094C404287","0x00000000002C4AC0" +"1271ACF3-913D-49C6-886F-41B6429789EC","227","EB-223","0","60","70","","285","69017CFD-2F43-49B0-B59D-3C1AF81B2595","0x00000000002C4AC1" +"6390F9B3-2548-41FA-8571-E6850712A06E","","BC-0104","0","160","200","","5041","F7804360-09F4-4BF1-8FB4-3C1F184E821A","0x00000000002C4AC2" +"0B734823-1B8B-0447-8E98-C2FF763B3CD9","","SV-0145","0","300","320","","5481","B25342DB-B478-AD4E-9BC5-3C66A9539ABE","0x00000000002C4AC3" +"037D0E4E-DC00-4734-9012-9CF9518C1E27","","NM-09485","0","65","251","","5554","48574539-1643-8A44-BA36-3C698033BBEF","0x00000000002C4AC4" +"1F46B412-6C00-0D44-8F34-139851AC94A9","","TC-434","0","140","200","","5303","99584828-2AAF-8F45-A294-3C6DE036C3B2","0x00000000002C4AC5" +"E7201AE5-878B-463E-9B9F-7B53CDA5693A","499","EB-490","0","400","980","","579","E0D90D25-FA15-4398-8FAC-3C744D1034EC","0x00000000002C4AC6" +"B83AA625-4EAE-45A9-BC06-43F1534FBEFA","","SO-0169","0","4","19","","3167","D4C3740F-F5C0-4063-A181-3C8301855B64","0x00000000002C4AC7" +"A0489AD1-2219-4B92-A923-E8AC0CDAC1D8","33279","EB-575","0","500","550","","618","5DB489A4-7EFA-4938-8F77-3C92A7907D77","0x00000000002C4AC8" +"B7AED25F-9378-46B3-8CCA-9CDA9A95D694","287","TV-253","0","840","1020","","1160","F9DC5BCF-7A1F-4E77-A0D8-3CC4C23CD66E","0x00000000002C4AC9" +"1CD0AE7D-50C8-4770-8305-FB4F1940F0C0","","NM-26614","0","662","680","","5719","456A4340-1C89-FC4C-9CB1-3CDD9F22B3B4","0x00000000002C4ACA" +"24F485E5-5982-4308-A60B-11EB91747A11","","NM-02481","0","190","410","","5609","8CCC4B89-E445-4D4C-A3BF-3CE3F71C9E0E","0x00000000002C4ACB" +"D9A776D4-C5DB-4AB0-8D4E-FDE281056265","","BC-0200","0","400","600","","5708","D4A33D80-5A93-264B-A97F-3CE7E71A69A8","0x00000000002C4ACC" +"499A69FA-31AE-43CF-B3BE-19E9058B8AB8","335","EB-331","0","350","390","","411","7A1D1DC2-63E0-4561-B516-3CF368BEB793","0x00000000002C4ACD" +"0EDE5117-5049-490A-8078-C7A5D04FCC6F","","BC-0005","0","260","280","","3890","DDCB108F-8867-4C17-ADE2-3CF6C9A313E3","0x00000000002C4ACE" +"B39C83E5-2746-4F76-B022-FBC680122A3C","","SV-0133","0","220","240","","3438","AC64A68D-0A6D-4D0D-89BD-3D0F39904A50","0x00000000002C4ACF" +"F7B77FC1-25EE-44EC-84F0-FB9AB4F883B4","","BC-0074","0","185","205","","5006","5B969F02-3583-4630-9E59-3D23FE3EC7DA","0x00000000002C4AD0" +"6E62C120-5D9B-442E-8C2D-0BE775D0B318","","AR-0190","0","39","44","","3617","087F70F9-DB55-4732-929F-3D3EF55B85D6","0x00000000002C4AD1" +"C8E96D55-EF54-5D40-A4E4-3FCCDC25BE36","","WL-0262","0","455","475","","5693","438965F4-9059-E34A-92EE-3D4D253A5CA7","0x00000000002C4AD2" +"B9F2B76F-43DB-4072-AC96-904615278421","33704","SM-0178","0","500","640","","827","61F44C1D-FA80-4201-9E2D-3D6640E7400C","0x00000000002C4AD3" +"0C1AF535-E21C-4A10-9098-A3DF5296C0F2","350","EB-346","0","185","365","","423","33896951-E1F8-43F2-BB78-3D6A73BEFD8A","0x00000000002C4AD4" +"9971779A-62F3-4F34-8F04-0448B58631D0","","AH-063","0","334","374","","1750","444B06FE-C5A6-40BB-A1C3-3D9C63AC0590","0x00000000002C4AD5" +"DDA0B3B2-8FE6-4DFC-BFF1-86248E05D8BD","","NM-26748","0","50","70","","3808","2770637A-6C3E-46D1-96DF-3DA596BED50A","0x00000000002C4AD6" +"63B64292-852D-48DF-A2C4-F82F1E29E105","","SO-0223","0","5","20","","3227","FE43E392-60B7-4D6A-AE25-3DB39184885D","0x00000000002C4AD7" +"CE19E13E-7A96-409C-9ACD-3A2F22A73918","421","SA-0135","0","160","220","","861","9CF929F1-F61F-4201-AC35-3DE04E1B7141","0x00000000002C4AD8" +"DE35ECC6-FC41-47BC-8719-C9008C7D39F1","","SO-0235","0","44","49","","3239","6DC0FD1C-B624-41A8-A2CD-3E1ADF7C7B1D","0x00000000002C4AD9" +"433E117D-DEA5-4048-9162-CAEC2756E2E2","","SV-0005","0","260","280","","3292","FCB09BCC-AB3C-424B-8433-3E20F80A867B","0x00000000002C4ADA" +"7BD0735B-8F22-4E9B-9C18-FCF710B21C4D","3","EB-002","0","330","370","","3","B2343C91-4160-4B61-B391-3E2BD1E66E4C","0x00000000002C4ADB" +"06D05C4C-3F0D-466B-A4E1-4A862526CDE9","","AR-0211","0","24","44","","3569","32711537-0E5E-46CF-9B31-3E4FFDE41B8D","0x00000000002C4ADC" +"4C37CC7A-2C09-4A1B-A016-B8DB14B3B8BC","","NM-26792","0","180","220","","3442","A735A372-AEE7-4E71-B0ED-3E6C56EFA4FB","0x00000000002C4ADD" +"1717DA5E-8190-F94A-9342-F61B99457906","","PP-048","0","57","92","","5276","DAC75DF8-9D8A-5F4C-82FE-3E7C43607A11","0x00000000002C4ADE" +"D4202A98-68CD-4ECA-BFBB-C30DA7A423B1","33696","SM-0171","0","1478","1598","","823","1B803D79-F3B3-4D39-98C5-3E8D0B136C61","0x00000000002C4ADF" +"14FEF7C6-8F7B-4514-B0AF-D5DB0DE8EB9F","","NM-25074","0","1970","1980","","3768","6991E913-45E4-4FD4-B0C2-3E924E5CE4E4","0x00000000002C4AE0" +"34213F94-18BF-4292-9667-2FDF531BC255","","AH-072","0","630","690","","1759","F2E2A35D-D0B0-4288-A545-3EA7DECA38D1","0x00000000002C4AE1" +"7AF4F6AA-ABA1-4F50-BF6D-371DBA98FB24","","TV-291","0","75","100","","2551","AE07791E-2B63-49F7-8DDB-3EE94753B509","0x00000000002C4AE2" +"947F716C-94AE-462D-99B2-9835742750CA","169","EB-168","0","700","720","","208","B9C34049-72F7-4568-8A81-3EEF53AEDC81","0x00000000002C4AE3" +"A09BFFCE-396F-43BB-9025-A7DB1317221C","33679","SM-0153","0","102","122","","820","DB9ED7DB-B5E7-4029-9096-3EF4979E4EE2","0x00000000002C4AE4" +"100939E3-0DD1-41D2-8F2F-C61443B26B5D","483","EB-434","0","175","196","","495","F79F75A8-B9EA-4B19-9C98-3EF8B8FA414E","0x00000000002C4AE5" +"F77B7259-9C40-491C-A111-0191815D9FA4","","BC-0263","0","180","200","","3550","AB9AF1EB-BFF3-4FB8-BC9A-3EFD0604A12F","0x00000000002C4AE6" +"41C38F67-43B4-4A49-A2C1-7A28AA9CCF37","","BC-0131","0","210","220","","5111","7C4E905B-F7B0-4A31-9C65-3F07835B7F19","0x00000000002C4AE7" +"7EB0BD84-C776-4BBE-84D6-255F27B6EE37","","AH-078","0","340","360","","1765","7FE6820E-53AE-4857-9B87-3F25A1CB4E8E","0x00000000002C4AE8" +"63F4EF3A-FF4C-49A0-ADF1-F58425FFB348","459","EB-454","0","205","225","","515","4B1DADF6-07FE-4BE8-AE05-3F41E168DE57","0x00000000002C4AE9" +"A5554656-F218-4539-B976-2E5874FE5E62","33592","SM-0083","0","270","360","","803","10001179-7238-42C4-B4A1-3F6EB6BE5B6F","0x00000000002C4AEA" +"FFB30470-DB28-4EA1-BBDD-07814CDB9AF7","33514","SM-0069","0","510","530","","790","EB608206-2595-49AC-A0E6-3F6F4811FA88","0x00000000002C4AEB" +"1E6F6A6F-0887-44DF-96D2-D2909DBA94B3","","NM-25025","0","680","700","","3508","3DA70388-A2EA-4084-93CF-3F8C0689D2D1","0x00000000002C4AEC" +"535B477D-EB5D-4838-A9F9-E61BBC32A93A","33677","SM-0152","0","755","775","","819","98B88F5D-805B-4866-996A-3F9D4D9CCC8C","0x00000000002C4AED" +"75378B10-6204-4DC6-9436-1CACF16E3134","201","TV-181","0","90","150","","1100","D4F1F9D1-B08A-4758-8111-3FB52864D9F5","0x00000000002C4AEE" +"F0CF9D47-12F0-9940-A6C2-264C4495F2D7","","PC-073","0","158","198","","5373","735BD7B8-F1FD-014F-8B78-3FC30C9E9115","0x00000000002C4AEF" +"A9870C59-CE7A-4A71-A4BD-1E8A868E130A","155467","TB-0007","0","185","285","","1240","F42FFC8E-3F27-4EDF-A465-3FCAEC081096","0x00000000002C4AF0" +"7C52C21B-4DA2-454B-9A7A-933A01E26C75","","TC-272","0","232","272","","2142","3D0840F7-63D5-4DA5-9AAA-3FCD9BF96B6D","0x00000000002C4AF1" +"0754A95C-2531-4BE1-9726-AB8EDACFE1B5","203","EB-202","0","50","68","","264","ED3BC2BE-127B-4BB0-B554-3FE1E0A37A02","0x00000000002C4AF2" +"491EE5C2-F7F7-41B0-93F9-C493A0128BCC","","BC-0179","0","540","560","","5148","388A0B24-E5C7-4782-ABCB-3FE848986F54","0x00000000002C4AF3" +"B7CF0BAB-96C8-419D-914E-488D7A20EC12","","AB-0069","0","295","300","","2612","0B55BA4C-B09C-4A1E-8D06-3FFDA4EAE6E9","0x00000000002C4AF4" +"01B04DF7-D684-4D31-9216-615C57941E58","311","TV-275","0","1929","2010","","1181","4F8D8DF1-7D3A-4D56-B322-40056D16D145","0x00000000002C4AF5" +"DF538368-A7D3-4AFE-987B-8A5C2C011AE6","402","MG-041","0","75","135","","936","835B2CFF-3B4A-4301-B9D3-400CA2969F2B","0x00000000002C4AF6" +"69EDA5BD-5599-48D7-B298-B8D8A2E24C05","280","EB-276","0","226","720","","337","C015D22B-9E83-4F97-A6DB-4020625EF806","0x00000000002C4AF7" +"7BD0735B-8F22-4E9B-9C18-FCF710B21C4D","3","EB-002","0","90","130","","2","ABD08728-B059-491D-A688-4031480E3F88","0x00000000002C4AF8" +"05D8C371-4B1F-43FB-938B-D3358C9D559C","","SV-0052","0","380","400","","3351","21B04AC4-095B-4E27-8E44-4032A3D98E57","0x00000000002C4AF9" +"A83C0F27-91A4-4020-BBE2-8A5D9BD0DBBD","135","TV-115","0","190","200","","1052","DDF2B228-C046-496D-929D-4065F9ECB1DC","0x00000000002C4AFA" +"7A3BCE38-D499-48A5-81DE-01424B3BA651","","NM-25118","0","622","647","","3468","0888D7ED-677B-4166-A062-407634D024CB","0x00000000002C4AFB" +"E4E1F7F1-05FC-460C-A067-B3652924DB16","432","EB-427","0","188","228","","486","96DEA007-DFF0-4340-A3C4-409DD8554036","0x00000000002C4AFC" +"BC0A85EB-6987-48D3-822A-773D18647088","","NM-02444","0","45","100","","5607","7086AD85-5EA2-414F-937B-40AAC668C8B7","0x00000000002C4AFD" +"7F62EB6D-007A-DF4D-B68A-3D3B7CDC4D8B","","PP-066","0","20","77","","5285","80B19251-E5F7-E34A-96C9-40B723DF7855","0x00000000002C4AFE" +"1CD6DD61-F663-49FA-8B24-8115AFDB4EAF","277","TV-243","0","100","138","","1152","E0E3F928-6C22-4A79-B3C6-40DAE180BA06","0x00000000002C4AFF" +"9EE90E14-2A29-43D0-AF9D-16CA3EE8ED08","","NM-25112","0","556","576","","3472","02C6EB4B-69D7-4CBB-8C2A-40DBA35A07D0","0x00000000002C4B01" +"79029F10-44E4-499A-96C5-2DEFE5C265A3","","BC-0078","0","165","205","","5013","961E2802-9C62-4430-B6AB-40E6AF0F5F17","0x00000000002C4B02" +"BD8BD3CB-BBA7-4335-9F3A-12C793E69D9E","","NM-25041","0","180","196","","3501","752048A5-C10B-4719-A4C0-40FAB9B4AD98","0x00000000002C4B03" +"75311C0A-3ECF-4EBA-8AD1-930225E90D41","","NM-04049","0","80","230","","5616","414050FA-D24B-9345-9C3D-41023D11CCEA","0x00000000002C4B04" +"597E3268-E453-422F-A0F5-1D12C4AA5654","155473","TB-0008","0","260","380","","1242","69E04137-48FA-4C49-AC60-410D90BB08F9","0x00000000002C4B05" +"40F14B6F-1501-416D-87BC-D3856AFFCDA2","232","EB-228","0","100","130","","289","EE9C4789-A6B5-462D-8E71-410F3A434F05","0x00000000002C4B06" +"522F79D0-F820-4C66-9EF4-ABCF1307BFF3","394","EB-390","0","450","460","","446","8FE6D18C-7CA7-429B-9FED-411ACAA76201","0x00000000002C4B07" +"007D543A-1A75-4C95-9AC9-3E3B4108D751","155590","TB-0127","0","120","140","","1286","836D6152-AD8D-4B34-8216-411D59F8A3F4","0x00000000002C4B08" +"07789AD7-E778-4445-BE37-459387CBE25C","","AR-0215","0","280","300","","3599","4B047BF7-906D-4B92-988E-411DF16CB1C8","0x00000000002C4B09" +"1AE8C119-93BD-4177-92E9-3D857A44042C","","AH-081","0","380","420","","1768","9A7652EE-B4DD-4904-89EB-41284376C99F","0x00000000002C4B0A" +"9C43EC08-86D5-44EE-8FCA-8F63CC39BEB3","139","EB-138","0","700","720","","172","FB644059-01FB-4344-906E-4146D6D14405","0x00000000002C4B0B" +"BFC3FF86-DD42-DA49-86A6-B37E11562D79","","PB-0029","0","200","220","","5653","58A87311-BF30-2043-9013-4173CA3E549A","0x00000000002C4B0C" +"313A5EFF-4A33-4B13-A4D4-AF7ABF530E23","278","TV-244","0","240","260","","1153","B32203F1-AD5E-43CF-81C3-418452DF0B83","0x00000000002C4B0D" +"FD9B530C-F292-4FC5-91CC-BA6168610A2C","","WL-0014","0","100","160","","3796","19B7F962-D794-400C-AD9A-4193ECD6A1C6","0x00000000002C4B0E" +"8A57F12A-325A-4963-A16B-C154B0B6CBA4","","NM-21282","0","300","360","","3823","CFB7DBA0-53B3-43BA-B5B5-41AF6FEE0FBE","0x00000000002C4B0F" +"D2E77F9F-4F09-495B-AB5E-7679BDEAD790","","TC-421","0","73","124","","5304","70FD82DD-DE17-884A-A460-41BF85AB9E09","0x00000000002C4B10" +"F39B93BF-1F00-46E6-8954-DC3C31A4E444","397","EB-393","0","160","180","","451","071E1BEF-6F2B-470C-B5BA-41CF88524C03","0x00000000002C4B11" +"4DF72F6D-12F6-E440-9964-15E6351EEF28","","WL-0109","0","110","130","","5446","2583C487-0A6C-124C-A6BD-41F9A6940AAE","0x00000000002C4B12" +"9CF78787-C7B4-2F46-A48A-57EE4785B4A5","","WL-0092","0","154","194","","5437","AC67584D-6130-3C45-81A7-4231DFED8916","0x00000000002C4B13" +"D1C94DBE-E3A2-4875-BEA1-DDE3BCFE71D9","241","EB-237","0","253","271","","293","4447A1AD-1848-4E52-8CA0-42371941C6DE","0x00000000002C4B14" +"58686880-B818-4AFE-804F-E2A9485A1460","","NM-08418","0","171","151","","3900","FF40A4DC-1733-43A8-B853-423F88D8578C","0x00000000002C4B15" +"081D9680-C624-3C40-8FA0-5A4C7B57D831","","NM-28309","0","170","185","","5495","77625626-1662-A94A-99C4-4246550B4998","0x00000000002C4B16" +"73DAFC32-0133-46FE-B6F5-DB6D09F0A0EE","","SO-0145","0","46","51","","3143","E1FF1F51-2192-4485-B407-4262FBA66B45","0x00000000002C4B17" +"6BB2F36F-20F7-43B8-8DE3-49C2BA8D6DEC","155585","TB-0122","0","80","100","","1284","C034A415-17FA-4BA6-BBC7-427D8EE9EA48","0x00000000002C4B18" +"6EA7707B-FE6A-48E1-A85E-1609030F9D2C","54","EB-053","0","220","240","","59","DBA89EAA-EAE5-41C6-9F78-429D2AB8438E","0x00000000002C4B19" +"D4CB27B1-DD38-49A6-83B6-AA5AE175EC13","33419","SM-0061","0","80","140","","782","887FFBAC-F2DA-4989-BDF3-42A5B7B0FED8","0x00000000002C4B1A" +"10BD81E6-6A3E-4DBB-9084-EACA9BA833DA","","NM-24918","0","180","200","","3602","6E61A8CB-6D95-4DE4-9B4F-42ADCB4D4D67","0x00000000002C4B1B" +"A5D33A02-06C7-45F4-9922-FE3C7A9D66E6","","AB-0007","0","1078","1272","","2564","E2337136-2D0B-4D20-8DB9-42D044F6C764","0x00000000002C4B1C" +"9004E24B-BA30-450E-91A7-F1CF0161BD2E","389","QU-059","0","52","82","","968","E6FA288E-8743-4C6F-AAF4-42D9AB47E761","0x00000000002C4B1D" +"1271ACF3-913D-49C6-886F-41B6429789EC","227","EB-223","0","80","95","","286","9AB547EC-85D3-4B79-B43D-42ED525388A5","0x00000000002C4B1E" +"211C62CB-693A-4739-939F-A7134DC554FB","435","EB-430","0","290","340","","489","C24B3815-5A14-4EC0-890D-42F66FBC246D","0x00000000002C4B1F" +"E0207CE2-3298-4F52-8902-CA47B40BA8A0","436","QU-104","0","340","390","","973","4892F733-E6D0-4DE9-AC59-431B6A686DA5","0x00000000002C4B20" +"09334F4A-0308-45BB-98CE-FDA331146DAC","206","TV-186","0","240","280","","1106","FD1D9739-D822-443A-9429-431D01C1C76B","0x00000000002C4B21" +"9C6735ED-1D23-49D4-B582-86A50FA9437F","","SO-0143","0","47","51","","3141","FF6139CF-6610-4A2D-A9FB-432594DC1F82","0x00000000002C4B22" +"E34F58B6-6F16-4694-9477-235503BA8539","","NM-25000","0","77","78","","3559","EE94F95D-FCC4-4D8C-81AB-4347868F7AD9","0x00000000002C4B23" +"1779AA40-E7CA-49A8-B829-310FE95429AE","266","EB-262","0","260","270","","321","7034CEDB-A206-42EE-86B0-4380B75E1A6B","0x00000000002C4B24" +"8E01FD70-D8CE-4233-9285-40CE5B55BBF4","237","TV-217","0","1995","2003","","1169","3D873D20-27E9-453D-9B49-43B009AC8583","0x00000000002C4B25" +"4F92A0F3-2D25-409C-8E91-0DEFCA8CCECE","285","EB-281","0","195","235","","342","F470F6A0-6D96-44FC-8376-43BC876673A3","0x00000000002C4B26" +"8D7FD4A0-EB0F-405E-99CB-8D942420BB97","","NM-24625","0","97","117","","3709","D5FB6288-A45A-4D79-A6DE-43C607C429EA","0x00000000002C4B27" +"5F84813F-8F0C-4F58-A428-542607D94A9F","","TC-244","0","630","690","","2121","AE583947-573C-46CC-BA59-43CFB0B96BBF","0x00000000002C4B28" +"FA4C66B5-1D3F-4D50-90B1-8FE816A2641F","311","JM-012","0","60","200","","891","AB1FD2F5-C5A5-443C-B631-43CFC9BAE2A0","0x00000000002C4B29" +"6A135F49-4BA9-4FF7-8B58-0A69C3F97E0D","440","EB-435","0","160","200","","496","2BDAC824-1D2D-46E8-BEC8-43D180BB9D1C","0x00000000002C4B2A" +"EE59990C-4B10-4CF8-B440-42072097C841","166","EB-165","0","665","685","","203","3DBE72ED-96D2-4626-8C18-43D8CE2246F2","0x00000000002C4B2B" +"49AAF19E-E11B-4E63-8A68-790D75AA5FEF","76","EB-075","0","243","560","","84","0426E8B6-0D9F-440E-9655-43DBFE379A47","0x00000000002C4B2C" +"52AFC297-7F11-4DD7-AD5D-DF719D77F614","91","EB-090","0","500","900","","110","A3350EDD-EF3E-47BF-BD3F-43DE3F29FA70","0x00000000002C4B2D" +"5D770379-C431-48A4-860E-F352529901FE","","TV-157","0","162","217","PVC with slots","3016","B076BF3E-A66F-4880-AE63-43EAA85A9940","0x00000000002C4B2E" +"45ABB132-4241-4D9A-81C1-A1D5EE3B2B6F","","AB-0008","0","1242","1294","","2565","0E3133D3-4F19-48F2-9DF7-43EF134AB80C","0x00000000002C4B2F" +"AC90BA0E-F85D-4EEA-95CD-CC6F3869976C","","AS-053","0","141","641","","1541","DC367FBA-287A-46C3-A763-43F031FE0C45","0x00000000002C4B30" +"25E61981-1059-413F-8943-F62481746779","","AR-0057","0","44","49","","3006","7D4834AF-7F00-4740-81FF-43F41AD5688B","0x00000000002C4B31" +"CE6F7B6A-FC7C-4A8A-8414-604A249C6E31","","AS-007","0","240","280","","1502","7DFCF464-518E-44D0-B44B-43F52A649FAE","0x00000000002C4B32" +"4183CE7A-4531-4D45-9E41-595C7C3B1B4A","33321","EB-616","0","390","410","","669","E724AF25-4769-432C-9DFB-43FF4834E853","0x00000000002C4B33" +"7E320DD7-910C-4DBD-AAB1-F06DE6C6E5BD","","SO-0197","0","44","49","","3195","B23F950B-74A1-472C-BD2A-4410087F8A6B","0x00000000002C4B34" +"C8F10454-8708-4D59-B121-0D6BC7626BE1","7","EB-006","0","340","360","","13","E9CB2D02-64B2-48FC-AEE6-442156B375FC","0x00000000002C4B35" +"0B917E9D-8BFE-4AE2-8B63-5443A6E24B34","33382","EB-671","0","600","620","","720","FE5D0E4F-C3C8-4551-A557-4425A09D5C7A","0x00000000002C4B36" +"78201E48-2E45-BC49-A914-E2DC2DB7C7BD","","PP-001","0","83","118","","5256","7FAFDFD2-71B6-6648-A78C-44263AEF9E92","0x00000000002C4B37" +"A8531394-4FB2-4563-8CB1-A0269283F9E8","","AH-086","0","180","260","","1773","EEDEF813-38F5-4C3A-AEA9-44415A0C5558","0x00000000002C4B38" +"007A5201-BDD3-4643-B780-B22D56BBEA8B","","BC-0010","0","250","270","","3912","AC73528A-7615-4DCC-9630-44672A9208F0","0x00000000002C4B39" +"416AA393-878C-49E6-AF1E-D3373989A79A","","SV-0046","0","540","560","","3344","EC83BC24-4823-4968-B098-44756049F7C0","0x00000000002C4B3A" +"DCCD9BA8-E761-4F0B-9BEE-2F8ED5137298","","AB-0046","0","15","20","","2594","1FA931FE-26AB-48C6-9AD1-4483C9086C09","0x00000000002C4B3B" +"99A6949F-F754-4BFB-B7EA-3F2E5E7B6934","","BC-0240","0","150","170","","3534","AE7F3103-0434-411C-B56E-4484E86800AD","0x00000000002C4B3C" +"1B1E0E49-C65B-4EDC-B1A4-E3EE6C0D025C","","AB-0085","0","380","1000","","2625","512B0FB8-38B9-44D3-8F5A-449DF21CB8C0","0x00000000002C4B3D" +"7BA81734-6FA7-493C-955F-3806FF6D6B4A","","NM-02234","0","260","505","","5601","332DFE4E-88DF-A148-AD28-44B97FE8F269","0x00000000002C4B3E" +"D7883CE8-5A42-40E3-8EAA-2D26CB1C171F","289","EB-285","0","637","658","","347","28B30A51-5A89-4645-B964-44BB387331F8","0x00000000002C4B3F" +"7C04F593-EDCB-43C3-A11F-7CBB468315F4","","BC-0184","0","300","400","","5154","F5EB5B73-7C0F-409A-B54D-44C016E02BEB","0x00000000002C4B40" +"5F0ABE9D-E20D-4328-ACAF-8B4342EBE2B2","","NM-21315","0","180","200","","3826","D3917DEE-840B-4D3B-A662-44CBEE5A9E53","0x00000000002C4B41" +"BC0A6E6E-AC2D-4CDE-9D5B-B6AB1446096A","155578","TB-0115","0","150","190","","1280","FD7E4D1C-874F-4A3F-BE50-45114824E673","0x00000000002C4B42" +"C8A4D9D3-0A08-4212-A8BD-A0877B6E6E4A","5","EB-004","0","319","359","","8","C87D71F6-9955-45AD-9E62-451247D5BB05","0x00000000002C4B43" +"1766FC2D-BDEF-4F78-8010-604BE914E21B","","NM-05938","0","290","340","","3879","15AE6336-2602-42EF-94DD-45197E08BA1B","0x00000000002C4B44" +"40D71B05-07CF-402E-84A8-4F11CC033A49","","QY-0501","0","190","208","","2979","6C4C40D0-36C6-450B-BC0E-4528328E5670","0x00000000002C4B45" +"221491BB-EE7F-4A0B-859A-C5EE6E1DF0AB","448","SA-0163","0","15","50","","869","DB830C82-3CAA-4627-B2D3-45422CE70F2C","0x00000000002C4B46" +"16DC3A3A-1DAB-4013-860F-A1E8CFBC003C","","SV-0117","0","380","420","","3416","EE028986-CBB8-4325-82CC-4560B62909ED","0x00000000002C4B47" +"6C718DF8-AD16-4B88-AD3B-FEDA331B4DCF","","NM-24963","0","1540","1550","","3765","4E1802ED-C2C6-4776-982C-456524099692","0x00000000002C4B48" +"7A49FE18-AABC-4598-8591-4D3AE3CDAE7D","","AS-057","0","440","490","","1545","799D9F6E-9302-479B-851E-4566C4549194","0x00000000002C4B49" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","180","200","","2888","F044F3F2-95D5-4B8A-B1DF-456F77596328","0x00000000002C4B4A" +"278B9205-9813-4427-8651-B48358A9B78A","","AB-0212","0","422","427","","2732","BB9987BE-6C4A-40F4-B09F-45749AE276BE","0x00000000002C4B4B" +"8BE21899-E0DA-4EBE-A109-58944449C538","","SO-0196","0","3","18","","3194","EF26E0F7-A462-44D5-A829-458BA1ECFB5A","0x00000000002C4B4C" +"8BC524D4-B300-40D4-BB4A-35D0C256B035","","AH-042","0","456","496","","1596","99DF7828-9D9E-4423-92BC-459BAF379481","0x00000000002C4B4D" +"264C6233-A761-46C1-B246-D1241C300CAA","","AB-0078","0","320","360","","2619","8DA0D422-552F-4084-B636-459BCA9FD544","0x00000000002C4B4E" +"6795D6DE-88AC-4BCE-876B-5A4FDEAF1AF9","","SO-0216","0","44","48","","3220","2F671D00-1FC2-48BA-8924-45B837EDB8C9","0x00000000002C4B4F" +"FD8F6C4A-6E88-49E6-85A5-C0E19D588403","292","EB-288","0","500","1700","","355","C94EF723-841A-473D-ABFF-45E4A226EBA8","0x00000000002C4B50" +"D52A7CA9-049C-F94E-B3E7-2B4FBFD42B9C","","PC-007","0","195","205","","5315","02D9619F-54DE-7F4C-859F-45E7FB9E7A40","0x00000000002C4B51" +"FB72447F-32E7-4AE4-AB1B-CCE42D96051F","","WL-0024","0","390","400","","3855","BA92E5FA-5981-43A8-9EDC-45FFD7A153AC","0x00000000002C4B52" +"BB192E60-8F54-4030-B40D-19EC70F27A4A","201","EB-200","0","219","261","","263","96421999-7593-4D3D-9EA7-460A4727A061","0x00000000002C4B53" +"19E45BD0-C740-4932-A5CD-967D1AA14D87","33238","EB-520","0","185","212","","593","469A0AAC-6684-4B7E-A058-46157ABFA55C","0x00000000002C4B54" +"5B82C24E-E20B-4214-AEFE-F7B758B0E056","","NM-01504","0","560","580","","3067","576FB9BA-D24F-497B-B81B-461BF45B263B","0x00000000002C4B55" +"20D9BF24-6799-4141-9F7D-2A5B628FBB5B","155556","TB-0093","0","86","116","","1271","B956FD41-0FE6-4CBA-8393-4664ABD15209","0x00000000002C4B56" +"7242424B-FFD9-459D-A191-4E0F6B0E8C82","","QY-0101","0","40","240","","2956","A7EB7820-1C94-4262-9FEE-4667F79FC86F","0x00000000002C4B57" +"9A8CC3B9-E4B8-43C5-A2B2-F5962F8C442A","473","SA-0185","0","62","72","","873","8240DA1B-A758-4425-A7B5-4671FD28356E","0x00000000002C4B58" +"A74828B3-6D67-7545-9395-7AC1AEEDE1A2","","PC-099","0","400","420","","5391","AA91A277-6805-DC45-9EA4-46BA9FF5091E","0x00000000002C4B59" +"4E5A318A-2C00-4351-8FFA-CDE4F776298C","246","EB-242","0","100","120","","298","F6721628-24B4-4122-8FC8-46CE7CD0FA4E","0x00000000002C4B5A" +"C69F11DA-5B6E-40C6-8CCA-B2C42B6D9F27","296","EB-292","0","583","603","","365","37C6BA2D-E2CC-4D83-B570-46DD1A9AF5DB","0x00000000002C4B5B" +"E2A2425E-77F2-4EBD-A6BC-DA2CA77D94B7","328","EB-324","0","200","220","","399","35DEE3A8-62B7-47E1-89A2-46EA41B23C16","0x00000000002C4B5C" +"E21645C8-3145-482E-A26C-73E8AE694F1C","33254","EB-505","0","71","90","","582","CBA2CD69-618A-406C-A3C1-46F48BA41A0E","0x00000000002C4B5D" +"BB54E0F7-2C08-4A76-A30D-F4BB03A6FEB3","43","EB-042","0","310","397","","46","1B3D91D4-AE84-469E-8542-4700D63DC9AE","0x00000000002C4B5E" +"093CDAAB-AD2A-44B4-B1D9-B80783155E09","","NM-01691","0","135","165","","3761","BAE7FD12-C5BE-420F-AEEC-47143A4CC32A","0x00000000002C4B5F" +"373BC325-13B9-7048-B282-08683EDFBF31","","NM-28328","0","160","240","","5508","222A0644-0EAA-3D42-8BA4-471806CA7B1D","0x00000000002C4B60" +"2FCFDC75-E9AE-4C11-807B-B913953DC7B6","","AR-0155","0","53","58","","3091","24FC1CCD-3E88-442F-8E8C-4720DBB62E76","0x00000000002C4B61" +"48405FAA-FF66-4360-B870-73B03B3878F2","388","QU-058","0","100","135","","966","D937FD7D-555B-4733-B3EE-4726D9B8A0D8","0x00000000002C4B62" +"414FD68A-E4B8-4B48-8664-591B7AFA6E8A","361","MG-033","0","718","738","","928","24DB0A90-0151-4A08-A4B6-4742CAD85EEC","0x00000000002C4B63" +"89474C19-F335-4BFB-96C8-12797097C06D","","SO-0135","0","4","19","","3133","CAF88F6D-52A3-4D49-AC48-475705C8ADD0","0x00000000002C4B64" +"9295A19B-840A-49C5-B167-29001573F0F3","395","EB-391","0","280","300","","449","DF1A4B1C-5711-4D5B-92C5-4762368332A8","0x00000000002C4B65" +"FED6000D-1A66-41A9-AD76-E6AE40D578B0","","AS-004","0","20","50","","1500","C1513A67-D2E0-4732-BB47-47685825A0DC","0x00000000002C4B66" +"B7C34321-B52C-4AC6-8F15-57EA486C222C","342","MG-014","0","100","120","","907","1A1D1623-28BC-42CA-93CD-479F714163A0","0x00000000002C4B67" +"32C6B27C-67FF-4B82-8B9B-15583834E259","395","SA-0117","0","330","350","","859","5940B29A-DB75-4A6E-A2C8-479FC1909CD7","0x00000000002C4B68" +"0D1721E0-605C-42BE-9299-E548AD795C87","","QY-0484","0","54","60","","2975","92184FC9-0FA1-4D7F-8A26-47A06FB0E91F","0x00000000002C4B69" +"28C02290-B1E2-4261-ACAF-8A28236A0AB6","493","EB-484","0","698","1400","","568","BE823C15-C55A-4A1E-B071-47D8409B55FC","0x00000000002C4B6A" +"DAD9EF2B-50CE-49E7-BABB-2FEF94546362","197","EB-196","0","600","700","","260","69BBDCD3-B9A2-45FE-9CC3-47E0F2DC5FC0","0x00000000002C4B6B" +"D46D5E52-4E6F-41B1-B5FD-94EAFF79C9F5","","NM-26958","0","157","162","","5094","C504055C-DA37-4AB9-87BE-47E95DFF7FA9","0x00000000002C4B6C" +"9A305408-2CC5-428B-971E-81C730F5A4FD","","NM-21881","0","90","110","","3863","86A71BF0-7907-4773-8994-480A519B09A3","0x00000000002C4B6D" +"093C4B93-A8B0-4A1F-88C9-C94D1722B752","6","EB-005","0","570","590","","12","E8D50120-D4DF-49C4-8FE5-480EADEF448F","0x00000000002C4B6E" +"CA92C5E0-D26C-4CF0-A7EB-2F8E221AE93A","194","EB-193","0","300","340","","246","F8983D8E-1DC3-44A5-863A-4821201C328D","0x00000000002C4B6F" +"1E7DF248-40B4-4930-8EA9-555C9DE02C21","543","QU-156","0","140","200","","1032","B4EB81CB-8CD4-408E-A3CD-48216BADCC9F","0x00000000002C4B70" +"CF718A38-F680-4A5D-8C53-B8D381694FD8","","AR-0072","0","16","21","","3012","F5755A6F-D6D3-4C02-827E-483D449B003B","0x00000000002C4B71" +"9E41A1DE-91DA-4A3A-88D4-F3CF225A6D4D","301","QU-002","0","196","300","","941","96B244F4-6EAE-4D38-9096-483F2409A677","0x00000000002C4B72" +"40947317-B4BB-4223-A6F2-650B7B3D447D","323","SA-0017","0","390","412","","853","2552A9B9-BCF7-43FA-B250-48478194B8F2","0x00000000002C4B73" +"AAEC5359-863A-4D4F-BD3D-93E342BB33CD","","BC-0080","0","440","460","","5016","97BC3D7E-B5DC-4E83-B387-4850C6BA1EC9","0x00000000002C4B74" +"9EE90E14-2A29-43D0-AF9D-16CA3EE8ED08","","NM-25112","0","467","487","","3471","968BBB0B-DE6C-421A-88D9-48791B5AECEE","0x00000000002C4B75" +"E4CB746F-DB84-40F1-9D6C-40691FEC4846","33363","SM-0005","0","315","335","","758","2B509158-2A8B-49E9-9313-488C614B4B81","0x00000000002C4B76" +"657FD03F-6DAA-40FD-80CD-8EB49138B836","33299","EB-597","0","740","760","","643","46B11068-D919-4CCD-9F08-488D8B58008A","0x00000000002C4B77" +"1D96DE47-603C-46DE-8085-0DBB3F90C87F","","NM-24876","0","100","120","","3624","1ECE9124-7E21-44B2-9693-488FE43635BD","0x00000000002C4B78" +"840E2C8E-FA6A-41D1-942D-A32AB02E3443","","NM-26797","0","4470","4507","","2870","A336213D-98D2-4922-AB04-48CCEF67E49D","0x00000000002C4B79" +"CED18E8E-F882-4313-BE95-F6D73E461487","","AR-0206","0","17","22","","3098","C3A21137-5832-4C0E-8A3C-48CD6A9C7D2F","0x00000000002C4B7A" +"A83C0F27-91A4-4020-BBE2-8A5D9BD0DBBD","135","TV-115","0","540","600","","1053","A74903D0-F5AA-4CB8-95A8-48E03765EE44","0x00000000002C4B7B" +"42670C0B-8612-4E7D-8C38-42EF61962568","","NM-24742","0","219","234","","3656","93ADBCFA-A504-4885-9C72-48F06AF9676A","0x00000000002C4B7C" +"CF459F91-D1FE-754E-ADF9-05F1159756C1","","PC-102","0","758","798","","5487","EDEEC8C2-9482-514A-8A64-48F5B421F52A","0x00000000002C4B7D" +"65BB0D83-DF19-40AA-BA7D-8F4774437188","33378","EB-667","0","680","1360","","713","1C4E071A-D602-4CE7-B84A-490EEFB6BF08","0x00000000002C4B7E" +"1E1356DE-B861-4CD2-B09A-C3158FC1E121","121","EB-120","0","620","700","","153","27E3CDFA-1ACE-4259-8A6A-49399E9A21D9","0x00000000002C4B7F" +"3F9CF305-22BE-4BF0-A132-636CDA5CA933","","NM-01826","0","95","110","","5570","7E8E71DE-F85D-2F4B-9547-49726EC7600E","0x00000000002C4B80" +"71FDBA14-5DE0-40F7-B00E-FEECE7B6CC68","239","TV-219","0","978","1058","","1130","FFD7090B-DA39-448C-B28A-498159077E16","0x00000000002C4B81" +"D53F1357-EAA3-4003-857A-C10FB1374BCF","","TV-293","0","1096","1117","","2553","BCB7D1C5-A0C6-40E1-88E3-49828A0ACD90","0x00000000002C4B82" +"022892E1-AEB4-401C-9C08-7BCDE929FF9D","","AH-108","0","510","530","","1815","24544721-C594-42CF-8F2A-498CA44F9B88","0x00000000002C4B83" +"2822D158-1432-48B9-91D0-DDA7AB449300","","BC-0087","0","320","340","","5026","E71700EF-7786-4700-8796-498D1A6D0A17","0x00000000002C4B84" +"2F18CDDF-49EC-404A-BDBA-3F425B0707FD","","NM-00722","0","200","453","","3743","053D8DA5-4A92-4D71-9B64-4996AAB888C9","0x00000000002C4B85" +"47292BAC-7327-D24E-8BA6-BA2BD219A1B0","","PC-043","0","240","280","","5346","D30B11E4-877E-F143-9CE2-4997E9D8F3DD","0x00000000002C4B86" +"7B0F6026-8CAA-4C2C-96D4-9DDC6054C1E2","","SO-0179","0","4","19","","3177","E4512E5B-574C-42F0-AD73-4999F834E77E","0x00000000002C4B87" +"F81312D7-BAB1-4F90-8821-45F0B637B6CC","","AR-0061","0","0","49","","3008","AC561E45-0320-4F71-924C-499E53BDBC21","0x00000000002C4B88" +"7BD3B17B-5FDE-4447-A737-DD240C70086D","430","QU-095","0","80","100","","997","669C62DF-6A40-4CC1-8B2F-49A550FF017F","0x00000000002C4B89" +"18B08CCB-E2CA-4D7F-9443-E4FE29E4DA74","338","MG-010","0","220","270","","938","A42C32B0-1326-4CCC-8019-49A94AFC74C3","0x00000000002C4B8A" +"AB21F78C-D08F-4771-8B95-23812CBB5115","","SO-0213","0","15","20","","3217","D8400089-80F8-41C4-87DD-49B1CDE6EE37","0x00000000002C4B8B" +"955D015A-0685-4427-B059-CCDC03B4E9CA","","NM-25075","0","1996","2006","","3770","9D1B53FB-05A8-4097-A23F-49B81B2BA9D7","0x00000000002C4B8C" +"C0B37CB8-8A76-42A7-BD83-B2BE6A380D8C","","BC-0097","0","225","245","","5034","6AF35E61-8C4F-443D-907F-49C950AC1FAF","0x00000000002C4B8D" +"2E6083D6-531E-4641-9BDB-EEE193C6192C","111","EB-110","0","620","640","","141","F28C681E-8FCC-4384-B9E6-49D425101137","0x00000000002C4B8E" +"B40ED306-464D-4E50-9A6C-EDC465B6347E","","NM-24910","0","149","189","","3606","49A2CDBB-40B5-40EB-9C43-49DC73A927C1","0x00000000002C4B8F" +"BEF4CAA2-D507-A14B-B0B8-65E824F21A88","","PC-106","0","470","530","","5396","C521DECC-EE92-8E45-8E37-49EEFEC2EE40","0x00000000002C4B90" +"D498D196-2459-4D5C-8E91-8CAA9E2E16AC","","AB-0161","0","1295","1300","","2689","495D8177-1ACE-4B7F-87F1-4A1010D28C2B","0x00000000002C4B91" +"875B354D-2206-C144-8633-19452D122562","","PP-067","0","120","180","","5253","AEE44B4B-FC3E-394D-AA4F-4A23157BBA41","0x00000000002C4B92" +"F0F57C66-5699-E742-8124-ED7D7927CDC9","","PC-084","0","495","515","","5380","D4BD94D0-8DCD-B648-97C0-4A2DB276BBF5","0x00000000002C4B93" +"B6F74FE6-D890-4FF7-BC94-96387D2EA3D7","","AB-0081","0","340","350","","2622","03586B42-CDBF-4871-BF10-4A37388904D7","0x00000000002C4B94" +"243EE710-4122-4985-AAD5-C26D15CCC786","169","TV-149","0","515","575","","1078","9C5429BA-867B-4DE4-9108-4A404732D47D","0x00000000002C4B95" +"A658996E-E089-4FC8-94C8-49F6751E8C66","78893","SM-0250","0","620","760","","848","38278B09-5CBC-45B0-A6C6-4A4154188265","0x00000000002C4B96" +"E75BEB4C-ABB5-4010-8137-8006B541923E","","NM-26906","0","300","320","","5298","38B1772F-7E02-C449-B20E-4A4E3D12EC91","0x00000000002C4B97" +"16353A9C-407B-420D-A353-558B159B9DC0","567","GT-015","0","20","60","","1339","21D152B6-0A0A-4251-938B-4A4F98A802C7","0x00000000002C4B98" +"79C9FD1C-2D98-4880-9119-9722D99CA785","","QY-0443","0","230","250","","2973","2C219DD7-31A9-46F0-9326-4A6FE0727FCC","0x00000000002C4B99" +"DA6F34D3-8280-4805-90DC-9EDF96049404","","AH-026","0","370","410","","1581","1BE03B14-429A-4840-874B-4A8148C75006","0x00000000002C4B9A" +"B8F4E068-92D1-48D4-B060-1086D86E1314","","NM-25167","0","130","140","","3453","9EC2E09C-F9E2-44FB-B0FF-4AA9ACA46A98","0x00000000002C4B9B" +"59E5EBA4-0613-4F38-8CF0-15E698632500","146","TV-126","0","350","420","","1063","3F329C14-2792-446C-A9E3-4AAB2973B8DD","0x00000000002C4B9C" +"E7C1504C-0EB5-4BBD-99A9-D15AF8D7FE67","","BC-0117","0","380","400","","5710","4131BD07-290C-7B43-8715-4AAEAACFDE9D","0x00000000002C4B9D" +"FCAFD5E8-1D67-4AF3-9978-1636F8F44D34","145","TV-125","0","240","280","","1062","CCD3F86C-7448-49C8-B960-4ADF170225F0","0x00000000002C4B9E" +"BEE0A6DD-C3F1-FC42-9CA1-F804435106C5","","SA-0240","0","207","227","","5171","01CD4A13-452F-114D-BEFA-4B17A4FCDDCF","0x00000000002C4B9F" +"BA94223A-F15C-45F6-9696-FDFD2BEEA28F","","AH-083","0","680","760","","1770","27456194-5530-4DF3-AB04-4B17E594FD2A","0x00000000002C4BA0" +"C659B658-FE77-439F-BC29-C6A00CB0A93F","343","MG-015","0","150","210","","909","F3526C5D-55EE-494D-8A1C-4B3BCDFFFBB0","0x00000000002C4BA1" +"9C3C002C-E029-F740-B1D3-9C6A2DCD7DB6","","WL-0232","0","90","100","","5649","800219A3-EE81-694E-A654-4B47686459E2","0x00000000002C4BA2" +"1137F8E7-77F0-4D7C-A30F-2DBD7001A3F7","","NM-01308","0","222","252","","3028","D94F0CF5-C250-43E2-B910-4B504EFE4614","0x00000000002C4BA3" +"B71238E7-E584-4AEA-93E8-5C22B4900223","545","QU-158","0","195","245","","1031","1EB2B30C-CCB4-4BF3-919B-4B8C943441D0","0x00000000002C4BA4" +"32E3F628-7194-4633-8FB3-AE5526D1F4DC","","CP-0032","0","388","408","","2944","4E7330A8-4437-4550-8321-4BAE153978A3","0x00000000002C4BA5" +"5CDD496B-4587-A64D-99CF-0902689F69F8","","PC-019","0","545","560","","5324","1B087FFE-A72F-0E46-9702-4BC4FDC5CD0A","0x00000000002C4BA6" +"018BBCFB-195C-4F44-A015-801800B83385","171","TV-151","0","140","160","","1080","AB65201C-B518-408A-89B9-4BCDCD9895BB","0x00000000002C4BA7" +"01295A2A-73C9-4AAC-BF71-8ACB39A0CF6A","","SO-0207","0","18","34","","3211","DEEB1223-5F80-4D85-86A2-4BF93B923885","0x00000000002C4BA8" +"A55598E3-6BC3-4986-94DD-24A81489FEA8","526","QU-139","0","101","121","","1013","C76652FB-5731-495A-A4EC-4C0048A11B62","0x00000000002C4BA9" +"7F0415DA-BD05-41B3-AF17-862ED09D44B1","33308","EB-604","0","410","1210","","651","3F4A25FE-8FD2-4258-816C-4C0B0AD14631","0x00000000002C4BAA" +"8DF6F307-9984-4019-9D59-02235593802E","","NM-21323","0","220","230","","3827","2BD88956-A7AE-4119-B461-4C0CD5F92943","0x00000000002C4BAB" +"1F35D782-6499-4C3A-81D8-69DB38B4D00D","","NM-25013","0","160","199","","3512","451F3943-86F0-4404-A8F3-4C15D0373AEB","0x00000000002C4BAC" +"0CA8688D-A8EC-45E6-8B4C-195997199CB2","","AB-0105","0","1580","1620","","2643","15F66387-1273-4A99-95FD-4C1DCC89FA51","0x00000000002C4BAD" +"CAE5BCB7-A6E3-4BCC-AFB8-5B66A1C69824","","SO-0167","0","4","19","","3165","4C9D1C80-3469-4919-8DE4-4C27B826C7B1","0x00000000002C4BAE" +"788BC404-A8F7-1442-9CF0-6ADE0D05E0B3","","PC-125","0","270","310","","5415","8E82E28F-3EBB-7749-B9E3-4C2FB19E31EA","0x00000000002C4BAF" +"F04ECDC7-43E3-4807-936E-F37025CDC06E","","NM-26915","0","40","60","","5061","BFF44EFE-AD6C-4EAE-91A6-4C3D256C3E05","0x00000000002C4BB0" +"84354BF9-80AF-4845-9922-FED592D0253F","","NM-27235","0","955","1075","","4981","0EEE273C-3C7F-463F-98DE-4C3F9346C569","0x00000000002C4BB1" +"68970E56-18C2-4559-B155-46AA5FA63C6D","211","EB-210","0","240","275","","270","D8BBF3B5-9383-4D6D-AD6A-4C603FACF8C7","0x00000000002C4BB2" +"C8A4D9D3-0A08-4212-A8BD-A0877B6E6E4A","5","EB-004","0","396","436","","7","E636D59D-346B-447C-8F87-4C77C0A99BBF","0x00000000002C4BB3" +"CEA20197-E4C7-BF4A-BCF3-C7D7F8675EC2","","WL-0168","0","22","43","","5518","37B95DE3-CD56-5B40-874F-4C88C15070DB","0x00000000002C4BB4" +"F06BE847-7C89-4CE7-BF7A-AA528ECCD0A6","","NM-24710","0","282","283","","3673","2AF62DF5-710C-4EA8-AC11-4C9901843568","0x00000000002C4BB5" +"E9CA46EB-8A83-4498-9870-050358FBD316","475","EB-470","0","670","770","","547","F4E9DD42-1754-4BC2-AF16-4C9902DFE025","0x00000000002C4BB6" +"ABADE2DF-2500-4477-A049-D01FD0246A4D","33357","SM-0025","0","460","480","","752","117D07B2-822E-484F-B28C-4CA9188451CD","0x00000000002C4BB7" +"01D8B2D7-01BB-47C1-AF10-E568D9F0BDCE","","NM-03961","0","265","509","","5613","0230204A-56E9-4544-A65D-4CC7ADEDA8E8","0x00000000002C4BB8" +"EE59990C-4B10-4CF8-B440-42072097C841","166","EB-165","0","705","725","","204","E2A22A09-56DA-4CE9-B414-4CCB7278A147","0x00000000002C4BB9" +"492A2701-19BD-4A61-ABAA-D6EB674C136A","","AH-052","0","469","500","","1615","8021754C-605F-4EF8-87A6-4CFEF06ADB3B","0x00000000002C4BBA" +"EA7262F2-F8A8-4EAB-B657-6CD00E050065","328","TV-286","0","1095","1200","","1194","3DFB53A9-0B3B-4D51-B852-4D0EFC8703BB","0x00000000002C4BBB" +"DD897F76-810E-41F1-BE23-E66375A98384","416","EB-412","0","330","350","","472","65DC7B22-79CA-485B-9BF1-4D244C4ABB52","0x00000000002C4BBC" +"5C4268B7-F7DD-49D6-B30A-A6729D6D6C95","165","EB-164","0","455","475","","200","31CD8C4D-A1C9-40F2-A347-4D2B9EA86029","0x00000000002C4BBD" +"F0219900-AF3C-49B7-8D6F-E835168AD422","522","SA-0216","0","320","360","","877","0B48FB55-B02E-4CC0-AC4D-4D3D8C3DFAC8","0x00000000002C4BBE" +"955D015A-0685-4427-B059-CCDC03B4E9CA","","NM-25075","0","1958","1980","","3769","5FD75F13-FFFE-4C9F-A413-4D57DE825704","0x00000000002C4BBF" +"A7F6B888-63A5-4CDB-BDEE-575C5E4BBB82","392","QU-062","0","40","80","","969","ADEEDE42-8754-4643-9392-4D7098B647DB","0x00000000002C4BC0" +"D2025870-979C-3542-9501-0BA1A42B07FF","","WL-0133","0","85","105","","5594","0344075A-FD31-534E-8B90-4D723EE3B746","0x00000000002C4BC1" +"65872C87-A93D-4CFD-9A7F-EB52C1BD40AA","","NM-27196","0","178","203","","2919","F440390F-649F-4D95-A780-4D7889AA3E20","0x00000000002C4BC2" +"55C124FC-D9CC-4379-B601-521502AC288C","","WL-0025","0","680","760","","3860","8375E091-A1B0-489A-81CB-4D805576DB75","0x00000000002C4BC3" +"65E7806F-E100-4643-B44A-E7BA5CC3C355","","AB-0215","0","143","163","","2735","9C27C30A-97D8-4A19-A5D8-4DA60B382CB4","0x00000000002C4BC4" +"D7883CE8-5A42-40E3-8EAA-2D26CB1C171F","289","EB-285","0","677","737","","348","DC6FFB8D-9478-4B89-B107-4DE256BA94DA","0x00000000002C4BC5" +"83F4DD09-58B3-4E4D-A94F-4765FC4FE296","430","EB-425","0","253","293","","484","4A1C0E95-EC96-423C-8A79-4DEAE1734C01","0x00000000002C4BC6" +"6D615E27-E392-438B-A481-E32CAE1FD782","","SV-0018","0","340","360","","3302","8FCBDD57-BFF8-40C0-9513-4DEB808B2594","0x00000000002C4BC7" +"87B85737-CA3B-4D18-AA96-E28A2A7E1C91","","BW-0939","0","90","190","","3117","18743070-E4A7-4265-ACE4-4E0C8451D722","0x00000000002C4BC8" +"70F1A72F-247C-4AB9-88B4-043A5115C3BE","","SV-0057","0","220","240","","3357","DE769F8E-1FC0-4991-9D18-4E1B0BCF2CD8","0x00000000002C4BC9" +"331D0168-5361-3946-B680-9F24DAB34C08","","WL-0114","0","98","118","","5522","E5A90E5C-64FA-814D-96A1-4E1E20428473","0x00000000002C4BCA" +"4E9EA706-2B76-4989-8392-525F895F8707","","AB-0152","0","224","249","","2683","0701516B-81CC-4A74-9965-4E5C8A060069","0x00000000002C4BCB" +"C8F10454-8708-4D59-B121-0D6BC7626BE1","7","EB-006","0","220","260","","14","CC229D0D-76DD-4DE8-9D82-4E7CD2E154A9","0x00000000002C4BCC" +"DAD6EFD7-54FA-481E-855A-B19F6E8D2859","","NM-24787","0","200","220","","3641","77005A86-1529-49E1-A9C2-4E86925ED676","0x00000000002C4BCD" +"EE59990C-4B10-4CF8-B440-42072097C841","","EB-165","0","765","805","","3856","5CB21C51-DF60-4C55-8C1C-4E96D966968E","0x00000000002C4BCE" +"C0B9F619-8642-4984-B51B-60614D62EDEF","","SV-0017","0","460","480","","3301","DA6A07AF-206D-49AD-BE5F-4E9B8CA01BB3","0x00000000002C4BCF" +"93623FB5-D068-4378-B1DB-8F7DCA13F961","","NM-26941","0","200","220","","5082","D4ADC765-FBBC-4F54-ADA6-4E9E601D5D03","0x00000000002C4BD0" +"B1C2B354-13DD-41B9-B258-85315C16055F","192","EB-191","0","115","155","","242","81A74BE9-FAF7-4E73-8036-4EB325296A98","0x00000000002C4BD1" +"21512060-80B8-400C-AF86-AF595197B3A3","","NM-24930","0","200","600","","3591","2C5D450A-797D-4572-BC10-4EB480CA2B21","0x00000000002C4BD2" +"4AB50E5A-C174-4BDC-AA8D-831A6251BD1E","33379","SM-0033","0","60","80","","1230","D143A5D2-7B60-4626-ABC7-4EC39E04219D","0x00000000002C4BD3" +"F164F5C9-34CC-4EB9-814F-6967F3ED04F7","309","TV-273","0","253","291","","1179","EC8998B5-CA51-4C73-8DBD-4EDF12215032","0x00000000002C4BD4" +"A9BA22BA-CA56-4B6E-8588-4A3EC1F49ACD","","BC-0043","0","460","580","","4982","D20874DB-76B3-42CC-81BD-4F1B172ABC2B","0x00000000002C4BD5" +"39872B45-444B-48CF-9012-CEA4AA9F43DC","","SO-0208","0","54","58","","3212","31BAE366-AEB2-461C-B25A-4F56932A5343","0x00000000002C4BD6" +"19DA6FF9-E2B6-47AC-8424-988665A80B78","155558","TB-0095","0","90","130","","1273","96256DDD-C5C0-484F-923C-4F5BBC9253E4","0x00000000002C4BD7" +"763BD9F6-29BB-43AF-8995-6A33046423C0","33290","EB-587","0","400","560","","630","6667BC6B-6876-4CFC-9E9E-4F66F71CCA29","0x00000000002C4BD8" +"9EE9511A-00E3-EB44-A902-11466FC1672A","","WL-0160","0","103","125","","5506","6FE89584-96B6-2647-8A3F-4F6B88080663","0x00000000002C4BD9" +"AA39A968-BC8F-4B89-847D-A6F3A1BFF113","","SO-0189","0","7","21","","3187","EC089B69-BF4E-4A77-82DD-4F9083A00ED6","0x00000000002C4BDA" +"DB866EFF-5D23-4BF4-9DCF-FBF38B4D87F7","","NM-01327","0","275","315","","3029","DEF99BDB-166C-4330-A606-4FA1764293E7","0x00000000002C4BDB" +"5F8A26E7-0A48-48D3-A899-F67768B4C2AA","","NM-07014","0","79","105","","5535","FB2AE1C5-7E7E-F742-A022-4FAE94C28737","0x00000000002C4BDC" +"3DEE3C86-B660-4C75-8590-1D99EE986943","","NM-04555","0","200","600","","5621","01D2A1BC-8414-3343-8F63-4FB76CC975E9","0x00000000002C4BDD" +"1DABC31A-2277-4BA2-BCDC-BD3D111EDE49","120","TV-100","0","880","1000","","1034","A84F3910-5390-4CB3-A7C7-4FCFEA48542E","0x00000000002C4BDE" +"605850BB-3EC1-4731-9B23-1B64A4A3DC49","33508","SM-0064","0","170","190","","786","0910DC2D-E94F-4A8E-A0CA-4FEEC69DE15A","0x00000000002C4BDF" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","783","795","","2927","48B19596-5CC4-45E4-B554-501CA0DF2B66","0x00000000002C4BE0" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","669","679","","2925","6DB6122C-06C7-4F83-9EE5-5022FF248A94","0x00000000002C4BE1" +"F1E81124-2A22-411B-84D6-43844F662175","","NM-09605","0","160","170","","5564","23074C5D-B1A3-B048-BBAA-503DDB4110E1","0x00000000002C4BE2" +"06AFC187-C2F7-42EE-B1A9-96282D45DBFE","302","JM-003","0","385","405","","886","7980B427-FA0E-4D0C-8B7D-50570FF78250","0x00000000002C4BE3" +"6F13A594-2B74-401C-AA0F-DF3E5FB8B8F2","67","EB-066","0","380","725","","80","33EAF067-2673-4DEF-BF18-506F1F38181A","0x00000000002C4BE4" +"8F3D70B5-94F2-DA49-A703-54A419A00777","","PC-001","0","425","475","","5420","BEFC52FE-0504-7B4F-8749-5075793B0C73","0x00000000002C4BE5" +"7FC70621-56C6-4F19-9C7E-146A7C4223F6","155692","TB-0210","0","380","440","","1301","E7DC2D5B-9FCE-490B-A8AA-5075ED3A2B8B","0x00000000002C4BE6" +"A9DAAB5B-4414-4AD9-8505-9D277A073457","424","QU-089","0","235","255","","992","8425354E-B04B-4D6C-8037-5093B7876AF1","0x00000000002C4BE7" +"0E761567-EC5E-475A-9FB3-B70CD1E2A0B7","","AS-049","0","720","840","","1538","8FEBB30B-B044-4F6A-A515-50B36FF8F6B0","0x00000000002C4BE8" +"22D6B04E-16C5-4730-B017-BDF9BB09BF5E","","AR-0088","0","25","30","","3020","1E63F28F-7179-481B-AC46-50C769227166","0x00000000002C4BE9" +"C891790B-4A0C-4EAC-9920-6D993DBE260E","293","EB-289","0","430","450","","358","07A0DCF9-B169-4DFB-BF74-50D980D40CD7","0x00000000002C4BEA" +"861A1C5E-DC50-418E-8605-17F43B0F79C6","276","TV-242","0","340","380","","1151","A7BD7808-EC28-40B2-9F5E-50DF87172907","0x00000000002C4BEB" +"224F61BA-85E9-44E3-9B63-8B7C5A91DB32","109","EB-108","0","680","700","","133","1A823212-E63F-421B-BC35-50FF3AAC353D","0x00000000002C4BEC" +"0EC29B79-20BA-44A3-9245-8A73CC69B4C9","","AB-0178","0","420","490","","2702","2EE8A9E1-2DF1-4266-9EF4-51027F4C3281","0x00000000002C4BED" +"159A53D7-7C80-4778-AA46-E4FFB0BE2D92","346","MG-018","0","275","295","","912","AC3443A8-66B3-40CE-ABD6-510B994B98E4","0x00000000002C4BEE" +"E380BF44-5D90-43AE-9CA5-8C014C525CB5","33386","EB-675","0","350","670","","724","49FFEECE-1CDD-45A4-B7B2-512A66BB3914","0x00000000002C4BEF" +"7C789338-8B54-AB45-AF08-7F8518DE68B8","","MG-045","0","60","90","","5723","C170DAEA-4DF5-2B49-A47B-51458EA47610","0x00000000002C4BF0" +"132F2C7B-DA8D-41D3-9099-7CB03365D0EF","","QY-0717","0","60","80","","2990","87AE6110-B02B-45FF-89DC-51470EE4AE50","0x00000000002C4BF1" +"BB545DC2-EBF3-B540-9336-B1B7A389479E","","WL-0268","0","280","300","","5702","717D1D94-DFD3-E146-AF65-51491DACE4C1","0x00000000002C4BF2" +"3FA5664A-99AC-4E1C-9895-54B33AD42B06","80","EB-079","0","460","480","","92","28A63DB0-19B2-4333-91D3-5168A615A8B8","0x00000000002C4BF3" +"6DBD9931-353B-4960-B0D4-00FBC21135A5","","NM-24770","0","99","102","","3650","8F67C19C-128D-4503-B22D-519871CDD05E","0x00000000002C4BF4" +"FA02397D-7E6D-ED48-B843-AB487B117799","","WL-0177","0","188","300","","5523","DCD8E6C9-CE71-5544-A8CD-51A44046D366","0x00000000002C4BF5" +"4E38883A-3185-4550-AE56-DA8AAE235BF9","","NM-01387","0","189","220","","3039","0022D4C1-3633-4A65-95AA-51B2B649EF4A","0x00000000002C4BF6" +"050EFC23-A3B2-4876-AC2D-124333C2A37C","352","JM-053","0","245","285","","898","AB47D40E-BCAB-462B-AA6C-51E4345F8547","0x00000000002C4BF7" +"8501E2D2-593B-43A8-965C-7266F26218F9","","NM-24351","0","145","185","","3598","AF1DB095-B915-4EF3-9E8A-51FE7477B0EC","0x00000000002C4BF8" +"14455931-52C9-4CD5-B033-B246A6F21B08","367","EB-363","0","145","160","","433","27696227-7B4A-4BB2-B1E9-52347E4ACFF6","0x00000000002C4BF9" +"99218CFB-8C26-4396-8EC7-B8807A8DC5DC","","QU-004","0","295","500","","5515","8E26A526-9055-154D-8677-523E00328FA1","0x00000000002C4BFA" +"5B187DD2-CDA3-44FE-ABDC-B5A6BDA915BE","","BC-0084","0","100","120","","5020","2741F328-12CD-4A91-A215-524B54187B7F","0x00000000002C4BFB" +"553033D0-CCD1-9643-B248-858314ADF6FA","","PC-021","0","160","170","","5328","DB4D81DD-95B2-E344-8637-52554FA19DC9","0x00000000002C4BFC" +"A0E19530-8EA1-4E42-A2A4-FF18E3CA33EE","","AS-043","0","300","400","","1530","CE801B61-FC97-4BC6-8EE9-5261AF663791","0x00000000002C4BFD" +"1A0FFDFE-AE57-254F-938A-C7CAA9E9987C","","WL-0066","0","462","522","","5224","EE27C007-0340-5149-B4D7-52697B775958","0x00000000002C4BFE" +"764C1F48-FB1F-41F1-BECA-A794C606B023","","SO-0253","0","50","54","","3257","514D65C6-9A9F-4B66-B6BE-526B47FA52A5","0x00000000002C4BFF" +"596E59FE-6FBB-45CC-B836-3F4DB6AB5A25","","BC-0196","0","540","560","","3517","BAC7D25D-1BF9-47A6-B094-527BE848105E","0x00000000002C4C01" +"F837B5C6-C0CF-46A8-86B8-3060CF323B94","78861","SM-0223","0","480","600","","835","57871120-B8B3-4398-ADD2-52886A7D800E","0x00000000002C4C02" +"0671E5E7-4957-D64B-8CAC-FD27618BA5C9","","PC-070","0","140","200","","5370","9083C35B-7676-6A49-BA08-5298C8D3E03E","0x00000000002C4C03" +"E22EF00E-EEDE-4700-8F54-D87718F9722A","","SV-0097","0","345","365","","3394","2FFBC874-A451-4CEC-9229-52B34D555D95","0x00000000002C4C04" +"AAE1FB9B-5083-4700-B834-26E6EF05791F","256","EB-252","0","144","160","","307","85726427-7127-4CF6-80B8-52BD9EED5E47","0x00000000002C4C05" +"D821423F-71BA-40A2-BE4B-2C661532EDA0","","AB-0176","0","312","352","","2700","F5328008-A054-44EE-AD46-52CD740A1055","0x00000000002C4C06" +"49C23C84-BAFC-479B-A803-BF31898487AB","","AH-070","0","360","380","","1757","9F7B0854-3A34-4F8A-AFB3-52D6A59D5F9F","0x00000000002C4C07" +"AEC6D612-2CA0-46C6-9ED3-E95DDB22D4AF","33336","EB-631","0","820","840","","679","DE744F4E-8CDE-4A09-BA35-52E17A1DEE88","0x00000000002C4C08" +"1CE430B2-E537-4E97-9473-829038F3E24B","","QY-0687","0","57","91","","2988","8D71BD34-58B1-426C-B4FC-5318DD7434CE","0x00000000002C4C09" +"41415409-352D-42ED-B777-A5DD41A37A1A","","NM-01428","0","100","120","","3054","1BC338C7-4339-4FF4-B136-531C8272CF08","0x00000000002C4C0A" +"7D0BF420-9A22-433E-AD7B-9152D3DCE841","","BC-0165","0","320","340","","5678","56D6967A-AC62-6144-88AF-5326CB68DD6E","0x00000000002C4C0B" +"46C562ED-6673-44B3-90DD-CAB902EBBA7C","","SV-0101","0","160","200","","5195","03022F8D-7FD0-4044-B815-5341D5948E5F","0x00000000002C4C0C" +"9F152C84-1DF7-497B-949B-284D061CE84C","","WL-0036","0","500","520","","3893","B3B8E368-A0ED-44F1-9D5A-535F0B609440","0x00000000002C4C0D" +"EAC0870C-3A69-9542-ADA9-FB93D442E3CB","","NM-28274","0","315","355","","5432","AE07E06E-C721-954F-8EAB-53830C626B39","0x00000000002C4C0E" +"6AE7B2EB-F41D-4BA3-914B-4609D5163583","360","EB-356","0","690","890","","425","7442AB9D-8E68-4F90-AB40-5386A8FDC1EB","0x00000000002C4C0F" +"CA712584-4262-4341-82D9-45C50059BF7A","","PP-049","0","115","170","","5278","FB753A17-16DB-6F45-8D78-53936A0FCDD0","0x00000000002C4C10" +"A121EF8C-0A6C-44FA-AA59-B25141D678AD","","NM-24878","0","65","85","","3622","86BAFB28-110B-4144-9393-53A16CC166C6","0x00000000002C4C11" +"D626DBEC-E55B-604C-86D4-82E74F55D5AF","","WL-0125","0","140","200","","5479","A560A49C-1D43-EA43-913C-53A724453083","0x00000000002C4C12" +"29543F86-B25F-41CF-B4B9-22A4BE2EA46F","458","SA-0173","0","680","718","","870","A1A0948C-CEF3-4A6D-BB9E-53D704486699","0x00000000002C4C13" +"D094736C-39A8-466B-B2E9-D05CD71C62A0","","NM-25151","0","248","330","","3457","F37F4702-A7DD-4B5C-A575-53E42082E4FD","0x00000000002C4C14" +"D81F94B1-1D06-4865-8607-589437E68AE1","","BC-0064","0","240","260","","4996","A0A9CFC1-A82B-41F5-8FAC-5402DB8A47AE","0x00000000002C4C15" +"8A0C95FA-9049-41A2-8B61-5B725C78548C","578","SA-0077","0","295","357","","884","177497AC-D0A2-463E-89D9-542AEAF93C94","0x00000000002C4C16" +"F81501AF-929E-4C89-8FB7-FA0591C562BF","","BC-0229","0","340","360","","3527","33A93026-96D7-4C73-A19E-542AEE1E6048","0x00000000002C4C17" +"1D911F77-3214-47E3-80F0-3CF7D0BCEC20","","SV-0020","0","280","300","","3306","68CEEA14-D82B-4C94-9C0E-54310A71D5B1","0x00000000002C4C18" +"BBEE0C57-7537-4610-B5A5-984E8F0F86C1","","NM-03416","0","539","544","","2809","1E7878D8-287F-4F64-96F6-5431ED6EBD6A","0x00000000002C4C19" +"ABB00A9A-0D9D-4B30-9C1F-D78B3AAF239F","467","EB-462","0","590","630","","525","65E83944-3C6A-4F4F-8FCE-54359CD54EDC","0x00000000002C4C1A" +"D2AC50DB-6EEF-4BB3-AE60-E7F74084C64C","33334","EB-629","0","1900","1920","","677","32E7A497-33F4-4FE4-8B76-543AA7BA1B50","0x00000000002C4C1B" +"670A6268-399A-4802-8513-7F68119A639E","","AB-0111","0","558","563","","2649","51B284EA-5872-4C11-940E-5448AA418021","0x00000000002C4C1C" +"F39B93BF-1F00-46E6-8954-DC3C31A4E444","397","EB-393","0","110","130","","452","B657C08E-7193-4CA8-9B98-54746FDA4A09","0x00000000002C4C1D" +"F56C1C92-8B89-4F6E-9014-13C9571509EA","","BC-0044","0","200","240","","4983","DA624CFC-AB92-4842-A1F3-549D50F793FD","0x00000000002C4C1E" +"D280B1ED-7E66-4C89-934D-B1F497C07426","","NM-26457","0","18","22","","3445","F32E45A0-AA4E-4CA7-815F-54FDADC95AEA","0x00000000002C4C1F" +"F7F714FE-E8B5-4889-8BA7-8F4C670CF730","","BC-0163","0","65","85","","5137","ADF47D67-0E9A-48F5-B92E-5500F9A68220","0x00000000002C4C20" +"86BCFF71-F030-4D89-83DB-5A15746EE91E","129","EB-128","0","380","400","","161","7E06657C-A55A-4FAC-BB0E-5512907E0B43","0x00000000002C4C21" +"C267CAD7-8FAF-4486-8EB4-C0E6ACE95332","","NM-24950","0","354","366","","3588","FA1DAB81-4E4D-4E1D-88AB-551937FA48DF","0x00000000002C4C22" +"E19F92B3-E89F-4721-AE2F-C6521B5FACD5","434","HS-018","0","20","30","","1202","DD407BBC-8C79-404E-953E-552222A78070","0x00000000002C4C23" +"340060E3-01EE-4089-93DB-E6EBE7654B07","414","HS-054","0","20","40","","1218","8EB817BE-4F03-4979-8A29-553E4F5C7984","0x00000000002C4C24" +"E7BCDA89-89F7-41C6-AB73-9B5CF492582C","","SV-0054","0","305","420","","3352","FAC27A49-8D51-417C-99F7-554E6D229EFD","0x00000000002C4C25" +"407EB28E-28B4-4E56-855A-BDBE4C612515","121","TV-101","0","380","450","","1035","E5376702-EB2E-431E-86BD-55657F972605","0x00000000002C4C26" +"C2CF2FB6-A781-4215-B11D-A301FEE86800","","AS-031","0","340","380","","1524","4667F546-71A3-48B0-9E56-556CB48E4B9F","0x00000000002C4C27" +"9A2F4456-2BB4-4F4E-8882-40FFEB170C17","","NM-26925","0","460","500","","5072","6476E7F2-E2B8-4E97-8392-556D83BE9519","0x00000000002C4C28" +"2331157A-4158-DB47-BB90-EC502DA4652C","","PC-105","0","186","196","","5395","3469D0DA-3B41-8648-A84B-557A634EDED6","0x00000000002C4C29" +"F1486D6B-1DDA-4E0C-9DE3-60B1651361BC","406","SA-0129","0","520","580","","860","D86FF09D-7335-471A-9AFB-557B16D07DDF","0x00000000002C4C2A" +"E5A14DD4-96B8-4188-B3A9-A6DA859C6606","","QY-0961","0","20","40","","2998","A12537FA-5CDE-4750-86F5-558AC6AEFD9B","0x00000000002C4C2B" +"695CF0C9-D248-414F-AE04-FA71A54F40E2","","QU-166","0","120","132","","2480","A29016FD-B72C-4078-AFB5-559255B293F6","0x00000000002C4C2C" +"C95944B7-5088-4FC4-A822-E3630A7588C4","","AH-104","0","420","480","","1791","7C3E7345-A188-415E-AB54-55A8A24B9AB9","0x00000000002C4C2D" +"16841242-88B3-4F10-A097-066B5E10D576","261","EB-257","0","50","65","","314","356CEBEE-14E3-478A-8A2D-55C2B2B3481A","0x00000000002C4C2E" +"FE5288EC-67B0-C04A-A017-E13ED52965AB","","TC-424","0","120","160","","5233","254E1780-4838-EC42-9A0A-55C3AD4EB456","0x00000000002C4C2F" +"B76F88F1-F9A6-4AE3-B711-CD15E384D2B8","","NM-24875","0","150","164","","3626","E01127E7-5334-4028-9EB3-560071FE95D7","0x00000000002C4C30" +"393A9FC5-9D01-4651-A223-1520E3DC8531","","QY-0135","0","120","160","","2961","ADC5E666-20D3-403D-BD5A-56225D0FCA70","0x00000000002C4C31" +"5D7E37D5-68D2-49E1-B4AB-C4270A69AD19","","AS-026","0","140","650","","1519","DE8D1F0E-230E-4CB4-853E-5642B7B144AB","0x00000000002C4C32" +"9FB946EB-BA11-423D-80B9-5D3E80D33A7F","","NM-25089","0","584","594","","3481","C526EB60-B184-4012-A72D-5648F79BBE55","0x00000000002C4C33" +"3A3B1BF7-5BEE-412A-A852-F4AEA4207A42","","TB-0203","0","101","103","Steel with torch cut slots","5638","F6BED2D1-33F7-9A49-B1C0-56712AB82F68","0x00000000002C4C34" +"38306B6E-B07F-4DBA-9189-00EAE4C9D0A5","","SV-0140","0","320","400","","5215","9BF383DC-4256-0549-A8C2-567F9166FEF6","0x00000000002C4C35" +"8A8CD4F2-1342-421E-B0A2-82D3FCABE3D4","","TB-0316","0","260","320","","3129","B52013D4-781C-4FCC-9EFF-568395C89F26","0x00000000002C4C36" +"CE9630D3-E10D-4971-8872-203BF39D5746","155755","TB-0211","0","140","160","","1311","46288957-1498-40D0-B1EC-568912E94C11","0x00000000002C4C37" +"D2025870-979C-3542-9501-0BA1A42B07FF","","WL-0133","0","65","75","","5593","08271463-21E9-8A44-A42D-568ABFB6F352","0x00000000002C4C38" +"16BC1C68-17E2-4640-B126-75CA3BB83D40","","AB-0096","0","278","582","","2636","893A23A4-2ECF-4A01-9CE8-568CDCF6D2E8","0x00000000002C4C39" +"FE35E603-ABB5-44BF-BEDA-D4DAACA1FC79","","TC-422","0","180","250","","5227","A72401DD-461A-2046-BBC0-569047C96C6A","0x00000000002C4C3A" +"B9F602F1-34D8-486B-8613-57986BE3567B","396","MG-035","0","380","420","","929","F1924813-352F-4CF9-8B5A-56A14D98197D","0x00000000002C4C3B" +"413E3FA2-53D8-49C2-8F9A-DCCFA7944A6D","78884","SM-0242","0","583","625","","844","D6F53726-805A-42B3-84F5-56B4B62B12E3","0x00000000002C4C3C" +"7E4845EC-878B-452F-A296-2A9F8CDF6CAC","","NM-03917","0","650","690","","3102","7CC1915A-9500-4418-83D0-56D7F2AADEC1","0x00000000002C4C3D" +"B704162F-BA34-46C2-85F4-51821A4EEF58","33233","EB-525","0","274","294","","600","76A9C9A4-7D1E-4A6C-8832-56E921AA9D11","0x00000000002C4C3E" +"7A8403BA-ACE4-4209-9C86-7830852F6DBE","","UC-0211","0","560","580","","2860","8380A261-A59A-4E5A-9CD1-56ED2970997E","0x00000000002C4C3F" +"8FF40080-AAD9-4D33-860D-19AC9F64C256","","NM-26713","0","80","100","","3805","AE6BA939-72E6-4C4F-9103-570103D73CB4","0x00000000002C4C40" +"737F3D89-07E0-43A7-A652-23FEB9C56B1A","","BC-0120","0","680","700","","5053","D7490F57-1659-4EAB-81DD-570C0E648198","0x00000000002C4C41" +"9E3C5FBC-C85B-4491-9812-B59D283CA253","352","MG-024","0","70","100","","918","5B3A7FAC-D71C-49F3-8C29-57334BB62D36","0x00000000002C4C42" +"7FC8A456-3ADF-40ED-AAA9-8AC5DA36ADFC","337","MG-009","0","160","200","","932","DDEB13A9-75A3-409C-8B30-573873FBA838","0x00000000002C4C43" +"CB518566-CB8F-4625-8678-2F0157F4F921","","NM-03337","0","144","149","","2818","A30E2D56-EE20-410E-8198-5741095156D4","0x00000000002C4C44" +"3CE62C1F-E860-2E49-AF7E-5226124C4315","","AR-0233","0","70","84","","5474","44E64290-30DF-8448-919D-575A2755A07C","0x00000000002C4C45" +"75EF7F3D-F10A-4972-9F61-3C9F13DBF15B","329","TV-287","0","340","420","","1195","EC9C9F51-2CDF-4B4B-BC17-577D4D971D2E","0x00000000002C4C46" +"77F2CE12-913A-4B6A-ADD8-3B0771A7CDFE","","NM-25046","0","65","290","","3496","2549F67B-3A37-405C-868B-5785FEFB93CF","0x00000000002C4C47" +"A096ADF9-BCC5-409C-9376-3F175CBC079E","144","EB-143","0","63","73","","177","AA8B71AB-EF43-43EF-B576-57A34BBE9A17","0x00000000002C4C48" +"D221EF5D-AB92-4C93-B999-C772D86179D6","","NM-04977","0","241","301","","3872","18BEBA8E-44E3-4C6D-BEDC-57B289C9DA62","0x00000000002C4C49" +"8BDC2319-14B9-4713-B07F-B70D815C9173","","WL-0016","0","200","240","","5748","34EB49A3-1AB0-2D49-8B70-57BD156B748F","0x00000000002C4C4A" +"A0E45379-30EF-430D-A9D8-55FAA0457273","","SV-0007","0","280","300","","3295","CA9E8E7A-39F7-4582-AF73-57C2053C9155","0x00000000002C4C4B" +"0C084AC7-9143-4FAA-930F-01249DE13188","33406","EB-688","0","600","800","","739","5592951E-6014-4026-8393-57C642574868","0x00000000002C4C4C" +"C1B9B27F-977D-4EAC-9FAE-AF1DCD08C85D","33301","EB-599","0","510","580","","646","6CC57A0A-7CD8-4EE0-8533-57D6821CD060","0x00000000002C4C4D" +"A1BDA7AB-912A-45A6-8D40-5EAB9BFF6DB8","","NM-25011","0","95","101","","3514","81986F6D-47E0-46ED-AD60-57E43D680C83","0x00000000002C4C4E" +"7F6F8534-E484-4072-B2C8-B22664A92FE9","155581","TB-0118","0","120","160","","1283","91B125E6-4960-4323-891C-57FF30A09536","0x00000000002C4C4F" +"2EA8E09C-585A-485A-973B-6A8396B746CB","","TC-282","0","80","223","","2148","498A81C5-4E6E-40B3-88DA-58135C59D531","0x00000000002C4C50" +"2561F89C-D4BB-457B-993A-AA827C6DE323","","AH-045","0","240","280","","1613","C2D0BF9C-E405-4ACF-8179-582D521534D3","0x00000000002C4C51" +"A37938B8-5A92-4A9D-A90B-4C93BF924000","","AR-0019","0","63","68","","2950","3180A4FF-6528-431B-AAF4-5834213EDC2C","0x00000000002C4C52" +"1134C047-2BBF-4DEB-B41F-2C58CCC4E1D8","33319","EB-614","0","65","90","","663","DC287E26-8CE4-4F02-AE20-583683430F1E","0x00000000002C4C53" +"18E4F21E-EB64-4C89-AD3E-9F495230A4F3","","AR-0120","0","10","29","","3081","96507772-89BC-411D-81B3-585937908067","0x00000000002C4C54" +"62B48770-E350-48F7-946F-22C9CDE61D7F","33275","EB-572","0","604","627","","614","2770ADAC-EBB5-40C0-A23C-58670B011435","0x00000000002C4C55" +"08F5959B-7159-4B0C-A9EF-9E6755847BB7","161","EB-160","0","306","344","","194","D8E38D6D-DB40-4E14-8382-58822427C046","0x00000000002C4C56" +"405D7B0A-1A4B-400C-BB13-F4734CB35C17","33405","EB-687","0","597","618","","736","4ACB978C-8665-4150-9A4F-58871D90741D","0x00000000002C4C57" +"FF5812D0-6E96-40BF-B3F1-5FE12D576BA2","","SV-0135","0","320","340","","5208","A4BBA875-94EB-C54B-B8EB-588735C4AB41","0x00000000002C4C58" +"FCF3C0A0-20CB-46E0-9229-AC3C7EC64476","","NM-26966","0","340","360","","5102","87ABC0DE-83D1-4DB9-8847-588D2DB44578","0x00000000002C4C59" +"DE776257-C20A-4273-A3E2-41DE86FEA70B","41","UC-0025","0","215","255","","1319","40BC49B5-6D34-4E90-A3CB-5890EBBB04EE","0x00000000002C4C5A" +"2428FFE6-25C2-41D8-9829-52CFE96CD5D8","","NM-01362","0","580","600","","3033","B9A54AA9-1E0A-49A4-B48E-5891B629B814","0x00000000002C4C5B" +"9E91B5F4-38D4-44BF-80F4-B952BAF71C37","","SV-0027","0","280","300","","3319","2AFCF4B4-37D3-497E-AF04-5898C4BAD310","0x00000000002C4C5C" +"B838F8EC-55CB-4216-BA6E-9CFE92360F39","","AB-0251","0","","","","5762","90A3C544-D83E-48D2-9D6A-58CE10DBCB76","0x00000000002CF39B" +"F942A094-EEA6-4253-8925-B2B70C8799DF","","NM-26795","0","4199","4695","","2867","9B5A544F-853C-428A-AAC8-58D036BFBB3C","0x00000000002C4C5D" +"2794010E-7B99-4160-A584-EB7BEC616759","","SV-0043","0","160","180","","3341","ECF858FA-A4C3-4E07-A747-58D790C9C2D6","0x00000000002C4C5E" +"7764FBE4-CAE5-4A2A-9F89-BB89F8444E89","105","EB-104","0","725","765","","130","879719FF-5842-4E52-A8A2-58DF900F7962","0x00000000002C4C5F" +"0134B68E-1224-48B0-AC20-EA19E9F887E2","274","TV-240","0","120","200","","1150","1C993C72-B2B6-4E04-B09B-58E850E9847F","0x00000000002C4C60" +"CB560093-DDCD-9146-A4A7-AED094293DFA","","WL-0053","0","160","240","","5180","22A54438-43EE-D347-952B-58F3952962D7","0x00000000002C4C61" +"DABEFA06-30E4-4B8E-ADDD-4300AE16EB9B","","SO-0151","0","40","44","","3149","755C5514-96B1-4143-8B1B-591DC1D0B67D","0x00000000002C4C62" +"7A53F750-88CB-4DA3-A51B-B7E1590D27DF","","TB-0314","0","130","200","","3127","EEA0172A-A135-47F9-B876-593EBBF02FEF","0x00000000002C4C63" +"DDD471E0-105B-478F-855C-28DDD55D6491","188","EB-187","0","140","200","","234","605CFEB7-4F3A-4E2C-A891-595AFD88BDE0","0x00000000002C4C64" +"CE79978A-CB17-436F-824A-700E1CD8ED06","","SV-0119","0","275","295","","3419","774BF660-4CE8-4D8B-968A-595B0A6D3591","0x00000000002C4C65" +"403461AC-B811-4318-870E-FABFCA3BA2A0","","AS-056","0","580","740","","1544","5AF9D532-4164-42E8-AA83-59606D3BDD9C","0x00000000002C4C66" +"46E80756-D6C7-4E0C-AD87-BF409D271E2E","","SO-0127","0","76","81","","3266","286C1DFD-D4CB-41BE-86FB-59679AD33956","0x00000000002C4C67" +"1F14ADBD-21C8-4CC1-A302-1BADBF51A4FF","","SV-0058","0","300","340","","3359","D8CE426C-B5C4-4672-B07E-596AA48990A4","0x00000000002C4C68" +"D19E9E6D-4183-4FA1-A502-6734DA210FE5","205","TV-185","0","120","180","","1105","A632DCE2-49FA-4209-8BD2-596B87C57E72","0x00000000002C4C69" +"26AEF32E-3F3F-404F-8874-72CDA68ECF4B","333","EB-329","0","100","132","","408","19B35485-A687-49CA-9134-5980F69E97DA","0x00000000002C4C6A" +"B684F7FD-8B3C-4368-8E2A-F00ED3322BCB","","NM-09228","0","281","286","","5547","73F54FFF-D622-D04C-8996-5992B00D8DD2","0x00000000002C4C6B" +"41278440-F05D-4088-93B6-A09AAEAA1DAB","","QY-0153","0","201","366","","2963","87D8C3D1-4D20-4C43-8458-5997ED7234A7","0x00000000002C4C6C" +"25DB2BDF-DA18-42D4-BDD6-60337CC31D01","155564","TB-0101","0","60","100","","1274","676DBE4D-C54D-4879-A55C-59A167CF2B25","0x00000000002C4C6D" +"D5159AA1-0AEE-4123-960E-094E98A8C54F","33343","EB-638","0","900","920","","686","5AAF4071-4CBF-4056-A27B-59AA3A962081","0x00000000002C4C6E" +"F03026C9-619E-40AB-AC2E-5A2F4AC65D23","143","EB-142","0","69","99","","176","59EECC32-F549-4309-8212-59BD8D8E3EB9","0x00000000002C4C6F" +"01535DFB-D713-244F-A9A1-E04B9ED102DD","","WL-0286","0","216","218","","5731","118C77E8-4188-AB46-8E11-59E589E9C0F2","0x00000000002C4C70" +"CD3B6B48-E44F-469D-B05F-9255C68E6E0E","","SV-0063","0","305","325","","3363","FB926269-E527-4B3A-9643-59E5C5E56304","0x00000000002C4C71" +"5E82DE32-F500-414B-B64A-44B7F8404364","","WL-0309","0","200","240","","5743","9F91CDD5-B374-F94C-9376-59E63D12ED84","0x00000000002C4C72" +"640291C2-5B1E-4807-87FC-8FBDE6CFF54F","","SO-0237","0","44","50","","3241","317A3134-3CA5-43D0-8EBC-59E7F2054A25","0x00000000002C4C73" +"D5393BC1-A821-4D54-B1EF-A5C9C1F8EEB1","98","UC-0133","0","120","140","","1328","72BBD2C3-5C50-4994-9A73-59F0AE213E94","0x00000000002C4C74" +"DD2B3214-1342-467A-A1A1-9AE9A22BFF96","","SV-0035","0","265","285","","3330","06C8FBFC-27C0-45B4-A701-5A036C5A8F8A","0x00000000002C4C75" +"DD26E788-4C8D-7A4E-B638-367A18AE64EC","","BC-0333","0","150","190","","5488","461E11C8-4B08-8541-8D8F-5A0572917B28","0x00000000002C4C76" +"342C7132-9BFE-4FD5-BD86-43C027E1F774","","AH-099","0","435","475","","1786","102305A3-BAAD-496F-A9CA-5A1D1BB4B2DC","0x00000000002C4C77" +"6188B6BB-6FD3-456C-81CA-C75017676C9B","","NM-26885","0","555","570","","4932","34C57304-1F39-4814-90C6-5A287138CA12","0x00000000002C4C78" +"C3CD5B8B-FD05-4E79-A695-1C8BE35C66EC","","NM-04691","0","510","590","","3870","A96CA381-1F8E-43B3-AEAF-5A3698A76D71","0x00000000002C4C79" +"09AF00A7-4AE6-4A81-8DE6-885C6C88D62B","155","EB-154","0","310","340","","187","4F14ADFE-0C17-4602-BBD6-5A455D181AF7","0x00000000002C4C7A" +"AAF57725-FD59-AC4D-9F1D-48E00E6D79D5","","PC-077","0","640","660","","5375","DC4E85C2-6994-6E40-A4E5-5A484D6951B5","0x00000000002C4C7B" +"15434E3C-06AA-4133-8074-67E5EF235624","","SV-0107","0","340","350","","3405","93754025-EF85-494F-95DD-5A4DDBB976D1","0x00000000002C4C7C" +"B2841326-F31C-4431-AEBB-CE9970C65C82","","AR-0161","0","16","28","","3092","D7454548-D24C-4FEE-9A2F-5A4E4F312432","0x00000000002C4C7D" +"DC04A343-5C2C-4C75-B9C3-A93195DCDC30","","NM-26798","0","4278","4285","","2871","6267F325-E9E8-48E9-A5D3-5A564217B5B0","0x00000000002C4C7E" +"84D25B30-0305-4F08-A913-7EAD0EB6FB4F","134","TV-114","0","340","380","","1051","A4E62FBF-B72A-4C69-B6FD-5A6738C94F43","0x00000000002C4C7F" +"7A34736F-0182-40AE-A684-8196750AF52C","","SV-0062","0","380","400","","5191","1F0EFC5A-DBA5-D944-B6A4-5A78F8864E76","0x00000000002C4C80" +"87D69615-1091-4C8D-9AD5-DB0149DC9A58","474","EB-469","0","500","580","","542","73EB5911-101E-427E-9BAB-5A8DD60409A9","0x00000000002C4C81" +"405D7B0A-1A4B-400C-BB13-F4734CB35C17","33405","EB-687","0","639","660","","737","819EB836-9110-4297-8B41-5AA15C05A06B","0x00000000002C4C82" +"4E5A318A-2C00-4351-8FFA-CDE4F776298C","246","EB-242","0","140","160","","299","9C088930-CDAF-41E6-8DC3-5AAB37CD46ED","0x00000000002C4C83" +"E63D3D8F-C471-4699-92A2-45BAC2E1814E","","NM-01417","0","89","88","","3044","33DEBE32-A894-4FF7-9318-5AB1E977D47F","0x00000000002C4C84" +"46F5509D-8265-4E4B-8435-6F4AE91D9386","","NM-08300","0","17","67","","3897","DD4FB1E9-0A6A-47A8-B4E2-5AE31ABB6487","0x00000000002C4C85" +"B7ECF8B7-D787-404A-9DE4-6FF476505226","","WL-0080","0","800","880","","5309","2A367147-56C2-3F4C-91D5-5AE61043D19E","0x00000000002C4C86" +"EBE4DB65-A86C-4489-9E33-07822DEC524E","","WL-0002","0","516","558","","3782","3B32A8AA-6541-42AA-ACDC-5AFEDABA9621","0x00000000002C4C87" +"2D948341-9A3A-4251-9059-8DCC94C47A7B","","AH-056","0","300","340","","1743","CDCFD01C-C7AF-4EBC-BAE8-5B0D9F94262E","0x00000000002C4C88" +"074AAE55-96F8-4B63-BD3E-7941C75C1FEC","","NM-24974","0","513","530","","3579","5A74419C-5CD7-4D4F-A3C3-5B233E4F6890","0x00000000002C4C89" +"7A404602-DBCD-A54A-B728-C497FA4BEE59","","WL-0259","0","203","303","","5689","71784B1D-D8F5-CF46-8830-5B3042D3971D","0x00000000002C4C8A" +"44139B9D-08A0-4C0B-9452-611A692333E5","490","EB-481","0","572","584","","563","51AE2D0B-AE47-4259-8B4B-5B54A376004A","0x00000000002C4C8B" +"88B40E3B-F3D3-4420-A72C-C48D28EE5D3C","","AH-015","0","197","237","","1572","8422F672-7C60-471F-9520-5B79D537D57A","0x00000000002C4C8C" +"F11D917D-E65F-43BC-8F11-4E04F8848245","","AS-055","0","260","360","","1543","387285D6-1CC6-4922-9BB2-5B7F8C728ED7","0x00000000002C4C8D" +"749023C7-B845-4C93-9901-40A805C01448","78903","SM-0252","0","120","160","","1234","D08F56B6-1A27-4889-8B63-5B8894B20EE0","0x00000000002C4C8E" +"E9DCDE3E-A7CF-4BD5-8EBA-0FD547FDEC84","","TC-254","0","100","110","","2127","32D1F2E8-EF43-4121-83E1-5B9EE502CF99","0x00000000002C4C8F" +"406319A6-57F5-4120-82FA-7BF5EF5A82A3","78904","SM-0253","0","80","100","","1236","F6A6E6D9-91BE-4126-8D48-5BB78F8AC120","0x00000000002C4C90" +"3DC9AB28-7925-4DA7-870C-B5FB7A5B7E24","","NM-26886","0","110","120","","4935","45A562CE-DE53-457A-910C-5BC95FA3EA7B","0x00000000002C4C91" +"76794085-9CE7-43A0-9533-92F69B185D43","185","EB-184","0","740","800","","229","19A5C7EA-91C7-4A57-861A-5BCCC265C460","0x00000000002C4C92" +"DFF43368-11D6-42A2-BAE2-F7B84A0AF411","48","UC-0032","0","147","207","","1323","BC87E6C9-59B2-453F-A19A-5BD291146696","0x00000000002C4C93" +"C8E96D55-EF54-5D40-A4E4-3FCCDC25BE36","","WL-0262","0","619","639","","5697","DD7FA58F-A95A-3849-96A8-5BDDD3474E27","0x00000000002C4C94" +"6D931C14-6C35-5040-A648-7E872035D0CB","","WL-0137","0","114","154","","5485","AF24AAC2-D0CB-5D4A-A63C-5BEE72ECA5ED","0x00000000002C4C95" +"E5040DF2-ABED-4C7E-A377-7FC8DA116D7A","","QY-0373","0","270","280","","2968","B9A77F53-80BB-4C5C-9830-5BF262463B5E","0x00000000002C4C96" +"D10DEE59-C413-43D9-B810-3830FA084771","","NM-24694","0","288","328","","3678","B75AD111-F74C-41F5-B73E-5BFB3E8BA52D","0x00000000002C4C97" +"6880CB99-6AA2-4852-853C-F1C700089594","","NM-26931","0","550","590","","5076","E7A31DD3-4B9B-40C5-916D-5C08E587D47B","0x00000000002C4C98" +"2B91114E-5B80-49EF-AE75-ABA1CB187389","","AH-065","0","40","80","","1752","F46860B8-0E90-4183-BE56-5C108F2F0E36","0x00000000002C4C99" +"4F1D47F5-0FEE-45CB-89B1-CAE7050554D9","","NM-03342","0","500","510","","2813","0AAAECEC-9FB9-4E2E-B4B1-5C1D9BF26300","0x00000000002C4C9A" +"E27869B8-7DD9-4565-ABD9-F7A0B244598A","","SA-0228","0","200","380","","2921","832C22D5-FD1B-4AB8-94B7-5C611C46F148","0x00000000002C4C9B" +"24D64431-3340-4C81-8876-04E86D60AF7F","","BC-0054","0","340","360","","4989","EC352AD9-3F80-4130-B374-5C70A188C0A7","0x00000000002C4C9C" +"29862CBC-EB7C-4221-A3C3-7AA71947ABEE","33320","EB-615","0","800","820","","664","79144F25-9974-44EF-AE2A-5C728C091581","0x00000000002C4C9D" +"82A76022-3804-41A5-8A04-65F5E01C0AEC","","BC-0185","0","400","475","","5155","D987FBE9-6FF8-4417-9330-5C7BB64974CB","0x00000000002C4C9E" +"954BD430-CB2A-431A-BB41-E01686F9FDE2","","SV-0065","0","190","220","","3325","A3C5A3B1-3FA6-4630-A0DC-5C7E7B1CA96D","0x00000000002C4C9F" +"4BD27758-E0A0-42D2-A05F-BA8C1E03B472","328","LJ-004","0","250","260","","900","9FF83F54-E763-4FAD-B859-5C8BC71F7C90","0x00000000002C4CA0" +"27401634-B7A4-4637-A957-CAD10D5D0B1B","","AB-0109","0","972","978","","2647","E31476C7-C985-4532-8FC0-5C8EF75415DD","0x00000000002C4CA1" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","320","340","","2892","7265185B-CE3C-436F-B882-5C9DBF589E45","0x00000000002C4CA2" +"84354BF9-80AF-4845-9922-FED592D0253F","","NM-27235","0","785","900","","4980","62FAE900-57AA-4019-A7A0-5CCED0551AFE","0x00000000002C4CA3" +"F04ECDC7-43E3-4807-936E-F37025CDC06E","","NM-26915","0","120","180","","5063","03C10B13-04B3-4D7D-9DAB-5CCF15BFA8E9","0x00000000002C4CA4" +"4A9E07F8-0261-4F73-82F3-793C2E3A2FB1","","SV-0023","0","205","245","","3312","CD67FCB3-000F-449F-A6A9-5CD212AFC0BA","0x00000000002C4CA5" +"DEF3FE84-BBB3-496A-B62B-D64FF5A85736","455","EB-450","0","101","111","","513","E8E4CEE2-0167-44ED-84EB-5CFD6357EED4","0x00000000002C4CA6" +"10A4EA87-7F15-4A9C-AFA4-456D7C9DF4B6","326","TV-285","0","900","1120","","1193","52AA4D86-A9D0-4E67-9265-5D05014578FB","0x00000000002C4CA7" +"8AE89BC9-F764-4A16-97F1-17DF93A895CF","","BC-0037","0","580","600","","4962","6D2D7296-50C9-41FF-9AFF-5D0513136EC4","0x00000000002C4CA8" +"3DC7B592-1637-4E0E-9C39-0448428783A6","","NM-01176","0","577","597","","2811","DB93C488-60B0-4140-8818-5D256D2B0073","0x00000000002C4CA9" +"CD3F05B9-1EA9-4499-B1E0-98431BDA941A","234","TV-214","0","540","580","","1123","C7C55AB5-0651-4D11-BB77-5D3411916A3B","0x00000000002C4CAA" +"5949B24B-5044-4434-8EF6-8571B50268DA","","MG-038","0","115","130","Steel with torch cut slots","5622","E162D180-1243-7D49-AABE-5D37932077A0","0x00000000002C4CAB" +"52758432-6AB8-42CC-91FA-104B0135A90E","182","EB-181","0","505","525","","224","BBADC4F0-F516-4B41-A782-5D3C71284A98","0x00000000002C4CAC" +"CD8421E0-887A-4D0A-B51E-FF63EED54EEE","","NM-23653","0","65","75","","5169","7746F79B-0557-4681-A2A3-5D5508E093C1","0x00000000002C4CAD" +"11E56D6E-39FF-4166-AD80-E2102D2BECFA","","AH-029","0","270","310","","1584","C33C28B8-F50E-48FE-833F-5D5CD1D24C45","0x00000000002C4CAE" +"A4337B54-DBE6-45F8-B3B6-13DA810B1C98","","NM-00808","0","148","183","","3750","70032D1E-FC42-4F45-8A41-5D7709147314","0x00000000002C4CAF" +"B25A1601-1195-44FA-A335-A15199078853","517","QU-130","0","87","145","","1005","CC265130-789C-4E78-9C28-5D780D29260E","0x00000000002C4CB0" +"6D558A37-D2F6-4C11-BD4B-31742716C96C","244","EB-240","0","430","600","","296","35D3EDFA-33EA-442E-AE8E-5D96F96FC9BD","0x00000000002C4CB1" +"F7B77FC1-25EE-44EC-84F0-FB9AB4F883B4","","BC-0074","0","265","305","","5007","8343D76F-0FB9-40B6-B025-5DACEBEEF3D3","0x00000000002C4CB2" +"BE193094-0967-984C-BDD9-E22E30CA18CF","","LC-039","0","215","235","","5448","C5470A3F-9AB7-4848-AA99-5DAF09B02667","0x00000000002C4CB3" +"0ADF171C-AA10-4836-A11A-9100E31D7BBD","","NM-01873","0","178","205","","5596","1E933458-6181-C14D-AD46-5DB73D1AEEF1","0x00000000002C4CB4" +"1D332888-83F5-4193-8321-D7E56F4053CE","155671","TB-0166","0","0","153","","1293","2990DFED-B469-4F3E-997A-5DFECE4853A4","0x00000000002C4CB5" +"129E3113-9AAE-496B-8180-EA4CE8E1BCB4","","NM-00770","0","385","405","","2905","842D7482-91AC-4188-B8DD-5E3AD09A4D1D","0x00000000002C4CB6" +"68501C92-FB96-4DC2-90F8-D582748D32F6","","NM-02040","0","80","198","","5578","C94A9E07-1305-254F-97B4-5E5015E7FAB8","0x00000000002C4CB7" +"C8F10454-8708-4D59-B121-0D6BC7626BE1","7","EB-006","0","300","320","","15","6495E983-495F-4915-A464-5E5AB4D99FD8","0x00000000002C4CB8" +"0376A0BA-FFBC-4410-A53E-EE271E898108","","NM-00270","0","65","85","","3867","1B1D2B01-7079-4572-8AAC-5E73077857E3","0x00000000002C4CB9" +"D0F74F13-54DD-4D76-9B2E-DA379A0B5DFC","","TV-301","0","1101.800048828125","1122.300048828125","","3003","33482CA3-3156-4F5C-9128-5E7379537175","0x00000000002C4CBA" +"FAAAB1E3-F8D6-4FB2-B148-7C6747E33EA6","","AH-024","0","410","450","","1579","F3607972-882E-4E6B-858A-5E7904320667","0x00000000002C4CBB" +"D5B492FB-F7AD-40CD-8193-FC3DF4362FE5","115","EB-114","0","280","320","","145","C0378BB5-B287-44ED-BA65-5E92E40C1D2D","0x00000000002C4CBC" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","420","440","","2894","0316DE4D-BDB6-4B86-A61E-5E9B7930D120","0x00000000002C4CBD" +"5E67791E-3D83-4537-9D16-736E813F69A3","","AS-024","0","60","100","","1517","A591029F-9085-41FE-8024-5EB5AF9692F3","0x00000000002C4CBE" +"B706394F-FA52-409A-95FE-08B294DE49EF","257","TV-230","0","1220","1400","","1140","ABBAF93D-99B1-4824-8FA3-5EDDEE3AECA9","0x00000000002C4CBF" +"9CA6E19A-51BE-41B3-B001-911E38297881","33344","EB-639","0","691","711","","687","CDC0C2EF-B53E-4A07-86A7-5F02EEA9DB23","0x00000000002C4CC0" +"9E749DCF-E197-D74B-8043-7CA869D29ABB","","PP-044","0","80","120","","5273","57C7A8AD-C7F1-EA40-87D8-5F22025A6B9E","0x00000000002C4CC1" +"DB7FBE3C-D626-4B03-9C99-DA77F6DC09C6","","NM-03405","0","135","145","","2798","53E81B60-AB28-47D9-91B1-5F37B7BA623C","0x00000000002C4CC2" +"2447FCAE-0511-410E-A22F-89458CEC85A5","","AR-0089","0","10","32","","3726","1D0F62E4-050F-4328-9730-5F54E140C718","0x00000000002C4CC3" +"398135A3-3693-4828-A711-84F2E00E5BF0","33664","SM-0139","0","359","380","","812","B2C14CCE-61A2-4D73-98FD-5F70E591C072","0x00000000002C4CC4" +"7A3BCE38-D499-48A5-81DE-01424B3BA651","","NM-25118","0","478","490","","3467","AF1A061C-8FE2-477C-B88B-5FA4DF6CD6D7","0x00000000002C4CC5" +"6AC1520B-27C3-4E85-AE6E-BBC7D740DC3A","","NM-26892","0","350","370","","5297","722160B4-7AAC-FC46-944D-5FC92015889F","0x00000000002C4CC6" +"17BA7965-9F5C-4DE0-8DC2-1136F276E38E","66","EB-065","0","680","705","","78","F58FD5B0-BF55-4ABD-9FF3-5FD19E42848F","0x00000000002C4CC7" +"AFD8F3F0-EE0D-48EE-B941-07A39472BCB5","","BC-0134","0","380","400","","5114","004EE51C-9643-4F4B-AE40-5FD8C05B7A52","0x00000000002C4CC8" +"6BDA5929-F7BC-4BF8-8EE8-2839B18F5C92","33387","SM-0008","0","190","250","","766","54230CF7-B7ED-4B8E-AB9A-5FE9EECAF81C","0x00000000002C4CC9" +"47AC0596-11F2-594D-9C55-3F9F787D2AC1","","MG-046","0","80","100","","5724","B2456E32-2BD7-274A-AD5B-5FF375E5CED4","0x00000000002C4CCA" +"22A24CD7-88EC-4160-A929-E3B567044D28","","BC-0003","0","285","305","","3888","501E21B1-B6FD-4B25-87D0-5FF5EE042BC5","0x00000000002C4CCB" +"77ABBC03-F156-4DD9-BEDB-9A3E96C5D282","26","EB-025","0","160","200","","32","21809220-5E72-412E-BF18-5FF9CF48A272","0x00000000002C4CCC" +"0D4B6D59-4E1F-4812-BD4E-24613A24C73D","525","QU-138","0","80","100","","1012","CA660993-9082-4189-80D3-6018CA87EE18","0x00000000002C4CCD" +"E12D70A1-7BC0-4D56-97F7-0ED08FEADB73","494","EB-485","0","380","900","","569","3145BA63-360A-4935-99C2-601E2714A993","0x00000000002C4CCE" +"C5A605AD-87C7-4E43-81B4-C2840DE5B5C0","356","MG-028","0","215","275","","920","90E5DA45-51A1-4418-A4BC-604DCC466675","0x00000000002C4CCF" +"91C03B03-82EB-414F-8941-06DC3B6B4EEF","","AB-0054","0","43","83","","2600","B6F6ACEC-8ACA-44AB-868E-6055DF42CF85","0x00000000002C4CD0" +"1A2EDBB6-645A-4D60-ABF5-DDCA10E71E51","","SO-0152","0","5","20","","3150","D69B146F-4F6A-4E9D-B926-6073F843BB99","0x00000000002C4CD1" +"793C222B-B014-4E18-BBE2-6323910DE867","","BC-0001","0","340","360","","3908","597FD452-A6E1-4312-908A-607A7371C163","0x00000000002C4CD2" +"372AECE7-3E84-4A52-984F-6BCF3D130EE2","","AB-0224","0","125","135","","2740","FE941F78-E431-4F96-AE24-609993881C06","0x00000000002C4CD3" +"DAAFC632-9B77-48B2-A1E0-7FA5A9362691","","NM-26895","0","80","100","","4940","FDD721FA-F8C4-405F-8EA3-60AC0C3B3D42","0x00000000002C4CD4" +"F6FA758B-D7E3-4C20-B9D2-A76A73240062","","SV-0028","0","355","375","","3322","02ACF811-07FE-4F67-ACF9-60BB5A8AD3BE","0x00000000002C4CD5" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","","EB-692","0","354","365","","5458","0EF343E5-8E63-CE45-B160-60DCA2D81166","0x00000000002C4CD6" +"6A667A3F-00BA-4B9A-B583-B0A9D979F982","","NM-26933","0","320","400","","5078","A75F8737-F23C-4EA0-92D5-60FB9F802913","0x00000000002C4CD7" +"16841242-88B3-4F10-A097-066B5E10D576","261","EB-257","0","115","125","","315","392390DC-AF57-43BF-97A3-6115B3BCAE23","0x00000000002C4CD8" +"182B21D5-9AAE-4CE5-9E9B-E2D0701229A0","","AH-034","0","510","550","","1589","B056D97A-AC42-41E6-821F-611602A8A8F0","0x00000000002C4CD9" +"65865CEB-7AA6-45E4-A24F-7F98EB8C00BC","","BC-0147","0","660","680","","3503","F8A0C635-5AE6-46BB-8774-6118DC09DF1C","0x00000000002C4CDA" +"96A863A3-17BB-4FCE-9D74-D4EDB27A6889","","NM-03386","0","85","90","","2796","E91F1018-C327-46BA-971B-612F451EA284","0x00000000002C4CDB" +"9FF9A71A-6C8B-427D-970D-AE74379A0E58","220","EB-216","0","240","300","","274","59661102-C010-4D4A-9DEF-61427A0E0E94","0x00000000002C4CDC" +"62F4D19E-D247-448B-8BDD-E1264EAA465A","","UC-0225","0","437","497","","2843","A30485B6-FF0C-4D55-95DB-6147116C2EF3","0x00000000002C4CDD" +"49C23C84-BAFC-479B-A803-BF31898487AB","","AH-070","0","400","460","","1801","BFD1FCD3-527D-46D6-BB77-61611F80E22D","0x00000000002C4CDE" +"6EE7149C-3CB3-47F0-8945-26EF772956E3","33388","EB-676","0","165","195","","725","67C9F25A-2481-4F3E-8396-6175A303A996","0x00000000002C4CDF" +"C1B37312-A053-4AAC-B04E-288E19E0A149","208","TV-188","0","335","395","","1108","356964A3-A6F0-406F-87C6-6175D3679B99","0x00000000002C4CE0" +"BD5C3931-E3D5-4177-9809-E2184CF8A37A","","AB-0060","0","590","590","","2605","EA292CB9-DFFB-42D0-AADF-618713E6931A","0x00000000002C4CE1" +"1271ACF3-913D-49C6-886F-41B6429789EC","227","EB-223","0","40","50","","284","A037A6A4-6C6D-45EF-90C8-619EF3A556D6","0x00000000002C4CE2" +"1E6F6A6F-0887-44DF-96D2-D2909DBA94B3","","NM-25025","0","560","580","","3505","1D51A394-CED4-48B8-A1E0-619F6D8763D9","0x00000000002C4CE3" +"B2E3A41E-B4B0-4501-96E7-4D965E363F52","518","SA-0212","0","265","295","","876","F5DDA259-7BFD-479B-B976-61C6B820625C","0x00000000002C4CE4" +"77B3C9F7-52A1-45DE-BA48-2B52D69F4505","","SO-0242","0","44","49","","3246","9BFA8CC8-DC35-48BD-B4E6-61C75C73C3AB","0x00000000002C4CE5" +"EC063552-924C-44E2-8DD0-86643708EC8C","87","EB-086","0","686","707","","105","8539F738-C678-4D27-890B-61CEEAA653F0","0x00000000002C4CE6" +"5BD00CE6-03F2-4813-8839-693062722283","","AB-0058","0","350","950","","2603","9104707E-826E-4BC8-83F6-61E336C98AD2","0x00000000002C4CE7" +"C9A19155-7C72-4350-9FB5-AD8D1F71462E","","AB-0216","0","405","1353","","2736","2791159A-F26B-4201-B7B0-61E71B151508","0x00000000002C4CE8" +"6DA1FA3A-D711-48EA-B089-72C6B641E49E","","AR-0051","0","41","49","","3724","989403F0-7EDA-4356-BC0C-6204B2A3D2AF","0x00000000002C4CE9" +"99ABA3A9-4E90-454F-98EE-450D81410852","375","EB-371","0","545","671","","258","2475B693-5C09-419E-9D69-620FD6C6ED66","0x00000000002C4CEA" +"BBAEAAAD-4B4E-492B-9E2C-CBB5C1011F87","","NM-21305","0","80","155","","3825","3ED5ACAA-200D-4A0D-8E43-6219E26F4615","0x00000000002C4CEB" +"027C2AA2-93EE-42E5-9540-1D4C8D7448F0","","NM-09729","0","127","646","","5567","FDFA5EF0-EC05-EE48-9D81-623A93ABE28B","0x00000000002C4CEC" +"12AB37CB-8434-4F77-8C92-A3EB9AC0C27A","","NM-03420","0","710","790","","2824","52B5C027-C6D7-408C-B124-624A88CD6735","0x00000000002C4CED" +"ADC4ADFA-3524-40BF-852D-9ED7A468025A","","LC-034","0","1","6","","1474","9F8456CB-7E46-45BD-8DFA-624C42037030","0x00000000002C4CEE" +"1DB12462-3B2C-442A-BAD9-EB5EF28DA3FE","312","EB-308","0","73","103","","382","ED10B91D-7D06-4A26-B55C-624F0BEBC682","0x00000000002C4CEF" +"ECFB449A-EB11-4041-9783-2D78BA3A8570","","SV-0139","0","180","200","","5213","217873CF-B31A-ED49-97D1-62553504A1B8","0x00000000002C4CF0" +"40CE82AD-AD5A-440D-A1A2-93B6B0274B00","540","QU-153","0","255","260","","1025","A4F8E5ED-ECFE-4309-8297-626103B3ADAD","0x00000000002C4CF1" +"FE5AB852-119B-42DD-9E82-8A2A0DD8D8DE","","SO-0185","0","4","18","","3183","621C01AD-9701-41EA-BC2F-62664D9B49FB","0x00000000002C4CF2" +"0A2B5BCA-9A46-F748-951E-8D459E346C00","","TC-430","0","225","265","","5429","CCD2BBD5-7059-EB4A-9207-6273D956EFB2","0x00000000002C4CF3" +"E456D47C-EAB1-4293-BDB0-F40FED022F63","","AR-0021","0","44","49","","2951","E1EFB0FB-50EF-44CA-AA5E-628CD309B30D","0x00000000002C4CF4" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","","EB-692","0","215","234","","5456","2BAAC746-1B88-9E4F-B46E-6294C2551003","0x00000000002C4CF5" +"785D06F8-A8EB-431C-8A46-4E722976F087","109","UC-0137","0","122","142","","1330","9922C533-9A95-4C99-8EBF-62A932ED8278","0x00000000002C4CF6" +"416AA393-878C-49E6-AF1E-D3373989A79A","","SV-0046","0","500","520","","3343","B92FBC0A-5629-466B-AA0D-62B71ABD5C39","0x00000000002C4CF7" +"3051FD9F-29D8-4644-AA5F-0D8F08AE4B6E","217","TV-197","0","240","300","","1114","315F8E07-4F04-4B45-9280-62F53F68D466","0x00000000002C4CF8" +"439A8980-AC17-41AD-83D0-D7E98A2EC165","","NM-03394","0","138","143","","2792","432B1C73-867C-4F9E-BB9E-630E90BBD326","0x00000000002C4CF9" +"83217159-DE2A-45CD-99BC-163BBEF1855F","","AS-050","0","520","725","","1539","A6D510B8-590D-48C8-A832-63403BBD0099","0x00000000002C4CFA" +"C0B37CB8-8A76-42A7-BD83-B2BE6A380D8C","","BC-0097","0","185","205","","5033","F8F391F1-FB58-4811-9B72-634E0A77F780","0x00000000002C4CFB" +"5E020A7E-AAC0-4995-9462-3CA18261E7BF","405","EB-401","0","130","146","","458","86D0381C-3C91-478D-83B4-63689E269C0F","0x00000000002C4CFC" +"C8B7A42D-4CA1-49CB-B2A9-49ECF47FE780","93","EB-092","0","843","853","","113","DF93788D-FAF7-420F-854B-63695854A3D8","0x00000000002C4CFD" +"1A80BC2A-D656-4F0F-9A03-1AD1CEF6AA00","","SV-0108","0","400","420","","3406","BFDCFEE5-355F-466F-B219-6395B9950F60","0x00000000002C4CFE" +"42A1A2D7-004E-44BB-AAC7-DD9A799DAB86","33701","SM-0175","0","420","600","","826","06778490-03B9-474F-B2A3-63A21BB10A5F","0x00000000002C4CFF" +"2561F89C-D4BB-457B-993A-AA827C6DE323","","AH-045","0","120","150","","1599","23F8A0AC-82B4-4F4F-AD73-63D14903EAEF","0x00000000002C4D01" +"EA29D87E-998B-473E-81E3-D965EF4556BA","","AB-0009","0","26","31","","2566","42BB7F57-4552-4B32-98D7-63E54966D3EF","0x00000000002C4D02" +"73C78A49-304B-423B-91CC-6C10EEB3FFBA","101","EB-100","0","210","250","","124","239FB8B6-9811-4DCB-8562-63EC9D9F0D65","0x00000000002C4D03" +"0B84DE07-7972-C148-8233-33EE9C414DB8","","PC-093","0","500","520","","5384","4764E5F3-98BC-D04A-A1DF-63F955A562B0","0x00000000002C4D04" +"BFC9E418-0E1B-469E-9427-512D545B0122","","TC-262","0","160","200","","2135","908FBD4A-1537-4E90-8B79-63FE47C869A8","0x00000000002C4D05" +"167DADC4-A723-4E82-A004-B48C9D036F8B","539","QU-152","0","88","92","","1024","81173B31-1800-43D5-97FF-640987A5F069","0x00000000002C4D06" +"97FA7911-CDBE-4D56-BABF-27C98CC75BAB","","AB-0016","0","150","504","","2571","300AC671-1206-4B28-A1B7-640A32C8916B","0x00000000002C4D07" +"04E42A82-C823-4BC0-8B13-0BBF77CBCB40","","NM-00392","0","74","150","","2877","BD5376FF-827C-48A4-A85E-640C91058CAF","0x00000000002C4D08" +"55FB9FCE-1AB2-48E2-A774-5250C1E4B2F2","245","EB-241","0","26","46","","297","2C6C7CCB-69DB-43F8-8F9B-640E012219D1","0x00000000002C4D09" +"760A8F36-A093-4B8D-9B46-29D954EF815E","","AB-0210","0","1085","1090","","2730","3BEF4059-2D18-421A-82B6-641B8C3638A7","0x00000000002C4D0A" +"12C9924B-E92D-4B0F-B8EF-E4B8F24550B8","","NM-05638","0","175","297","","5587","39B4AD06-2EE4-CB45-B765-642E971281B7","0x00000000002C4D0B" +"C8E96D55-EF54-5D40-A4E4-3FCCDC25BE36","","WL-0262","0","578","598","","5696","5AF7DB2A-073B-FE4C-B901-64390EDC3623","0x00000000002C4D0C" +"51B3C27A-C2A2-4FE2-A9C8-3D3B4184788A","376","EB-372","0","520","700","","259","5C4279DC-042F-4800-A854-643CBBEF2421","0x00000000002C4D0D" +"165D246A-8DC7-4B3E-9F5B-B2714B694590","","NM-01466","0","16","56","","3064","DFD01565-130D-4E73-8C7E-644D8C08D802","0x00000000002C4D0E" +"8C3CE6DB-D00E-4D97-886F-8BD4E215F385","436","EB-431","0","240","380","","490","94973E5C-69FB-4095-8853-646528E1271D","0x00000000002C4D0F" +"00E87924-0B3B-4A16-AC33-656BDB682E10","56","EB-055","0","160","300","","63","88045497-3A2F-4131-8EDC-647640FA1FC5","0x00000000002C4D10" +"1E902016-17A9-4935-AA10-2B9033B2986F","","SO-0147","0","44","49","","3145","DDDD39FB-973C-4139-816F-6491A3B6548F","0x00000000002C4D11" +"845840A9-0F62-4F9D-B644-7E4AAB0184B3","","NM-09291","0","27","67","","3901","7CFBCC86-827F-49A8-B39F-64A02BBC28E2","0x00000000002C4D12" +"25C7C7DF-BC59-4D56-B9DD-512DCCD2676A","341","EB-337","0","1045","1065","","418","55B89C64-A7FA-44CE-ACF4-64A82FA9F2FB","0x00000000002C4D13" +"BA035273-FAE2-4531-AF2C-4BAB46DB32C2","","NM-25073","0","342","357","","3487","36842FDA-2A97-4F22-9636-64AB80CFF41C","0x00000000002C4D14" +"3FE0B58F-7985-4A45-8658-92CEDBC3540B","","TC-275","0","264","304","","2143","52A69B03-E9D1-4999-A0BD-64C2D86DEE10","0x00000000002C4D15" +"5184D03E-5C19-4080-98FB-0E78770809FD","445","EB-440","0","365","400","","505","301FE4DC-ACFD-40D7-A86C-64DCB33EE32D","0x00000000002C4D16" +"1752AB79-4EBC-4376-9AC1-33ABD62CE6E4","","NM-00388","0","195","215","","2875","B5F72772-97F5-4F2C-B1E8-650C97F0EB6F","0x00000000002C4D17" +"FCA93F0D-A2CE-49B3-A8AB-960A468DB55C","","NM-04469","0","160","495","","4967","87397677-D70C-4435-9D95-6513A2D7F095","0x00000000002C4D18" +"5324E172-C046-43BF-9715-8F5A38C7DACF","","NM-01245","0","200","280","","3025","A8B7ADFC-46CD-4357-B5C3-651A556B08B5","0x00000000002C4D19" +"4C36AC62-0942-4F2E-838F-A3B0E42209A5","","SV-0130","0","120","200","","3434","5476B8ED-D910-4745-BD51-651FB879179F","0x00000000002C4D1A" +"23DE5FCF-6F80-490B-9661-A857D3DFEFDF","","NM-24907","0","140","190","","3610","2A6B6AC2-63C3-4763-8EFA-653D5495A090","0x00000000002C4D1B" +"FB0912EF-BA2F-4990-8DF4-0958F548D775","","NM-23353","0","200","220","","3286","801CA3B2-4300-4185-B4E5-6549BA63D5CE","0x00000000002C4D1C" +"30F7BE92-AD36-4489-ABDF-5BED9E66E7A0","","NM-26725","0","30","35","","3443","335A8F0B-A2AE-4D1F-8C8A-654EA8FD82A2","0x00000000002C4D1D" +"DB86C570-B336-4D1B-BE7E-BBFD719CEA71","464","EB-459","0","460","470","","520","3625B99E-4532-4A93-8137-657045762FF8","0x00000000002C4D1E" +"A5F8CAE0-2715-4E23-828C-B52A5B129646","140","EB-139","0","1051","1211","","173","5A9466B9-9837-4921-8315-6578284ACA78","0x00000000002C4D1F" +"0EFF0C51-2A6A-47EC-97B3-92306B85493B","331","TV-289","0","920","980","","1198","E4FE756E-9B8E-4C9F-A087-657E7452CAB2","0x00000000002C4D20" +"ABF4FFEC-792E-4ED5-A842-BAA630DF9C6C","","TC-316","0","267","422","Steel with torch cut slots","5636","6E18744A-A974-5446-834B-6581A8D07221","0x00000000002C4D21" +"074AAE55-96F8-4B63-BD3E-7941C75C1FEC","","NM-24974","0","460","470","","3578","5434065C-C0C7-4448-9181-658EF95E9422","0x00000000002C4D22" +"4E96B9C6-F28A-4592-9618-C8939DBB6A0D","33298","EB-596","0","495","515","","639","278C9CF1-561B-4629-A396-658F4CACBD25","0x00000000002C4D23" +"E07200D1-CF59-7B4C-B118-33B0C036B0AE","","PC-040","0","80","140","","5343","B5EC1E65-CEEB-5646-B9A3-6593F67E8446","0x00000000002C4D24" +"4066B186-A04C-0F40-8CA2-4A16D0E8F9C0","","WL-0236","0","260","300","","5657","0925E9C1-7D32-1D40-8C57-659B5B4B1FE5","0x00000000002C4D25" +"CD5039BC-10DC-455A-9660-86316D32DC9B","","TC-220","0","402","422","","2110","BFBF4940-A0CD-4153-B589-65B27BF6A3A5","0x00000000002C4D26" +"9EED881F-F005-46BA-B62F-4981950004F9","325","TV-284","0","97","117","","1191","68E6A19E-4259-4EB5-B407-65B757E6CD67","0x00000000002C4D27" +"C09BE371-87B0-4E1D-B5EF-29D3BC14640D","","NM-24646","0","240","280","","3701","91E5B2F4-73B8-41EE-BAA6-65D3BE2BDC31","0x00000000002C4D28" +"BEE0A6DD-C3F1-FC42-9CA1-F804435106C5","","SA-0240","0","147","167","","5170","C7D55DAC-B4CE-5542-93AF-65DDAA772667","0x00000000002C4D29" +"87D69615-1091-4C8D-9AD5-DB0149DC9A58","474","EB-469","0","280","360","","544","BB3D8B8F-3930-4A5A-8937-65E187D5C4BD","0x00000000002C4D2A" +"402BB88C-BA7B-4FD5-BAE3-2D626831976C","33674","SM-0149","0","400","460","","816","E554371A-0F0D-485F-9ADA-65E73C2455E4","0x00000000002C4D2B" +"C48FE185-B0AF-4FB5-8990-B752232C5F30","","NM-24830","0","360","390","","3633","8C25C66A-78DF-4DAF-AD82-65EC80F76AFC","0x00000000002C4D2C" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","280","300","","2891","AE8172D0-040A-44E8-80A7-661B63D28F96","0x00000000002C4D2D" +"DC575242-9F50-486F-90C9-6836723E077C","","HS-114","0","160","240","","2906","967AB9FF-3AF1-41FF-8B9C-6629A686AE42","0x00000000002C4D2E" +"A5242681-F7DD-4B09-9389-AADB2B13C48D","221","TV-201","0","200","260","","1117","A8F60939-36D6-43D8-8273-6650C804BBCD","0x00000000002C4D2F" +"0B09EF6C-47B0-4820-880B-09E80B1575B7","78894","SM-0251","0","90","155","","1233","DCA7C34B-0738-498C-8786-665DAC55E9E5","0x00000000002C4D30" +"32B0F43A-C595-4D67-8EE8-77FE0A119BEB","130","TV-110","0","278","298","","1046","59E73F4B-2F4A-4981-A03E-6672C6BE6043","0x00000000002C4D31" +"C1AE76E3-2A26-4802-805F-9D1D4CA233EE","4","EB-003","0","540","620","","6","A86782F7-44A6-4F1A-891E-6680640D7B55","0x00000000002C4D32" +"1B5EF445-8D12-4A7F-8BF6-8F385083527C","","BC-0172","0","370","390","","5142","044853C0-0347-412A-8980-668AD1BD9D62","0x00000000002C4D33" +"CFFBDDA0-3E50-4728-885B-11E1A8BD4239","180","EB-179","0","329","580","","222","F862E506-774B-4FB7-B9C8-66954C46C203","0x00000000002C4D34" +"C8551EEB-1173-4265-94D4-EC72EEF01936","","BC-0136","0","382","402","","5118","CF61E6B3-34C9-4892-97A2-66BDB7B2390A","0x00000000002C4D35" +"3660B54C-6AE2-4983-AD44-5300187EC08F","","AB-0155","0","65","100","","2684","AE99D880-7A34-4743-AF42-66CA477DB36E","0x00000000002C4D36" +"AAEC5359-863A-4D4F-BD3D-93E342BB33CD","","BC-0080","0","480","500","","5017","FEFA58F4-59BA-4C24-BF5A-66D3300DC9D9","0x00000000002C4D37" +"80C7ABE0-F226-493D-8D97-B65704392F61","204","TV-184","0","175","220","","1104","D800FFC6-D7A8-45C2-8370-66E5B1E9C666","0x00000000002C4D38" +"B4977AFE-6B58-439F-A9D8-BD1B4693FF96","","SA-0042","0","365","400","","3131","CA597B75-F067-4AF9-B932-66E7583DD6B3","0x00000000002C4D39" +"5F621C62-A7C1-794D-8B1E-DB1C976DF7C9","","AR-0231","0","17","23","","5472","F3F293DD-BAA2-6C41-BF3E-66EF153DBA18","0x00000000002C4D3A" +"D892AF2C-D47E-4796-8F88-91CF79983289","","NM-25485","0","4586","5681","","3774","A825D39F-DA86-4BE0-B07D-670851BD4010","0x00000000002C4D3B" +"D04EB6C0-BEF6-463A-96C7-B828B4DF10BF","","BC-0198","0","560","600","","5707","5ED0C814-582C-B644-8C59-6722B8BAF65E","0x00000000002C4D3C" +"F4BE5065-EEE5-4E04-8F31-BC8EFCE1679E","341","MG-013","0","40","200","","906","538CD07E-E50F-4D6C-B391-6733EE0B1B15","0x00000000002C4D3D" +"49B2103A-6D90-4D0B-AE13-1C6057331FBC","","AB-0067","0","148","228","","2610","7BEE994F-B609-416C-9924-673A4BFA988C","0x00000000002C4D3E" +"5A8846C4-F0C0-49D6-A02F-249BCA3C37B3","","AB-0053","0","552","572","","2599","64300CBE-3F56-404A-A0B0-674B43233F2E","0x00000000002C4D3F" +"636EC399-01E6-4C9B-81B6-D33503BE21B1","","AR-0193","0","6","18","","3099","02D1E534-FA47-456A-B0DA-674EAAB676B5","0x00000000002C4D40" +"D876B281-2D00-45F1-AB57-EA32200ECE06","216","EB-212","0","390","410","","272","272948D0-2FCD-4FEE-A720-6751BFB2458B","0x00000000002C4D41" +"94B0ABBC-0549-CB48-93A4-3F8A9332630B","","PC-026","0","360","420","","5336","357085ED-976F-B746-B79A-6757B2FB62DC","0x00000000002C4D42" +"1AF2D0AB-15B6-4E2E-AF9B-394E068D6EE1","","NM-01465","0","94","96","","3062","173B81BD-8CFA-4784-9812-6758DF932BDB","0x00000000002C4D43" +"26B247AC-C2B3-4C19-B29F-BD1C3F00F0CB","","BC-0181","0","360","420","","5152","99863E9F-2A7B-476A-9572-67781EA9B64D","0x00000000002C4D44" +"E0207CE2-3298-4F52-8902-CA47B40BA8A0","436","QU-104","0","260","280","","972","2C060F38-81C5-49A9-89D7-67AAC18AB2D3","0x00000000002C4D45" +"770D27F7-B56E-4B38-86C3-0DE711F3769D","","NM-26924","0","275","295","","5071","BDA15992-AA20-4583-9C18-67AE44BAFD84","0x00000000002C4D46" +"5D2B647F-1535-45C1-BC70-853B62FC5345","","AS-018","0","43","59","","1512","71A3DC94-99D7-4EE9-B4FF-67B801648896","0x00000000002C4D47" +"B4C24A76-DA08-428C-BCA4-AEA01D7504D4","","SO-0211","0","54","58","","3215","25573372-4C07-4C82-9F24-67B80A3C0ED7","0x00000000002C4D48" +"0D1A565D-8000-4A82-B0A3-2066148F75BD","155531","TB-0065","0","13","33","","1262","1750D58E-7937-4011-ADB3-67DBA822FE59","0x00000000002C4D49" +"ECFB449A-EB11-4041-9783-2D78BA3A8570","","SV-0139","0","240","260","","5214","D6606747-B42A-E944-AD00-67F57D1B3695","0x00000000002C4D4A" +"8EA85C21-0764-4E30-8E61-D1B8B89CED74","77","EB-076","0","394","399","","87","8B4758C0-334C-4625-AF8D-68013FB39309","0x00000000002C4D4B" +"B81493CE-D7D4-4A12-B113-FE1A508A55F3","","AB-0123","0","1183","1188","","2659","1C65EC67-E929-46D0-AEF8-683CE678A04F","0x00000000002C4D4C" +"82264529-D2E0-4AA5-A8F7-DD5551646E49","","SV-0051","0","440","480","","3349","374A60EC-D289-4B80-80F9-683D3C818371","0x00000000002C4D4D" +"99B0A4F9-22D0-4357-AC4F-CE7437FA3245","","NM-01444","0","452","492","","3057","A057A2D4-8EB1-4FDB-AE6E-685116F24EAE","0x00000000002C4D4E" +"255E9A26-8380-3747-B476-6757007AD92E","","DE-0024","0","200","505","","5665","28CFB99C-C0B5-5D41-846C-685E136D94A0","0x00000000002C4D4F" +"6ABA4D60-A680-41A9-A646-68C2E0E57267","","AH-087","0","640","720","","1774","9260663B-2420-4F6E-8B64-6866BFC8BBE3","0x00000000002C4D50" +"AA18785D-4E96-4D2C-82F9-9CBF36860484","443","EB-438","0","540","580","","500","E3908456-6FF4-4E81-A01E-686CE2F94D11","0x00000000002C4D51" +"147DC72F-91C7-421F-B834-66670674434F","33239","EB-519","0","220","260","","592","D92074CF-DA3F-4B96-8075-6880F2DB38C6","0x00000000002C4D52" +"740EE87F-3C57-452E-B30A-2B60A095D94E","","NM-00523","0","200","350","","2881","80396073-4B09-4098-B4B7-68848AA149D9","0x00000000002C4D53" +"BD564B40-9BB8-4654-AF84-11A5A47A3A52","","AH-005","0","450","500","","1562","53BC2D5D-57A0-4CCE-ADE3-6894CB05F859","0x00000000002C4D54" +"8DDD756B-01F4-47F8-8CA4-1EB49F357165","","TC-245","0","400","430","","2122","FB1FEBBC-154D-443C-930E-689762097792","0x00000000002C4D55" +"B31EFF4C-6A0D-4644-B214-61F2F23D87B5","155596","TB-0133","0","63","123","","1289","630CC18C-24B8-4D0F-8CED-6897868C3B72","0x00000000002C4D56" +"8A50A235-B354-E94D-9A93-D0E6061743BD","","WL-0287","0","220","240","","5735","4EB2FB86-2F15-5242-B4A5-68AA974A3D95","0x00000000002C4D57" +"D892AF2C-D47E-4796-8F88-91CF79983289","","NM-25485","0","5515","5642","","3777","7AF8B276-D746-4AAD-BF89-68B012B17342","0x00000000002C4D58" +"53896C70-E6F2-41EE-878D-8C3B98E0675E","","UC-0234","0","98","138","","2851","ED083943-2CD1-494B-B7BE-68C708F13511","0x00000000002C4D59" +"98BFD868-957E-400C-AC31-4D976923EE1E","","SO-0228","0","44","49","","3232","4CA3E699-CFB2-435A-856A-68D356988006","0x00000000002C4D5A" +"3505A607-825A-446D-986D-777E53FBAABD","","AB-0035","0","479","1184","","2583","4B32308D-A71E-459C-A614-68DA45C9012F","0x00000000002C4D5B" +"17580E68-CB56-41E9-808F-2CF190C75749","246","TV-226","0","63","103","","1136","5D2CAAAC-9909-4F20-893B-68DDE0EE8CAA","0x00000000002C4D5C" +"2794010E-7B99-4160-A584-EB7BEC616759","","SV-0043","0","140","160","","3340","1FAE78A4-88CA-4793-8AE4-68F96DE31B17","0x00000000002C4D5D" +"84354BF9-80AF-4845-9922-FED592D0253F","","NM-27235","0","845","855","","4979","566B71F5-C13D-4855-BCFE-6902D73F7D5F","0x00000000002C4D5E" +"BFA6C20C-3716-4776-9CE9-C19CEA4E5740","149","TV-129","0","380","400","","1066","75209A14-49C0-4286-BDDD-690B29EE87B6","0x00000000002C4D5F" +"4FD357BB-B73A-4991-97A3-0602B5717134","","NM-02242","0","60","395","","5602","9E3C45EC-6940-E74C-9AD9-6918FD0217E8","0x00000000002C4D60" +"CD197744-7CBB-4061-9C1B-10A1891DD8CD","","AB-0247","0","0","2","","5754","D12FDA77-4147-42EB-888A-6936256E131D","0x00000000002CF383" +"737F3D89-07E0-43A7-A652-23FEB9C56B1A","","BC-0120","0","380","400","","5050","072B2085-4838-457C-85C1-69474B06D947","0x00000000002C4D61" +"0D8494BB-4278-4EB3-922E-15231A993A68","","QY-1014","0","16","19","","3001","DE680232-8170-4B09-9DF0-6951870285A0","0x00000000002C4D62" +"4329F623-23DE-4250-AE43-98F8C0AA4951","","NM-21467","0","9.5","19.5","","3841","230EAA3E-804E-46B1-AC20-69551BDE6592","0x00000000002C4D63" +"3598844A-B591-4E43-B1F1-8A338637FA4D","","NM-24960","0","460","505","","3586","22C840F7-2E72-4D2D-B182-6956A79930C2","0x00000000002C4D64" +"A273CDCD-CEFA-469C-9950-B936FBC5938B","216","TV-196","0","350","450","PVC","1113","BD71F2D0-B6F3-415C-BBA9-695A629029B3","0x00000000002C4D65" +"46709F07-CA7E-41D8-9D9C-69E8ACA81005","","AS-021","0","100","140","","1515","EBBBEBC0-FAC9-41E0-93DD-6994C3E0278B","0x00000000002C4D66" +"3327432B-163C-4729-8344-E032C807C73B","78846","SM-0218","0","705","810","","833","20FBB6A9-70EF-451E-BBB7-699952EF5865","0x00000000002C4D67" +"519A6B34-2AC8-49EF-B055-01F241307AA9","155466","TB-0006","0","360","420","","1239","45CCA246-F615-46A3-89F4-69B85B6BB5D8","0x00000000002C4D68" +"952B4D0C-560F-4C12-90CC-F98B85E5D227","","NM-26340","0","201","245","","3790","1C997715-9841-460E-B3DF-69C1B276B82F","0x00000000002C4D69" +"FEA411D6-E407-4130-9FC9-C652C6080493","","AH-051","0","600","640","","1605","1DF6E3B9-A6BD-400F-87A9-69C459E04502","0x00000000002C4D6A" +"E57FC35D-E822-4541-9A27-657645A971BF","","AS-069","0","43","63","","1556","71A077E1-7B3B-498C-83CA-69D50B7E14C3","0x00000000002C4D6B" +"0ADF171C-AA10-4836-A11A-9100E31D7BBD","","NM-01873","0","40","60","","5595","6CC34127-BF02-7040-A997-69D71F156F7B","0x00000000002C4D6C" +"DB5B0FFC-D6DC-4F0B-88FB-FF70D4A30CA8","","NM-00367","0","192","242","","5720","6C99736A-824D-AA46-B63C-69ED5C98A1E5","0x00000000002C4D6D" +"D465DE28-CBD0-4138-A41E-4A8D50C23984","","SV-0125","0","340","360","","3426","24E8F37D-ADDA-45E2-AA34-69F41D4C2B2F","0x00000000002C4D6E" +"9DF001FA-1D52-4CC7-B319-A6F080925A3B","","AB-0092","0","810","830","","2632","E5E0D8EF-16FC-4C92-B773-69F5FCC7E282","0x00000000002C4D6F" +"4E96B9C6-F28A-4592-9618-C8939DBB6A0D","33298","EB-596","0","525","545","","640","D02B69AA-B261-46FB-B45B-69F9E539FB97","0x00000000002C4D70" +"C84936AA-2FAD-492E-AC04-B50D3B723970","","AH-091","0","380","410","","1778","97225D15-8B0B-451B-9BAE-6A024C85566E","0x00000000002C4D71" +"BE09A1F3-2965-8D4F-AB23-88407C02D4AB","","PC-079","0","180","190","","5377","68E74F0D-C440-5E46-9895-6A2ED51D6BC5","0x00000000002C4D72" +"B225809C-B52A-4BFA-8C23-9267A432E115","421","QU-086","0","419","429","","990","0CA2E204-2A6B-4B07-85F5-6A581C9B0A20","0x00000000002C4D73" +"ADC6A6DA-4CF4-E847-941E-8702DBEB6BF7","","WL-0249","0","355","415","","5684","8C301AD5-D7DD-3B41-878A-6A62F59A3037","0x00000000002C4D74" +"2E6706B5-29D0-4F9B-84E9-06B17C18BADD","","NM-01287","0","248","288","","3027","DE229086-0F2C-42BE-81CF-6A74E6114B5B","0x00000000002C4D75" +"423CF3AF-D4EE-4F9A-BF09-1536C0299895","","SV-0094","0","223","263","","3390","24FC981C-4072-4AF3-867C-6A7E5405D2DD","0x00000000002C4D76" +"46763D47-82D7-7741-9BF3-EDF8B8A3F6B7","","PC-098","0","280","300","","5389","893C24B1-05E9-1047-85E1-6A97D4CDDE1A","0x00000000002C4D77" +"3116308A-2A7D-4D2E-B386-B2FD45F0A81E","","AB-0101","0","1020","1040","","2641","D200ABD4-D0C0-4980-8F35-6AA4042A8DE9","0x00000000002C4D78" +"A18C9AF6-4225-45AA-8D6B-C7427E37E791","290","EB-286","0","390","410","","350","1E9B6F98-2DC9-4DDF-AC9B-6AA66DAC9C65","0x00000000002C4D79" +"46FC6401-1A6E-4475-A4F1-86493E531830","","NM-00707","0","35","92","","3742","9572AB89-740C-4E25-9159-6AC72CF88930","0x00000000002C4D7A" +"6BA7ED4C-9D0C-2F45-B757-94546AEFBB94","","PC-034","0","280","300","","5339","FF85E62D-B40C-704C-B811-6AF2925A59DB","0x00000000002C4D7B" +"B10EC250-21CF-FF4B-8F63-88ED3CF87E53","","AR-0230","0","50","55","","5475","9BAA4837-7EE6-9D4F-BDDF-6B11D225277A","0x00000000002C4D7C" +"9211C90B-8D32-4CAF-8153-70E84AA711D2","173","TV-153","0","140","200","","1082","57A6ED20-5F81-4F53-AB96-6B2BB60D6A0C","0x00000000002C4D7D" +"4FF7ECB3-871E-AA4A-99AD-E016F2E73060","","DE-0013","0","382","405","","5663","61E97E79-B305-D843-8C1C-6B407A06C5AD","0x00000000002C4D7E" +"FBA980C4-4631-44AA-9DAE-8A91A84FF2E4","","SV-0067","0","260","270","","3366","2CA240E0-55E1-4FC5-BBD6-6B743F0948CE","0x00000000002C4D7F" +"4D888923-8C44-1746-9CCD-AF83EFA8511E","","NM-28329","0","170","200","","5510","72221887-E25F-044A-ACF3-6B7E4F7B6B8B","0x00000000002C4D80" +"5887722F-5099-4C78-9D66-65651DD6039A","315","EB-311","0","160","180","","389","B6FDBA0F-3A53-449E-913B-6B82F877E75A","0x00000000002C4D81" +"F8363797-A77C-4073-B7E7-79888B8EDE6C","33663","SM-0138","0","393","433","","810","43AFCB39-435A-420A-8962-6B83EE3424CF","0x00000000002C4D82" +"6166FD4A-3F63-4C0C-A204-7459BF492C3B","","AB-0102","0","600","700","","2642","0116B1F9-CFAD-45E5-A89D-6B869FC81631","0x00000000002C4D83" +"E22FC976-E0BA-41E9-A5B0-A6635224ED43","","NM-26893","0","85","95","","5290","AD6FF5CB-B2EF-6242-B109-6B8A7887C367","0x00000000002C4D84" +"FB337129-63A6-4595-818E-A227FA68F34D","384","SA-0072","0","250","270","","857","BAAF948C-3AD1-4A50-8EFF-6B989B6FF08F","0x00000000002C4D85" +"DDEDB57F-2707-4E88-A111-553D167A5A78","79","EB-078","0","305","325","","90","59F24092-D727-4017-9284-6BA1C1B9B2A9","0x00000000002C4D86" +"2BE78C50-586E-4887-A892-2CEFE5CDEC94","122","TV-102","0","360","440","","1036","FD1BC9BF-8366-4A3A-A1AD-6BD0FCBB7B6F","0x00000000002C4D87" +"5B488110-6504-4240-9B46-A6EEF752B8DA","","NM-02351","0","268","383","","5605","B24F73D8-75CF-574E-B5D2-6BE47CBA4E1B","0x00000000002C4D88" +"228295D2-EB06-43AC-87F5-8237B4538791","","NM-24893","0","336","356","","3614","8D2A75A5-1DF1-4122-8B39-6C1921D981CA","0x00000000002C4D89" +"A599A9DC-B09A-47D0-BEC1-35F05BD93C8B","","NM-05786","0","200","400","","3878","93C04F74-5467-4571-9166-6C313BD90139","0x00000000002C4D8A" +"9A4EA48C-4B31-4212-869C-A2AC11F94E17","212","EB-211","0","160","200","","271","7DF55E28-A483-4DA2-B73C-6C3A9AA09248","0x00000000002C4D8B" +"6067725C-5576-4EBB-AF45-B78E391F5DAE","","AB-0005","0","388","433","","2563","1AB7C223-DDC8-4A76-ABD8-6C5D0CB4E8CB","0x00000000002C4D8C" +"FD320FCB-2B3E-4B1D-943B-710CE83FF1EC","383","QU-053","0","45","71","","963","EA617BFA-5280-4DF2-A7FD-6C697AE1B236","0x00000000002C4D8D" +"BA29DE6E-974B-44ED-BAD2-B4E6242E40DB","120","EB-119","0","400","700","","152","07AB9479-6311-438E-AED4-6C8C3693DA4F","0x00000000002C4D8E" +"97B354D1-F535-4CEC-BF06-47DEEA6D465A","","SV-0096","0","190","210","","3393","0A2BF005-05F9-49B3-BBB6-6C8CA81C7829","0x00000000002C4D8F" +"23BB19F2-1F97-4D68-9C0C-559AC50C5795","","SO-0173","0","44","49","","3171","E5D0CC43-A5FD-4B39-A3BB-6C940E8099AF","0x00000000002C4D90" +"D7A2E659-289C-444D-AF0E-3F996F355F53","","SO-0146","0","4","20","","3144","65BE1F18-813E-4C5C-91E9-6CCBC60967E7","0x00000000002C4D91" +"CFA9509C-2352-4404-BD99-A6B8B23984C8","441","EB-436","0","300","380","","497","051F45AF-5E88-467A-B17A-6CE761AEB0BD","0x00000000002C4D92" +"E9307AB4-7BDD-41D6-B0EE-967CABA75FBA","","NM-23292","0","20","500","Open hole","5718","1C40EC3E-A74F-764C-BA88-6CEB43BF6513","0x00000000002C4D93" +"75245E4B-4188-40D4-A112-9A52757C766F","165","TV-145","0","20","80","","1075","84026D41-BD36-4FCA-B32B-6CF46B36B6FD","0x00000000002C4D94" +"1D8BF403-3C78-427E-9952-2C2DFC4BA1EC","431","QU-096","0","60","80","","993","95A1A266-E40B-4340-BFEB-6D11E2065C27","0x00000000002C4D95" +"691EC193-98C3-44CA-A85B-49C078A97A2F","","TC-216","0","520","540","","2109","266DEACA-FC23-40F8-9A93-6D3313818CA8","0x00000000002C4D96" +"B25DE888-91FE-42D9-8ADF-EA80FCAFF310","33376","SM-0029","0","90","130","","1228","74C66812-B43D-431D-B82A-6D3A5F066D65","0x00000000002C4D97" +"D4068E63-8A78-4871-B6D4-3F5657971AD4","","NM-26967","0","800","820","","5103","DCE56761-F1EE-49EB-937A-6D5C7E3760DD","0x00000000002C4D98" +"9D07C22B-48F0-A840-A7D9-004D5DE5C5C7","","PP-040","0","70","110","","5246","ACC1507F-AECD-364C-8186-6D7238F91A44","0x00000000002C4D99" +"A5AFD41D-1683-4904-8F4E-6CF5EC9B9182","","SV-0019","0","140","160","","5185","6DC0BF92-2514-5149-B798-6D749383CC71","0x00000000002C4D9A" +"14B3CA33-695C-4615-A4CB-A4232FA15BBE","","PB-0016","0","160","170","","3268","94DB7EA0-34D1-427B-9407-6DB436A893DD","0x00000000002C4D9B" +"44A5A2CF-1A16-4914-8125-F4ADFD9FCF8D","422","EB-417","0","280","320","","476","E05C905B-8E7E-481B-B05E-6E0DA14FC55E","0x00000000002C4D9C" +"D7A8E170-79C2-4E07-9BF1-99731D65CA36","","NM-08385","0","683","690","","5539","F93B54B2-DD08-FD42-860B-6E0F86EEFD1D","0x00000000002C4D9D" +"970440D7-5041-4734-B424-4B4BEDF0EC2B","","AB-0011","0","260","270","","2568","456C923E-B097-48B9-9409-6E14B2E49B2F","0x00000000002C4D9E" +"CADAEA9C-171E-4D2D-98D3-C89198FCB66C","","NM-24998","0","151","153","","3567","98DE9AB5-4E35-4906-A9A1-6E2A99080410","0x00000000002C4D9F" +"6011BDD5-42E1-4119-B560-D83DD5749171","","AB-0230","0","392","552","","2744","8A0F58A7-FE13-4EB9-BA73-6E33084F288F","0x00000000002C4DA0" +"586658EF-BAEC-2C4F-B130-F879D412BB3C","","WL-0041","0","725","745","","5205","442FE541-C0AD-D149-96F1-6E3B9875EF51","0x00000000002C4DA1" +"6F9F309A-C161-EB41-9C8B-B3FBC004D2D2","","WL-0138","0","115","135","","5635","E3FFB4CD-ECCA-9C42-ABA0-6E762AAB6D34","0x00000000002C4DA2" +"0BE60CFF-608A-408C-A14A-3818E821251D","","SV-0031","0","340","420","","3327","3FC5EF2A-81F4-4A7C-A487-6E844DBB3F45","0x00000000002C4DA3" +"22B3DB79-F721-4E87-8057-6FE5109F5076","","AB-0202","0","698","1098","","2723","2C29BBF3-8DA6-4929-9E5F-6E9433C855D1","0x00000000002C4DA4" +"9C57056E-EEA1-1C47-B822-DE3E674F6800","","PC-071","0","70","90","","5371","A0F6EBE7-432B-BA4A-AA4F-6EA97AD760F7","0x00000000002C4DA5" +"E2A2425E-77F2-4EBD-A6BC-DA2CA77D94B7","328","EB-324","0","260","280","","400","95995A97-5892-4A95-8AAD-6EB775944FDA","0x00000000002C4DA6" +"3E0DF2E2-E2C7-E344-8BB4-D25FA551B2CD","","PC-121","0","250","270","","5413","1930F2B8-F4EA-9241-BD76-6EC7507C7754","0x00000000002C4DA7" +"4ABE4D5F-AF43-864F-BDA4-31170EAC4698","","PC-020","0","300","320","","5327","7B6175C5-ED62-4243-9DB8-6EDF8A0BE77A","0x00000000002C4DA8" +"D25810E5-D68F-4BE2-BE8A-7F33156FE984","","TV-261","0","100","140","","3079","32A3B9B0-FFFB-40BD-BA43-6EECE195CA3F","0x00000000002C4DA9" +"DAB571A9-E095-4CBB-BC98-A7F589202E54","","NM-24903","0","159","169","","3613","277CA118-70DF-4E84-92B8-6EF039CA4B33","0x00000000002C4DAA" +"3113F548-4F86-4C68-BDE3-36E1B4BF7989","","NM-24738","0","256","271","","3658","F9D46443-9E66-4084-8A58-6EFCE845D7C2","0x00000000002C4DAB" +"14EC2A99-B5B6-47A5-8FCA-1D4288A206AC","","AS-066","0","170","230","","1553","F41E69E5-2F76-44B8-AC00-6F0771ED74F9","0x00000000002C4DAC" +"8E493278-6AAF-49E9-978C-0639FFC15795","147","EB-146","0","22","32","","180","82A2AC68-856E-4342-8E8D-6F155BC74760","0x00000000002C4DAD" +"FBC4235A-2049-E045-8C3E-2B0370F6DB1C","","PC-116","0","245","345","","5408","FE67EBDD-A190-6E46-B8B0-6F2095C89979","0x00000000002C4DAE" +"2C3BFB8B-9131-4AA3-BB97-5D083F60BB68","","NM-11385","0","105","165","","3906","80D0D4B9-C1E4-4E7E-9AC7-6F2D286946D3","0x00000000002C4DAF" +"ED013839-3762-4C05-8589-415DAA96592B","","NM-01442","0","130","148","","3056","10FCD6B9-8EF9-4F4D-848F-6F35BB4DCDB2","0x00000000002C4DB0" +"E63D3D8F-C471-4699-92A2-45BAC2E1814E","","NM-01417","0","102","110","","3046","437EF6E3-E7AA-4559-A701-6F68300878FA","0x00000000002C4DB1" +"1B95B461-3D97-4316-8DB5-F037C35DBE29","","NM-24663","0","255","270","","3692","1138019F-A6F9-4D6E-8011-6FA45BCE7E3E","0x00000000002C4DB2" +"71D54F29-EC02-464B-824F-10A7DD9C62DB","","TC-248","0","760","880","","2125","2A268A51-FED9-4021-ABA6-6FBAE814A2D9","0x00000000002C4DB3" +"20264064-0F3C-476B-A301-D3745566B615","55","EB-054","0","70","175","","62","153B5062-5897-48A0-B2E2-6FC478BA0D70","0x00000000002C4DB4" +"57FE0234-A02F-4BDD-9461-011547EF12FC","274","EB-270","0","324","334","","329","1DA30A96-DE6A-41FB-A6DC-6FD27909B145","0x00000000002C4DB5" +"651E5F98-72C1-4282-9BC6-0A62A3158FAD","","AB-0020","0","231","341","","2573","E4B78A06-837A-4632-948D-6FD5A342B630","0x00000000002C4DB6" +"AAE63F34-7FD8-423D-A6EA-686B955048C5","","NM-21424","0","40","60","","3837","69FEE00F-EB39-403F-8784-6FE3AE4534F5","0x00000000002C4DB7" +"B694268D-E0DB-4B00-AD06-06715F1BD2EB","","NM-24911","0","223","254","","3605","87603411-277A-449D-BDB6-7009A84A777D","0x00000000002C4DB8" +"0F805A02-E80A-4C6A-8FF7-107856B148CD","122","EB-121","0","525","546","","155","695644BD-6033-4B0E-A2D5-70105858A1EC","0x00000000002C4DB9" +"D3650168-15E1-4F96-9749-695A92D8C23E","","SV-0099","0","180","200","","3398","A0B7270D-44C5-4F09-B749-701FFC045626","0x00000000002C4DBA" +"14C813C7-576B-44BC-8B3D-0AFA1853847A","57","EB-056","0","110","180","","64","5F9B9C1E-8DA5-4606-BD8B-704F78CE59E5","0x00000000002C4DBB" +"7CB4B48C-0A0D-2C4A-A4D9-C6FA853D84E7","","WL-0183","0","220","240","","5526","16D60B15-2AD3-1B4E-AF06-7053964AB728","0x00000000002C4DBC" +"F8C66ADB-50B7-4804-967B-C7840199BB35","321","TV-280","0","120","140","","1188","2C70BE44-AA64-453F-8537-705A0F8856C5","0x00000000002C4DBD" +"DC117459-3818-5242-B31E-6C5EDE346221","","WL-0085","0","84","124","","5435","93CDC83A-4622-F542-ACE4-7071E7DABAAB","0x00000000002C4DBE" +"412F11DE-B061-4DF3-813A-366CBC596D33","","AH-035","0","480","520","","1611","2F2B78FA-F9BB-49EA-B967-7075BF9B7097","0x00000000002C4DBF" +"CD12CFA1-817C-427F-BA42-8915B6C903C9","248","EB-244","0","1917","1922","","301","9850F063-847C-462D-9076-707C731DCE52","0x00000000002C4DC0" +"979A6C49-42EB-4127-80E9-F2D4C92A75C5","155499","TB-0049","0","180","220","","1248","51E8DB78-7FF2-4B43-AEB7-70ACF00D0D1E","0x00000000002C4DC1" +"5949B24B-5044-4434-8EF6-8571B50268DA","","MG-038","0","135","141","Open, uncased hole; fractured rock","5623","6ECBCDAB-2901-7F49-BCE3-70CAE6079D2F","0x00000000002C4DC2" +"2D00B76A-19A1-44D9-A254-71E4C7D1BC20","","NM-21529","0","110","160","","3845","4BA5A8D8-6975-4609-A4CE-70DAEB1E6832","0x00000000002C4DC3" +"81F00B5E-8CFB-6E45-8004-F4D8E1A7895E","","PC-127","0","540","600","","5416","349DD6A3-98A5-0A40-AFB8-70DE3ACCB101","0x00000000002C4DC4" +"F04ECDC7-43E3-4807-936E-F37025CDC06E","","NM-26915","0","80","100","","5062","0D279C36-DD64-44C6-8565-70E9A853E115","0x00000000002C4DC5" +"9580A9CD-DBEC-4DF9-B3FF-E5890FD0A16F","","NM-24639","0","210","250","","3704","F2FAB8E6-FB1F-4845-975D-70F96E3309AD","0x00000000002C4DC6" +"6F29C6BD-3366-4277-9362-D8D38905CE90","424","EB-419","0","200","300","","477","6F9E1AF4-6B23-4457-ADD9-7112BAAF8372","0x00000000002C4DC7" +"4AAA1D2E-461C-4DF9-B0C7-1F2F1A4D3F2A","","BC-0152","0","80","125","","5123","C883E56F-FEB4-4279-8E2C-7142FAE44020","0x00000000002C4DC8" +"018C1C28-F0D5-4598-8025-259B99DAF96F","","AB-0038","0","832","837","","2586","48B0B764-98B2-42F2-A515-71608AC55C78","0x00000000002C4DC9" +"E21A4EFE-ABA4-5542-8CE5-9380B2EBA63A","","WL-0175","0","50","53","","5521","6B9A91C6-6C7C-644A-87E7-7170B90F1DB2","0x00000000002C4DCA" +"47A97CE4-D900-46EA-AD3E-21462FDB2E6D","33295","EB-593","0","410","450","","636","E18A6E53-A9E0-44DB-8B73-7176A40D6D33","0x00000000002C4DCB" +"88A8E20F-BDCD-4959-AC2E-0BA07F54E297","442","EB-437","0","400","420","","499","961004C9-E6D9-4244-B9F5-71AEC5270474","0x00000000002C4DCC" +"14C813C7-576B-44BC-8B3D-0AFA1853847A","57","EB-056","0","335","375","","66","86787BDC-6C34-45E4-BB79-71AEC53432C3","0x00000000002C4DCD" +"AAAB9CFF-1B67-41E0-AD01-68AD93A20324","326","SM-0259","0","390","410","0.032"" slotted pvc","851","6BCF46D1-57CF-4DAC-8B9D-71B9AAD47854","0x00000000002C4DCE" +"8E947D17-23B0-4382-9DD9-F4A5A63C76E9","281","TV-247","0","30","60","","1157","11C23E2B-5BBC-49CF-8EC3-71C59E497E83","0x00000000002C4DCF" +"84354BF9-80AF-4845-9922-FED592D0253F","","NM-27235","0","785","705","","4977","AC021C70-C74E-4018-BF1D-71EC2C622DD3","0x00000000002C4DD0" +"6DC26BE2-1CCA-AF49-B96F-AE89F66C9E11","","WL-0278","0","160","180","","5714","13137620-0325-6847-9DEC-71EF0BA478B1","0x00000000002C4DD1" +"83E9341D-EB00-435F-B446-E7715EF9CC0D","","NM-26913","0","610","650","","5059","21550961-2FCC-4E5C-A384-71F8ADF08E48","0x00000000002C4DD2" +"45A9EB2E-5F3A-4F1D-95A1-9E31D5F53C14","155591","TB-0128","0","60","80","","1287","F71D0E14-5801-49CE-9A68-71FC1984B9A0","0x00000000002C4DD3" +"B74F8C6D-3DEE-D34A-8A58-F4F002E03821","","WL-0135","0","388","491","","5737","09ED74BD-A7BE-C54D-A065-71FF065F32C8","0x00000000002C4DD4" +"2D1D394D-C44E-4AF8-B113-E606A1883147","","AH-004","0","60","100","","1561","45AA8472-0F7C-44EE-8E68-720307987221","0x00000000002C4DD5" +"FA599519-55F4-47EC-9736-F33FE1F375D5","","SV-0014","0","130","160","","5182","6872A728-D379-C446-A0EF-72058019559A","0x00000000002C4DD6" +"A173F886-7655-EE4A-929B-7F15B689E579","","WL-0148","0","65","100","","5493","691C17C9-EE1F-C442-BC00-720987262D9C","0x00000000002C4DD7" +"D668E434-1CCF-EE4E-A065-DCD7B1FB7110","","SA-0239","0","95","100","","5173","51F04375-BD19-2B4D-A5DB-720D8F786DA5","0x00000000002C4DD8" +"380A96E8-6F16-44D3-8C87-955E9FC18EA4","","NM-24734","0","460","510","","3662","B0B0305E-C3AA-4533-A7ED-721D73501DCD","0x00000000002C4DD9" +"F6FA758B-D7E3-4C20-B9D2-A76A73240062","","SV-0028","0","255","275","","3321","DED95CA8-3903-4DD1-BCE6-7229594BC355","0x00000000002C4DDA" +"3FA5664A-99AC-4E1C-9895-54B33AD42B06","80","EB-079","0","500","520","","93","8EAD79CD-43D1-4AFC-975F-72586A5E4593","0x00000000002C4DDB" +"A25859D2-860E-4A34-A853-26A333F1C7AA","","NM-03667","0","460","470","","5427","1C64CFB8-692B-1842-8674-725FD47DBBC7","0x00000000002C4DDC" +"21183830-5443-4233-B3D3-6AF28C16B958","","SV-0034","0","370","400","","5187","86ABEACD-7A7A-D348-A6A4-7265DB67C72B","0x00000000002C4DDD" +"74AD8C39-B71E-4E46-B71D-F9441AEF2690","","SO-0177","0","4","20","","3175","EA40125B-F457-4F50-9ECF-728C319D6E63","0x00000000002C4DDE" +"EC23D99C-A73D-4042-AFA7-4043926BD1F7","78878","SM-0238","0","85","125","","841","68F6FA5B-BC35-444D-AB5E-729F8D5A81AA","0x00000000002C4DDF" +"0CA68EAE-2561-4B18-B73B-B59E3D5AC6B2","","BC-0076","0","200","220","","5010","82736B8F-AEB4-469C-92F6-72A80D0F09FC","0x00000000002C4DE0" +"025F5773-1F5A-4156-83E1-9F944918DFDB","339","EB-335","0","140","160","","415","8BC1AA46-536A-4800-BABE-72B61EE13A57","0x00000000002C4DE1" +"9CEDDBD4-EB74-45FE-9638-45D8CB185393","","AH-037","0","260","300","","1592","EBBD6C60-88E8-4EDF-81A2-72C00B4383D3","0x00000000002C4DE2" +"41B752FE-00DD-4E32-9012-8F3BDA5F4AF1","33517","SM-0072","0","685","715","","793","2FD5B1E5-D201-4DB9-BA0C-72C2F7E1CEFD","0x00000000002C4DE3" +"D8F9C67F-DCD2-4111-84A9-ABB1EA4A675E","","NM-26902","0","450","490","","4947","6B39630E-280E-4EBE-A8C4-72C4E7BB0E2D","0x00000000002C4DE4" +"D831080E-A79E-47E4-82E3-999305C1EDE2","369","EB-365","0","105","125","","250","DC8F67E0-FD72-441B-BB4D-72D11FF34420","0x00000000002C4DE5" +"35310395-DF86-FE43-94EA-C5025660207B","","PC-068","0","207","218","","5424","59247F2E-B8C9-0048-AA8B-72DC9E5AAA83","0x00000000002C4DE6" +"5652E1E8-48AC-44DA-B4BF-2A82D11FC2DB","","AB-0031","0","250","300","","2581","A0A178AA-C8A5-41D7-9251-72E0DAFBAB57","0x00000000002C4DE7" +"5338F8D2-ADAB-479C-988C-C6E58491686F","","SV-0137","0","310","350","","5211","788A3778-EA5F-3346-9C0A-72FDEE988B8A","0x00000000002C4DE8" +"D172E10F-DA0E-4121-81E8-4E2810787AF6","","NM-24901","0","137","156","","3612","9FD7A75C-41CF-46DD-8E1D-7319AA25A56C","0x00000000002C4DE9" +"CA9A16CD-540A-4017-8747-45FF97C18D03","424","HS-008","0","247","595","","1213","189A7221-C718-4AFC-852E-731BDD403889","0x00000000002C4DEA" +"0C42713D-AE84-40A5-8D38-4EA3A3D97BA6","","NM-25059","0","137","156","","3492","C229BDE3-4BDD-4D34-9982-7320D94C11C1","0x00000000002C4DEB" +"E356DC8B-B56B-48EE-BD07-045FB37646FB","","AB-0208","0","991","1711","","2728","6EC0C6A4-32A8-4D4D-907D-733CFDA10566","0x00000000002C4DEC" +"06FB4027-63F1-45E0-8D03-478514414632","351","JM-052","0","205","265","","894","3E4F837F-C766-4D30-870A-734B24B87AC6","0x00000000002C4DED" +"FDCCDD7D-05C2-4A33-AFDC-6B0959E2C34C","","NM-02272","0","159","300","","5603","6300DCE9-E7DD-1249-B03C-7368C0AE6220","0x00000000002C4DEE" +"48A780DA-D810-4880-95A1-0287B70F678A","","SV-0081","0","745","785","","3375","74E0368F-EA04-45AA-9159-7371A2EC82B2","0x00000000002C4DEF" +"C61B55A0-972E-4B6D-B753-08F9A691C8DE","","AH-082","0","560","600","","1811","6FA296FE-BB4D-4200-877A-73795996F016","0x00000000002C4DF0" +"5C3EED0C-28BA-4CC0-B8BF-575601665E64","","AB-0255","0","","","","5768","A630166F-5F03-48CD-B785-737DBDCDBD8E","0x00000000002CF3AB" +"15336D86-7CB3-497F-AD4C-84844DEAEAA9","","BC-0070","0","160","200","","5004","3594E0B3-E6F2-4B5C-A3BB-73895C072703","0x00000000002C4DF1" +"E79EC4D9-E2F4-4D14-A9DA-A76EBED7B0EB","","TC-266","0","200","235","","2137","66040C9A-FF79-4D05-BCCA-7399AD417764","0x00000000002C4DF2" +"2C904FF5-846C-4724-804D-6CB5B47FF73B","","WL-0027","0","350","450","","3862","E90F012C-6501-46FB-9665-73A7E0A9547A","0x00000000002C4DF3" +"D7883CE8-5A42-40E3-8EAA-2D26CB1C171F","289","EB-285","0","578","594","","346","AB08649B-D0A5-4C3A-9598-73AA1FCC7BFC","0x00000000002C4DF4" +"D62FFAA0-76F9-4EAA-A6ED-BC247D692545","","BC-0186","0","630","650","","5158","6AE00C22-97A2-4738-8CE6-73C431327D6E","0x00000000002C4DF5" +"81A0C5FB-C336-43FF-949B-2FC858E0B5CF","386","QU-056","0","80","160","","964","43B1A8F7-F82B-4C35-BB06-73D1670A2930","0x00000000002C4DF6" +"67C93D46-6C4A-2F42-8CE3-775A5B24A60E","","PC-097","0","200","210","","5388","55CE339F-FCFB-A349-BAB7-73E4B24A6E9E","0x00000000002C4DF7" +"2E6083D6-531E-4641-9BDB-EEE193C6192C","111","EB-110","0","520","540","","139","7843E57C-DEAD-404C-B6EB-73EF1BE883E8","0x00000000002C4DF8" +"0CC33D9F-5242-0E4F-9521-28C0C67B0056","","WL-0171","0","237","299","","5520","51975CD7-5A1B-3B4F-8C86-741154B30E87","0x00000000002C4DF9" +"176EF036-1E38-49B4-8E81-0C50CC33E32A","","NM-02072","0","134","230","","5580","D286EFEB-7E52-9745-AC5A-74294D06F0C3","0x00000000002C4DFA" +"E4E1F7F1-05FC-460C-A067-B3652924DB16","432","EB-427","0","275","315","","487","C7F82D52-E015-47CB-A69D-742D74A764BC","0x00000000002C4DFB" +"C7D5EF49-B7D0-4521-935B-040950381C76","373","EB-369","0","358","418","","254","688FEF3F-FDEF-41B0-89B1-742F3320209D","0x00000000002C4DFC" +"FB421C3E-1F32-43C6-83DA-1C94C8A8AD0F","33393","EB-679","0","240","477","","730","0158BF6C-016B-4669-BC63-7440AE2E2506","0x00000000002C4DFD" +"A4337B54-DBE6-45F8-B3B6-13DA810B1C98","","NM-00808","0","197","229","","3751","A6A8BA36-C76F-4FDE-8220-7443683A8237","0x00000000002C4DFE" +"F4A5A8E4-5F06-4B3F-8DFB-60E07F36750E","","SV-0038","0","430","450","","3333","00E0B96F-1ACC-4EDB-86CF-744DCD39078D","0x00000000002C4DFF" +"6C774A82-0710-4A9F-ABF9-2CC750D05C4E","128","TV-108","0","145","185","","1043","AF0EF256-D0CC-4302-A083-745C4BC8C650","0x00000000002C4E01" +"9B88A9FC-9B41-49DE-AE37-8DFDDE9EECA5","","NM-25023","0","97","100","","3509","D45B3C5F-1695-461B-A376-7468A25C2E69","0x00000000002C4E02" +"F925181B-E4FC-4B9F-B01F-048304AC6896","","QY-0126","0","20","54","","2960","286645CE-4E77-449D-8FC4-746B13707A2F","0x00000000002C4E03" +"1752AB79-4EBC-4376-9AC1-33ABD62CE6E4","","NM-00388","0","135","155","","2874","9DC6B77D-605B-44CE-A5C8-7476014139FC","0x00000000002C4E04" +"D21F711D-1784-4496-8425-5170CB8064E1","487","EB-478","0","257","302","","556","EAC6EA40-4DE7-4A96-A431-74A43A9040E4","0x00000000002C4E05" +"D3D16546-D556-43A7-B218-6322B8EFA968","33403","EB-686","0","660","700","","735","F7E24375-A687-4A9A-81D1-74B30A127C69","0x00000000002C4E06" +"7024BED9-8AE0-4C0A-B4E2-A1A416968C86","271","EB-267","0","40","50","","326","AD3F708C-8F99-43C4-9CF6-74DD74D666AE","0x00000000002C4E07" +"D45B5E2C-05A1-A349-ADB9-12F8B32288DA","","PC-009","0","160","190","","5421","6BB3E4E4-36B9-9044-80A0-74E4A0594127","0x00000000002C4E08" +"14F7222C-083F-4D58-A709-DD328379A538","2","EB-001","0","47","221","","1","74706A96-AE31-4B7A-A2F0-75014461E302","0x00000000002C4E09" +"BA67EA0F-01EF-4246-8125-B2E28BBBD820","","AB-0045","0","20","25","","2593","F278CDB7-1ACF-4A17-B605-75037120B400","0x00000000002C4E0A" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","411","539","","2922","DDB5EAB3-4C94-4D7A-BD40-751673E2F00D","0x00000000002C4E0B" +"0CC8B83D-8915-4A0D-832B-859E84F53DD8","","NM-25131","0","545","560","","3461","6954470A-1604-4447-97E8-752F31AFC344","0x00000000002C4E0C" +"9EEC0F83-4F36-43B8-A584-355A01CE0155","33379","EB-668","0","320","340","","714","610EC168-B9C5-43B3-87A0-7532C0206F05","0x00000000002C4E0D" +"ACF1D53C-3605-4D1F-BFCA-E7F7EBD09FDC","","NM-25012","0","84","95","","3513","02FFD133-7931-41E0-80CA-7533C386BC43","0x00000000002C4E0E" +"C84E0BD1-9CA4-4852-A7D5-494B65562DCB","33280","EB-576","0","395","415","","621","6BFA285C-3CC9-4F13-B347-7534073E1BEB","0x00000000002C4E0F" +"274E3388-0B49-E348-86CF-A965C407149B","","WL-0143","0","275","315","","5489","46075A6F-3B09-BF45-BB9D-7551DF7D0D6B","0x00000000002C4E10" +"4F29F180-F546-43F6-BAC9-F5B578CA5CCE","","SO-0175","0","4","19","","3173","8768C044-9A88-468E-B4CB-7569944A5EC6","0x00000000002C4E11" +"5DFCADEF-42CC-9841-A4CC-494B2F487029","","PC-046","0","154","174","","5348","ADBAD51D-50F9-B843-B38F-75706E2E3443","0x00000000002C4E12" +"850998A7-4B3A-46AC-8053-0B31CA85F4B7","63","EB-062","0","400","460","","74","30AF3BF1-1DFA-48AD-B2D6-7575093B3095","0x00000000002C4E13" +"54932D4B-69EB-4D65-988F-40EF20A44F49","","AH-094","0","270","300","","1781","C79D3624-A56C-47C7-BCDD-757B54C8E7D9","0x00000000002C4E14" +"9828649B-4AFD-48E6-B944-52A4A1FD629B","88","EB-087","0","300","400","","107","77DC4456-0C2B-4E28-AB85-75846294B982","0x00000000002C4E15" +"34A9EA6F-D412-4E2A-8332-9649F0CD85CF","","SO-0194","0","6","22","","3192","CFC61550-1272-4150-B5E9-758B417BCDCE","0x00000000002C4E16" +"6F67F266-ED22-4839-A27E-9EDD1509E1FC","","NM-26956","0","400","420","","5093","F85C9B52-9462-481B-B4A7-75954531C5BD","0x00000000002C4E17" +"F366C062-0D78-49FE-9750-EF13924D1F2A","310","QU-011","0","116","136","","946","83200EAA-E555-478D-B0B2-75ACD6005203","0x00000000002C4E18" +"72DE453C-DEB9-4A8B-BEFE-F87F0CD622EB","","HS-039","0","16","26","PVC with slots","5639","D3F684B7-3282-8446-869D-75B2DFB5E2D9","0x00000000002C4E19" +"E9E039D5-D413-4D53-8739-06E2173040EE","","BC-0004","0","300","360","","3889","59EAE34A-81BA-422D-BE19-75C293993D34","0x00000000002C4E1A" +"F118E5AD-1D61-4E4E-B42E-24915D4B0918","","NM-01419","0","363","403","","3049","FCA09058-CB40-444B-8380-75DA07E069FC","0x00000000002C4E1B" +"93C0A76E-F8BA-4ED6-893D-EFBE75B7A0C1","","NM-25121","0","632","652","","3463","0AFBBAA5-2194-4DB0-9DFC-75F47599C68F","0x00000000002C4E1C" +"01535DFB-D713-244F-A9A1-E04B9ED102DD","","WL-0286","0","179","180","","5730","A6E017E0-72E7-DD46-8A6C-7600361167B5","0x00000000002C4E1D" +"AAD8E39C-056E-0044-86E8-C1C8970D1C22","","PP-051","0","62","82","","5279","0B785FA0-B284-2744-866E-76033FE9DA3D","0x00000000002C4E1E" +"B251272B-9CBF-4B01-A79D-DDC38EA43CB7","413","EB-409","0","420","450","","465","C301A09C-C1D2-480D-9F6D-762630B0A34F","0x00000000002C4E1F" +"AFD8F3F0-EE0D-48EE-B941-07A39472BCB5","","BC-0134","0","340","360","","5113","B72D23FA-839A-4247-8F88-7633462DD9DB","0x00000000002C4E20" +"6479A870-E098-41E1-A639-7C028BCBD43B","141","EB-140","0","267","282","","174","FE0B26EA-82FB-48D2-951D-7649D4810410","0x00000000002C4E21" +"00B6FC01-9214-4C5B-8128-1A03AA427A80","415","EB-411","0","270","290","","467","E626D2AF-3A10-4DC1-8E01-7650F81AE459","0x00000000002C4E22" +"9403DA2F-1D33-420E-9F10-C8D3DF9D7933","","QU-075","0","214","230","","2380","BC654F45-E97D-476D-B83C-76A1C4ECFB4E","0x00000000002C4E23" +"0AB14A1C-B463-4533-B09C-AC8132A453D6","33337","EB-632","0","1780","1800","","680","42F9714D-A70D-4D7F-A5C3-76B2209278D5","0x00000000002C4E24" +"78B6A0C2-CFB5-0347-AABB-E030695C0BFF","","BC-0364","0","1350","2139","0.60"" perforations","5726","AC2EDBDC-0F4F-1B46-9BC0-76D7DBC55484","0x00000000002C4E25" +"1CAA2B56-6463-416C-BEF1-65AE1BF5E616","","AB-0039","0","315","415","","2587","C48AF2EA-B03C-459E-956A-76E7DE809BA8","0x00000000002C4E26" +"BBFB4E28-C23F-45F5-B009-95F5A2F82090","","NM-24870","0","46","76","","3628","67C7C399-57A0-4C13-B1D8-76EAA2FB1D71","0x00000000002C4E27" +"22B293AF-207E-2046-B858-C222F1A510FD","","PP-039","0","13","23","","5244","F33A256F-C3A2-6D47-B6FD-76EE084405F7","0x00000000002C4E28" +"A0489AD1-2219-4B92-A923-E8AC0CDAC1D8","33279","EB-575","0","615","640","","619","7C93AFE6-904C-4964-83FF-76F33125FA38","0x00000000002C4E29" +"BE963C0B-476E-489D-B263-5F86B5DDBED1","","AH-085","0","365","405","","1772","0815BC17-82D0-4071-B78F-76FDB57CE1EE","0x00000000002C4E2A" +"AE4A6790-8479-45A7-934E-281CE36A50F6","412","EB-408","0","349","498","","464","8B5740CA-06D4-4735-A381-770794B7F2B7","0x00000000002C4E2B" +"498E5354-E2A2-465E-8456-44C588E8CC84","102","EB-101","0","400","500","","125","121CAB41-E5EC-4278-9F91-7724573C6645","0x00000000002C4E2C" +"66F673BF-A58C-4631-A775-64FBC3C5F9C3","","AB-0012","0","310","360","","2569","CE87C970-28E5-4AF3-8EB7-77399C5B7B75","0x00000000002C4E2D" +"7704DAEF-7582-4EE2-9BDD-2F3D362184AB","","BC-0093","0","272","292","","5030","02D245D6-E515-4432-86F2-7739CD4B7942","0x00000000002C4E2E" +"D061DD29-52D2-A644-92B9-CDABE89A1CB5","","PC-024","0","380","420","","5331","9FE2ECC8-5347-F247-97CB-77427F003BF0","0x00000000002C4E2F" +"15336D86-7CB3-497F-AD4C-84844DEAEAA9","","BC-0070","0","220","240","","5005","8DC739E0-2FC1-4E04-B81B-7749240ACE52","0x00000000002C4E30" +"BEA9A38B-B686-4341-84B4-2EB889CA72CD","","PP-030","0","20","54","","5242","FEC36F4A-1A35-4847-A1C1-7754E6644007","0x00000000002C4E31" +"068B4D13-F408-45DE-A912-40DEC8EDA9AF","","SV-0128","0","240","260","","3431","B1ECFE85-C875-4F0D-852E-7764B9992965","0x00000000002C4E32" +"0E8BE397-C57C-4F79-998E-C523D911CFB6","","AR-0216","0","16","36","","3618","80583333-B00C-427A-B659-77746CBD1C46","0x00000000002C4E33" +"AD10F4FE-528A-448B-952A-0895603C465D","","TB-0084","0","65","155","PVC with 0.032 inch slots","5516","51E365ED-4472-5A42-83E0-7781C8998D52","0x00000000002C4E34" +"97B80B5E-4AB5-43E3-929E-3E80DFC80FF3","429","EB-424","0","310","350","","483","85109B56-64F1-473E-937F-779C22CF1EDF","0x00000000002C4E35" +"5528C393-A744-4835-8B30-3E254B962BF4","","NM-24591","0","83","123","","3720","41C25049-C71E-4E11-87C5-779D69B9576D","0x00000000002C4E36" +"02D4CC66-3B9B-475B-B2F8-095D6D1945EB","","NM-01254","0","627","629","","3074","4AB421A9-DE84-4D5D-A825-77AE94B9DF9D","0x00000000002C4E37" +"5927EB0B-0153-434D-800A-2AA46440D468","390","EB-386","0","860","900","","444","FD0C3D33-74F8-4F6B-A106-77AF1A663605","0x00000000002C4E38" +"3CBE7F1E-E0DF-4D40-998C-B46565A4F127","","BC-0195","0","365","420","","3515","82FFF5DE-4F7C-4C37-9FFA-77C3A3D85504","0x00000000002C4E39" +"1F72AA85-8AC4-455E-AC2F-BF4C973503AE","","NM-01431","0","391","431","","3055","F50ACD84-917B-4701-9AF5-77C8F4811286","0x00000000002C4E3A" +"285BC5D1-6428-024C-B690-8428CDDC037D","","PP-054","0","102","122","","5281","CBA10BE6-EFBF-8640-AA90-77D0D22EECEE","0x00000000002C4E3B" +"D99C90D1-9F01-4E91-9983-1B5C85035C66","","AB-0051","0","390","395","","2597","2D3B0DE0-2EEF-4B63-800E-77D50FAD1ACB","0x00000000002C4E3C" +"225E7652-D916-49D7-B972-9C15B9A194C6","287","EB-283","0","500","520","","344","D73BDF4A-332F-401D-96C4-77D968B4CC45","0x00000000002C4E3D" +"0A6FF5D7-F0FE-48EA-89A5-B25B21B5E840","","AB-0024","0","270","315","","2576","B41313BA-86E7-4029-993B-77E5EFF053F4","0x00000000002C4E3E" +"27543065-A792-47AC-A331-0C6C5C8CE694","","NM-26918","0","325","361","","5067","B79FC7AF-0D33-4008-A6E2-77F7ADED16F1","0x00000000002C4E3F" +"BC3040C8-83B5-46E7-B367-CDE1353ADD42","155554","TB-0091","0","130","150","","1268","28FEB8B8-20B4-4C2A-9CCD-780CEA3C62E9","0x00000000002C4E40" +"C0639F13-2742-4ECA-AA04-1A9ADAA98E76","","NM-00699","0","90","118","","3741","D268BE9C-5109-427D-9A88-7811B9013C09","0x00000000002C4E41" +"9580A9CD-DBEC-4DF9-B3FF-E5890FD0A16F","","NM-24639","0","150","190","","3705","D3C70869-963F-4E87-8384-781933BD7DEE","0x00000000002C4E42" +"EAF7F924-C8DE-4B0E-9F9E-E5D3FC0CA39D","","NM-01588","0","475","485","","3069","9AD722E8-53D0-4029-AD29-782EB7E4F7D2","0x00000000002C4E43" +"2A4974B5-27F6-487B-BE63-0979298A513B","","AS-016","0","325","365","","1510","35BB71BD-0416-4476-85F1-7842C5128AD9","0x00000000002C4E44" +"5FE5580D-4709-CB46-8589-F9042C70DF42","","CP-0037","0","232","356","Steel with torch cut slots","5637","9A0FFE58-219B-4149-B8F8-7882606E5DFC","0x00000000002C4E45" +"DE90B67B-1852-4E1B-B806-BE36C1C4D74B","","AB-0200","0","1185","1195","","2721","611FE0A4-9D6B-4CB3-B892-7889D2BA68F2","0x00000000002C4E46" +"82264529-D2E0-4AA5-A8F7-DD5551646E49","","SV-0051","0","360","380","","3350","FACBCA97-4347-4467-89EE-78912A9068B6","0x00000000002C4E47" +"A701B819-6A12-C040-94AF-4F27C4826DC4","","PC-088","0","80","360","","5419","D0756823-E662-274C-9D66-789382F05EB8","0x00000000002C4E48" +"7F9A11C9-1C53-43C7-BE4C-4DDA2CD54455","","SV-0086","0","160","170","","3379","72BB7D3B-0604-4131-9C90-78A124D2FE69","0x00000000002C4E49" +"43D54EA3-165B-4D06-BD50-CF9F42C0E178","297","TV-263","0","300","690","","1167","22FC18F8-01CA-4B72-A3A9-78A9689C6DD9","0x00000000002C4E4A" +"A18C9AF6-4225-45AA-8D6B-C7427E37E791","290","EB-286","0","465","485","","351","2D9895D8-8B30-436D-B72B-78AADFDD4E44","0x00000000002C4E4B" +"82717611-4ED4-4461-9D65-7C80EC3D8FC0","488","EB-479","0","326","336","","558","6336E470-BADD-4625-8321-78AFE9380DE6","0x00000000002C4E4C" +"6F9C223E-EDAC-4BCA-8954-85AC91386DDA","","AB-0143","0","508","751","","2677","4778C048-3E4F-4EFC-9686-78D7DDC0D7F2","0x00000000002C4E4D" +"443DFBED-612F-4FCC-9644-E2B35B8E14AB","450","EB-445","0","1180","1200","","509","7B612E53-C3FB-46E5-81B8-78DEFCEA62CB","0x00000000002C4E4E" +"95C79EB9-8907-410A-819D-5ED579963846","382","QU-052","0","140","200","","962","ED501592-EEBA-4B18-A2C2-78DFB60343E2","0x00000000002C4E4F" +"BE880A60-3ABA-4FE3-BBDD-42760ABFE26E","","NM-01334","0","320","380","","5293","B2C1991B-6CBE-894B-AEB8-78F2516FDA67","0x00000000002C4E50" +"9CED9378-5968-4D52-9011-C4843CA2BFB4","","AR-0183","0","35","40","","3730","A79CEB80-28C4-4303-819A-7903C8183A87","0x00000000002C4E51" +"9DB495CB-A0E1-4C85-A32A-87AF25900837","","QU-170","0","42","58","","2522","11321629-9921-4E56-BD43-7911F88CDD00","0x00000000002C4E52" +"E9C56988-B88C-47CD-BE3D-F2152BBA798F","","SO-0210","0","18","34","","3214","73E0168C-94DA-42F7-9D01-791728F66912","0x00000000002C4E53" +"123E2E23-905F-4C41-9878-D1C5C703BFEC","468","EB-463","0","591","611","","528","99DE21F2-2F6B-42CF-9CD7-791B2AEB38E7","0x00000000002C4E54" +"282DE52C-A637-485D-9014-285E42262D98","","BC-0167","0","220","260","","5138","989A0DC6-7D0F-462B-B44F-791B7978C8AB","0x00000000002C4E55" +"F17443DB-9530-4B2B-B5D4-8CBA67563931","","NM-24592","0","190","225","","3721","60F5521F-47A3-4455-ACFD-7929B9FCB321","0x00000000002C4E56" +"AFB67ACF-DD57-4727-A117-913976E01AB8","","NM-00757","0","398","438","","2898","D9827A13-B59E-4D85-B474-79443D157B28","0x00000000002C4E57" +"FCF93E38-168C-414D-AEC1-D94FC3F96657","33324","EB-619","0","500","600","","672","E90D1766-8424-4970-8152-7950F0A24173","0x00000000002C4E58" +"BBB1362B-7DAE-484E-951D-17BAA19B1E43","","SO-0250","0","2","18","","3254","92E517D4-7142-4F1B-B70A-795884DC0785","0x00000000002C4E59" +"7A338021-E55E-4092-901C-23D1214AA328","33380","SM-0015","0","300","340","","762","AEAE9635-4E57-4AEC-BBB3-796262C7CCEC","0x00000000002C4E5A" +"59067FB9-73A1-2F48-8DAE-59A45B5BA516","","PP-043","0","61","101","","5247","93E132B5-3B0A-8648-92EA-797174595F11","0x00000000002C4E5B" +"CD52403A-75CE-47C5-B89A-3785BA0E2C9D","","SO-0176","0","44","49","","3174","3167A1EE-03DD-47A5-8216-7975D0F23163","0x00000000002C4E5C" +"4FF7ECB3-871E-AA4A-99AD-E016F2E73060","","DE-0013","0","428","440","","5664","837CAC97-D15F-9A48-ABD8-7979CE4121E3","0x00000000002C4E5D" +"F06A9346-C6C5-40F2-92E8-64E8319605FD","155734","TB-0229","0","60","196","","1306","B2BCFAF7-BAED-4FA3-B878-797AE1777FD4","0x00000000002C4E5E" +"458076E9-D515-46C4-AEDE-E66D826EA56D","348","MG-020","0","96","196","","914","123E878D-277F-428A-8690-797C31BA7496","0x00000000002C4E5F" +"E8266D4C-1317-449F-83B3-AA55945A79ED","92","EB-091","0","940","1040","","111","2DF3305C-1202-4914-A510-799040DED405","0x00000000002C4E60" +"7B3D0E45-F488-4AD4-8527-E20ABC6CA9F2","","NM-09771","0","138","198","","3902","7842C62A-CF73-49A6-8319-7993C1F2719F","0x00000000002C4E61" +"F1E81124-2A22-411B-84D6-43844F662175","","NM-09605","0","230","260","","5566","56D987C1-36A0-9348-8CE3-79A2820BF706","0x00000000002C4E62" +"E0014D4B-7CA6-4A0B-B227-77CCCA7334B6","308","TV-272","0","1604","1805","","1177","39A7AE84-E823-4FA8-AC90-79A74B1868BE","0x00000000002C4E63" +"85D1E0C0-F580-4898-9634-62DC2F993C2D","286","TV-252","0","1100","1180","","1159","B8453415-2EE1-44A4-ACAB-79AD8331F054","0x00000000002C4E64" +"2CBD018E-C978-457A-ADD2-A1E8EEFC2E7C","250","EB-246","0","669","674","","303","572E44D9-C2F3-425B-B5E5-79BB89CD56B5","0x00000000002C4E65" +"CA03C455-0645-48A0-A7BA-1614EE10EF43","","NM-01655","0","170","365","","3755","BE23126B-C091-4627-A7C4-79E4607A2F73","0x00000000002C4E66" +"41A8D09D-9572-429E-925C-697AC443089E","155787","TB-0246","0","497","977","","1313","83588736-1A3E-4CEA-8EA5-79E95B3F0369","0x00000000002C4E67" +"9A59E293-98CD-4723-9AF5-99256C4359FB","170","EB-169","0","320","360","","210","17A8A54F-A0BC-45A6-BC16-79EF92B5C28E","0x00000000002C4E68" +"6A666540-A009-4468-992F-7EB6DCC02AFF","95","EB-094","0","734","744","","116","58E9CD46-C6A0-4113-B199-7A0FF393CF34","0x00000000002C4E69" +"9A55E877-B723-4762-B27C-3662F486F6A9","304","EB-300","0","420","470","","377","F3298E1E-4A7F-4D28-B23D-7A1BC0C4DB0A","0x00000000002C4E6A" +"D59DA24A-C247-498C-A05C-C6681205059A","","NM-02437","0","70","225","","5606","B743C521-8A49-C747-A980-7A1D2FE03F67","0x00000000002C4E6B" +"7EB2F7E6-EC6D-4BCE-AEB7-1196F4F1BEDB","190","EB-189","0","350","390","","238","6F792CC1-F84E-4DF5-B66D-7A1FB75A6261","0x00000000002C4E6C" +"8FC5E2B3-36EF-4C0C-8126-14A23B825EFE","466","EB-461","0","520","540","","524","3BB0B2FE-5CDE-4DB0-B2FD-7A36A21A86AB","0x00000000002C4E6D" +"68BB7D8B-28FF-47F2-A31C-261E0B60FF22","516","QU-129","0","37","115","","1004","F33755B5-57F6-42C5-B8E1-7A3DDD1E529D","0x00000000002C4E6E" +"7F05C9F6-ED08-4ABE-8776-F0A8A0AF4D5D","","AR-0033","0","22","27","","2954","45ED276C-1CB5-406D-96B5-7A40F4948C58","0x00000000002C4E6F" +"9969E82B-BAAF-47FA-A6D8-4409A0BD6FFF","","SV-0024","0","280","300","","3314","9643E88E-A718-4D7B-9EDA-7A54914CA0AA","0x00000000002C4E70" +"71E31C2A-4C32-4085-AB69-6271FB82B98B","","NM-06949","0","106","165","","3896","4E4F42F5-D901-4298-A5AA-7A6782CC9995","0x00000000002C4E71" +"F413B3F2-9F9E-4EE4-887C-44576356E460","","BC-0259","0","260","280","","3546","F1B8C88A-68B8-41FE-B293-7A984FA571A0","0x00000000002C4E72" +"B67F9A1D-24BC-471B-BF48-5346E295E988","","NM-26922","0","380","690","","5069","6639B185-9C88-4D0D-9AAD-7AC557F73A0A","0x00000000002C4E73" +"954BD430-CB2A-431A-BB41-E01686F9FDE2","","SV-0065","0","240","250","","3326","FDA62F37-E0D0-4C2A-8113-7AE466064E0A","0x00000000002C4E74" +"E42CCAD3-902D-412E-962E-1338A4A06258","","SV-0116","0","260","280","","3413","E7174881-1F2D-469A-AF4A-7B0DEEDBC438","0x00000000002C4E75" +"4DF72F6D-12F6-E440-9964-15E6351EEF28","","WL-0109","0","324","344","","5683","A841F46D-5058-D645-B103-7B47755F7531","0x00000000002C4E76" +"E34F58B6-6F16-4694-9477-235503BA8539","","NM-25000","0","115","117","","3563","AABEBAD0-A59B-408A-BAEA-7B4A86218486","0x00000000002C4E77" +"77E7722C-1832-46E3-BC22-8B92F6AD8149","33407","EB-689","0","600","800","","740","7E5C755C-4654-4820-97E5-7B4B1490E6EA","0x00000000002C4E78" +"5A36459A-80A6-4199-8927-CB2051027920","","SO-0219","0","5","20","","3223","5C590821-1B81-440F-B6CE-7B64B539D825","0x00000000002C4E79" +"2B7F61D7-793F-4782-895D-77328E07E69A","","AB-0062","0","570","590","","2607","2B0D31F2-F11C-48BD-A95F-7B6B855DFC4C","0x00000000002C4E7A" +"D1EE4A7A-AE18-41B3-BC22-6F0B811418A5","","NM-01819","0","320","508","","5568","B586A808-1733-1949-AB96-7B7236C145F2","0x00000000002C4E7B" +"E9CC775B-1FF6-4B64-B347-DABCF7880B9A","","NM-03385","0","123","128","","2795","36EF45CD-A41B-4713-8C3D-7B7614E8AF41","0x00000000002C4E7C" +"885268B9-2BBF-4DD8-A0BF-8CEC02063F52","","AR-0146","0","14","19","","3088","13D37D38-1051-4B51-B3CA-7BDF2C699E5A","0x00000000002C4E7D" +"F81BB22F-2439-41B7-8370-97D88194E40D","","SV-0121","0","280","300","","3422","7144CDD0-9579-4307-8C09-7BFD2C137AFE","0x00000000002C4E7E" +"9EACCCEF-C6FD-EF40-A404-179CA604BC7C","","AR-0220","0","17","37","","5466","FB2851B2-C5BF-3E43-8D5C-7BFF015C0703","0x00000000002C4E7F" +"5FB674F1-5F1B-496A-A815-D7DAAB6F6D72","","NM-00856","0","304","424","","2911","548F53E0-F8B8-40A7-93A8-7C1C5511792A","0x00000000002C4E80" +"C32DF826-009B-424B-8956-C3286E8D9365","","AH-048","0","180","220","","1602","6C4A3FE1-1653-49E1-ADAF-7C23C29CD246","0x00000000002C4E81" +"EC41DD41-817F-4948-AAB6-DF14074E90A4","","NM-24962","0","480","540","","3584","ABBB5D38-5952-4727-8BA0-7C389F88918C","0x00000000002C4E82" +"07DF51F1-E28B-4A84-9497-39422CC07AFD","359","EB-355","0","1090","1290","","424","789791DE-9224-4B92-BB8A-7C3D4F2B17AC","0x00000000002C4E83" +"F82EEE0A-6C6D-4ED5-9187-F9ED0E6A8B69","","NM-21170","0","480","500","","3819","1B7DD33F-8768-4DD1-97EA-7C68709778B2","0x00000000002C4E84" +"2B405217-9FCB-47F3-9C6A-612D38AA93A7","33221","EB-535","0","320","340","","602","E968BCC8-5D8B-49B3-8914-7C875540EC17","0x00000000002C4E85" +"CD44F8E6-57D4-40AA-8219-CA77B4DAAF85","","AB-0250","0","","","","5761","E1A646EC-EB61-46DE-9A7D-7C8A87676B69","0x00000000002CF398" +"043879B1-C649-49F5-9EBB-E2D096410F04","","TC-264","0","213","223","","2136","03EAD5C5-F5F1-41D5-962D-7CAF56A350DC","0x00000000002C4E86" +"4BC1B83E-3424-473A-ABCC-8FA1D8FD6774","","SV-0071","0","330","370","","3368","2DFAA31E-1955-4586-B0E6-7CC8447650E0","0x00000000002C4E87" +"11275315-7565-42FC-A199-ACB2DE7E4BDF","174","EB-173","0","700","720","","214","01352A95-4E50-4FB9-8B77-7CD99730952C","0x00000000002C4E88" +"1834161A-B39F-43BE-A9E6-5EA0B7DD7A25","473","EB-468","0","404","428","","541","43A8E6CA-C691-4F22-8517-7D400AF0E0DE","0x00000000002C4E89" +"6D81C9B8-C75D-413F-9560-9FB0E347BBEC","","NM-25936","0","67","68","","3881","08730455-EBC4-4319-9DA9-7D58AEC7EDFC","0x00000000002C4E8A" +"BE44800C-19EF-4732-A463-1544951ED1BF","","SV-0072","0","360","400","","3369","A66A1F8F-0221-4BAE-A034-7D684B88689A","0x00000000002C4E8B" +"4261EDD8-9E54-1C45-BA6D-36061DC81E4A","","PC-049","0","560","580","","5351","C1B7C4C9-D073-774A-8592-7D7516983F14","0x00000000002C4E8C" +"EF930E18-215A-AA47-80F3-132E493A62FE","","WL-0123","0","132","134","","5464","EDD6B7C7-D79F-1D4D-AC53-7D878469AC6A","0x00000000002C4E8D" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","360","380","","2893","42D766CA-27F6-4DCA-96BB-7D924972766E","0x00000000002C4E8E" +"17BA7965-9F5C-4DE0-8DC2-1136F276E38E","66","EB-065","0","720","755","","79","020E081C-94E9-4628-A0CC-7D9DDB543A2C","0x00000000002C4E8F" +"128083A9-D599-404B-A013-521F241B1F3F","219","TV-199","0","300","400","","1116","3D0AAE64-FAED-4D48-9A12-7D9E25D1120B","0x00000000002C4E90" +"152B83AE-32E8-43C4-8CA2-C9A20BB7062E","","AR-0008","0","16","21","","2948","E938940B-5BD8-40DB-895F-7DB15D18B205","0x00000000002C4E91" +"C01C7AF9-28F2-4216-89F2-5BE384D69A38","","AB-0209","0","620","1345","","2729","404C87C9-3896-4EC6-9D35-7DFA6FB60B5A","0x00000000002C4E92" +"50A09180-F59C-4749-803D-1C9BDBAD8C6E","","QY-0925","0","254","324","","2997","E3041F58-86D4-448B-B82C-7E22D4D4D5D9","0x00000000002C4E93" +"DF7190B3-FCB4-4BDE-ACD2-D4A0049D1F7C","","SO-0126","0","44","50","","3265","420FF0F4-594E-49C2-81FC-7E3B3605DC9D","0x00000000002C4E94" +"99995CFA-24D8-410B-ADA7-DEF1FCC686AF","133","TV-113","0","40","44","","1049","AD7C4275-05EE-41C2-A289-7E5FF8612C76","0x00000000002C4E95" +"C8C5E4F8-2888-488E-8FB3-12BA9C7483F9","44","UC-0028","0","435","495","","1322","9C1E0ED7-D02E-4146-8C08-7E6488E89CFB","0x00000000002C4E96" +"348D8FCD-EEDD-4A07-A82E-E47490EF0E46","33589","SM-0080","0","220","240","","799","9D812D59-2CE4-46DC-B141-7E70C06B1342","0x00000000002C4E97" +"673AFB43-9D79-429B-9940-F2938219F219","","TC-301","0","90","115","","3788","327F62B2-1C1A-4F3B-9496-7E7BE8CC93F7","0x00000000002C4E98" +"A01438AA-9384-4B3E-B256-30E6A5C44BE1","","AR-0176","0","15","20","","3729","27FEB799-FD68-43FB-93C5-7E7E8384637B","0x00000000002C4E99" +"78A4007F-B0AA-4597-988C-D10FA2B1F496","","AB-0197","0","225","280","","2718","EE2FC4B6-CEA1-46F4-A690-7E825AD191E5","0x00000000002C4E9A" +"26B0A487-CB8B-4767-82DE-194912CF67AF","33251","EB-508","0","356","376","","585","C16AC99A-646B-4709-9038-7E88DD713509","0x00000000002C4E9B" +"CE23A336-0B6F-48BA-B64C-98C49F60330F","191","EB-190","0","340","380","","240","9DC6244C-7F61-4BB0-8A51-7E892EBE1C52","0x00000000002C4E9C" +"BBA47012-2516-47BE-8AB6-3D433F81803A","","SV-0074","0","340","360","","3370","D8BCE034-BEAC-49D6-860C-7E9363327C51","0x00000000002C4E9D" +"5F7F229A-03B9-4EE4-BF4C-6F5CB450A23F","","SO-0215","0","5","20","","3219","625A1149-9A86-4499-AFDC-7E96F40D4A11","0x00000000002C4E9E" +"3FAE4F7F-4FB9-41CF-8E7D-0BC6AAD1EB13","","NM-21267","0","160","200","","3820","FFCC66F5-92DD-44B8-8FB2-7EC92C6A2FA5","0x00000000002C4E9F" +"FC72583A-2F30-4F70-906B-466A360A6B89","423","HS-007","0","335","365","","1216","C9E7EBF6-626A-45F6-B535-7EE63E2E439C","0x00000000002C4EA0" +"1CC8C3A2-C2BC-409E-811E-04DDF2A8BCEF","302","QU-003","0","120","200","","939","A55619B1-70D5-408E-9406-7EE6E429A5CA","0x00000000002C4EA1" +"206E56DF-7CD7-472F-B96B-6F4A7532F16A","378","EB-374","0","100","120","","434","D56E70D0-6F8E-4B8A-B430-7EEA949B3A34","0x00000000002C4EA2" +"9A913BBE-E35E-4ED1-B0A6-6D330AE7FF80","","AB-0256","0","","","","5771","106FF002-029E-43EF-9045-7EEF3D7C7FBD","0x00000000002CF3B4" +"50D898AC-B7DC-4339-9EFD-3C64E13906E8","","SV-0016","0","235","275","","3299","E39102BA-7EB7-4A13-B939-7EF2196F3601","0x00000000002C4EA3" +"7B91B0FF-A41E-44ED-9006-3CDEC0FE48D2","","NM-03403","0","10","20","","2800","5E9EABFC-1A42-4286-A2FA-7F0AC340DE3C","0x00000000002C4EA4" +"A5AFD41D-1683-4904-8F4E-6CF5EC9B9182","","SV-0019","0","250","270","","5186","D3E982C0-3748-844D-A383-7F281D13BE43","0x00000000002C4EA5" +"E6A4063C-1657-074D-9C15-78E477806D44","","WL-0261","0","780","800","PVC with 0.032"" slots","5692","AF9D98B9-85F3-3C4B-B541-7F432218EFD8","0x00000000002C4EA6" +"5895C91A-1DE0-46C8-9B82-1CED883BB18E","","AH-021","0","528","568","","1576","A78FBB75-5882-4A48-989B-7F44D9C23B40","0x00000000002C4EA7" +"565D3F00-6285-4015-9401-0770180D09F3","","QY-0405","0","20","42","","2970","A431E886-7B7F-426F-A4FC-7F45CD156933","0x00000000002C4EA8" +"DD7A91D2-6635-439A-B665-09DE991D7B08","33587","SM-0078","0","80","140","","797","D6A91FA4-E305-4745-8323-7F4604D57586","0x00000000002C4EA9" +"580B4ACE-7F35-4CDA-86E8-89E9D6898F69","132","TV-112","0","290","320","","1048","1E38B087-B066-4136-972B-7F5EB6FC0347","0x00000000002C4EAA" +"46763D47-82D7-7741-9BF3-EDF8B8A3F6B7","","PC-098","0","320","350","","5390","8089F506-7A26-574A-8A4B-7F69565A0BAE","0x00000000002C4EAB" +"582AF63C-E826-4D4C-8712-0F9A76401493","","AB-0139","0","825","1450","","2673","43FEAD53-465F-4056-B160-7F78EA7CB0F8","0x00000000002C4EAC" +"13710846-0E9B-4591-AE13-2B0DC6A833ED","","QU-179","0","432","455","","2935","F48D733E-D816-4E06-9A2A-7F7B64BD6F2B","0x00000000002C4EAD" +"D2946F22-6F90-4F48-B43A-A4BAE87BF64A","331","EB-327","0","200","220","","405","F3DA97E3-F5AE-41DA-A069-7F82F81081C4","0x00000000002C4EAE" +"0D9DA070-1377-8A49-B5AE-489940F26CCA","","PC-014","0","400","420","","5321","4F659DDE-BCB8-7F42-A46D-7F833ABE9E66","0x00000000002C4EAF" +"904CC194-5CED-4BAA-8F6D-B2F7235523A5","","AS-041","0","180","210","","1528","C08F53D2-C22D-4FFF-8EF1-7F89E5A2A587","0x00000000002C4EB0" +"093CDAAB-AD2A-44B4-B1D9-B80783155E09","","NM-01691","0","200","230","","3762","CDE3B8AD-DF13-4376-A340-7FB36456F51A","0x00000000002C4EB1" +"01DD0659-25AE-4EE1-8D1E-4E4385BFF515","409","EB-405","0","160","185","","462","85B7CE99-A1B4-4ED9-955B-7FD987396A00","0x00000000002C4EB2" +"0A1BF43C-84D2-4124-8973-3308C2132692","143","TV-123","0","180","220","","1060","F6D14B9B-5E2B-43E0-AC07-7FF8A59825E0","0x00000000002C4EB3" +"BC041CD4-B224-47B8-9B4F-4E5204ACA13A","273","EB-269","0","802","812","","328","DCC8FC1C-C78F-4775-98D6-7FF9356364C2","0x00000000002C4EB4" +"01B04DF7-D684-4D31-9216-615C57941E58","311","TV-275","0","1608","1889","","1180","826231E7-6CD7-4775-AF81-7FFD7B619DCA","0x00000000002C4EB5" +"E30D5AE2-93B9-4410-9566-064D7688FC3F","","BC-0155","0","470","760","","5128","56147CB0-264A-4A51-A432-8007EA129D8C","0x00000000002C4EB6" +"DDC35985-1905-4F63-ADE5-D7B4CC09CA07","","TB-0071","0","320","418","PVC with horizontal slots","5628","110DA55E-7454-BE4E-A0C0-80380ECBE2F6","0x00000000002C4EB7" +"B80FBEF1-B1B5-40E3-BCB9-7BA8376A3D36","","NM-26916","0","155","165","","5064","3C0F77B3-2478-46D2-B34D-803DE84AD3A2","0x00000000002C4EB8" +"557CDFBD-58E2-4A95-8E1F-6AABD2335326","","UC-0235","0","180","260","","2852","87E4AAAA-F109-40D0-B174-80464F621D49","0x00000000002C4EB9" +"DF0321D4-176F-4C53-A7CB-5BAA85FA7893","","QU-181","0","180","460","","3851","2A215B37-F52A-4D62-B9F3-8048E612189B","0x00000000002C4EBA" +"492A2701-19BD-4A61-ABAA-D6EB674C136A","","AH-052","0","429","449","","1606","A503B82A-8511-4D2C-B38F-804C70604645","0x00000000002C4EBB" +"DCD0C4EF-01BE-430A-A16F-9D254B2C6216","182","TV-162","0","140","160","","1088","5D87E033-8B2E-4DA5-ABE6-806087D6CA36","0x00000000002C4EBC" +"218913B0-6571-436E-8A79-F75E00FDC025","418","EB-413","0","1680","1690","","473","1B827C65-6B51-45AC-BC98-8069357A3FEB","0x00000000002C4EBD" +"8C3825A4-FCA1-4C6A-BE54-35C2FC8BACA0","","NM-25065","0","559","588","","3490","EFD62330-FAC0-47CE-A3AF-8076D1CCA0F9","0x00000000002C4EBE" +"5F231DB8-1D9C-470D-9C18-CD94BFFFF0F5","","SV-0105","0","225","245","","3402","A91AE567-59F1-4E20-9793-80798CABFA31","0x00000000002C4EBF" +"A872AD5A-7511-45B3-9DF1-BD754B3F67B4","","QY-0839","0","228","240","","2995","1EF3BAFB-AEFA-40B9-A845-807E2CF7F50A","0x00000000002C4EC0" +"1FF9B10A-4EEB-407B-91AF-AF12232843D7","383","EB-379","0","137","227","","439","CC3BDA31-F198-439D-8AB4-808838E952E9","0x00000000002C4EC1" +"6188B6BB-6FD3-456C-81CA-C75017676C9B","","NM-26885","0","598","603","","4934","0EDEBF9B-9B49-4F30-AFD6-8090CA9017BC","0x00000000002C4EC2" +"04E335CB-9AD8-479E-B943-61523F060AFA","155508","TB-0014","0","40","60","","1255","14E9C97A-E6CF-4558-B176-809DB3B28E37","0x00000000002C4EC3" +"4DD3FC09-5D96-4B32-850A-2A477FDA0266","","PB-0010","0","145","165","","3858","10DC3C53-3751-4A0F-B9C6-80A165A7E58E","0x00000000002C4EC4" +"1571DE4D-2EE4-4896-B1FB-A00C1A144D68","","QY-0991","0","50","85","","3000","AF2146E0-E736-44D1-B0F6-80A47C51851B","0x00000000002C4EC5" +"58DC07A5-73F3-45A7-9872-E08D93837FF5","33402","SM-0049","0","280","310","","774","EF103F7A-BB82-4F4B-986F-80A81E3EAAA0","0x00000000002C4EC6" +"5F53A7C2-BF23-4F09-AE3D-EEF2F1BBFF12","496","EB-487","0","505","985","","573","FF4810DE-A011-474C-BF74-80AD315D6693","0x00000000002C4EC7" +"39F7DCD7-1682-4972-A3C5-2D9790786757","","NM-17409","0","65","86","","2932","9BFC627C-5E9D-4492-9C1E-80C983218290","0x00000000002C4EC8" +"7A8403BA-ACE4-4209-9C86-7830852F6DBE","","UC-0211","0","420","440","","2858","8D7492F1-0E53-4AE7-9EA1-80DE7461AE86","0x00000000002C4EC9" +"B9F50D32-E81E-4F58-90AD-B1EDCDD3816F","33381","EB-670","0","380","400","","717","420B8C61-4EE3-461E-8D15-80EA6145BC52","0x00000000002C4ECA" +"B6F39461-DE7C-254C-A669-04456C45BE3B","","PC-119","0","155","195","","5411","23093375-F0A6-834D-8C97-810B052AD9CF","0x00000000002C4ECB" +"23DCBAA6-1ED7-40C8-A979-C0B6FEBAC0AB","","NM-01328","0","454","550","","3030","A722ED98-63FE-442E-B3B8-810C5517765A","0x00000000002C4ECC" +"E4BFF5B3-B3A9-4B9C-A1A5-F547E35E6F15","","NM-24573","0","100","132","","3737","34930F87-51B6-4FDF-B755-812862E98033","0x00000000002C4ECD" +"66F2617D-05A4-4182-A125-5309DC3A87FE","","NM-00872","0","30","60","","2912","77868C9B-CC9C-46CF-BAA9-81319300C99D","0x00000000002C4ECE" +"EBC6718F-2DA8-44B6-88AE-808B3DFA5DF4","","AH-055","0","440","500","","1608","B067754C-3BDA-4FC2-A006-815FEB342E4B","0x00000000002C4ECF" +"53B29DE6-3578-4E10-BA4E-647DB1FCCC3A","","NM-00471","0","15","35","","2879","2849A99C-9C9B-4857-88BF-8162EA2D9F72","0x00000000002C4ED0" +"00B6FC01-9214-4C5B-8128-1A03AA427A80","415","EB-411","0","330","350","","468","0239E469-3BC9-4B2E-9F32-816586AE7253","0x00000000002C4ED1" +"578B4FAB-E65C-437E-9CBC-C8FC7EB6DFCE","33368","EB-658","0","590","1310","","704","4F7228AC-7CB4-43EC-A035-818C81211797","0x00000000002C4ED2" +"C1BFDFF6-E10B-40C6-AEBF-F6FFF49A3405","","NM-26472","0","15","27","","3799","4457AD97-8E88-4AE3-B142-818DA4A4A4FC","0x00000000002C4ED3" +"F0DDAD0F-3E76-44D9-BA88-B5B7A6799755","343","EB-339","0","160","200","","420","FD9F91CE-8BC6-4CEC-BF8D-8192409B9BFF","0x00000000002C4ED4" +"4569CDDE-316B-4592-9DBA-303982157EFE","","NM-24937","0","410","435","","3590","7EE941C5-0157-4D71-A972-819612790C26","0x00000000002C4ED5" +"D3046381-3526-410A-9469-8AF10EB9CFEA","","NM-03340","0","135","145","","2814","9FA59BCA-4D6F-4169-B84C-819D76B0AF74","0x00000000002C4ED6" +"645F8C3B-E012-42A1-AEB8-BEFC4B3F47CC","","AH-089","0","500","540","","1776","4681A75E-8C3A-4E1E-91F7-81A2DB4DDFB4","0x00000000002C4ED7" +"B6E55E37-F846-4CF6-B4A0-AB1AFE9B3DB0","","AB-0097","0","596","1096","","2637","1847589B-0FE6-42C9-AF61-81A376A43EC6","0x00000000002C4ED8" +"D5393BC1-A821-4D54-B1EF-A5C9C1F8EEB1","98","UC-0133","0","160","180","","1332","E4CA277E-53DB-460D-B262-81B0AFF84128","0x00000000002C4ED9" +"8370B05A-0546-4C94-8406-08AA322930C9","","QY-0118","0","212","218","","2959","E10CB2CA-3A5F-4299-9067-81CC1100ABA5","0x00000000002C4EDA" +"3E8662E8-A58C-4672-A39F-BA3BACF2A090","33283","EB-579","0","180","220","","625","AFF03BDE-5B55-4E49-8AD9-81D2F3A66CAB","0x00000000002C4EDB" +"8A9DF7BB-42EE-4443-AB77-B76079AF87ED","","SA-0224","0","160","400","","2854","4E579436-3DA5-496E-A7ED-81D428345822","0x00000000002C4EDC" +"5238F6BD-31B8-4001-9BF0-E8C5F6945EB8","","TB-0319","0","140","260","","3128","D6D5545C-6931-4E49-AA22-81F4185A45D0","0x00000000002C4EDD" +"4A8EDE59-9E7E-4E11-A152-63DAC65FD9BA","51","EB-050","0","300","320","","53","5938F67F-767E-4696-AC22-81F537C65F56","0x00000000002C4EDE" +"080526FF-F09B-49E6-94B9-66E98AAE9F1B","436","HS-020","0","30","40","","1203","6AD1B0A9-F728-4839-9EA7-82010F313C5C","0x00000000002C4EDF" +"4FF7ECB3-871E-AA4A-99AD-E016F2E73060","","DE-0013","0","235","250","","5662","3E7BCE6C-DA0A-0941-90C8-820864EC44A2","0x00000000002C4EE0" +"73E14C7C-B4AD-B746-BDC4-28A4547A793B","","PC-038","0","55","95","","5342","00320FB8-105E-584D-B42C-8211D1209B2D","0x00000000002C4EE1" +"5B7A0D6A-DF33-49E8-85EB-CBFDC7163E56","366","EB-362","0","130","150","","432","38D2C4D2-33D9-4A15-89C3-821EEB6D9FA4","0x00000000002C4EE2" +"538195D4-4C22-43A9-AA97-3A9A0B45D4E7","","BC-0075","0","70","90","","5008","FCCBDAD2-6614-4814-8AF7-823083D46F35","0x00000000002C4EE3" +"5C998D57-24EB-47D3-A254-3348A643829F","78891","SM-0248","0","280","380","","846","23E3ACD8-63EA-4E6F-AC6D-823C9DD05A98","0x00000000002C4EE4" +"28596F20-DAE9-4435-B2DC-DE2805A52354","","NM-04825","0","200","540","","3871","0728C829-9D2D-4789-8E8D-824E6B4B47C8","0x00000000002C4EE5" +"13EFE8C2-8816-4A51-B785-E5BF491C1458","","AH-006","0","512","612","","1563","6CCD984C-CB16-40A1-BE5D-8256B7F54AD4","0x00000000002C4EE6" +"157C9C0D-3D8D-42BF-823C-02FDD79BB18B","61","EB-060","0","560","582","","70","ED10B933-E9DD-460C-A865-8257A19FC9B5","0x00000000002C4EE7" +"F167A4C1-8E93-4DD1-B740-A6D99DAC5BFC","","BC-0149","0","250","290","","5120","1538560D-8E37-4455-9348-8271B0276962","0x00000000002C4EE8" +"D48F5415-A672-4FC5-8AC7-EAF2F01CCD72","33284","EB-580","0","520","580","","626","EE80E0F7-A775-42FF-A11A-827B6691ED08","0x00000000002C4EE9" +"5E78B500-3798-483F-B871-9A9A6FCF841D","","NM-05797","0","110","170","","4972","0B6C40E3-BD1E-49DE-BA54-82874F0EF2BD","0x00000000002C4EEA" +"A9A53B58-6A74-4264-B44C-7F683D7CCDB2","221","EB-217","0","110","150","","276","78D6C50C-9796-4FE1-A8DC-8287DEFFCC34","0x00000000002C4EEB" +"068B4D13-F408-45DE-A912-40DEC8EDA9AF","","SV-0128","0","300","320","","3430","E5AB1314-314F-48B4-8B23-828864541B76","0x00000000002C4EEC" +"D435EF0A-602E-41E4-A759-7802FED85183","155580","TB-0117","0","240","300","","1282","A174CB94-B99B-4AAD-AC01-8297839686F0","0x00000000002C4EED" +"6D81C9B8-C75D-413F-9560-9FB0E347BBEC","","NM-25936","0","81","85","","3883","C2BAD7F3-9DDE-4B8F-870C-82B321992F02","0x00000000002C4EEE" +"D7A8E170-79C2-4E07-9BF1-99731D65CA36","","NM-08385","0","563","683","","5538","18DBE9B7-E610-434A-B03C-82BA20D4C40D","0x00000000002C4EEF" +"BB7D88F4-9265-4232-98B7-FECE7899FE1E","279","TV-245","0","80","120","","1155","C672D5A1-265C-4904-A6B7-82CC0B0C3B2B","0x00000000002C4EF0" +"A0681465-E83E-431C-B780-3E9C92F5A1D2","480","EB-475","0","350","460","","552","1A7ED8D8-5FE6-47D7-B3B7-82D6765D7049","0x00000000002C4EF1" +"657FD03F-6DAA-40FD-80CD-8EB49138B836","33299","EB-597","0","850","870","","642","8D81371F-7A7E-42D0-86F2-82DEBFE9DEB2","0x00000000002C4EF2" +"D09E2541-02D5-48A1-B6CC-72EDD01A7DCF","469","EB-464","0","440","460","","533","3FBA66BA-788C-4532-9F5A-82E13AA6D28E","0x00000000002C4EF3" +"EAA4E7DE-DD0D-4DB0-9C2A-CB17041E2DA3","82","EB-081","0","739","749","","96","0CAEEF6A-46F7-4A7E-BD34-82E94E67E130","0x00000000002C4EF4" +"AD08CA3F-348A-4AE4-A9D2-0B3535A77D37","395","QU-065","0","1128","1183","","970","38D0B8F3-E551-4A2E-AE87-83000AADD2B6","0x00000000002C4EF5" +"A25859D2-860E-4A34-A853-26A333F1C7AA","","NM-03667","0","125","240","","5425","A3C199D6-865D-404F-A5E6-8301D157D549","0x00000000002C4EF6" +"8FAC74B1-B496-44C6-A028-478246956E38","425","HS-009","0","252","598","","1212","FA5E1A3A-0391-4A6D-AE67-83128E47EDEB","0x00000000002C4EF7" +"2526A0EF-65DE-417C-BB2D-BC2C57646328","","AB-0027","0","456","1032","","2579","D167AC5B-3C3E-4D62-B9C2-8315DC45E688","0x00000000002C4EF8" +"BBFE47C2-53DD-4E8A-98A8-9DE538CF8650","33383","EB-672","0","460","480","","721","46831BC6-604C-4C8D-A922-8318A2E0C959","0x00000000002C4EF9" +"4DF72F6D-12F6-E440-9964-15E6351EEF28","","WL-0109","0","190","250","","5682","CCBC180B-9309-4148-B356-832FEDDD6281","0x00000000002C4EFA" +"C195D791-7C9C-4CBB-B5A2-E5B640FEF927","","BC-0034","0","50","60","","4958","74FC49C2-906A-438B-BCF1-83340A2DDE73","0x00000000002C4EFB" +"B1848E44-9032-4933-B766-E18BA9CAF111","","NM-00366","0","726","1008","","5530","CD7AF790-2320-4C49-9131-8340E5D04014","0x00000000002C4EFC" +"32FA11EB-BC07-41F6-8523-40A547D705DC","","AH-067","0","740","800","","1754","5E9D820A-3259-43A5-A937-83437A934D1A","0x00000000002C4EFD" +"9BC0AE3F-C733-4131-8AD9-22F8BB452315","","AB-0119","0","520","760","","2655","8BA0EEF4-5BF3-4870-B986-834FE4475E31","0x00000000002C4EFE" +"F48AE45D-4001-4333-ACF3-F150FC69138B","","SO-0243","0","8","11","","3247","061F7C9E-9DDC-4087-A13C-835C0B44679C","0x00000000002C4EFF" +"E104A58D-E669-4A8F-9B57-A76FF7BAD0EF","","NM-26901","0","137","177","","4945","194F1142-2DCC-4EB0-AF1F-837F86D55EF6","0x00000000002C4F01" +"D1D4B6D3-D05E-4419-82AC-162B6804BD2A","","AR-0184","0","23","43","","3732","85A73614-3F2E-4E8C-8025-83A66199F62E","0x00000000002C4F02" +"4292CE3B-33D9-4F54-AA03-4A45ECDFA3DD","","NM-24667","0","380","400","","3689","9E1C2484-8123-466B-87DD-83B5802BC092","0x00000000002C4F03" +"FD972766-A4B3-4098-AFCC-A5F8F0AC7DB6","","QY-0150","0","201","341","","2962","BF7C95C0-A723-4A1B-9DD3-83CFC53CD823","0x00000000002C4F04" +"99679FEF-7258-4145-A33F-316BC9377CE6","","AS-001","0","100","140","","1497","2F57289B-9ED9-48B3-84EE-83D1B8C7286F","0x00000000002C4F05" +"12AA0900-5364-4731-B1AB-704E0691D53A","","SV-0095","0","160","180","","3392","FB4664C6-50CA-4B4E-9065-83D5BBE585B1","0x00000000002C4F06" +"732ACA95-12DE-44B1-947B-EC9955172E67","155788","TB-0247","0","480","980","","1314","F7B30E05-4154-4DC7-998F-84307B58AB9E","0x00000000002C4F07" +"8E347DF6-87D9-4515-9081-195BD5882A2C","202","TV-182","0","224","244","","1101","FDE8922B-6F14-4085-B69E-8463EB7F3BB4","0x00000000002C4F08" +"22A24CD7-88EC-4160-A929-E3B567044D28","","BC-0003","0","225","245","","3887","80C5EAC1-346F-4E7F-817B-848108460D3B","0x00000000002C4F09" +"4078FB79-3EA7-4BB3-AB2D-D0046D4A5494","492","EB-483","0","750","929","","567","9AED612A-3CF8-4D7E-ADB9-84865C9F1ACD","0x00000000002C4F0A" +"C0030FBC-5B66-EE40-AFF1-5CB532BEC8A1","","WL-0140","0","220","380","","5486","EF20F5B2-2166-E04C-BFF7-84B7F2D927E8","0x00000000002C4F0B" +"7DC28D1E-F7D8-40C3-8A2D-533FF947B9BC","","SV-0010","0","220","240","","5478","0C8760B6-7F8B-7F45-AA69-84C5A6E56133","0x00000000002C4F0C" +"B39C83E5-2746-4F76-B022-FBC680122A3C","","SV-0133","0","180","200","","3439","FA8C4D04-504C-4486-A221-84CA33B0B362","0x00000000002C4F0D" +"157C9C0D-3D8D-42BF-823C-02FDD79BB18B","61","EB-060","0","603","619","","71","7F14A33E-01BC-44D8-AE53-84FBB6EB27D0","0x00000000002C4F0E" +"605850BB-3EC1-4731-9B23-1B64A4A3DC49","33508","SM-0064","0","130","150","","785","16A00889-B812-43EA-B630-84FBDB4B4D56","0x00000000002C4F0F" +"2C1F581B-D7F0-432A-AC2B-17B28CD0A09C","","NM-24965","0","380","395","","3583","E2640C95-E2BA-40FF-AE8A-850C6C732A82","0x00000000002C4F10" +"2ED113F6-D37A-4530-AE43-EA0379CB1F9D","17","EB-016","0","280","320","","24","5DF0A4C6-A4DF-415D-9AB8-851ABFFB2ED1","0x00000000002C4F11" +"87206A23-6647-4EF5-B1CF-BD33F58C585B","446","SA-0161","0","590","675","","868","50924B2F-C3BC-4DF9-916E-8531FD86B882","0x00000000002C4F12" +"D21F711D-1784-4496-8425-5170CB8064E1","487","EB-478","0","386","396","","555","CBC87FC3-1BC0-4F55-AA20-853856EA3FEB","0x00000000002C4F13" +"9A4DC3AF-8E89-4CC0-8A80-321118C8E2B0","","AB-0192","0","1525","1795","","2714","2C45818C-4713-451B-90F3-8538C7A65251","0x00000000002C4F14" +"E9CA46EB-8A83-4498-9870-050358FBD316","475","EB-470","0","630","650","","546","AC0707E2-4E08-4C7A-B5ED-854337701BB3","0x00000000002C4F15" +"D879F295-61C1-4D07-95E9-61C60175CF5D","","NM-26957","0","69","92","","5288","3EA5C9F1-8492-AC4D-8FD1-8548F38716C7","0x00000000002C4F16" +"7F501926-259E-4C21-B53A-FBA2D231E21F","","AR-0069","0","14","28","","3011","24129962-C696-43B6-9604-8578DDC18E58","0x00000000002C4F17" +"4117662C-DFCB-4B9D-8F15-8EEF421645D4","33302","EB-600","0","941","951","","649","D9766878-84EA-437A-AAC8-8585363DA62C","0x00000000002C4F18" +"5776C29D-EBD5-4149-BA60-A5C49731FF25","155789","TB-0248","0","480","980","","1315","B1ACFAF4-539D-4314-B6EC-8585FABF76A3","0x00000000002C4F19" +"B885AFDD-2C2D-4CBD-9AB6-4CC26089F205","","NM-24705","0","354","364","","3675","FC9230B3-03B0-4FDF-A575-859628D9320F","0x00000000002C4F1A" +"00955B9A-2D64-49FD-B3CE-4FE5E80C5CD0","","UC-0227","0","140","160","","2845","AF61469D-F8EE-4708-B1A2-85AFC77992DA","0x00000000002C4F1B" +"B422E97F-6864-4966-B293-F2DD9C72073F","","AB-0185","0","1116","1429","","2709","3BEF685F-92BA-45A3-AF32-85B2054E5CBA","0x00000000002C4F1C" +"D464660B-77AD-4868-9FF7-665D1E4DB39F","","NM-26711","0","599","1146","","3804","14A03ECE-49E5-4B54-BDED-85CBA91D31AA","0x00000000002C4F1D" +"AF5A14F8-153B-4E15-9680-38E2FB7B346E","","WL-0026","0","400","550","","3861","B4BA13AC-4E16-4AD2-A56A-85CD2BCC3C59","0x00000000002C4F1E" +"87187352-3AFA-48C2-A0EF-72C5A2470918","","AH-008","0","120","180","","1565","C49D8ED9-E258-4A72-B502-85CD2F188957","0x00000000002C4F1F" +"2F46A26D-353A-4BA3-B1A5-89356DB34701","11","EB-010","0","180","203","","19","8BE26A24-861C-49DB-8E8B-85E57F2EFDED","0x00000000002C4F20" +"42B2794D-CAA9-4E1A-AABD-A619806D4D8F","","AB-0248","0","32","33","","5756","D4A94101-6D30-4750-95E3-85F0906955E5","0x00000000002CF387" +"0E4E81EE-08E4-473E-8935-4DA7798F6FB3","","BC-0246","0","170","190","","3537","6616CACC-C866-4480-861B-86097A3C5558","0x00000000002C4F21" +"62B26ACD-52A6-4BE8-ACB4-84E866C80CC1","","NM-01461","0","377","379","","3058","568F0B5D-88E4-434D-B508-860D0D94D208","0x00000000002C4F22" +"FC72583A-2F30-4F70-906B-466A360A6B89","423","HS-007","0","230","250","","1214","1E04BD26-B77C-4DC8-AD9F-86144DE541EB","0x00000000002C4F23" +"E6D8B039-472A-4784-93A4-4E6B2F610AF1","","BC-0223","0","280","320","","3522","CAF267B1-FF18-42D1-B8CD-8631EADDD7FB","0x00000000002C4F24" +"5887722F-5099-4C78-9D66-65651DD6039A","315","EB-311","0","100","120","","388","EEC61123-ADAE-4B6F-B9C0-8664613B45A3","0x00000000002C4F25" +"6183F8AC-7240-4A2B-8F33-617FF2C1BF49","","BC-0192","0","200","300","","5163","20593192-F699-4C99-B7FE-866F856B8432","0x00000000002C4F26" +"DC9EF528-93E1-461D-B6C6-F5DEED8EB51E","","AH-066","0","160","180","","1753","A98066B1-608F-47DC-93E5-86C786F6AECC","0x00000000002C4F27" +"1BA32651-4323-4F72-BCDC-0D3646169F1D","","NM-20960","0","11.5","21.5","","3812","C77BD996-343B-4E2A-8F22-870F2D01278B","0x00000000002C4F28" +"669357D8-A886-4FAF-AED5-B89708CFA31A","","AB-0175","0","135","145","","2699","38FA5F59-FC64-484F-A030-872085A1D477","0x00000000002C4F29" +"B9CCAF2F-3933-4CDB-B992-5EEAF524BE34","","QY-0622","0","0","109","","2984","71B47F5F-A90E-4F18-9321-872634E2F53F","0x00000000002C4F2A" +"9B5E7014-4341-4805-A71D-1AF5B9A4523E","","SO-0174","0","44","49","","3172","EF8176CB-BD95-4777-9997-87378BDEAA83","0x00000000002C4F2B" +"7704DAEF-7582-4EE2-9BDD-2F3D362184AB","","BC-0093","0","232","252","","5029","300024B6-0E03-48EB-81D5-873AA8B544B1","0x00000000002C4F2C" +"2EBBB4C6-787F-4972-81A6-B09AB34CCF46","","AS-012","0","169","408","","1507","A8E2FD34-E1BC-4A0F-A301-876241DE7C78","0x00000000002C4F2D" +"3130968B-A26F-49E5-8B24-EDB74EDFC517","269","EB-265","0","274","284","","324","15392E41-11F4-4A06-B05A-877E5AA775FA","0x00000000002C4F2E" +"29353BBC-0A59-4651-9F44-0FD0045C7B7E","","NM-26500","0","25","35","","3800","FFC8B683-7BC4-4B85-A1F9-877EE2BFB389","0x00000000002C4F2F" +"AF2190C0-A047-42F0-A6C5-78A8337970CE","","AB-0080","0","148","158","","2621","ED3F7DC0-269A-4E52-B997-878049B49AEE","0x00000000002C4F30" +"AE88B616-FEFF-4D56-83DD-5712504C154A","46","EB-045","0","200","440","","49","C5DBCC08-1A60-42CA-81D9-87824629FB96","0x00000000002C4F31" +"9347C86B-7326-4C39-AF22-17BBEEEED52D","","AS-045","0","200","280","","1532","4A890B06-05B1-4F12-AE1B-87981B21B8AD","0x00000000002C4F32" +"D352D694-0695-437B-8180-3E602C59E9F5","","TC-259","0","82","161","","2132","74F22ABE-D199-4E55-8810-87DB4B111881","0x00000000002C4F33" +"911A30E2-8766-4F10-9B77-C758AB6F473F","","BC-0061","0","205","245","","4993","F99FCACC-7BB0-40D8-9485-87EA0BB5C9F5","0x00000000002C4F34" +"24184C9C-DD10-4E87-8EFC-B510D1BB8983","33276","EB-573","0","260","373","","615","0077468A-4D29-442A-897D-8825788A83C4","0x00000000002C4F35" +"CB14F3D3-E7A3-4AA3-95EE-BA391C84D041","336","MG-008","0","150","190","","904","77E9C975-C13A-40B6-99DE-8832E93D4DED","0x00000000002C4F36" +"46359644-D5E6-424C-9C86-0CA37E69D1C7","","BC-0127","0","220","240","","5108","A8A35B37-EC8F-4078-8B5D-883C361C1773","0x00000000002C4F37" +"5927EB0B-0153-434D-800A-2AA46440D468","390","EB-386","0","460","800","","443","967AF354-DEEA-47E5-A6BE-883E749A75F7","0x00000000002C4F38" +"17476049-2AB6-4012-B889-D62494428F93","","NM-21353","0","130","135","","3829","60A3E6BA-98BC-48FA-B4AC-8852E73E4BC4","0x00000000002C4F39" +"414FD68A-E4B8-4B48-8664-591B7AFA6E8A","361","MG-033","0","218","238","","923","1E5C3996-CDC6-4056-9335-8858FDBA5611","0x00000000002C4F3A" +"39320C48-993F-F74B-A5ED-0F9D983C3DE7","","DE-0016","0","680","700","","5655","76EB17B8-869D-FA48-841F-885F3B422223","0x00000000002C4F3B" +"38824EEF-A2F1-429E-8186-119F8815F881","272","EB-268","0","1850","1860","","327","81CDF760-9757-4A97-BD82-886BC3B94A99","0x00000000002C4F3C" +"33FD3C80-7BE8-417F-998A-3B48C7E199B5","","NM-24360","0","131","138","","3446","8EA9B9F7-64D1-4DBD-94F0-886E756271DA","0x00000000002C4F3D" +"F1E81124-2A22-411B-84D6-43844F662175","","NM-09605","0","190","200","","5565","174C8EA9-EE26-AB47-8352-8880E094232C","0x00000000002C4F3E" +"B54CCEDC-BFFB-4906-A3CE-17D9A3F91BC9","498","EB-489","0","400","980","","577","67903E1E-04F4-47BC-A8F1-88899B9F3659","0x00000000002C4F3F" +"C6AC0358-C631-4353-A9C3-ED396443A4A2","","NM-24597","0","40","125","","3717","5C238CA8-2EEE-4878-92F2-888FB15DDE2D","0x00000000002C4F40" +"10A1F7CC-7A47-497C-911C-89B7D1C4D368","","SV-0106","0","210","240","","3403","05D3DF37-000B-4851-A993-88AAF8B920BA","0x00000000002C4F41" +"153BA254-9F5A-4DF6-95E4-0EB4060A549C","","AH-044","0","110","150","","1598","166C9638-D378-40B2-8F9B-88CB56EAB3C3","0x00000000002C4F42" +"BAF89B3C-F39E-405F-8FB4-3E37E88E8618","","SV-0003","0","205","225","","3288","F26098EB-49B4-4D2A-A250-88F3D27436A3","0x00000000002C4F43" +"760C6D70-D36A-4B86-BDC8-AB2D5E4369AE","33395","SM-0042","0","100","140","","770","7C99F098-9DF5-45E1-836D-891477D8207A","0x00000000002C4F44" +"41ED2197-D4F7-9847-849E-0F879FCEA35B","","WL-0247","0","340","400","","5676","DAC285F9-6EFD-244F-9CFB-89437AF94E70","0x00000000002C4F45" +"9C54ACFD-C83D-413B-80D7-8E00C5F62EC4","","NM-24658","0","228","253","","3694","CDCD219B-A220-4974-9DB0-8947FC542478","0x00000000002C4F46" +"DAAFC632-9B77-48B2-A1E0-7FA5A9362691","","NM-26895","0","385","425","","4941","CAD640EB-E815-4534-A987-896999DB3BE7","0x00000000002C4F47" +"11C983C1-4D15-4E28-87AE-175E9EB671B8","","AS-052","0","270","400","","1540","467E194C-088A-44CC-B319-89747C7A2D9C","0x00000000002C4F48" +"7F9A11C9-1C53-43C7-BE4C-4DDA2CD54455","","SV-0086","0","130","150","","3380","97297108-28C9-40FD-A4EB-897DA4BB6EC3","0x00000000002C4F49" +"22A54072-B8C6-4F65-9778-A8F87CF1ED7C","","NM-00765","0","120","200","","2901","E5D72BC9-F4CB-44CC-9039-89A385D4F60B","0x00000000002C4F4A" +"B66A2588-7481-4D88-B18D-1E8405E2C913","","TV-161","0","60","120","","3017","82217F99-F751-4241-82B9-89A5974B2A1D","0x00000000002C4F4B" +"7CBB2A42-EFAF-4E72-AEBC-E1D00F708FC6","33697","SM-0172","0","250","320","","824","5083285C-CDBB-41EB-8AD6-89AE75106FDE","0x00000000002C4F4C" +"57A75064-A07E-4055-89C4-FDD730999183","90","EB-089","0","258","515","","108","1EB5A8E4-55C0-4D58-BBFE-89B2EE234CB7","0x00000000002C4F4D" +"F3C7C4FE-E42A-4547-8DF7-D1104F2BE210","336","EB-332","0","80","140","","412","F55611EE-F91F-47FF-AEC8-89D560C84CB0","0x00000000002C4F4E" +"2161E7F3-B426-4A0C-9CFE-603E68D8A2BC","","NM-01917","0","160","205","","5577","216214BE-56D1-BF47-B72B-89DB65AE0502","0x00000000002C4F4F" +"5EA1AF4F-A296-954F-A35E-A219EF77C4A6","","PC-035","0","370","410","","5423","BE73774D-9AF2-1542-A308-89ED364DB3CC","0x00000000002C4F50" +"C84F4559-3CDD-4482-939E-DA772BBA3FDA","","SO-0229","0","44","49","","3233","7D464D30-B0AF-4606-9B02-8A047E0B4E21","0x00000000002C4F51" +"5EE0224C-D546-7847-87F4-7821DF2AD28A","","WL-0229","0","770","1230","","5647","1F67A973-2F71-264A-99BC-8A2C656B3780","0x00000000002C4F52" +"30C6A679-8324-4CCD-9D4D-625A1FA42D37","","AB-0179","0","1634","1639","","2703","05155D40-1C2E-458E-818A-8A3C4D6B0172","0x00000000002C4F53" +"CDD44303-21C8-4136-A754-9C4F5F43C7E4","","SV-0087","0","220","240","","3381","F94DB340-430A-464F-B422-8A534E6D2825","0x00000000002C4F54" +"91AB2694-5B87-4438-895F-0B02485D4C62","","NM-08149","0","192","220","","5537","71242CBC-0E09-F74A-953D-8A5F4AB7797B","0x00000000002C4F55" +"18407E5A-C952-4E44-98DA-B8E209BD2259","","AH-103","0","450","490","","1790","AB94B37E-9D5F-46F7-A71B-8A63AB93D2BC","0x00000000002C4F56" +"0FB03DDC-ACFD-4F75-84C3-624099D53FAD","","BC-0112","0","160","200","","5046","F3906A20-6CE8-4DB9-B958-8AA3554EC8F3","0x00000000002C4F57" +"CD197744-7CBB-4061-9C1B-10A1891DD8CD","","AB-0247","0","23","66","","5752","8289E5D2-FF19-4EAB-B5CB-8AB17D234D5A","0x00000000002CF381" +"5F54227B-F13A-4CE0-BDA2-992670C8500A","","NM-21390","0","170","250","","3835","F66FB6ED-A044-4BEC-A98D-8AB513A48314","0x00000000002C4F58" +"87D69615-1091-4C8D-9AD5-DB0149DC9A58","474","EB-469","0","380","480","","543","CD6CCE58-290F-44CB-B390-8ABCB844439E","0x00000000002C4F59" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","","EB-692","0","471","484","","5460","46446C0A-C259-5745-88E1-8ACAEF56CB6D","0x00000000002C4F5A" +"0ED82E55-13D0-4C0F-827A-604509111BA8","","BC-0085","0","60","97","","5023","F33066C9-3C32-4422-865F-8B0912932A82","0x00000000002C4F5B" +"D5F7016E-B095-4FFB-A28C-905E044175BA","","AB-0015","0","640","660","","2570","0B757693-A1AC-4F8C-BEE4-8B231C3B30AE","0x00000000002C4F5C" +"F82EEE0A-6C6D-4ED5-9187-F9ED0E6A8B69","","NM-21170","0","420","435","","3818","1944FD62-827B-49BC-9E2D-8B25DBB370C5","0x00000000002C4F5D" +"D45381A2-CC73-4D6E-A82A-3AEC9D07DAC3","","SO-0140","0","4","19","","3138","64387171-0A99-4403-9F1A-8B431BDA021D","0x00000000002C4F5E" +"E80831EF-D5F1-4C02-BCF2-AD7D769C4A7E","","BC-0236","0","290","310","","3532","FD796DBA-80C2-4F77-BECB-8B58F85FD4F6","0x00000000002C4F5F" +"03455212-26E0-4DC0-AC76-5441F8CC4F86","","SV-0109","0","250","270","","5196","51CEFF2D-A648-3B43-9A8C-8B69EFF8A6D6","0x00000000002C4F60" +"783AF6F5-C2C5-4D6C-899F-7BB96C6878C9","36","EB-035","0","100","380","","36","5272CBFC-496B-4D99-B439-8B7B70F51DC5","0x00000000002C4F61" +"126FBE5A-376F-4965-BDDD-CD6CCA7D9D54","","BC-0068","0","260","340","","5002","6778F5E9-C4BB-4CD1-9DB6-8BE004F8485E","0x00000000002C4F62" +"811C768B-B682-4683-BAC7-277FF0184C47","","BC-0260","0","345","365","","3548","C4DA7F34-3ACB-42A1-8A3E-8C022E7CDEB4","0x00000000002C4F63" +"F162D6AB-BF4A-0947-9228-963552B72F04","","WL-0139","0","115","135","","5634","D3F5669F-ABFE-2446-9BD1-8C18CB2ABBBD","0x00000000002C4F64" +"EC063552-924C-44E2-8DD0-86643708EC8C","87","EB-086","0","644","665","","106","11F865A6-61A0-44C5-9585-8C19DC6C01D6","0x00000000002C4F65" +"DEC28802-A6DD-489B-8642-CE44E7E5E656","","AR-0121","0","24","29","","3082","15508BC2-3C69-4008-89AE-8C2EFD215C03","0x00000000002C4F66" +"E7BABCDF-E970-44A1-A8F3-EA5C18C0B3E6","","NM-01372","0","140","160","","3036","134870F8-652C-4097-8FDC-8C2FEDCEC4C6","0x00000000002C4F67" +"57869DDB-FFC6-47DD-90BD-84DE9354DABC","","NM-24686","0","125","165","","3680","9CAAFC68-F4E0-4F22-9E51-8C3E7223ED57","0x00000000002C4F68" +"AC35FD24-A282-458E-8B40-7F6B683C1B45","","WL-0008","0","632","910","","3795","79A6D15C-CB80-448F-A665-8C4496B75D6C","0x00000000002C4F69" +"C00374D9-D136-4734-8DDF-EBC69BA3CD9B","","NM-25250","0","56","66","","3448","23627EEB-97EA-4F27-B502-8C60CF3444B8","0x00000000002C4F6A" +"3724A594-1E85-43D5-807A-A9729AED0A0E","","AB-0163","0","560","760","","2691","CA18888B-0844-4EAA-91B7-8C7A8B706C3B","0x00000000002C4F6B" +"000C2EF3-B792-420C-B490-CB97124C634B","","SV-0013","0","260","280","","5176","7D9F6D50-1FB0-8242-ADA9-8C920C23C224","0x00000000002C4F6C" +"82717611-4ED4-4461-9D65-7C80EC3D8FC0","488","EB-479","0","234","274","","559","3A877DE5-3072-4463-9573-8C9925F06E4E","0x00000000002C4F6D" +"A7471B66-C443-BC4F-8D8E-6FD9F0FDE86B","","PC-050","0","280","300","","5352","5FF34AE0-0396-7B42-AAE8-8CB18CBD2A0F","0x00000000002C4F6E" +"1411CEEA-255B-4B5F-9655-0CC54C741FB5","100","UC-0135","0","235","275","","1329","42D55319-2B3F-4ED4-AC07-8CBF5FBF72F4","0x00000000002C4F6F" +"903DD4D1-EBA1-4B2E-88E3-ED3F4D6A2D3C","64","EB-063","0","300","340","","75","6B78397B-6CFB-4BDE-B49F-8CD8EB28C667","0x00000000002C4F70" +"463D1CBC-064B-4DBE-9DD0-DDE4F1DE0AEB","313","EB-309","0","120","280","","383","78A07174-5A31-4999-91AF-8CDA39EAA324","0x00000000002C4F71" +"F413B3F2-9F9E-4EE4-887C-44576356E460","","BC-0259","0","300","305","","3547","80BF298E-8556-4DCB-8658-8D07271E5B5F","0x00000000002C4F72" +"D01E9EE9-E1E8-4E7D-B293-398B8AA8D1C4","","SO-0202","0","3","18","","3206","04019BBE-ACE7-4F10-BAD1-8D0AFA8DEC8C","0x00000000002C4F73" +"438328BA-00FB-41CB-A6CD-BBB10E56D99F","418","QU-083","0","212","222","","984","C4E39DC6-4F22-4433-8D46-8D2122D6F44E","0x00000000002C4F74" +"A16601B1-9811-447C-92B3-449F22CABBF5","","NM-25154","0","277","302","","3456","63AD0F7B-D173-4089-B1AF-8D22A32D07D9","0x00000000002C4F75" +"08718909-CB60-42F1-9497-0F9BF9527430","142","EB-141","0","25.350000381469727","35","","175","BB66669D-D280-4AC4-8154-8D30EE41D6F6","0x00000000002C4F76" +"0E60F36E-AE8F-436E-B622-331EF968A41F","","NM-24975","0","217","238","","3577","F8BA4250-2424-49DE-8926-8D38F75C18FB","0x00000000002C4F77" +"504F73B4-2337-4BA9-A229-8109C06B18B0","","NM-24926","0","195","215","","3593","A17CC0D6-B9BB-4773-91AA-8D43714637DA","0x00000000002C4F78" +"CB6F7650-0636-4974-9745-CC3FB1FE97A2","","TC-261","0","153","173","","2134","94F65E43-1AC8-4BAB-BF3E-8D496784D668","0x00000000002C4F79" +"E0962A59-F023-47AC-B3B5-C4F508D8120F","379","EB-375","0","300","500","","436","142EE7FE-37E9-4E56-AF9E-8DBE55B846DE","0x00000000002C4F7A" +"57E7D507-44CB-46CD-8787-69F356DDEC32","","BC-0264","0","380","400","","3552","4C5503FE-9696-41BC-8479-8DC35B6905D6","0x00000000002C4F7B" +"189E1AAD-6968-464F-BC0E-BD6CCE2033E6","","SO-0209","0","46","75","","3213","1D3537CD-F082-4667-9B43-8DC8E951584C","0x00000000002C4F7C" +"0AF1C8F4-E74C-4C08-B3BB-EC2932D2AEE6","218","EB-214","0","160","205","","273","1676C8FB-3CAA-441B-BC0B-8DDC02ED2092","0x00000000002C4F7D" +"99218CFB-8C26-4396-8EC7-B8807A8DC5DC","303","QU-004","0","135","160","","945","9A0C756D-B181-4001-9087-8E029E9C8ABC","0x00000000002C4F7E" +"FC525CD4-05B7-43D3-A391-3A449E3AE0A0","123","TV-103","0","790","890","","1037","74A0E840-787D-4849-9C71-8E22BAE37946","0x00000000002C4F7F" +"6EA7707B-FE6A-48E1-A85E-1609030F9D2C","54","EB-053","0","300","320","","61","7D10FC03-9CA3-450B-B3C2-8E22DB8D42B4","0x00000000002C4F80" +"5CA6E7C8-5BEF-4310-8895-E0B54AC41C75","349","MG-021","0","235","295","","915","46939D9D-7798-4B31-8435-8E24A31DBE6A","0x00000000002C4F81" +"D8B4BFA9-8D41-4FD1-8AD3-6F82AD46550E","437","HS-021","0","30","40","","1200","FC182E10-D977-43B9-9B91-8E2CD9CBFC4C","0x00000000002C4F82" +"E7B97662-F011-4AA9-BEA8-E3C303901D84","","BC-0250","0","120","140","","3541","E53BA6AB-BE22-49E6-8CAC-8E2D1452BD23","0x00000000002C4F83" +"2E6083D6-531E-4641-9BDB-EEE193C6192C","111","EB-110","0","560","580","","140","75F98A6A-9257-4A7D-9F7A-8E4FD019A6B6","0x00000000002C4F84" +"9C8257EF-490B-4A19-8D18-11311700A3F2","205","EB-204","0","80","100","","267","24368157-8792-435A-A962-8E594E7AD800","0x00000000002C4F85" +"C896872D-A0F8-4185-B8A6-3984D8291276","","NM-25100","0","416","420","","3480","832CD1D4-699B-4176-BAE3-8E771534484B","0x00000000002C4F86" +"FEC4574A-FC18-49BF-AD99-49BD1EF380B2","295","EB-291","0","640","682","","364","04B463FB-9037-4A9B-BCAB-8E82BB6E5A6D","0x00000000002C4F87" +"86D26D7A-547B-4878-9B86-C1EB5AC9C499","","NM-26946","0","220","265","","5086","CBCA63B0-4FB3-436C-982F-8EAB882FE518","0x00000000002C4F88" +"65ECA8A9-7751-4934-A14E-D44FD8E2E6FB","49","EB-048","0","233","248","","52","4C05B81F-41B7-4ABE-A40F-8EAD46406EE9","0x00000000002C4F89" +"03D0079C-2473-40A2-8B33-752705AE0173","","SO-0241","0","4","19","","3245","5643E3DC-7426-43A0-BC42-8EB9EE91F90F","0x00000000002C4F8A" +"4078FB79-3EA7-4BB3-AB2D-D0046D4A5494","492","EB-483","0","287","304","","565","1911BE25-FA5D-4EED-B7D6-8EC9538B4779","0x00000000002C4F8B" +"8FF40080-AAD9-4D33-860D-19AC9F64C256","","NM-26713","0","190","200","","3806","5FC792F4-6A68-4F7D-AEBB-8EE98B1964B3","0x00000000002C4F8C" +"FB133177-C652-4B54-B78E-0682572F4494","","BC-0023","0","45","85","","3919","FFCEE57B-C2C1-4B94-9163-8EECDB7356E2","0x00000000002C4F8D" +"02D4CC66-3B9B-475B-B2F8-095D6D1945EB","","NM-01254","0","600","601","","3071","E76E3E0F-9C44-4ED1-A0B7-8F249A01F588","0x00000000002C4F8E" +"A619C762-AFC7-4B57-ACF0-82691906F797","242","EB-238","0","223","254","","294","CA727DCE-119A-4C33-8684-8F259FB501EC","0x00000000002C4F8F" +"1CA2FC37-9609-44ED-BF61-4D76DAC76883","","NM-04327","0","56","116","","3110","FDAEE9BC-7436-4D0B-91AD-8F25BD684122","0x00000000002C4F90" +"0918001F-F0E5-6E4F-A67A-6E57D313702B","","WL-0291","0","180","315","","5742","87932842-5888-7041-89CF-8F2EE7AB9471","0x00000000002C4F91" +"5B488110-6504-4240-9B46-A6EEF752B8DA","","NM-02351","0","125","272","","5604","683CB545-56C0-FA4F-B16D-8F4F383D3E26","0x00000000002C4F92" +"AC3F96A7-DA7F-A54C-8768-6366FF78D9C0","","PC-074","0","580","620","","5374","207854F1-4896-F14B-9BA2-8F5E1152F0D5","0x00000000002C4F93" +"1707268A-AB75-4347-A177-86D2C73F1A92","314","EB-310","0","247","267","","385","1B8FB6E7-18FD-4253-8AEA-8F82497C3B26","0x00000000002C4F94" +"5D92A138-1763-40DA-BFE7-9FE66F765EA7","","SV-0064","0","325","365","","3364","85E98B27-D697-409E-8CF8-8FA62D7BFA32","0x00000000002C4F95" +"0205DFEC-B828-4DFD-8D49-1AEAFF60C0B3","261","TV-232","0","40","50","","1142","E7D7E282-8494-4CEE-AD84-8FB2CA94C1DA","0x00000000002C4F96" +"737F3D89-07E0-43A7-A652-23FEB9C56B1A","","BC-0120","0","580","600","","5052","CDE0924B-27EA-4326-8BAE-8FB7C33387F0","0x00000000002C4F97" +"BBADB9EA-3848-4C99-902E-2223A12CF5CC","","AB-0068","0","349","354","","2611","3D787C56-D1C9-4598-8F91-8FC33DB8224B","0x00000000002C4F98" +"C2F4FC4E-F689-4653-8997-093A7935FD68","","NM-26897","0","500","560","","4943","1DBFB5DA-1954-4889-BD83-8FCFCC31EF51","0x00000000002C4F99" +"979DAA86-4887-43E6-BE14-A9F12F33205C","33680","SM-0154","0","195","255","","821","31E73834-C366-420F-8A20-8FEE8D994125","0x00000000002C4F9A" +"EA7E5EC9-CD5D-4EA2-9452-07C46806FD13","372","EB-368","0","460","500","","253","C26F6A75-DC2C-460D-99FC-8FF5B56DAB7F","0x00000000002C4F9B" +"9BE57695-27F6-4370-8EDA-328E19FD1AA3","","AH-009","0","80","107","","1566","BFBEFD76-247A-4C72-B2FF-8FFB2B9F3781","0x00000000002C4F9C" +"AD37EBE4-89F0-40CC-90D8-BB43CA99C1EC","","AB-0214","0","244","249","","2734","DEECE22B-D5BB-4F22-8482-8FFC23ACE7BA","0x00000000002C4F9D" +"C8E96D55-EF54-5D40-A4E4-3FCCDC25BE36","","WL-0262","0","496","516","","5694","F10430E1-E1E9-B445-AEB8-9005918B8FD3","0x00000000002C4F9E" +"C8A69133-BA97-434F-BDAA-87B87D642A6C","","AH-022","0","320","380","","1577","25460417-0ACF-4D9E-AB0C-900E53980F11","0x00000000002C4F9F" +"19F9E43E-3988-40EC-B7AA-3BDD0CBD67F7","33666","SM-0141","0","560","580","","814","A1558157-EEA6-48A0-AB97-901CDA25DFF7","0x00000000002C4FA0" +"2F71CC2F-03AD-4F09-9341-26B6185C6144","236","TV-216","0","360","420","","1125","6E2F55BE-5CFB-4812-9EF9-901F9979950C","0x00000000002C4FA1" +"ABB96A2A-997B-42EA-9967-9172B053E937","","NM-26949","0","645","685","","5089","73B6E00F-9A95-45D8-AFF2-9027E3984FE8","0x00000000002C4FA2" +"31C40BCA-D622-41C6-890C-21A23F10DE26","530","QU-143","0","58","63","","1016","414CA653-D621-4E5C-BFD6-902D8216EBFB","0x00000000002C4FA3" +"8639BF32-99B2-49C8-AA57-767DAD1FEC85","309","EB-305","0","20","40","","379","7F95BB22-35B9-4B23-9506-9037EFA2A30E","0x00000000002C4FA4" +"53DE0B95-0141-48F8-AF87-2E6498D2C402","","NM-24620","0","310","324","","3712","878E19E2-9352-45BE-8A3C-903DB3F01DE8","0x00000000002C4FA5" +"702887AA-69D2-4B4D-BF22-272C881F6327","212","TV-192","0","190","240","","1110","2E000E3B-5356-4A12-9CBB-90971D162F2A","0x00000000002C4FA6" +"98C36368-835B-4A5C-9D09-2233DB18CC10","","NM-21367","0","485","525","","3831","5CB0E0C3-6685-47B3-B234-909AE347BF0F","0x00000000002C4FA7" +"88C350D4-305F-4B92-BBA8-918349DF0214","331","MG-003","0","510","650","","901","732A1096-AD73-4F0F-822E-90B4FE7F50E8","0x00000000002C4FA8" +"D4D03CCB-0FA6-41E8-AA61-6D9610FE4B9F","313","JM-014","0","70","150","","893","1F619EFC-BBB5-4844-9A13-90BA72D0C759","0x00000000002C4FA9" +"1E1356DE-B861-4CD2-B09A-C3158FC1E121","121","EB-120","0","574","600","","154","A9502A3D-5AC2-4644-8197-90E387155CB9","0x00000000002C4FAA" +"90EAAB5D-E5DB-473D-AFE1-FACA4494BA6E","320","EB-316","0","160","180","","391","BF2ABB1A-97D5-4AE2-93D0-90ECD85FF3BC","0x00000000002C4FAB" +"99F0EFD1-E6D7-4A99-AAAD-276E94FDF63C","","SV-0026","0","105","125","","3317","4C05636B-FB12-4097-A140-91034BA0D7F3","0x00000000002C4FAC" +"FB676CAE-CE18-40E1-9900-06AC119F6A25","","NM-03423","0","135","145","","2806","0705063D-CEE5-4C5E-B849-910C3E15A1B2","0x00000000002C4FAD" +"6287FA95-DFBB-4D8C-AA64-EEA7972C4008","","AB-0167","0","730","750","","2694","02B2893A-497A-4C32-8F83-912EA0C51473","0x00000000002C4FAE" +"38C01BA9-113E-4FEE-A728-745F23DA7976","148","EB-147","0","140","155","","181","91D0FD34-24B1-467E-9538-9145D4AAAD5B","0x00000000002C4FAF" +"15880831-CAA4-4CE2-8B8C-8F56C26A4D2F","","BC-0226","0","460","500","","3524","C4BA4A6D-2564-40A7-B70E-91583B1C5446","0x00000000002C4FB0" +"D99A5068-F59E-4C9D-96A0-D00C23073112","","AB-0122","0","1515","1520","","2658","F847A77B-1622-45D0-9E1E-915CD6049CCD","0x00000000002C4FB1" +"A7263075-B048-4818-A530-7832E1A85966","136","TV-116","0","160","200","","1054","25C1314C-F33D-4007-BA8D-91636EC1352A","0x00000000002C4FB2" +"CD197744-7CBB-4061-9C1B-10A1891DD8CD","","AB-0247","0","0","10","","5753","DBFD69CF-1F3C-4DFA-BE2D-9168DA6F8C45","0x00000000002CF382" +"CF45E783-3D63-4A62-B8D4-0DD01D7D396E","529","SA-0301","0","134","150","","880","29EBD062-7D27-419F-A619-917EE6F387C4","0x00000000002C4FB3" +"0F805A02-E80A-4C6A-8FF7-107856B148CD","122","EB-121","0","567","586","","156","A6255CA8-589C-4AD6-97E1-919AC55A7503","0x00000000002C4FB4" +"BF63CBE6-1B60-40A2-9E6C-DF7FB3A3789A","110","EB-109","0","570","590","","138","348E842E-691A-4E4C-B372-91B222B4C9EB","0x00000000002C4FB5" +"0C5CC69E-1D1E-6941-8784-89493001BD07","","WL-0263","0","2","800","","5713","B98CDCCC-9228-8E41-A31E-91B85BC534B0","0x00000000002C4FB6" +"982AF778-B3AA-428C-B839-D9DF98B81D59","553","GT-001","0","417","517","","1334","402C7D99-E7B8-4871-9A61-91CDCCE1FE49","0x00000000002C4FB7" +"35FE8153-0E52-C142-A781-54019F0BCD86","","PC-033","0","58","70","","5338","614D426C-994B-4C4E-B73E-91E236E8FDBE","0x00000000002C4FB8" +"EAA4E7DE-DD0D-4DB0-9C2A-CB17041E2DA3","82","EB-081","0","685","695","","95","DC232D93-4651-4FFB-9A0A-91F6F5F1FAAE","0x00000000002C4FB9" +"E53AEB8C-9FC9-4ADE-B14E-897D0CF91225","","NM-25053","0","708.25","718.25","","3493","2BB16A51-4B55-4F72-B653-92122049A8F7","0x00000000002C4FBA" +"EEA1D69E-D4EF-4942-B58E-838A51230DC0","","PC-113","0","416","466","","5404","4760C481-A1E1-F848-AF76-9212710C96DC","0x00000000002C4FBB" +"37D2F7F6-42CC-4646-884F-47BD40B0C6C0","155690","TB-0208","0","285","305","","1300","13FEA756-7343-4361-8E22-9212C74B4D2C","0x00000000002C4FBC" +"03CD25E4-D9BB-4C7D-8D59-CF12589B25FA","","SA-0222","0","500","1500","","1900","D953274A-26EB-4EEE-A6E3-923E5F0257D0","0x00000000002C4FBD" +"F4494EB6-7EF8-47C5-BD0C-77675BA2C0EB","262","EB-258","0","111","131","","318","45925FC2-FAC3-4942-B661-92577DA0E557","0x00000000002C4FBE" +"7FFF0B2E-8AB7-FB40-816E-4387D9F0281C","","WL-0265","0","332","372","","5700","478DE3A5-2D67-D547-8922-926302C877EF","0x00000000002C4FBF" +"ABA2F51C-3ECA-1D4F-BC9B-97DA82DF4242","","PP-036","0","65","105","","5271","99C770E1-0964-CA47-88FF-9265FCC19EED","0x00000000002C4FC0" +"01CD85D7-ABF4-449B-BAF9-CAA0365A4688","","WL-0007","0","882","922","","3794","7FDE9FEF-18DC-46C7-B62B-926E9A3EDA7A","0x00000000002C4FC1" +"F413B3F2-9F9E-4EE4-887C-44576356E460","","BC-0259","0","200","220","","3545","8E9A4AD7-BF48-4C62-ACFA-928999783500","0x00000000002C4FC2" +"EE498D9D-1A3E-4E00-A4FD-93F1D93671A9","","NM-24972","0","180","200","","3581","04776581-F9FE-4969-AED6-92DD47BF3AFB","0x00000000002C4FC3" +"979DAA86-4887-43E6-BE14-A9F12F33205C","33680","SM-0154","0","240","400","","822","F4C2A260-B8F8-4BEA-84EC-92E69A0AD785","0x00000000002C4FC4" +"1746A1E0-9569-47AC-A888-071C67DEDA8D","","SO-0128","0","4","19","","3198","F007AE6F-7DDA-4A8C-9553-92EFC7CDEC84","0x00000000002C4FC5" +"FB1F10DF-2987-450A-941D-5649A2EF1BB0","","NM-24823","0","181","200","","3635","ECEE34BF-CABE-494F-B05D-930EB421A849","0x00000000002C4FC6" +"479E81F3-6384-43C4-817A-AF328B1A7E31","","BC-0062","0","285","325","","4994","BA8712C0-F36A-4D17-827E-932275C530CF","0x00000000002C4FC7" +"366A793C-48F8-4E2D-A517-91423BDB13BF","","AS-019","0","100","180","","1513","41CFE0C6-9E66-4A85-A127-93227A13168D","0x00000000002C4FC8" +"8BFAD3A9-F879-4F30-AA7B-3A1D8B6BF129","","TB-0308","0","130","170","","3125","49F7FBB9-B49C-49A2-AC7C-932947DE6EE7","0x00000000002C4FC9" +"ABED6E1A-679F-4E64-A9EA-A9491FBC5829","42","EB-041","0","330","350","","45","94201D71-D8C5-407D-BE01-93296FF88D3C","0x00000000002C4FCA" +"AA7F4A7A-44FA-4E43-8CC7-B0FE74C90243","","TC-428","0","25","62","","5231","62D3A77F-34BF-F94E-8CD8-93317D4948EE","0x00000000002C4FCB" +"DD923897-ED4C-46C1-9472-A7F8485986CF","155551","TB-0088","0","70","110","","1266","23644628-9D9A-41F6-857E-934A1B38C1A8","0x00000000002C4FCC" +"194D7424-B53D-4A67-B042-EA41DDF54D08","","NM-26932","0","105","112","","5077","E5414B76-DB8A-4BFA-8290-93628B1BEE03","0x00000000002C4FCD" +"1F016034-D645-409E-AC52-A219A81F2BC6","","AH-076","0","350","400","","1763","3C54B3D6-6DF9-4FC4-946D-939F5D88ECDE","0x00000000002C4FCE" +"94642281-0287-4ABF-A1FC-3B16E5729F61","157","EB-156","0","324","350","","190","16A4C45C-5710-4894-A59A-93A3D8ACA964","0x00000000002C4FCF" +"F9AF4BC1-1582-44FD-B431-0E72B3955774","","SO-0214","0","44","48","","3218","20FE5875-5B14-4407-BECE-93B45398FFEE","0x00000000002C4FD0" +"DFADB478-5FD4-4BC1-90F7-728DCD1117D4","","NM-24847","0","416","441","","3631","6D938AEB-B97F-44D3-9A9E-93B5F39149E0","0x00000000002C4FD1" +"07FA94DB-CC11-42FA-B0D4-0612613D8545","","AR-0023","0","26","31","","2952","9C34DB64-C6EC-4809-815B-93BE2879BFD2","0x00000000002C4FD2" +"1AD71F9C-5D4B-4B27-96C6-A02FE2867B6C","","NM-27197","0","460","500","","2920","17BC4E1C-2176-4CC3-A950-93BF54B752B7","0x00000000002C4FD3" +"BE0BB103-EE40-4744-8B0D-41C74A03B20D","","NM-25110","0","648","668","","3474","2BFE894E-D8AA-4F5D-8C9B-93C9ECE48A7E","0x00000000002C4FD4" +"60973826-1EC0-4157-942A-05273F68CAAB","","BC-0130","0","270","370","","5110","2BA26C9A-6236-40BF-98CB-93E37A8041E7","0x00000000002C4FD5" +"8AE89BC9-F764-4A16-97F1-17DF93A895CF","","BC-0037","0","540","560","","4961","32708635-10DF-45EA-98CC-93FBBCBAAB23","0x00000000002C4FD6" +"B6836B56-1103-47AE-892B-E18CDE759695","","NM-00663","0","156","176","","4956","8FE7394A-8D56-4B49-B3DF-94102B06BD71","0x00000000002C4FD7" +"68F163CB-B03E-264C-9398-A668C25194FB","","WL-0219","0","170","210","","5645","1CB5CF32-7A6D-124C-B62D-942BBEA9BDE9","0x00000000002C4FD8" +"45C5CD4E-989D-4939-B928-9C4EC7A27F37","33250","EB-509","0","20","40","","586","78E5DAEC-5E0A-4D64-805F-94381E2EE83C","0x00000000002C4FD9" +"E969D892-8E0F-4DF4-8B92-125DA7C9D82B","","TC-238","0","313","333","","2117","576C577C-CC18-4DED-A168-9461B790F750","0x00000000002C4FDA" +"C1AE76E3-2A26-4802-805F-9D1D4CA233EE","4","EB-003","0","380","420","","5","D1DA6336-7F04-4D53-B315-9462B6584D17","0x00000000002C4FDB" +"A77D654F-6CDD-4244-87BD-EDEEB3343659","522","QU-135","0","90","110","","1009","926361DF-FB4C-43FF-A39A-949D03D24A3B","0x00000000002C4FDC" +"587B6A16-66BE-F948-943F-30B6329C0618","","PC-002","0","145","165","","5310","80331AA0-0097-3249-A335-94B5577322AA","0x00000000002C4FDD" +"961018AD-7217-4C2C-93E7-73255B884DB8","271","TV-237","0","900","1000","","1170","E4CE33BD-FA43-474D-A775-94B90F314106","0x00000000002C4FDE" +"1707268A-AB75-4347-A177-86D2C73F1A92","314","EB-310","0","47","67","","386","BC865DE1-4A06-4CA6-BEDF-94E277AE8EB8","0x00000000002C4FDF" +"7EDEEC1C-55FE-4827-ADFA-957B934AE477","348","QU-020","0","110","160","","949","E5249F03-25A4-4DC4-A268-94E375C3D41D","0x00000000002C4FE0" +"F350FFE7-C3CE-4AC1-9985-99745C407993","","NM-04260","0","545","620","","3108","1990F11C-4CEA-49E2-874C-94E8DD4666D1","0x00000000002C4FE1" +"DFC9B5CA-59E6-4802-937B-78A302B37422","","BC-0011","0","240","260","","2857","A6FD65CB-A0AE-49DB-907F-94EA4D21A0BF","0x00000000002C4FE2" +"031FD117-0FB6-4120-82EB-BC37C7CD9BF7","","NM-23281","0","135","175","","3281","456C9D87-37E3-4F64-B437-9526D2DA4F06","0x00000000002C4FE3" +"EA3282FD-B5FB-4F2C-9FC0-8B6623EC298B","33349","SM-0021","0","100","120","","746","4A0F7623-AC7F-4FFC-83FD-95272A6C4955","0x00000000002C4FE4" +"37D9985B-CFE1-4CD2-9756-BF65DE51E8C3","","SV-0075","0","460","475","","5194","9FADDC84-B1AB-B64B-ACDF-954A1EAA458E","0x00000000002C4FE5" +"28B4D03F-2E44-4A55-8FC5-FEEE0AB3084C","326","EB-322","0","140","200","","397","7BA5DF1C-3132-4FFE-ABF4-956313B97347","0x00000000002C4FE6" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","33411","EB-692","0","168","173","","741","A2D1AE47-D6D3-47A1-AC2F-95A7B9720679","0x00000000002C4FE7" +"4D159A54-DA13-4DF3-AE0F-B58D3A535FA5","","SO-0199","0","54","59","","3197","C1E898F7-24D1-49D0-AF42-95D5F65A4637","0x00000000002C4FE8" +"A9876A29-6F0B-4FCC-B632-7D0A20A96FFD","155565","TB-0102","0","105","145","","1275","8488ADFF-C700-463A-9FB3-95E1DFFB9254","0x00000000002C4FE9" +"591B8755-D7D7-4C4F-B668-C587FF2BCB5A","361","EB-357","0","530","540","","426","8877381D-0C7B-41AC-A770-95F20913F829","0x00000000002C4FEA" +"232863A3-F0F3-4700-8629-AAA5BD77BA5F","223","EB-219","0","146.5","237","","280","61DE4FA7-73A7-43D4-ACEF-95F9E3AE9A4A","0x00000000002C4FEB" +"5C8C529C-E1AD-40A9-9039-699FB341A8EB","151","EB-150","0","327","367","","183","5D74B826-3AC5-4BBA-AF14-960601C875AD","0x00000000002C4FEC" +"737F3D89-07E0-43A7-A652-23FEB9C56B1A","","BC-0120","0","900","920","","5055","2B981D86-E53A-4CD8-89D4-960AECE9A785","0x00000000002C4FED" +"32A34362-95D8-46DD-9F9B-FCA6BE46EC38","","SV-0050","0","380","400","","5217","49AAA7E4-128F-CA47-98C8-960F875C2EE3","0x00000000002C4FEE" +"383A38BF-007F-46DB-81C5-80635E5E1F9E","","TC-243","0","900","920","","2120","FBD2B0F3-2C7E-4CDB-8BD3-9610C81F3C15","0x00000000002C4FEF" +"535B477D-EB5D-4838-A9F9-E61BBC32A93A","33677","SM-0152","0","675","695","","817","7A5FBDD3-922B-44DA-B2B0-9630864A6FD3","0x00000000002C4FF0" +"08A4A647-E436-4D48-824B-55436F98579B","","NM-26929","0","170","190","","5075","53A51F11-744D-42FB-8D4B-9649D656C265","0x00000000002C4FF1" +"2654B96F-CB97-491A-9258-EE64A40A052E","","AB-0158","0","268","286","","2686","F4ED7B8D-7E7C-4268-AEE4-964E7B449E9C","0x00000000002C4FF2" +"E0032E58-7534-4E42-BF26-7258AD2469F0","397","MG-036","0","400","440","","930","9AED5138-0B93-4DA9-B291-965B53C7D23C","0x00000000002C4FF3" +"2D5089EA-117C-4CFA-BA36-6FA79FD9CB78","138","TV-118","0","145","175","","1056","CCABEBAF-C34E-4145-956E-967B91796AA9","0x00000000002C4FF4" +"1D114D39-0DD3-44C1-B70F-D829F0A142AF","","NM-25417","0","352","367","","3773","2C157E2C-1C05-4516-A75A-969303DA4BEA","0x00000000002C4FF5" +"0EE5D121-55BB-4158-ACA4-5FDE0A421FE1","","AR-0076","0","36","41","","3014","26BA1E1E-7B0E-4DA9-824C-969B9B916811","0x00000000002C4FF6" +"25376194-FAFD-4C9D-A025-4CEFEE9E6F51","330","MG-002","0","80","120","","905","D8D2EE10-0078-4BC6-A206-96A95256A3C3","0x00000000002C4FF7" +"BB7D0B2E-B3CE-43EF-BDD0-DDE415E823DA","","NM-26920","0","180","200","","5066","229737E3-AFE1-41B5-A840-96B1241CB224","0x00000000002C4FF8" +"CFAE39B8-3975-4E9A-ABA3-7FC738823B47","144","TV-124","0","175","215","","1061","5C93E45B-4C63-43F0-A709-96B96A14BB70","0x00000000002C4FF9" +"F7DFB8A0-CDD8-496F-8775-2B77C3DE52BC","21","EB-020","0","310","325","","28","62375FC6-320B-4F86-8F12-96C220757AC9","0x00000000002C4FFA" +"6288EA81-F1BC-42A8-A379-6FF614C92B94","","BC-0247","0","319","429","","3539","03D1C51B-F6D0-441B-AC97-96D3CEBBB0E7","0x00000000002C4FFB" +"8DD96607-D472-4535-99DF-348594E65E77","","NM-26926","0","275","295","","5073","11AF913A-A26B-4D10-B886-96DF81FADBF2","0x00000000002C4FFC" +"FF5812D0-6E96-40BF-B3F1-5FE12D576BA2","","SV-0135","0","280","300","","5207","BE1234CF-BAB3-F842-8A99-96F5088464BC","0x00000000002C4FFD" +"7BB21B18-608E-4929-978D-BDAE643081DE","","NM-24772","0","186","191","","3648","7F587AFF-80E7-4F5A-A97E-971B1EE7EE2C","0x00000000002C4FFE" +"534A22B2-175E-4366-BD74-4CBD0FF56366","155696","TB-0214","0","240","280","","1303","70CA252D-7092-49D7-BF02-972F3861B101","0x00000000002C4FFF" +"2DC4CEA9-C0D4-4588-AA12-73049C400C30","","QU-172","0","149","250","","2534","20FBD8AC-6E8D-4A40-B2D8-97516F2ED045","0x00000000002C5001" +"4125B6FE-92E9-4D34-B516-AACA9B2BE487","","CP-0029","0","326","386","","2940","9284169A-860A-419E-94D8-9792EFEE4887","0x00000000002C5002" +"25CD73A8-C6F3-4E52-8AF1-E5C72E367AF5","439","QU-107","0","280","480","","975","F54ACCC2-8D7A-493E-A975-97E14A97C940","0x00000000002C5003" +"FFE1A338-2319-468D-9850-96DDA3C3AB30","","BC-0231","0","365","405","","3530","8CA28ADE-1E49-42DB-86FA-97F325FFE0F5","0x00000000002C5004" +"A466DA4B-7D94-4306-ADC7-522AB3F9C6C2","","BC-0022","0","145","185","","3918","2CF9DAA2-C82F-4DE5-949A-97FBD6B413EA","0x00000000002C5005" +"B7417163-D9AE-4CBC-8FE3-189B94C53C6C","","SV-0131","0","262","282","","3435","ED6519AB-9BCA-45AD-B1D1-97FD046D5FF2","0x00000000002C5006" +"ABED6E1A-679F-4E64-A9EA-A9491FBC5829","42","EB-041","0","270","290","","44","14A8E023-6A50-4E85-8E65-981EFD2099F9","0x00000000002C5007" +"144FC6FA-8676-443E-AEC8-849E60C08682","78845","SM-0217","0","495","515","","832","41B7995D-4F1F-4097-ADE8-982A2029453C","0x00000000002C5008" +"5CC91843-4C10-4C96-9121-D783972D30EE","","QY-0711","0","195","215","","2989","7A91BDF0-37E7-4DEE-87B9-982B0DF330FC","0x00000000002C5009" +"E3FF902C-1527-4953-9E03-51F7CA304548","","CP-0034","0","365","385","","2945","33F3FD1B-7EE7-476D-8DE7-984D00E328FD","0x00000000002C500A" +"6DFFDC2E-6C1A-5A42-95B7-7E3732B25120","","NM-28319","0","82","122","","5500","FF5B0E99-EC34-4745-85C5-984D9F7EE3D2","0x00000000002C500B" +"BEBD393E-8066-474F-A1FE-59503E9461B0","","PC-058","0","280","300","","5360","4F46B3F4-628A-204E-8930-9859771E85F8","0x00000000002C500C" +"7F9B1D7E-7A5C-4972-A546-3E77CEF17056","","BC-0050","0","250","325","","4985","66B6540E-A530-4507-9627-986434B72FA4","0x00000000002C500D" +"0DF953B0-AAA4-4894-A886-B23378C95EFC","","TV-303","0","1300","1370","","3120","A532F572-170C-414C-AC0B-9869D36524BA","0x00000000002C500E" +"24D64431-3340-4C81-8876-04E86D60AF7F","","BC-0054","0","420","440","","4990","990D473E-ABCA-4D4F-921B-986C83D4CF0B","0x00000000002C500F" +"E46B859B-93C8-4E92-8467-8EDE50F9E3AD","148","TV-128","0","440","500","","1065","DCB8D929-89F7-4A77-B7E6-9874769E748A","0x00000000002C5010" +"3B953B75-431F-4C87-BB45-1A44D6BE2034","","SV-0041","0","120","140","","3339","9DAACC66-E33D-4E4F-B2BC-987C2BC76ED0","0x00000000002C5011" +"F4494EB6-7EF8-47C5-BD0C-77675BA2C0EB","262","EB-258","0","141","171","","316","FFA078C4-3AE7-48BB-905E-9883FBCEA8C6","0x00000000002C5012" +"37428EFF-7461-48BE-9C2A-4AF3746947B1","","QY-0154","0","202","353","","2964","02662061-E8F9-42BB-B9CC-988E819A95A6","0x00000000002C5013" +"715B6322-CB82-4563-8D53-CE6AA7D4E698","","BC-0014","0","180","200","","3915","F016FF14-5E98-4BD1-BF82-9898BB65A5DC","0x00000000002C5014" +"84F10AE2-C64A-7946-A0FC-477B61AB8FBB","","PC-096","0","30","50","","5387","FC85748E-CA21-DC4C-A7CE-98A26F198E7D","0x00000000002C5015" +"71950EE2-2C19-40E2-971B-1B88437CCA4B","","NM-03396","0","30","35","","2794","830B21B8-B36C-438F-803D-98A60CA70289","0x00000000002C5016" +"37F2384C-BF2F-4C36-BB34-5FF87234C961","","NM-01258","0","692","1339","","2803","9E0A34DC-0914-493A-91DA-98A9310488EF","0x00000000002C5017" +"25111816-08D6-4225-85D3-78B4AD06A8DF","","SV-0053","0","310","330","","5189","ECC7FEC9-9E28-A24B-B234-98C2CDA19DE0","0x00000000002C5018" +"BE5AAF45-A9AB-48BC-8992-C556552120E1","","BC-0102","0","300","600","","5039","1B15E5CC-77F4-4A27-81E7-98C508CD3D2B","0x00000000002C5019" +"28848019-3771-4FDE-9289-72D56443F3B8","","NM-05097","0","260","300","","4969","34D2D76C-7395-4B77-B428-98C6E630BA14","0x00000000002C501A" +"6E5776AB-D8AE-44A7-94F0-60558A29B8A4","258","EB-254","0","160","180","","312","ED00C9A8-CF98-4E4F-82A9-98E69826AF47","0x00000000002C501B" +"D1C7E60C-EDD4-411A-9A24-7DD6A3528942","273","TV-239","0","180","300","","1149","E1C50E42-E136-458F-93C4-99037425BA74","0x00000000002C501C" +"5B4D9B04-4F47-4EE4-8651-7F7F7169CD3E","398","EB-394","0","128","","","453","B0A61FA4-89D2-40C8-AD61-990967C22A94","0x00000000002C501D" +"4292CE3B-33D9-4F54-AA03-4A45ECDFA3DD","","NM-24667","0","420","440","","3690","CFC8CCF1-AE4B-4C58-BDE6-993E208014D3","0x00000000002C501E" +"FFB30470-DB28-4EA1-BBDD-07814CDB9AF7","33514","SM-0069","0","530","550","","791","BF4BA206-E89D-472A-92D5-9945D5E74A38","0x00000000002C501F" +"0F7F219A-5263-43A8-A294-BB6E854EE77B","330","EB-326","0","200","220","","403","2C5F8E65-FFA6-4151-A9B8-9960FF6E75D8","0x00000000002C5020" +"CE9630D3-E10D-4971-8872-203BF39D5746","155755","TB-0211","0","100","120","","1310","84EF88C6-8003-4D0C-9FA8-996495C1658D","0x00000000002C5021" +"FE8E16A3-B4B0-41F4-BA32-ED0835F50C7A","281","EB-277","0","245","285","","338","CFADA7F9-F4FE-440D-8480-9977D6656ED8","0x00000000002C5022" +"57270ABE-08C0-47E7-935A-CD8432A5C3B2","500","EB-491","0","350","550","","581","EBD27D7E-DA42-4104-910F-99860DA7CFB2","0x00000000002C5023" +"5D8A735F-4860-49CF-A2AB-C66F308753D8","","BC-0114","0","240","260","","5048","AC098C18-8A17-48F6-969E-998AA5978F2B","0x00000000002C5024" +"01535DFB-D713-244F-A9A1-E04B9ED102DD","","WL-0286","0","237","240","","5732","46F4B8E1-8295-7644-9205-99AB5FAA5383","0x00000000002C5025" +"1592E211-4BC6-4D51-856B-641AE999A6B1","","AH-068","0","800","900","","1755","AE42FAE2-312C-4228-93B2-99C573FDA7E2","0x00000000002C5026" +"DBDBF8D6-75F5-4905-8098-2B92BBE2934F","237","EB-233","0","340","400","","292","3D7ACE17-5477-40AE-8E45-99D16E005028","0x00000000002C5027" +"48437BDD-BEC6-4379-B80D-213537D0A5EF","","TC-271","0","255","275","","2141","051C7A40-A4E8-47B5-8E75-99DBAB0C1942","0x00000000002C5028" +"1D4D7858-655B-41A8-BD46-8D3208D1EEC0","33265","EB-550","0","215","225","","606","828277C1-D9B2-4C52-89C0-99E33A6D569F","0x00000000002C5029" +"0A434AA2-1A61-41F5-AF49-0B05DE76AD6C","33358","SM-0027","0","560","570","","753","202387A7-5ED7-4076-94C3-9A3EB3368A3E","0x00000000002C502A" +"3B2881A2-DD13-49D8-8D17-84470379BCAD","279","EB-275","0","720","740","","334","39B4A208-08EE-4653-8CAB-9A51445CA144","0x00000000002C502B" +"6C00B8CF-5616-4968-8B60-DA95F6E3C3B7","","AS-011","0","650","750","","1506","1A8DC54C-D8FB-4BFA-8FFB-9A555D21E827","0x00000000002C502C" +"0BFFD525-DCFB-4750-A697-72E8C73A2D64","","SV-0134","0","160","200","","3810","1521F679-7701-443F-BF3C-9AC25AD9C3AC","0x00000000002C502D" +"FCD98EE0-CC3C-409B-A344-0FD1CE17A029","252","EB-248","0","150","170","","304","A9FBD1A6-895E-428B-8281-9AC831A3B357","0x00000000002C502E" +"4582E02C-BBCB-4C5D-AE8A-D40420FC8452","33309","EB-605","0","1300","1310","","653","9D1F1027-1ACF-4923-BD0F-9ACB74A206C1","0x00000000002C502F" +"E34F58B6-6F16-4694-9477-235503BA8539","","NM-25000","0","67","71","","3558","8CE46060-D3E6-46BB-9EDF-9AD33973E695","0x00000000002C5030" +"17B709BD-B09F-4709-981E-91AEDBDD4202","","AB-0257","0","","","","5774","EB8FE803-D0F5-477F-9470-9AF5D9ACFE47","0x00000000002CF3D9" +"C0B9F619-8642-4984-B51B-60614D62EDEF","","SV-0017","0","360","380","","3300","34CEED80-D8D6-493B-A142-9AFC0A874B28","0x00000000002C5031" +"586658EF-BAEC-2C4F-B130-F879D412BB3C","","WL-0041","0","685","705","","5204","7764E98A-469D-D641-AEE7-9B24B9AD6E52","0x00000000002C5032" +"FDC600A7-685B-45B1-8E1B-B753DAB84472","","UC-0210","0","175","205","","2831","9D2AFF64-0183-42A4-8BC8-9B2533A2A769","0x00000000002C5033" +"E271A8A2-B8D7-4A2E-933E-65EA8202D62E","33603","SM-0092","0","340","400","","809","24F76202-3BEC-48CD-BA6E-9B4F777993B5","0x00000000002C5034" +"87ECBF98-0B08-42A5-9610-CB092FE778C1","","AR-0165","0","25","30","","3728","D58E3E54-D4D8-4BDC-AC33-9B63D0050D9C","0x00000000002C5035" +"F2BED5BA-C99C-442C-8399-D8649B131880","","SO-0226","0","4","20","","3230","EAB6E030-D5DB-4361-9E13-9B770A345DC0","0x00000000002C5036" +"BBD15EF3-9BB9-420C-B39A-57291B8DF447","","SV-0092","0","145","185","","3388","7B014FE2-A282-4A74-9244-9B7A36687673","0x00000000002C5037" +"43531AC2-6FEA-4D03-9B86-2BECC25F31B2","78","EB-077","0","300","640","","88","5939B3D4-E4A7-408F-A5DA-9BAD9DEC93E1","0x00000000002C5038" +"FC7A4E23-ADE4-4823-9E8C-09C51A833C90","","BC-0174","0","390","430","","5143","44EFC165-3CAB-4C86-90E5-9BC0BE123258","0x00000000002C5039" +"51202A41-9B46-42CA-8052-E9FDF0486B8E","324","SM-0257","0","50","70","0.032"" slotted pvc","849","E2D30346-453A-4EC1-9D28-9BD0FB92C845","0x00000000002C503A" +"DF0901FF-14DC-4B0B-A45A-4FCF5870535B","256","TV-229","0","975","1015","","1139","BA54F59F-B5FA-494C-8440-9BD94A1D47CE","0x00000000002C503B" +"1D911F77-3214-47E3-80F0-3CF7D0BCEC20","","SV-0020","0","240","260","","3305","E9D7EF53-BC2C-46A2-A678-9BDA0FD62923","0x00000000002C503C" +"D465DE28-CBD0-4138-A41E-4A8D50C23984","","SV-0125","0","360","380","","3427","10C92150-1595-436D-8CD1-9BFAF98CCDD6","0x00000000002C503D" +"F9DB7C90-E80E-4BB3-B998-C27BB3CA0722","","AH-101","0","250","290","","1788","26113BCA-34DE-4022-AB1F-9C0C4CDE8F93","0x00000000002C503E" +"3F66A44E-B8E2-4050-A09C-4AE6192B62FB","","TB-0305","0","160","200","","3124","105FB6F9-AAF5-46E0-8665-9C0CB4BF27B0","0x00000000002C503F" +"D712D779-6A34-4983-9EF3-2EE8AE13E231","","SV-0129","0","280","300","","3433","CF03B3F3-A4F6-4679-92CC-9C1C7375B84D","0x00000000002C5040" +"05E3DA92-D682-424E-AD05-3330FD077839","85","EB-084","0","223","263","","100","81F3AEE0-09D2-414F-AAD1-9C2E8CE22F93","0x00000000002C5041" +"B776EC35-ECDF-4C09-98E5-B5370A23B63C","","SV-0025","0","55","75","","3315","772CC7EE-8D23-49E8-A5B4-9C44D37E98B5","0x00000000002C5042" +"7CC07B27-E4AF-4947-944D-B13E3081DAF8","203","TV-183","0","155","185","","1103","CA8CE328-0AE9-4A7D-B935-9C6C9442EE86","0x00000000002C5043" +"FC3B9632-21EC-4A7A-8E0A-8FF7FE89832A","541","QU-154","0","45","75","","1029","12B5DF31-86DD-4CBE-8DC5-9C8561B012BE","0x00000000002C5044" +"6E3FC1B1-BE82-4AA6-A0FD-8AC47DC41FEE","","TV-304","0","1750","2000","","3121","DBDA3F8C-14C0-4273-824A-9C91837E7E88","0x00000000002C5045" +"715414F9-1D2D-4DF7-BA54-9C0A7E053CAE","","AR-0124","0","24","29","","3086","BFC4B2B4-9844-4182-8689-9CAFBF1F02AB","0x00000000002C5046" +"8C5953A0-D364-4A5A-B2F2-44BFEDC556BE","","BC-0164","0","230","250","","3275","3A925BB4-8B53-42F0-A42B-9CD0667B0E64","0x00000000002C5047" +"FF910999-7229-46B0-9BD4-271098AF307C","","SV-0006","0","170","190","","3293","DC87C6D6-8007-4D21-9345-9D05761E69FE","0x00000000002C5048" +"BE8D0DE4-71E1-4E7A-8A5A-AAEE13E5C52E","269","TV-235","0","100","200","","1147","C9ECE4AA-6E07-44EF-8857-9D08FBDB74EF","0x00000000002C5049" +"71FDBA14-5DE0-40F7-B00E-FEECE7B6CC68","239","TV-219","0","1300","1381","","1132","33D76534-052D-4DE4-BD38-9D26CAF9A593","0x00000000002C504A" +"B882959A-FF25-4E17-A6E0-E27B8AC310ED","33281","EB-577","0","300","560","","623","1C695499-D640-484C-A160-9D2991801C88","0x00000000002C504B" +"9DBE6C71-2E11-6F40-A3F1-4893644C8FB0","","WL-0136","0","549","1030","","5592","71B57941-900C-924C-AFDD-9D62DB6F12E5","0x00000000002C504C" +"EDE92AA2-6052-4B08-BF88-976550938393","509","SA-0205","0","900","1000","","874","2C69F4A2-798F-455B-9957-9D9822AEDA1A","0x00000000002C504D" +"C5195361-7DAB-4AF7-865E-0A87C1DB7639","","NM-21016","0","145","185","","3813","F5B383DC-559B-46D8-9557-9D9A7EB3E992","0x00000000002C504E" +"BC3040C8-83B5-46E7-B367-CDE1353ADD42","155554","TB-0091","0","170","190","","1269","DADF77E2-2106-4EA4-B857-9DB8FCD32B87","0x00000000002C504F" +"0E60F36E-AE8F-436E-B622-331EF968A41F","","NM-24975","0","179","201","","3576","1348AE93-2313-41FD-8F50-9DBC3D5CAA9A","0x00000000002C5050" +"DEEFA179-5B72-0341-A820-151277EDCC02","","NM-28273","0","312","372","","5431","410B1F01-D4C8-9449-93A3-9DCE2EE615EA","0x00000000002C5051" +"0CA618AD-C3E3-4417-AAB5-272DD69A6989","","AB-0137","0","290","660","","2671","119BCAF1-B1C6-4369-8551-9DF01EB87AFF","0x00000000002C5052" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","240","260","","2890","5C60277E-8AB9-4077-8525-9DFCC66DD2B3","0x00000000002C5053" +"5202BA7A-5A44-463A-B622-F5930B66A01F","56","UC-0036","0","138","300","","1324","9EFE4E85-BD7A-442B-9EE6-9E01DC871601","0x00000000002C5054" +"BE0BB103-EE40-4744-8B0D-41C74A03B20D","","NM-25110","0","363","368","","3473","EE790F9A-C857-423C-A453-9E0589767057","0x00000000002C5055" +"F919103A-12C2-ED49-BDC8-708EE4375058","","PC-052","0","330","420","","5354","5132B860-683C-4D42-9FB4-9E29E39E7CC6","0x00000000002C5056" +"5D8AB2CD-6E9B-4F56-8A40-05C97509D456","","NM-24684","0","181","225","","3681","3C033EE2-8A70-4B1B-9C81-9E3664399820","0x00000000002C5057" +"3CD86E1D-ECE3-4DFB-934B-04B5CE4662A8","","SV-0040","0","280","300","","3336","B2D906E7-0C17-4373-9E6C-9E5AA0F1CEE5","0x00000000002C5058" +"2CB7B817-135B-4C4E-A22F-BFAD1347052E","","NM-24359","0","80","120","","3595","410105EB-A4D0-4707-BE78-9E5FDBAA7A4D","0x00000000002C5059" +"8F15C914-CC42-44B7-A2B6-C379C5684241","8","EB-007","0","73","93","","16","B781F3A5-8D18-47D4-B777-9E685E4775F0","0x00000000002C505A" +"31A93F84-CBA7-4B73-A2E6-E3C3AF2CE0AE","186","EB-185","0","180","200","","232","C7ED9DA6-A03A-49C8-A9FE-9E8241E5D92D","0x00000000002C505B" +"82717611-4ED4-4461-9D65-7C80EC3D8FC0","488","EB-479","0","278","318","","560","CEE5485A-4BF9-4C01-B1F7-9E85BDF9FB4E","0x00000000002C505C" +"CA69F5AB-C25A-4CC9-8C21-683F2C9F5CDA","","NM-24708","0","60","120","","3674","A077B34B-C934-44B8-AF04-9E9A4C3E20D0","0x00000000002C505D" +"4F09A553-A37A-43AC-A72E-174E18523B6E","","TC-303","0","25","112","","3789","974C9A44-6C6A-46C2-BAA7-9EA86458C2AB","0x00000000002C505E" +"CADAEA9C-171E-4D2D-98D3-C89198FCB66C","","NM-24998","0","136","139","","3565","9361B8B1-77A8-4591-B046-9EB0276B2EFD","0x00000000002C505F" +"3869B0CC-AB3A-4D2B-800F-A9711610D53D","","NM-06000","0","385","425","","3894","CFE71763-2E81-46FC-86F8-9EBC7A9CC080","0x00000000002C5060" +"C8E96D55-EF54-5D40-A4E4-3FCCDC25BE36","","WL-0262","0","537","557","","5695","5C12B694-6588-6441-A4D2-9ED55C21D83C","0x00000000002C5061" +"DA95601F-343A-453F-9805-F21163B7A0F0","","NM-09323","0","118","298","","5552","230A2206-796C-E849-8F5C-9EDDCAAFFF0D","0x00000000002C5062" +"9E91B5F4-38D4-44BF-80F4-B952BAF71C37","","SV-0027","0","405","425","","3320","6E445FCE-3994-42CA-A46E-9EE78AEFB3AD","0x00000000002C5063" +"7A8403BA-ACE4-4209-9C86-7830852F6DBE","","UC-0211","0","320","340","","2832","57E32A66-7123-4EB9-B40E-9EF2401F262C","0x00000000002C5064" +"0BEAF7EC-D2B9-43EC-B20C-FB4D8515C97C","78877","SM-0237","0","100","140","","840","13F9AC2A-17A2-4610-8B0D-9F0C3619C842","0x00000000002C5065" +"D62FFAA0-76F9-4EAA-A6ED-BC247D692545","","BC-0186","0","590","610","","5157","5F8E2AEA-69E1-4AD3-AA88-9F2D0A1EC039","0x00000000002C5066" +"EFF0DA49-F74D-4D66-A9CF-0F73F047F697","","SO-0134","0","44","50","","3132","92BCBB9F-1EB9-43AE-8358-9F41E27F4CAD","0x00000000002C5067" +"1B7A9B04-2234-4AC4-B2AE-2BA5754C8362","","NM-26890","0","120","155","","4937","92A76241-C98C-40DD-BF44-9F4AD4B24753","0x00000000002C5068" +"6B44930C-AB58-4842-8182-80287F8412BA","","AH-073","0","343","363","","1760","18EE2CB1-E215-49BC-A584-9F4FD8103B5F","0x00000000002C5069" +"671341D3-F1C0-4280-B49A-29512F00EE57","155676","TB-0171","0","220","280","","1297","3CDD09F2-EDFE-40F5-ACC8-9F50A18BE9B7","0x00000000002C506A" +"61E6C49F-ACDC-46C8-B364-8D27AF3262E5","","SO-0139","0","4","19","","3137","9566A7C0-83AF-452E-A482-9F72D9F523E0","0x00000000002C506B" +"19E45BD0-C740-4932-A5CD-967D1AA14D87","33238","EB-520","0","234","250","","594","C56A6AAE-E423-4298-8944-9F77B8264485","0x00000000002C506C" +"E30D5AE2-93B9-4410-9566-064D7688FC3F","","BC-0155","0","380","390","","5126","14CDECEE-95D9-46C1-8182-9FABE625DEE6","0x00000000002C506D" +"7E9BCDD0-278B-244A-BC44-BDEE7C236DC3","","AR-0223","0","37","42","","5469","CC451187-59C8-CA42-A122-9FB0AC63375D","0x00000000002C506E" +"C929D98C-E522-4FB8-81F5-B7D2D2FA9639","","AH-093","0","230","270","","1780","C9A5F10A-0279-4B21-9DE4-9FC5CC145A77","0x00000000002C506F" +"C3467A28-E098-48D1-94AF-644F31F37A42","","AS-0002","0","","","","5772","6D685EC3-6578-4AA3-B3AD-9FCE49A15362","0x00000000002CF3D0" +"9FA1651C-B13B-4E75-8220-B7C3A5478BD1","","NM-24880","0","93","188","","3620","B7DD5CDE-F7F5-480F-A298-9FED32BCBEC6","0x00000000002C5070" +"E32CA757-9B05-8642-83E8-A60052548EF0","","PC-115","0","635","640","","5406","A310758D-1E72-0E41-99FD-9FF4E505F301","0x00000000002C5071" +"B012E703-24D4-5C43-B54B-E14E5EE2032F","","PC-075","0","85","105","","5505","841D5606-EB6E-004F-A940-A01B8F7722D0","0x00000000002C5072" +"65CD176A-CE47-471E-8F36-AA2C7FB1D289","","NM-00499","0","20","60","","2880","B5C9BD25-22AE-4149-97B1-A01FACD15000","0x00000000002C5073" +"7B1C3035-4E2A-431B-84FC-1B13724C032E","","NM-23469","0","330","340","","5168","80F40FB3-BED9-4508-964D-A047C6E67E66","0x00000000002C5074" +"159A53D7-7C80-4778-AA46-E4FFB0BE2D92","346","MG-018","0","155","175","","911","E5263155-C68C-4A0D-B907-A0C6E783DD14","0x00000000002C5075" +"73BAB429-E665-4BAC-B69F-C8A564A2A6C7","","NM-00187","0","200","600","","2872","F7CD9AF9-BEE3-4874-AA00-A0ED0D8C81C1","0x00000000002C5076" +"E80831EF-D5F1-4C02-BCF2-AD7D769C4A7E","","BC-0236","0","260","280","","3531","29CDDFB9-6637-4DB3-9159-A0ED57B4C91C","0x00000000002C5077" +"DD7F37C9-96E9-4DFA-A5CE-FAE14A4C68FA","","SM-0246","0","22","365","Open, uncased hole","5644","FE0A1098-06FB-1445-9C9D-A0FD804DB2BC","0x00000000002C5078" +"2C1FBF6D-49EF-4712-8C53-2B86BE8F994F","","NM-03421","0","870","1050","","2825","9C617A93-CB1A-4C85-9103-A10094DA7983","0x00000000002C5079" +"D14E56D7-EA33-4AA3-8C1A-1F7B9F029DF5","138","EB-137","0","850","950","","170","83445B36-261E-4047-840F-A11252D7962A","0x00000000002C507A" +"3D22221B-BDE5-4163-BB43-FF28A0223B61","","QU-078","0","78","88","","2382","9935F87C-D585-4045-9FBA-A115FC499945","0x00000000002C507B" +"DCA16712-12A5-4D6F-89DC-BCD8C21B3FFE","","NM-26964","0","100","120","","5100","1C2680B5-27A6-45B1-B8AC-A11649FAC63A","0x00000000002C507C" +"E04936B5-E398-47C0-B135-43462F923A95","","QY-0506","0","75","80","","2980","CC1565FD-D91B-483A-A9EF-A1211D5FF709","0x00000000002C507D" +"C819875B-438D-4367-B97D-2589AD235C0A","","SV-0029","0","320","340","","3323","5D5ABD98-08DF-4500-BC3C-A1300F84B137","0x00000000002C507E" +"E9F973BC-F9D4-4393-8FB3-F481649171AF","","AH-105","0","460","500","","1792","435BF251-F19D-4B27-8E7C-A144EE376BD4","0x00000000002C507F" +"E97815EB-47AE-4B5D-BED5-745A2447F822","","UC-0221","0","100","110","","2839","B22DC0D2-82FB-4DD3-9BAF-A14FF8B9F98C","0x00000000002C5080" +"C8646D9B-56CB-4702-AFB3-97E5456FADA4","65","EB-064","0","540","660","","76","9E7665FE-AE05-44AC-9EE8-A14FFB91422C","0x00000000002C5081" +"FF44CAFB-A6E2-4866-8AFD-8F2A6A3813CD","","NM-23274","0","330","350","","3280","913370CA-F623-49E2-8ED6-A153F89263BC","0x00000000002C5082" +"DE0D8EA4-2781-41BE-B178-641E60E1930C","","NM-07225","0","1007","1170","","3854","59323FFC-D090-4331-939C-A15E51982BE8","0x00000000002C5083" +"01F6DCDD-06D3-43AD-B771-2878449ACA1F","","AR-0037","0","280","320","","2955","0ED5D833-F8D6-461D-896D-A162A369A160","0x00000000002C5084" +"1707268A-AB75-4347-A177-86D2C73F1A92","314","EB-310","0","107","167","","384","F349B236-18DB-4E0E-89A6-A16375843722","0x00000000002C5085" +"16E10AA8-7013-44F0-8223-B6C74E7DE96F","190","TV-170","0","1324","2527","","1093","3E1D5CDF-C78B-42F4-80E3-A17459335BB6","0x00000000002C5086" +"B0193969-D692-4072-89CA-01DE95F4FE1E","294","EB-290","0","593","613","","360","F79F7E2D-0B17-451F-9B1F-A186FC474101","0x00000000002C5087" +"433E117D-DEA5-4048-9162-CAEC2756E2E2","","SV-0005","0","220","240","","3291","08B21CCF-788F-42E4-972E-A1A549AFD6B2","0x00000000002C5088" +"A18C9AF6-4225-45AA-8D6B-C7427E37E791","290","EB-286","0","325","345","","349","DBCEA4F6-0DE2-4AEB-BDDC-A1CB7F6EB0C0","0x00000000002C5089" +"6072F894-6CD7-4F83-B350-8D4EFA79F6E6","","TV-121","0","155","215","","3015","E5C3FAF1-B8CD-4D93-8C96-A1CE2C1CACB1","0x00000000002C508A" +"43FA71B4-5343-4457-8D76-B4D01AFEE46D","","NM-09290","0","165","222","","5551","78AEE012-3815-3F48-A2B5-A1DEF53CFC88","0x00000000002C508B" +"A1A7BACE-A3B3-BD4A-BBE4-5B9B3C60FC25","","WL-0290","0","180","220","","5740","C31F8138-4D3D-DA43-A5E7-A206B12281CE","0x00000000002C508C" +"F8726326-7556-404E-BF26-2CCD29D81641","","AB-0120","0","648","1050","","2656","2D7207AF-7A09-4AF3-8D78-A2082CE4650F","0x00000000002C508D" +"7D0BF420-9A22-433E-AD7B-9152D3DCE841","","BC-0165","0","360","410","","5679","E4AC4836-ED99-7F42-850E-A222A9E705DE","0x00000000002C508E" +"5267ED58-71B2-4E6A-B9F7-995409DFEE24","20","EB-019","0","50","80","","27","98B9109D-307F-4292-A957-A25D24DC26D7","0x00000000002C508F" +"2DA69DB5-C02B-440E-8998-077C5C393848","","AH-069","0","726","745","","1756","C052701E-A8A1-4C0C-896A-A2A7605381A3","0x00000000002C5090" +"35F84A7E-661D-4D47-BA85-7179529E37DC","","DE-0005","0","140","200","","5667","30DCCCFD-C12C-574E-9D22-A2B7EC98CBF7","0x00000000002C5091" +"A32EAD05-7956-49CE-9DED-602B6F55F7E4","","NM-04177","0","540","600","","3106","E5B590BB-0B33-4FCF-B631-A2BCB5DB0272","0x00000000002C5092" +"ABA51870-1E74-419C-AADE-CE8CB57D6F86","33585","SM-0076","0","340","400","","795","110771C3-AF39-4772-8F8B-A2D87FCCE641","0x00000000002C5093" +"56257F1B-CF6A-426F-A4EE-C1AE3AA86878","","BC-0452","0","4","8","","5764","093B3061-0FA8-4AF4-ACD5-A2EAC8BC4263","0x00000000002CF3A5" +"9A432D20-D24C-4ACD-BCF1-E9CE0149523F","438","EB-433","0","555","595","","492","EDA379C3-FF6F-4916-A4D6-A30539AEA367","0x00000000002C5094" +"8814C45F-A9F8-4664-B323-91C59203858E","346","EB-342","0","40","55","","421","E896377E-CCCF-4065-B9B2-A30B2D5EE511","0x00000000002C5095" +"8D113B6D-BC02-46AC-AFBF-C24383984E1E","","NM-26794","0","3736","3939","","2866","BBA593F9-8E9B-4EF7-AD11-A311AF670E9D","0x00000000002C5096" +"0DF953B0-AAA4-4894-A886-B23378C95EFC","","TV-303","0","1300","1370","","3122","4B6130F8-BE03-4067-9D4E-A324C7F11765","0x00000000002C5097" +"9E71EE96-5A6B-4FFE-913D-335BAF4010E0","19","EB-018","0","50","70","","26","A7AA977B-894A-46E7-8D11-A32F22C947A9","0x00000000002C5098" +"D86EE586-0223-43C9-8C1E-7B6903F08840","","NM-01418","0","280","300","","3048","12F90E71-072A-450E-A261-A33CB1A86003","0x00000000002C5099" +"3B2881A2-DD13-49D8-8D17-84470379BCAD","279","EB-275","0","780","800","","335","AE65514B-B5C2-4954-90C1-A33F06A1D475","0x00000000002C509A" +"6C563339-DEB6-4FA6-8319-B8E3E3AAA5BB","","BC-0194","0","320","340","","5165","58674AEA-BE73-4B74-ACE0-A364FA245A5B","0x00000000002C509B" +"C896872D-A0F8-4185-B8A6-3984D8291276","","NM-25100","0","370","380","","3479","75779095-FA0C-44E2-99C5-A3894A94023B","0x00000000002C509C" +"42A53EDF-9AD8-4E49-9108-320C23F4A09F","","NM-03364","0","700","1300","","2789","EB261F5C-51AD-41A4-90AB-A38E145739AC","0x00000000002C509D" +"8216516A-7FA1-494B-B8EC-C733DBFE29A4","","BC-0066","0","80","130","","5001","97059E53-B229-4F06-B99E-A3934E945B58","0x00000000002C509E" +"E1A39D61-93C4-40A5-9B18-2C0DDA403E8C","33396","SM-0043","0","140","180","","771","3BFAFC96-B3E6-4D72-83DD-A39999A9C2FD","0x00000000002C509F" +"AD23D7BC-ECF8-4B84-BE52-607AE8883717","437","EB-432","0","400","420","","491","F1E14F9F-299A-474A-B046-A39A33F5F971","0x00000000002C50A0" +"06AFC187-C2F7-42EE-B1A9-96282D45DBFE","302","JM-003","0","345","365","","885","C00EF28A-957E-4161-9C70-A3C778A5587C","0x00000000002C50A1" +"D9C805EA-B2CF-494F-9767-B9A0DDFE80E2","","AS-030","0","22","220","","1523","B3B1307E-8ED8-4244-B016-A3CB51DE21AF","0x00000000002C50A2" +"A5C28CA7-4840-424E-B01C-E9D81D21B843","","NM-24777","0","63","66","","3645","5F3375C2-BD61-4266-B0DD-A3DD3E1696E0","0x00000000002C50A3" +"7EB0BD84-C776-4BBE-84D6-255F27B6EE37","","AH-078","0","380","420","","1805","09544B60-7871-4691-AEF1-A3DE8FB39BB0","0x00000000002C50A4" +"5F35C1DC-CE39-403D-A0B4-445218ACA851","","BC-0221","0","1075","1275","","3521","E4590749-8E97-4870-A6DC-A3E6D91BFDBE","0x00000000002C50A5" +"19CC9502-7C12-4238-97AF-ACE69F766F40","119","EB-118","0","370","410","","150","5A72C944-9C7D-4A54-88A5-A3F8F668ECA3","0x00000000002C50A6" +"CCF92B28-8BCE-4E80-A0FB-6F93F304BC49","","BC-0227","0","240","260","","3526","1FEF9683-B3B9-45D0-B403-A40BBE35BCB6","0x00000000002C50A7" +"883EA4B7-C0D4-4243-A762-FDAF352DC264","","WL-0107","0","180","260","","5442","60196782-1345-804F-9579-A426BE8A92C5","0x00000000002C50A8" +"23A43421-105A-482D-AEA4-A697758DA85D","","QU-098","0","39","59","","2467","941BF1A5-1CD7-40B9-916B-A431BBCA30CA","0x00000000002C50A9" +"4292CE3B-33D9-4F54-AA03-4A45ECDFA3DD","","NM-24667","0","440","460","","3691","EC0AC514-EDF0-4BA1-84BE-A4336548E6AA","0x00000000002C50AA" +"5CEC45B9-40AB-4D27-9E0A-4170ED41C105","257","EB-253","0","67","89","","308","CE125A96-3CF2-49E1-A5D2-A446AE79AC74","0x00000000002C50AB" +"9EED881F-F005-46BA-B62F-4981950004F9","325","TV-284","0","117","147","","1192","1F203ECB-84CA-4C6A-8BE3-A46B9BA8B242","0x00000000002C50AC" +"E43F0FCA-8BBE-42B0-8533-A43833086107","","QY-0114","0","105","125","","2958","E019918E-B79C-49F0-8600-A492F1D74226","0x00000000002C50AD" +"06DDA09B-E577-4FB1-BE88-BDD4AD05E103","","NM-00996","0","206","212","","2916","54E81515-36FC-49A2-8C80-A49C4561DE3B","0x00000000002C50AE" +"55696AC7-9991-434F-93A7-BEE777C08CE4","","AB-0084","0","670","1327","","2624","FD901CB4-5F4F-4D73-9AEA-A4AD4F24580E","0x00000000002C50AF" +"3EEA26A0-03D1-4ADB-A8CE-2FD60B225784","","NM-21516","0","100","125","","3844","BDA83F97-0FE3-4F6F-8D22-A4FF27E52839","0x00000000002C50B0" +"1FFE2C9F-F7C5-4F5B-ABBC-4790A142651E","33394","EB-680","0","235","315","","731","2213F013-171B-420D-B540-A5041FB4F827","0x00000000002C50B1" +"B9466E6A-DA48-4202-BD41-BCFBC64D6DE4","425","QU-090","0","60","80","","994","CF92830C-BC9A-421F-82EA-A51801C7849F","0x00000000002C50B2" +"7E230129-CF5A-47F4-B45E-5B71C91ED235","155490","TB-0040","0","0","150","","1244","36EA9C6E-9620-4C86-A3D6-A53E569554F1","0x00000000002C50B3" +"AD83DC12-EC5D-4D03-8418-C86090C4474B","","NM-03395","0","90","95","","2793","F5048C27-0DA6-49B9-8104-A54155DCB6F2","0x00000000002C50B4" +"7B2C740A-7B7F-4065-B45C-A064AA4596DE","33242","EB-518","0","120","135","","591","E9EEF9CB-4FF8-453D-A666-A54E0ED08BC3","0x00000000002C50B5" +"EAB15470-630B-4CDF-8F1B-6C60A45911D7","","NM-24585","0","252","282","","3733","9543729D-2845-4529-9B83-A552DCAA4749","0x00000000002C50B6" +"022892E1-AEB4-401C-9C08-7BCDE929FF9D","","AH-108","0","420","460","","1795","6D2CA40E-E4E3-456C-BAF4-A5661E04C305","0x00000000002C50B7" +"18545A9D-C28A-4AF4-BA0E-D1212839A836","","BC-0121","0","125","275","","5056","62D61272-5BCE-44CC-B3B6-A567744FC92D","0x00000000002C50B8" +"012563EC-A1EB-4C62-9154-9EA1EB0ED098","446","QU-114","0","81","105","","977","259073DB-BA5F-4DB1-BF91-A5687AA67A92","0x00000000002C50B9" +"130A027D-BFA0-4598-82F6-9A160731A762","","SO-0200","0","4","19","","3204","21D9735F-822A-4824-9233-A5880F17513E","0x00000000002C50BA" +"E80498BE-D199-4162-90EE-C404E7781A4C","183","EB-182","0","730","750","","225","DDEC7FAE-BCFD-45BF-9B65-A59D2B80B221","0x00000000002C50BB" +"89D7F2AB-4CD6-4585-88EA-A11FA137B796","","NM-26769","0","430","600","","3809","3B8F166B-B504-437D-AD11-A5B24B772F79","0x00000000002C50BC" +"D165DEAB-C697-4418-ADEA-A44419CE5C81","434","SA-0149","0","60","80","","866","6B124EE7-6499-48BB-BDC2-A5C952244F53","0x00000000002C50BD" +"0EDE5117-5049-490A-8078-C7A5D04FCC6F","","BC-0005","0","290","300","","3891","4987AE14-C6BC-47CA-9623-A5CA0D8290AF","0x00000000002C50BE" +"12BDDA99-0DD8-4684-A47B-85FF733EB9F8","","NM-24917","0","237","253","","3604","CA866327-08AE-4028-9B99-A5CE7F287C3C","0x00000000002C50BF" +"63E5BF47-5363-4093-9F00-36562DB91CA5","486","EB-477","0","380","780","","554","DA909CEB-13AF-4342-AE9B-A5D9670B8B61","0x00000000002C50C0" +"8F87C556-FF3A-4E50-B953-4DC3ED759E1C","","AH-039","0","350","380","","1612","FFC10E76-73BF-47CE-A4BB-A5EDF997326A","0x00000000002C50C1" +"1157C745-F111-48A4-9999-7141BD3DC1BF","","AB-0071","0","730","2000","","2614","5E6B98C6-784C-4AF9-8F5D-A5F39748E9AB","0x00000000002C50C2" +"BCCDBAB1-7DE6-4FA6-ADEE-D7963A4A0A8D","272","TV-238","0","55","105","","1196","C827C1E4-B5F7-4E5B-87FD-A5F5C01DD4D7","0x00000000002C50C3" +"B559FF54-F62F-468A-ADEE-B43ED0BB716A","","SO-0156","0","5","20","","3154","42C0521C-D1D3-4178-82D3-A60E709A3BC4","0x00000000002C50C4" +"9FDA571F-A353-43CB-B7DD-B9DEF5AE346D","","UC-0217","0","260","280","","2836","EBB4B803-4DF6-4215-9E17-A617CCAC6D9D","0x00000000002C50C5" +"5CE655A2-29FD-4F29-B337-98FB5AEFD296","","AB-0017","0","435","600","","2572","8E36E61A-6948-4329-807A-A63991CDF8D4","0x00000000002C50C6" +"100939E3-0DD1-41D2-8F2F-C61443B26B5D","483","EB-434","0","268","298","","494","D171EF8F-515C-496D-B2A2-A645CAC99A93","0x00000000002C50C7" +"5D22C68A-E31A-4510-A319-AD48DF0CB101","382","EB-378","0","60","109","","438","81130302-8C38-4542-88EE-A6534ADEF827","0x00000000002C50C8" +"EA23F92D-9E7E-4BEE-AA45-BE5F471B28AE","","AH-054","0","386","456","","1607","8145E13A-1DC0-4546-8036-A69B2E5AF26F","0x00000000002C50C9" +"7B74D311-1969-4BDB-8768-397D1CFFE4CE","","NM-26882","0","420","440","","3932","3EC3CE51-65BD-495F-8742-A6A32CD3B08E","0x00000000002C50CA" +"596E59FE-6FBB-45CC-B836-3F4DB6AB5A25","","BC-0196","0","580","600","","3518","03FCFA02-B0A5-40B6-ADEC-A6A807A1E06D","0x00000000002C50CB" +"39320C48-993F-F74B-A5ED-0F9D983C3DE7","","DE-0016","0","560","620","","5654","E95515E9-224A-9948-98C5-A6C6962A2CA2","0x00000000002C50CC" +"8E0CF2C7-1F51-4DDC-A771-162EFAAC15A7","310","TV-274","0","1040","1480","","1182","BC5CB8F4-449D-4BC4-92C1-A6C6D9926CC4","0x00000000002C50CD" +"09BC1DC4-C04D-44DF-BBB3-5BD3D73B6D83","33591","SM-0082","0","320","385","","802","4019DDB3-5A46-4382-B1CA-A6C6F44D9CC2","0x00000000002C50CE" +"EA3A8434-AE9F-4D57-A857-BAC8C552DE5C","","NM-25223","0","654","667","","3450","23445237-8FE4-4252-8896-A6CCA77E8191","0x00000000002C50CF" +"45137610-CC42-470F-A911-B740944DBFB3","155525","TB-0058","0","280","300","","1259","555B0ECF-72EF-42F8-BA0A-A6DCF0E705A8","0x00000000002C50D0" +"86D26D7A-547B-4878-9B86-C1EB5AC9C499","","NM-26946","0","180","200","","5085","E1376274-E785-43D1-BD44-A6DE3EFC6B8C","0x00000000002C50D1" +"ED61235B-6C78-4563-9DFA-020F4D28B3FF","","NM-05011","0","320","360","","4968","AB4F41BE-EB1F-4F45-A256-A6DEAD1E37B8","0x00000000002C50D2" +"000C2EF3-B792-420C-B490-CB97124C634B","","SV-0013","0","160","180","","5174","9F72E000-8DA6-B541-838D-A6EB413130EF","0x00000000002C50D3" +"264BBBE8-35E9-4684-8C8A-32A366BC153D","","AH-043","0","430","510","","1597","384F744C-8AD7-44FC-8AD2-A72A3A20E0C9","0x00000000002C50D4" +"F56C066F-D066-4349-8A88-3E8C64EF8DC9","","BC-0239","0","400","460","","3533","10F040EE-B5DF-4D55-BC85-A74690864C19","0x00000000002C50D5" +"F2D6597C-2A7F-4EA4-B0E3-D716BB86A27C","","SV-0098","0","265","285","","3395","D28663A8-6D08-4293-9356-A76FDB898AD0","0x00000000002C50D6" +"4AED0893-6379-6744-8430-216D13730204","","PC-018","0","360","400","","5422","115BB63C-4D5C-264E-A940-A78E3E502B72","0x00000000002C50D7" +"7BDF3D25-536F-456B-909F-178558BE79CC","","SO-0249","0","5","20","","3253","B36FA864-8881-44AC-9BE8-A79D61E67A1A","0x00000000002C50D8" +"B684F7FD-8B3C-4368-8E2A-F00ED3322BCB","","NM-09228","0","253","258","","5546","CB9A1D05-AC27-954A-8A05-A7E2608E75B0","0x00000000002C50D9" +"E57684EA-7247-41AF-B24A-E5A8FA350AA2","","TC-284","0","80","280","","2149","42BE3721-6413-4614-8F79-A7E93DE81CC7","0x00000000002C50DA" +"EAA1DD88-C384-451D-AC9C-32FF83E76833","","SV-0047","0","480","525","","5188","0A2D21B7-9580-7947-8CC3-A7E988C867CA","0x00000000002C50DB" +"DF0901FF-14DC-4B0B-A45A-4FCF5870535B","256","TV-229","0","870","930","","1138","50B766A1-A2D0-4049-B346-A7F45691381F","0x00000000002C50DC" +"C8A4D9D3-0A08-4212-A8BD-A0877B6E6E4A","5","EB-004","0","239","279","","9","826339B4-153E-4307-BE01-A81B067ECC96","0x00000000002C50DD" +"C4C27BCC-E07A-4EBB-8FB5-7288198C4478","","NM-00668","0","262","304","","3739","E91CA992-94F9-4FB5-B2A3-A81F2E35DD7A","0x00000000002C50DE" +"DCE8AEEE-4180-422A-A068-48B160EA7E99","163","TV-143","0","240","260","","1073","02510FDF-6497-431B-818E-A8289835BD1E","0x00000000002C50DF" +"08EFA9A2-A15F-4942-9D46-D343FD9A64E1","198","EB-197","0","83","136","","261","6EDDF77D-1583-4CCF-BB76-A82AEC6FD8A1","0x00000000002C50E0" +"3F2ACD5E-4F87-4835-BB10-7CCACDEDEF4C","","NM-24703","0","300","320","","3676","C8F49426-BD98-4D2C-8C78-A82F1FF202DA","0x00000000002C50E1" +"D3AC0876-A564-4FAB-A4DC-55AFF23BE8CE","33355","SM-0016","0","270","290","","750","A4F0E2B0-B835-4B96-9D5C-A852D456E4E2","0x00000000002C50E2" +"E52275DD-2331-4A3A-9E22-CD21DB26F49C","","NM-03470","0","26","56","","5302","65E6891A-8AC2-1847-8DC9-A8BC6F13D773","0x00000000002C50E3" +"E38653CC-759F-4A74-8A90-B9E962DEEFB2","","AR-0025","0","43","48","","2953","91917CB1-7C24-4914-97DF-A8E62FBFB36B","0x00000000002C50E4" +"E61C5E2A-90FC-44B0-A54F-C388AE145B70","","AB-0107","0","420","520","","2645","71CEB72E-FE03-4ADD-8503-A8EF49E7985B","0x00000000002C50E5" +"EF7E3D38-499D-4C0C-8D4D-21ED57B1D1BC","","BC-0125","0","180","240","","5105","4D9B83B9-7134-4E20-9255-A8F03766F508","0x00000000002C50E6" +"95D23374-EB48-4AA6-A015-7E477C1708B1","329","LJ-005","0","338","388","","899","0BA46A2E-823F-4AF5-A193-A91A28F67F6B","0x00000000002C50E7" +"5CE567FA-676B-4F52-B222-08AB77A559AF","","AR-0058","0","16","21","","3007","58C90E03-DA3E-4E42-891E-A91D75713C11","0x00000000002C50E8" +"0F4FA6DD-5691-4466-8385-1A372C52E7BD","","NM-24678","0","150","180","","3684","8399D0A8-340F-48F4-AE3E-A936F88D4D6B","0x00000000002C50E9" +"0E4E81EE-08E4-473E-8935-4DA7798F6FB3","","BC-0246","0","230","250","","3538","04A1FCBF-03AB-422B-8448-A937CBC86226","0x00000000002C50EA" +"67D41FF3-7DBA-4A67-B673-A8D6A905E375","33342","EB-637","0","1290","1310","","685","DF0999A8-2A8B-44FC-B37B-A93BD06C6D2D","0x00000000002C50EB" +"99218CFB-8C26-4396-8EC7-B8807A8DC5DC","","QU-004","0","215","230","","1905","F905B927-17EE-42CE-A745-A93F559912DF","0x00000000002C50EC" +"837D7971-C716-4485-9C3F-284BDB660537","","NM-01368","0","380","440","","3035","1969CCBF-0A8C-47CA-A558-A94680AC311E","0x00000000002C50ED" +"776A5EC2-DDBA-4886-A2B9-1F752CBA1288","","NM-26947","0","500","520","","5087","6051AB4A-DAD0-4A4B-B022-A96F64DAF0F2","0x00000000002C50EE" +"5C4268B7-F7DD-49D6-B30A-A6729D6D6C95","165","EB-164","0","315","335","","201","564FD93C-9143-4232-B242-A9B4CE04B607","0x00000000002C50EF" +"CB1A7C6E-1A50-4F2E-911E-420E62FACC54","","NM-24783","0","275","295","","3642","1982E46D-F15F-4184-AFBC-A9B977FBE708","0x00000000002C50F0" +"5B187DD2-CDA3-44FE-ABDC-B5A6BDA915BE","","BC-0084","0","180","210","","5022","5ADF3638-AF13-4985-9253-A9BA671462FC","0x00000000002C50F1" +"627D3CBC-4F42-754B-A04B-F82347B82EAC","","WL-0206","0","280","340","PVC with 0.032 inch perforations","5630","8140FAE6-924E-904E-9FCF-A9BE117BA544","0x00000000002C50F2" +"2BCF2466-0548-4316-991E-184C71A01005","","NM-23298","0","240","260","","3283","FAD2DE33-50BB-46D8-8EE7-A9C6D159C6AB","0x00000000002C50F3" +"F0EF4F62-27C7-486D-A8F7-08C375614C8C","","SO-0239","0","45","50","","3243","44BCCF9F-5133-4168-A984-A9C7C6FD18DE","0x00000000002C50F4" +"4078FB79-3EA7-4BB3-AB2D-D0046D4A5494","492","EB-483","0","428","606","","566","A247C277-4785-4AFC-9BD5-A9CFBCFEB620","0x00000000002C50F5" +"127FCC70-BF72-43BB-B401-62232FB58256","","WL-0019","0","140","240","","3852","A9AC0157-BB7B-41EA-A01C-A9CFFCDF44D6","0x00000000002C50F6" +"2DEE8E1E-9982-43F1-9907-A4222903CDC0","326","QU-015","0","525","625","","947","E76ADC34-24FD-42FB-AF8F-A9E5A5FD632E","0x00000000002C50F7" +"587FD932-A666-45B7-8380-ADB02912220A","","NM-09564","0","134","213","","5560","63AE9E30-9ECB-CE46-8EEB-A9FAE4E29641","0x00000000002C50F8" +"EC063552-924C-44E2-8DD0-86643708EC8C","87","EB-086","0","602","623","","104","905EE83A-B154-4250-8D47-AA2576A454CD","0x00000000002C50F9" +"EE9F1029-D1CF-0C4B-A85E-647E23851E4D","","WL-0274","0","180","240","","5705","F386A3FD-F8F5-0A4F-9FAC-AA2714F4BA0D","0x00000000002C50FA" +"A98F5724-6C4D-460F-9928-AA76D7B8B1CE","","SO-0136","0","49","54","","3134","CB523FD6-D6E0-4D2A-B88E-AA5117A53562","0x00000000002C50FB" +"C50262FA-CAE4-4B70-BC50-B934E44D536F","","NM-01380","0","88","128","","3038","56D9FFDE-0601-4861-91DF-AA5216EDCB29","0x00000000002C50FC" +"8A27AA22-1467-4E53-BE02-F28FB90F45CE","","AB-0219","0","336","960","","2738","D0671168-8FF3-4A9A-AF99-AA5392344E7F","0x00000000002C50FD" +"DA609535-8D92-4F66-B4D3-7741BB5D4F77","","AS-068","0","645","688","","1555","D1247D01-22BE-43E4-B669-AA5F57B2175C","0x00000000002C50FE" +"B127562B-5426-4401-8800-B9A0B7699164","","AS-067","0","340","380","","1554","D03FAB5B-7AD7-454E-A083-AA64ED86B98B","0x00000000002C50FF" +"123E2E23-905F-4C41-9878-D1C5C703BFEC","468","EB-463","0","635","804","","529","4D4BFBF5-276D-409F-849C-AA9DD2C2DC24","0x00000000002C5101" +"793C222B-B014-4E18-BBE2-6323910DE867","","BC-0001","0","240","250","","3907","CD4CCE16-E75F-42DE-9A4B-AAA90E266767","0x00000000002C5102" +"FDF4A9C1-BE47-4509-9631-6EBB131E1F10","351","MG-023","0","142","182","","917","3C460B02-CD0A-43D9-A29D-AAAE0E104966","0x00000000002C5103" +"1D6C6E64-2218-4E6C-A356-412F1FD94EE1","173","EB-172","0","451","470","","212","A913D257-B933-45CA-BA0F-AABEDA593349","0x00000000002C5104" +"988B7C1A-C942-4059-9564-1C5993049169","","AB-0211","0","679","684","","2731","BCBCB01B-EC51-4B9F-B1DC-AAC296301917","0x00000000002C5105" +"24D64431-3340-4C81-8876-04E86D60AF7F","","BC-0054","0","200","220","","4988","82DC0645-15FC-4A67-A1DB-AAC68D71CEB6","0x00000000002C5106" +"4D1C6B9A-D8CF-4A47-B383-9E9832CE6960","129","TV-109","0","300","330","","1044","4CEC58BE-D879-460B-920D-AAF5619E5622","0x00000000002C5107" +"1F20AF51-E78E-4121-BB1E-0235EB6751CF","","AH-074","0","150","218","","1761","D3DB4BCD-6FE7-4D5B-838E-AAFC8F0BE22C","0x00000000002C5108" +"32CDE65B-26C9-489A-B97B-10BBE04E7B95","","NM-24740","0","431","452","","3661","C7331677-B4CC-4504-A039-AAFDAC28FB79","0x00000000002C5109" +"0114420D-FB39-41E0-84C6-E329E693291D","","LC-010","0","160","180","","1471","357A93DC-4B20-401B-A5A0-AB1B64351249","0x00000000002C510A" +"B28CC80B-B149-CC47-8A02-7CF9BC74BBFA","","PC-062","0","335","365","","5364","E149A539-4663-9C41-9461-AB6ADDF10BF4","0x00000000002C510B" +"5BFC696F-20F4-4874-868B-6BBB7059D6A4","155497","TB-0045","0","20","80","","1246","0DF24992-9FDB-4F05-B615-AB6B9FB238CC","0x00000000002C510C" +"AB324A60-2368-44E2-8677-D73B4029D8BE","","SO-0162","0","44","50","","3160","6915682C-55CC-4F92-B7FD-AB6C7CC62B21","0x00000000002C510D" +"382B26FA-6974-4CAD-9784-F16E6145EEC7","","SO-0220","0","44","50","","3224","965C474A-F71A-4D35-87DE-ABA35373802B","0x00000000002C510E" +"12AA0900-5364-4731-B1AB-704E0691D53A","","SV-0095","0","120","140","","3391","7562E1D2-4DB1-4974-9B1C-ABA6926DF5AE","0x00000000002C510F" +"5A7F8F20-34FF-4C42-AFEB-0BD0C159E832","","AB-0204","0","59","64","","2724","D1CA4A97-9AAF-4EB2-BDF1-ABB49F97CB7D","0x00000000002C5110" +"FC7273C2-34BA-4E77-945C-B9D7D676B22E","300","QU-001","0","216","396","","940","CFC00718-DB57-4799-B47A-ABBA87EE0FCC","0x00000000002C5111" +"208F34EB-3D27-4244-83BB-2135964B0208","","PC-081","0","110","150","","5378","DC987BA7-6E67-8D44-BB7D-ABC5FA5F8D44","0x00000000002C5112" +"1ADAE638-707C-448D-9D23-C1FA4D3E141E","270","EB-266","0","149","159","","325","55D27544-D4C2-4D91-88F3-ABC9518F8686","0x00000000002C5113" +"53A2CC2C-D867-4BF0-A040-B2D9D97C8DCD","","NM-21811","0","146","186","","3850","563F7991-2333-454A-80A5-ABCDCE709D66","0x00000000002C5114" +"F345261C-66C6-4189-9346-8CBF66D2582C","259","EB-255","0","582","592","","313","75ABFCAD-7643-4CCD-96B3-ABD74B0B5E9A","0x00000000002C5115" +"F45FE46F-D699-4D09-ABC4-20FED3B94832","","NM-06181","0","240","290","","5532","41AC992F-EC30-3345-9104-ABE3CA40A5B2","0x00000000002C5116" +"0A516EDF-6F33-4C64-90F7-615B00E9C4D2","","BW-0942","0","38","138","","3118","189E8A26-1DEE-4EE1-8441-ABE471EF8D2F","0x00000000002C5117" +"A29A5B80-40E2-411E-AFBE-BF482395AC53","","TC-223","0","450","490","","2112","95D58372-0948-4266-A235-ABE5EE458F0F","0x00000000002C5118" +"883EA4B7-C0D4-4243-A762-FDAF352DC264","","WL-0107","0","500","680","","5445","7ED8A48F-36A9-FC4B-9AE5-ABFF93C69CA3","0x00000000002C5119" +"416282CD-15EC-4F7E-97DF-DE477746E707","","SO-0184","0","35","59","","3182","E4409BD4-44ED-407D-B041-AC37F2597864","0x00000000002C511A" +"BA035273-FAE2-4531-AF2C-4BAB46DB32C2","","NM-25073","0","302","322","","3486","9A0F672E-407E-4855-B6BF-AC38C98CAABB","0x00000000002C511B" +"8E01FD70-D8CE-4233-9285-40CE5B55BBF4","237","TV-217","0","1973","1981","","1168","FAD58BDA-8230-4442-9761-AC4AFB86DF51","0x00000000002C511C" +"4393B909-DBAA-4667-AD33-8ED3CB6C4016","","AR-0214","0","120","370","","3571","50C7FD0F-7BAE-4EC5-84F0-AC6521E7D986","0x00000000002C511D" +"D80DA348-C400-4BA7-8066-322A50B11B09","","AB-0142","0","820","1290","","2676","DB7C2850-CB16-4D25-B4E1-AC70E32FCF8A","0x00000000002C511E" +"7CD68F9D-CF12-4CCA-8625-8D3F7A6E8AAB","33350","SM-0031","0","480","680","","1222","73E2A7B3-8FEF-4D14-814A-AC800FC2A943","0x00000000002C511F" +"9E71EE96-5A6B-4FFE-913D-335BAF4010E0","19","EB-018","0","30","40","","25","16DBA0BF-FBA0-4466-841E-ACAFB6BC90CE","0x00000000002C5120" +"56257F1B-CF6A-426F-A4EE-C1AE3AA86878","","BC-0452","0","43","444","","5766","DF246503-F42A-4D52-8FBA-ACCE0ACA0AEB","0x00000000002CF3A7" +"412F11DE-B061-4DF3-813A-366CBC596D33","","AH-035","0","420","440","","1590","A9DCE416-7B79-4AF8-B012-ACD6F0E520BA","0x00000000002C5121" +"B82BC92E-8410-4234-B29F-0F2823C3F141","482","EB-429","0","201","740","","488","F4D91C1D-BFB0-402F-9FD2-ACE82B5E08C7","0x00000000002C5122" +"05EDBCBB-E6F1-488E-B43E-55E46AB5D0C1","456","QU-120","0","63","113","","979","7EF0888A-98D3-4190-9534-ACFA28299B95","0x00000000002C5123" +"922F821B-F96E-4E5A-91CE-7720A958D888","22","EB-021","0","130","400","","31","BDAB6A17-32B4-4FA8-B819-AD1A0CD26213","0x00000000002C5124" +"A48923E2-1818-C848-BA2F-57923B6B5EC5","","TC-431","0","368","590","","5305","F4BB3200-D2AC-A346-A3DE-AD3426745EEA","0x00000000002C5125" +"F1BD35BA-4B54-4726-B68C-CEB5D79FD369","33236","EB-560","0","180","200","","607","47486B99-FE18-481A-9E25-AD91DFC5ABD2","0x00000000002C5126" +"55737B3D-9DB5-411F-A7B4-7021B400C493","","NM-21757","0","192","250","","3846","AD2B2DAF-F029-4EAF-9BCA-ADB4D29DFFB3","0x00000000002C5127" +"2FFFCA5A-ED8F-4A45-8D0F-684789E73713","","AB-0050","0","550","610","","2596","C6316E45-6160-44C0-B882-ADC4EE1DB7BE","0x00000000002C5128" +"58253128-B70B-4C9D-9533-61FCF8CFDB97","","BC-0012","0","135","160","","3913","8F67B72A-6027-4155-A4DA-ADCA2D2E1D49","0x00000000002C5129" +"8C08DC9F-251D-40E2-BBD1-F6E26E42D3B4","155678","TB-0173","0","88","148","","1298","6A4F7565-94B7-4FFE-B3B5-ADCEF6820155","0x00000000002C512A" +"FAA4B842-6044-4035-8D7F-7AF521E68167","191","TV-171","0","2497","3160","","1094","D66CB642-13AB-4E2C-8270-ADD1D87AE25B","0x00000000002C512B" +"0FB03DDC-ACFD-4F75-84C3-624099D53FAD","","BC-0112","0","60","80","","5045","87E3CFC9-41CE-49FC-A4AE-ADD70C85A396","0x00000000002C512C" +"3BF801C5-A430-4B8F-9501-C0ED270CC668","","AB-0182","0","375","395","","2706","81D2CF53-7610-4761-876B-ADDA776776A7","0x00000000002C512D" +"0754A95C-2531-4BE1-9726-AB8EDACFE1B5","203","EB-202","0","140","154","","265","4155489E-7494-4CCE-B04E-ADDD8E3F6B4F","0x00000000002C512E" +"2E125850-DDC5-4B66-B09E-EF135BAF2B4D","318","TV-277","0","720","920","","1185","081732C7-0056-47B3-AA0E-ADEEE4743538","0x00000000002C512F" +"DD00C125-6842-414F-A287-E2B4DE20CFF5","","TC-237","0","297","337","","2116","22320AFD-4E93-4258-993C-ADF5E95CCEC1","0x00000000002C5130" +"5D984BD1-02B6-444E-AFA0-B3113EA07887","","UC-0222","0","35","55","","2840","E4B5D94D-7FBC-455F-BA5D-AE02F11A39F4","0x00000000002C5131" +"F56C33F4-D7DB-43C2-B7BE-D357891939EE","238","TV-218","0","418","460","","1129","8487E535-9C11-46B2-A8EC-AE2119A7553D","0x00000000002C5132" +"E6A4063C-1657-074D-9C15-78E477806D44","","WL-0261","0","520","540","PVC with 0.032"" slots","5690","9913C3D7-07EF-4F46-96BD-AE25D3DFF202","0x00000000002C5133" +"96B4BEBB-CB61-457E-9772-D92D9BC69875","554","GT-002","0","460","500","","1335","701A49A1-D42D-4972-B93C-AE452639E6CD","0x00000000002C5134" +"C50EE55B-6033-4764-AF6F-1E677A0FF7C8","","NM-04102","0","281","300","","5618","F5BEA9BB-9EAA-9D49-8A1A-AE481350D5FC","0x00000000002C5135" +"6EE7149C-3CB3-47F0-8945-26EF772956E3","33388","EB-676","0","268","278","","727","6A21D9A3-6BAB-41D6-A9B0-AE4ADB675C01","0x00000000002C5136" +"3B2881A2-DD13-49D8-8D17-84470379BCAD","279","EB-275","0","840","860","","336","C91AB860-5696-4133-BF41-AE68F9AD9EAF","0x00000000002C5137" +"70CF4130-AB26-4C8E-8F26-FD188C577915","","AB-0229","0","280","300","","2743","0AA23A23-79C3-41BE-94A4-AE6DDEC3603B","0x00000000002C5138" +"DB792578-F0E5-49A2-8B1F-ACFD53CC02CA","","AB-0028","0","142","172","","2580","4A4A64D9-C757-4F49-A537-AE857294813E","0x00000000002C5139" +"71FDBA14-5DE0-40F7-B00E-FEECE7B6CC68","239","TV-219","0","1099","1260","","1131","E80B5D9D-926D-497F-8049-AE956268CFDD","0x00000000002C513A" +"8C9E7B6A-E966-419A-A477-29F7A1DB0AD1","472","EB-467","0","260","320","","538","A1826816-01AF-4ABC-86F2-AEA6111DA8F3","0x00000000002C513B" +"44139B9D-08A0-4C0B-9452-611A692333E5","490","EB-481","0","460","470","","562","B2482E7B-3E4A-4857-8999-AEBAF3C89952","0x00000000002C513C" +"8168685C-B181-4935-83F7-F8893594B52E","","UC-0220","0","100","160","","2837","18F43AD3-58E3-4DCD-A0C5-AEBFC2609647","0x00000000002C513D" +"D1EE4A7A-AE18-41B3-BC22-6F0B811418A5","","NM-01819","0","510","765","","5569","D4454ADC-F84B-3E4B-84C4-AEC351D0AFD7","0x00000000002C513E" +"8B8AE7EA-1AA3-43CA-9E06-55C40CC507CE","","BC-0109","0","260","320","","5042","6A37A495-6EF6-4C2A-8B20-AED9E3404174","0x00000000002C513F" +"206E56DF-7CD7-472F-B96B-6F4A7532F16A","378","EB-374","0","180","200","","435","3A99A3C9-7013-48A5-A95B-AEF721EA7CE2","0x00000000002C5140" +"27392551-3EBC-4D59-A8A2-BD93E07584CE","","SO-0187","0","4","19","","3185","CD36E96B-7E03-43D9-9E7C-AF0232F84E6F","0x00000000002C5141" +"0399F4E5-32F8-4E8A-A48F-35A3207FEE8D","","AB-0087","0","101","141","","2627","48C8C940-688F-4E3C-A7FA-AF1BB9363744","0x00000000002C5142" +"DC3CEE75-D7D5-4541-8543-FF22BD282957","","SO-0218","0","42","46","","3222","9509CF52-2D00-4BDB-9B77-AF2C8825539F","0x00000000002C5143" +"45DAD2BB-9944-4141-A23E-860FE0B827E2","444","QU-112","0","90","140","","976","A3B7CA65-6410-40A0-A0CA-AF39B93E0465","0x00000000002C5144" +"8AE4BD3D-A48E-4F86-A3A8-97D7789BD161","","NM-26921","0","415","425","","5068","32ADCDE5-6199-44C0-AD4A-AF4D66877AD3","0x00000000002C5145" +"F7DFB8A0-CDD8-496F-8775-2B77C3DE52BC","21","EB-020","0","416","429","","29","1FEF8C28-C4D5-4D18-A7D3-AF52E871147C","0x00000000002C5146" +"618D642E-8BE1-44DE-9310-917ED6258FFB","416","QU-081","0","64","74","","986","85E41A66-18F3-42AE-8F51-AF7DDD2DC3C0","0x00000000002C5147" +"EAE4EB45-C013-46BF-95A6-A22021D3EEB0","15","EB-014","0","260","300","","23","02C953F1-5A2A-44C0-9DC6-AF7E13ADE5CC","0x00000000002C5148" +"6ECA50DF-FA9C-4310-9C4A-D097DB756B60","156","EB-155","0","316","334","","188","9C854604-0A0C-4BEC-98B8-AF801F4C182E","0x00000000002C5149" +"E324A9D0-2E02-4102-8387-B257BA0509B7","","NM-01668","0","232","452","","3756","AC2F3032-0B8E-461F-A568-AF8469FF062D","0x00000000002C514A" +"3F2ACD5E-4F87-4835-BB10-7CCACDEDEF4C","","NM-24703","0","340","360","","3677","12C464AB-2EA9-4B63-A3E6-AF88854FD67F","0x00000000002C514B" +"D6B2DFF4-D869-441C-A98C-B0DC4149EADA","","NM-25120","0","421","456","","3465","CFA04BEE-D601-4D54-B7E9-AF8A58DAE7F4","0x00000000002C514C" +"F4341C81-B465-4C41-AD19-2E12B3933D27","","QY-0495","0","125","130","","2977","D36F19CB-8319-4F4E-B620-AF9042E14DBE","0x00000000002C514D" +"E1CB2915-697F-4ED5-B59D-228EFACA0561","179","TV-159","0","200","260","","1087","35B2AD89-BAE6-4D95-B2F9-AFA4254796B5","0x00000000002C514E" +"A4429D8F-6A88-4883-937B-C28623B49128","33397","SM-0044","0","280","320","","772","04DC45D1-DBA4-4DFE-9D6B-AFB2A3DF5E3D","0x00000000002C514F" +"81CF490E-2CB9-46B5-A3B4-8AF797721844","146","EB-145","0","62","77","","179","0AC31759-14E6-4D0A-8FBC-AFB682BD93E1","0x00000000002C5150" +"760578B6-03C2-CF47-93B8-AE0BDCB09DE1","","PC-011","0","505","525","","5319","202536E1-318A-514C-8B7A-AFCAE75679BA","0x00000000002C5151" +"85777128-D515-4472-BCC9-B74BFB62ABC8","","NM-26934","0","50","60","","5079","8124F7AA-EDA4-418B-82EB-AFDD64545BAC","0x00000000002C5152" +"95997687-3488-4C94-92C7-2D5E4D5A05DF","166","TV-146","0","40","60","","1076","C270A8FF-A840-4B5A-8C67-AFFCAACDDD05","0x00000000002C5153" +"A19FDC08-3F8E-40F6-9FAC-A4D81509E818","116","EB-115","0","280","320","","146","C2E0165F-538C-4ADA-8F1F-B0025B97C6B5","0x00000000002C5154" +"A0A5E10F-39A7-AF45-B948-D85AC14C51D7","","WL-0245","0","400","420","","5673","1ED3E4D0-4548-F242-B877-B00D65797BF8","0x00000000002C5155" +"9281E47A-ACD3-4E8E-A0E9-18AEE018F655","","QY-0356","0","230","270","","2966","35F86DC2-03EB-4083-855C-B02736220BDD","0x00000000002C5156" +"C6B814D3-5556-4B5F-99A2-C72BBB276054","","SV-0004","0","220","230","","3289","C6D37FD4-EE82-45BB-BF00-B02B8696075D","0x00000000002C5157" +"5A5191EC-B23B-4F67-9F09-8676A0ABE353","33509","SM-0065","0","10","40","","787","3A543214-BD00-43CF-B25B-B02CA92F6A77","0x00000000002C5158" +"7BFDE412-0E31-D045-B848-77CE3DD3D589","","TC-439","0","80","120","","5232","E32AA8A6-F120-8C4C-8808-B0621ED9DA67","0x00000000002C5159" +"6C9CC5CB-D292-4FBB-9AED-BBE172149483","189","EB-188","0","360","380","","235","CBFA36A9-7720-482B-AA7F-B06B9659E829","0x00000000002C515A" +"F1BD35BA-4B54-4726-B68C-CEB5D79FD369","33236","EB-560","0","240","260","","608","901B9A59-A6E7-4348-AA25-B0B06590D3EC","0x00000000002C515B" +"32619A63-F945-47CE-BE7F-058696513590","","NM-27195","0","160","180","","2918","BF2400CA-17B2-4483-A2BD-B0CFB8012A57","0x00000000002C515C" +"A442C938-8576-4C4F-A6B5-C681B73DFAB8","81","EB-080","0","400","600","","94","D9503324-2BCE-45E2-A549-B0D0ECB49757","0x00000000002C515D" +"A400AC14-7747-4DF7-A7EF-E039F40A26AF","","SO-0193","0","6","21","","3191","C31962B3-EC80-4ADD-AAC2-B0F70801D31E","0x00000000002C515E" +"FEF10EF2-7D96-4973-9A11-CCFBD8CA4199","","NM-26909","0","20","30","","4950","33A9C8DA-4180-47DD-8FF4-B1181F1588D0","0x00000000002C515F" +"CB992C86-9CBA-4187-87FE-238A689086CB","155498","TB-0048","0","180","320","","1247","409360CB-18D2-4F2F-AC5A-B1204A4BF2CB","0x00000000002C5160" +"B1238A32-615C-4FBF-9596-B73C3EE6CA45","33240","EB-521","0","76","365","","595","30BBD232-1372-4282-A548-B12EF1E40206","0x00000000002C5161" +"F85359F6-A267-4A53-94C4-786F1D13F75E","","SO-0161","0","5","20","","3159","E6EEB21A-0ADD-4AFA-B2D1-B13F32116EEA","0x00000000002C5162" +"9D904B6E-03EF-4E58-A1EE-30612180A0B9","","AB-0188","0","260","300","","2710","D0F46C40-58DB-4A93-A332-B145DD5F96CF","0x00000000002C5163" +"3EE69184-DA8E-4F87-8070-E34419458026","","SO-0246","0","4","19","","3250","58DFD51D-2FF6-460C-92E7-B152A11FADE5","0x00000000002C5164" +"525EB75B-69EC-4B30-B7BA-1DBDB15DE8EF","","BC-0038","0","240","300","","4963","20F452FC-CBF2-4A29-B7BB-B1564AE791A5","0x00000000002C5165" +"86469A59-DAD3-4681-B9D6-91F65176A08D","","AH-064","0","480","520","","1751","0CF516FA-134D-41FF-A562-B15D8D849037","0x00000000002C5166" +"7B2885C6-035D-413F-8214-C4AE6593F750","33395","EB-681","0","280","400","","733","1943674F-D8BC-422B-B686-B183FF057138","0x00000000002C5167" +"09139B59-D5E3-4799-8439-FECF829A7D66","","NM-24745","0","108","128","","3655","830AFEA5-4D0D-4667-9A7B-B1949135DB0F","0x00000000002C5168" +"CE79978A-CB17-436F-824A-700E1CD8ED06","","SV-0119","0","315","335","","3420","205E8301-67A2-4318-B668-B1AE002BEFB4","0x00000000002C5169" +"6FEDAD46-60CD-412D-891E-00E006E330DD","33668","SM-0143","0","680","760","","815","80FFCCC3-F6C4-4F45-8E74-B1B9092BF130","0x00000000002C516A" +"93D29428-A858-4824-96D4-91BFE6BDE0DF","","NM-01425","0","229","269","","3052","03B5278C-DF04-4856-83DC-B1C8C0EA7033","0x00000000002C516B" +"BC3040C8-83B5-46E7-B367-CDE1353ADD42","155554","TB-0091","0","90","110","","1267","2C059E70-5244-4C66-9165-B1F349DDF5B9","0x00000000002C516C" +"DB40B26B-AB27-4DE8-90CD-D89F7DC973F9","","AR-0067","0","0","61","","3010","FCBF3919-6024-42FA-B407-B21EC84B2D0B","0x00000000002C516D" +"00DFABC1-108D-4DF9-89A1-0B01A1028322","33241","EB-517","0","115","320","","589","89C5C665-5FCB-499B-963D-B22C3C761815","0x00000000002C516E" +"2E72A9FD-16C1-41E9-B2B7-C900FC90B68C","","BC-0197","0","340","360","","3519","7BC2BCB9-B933-49BB-974C-B22D1836C52F","0x00000000002C516F" +"7EB2F7E6-EC6D-4BCE-AEB7-1196F4F1BEDB","190","EB-189","0","410","430","","237","97534C11-CDB3-47D8-8371-B239DB17D4B6","0x00000000002C5170" +"56257F1B-CF6A-426F-A4EE-C1AE3AA86878","","BC-0452","0","16","40","","5765","59F85940-0694-41AC-B002-B262D88F26F8","0x00000000002CF3A6" +"BF872765-FC9B-4F84-B6EB-63E70F2A80CD","","NM-03333","0","28","33","","2817","0E8ED5C7-1B2E-4128-8529-B2686DDFCE66","0x00000000002C5171" +"08D818CC-504A-4AF5-9667-481E68DFA645","","TC-231","0","239","254","","2114","332127F6-1E9D-4F1C-8915-B268DBC396DF","0x00000000002C5172" +"546C470F-5939-409E-A248-98733CE6A98B","","QY-0334","0","21","31","","2965","C437974D-5C21-4DEB-B119-B279AA9D7C25","0x00000000002C5173" +"102BFEBB-3819-4E46-8BF2-4FA1F36474B6","","NM-26952","0","521","551","","5090","25C8A3BC-CBA6-43BA-9D9B-B286697B915A","0x00000000002C5174" +"D588B538-D146-4515-BFD2-30B55E7DA764","","SO-0251","0","49","54","","3255","5CF0198F-2916-43C9-9C86-B2A2CF03A5AF","0x00000000002C5175" +"8A50A235-B354-E94D-9A93-D0E6061743BD","","WL-0287","0","280","300","","5736","B1A3B9A9-2705-A840-9224-B2A90938046D","0x00000000002C5176" +"6E0C9EDF-D43C-402E-8D33-414CF4A98BF9","","AH-100","0","470","500","","1813","A1B525FA-53F4-4FC2-8072-B2B9EFD94DCA","0x00000000002C5177" +"02D4CC66-3B9B-475B-B2F8-095D6D1945EB","","NM-01254","0","614","645","","3072","A5BD7827-4666-4621-B354-B2EA945ACCB1","0x00000000002C5178" +"AD2FF055-AD9C-4068-9131-E2AD997ED892","","SO-0133","0","4","19","","3203","A7C61439-8FAC-4DC1-85E8-B3009D2EA6CE","0x00000000002C5179" +"5B4D9B04-4F47-4EE4-8651-7F7F7169CD3E","","EB-394","0","128","","","745","46D27B48-3B01-4F53-8237-B30AB8388231","0x00000000002C517A" +"C7077A32-6C0A-45D6-BE6B-6F1A6B4271AE","","UC-0230","0","108","208","","2847","449FA1AB-3102-442B-8421-B34EFF9A476A","0x00000000002C517B" +"AB66BCF0-EBD2-4C88-AEFF-F3E16F710869","","BC-0039","0","375","425","","4964","284D2692-B0A3-4AB6-87F0-B35A3CC53B1A","0x00000000002C517C" +"906D5017-443D-4CBA-932C-E413B36A0C21","","AH-071","0","115","175","","1758","4E186749-54CB-4C32-933D-B377A3EC5385","0x00000000002C517D" +"49BE6191-A9EA-43E9-A51B-8AD575BB410D","419","EB-415","0","330","530","","475","75122AF2-5B76-4416-B467-B37B1DA84F30","0x00000000002C517E" +"3F85E68A-9AF1-4AE7-9392-39FE114666D3","","AS-003","0","340","380","","1499","EE1DA97A-7D01-46B0-9CD9-B37EF42AC297","0x00000000002C517F" +"D68FDC2C-9E84-435E-9866-39ED0BA8F769","","TV-251","0","230","270","","3078","12634140-B501-4CC9-AC4D-B39A787D1C80","0x00000000002C5180" +"9987C318-9771-403D-9767-0042DD9D1230","","AB-0132","0","965","980","","2666","69711A5F-5B7C-469A-9741-B3C039F9AADC","0x00000000002C5181" +"D04EB6C0-BEF6-463A-96C7-B828B4DF10BF","","BC-0198","0","280","300","","5706","39629AA3-43ED-3646-BC9A-B3D1D3BE2050","0x00000000002C5182" +"1E679B3A-A163-45CA-82D7-15BD5858B60D","","AB-0145","0","982","1599","","2679","0280F72D-0E54-436C-837D-B40A5584AE06","0x00000000002C5183" +"CADAEA9C-171E-4D2D-98D3-C89198FCB66C","","NM-24998","0","141","144","","3566","96B8D5FE-BE6B-490C-9956-B40E13CB4644","0x00000000002C5184" +"FC833FE3-BE55-419A-B0F5-63AF296E284D","","NM-00886","0","192","202","","2914","2BDA64A6-0635-420E-9CBE-B413D6050A1D","0x00000000002C5185" +"F09A4C5E-94D2-4130-837A-70E4E8723E9F","155465","TB-0005","0","12","24","","1238","82675C81-FBBB-47A3-9A9D-B41AF192851E","0x00000000002C5186" +"438E6A4B-A91C-413C-A382-B3257F61D6AF","33369","EB-659","0","350","370","","705","9EE611DE-FB06-46FF-8E32-B4371A6D2D85","0x00000000002C5187" +"908164A2-851F-47D5-955F-4CD6BD7020AE","","NM-24921","0","206","224","","3594","6257C683-B726-4294-A9AC-B45DC9705FF7","0x00000000002C5188" +"94586F84-93F3-436E-8E25-D5275D2103B3","78870","SM-0233","0","40","80","","839","6740E82E-A2D9-49B1-AC5A-B480F3AE16F6","0x00000000002C5189" +"71AB03E4-CDED-46AD-AAF8-EA5A91F5A0E5","200","TV-180","0","380","440","","1099","52628B3D-1CA7-4543-B70A-B4928DF700C0","0x00000000002C518A" +"292F5FC4-EA5C-4233-8CFA-33B58EE09186","402","EB-398","0","130","150","","455","2898F42F-A4C2-45EB-A0E2-B4A5C966874B","0x00000000002C518B" +"79F04CBA-BE04-4B87-BCE4-5C723E87555C","","TC-258","0","128","140","","2131","55DAB4CF-90AF-41B4-B4E9-B4A88AC4BC39","0x00000000002C518C" +"E45450D0-8C9A-4DFA-BCC3-726E555F2C87","","NM-24776","0","310","334","","3647","C9CDE644-99DC-4997-B203-B4BE06E39874","0x00000000002C518D" +"7331D91A-D8B2-BE4C-8278-ED9A63A0B9E6","","WL-0243","0","416","495","Open, uncased hole; limestone","5672","B51CD19B-17A3-ED4F-AB19-B4C080023650","0x00000000002C518E" +"4E09A43F-F688-4B4B-9BBD-12023AED5566","303","EB-299","0","1300","1330","","374","38661164-12B1-4C4D-9821-B4CD152A2836","0x00000000002C518F" +"EF930E18-215A-AA47-80F3-132E493A62FE","","WL-0123","0","116","119","","5462","82E2B7B7-80D6-9049-848F-B4D610714468","0x00000000002C5190" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","33411","EB-692","0","118","123","","742","D3CFF57B-2302-4A60-B7AB-B4F4D832A32E","0x00000000002C5191" +"825E8EE4-2187-D54A-AC69-0EFC427E0F98","","PC-078","0","190","220","","5376","87653E3E-D91D-8F40-B8C9-B52650F4A3CC","0x00000000002C5192" +"4E96B9C6-F28A-4592-9618-C8939DBB6A0D","33298","EB-596","0","565","585","","641","03C35A8E-ED82-4B1E-A4EA-B5314839D0CE","0x00000000002C5193" +"F6890D0B-D3F1-401D-9C03-580DFBFA839E","425","SA-0139","0","100","150","","864","E638A2EA-EDBB-4268-9DA0-B53C704A48F6","0x00000000002C5194" +"71E84734-C890-43B2-9DAC-FB42537712C6","","SO-0233","0","45","50","","3237","FF0A530B-1F4D-4B6F-B37C-B5451B200F28","0x00000000002C5195" +"EA1B7CF3-F645-4B7B-836B-9A36A5ECF20D","177","EB-176","0","580","640","","218","DCB92ACC-C8C4-4DEC-A8B8-B569CB3F898F","0x00000000002C5196" +"23F2F99F-8EA7-754B-83EC-21FDE2A6CC0A","","NM-28337","0","590","650","","5511","BBB30DAB-2E1E-DD49-9F26-B58A16727758","0x00000000002C5197" +"272025D9-3C49-447B-8EA5-436258E3CEC2","174","TV-154","0","20","30","","1083","EA6817A6-9124-4876-B735-B596EB498A0D","0x00000000002C5198" +"C58CEB81-FD4C-214A-B0B4-E51BFB6FCCD0","","WL-0155","0","545","575","","5680","E010AA39-41A0-A248-86A0-B5998826FCBE","0x00000000002C5199" +"1D114D39-0DD3-44C1-B70F-D829F0A142AF","","NM-25417","0","317","341","","3772","13698E76-D739-4C93-B733-B5A1D2C23F2A","0x00000000002C519A" +"E993A486-38AA-4122-B72D-5A634B958145","86","EB-085","0","688","715","","101","E81C5C23-8284-45CF-AED0-B5A45A12C1F5","0x00000000002C519B" +"9784A97F-8371-4B27-BA9F-00294AFDD11F","58","EB-057","0","310","430","","67","04DB7DB9-CA82-4C21-A9A9-B5A9EF201997","0x00000000002C519C" +"02B87432-CA6E-4013-A657-42BD0571FD31","","NM-26908","0","200","220","","5292","F4E79304-A4D4-C141-BBC5-B5B14A4A5613","0x00000000002C519D" +"627D1560-4783-464E-8A38-B845FD0A26F5","","AB-0077","0","10","40","","2618","C162294D-21B3-4B6B-8BA6-B5C0858FBD08","0x00000000002C519E" +"00499383-82ED-4B81-9CDC-6FB0E138953F","230","TV-210","0","815","895","","1119","43F1256C-F105-4562-BB80-B5C65DFAB2EA","0x00000000002C519F" +"80E877FF-E289-4DD6-918E-9FE5DCDD5B14","","NM-24800","0","11","24","","3638","674201B1-1FE7-4EF0-96E7-B5EF8590072B","0x00000000002C51A0" +"BA035273-FAE2-4531-AF2C-4BAB46DB32C2","","NM-25073","0","134","141","","3484","14B50DDC-9AE7-462F-BE21-B5FDBCD7C6C8","0x00000000002C51A1" +"8193AF2A-6DC4-4C21-83EB-9857B1032100","","SV-0060","0","420","460","","3361","02DD8904-F305-45B4-B3B2-B61C292AE859","0x00000000002C51A2" +"03F33514-EAE6-4507-AE04-3DF222B0F824","33586","SM-0077","0","40","100","","796","16858A07-A5A1-4CD2-80F1-B62493FA4F3A","0x00000000002C51A3" +"30C39AA0-5D79-4DC8-B32A-59F17ACB7FF8","","AR-0123","0","55","60","","3085","EE61EF4B-8096-4544-B77D-B6305E2BEE43","0x00000000002C51A4" +"457D95A9-C615-5C46-B1A8-1952F0F86720","","PP-038","0","70","110","","5243","D2133AD0-6EDB-8F4D-963A-B65EEB65F74E","0x00000000002C51A5" +"050A486B-57E8-489E-8D84-343019D8A8AC","40","UC-0024","0","164","180","","1318","4A01C887-A7DE-43D2-AFD5-B66D691C1BD7","0x00000000002C51A6" +"C2D23159-49E1-4E00-AD4E-89176B64852B","","AB-0044","0","40","45","","2592","BBBABA41-0AE2-4A6E-9849-B673F2D61618","0x00000000002C51A7" +"3E27FD3B-6D34-4321-94CA-C2B48383681A","546","SA-0318","0","0","150","","882","A67162AB-BB3B-49F4-80C1-B675AFF92ED3","0x00000000002C51A8" +"C785775F-ECEA-4ECC-AEE2-6A47ECA7AD71","366","QU-037","0","420","450","","955","AFAC0CD6-4B10-4F06-8FC5-B675C9C76B0F","0x00000000002C51A9" +"08378379-777C-4EA2-9959-FA604124EBD0","14","EB-013","0","170","200","","22","4BE32C7F-EDB5-4556-8C1E-B681FACDEBC2","0x00000000002C51AA" +"82D24790-228F-457D-B968-10CD0949006C","","NM-00450","0","150","250","","2908","BC398B79-42BC-4C01-9576-B69A9E7F526C","0x00000000002C51AB" +"5646FF49-5636-4EAF-9403-0391527C8DFF","470","EB-465","0","229","250","","535","439A9870-9527-4F61-B807-B69FD954F8BE","0x00000000002C51AC" +"4914CE9C-8F90-45C6-9CBE-21FB563C7117","","BC-0063","0","345","385","","4995","2D5E259E-309D-4FF5-ABF1-B6B614D8E1D3","0x00000000002C51AD" +"ED65DCCE-C438-4ECE-8AE8-CB5BA82388C3","33365","EB-656","0","400","480","","698","6B7FFEEF-4DBB-4B8F-B607-B6F286901E9A","0x00000000002C51AE" +"A7263075-B048-4818-A530-7832E1A85966","136","TV-116","0","220","240","","1055","EBD508F2-0D20-4986-8A59-B7074569D8AA","0x00000000002C51AF" +"657FD03F-6DAA-40FD-80CD-8EB49138B836","33299","EB-597","0","800","820","","644","F7054B20-FF9B-487A-B3AB-B70A5EAE374C","0x00000000002C51B0" +"E7EF19F8-0377-4EFA-9754-B70F4DC51E90","449","EB-444","0","300","320","","507","DC0659EB-1230-479F-95F4-B7115F23DB70","0x00000000002C51B1" +"CE5E8F69-3C63-4B58-B72C-5618BFC70007","","NM-24834","0","400","500","","3632","52180F1D-75AA-4B6D-BE52-B716FC365EEF","0x00000000002C51B2" +"EA01E45E-0351-4ADD-8DC3-2A8707CE8ECF","286","EB-282","0","256","296","","343","AEBAD457-D9B9-4C0D-B5EB-B725E9D1ABCD","0x00000000002C51B3" +"ED88220A-A850-489F-BDD3-344F2515FAB8","","AB-0083","0","550","800","","2623","747B6E83-DE28-413C-9C1B-B73852E72CB7","0x00000000002C51B4" +"99218CFB-8C26-4396-8EC7-B8807A8DC5DC","","QU-004","0","245","295","","1906","730F2732-2606-48EF-B31C-B7388C09CC42","0x00000000002C51B5" +"A034D8FB-786E-5542-9570-22F50CE91FBE","","TC-425","0","25","285","","5230","44C3E217-5796-C446-B426-B73FE15F8804","0x00000000002C51B6" +"A11122C1-AE0B-AC48-83D4-72C349C551B3","","AR-0222","0","28","34","","5468","AB8E8DAC-DA18-C448-AA09-B740DB413D20","0x00000000002C51B7" +"2AD3B0E9-1A79-462B-996A-C526A500F856","","NM-21381","0","60","100","","3834","208A182F-8AE0-41E7-8A2B-B74BB5614779","0x00000000002C51B8" +"C53BA703-28D9-A448-B806-D6A601C39007","","WL-0233","0","34","154","","5651","1D546BE6-EBD3-CC4C-B50E-B74F8AA7EB49","0x00000000002C51B9" +"24B83C28-E8A5-431C-8D9C-AC236908DFDC","","NM-00758","0","985","1005","","2900","721697DD-EB12-461C-857C-B75F8B48D03A","0x00000000002C51BA" +"38EBB610-0212-E24B-902C-4FBC540532BF","","PC-057","0","190","210","","5359","B2BC2435-CC7A-224F-A56E-B78A3FE91B07","0x00000000002C51BB" +"757F0F7A-E2AD-4A80-9EBE-DD79BEAE9C8C","380","QU-050","0","53","93","","961","3B1B7AC7-11FF-4BE3-8581-B790586A293B","0x00000000002C51BC" +"5501C3DA-00E6-40E3-A0CC-2A219D0B44D7","538","QU-151","0","84","89","","1023","A866EA37-A9A9-4B9A-AFFE-B7B0AE035EE9","0x00000000002C51BD" +"DF1CC0C3-D167-401F-95B7-6A3239392985","","NM-21368","0","260","300","","3833","B126FA96-1A67-4520-87F9-B7C76D791FAC","0x00000000002C51BE" +"2157857B-9957-8D4F-AA81-A2FA191A8446","","PP-017","0","70","85","","5238","C6ED770F-4A6B-B04C-ACEF-B7E7A72B731F","0x00000000002C51BF" +"D21F711D-1784-4496-8425-5170CB8064E1","487","EB-478","0","306","366","","557","CADDCFC7-D877-4E76-9E8A-B7EA9CD0EACB","0x00000000002C51C0" +"F06BE847-7C89-4CE7-BF7A-AA528ECCD0A6","","NM-24710","0","255","258","","3671","841AE69F-D4A3-47B8-9C7A-B8096DDE382F","0x00000000002C51C1" +"3E1E3E08-3D59-4359-BF7E-803CF8D4F251","","AB-0174","0","560","580","","2698","63E369DA-8D87-42CA-96F4-B826F5786D09","0x00000000002C51C2" +"CD2351DD-3BAB-4DAE-9A8A-FD67CC8ABC46","","NM-26875","0","120","300","","5239","5EF5A23F-DC8A-2D43-A01D-B82FB1EDE0FE","0x00000000002C51C3" +"599EB7E3-A4A2-459A-9569-A5353502AE00","","SO-0261","0","45","50","","3271","13738429-CC55-4995-853C-B82FEFF67C8D","0x00000000002C51C4" +"CE025933-6CD2-4548-9D32-FBCAD45BD508","33338","EB-633","0","1430","1450","","681","890A34B3-E128-44AE-9582-B83086A3F6C8","0x00000000002C51C5" +"2EC1DF32-7F8D-479E-877F-B0C2AEEA7F4A","","UC-0218","0","50","70","","2862","30D15C65-DEC9-470A-B00D-B830A95E0E41","0x00000000002C51C6" +"77BAA104-200B-4A7C-B7C0-247DB4C3D33C","","NM-25040","0","589","692","","3554","AC028AB3-706B-4B88-9C23-B8328ACDB62C","0x00000000002C51C7" +"E1BD348B-6371-4543-B575-A3E0C9EBF13E","","NM-10282","0","75","210","","3905","88CF5338-4B2C-497E-8CEF-B844FF21EDC9","0x00000000002C51C8" +"AA3DAFE9-D484-4BEC-93F0-CAD0C9B8B2E8","","SO-0170","0","4","18","","3168","88916E7F-8E6B-4463-BC7C-B8742F7E0EAE","0x00000000002C51C9" +"1D2F4D94-F4FA-4B8C-913A-667658206192","119","UC-0088","0","400","595","","1327","E2DEB440-E660-4592-BABA-B87F8BEB6763","0x00000000002C51CA" +"2E5899CC-4AA6-2245-AFC1-967AC47C0E11","","WL-0104","0","100","140","","5441","9107BAE5-B34A-F64B-B5AA-B8BFE4FB597A","0x00000000002C51CB" +"B967147C-3526-4FD1-A318-283217268BEC","288","EB-284","0","435","455","","345","8AF2DA1B-81BD-4785-AF79-B8C03E9AABF2","0x00000000002C51CC" +"0E3B6CF8-1F9D-4081-B62D-A0AE371F654A","","AB-0056","0","300","315","","2601","C87D8D51-1AD2-489F-B910-B8CCDD136727","0x00000000002C51CD" +"0AFAA229-A713-45E5-9CD0-30CC906C09F0","","NM-24788","0","327","352","","3640","29019905-21D5-4F8C-A332-B8CE0DC2476A","0x00000000002C51CE" +"595C3B1B-DC97-4348-9728-964B51BD95A9","","NM-06423","0","100","301","","5533","34F4E3CD-BC82-C349-9751-B8E614121E6B","0x00000000002C51CF" +"AE89D625-F83D-415F-846B-181250248C30","","BW-0938","0","1240","1340","","3116","CF722743-1E4F-475B-A376-B8FE6A579EFA","0x00000000002C51D0" +"682F3914-80E7-7248-8217-57635A75ADA4","","PC-117","0","460","470","","5409","E34462CE-8BD8-CA40-BA56-B900C93B9588","0x00000000002C51D1" +"8625573D-7FC8-4C54-9B78-82EA09029E35","","NM-06691","0","60","100","","5534","CFABCDC0-4C3F-694B-89E1-B905194CA2E6","0x00000000002C51D2" +"EFE79C0D-67F1-4073-BFD6-EC29E32D8AB0","","NM-24728","0","118","132","","3665","93ED34E1-5CF7-4E00-B028-B91A503D625D","0x00000000002C51D3" +"F798DEF1-9177-49EF-9ABE-2A467D2C715B","","AR-0102","0","18","23","","3022","43A39B52-9400-4F73-9049-B940BB7BFBEC","0x00000000002C51D4" +"9BAA44C5-2768-49D8-9DFB-73CA21DACBCC","","AB-0095","0","332","562","","2635","6327A25C-675E-4F59-A3A3-B9488EA1F04D","0x00000000002C51D5" +"2F1F6B46-A00B-425A-9A16-B8133C142793","33310","EB-606","0","590","600","","654","14183DA4-82D8-4A42-B34C-B973EE9B227B","0x00000000002C51D6" +"E652C8D5-809F-46A4-A91A-2B03262D0298","","NM-25102","0","652","695","","3478","E8D0A65F-CA64-48E6-84D6-B99497D64E88","0x00000000002C51D7" +"17BA7965-9F5C-4DE0-8DC2-1136F276E38E","66","EB-065","0","645","670","","77","0EE78580-3286-4155-B12C-B99A3253A846","0x00000000002C51D8" +"BD04EBC3-4F44-4B0C-9D03-9640C9453956","","SO-0158","0","5","20","","3156","7845D6B1-CEAC-4710-8110-B9A616D0D98B","0x00000000002C51D9" +"D06D8C6E-7FF5-414F-8E1B-DD543BE106EA","","WL-0115","0","125","205","","5476","C0EE8234-2C3C-C64B-9880-B9E3D4F8156C","0x00000000002C51DA" +"DDFA41BE-A2DF-408F-BCAD-86CBED88E572","147","TV-127","0","380","385","","1064","3B897A95-7C71-440C-96AB-B9E601547CA5","0x00000000002C51DB" +"3E816E4D-797B-444B-B46A-479BF6F44E2C","33348","EB-640","0","200","220","","690","C1259C43-C681-41D6-867D-B9E6A24D3065","0x00000000002C51DC" +"F90A5E9E-9681-4D61-B283-E9DA5EBA5927","33389","EB-677","0","160","200","","728","374D3DEA-510A-4504-9F16-BA27747D2F8F","0x00000000002C51DD" +"783F76ED-8715-489F-A9BF-425032C73587","78892","SM-0249","0","650","770","","847","641968BA-EBFC-4D7A-A6FF-BA396D8D8FB9","0x00000000002C51DE" +"683E5981-96DC-40E8-BDD2-A45F545C16C0","194","TV-174","0","88","143.5","","1097","2C896191-DEA4-4A9D-A2DC-BA47F2D2D3CE","0x00000000002C51DF" +"04426B19-6565-459D-83B7-F86776D4ECC9","","AR-0080","0","20","26","","3114","E35F276F-AFDC-4E95-B0D3-BA4C5B2D9FEF","0x00000000002C51E0" +"538195D4-4C22-43A9-AA97-3A9A0B45D4E7","","BC-0075","0","140","170","","5009","D98926E4-6E7F-4D97-BE90-BA59EA710C35","0x00000000002C51E1" +"092AC8FF-7F89-42DB-9751-AA69E84006CC","","AR-0074","0","8","18","","3023","5FB6C544-A8C0-4A62-89C0-BA5D4D1EE525","0x00000000002C51E2" +"9D9E2D03-FC98-4986-8090-34C7D6F82B05","33371","EB-660","0","690","710","","706","0ABD4B0B-D7BA-4E7C-B616-BA831F01F613","0x00000000002C51E3" +"1D26B8A0-EED3-4BBA-9F6C-4F77E2BA34B0","","NM-21280","0","140","160","","3822","D0D969EC-5988-46F5-958F-BAB06A0243D5","0x00000000002C51E4" +"B3B09EC7-3FC5-42B9-A18A-2CEEF28E9417","340","EB-336","0","1880","1900","","417","39AE8199-316C-4AEE-A8BC-BAD22C44ABBF","0x00000000002C51E5" +"E492EA2B-1D04-4798-B2DD-84CC05E8187E","270","TV-236","0","120","160","","1148","568ABE89-C340-4B89-A59B-BAD76D0AB1BD","0x00000000002C51E6" +"4D8AF5C0-F331-452B-8874-123FA338A209","59","EB-058","0","650","790","","68","D2AF5D9C-07E1-4019-9E38-BADA91338065","0x00000000002C51E7" +"0CC8B83D-8915-4A0D-832B-859E84F53DD8","","NM-25131","0","525","535","","3460","3C81F43A-A387-4B77-A627-BAE19DCBD00C","0x00000000002C51E8" +"19CC9502-7C12-4238-97AF-ACE69F766F40","119","EB-118","0","340","360","","149","5960C453-AA9F-40CD-8B9B-BAE6672A4704","0x00000000002C51E9" +"157DE72B-6859-4195-92DD-516A5F34B4A9","37","EB-036","0","72","74","","37","C6C676C7-E063-4434-B9EB-BAF8719FE7F3","0x00000000002C51EA" +"3342D988-13BD-4FBB-AE50-258516A1807E","448","QU-116","0","45","125","","978","3B268FB3-A198-4F71-B609-BB01BA75F9B0","0x00000000002C51EB" +"D81F94B1-1D06-4865-8607-589437E68AE1","","BC-0064","0","360","380","","4999","9E6387EF-4435-4188-AFDC-BB2ED1482E25","0x00000000002C51EC" +"C56515EE-74E4-488C-BBD8-D3B592A5334A","","SO-0238","0","3","18","","3242","1987253E-84ED-4C1F-8BE9-BB4A887A307C","0x00000000002C51ED" +"8561B7A3-FABA-40A6-8E80-E21A858973CE","","AB-0249","0","","","","5757","C52D57E3-A114-4C68-A4A5-BB5F49A6D868","0x00000000002CF38A" +"5F8D0B2A-02E9-4793-9238-935CB23CB587","","NM-24656","0","269","284","","3696","7828E302-5C06-477A-8339-BB614B530762","0x00000000002C51EE" +"B1B29061-FFF9-4045-835D-9165BD9F4C6F","","AB-0049","0","20","95","","2595","FA9DE772-F982-4FEA-8D36-BB818E9DA8A5","0x00000000002C51EF" +"32B0F43A-C595-4D67-8EE8-77FE0A119BEB","130","TV-110","0","238","258","","1045","007CCE91-E274-4B3B-8344-BBA2E764FF11","0x00000000002C51F0" +"5E5492DD-139B-7B40-A38D-27CF0AA27C24","","DE-0012","0","300","600","","5660","8FE9CDB4-0F3E-F841-B012-BBD2B24AC257","0x00000000002C51F1" +"4CFD5DC3-7019-4837-BC20-D1BFEA4D12D8","193","EB-192","0","25","45","","245","E94DE6B1-BF50-477D-88A3-BBE03147052A","0x00000000002C51F2" +"9C3FFEA2-F032-4A1B-88D9-0704EEFBE59C","","BC-0160","0","200","260","","5132","9137E5A6-6A11-4330-A500-BBF292555B95","0x00000000002C51F3" +"BEE0A6DD-C3F1-FC42-9CA1-F804435106C5","","SA-0240","0","267","287","","5172","8D2C103B-AADB-F743-9054-BC09F1E834AC","0x00000000002C51F4" +"66403802-3772-462F-8793-A1A4B454106E","155735","TB-0230","0","62","102","","1307","5ED9F236-2687-4840-B88A-BC186009B8A6","0x00000000002C51F5" +"CCE9C304-4D38-F242-82F2-BAE848C7121E","","PC-055","0","280","300","","5357","FDF39A41-EBDC-0946-8457-BC1C81C40F64","0x00000000002C51F6" +"8828F1E4-82C7-478C-8D17-05E2F44B5BC9","","AR-0209","0","5","20","","5590","5659100C-7B55-7C45-8F15-BC22EF5F6816","0x00000000002C51F7" +"88AC32BA-CD1F-4070-B9A3-E444A82EB9E9","","SO-0255","0","50","54","","3259","D6AC9E28-DFFD-4D85-959D-BC234CE43B7D","0x00000000002C51F8" +"922FD43D-143A-42F6-AC20-8758DAD6F8F5","534","QU-147","0","33","38","","1019","0773669D-554C-47B4-8327-BC318CF6B7DE","0x00000000002C51F9" +"B1FBD489-2800-4024-9EF8-21B043EE61DB","428","EB-423","0","590","610","","480","B5044AEA-E6CA-45D3-8641-BC6361112BD3","0x00000000002C51FA" +"348D8FCD-EEDD-4A07-A82E-E47490EF0E46","33589","SM-0080","0","160","180","","798","6426E085-6E29-4F55-BEC5-BC7B07E1D19F","0x00000000002C51FB" +"71926012-0CFC-E844-9CCC-B2EBE43BD453","","WL-0062","0","25","45","","5220","519648DC-C165-4F42-AA1F-BCB1E4E275CF","0x00000000002C51FC" +"876A4BBB-0C60-D944-9A2C-EE0D18337A83","","WL-0065","0","70","150","","5222","4D7343FC-3025-BB4B-929C-BCB29600816D","0x00000000002C51FD" +"247DF468-A161-9F4D-BA27-8BB70A40F392","","TC-442","0","115","155","","5237","93314DEE-987B-8A4F-9194-BCC79E757CE2","0x00000000002C51FE" +"73516B06-2856-425C-A45C-E7E13B7542A3","33332","EB-627","0","1080","1100","","675","93DF95F1-F79D-4182-8BBD-BCC7BE3A2C6A","0x00000000002C51FF" +"9592418E-4447-467D-81F1-DA8E44AF7D16","","SV-0103","0","310","350","","3400","1001B7C5-3C01-48AC-9D7E-BCCB02D67940","0x00000000002C5201" +"7B7326A6-070E-4AD6-807C-3C16ABAA615D","145","EB-144","0","63","78","","178","191CB5CD-916E-46B4-B25A-BCFC92F499C2","0x00000000002C5202" +"6D81C9B8-C75D-413F-9560-9FB0E347BBEC","","NM-25936","0","87","89","","3884","5652BA24-413E-4BF0-9CF1-BD05E0B9FED3","0x00000000002C5203" +"AF0ED497-7888-BA48-B02C-B52C805B3A64","","NM-28317","0","120","160","","5498","F23532F6-1B75-F74A-9396-BD246643D0AC","0x00000000002C5204" +"3D859FA2-023D-4778-83C8-92706799B549","","AS-025","0","100","140","","1518","23D41C42-A54C-4D0F-98DF-BD3F2C5991D7","0x00000000002C5205" +"7F3F49E0-51D0-4790-9FC0-FE2C7CC68E25","","NM-00253","0","0","290","","5529","47E567C6-B1EA-3A40-87D2-BD4DC89D7274","0x00000000002C5206" +"454C7F47-5965-4DC4-8645-51A44178733A","","AH-109","0","500","560","","1796","32D94C6C-BA4F-4237-AADF-BD760FEFF740","0x00000000002C5207" +"A0E45379-30EF-430D-A9D8-55FAA0457273","","SV-0007","0","240","260","","3294","1500E293-43C0-43E8-B8AD-BD7826AA1BBD","0x00000000002C5208" +"DE156F4E-8959-40C1-855D-CFD2A383AEBC","","AH-050","0","620","660","","1604","D6FA22D7-CAA3-42E3-A1C7-BD89BBEED984","0x00000000002C5209" +"8A73AD94-51F0-4A34-87CB-27684552C933","289","TV-255","0","180","200","","1162","3DBD028E-7115-4E8C-A122-BDA4140E01C0","0x00000000002C520A" +"828CD22F-7723-4FDA-97F5-3760361F96B5","","NM-26911","0","103","125","","5057","40251563-86C6-4A8D-854B-BDA5F9F3CF1F","0x00000000002C520B" +"348D8FCD-EEDD-4A07-A82E-E47490EF0E46","33589","SM-0080","0","280","300","","800","E3BE5CC6-0682-4656-A37D-BDB1F95EB8E8","0x00000000002C520C" +"3FDBF118-7EB1-4680-AC63-64092EB935EF","155555","TB-0092","0","90","170","","1270","9F3DE72A-1120-44BB-9CFC-BDC6125545C8","0x00000000002C520D" +"DDDB523A-500C-6148-A075-76A2127F583B","","WL-0213","0","555","585","","5642","293B09D2-BD55-4748-8E6B-BDE30CABBE12","0x00000000002C520E" +"89293004-E6D2-48A6-9178-5E5D7D8C034F","","AB-0113","0","698","703","","2651","04A98878-A5DA-43B3-A690-BE085CCBD4C4","0x00000000002C520F" +"75A1FCAB-7FBA-4045-8124-EB4C848F0AC4","399","QU-101","0","137","142","","1026","A3D564C9-9C95-48BA-A00E-BE1682794D3E","0x00000000002C5210" +"041DD833-8363-4DEB-A388-4B04636B5347","278","EB-274","0","700","800","","333","D060DB6A-9551-4E94-A3EC-BE246878CC5C","0x00000000002C5211" +"023368B0-BFB1-4CAD-950D-4349ABC61D74","","SO-0240","0","79","84","","3244","CEAA0962-33C6-4733-8BD7-BE3482DEB641","0x00000000002C5212" +"E29EF07C-0B6B-4B55-AEF7-FB9F598CD055","","QY-0566","0","50","110","","2983","8104367D-9887-43C4-8DA7-BE366ADDCD41","0x00000000002C5213" +"5FC7CC80-83EB-CA48-BDE7-08178603D1EA","","NM-28279","0","25","62","","5433","B07BE3A7-A49D-6D48-87BA-BE3C2D40BA56","0x00000000002C5214" +"8A8D77D5-A188-4D80-A798-A53C4E90B1B2","","SV-0049","0","200","220","","3347","6F9D9E4C-F406-4564-97C5-BE64D1A31E0E","0x00000000002C5215" +"00FAF079-7E2E-4D73-95D4-FAB3B9183A6F","","BC-0057","0","175","225","","4992","F01ACC3C-3BCC-4B85-80BF-BE7274C25BDE","0x00000000002C5216" +"491EE5C2-F7F7-41B0-93F9-C493A0128BCC","","BC-0179","0","420","440","","5151","1221FABB-8B3A-48A9-96BA-BE8DA8746077","0x00000000002C5217" +"8C7F8F00-3C99-4B94-BC88-DF44A2E14EA3","","NM-23925","0","40","60","","3866","B07B8476-ADDE-4F99-8305-BE9332B669D1","0x00000000002C5218" +"94E9947F-EF22-4785-8549-66F35B3B08B2","","NM-26959","0","302","317","","5095","379145AF-7B7E-4B08-8F57-BEA2351F6BC2","0x00000000002C5219" +"782BD36D-C337-455B-81F7-366429D300DA","","BC-0024","0","65","125","","3920","67319C0A-0A04-4EB8-9F05-BEA2892D7359","0x00000000002C521A" +"15434E3C-06AA-4133-8074-67E5EF235624","","SV-0107","0","250","270","","3404","21DB8BF6-70DD-433E-B790-BEAADEE20EC5","0x00000000002C521B" +"6677FA7B-4086-4268-B4DA-32547A513485","155468","TB-0017","0","400","585","","1241","550AF6E9-3357-461A-A7C7-BEB439100FD3","0x00000000002C521C" +"EA199671-4F25-4B8C-B567-D4885B1694A1","291","EB-287","0","757","831","","354","DCC3234F-111B-498D-8149-BED1E84F9673","0x00000000002C521D" +"61755B32-2699-4C7C-83E5-5A299A57E092","","SO-0130","0","44","49","","3200","51E30702-64EF-4302-BDFB-BEECA7EA21D5","0x00000000002C521E" +"BA035273-FAE2-4531-AF2C-4BAB46DB32C2","","NM-25073","0","262","282","","3485","82ACA4E6-4A86-4B37-970B-BEF4A649E036","0x00000000002C521F" +"F81BB22F-2439-41B7-8370-97D88194E40D","","SV-0121","0","240","260","","3421","4AEA5C22-223D-48F1-A769-BF1D903F7EA6","0x00000000002C5220" +"559C4E54-44C5-4060-9ECF-68B4F31BF39D","","SO-0222","0","44","49","","3226","F3BA8FEB-DD6D-4953-9EC5-BF1F111950CF","0x00000000002C5221" +"F2CF0E35-3EEC-4A2A-8058-C0243B9F9F90","","NM-24355","0","360","380","","3596","AEFDC779-8397-4B67-AE6B-BF3B16CDCEF0","0x00000000002C5222" +"D3FB5488-3D6E-4B68-84A1-964D5E8827E6","","AB-0114","0","260","320","","2652","92AA260A-9496-4A8E-BD3F-BF743BB7879D","0x00000000002C5223" +"CE7F7364-F4F1-46AC-83F7-8EBD8E7D91B4","","TC-208","0","305","335","","2106","B622DEF2-E567-46EB-AD59-BF74C6D0270F","0x00000000002C5224" +"D774DC4C-52B9-4770-AC9A-ECF370A44161","","NM-03900","0","0","101","","3100","2CB1F3F8-5736-4448-9913-BF7A25BA2E56","0x00000000002C5225" +"AE850EB9-B875-45DA-B765-5C709110AA21","","BC-0168","0","420","440","","5140","887FB8CF-34A1-4B3D-BD86-BF7DD3BF77FB","0x00000000002C5226" +"33FDCF12-A5A3-4497-BEA0-5A9527A7D736","","AH-092","0","470","500","","1779","C31FEE0D-8C6A-4DAD-8AE4-BF813EE92F75","0x00000000002C5227" +"B6B1575C-A34C-476A-8CD8-ECA034EC668E","33380","EB-669","0","500","580","","716","11560E34-DB6E-40C0-B6AB-BF982CB0569C","0x00000000002C5228" +"BE193094-0967-984C-BDD9-E22E30CA18CF","","LC-039","0","255","275","","5449","D23340F8-06AA-7041-A2C8-BFC92C8BEEB5","0x00000000002C5229" +"8EBAA17A-64E8-4E96-8D6B-7BB6D819FE6D","","NM-02082","0","200","310","","5581","94949327-E7B1-3949-9515-BFE0F2203517","0x00000000002C522A" +"6D615E27-E392-438B-A481-E32CAE1FD782","","SV-0018","0","380","400","","3303","16E7CAA5-3D28-421A-BBE0-BFEBCC4A6740","0x00000000002C522B" +"FD6C6E58-158E-5E40-BB0E-9143C82559E0","","PC-013","0","130","140","","5326","DD1B0288-FE13-4847-AFC9-BFF126DCB4A5","0x00000000002C522C" +"45C5CD4E-989D-4939-B928-9C4EC7A27F37","33250","EB-509","0","251","271","","587","014A85BF-B49B-47D6-AAE4-C02A720ECDA8","0x00000000002C522D" +"254073EF-CDB9-49B3-9F95-0A71F2912177","","NM-24653","0","180","225","","3699","D3C21F93-8C45-40B5-AC34-C03ADD1B5F83","0x00000000002C522E" +"F640BB92-6AF9-41D4-BD2F-5C866128C6F6","","QU-176","0","395","435","","2863","BB4212F8-C449-464D-BF09-C0573673CF82","0x00000000002C522F" +"3349A8F1-E3BC-4829-8B96-EF6F46C50AA6","","TC-249","0","513","536","","2045","6C8DE984-4BE6-4C73-A9A9-C057CB309532","0x00000000002C5230" +"21FB0E10-147F-4A31-9ABB-15DE6C4E49E2","53","EB-052","0","210","280","","56","9D144087-839B-4218-8C4A-C06C9BF4BDC7","0x00000000002C5231" +"87D1580F-C467-2946-A786-07A91F09AF11","","WL-0250","0","248","293","","5699","9A05179E-4DF6-8744-80C2-C07E398D8F75","0x00000000002C5232" +"BBA39325-319B-4912-8437-4281821AAFFD","","BC-0018","0","110","130","","3917","BCE3B078-D07B-4EDE-8F65-C086B0BA06B4","0x00000000002C5233" +"FBE0A2AB-CA0D-42B1-8C39-614DF55F573D","","NM-26872","0","120","180","","5240","46BA088F-20D9-7346-A90A-C090795D374B","0x00000000002C5234" +"2A4C2CDE-57DE-469A-9B35-44B02888BE58","","NM-01314","0","595","615","","3440","90672154-AC9D-41A3-BD96-C095A5C92274","0x00000000002C5235" +"3A6FBD14-F56A-4A2D-86F8-717450A19840","312","JM-013","0","130","329","","892","EDD4CA76-CD68-4FFC-9564-C096572502AF","0x00000000002C5236" +"88851353-FBA8-DB49-9C6B-4B962EC9EEC4","","WL-0069","0","150","300","","5226","10BEC619-7B1B-694E-9031-C0B05AA0C7A0","0x00000000002C5237" +"3747F809-9911-499C-A3BF-3B0D04ADD95C","365","QU-036","0","605","835","","954","0C4A8751-F891-424D-A043-C0CA50E97DC0","0x00000000002C5238" +"A8118712-5EC5-4532-8D7E-32D1EA0FBAEC","","TC-287","0","230","250","","2152","85D873B3-B606-43C0-94E0-C0CF099F844A","0x00000000002C5239" +"01535DFB-D713-244F-A9A1-E04B9ED102DD","","WL-0286","0","343","345","","5734","BB4986D9-1CAD-144A-8624-C0DA454F44D5","0x00000000002C523A" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","629","638","","2924","C9798721-F698-4B04-A79F-C0F9EAC717DE","0x00000000002C523B" +"5210B475-DD5C-4A4D-AAE1-34A25C468E83","422","SA-0136","0","78","98","","862","DEE40B75-48F2-417B-8BB6-C1071FAD33AB","0x00000000002C523C" +"8BD1E860-22DC-4D75-B13F-E82B860EE756","511","SA-0207","0","840","940","","875","9F76A71C-9139-4F3D-B50A-C1102B291E98","0x00000000002C523D" +"593A6885-3589-4AFE-A5AF-3D89BB0DFC75","","SV-0056","0","280","300","","3355","64555D25-C8D7-4644-B2AD-C11AD75D4225","0x00000000002C523E" +"BC0A6E6E-AC2D-4CDE-9D5B-B6AB1446096A","155578","TB-0115","0","200","260","","1281","C8E72A7F-56C1-46CE-BEF0-C12A0FCCDDC4","0x00000000002C523F" +"E8803045-8434-4AA5-AA97-4E15D972BA85","","AB-0133","0","390","400","","2667","703A0248-A1AB-4552-B11E-C14B355F4EF2","0x00000000002C5240" +"FF4BD5E4-05A9-4069-A111-0FA118F5C68A","","BW-0948","0","","","","5776","8C6A28FA-5CFE-4ECA-A515-C155568F75E5","0x00000000002CF3E9" +"97425580-6640-49EC-ADFC-BD38B75E5296","","NM-03060","0","173","212","","2812","3DA2753B-3CAE-4697-A5CB-C15A40E8C517","0x00000000002C5241" +"32CDE65B-26C9-489A-B97B-10BBE04E7B95","","NM-24740","0","390","411","","3660","5DB40C0F-DAD4-48CA-BB7F-C16597164F5F","0x00000000002C5242" +"4EFF9A1B-3D14-4EF1-AC5C-349AE8F61278","","QY-0371","0","152","182","","2967","DB54D4D7-108F-48E6-8DF5-C16877DE2203","0x00000000002C5243" +"EF054D1C-A82B-4D4E-8665-026849D04358","368","EB-364","0","194","214","","249","F17F491D-799D-40A4-9D7C-C18DFC79DB28","0x00000000002C5244" +"0B734823-1B8B-0447-8E98-C2FF763B3CD9","","SV-0145","0","380","400","","5483","85EB9C3A-3D8F-A442-B8C9-C1A89A9E77FA","0x00000000002C5245" +"4374F641-A786-E447-BBE4-FF0C65EB3B78","","AR-0226","0","45","50","","5470","BC633673-B341-CD40-ABE3-C1AEE37B11A9","0x00000000002C5246" +"90671ED0-8148-E24F-B3B3-27AEA061E191","","PP-063","0","137","167","","5251","29FF3B44-CA0F-5740-8D1F-C1C1FB528606","0x00000000002C5247" +"BCFF6A03-9655-412E-886A-61783A94E5B0","","NM-00391","0","115","170","","2876","7F4404EB-643A-4AD4-8FF0-C1D391456BBA","0x00000000002C5248" +"A1C4B610-4105-481B-ABF7-746792531448","298","EB-294","0","400","600","","369","A9A3C40C-ABB0-47AC-975A-C2156DE826BF","0x00000000002C5249" +"8F895269-4739-4061-9AEF-115ECF0F1D89","118","EB-117","0","380","460","","148","38767A28-2E49-4F3F-9811-C21752BEBFE4","0x00000000002C524A" +"7A446BFD-497D-456D-95A7-69E60B327805","","NM-04574","0","218","258","","5531","602DF960-A545-DB43-93EE-C225859E41A6","0x00000000002C524B" +"81841905-F218-48DD-B09D-C50AF7B87924","","NM-01180","0","305","410","","2804","2273A204-D0C4-4E00-824F-C229158AD025","0x00000000002C524C" +"A4370D62-A274-4FFA-9FEB-C07DA315A931","33510","SM-0066","0","28","48","","788","36F12B8D-E28F-4E61-B297-C243CE71B3FC","0x00000000002C524D" +"DF2AA4F9-D9A6-4316-B695-764F32604ED6","","NM-03329","0","114","119","","2821","2A8F3ABB-F157-4DDE-B583-C2627745DF11","0x00000000002C524E" +"AA01E5AF-4E4D-4584-BAC2-E59A963A2B66","","BC-0193","0","230","260","","5164","C3831A58-BD44-4195-96BF-C26B4D5D69A6","0x00000000002C524F" +"5B80DF9E-41E6-504D-A581-8704B6885976","","WL-0279","0","260","300","","5716","5D2938B3-A52D-FB43-B639-C28AD3D68AD6","0x00000000002C5250" +"D3650168-15E1-4F96-9749-695A92D8C23E","","SV-0099","0","140","160","","3397","C20839F2-33F4-40F1-B3AF-C290AE7D6632","0x00000000002C5251" +"F7DFB8A0-CDD8-496F-8775-2B77C3DE52BC","21","EB-020","0","520","535","","30","E1B1556B-EF06-487A-B1C9-C2A406E4FE54","0x00000000002C5252" +"2BC326F9-468E-4D9D-A8A9-0D6856BD8F1E","","SO-0131","0","2","16","","3201","AB2A6FB9-F727-4242-B39B-C2B9358D51A7","0x00000000002C5253" +"7618616E-7660-42F5-AC30-D7D1864378CC","348","EB-344","0","360","380","","422","A509DCEC-E0A9-4321-A38F-C2C330316900","0x00000000002C5254" +"9311525A-1996-4775-ADC7-94130E09719E","330","TV-288","0","820","980","","1197","0174045E-2A5C-486A-B019-C2C8013426B7","0x00000000002C5255" +"1C25EDAD-0B30-4B82-A552-896F9AC94FFA","104","EB-103","0","152","156","","128","E6F97FAF-59E0-475C-B5D0-C2F046C7D9D6","0x00000000002C5256" +"B01798F3-B061-40B5-80C9-E2642FC14BB3","","NM-25082","0","680","860","","3482","085EAFAD-8F2D-4B38-8D27-C303673514D7","0x00000000002C5257" +"41FDE0B1-2181-E940-8A87-8A67950E9BF1","","NM-28325","0","240","280","","5503","5151F5E4-B843-1240-BCD3-C3225DF55941","0x00000000002C5258" +"6EBF943F-3340-44B5-8E3A-70D98B454BEE","408","HS-048","0","22","42","","1209","7155C354-6F28-496A-A6BD-C327730740CB","0x00000000002C5259" +"67CECF28-E4D6-4E60-A434-45CBF4BC3674","","BC-0258","0","180","260","","3544","6DB3C7FB-C159-437C-B990-C32B31FF7666","0x00000000002C525A" +"92CC2B8A-7677-4C96-974B-2AA0DEB1A15D","","BC-0049","0","50","190","","4984","F207FF5C-F52E-447E-A8ED-C340C17077DC","0x00000000002C525B" +"D573FAC8-6C08-44EA-B1E5-6EC8E899470D","","NM-24350","0","460","480","","3600","886DD79F-43DF-4118-9C78-C3547231D4CF","0x00000000002C525C" +"03455212-26E0-4DC0-AC76-5441F8CC4F86","","SV-0109","0","300","350","","5197","02001886-D8FE-E74A-9193-C355488A77D0","0x00000000002C525D" +"76ACF5B3-94BB-AB4A-9E8C-95CE024EC369","","PP-010","0","200","220","","5257","653B7CC4-A631-8246-ABE9-C3792A50CB39","0x00000000002C525E" +"33AA79C0-D2C0-4A35-B6AB-7EE8A05B4A97","33352","SM-0022","0","140","200","","748","AE712135-7F4C-4125-BFC8-C3838584687A","0x00000000002C525F" +"6BFD8B97-D5BF-4626-8E52-4990431C30A9","","SO-0221","0","5","20","","3225","C92D87FE-29E4-4EA6-A25C-C3905C520555","0x00000000002C5260" +"061DF41F-C811-403B-A2AF-FE20CC66BE4E","303","TV-268","0","20","215","","1174","6204C201-77E1-402E-9FCB-C392B54FB67A","0x00000000002C5261" +"3C1C504D-C14B-4478-B6DA-9F350E3E3413","","NM-09502","0","78","253","","5555","C2775E14-13D1-1B42-8B7D-C39603600930","0x00000000002C5262" +"530B7F03-CE98-4CDD-8704-3E7B81375B53","389","EB-385","0","210","740","","442","F652C647-38DF-49EB-B173-C39D6FB26926","0x00000000002C5263" +"52FE6ABF-15AA-456B-B2F6-75ACBC206B84","","SM-0040","0","355","395","","3859","B4A7E6B8-7721-4539-8EC0-C3A184E131B5","0x00000000002C5264" +"21BD3E9E-3B13-4E4A-96E9-4CED68B809ED","178","TV-158","0","180","280","","1086","63A17A34-A2FC-42D0-A83A-C3B8D3C41CFE","0x00000000002C5265" +"71BF3525-1F66-A249-B0D5-3752156B4D05","","WL-0282","0","433","633","","5722","FECBC291-A02C-2246-A762-C3BA442483AF","0x00000000002C5266" +"F82EEE0A-6C6D-4ED5-9187-F9ED0E6A8B69","","NM-21170","0","400","410","","3817","A000002C-E2B2-4E96-A5AE-C3BD3190B294","0x00000000002C5267" +"9334CA6A-FE02-49E9-BFED-7E3E9008D4D0","417","QU-082","0","65","100","","980","868A8007-20AF-493D-B0CC-C3BD65E835BF","0x00000000002C5268" +"09E36C43-B8BD-4712-B8B8-BD62691E476C","","SV-0021","0","120","140","","3308","1449BE5A-39B3-480C-B49F-C3CCC104AED6","0x00000000002C5269" +"72786592-067E-4B58-BAE1-A429F4266B8E","568","GT-016","0","95","135","","1342","25A2D26E-CAD1-4D10-84DC-C3D1659113BB","0x00000000002C526A" +"E993A486-38AA-4122-B72D-5A634B958145","86","EB-085","0","741","768","","103","9874D5ED-EE4E-4D52-9DC5-C3E3B3786C4C","0x00000000002C526B" +"B2191F02-1030-4EC2-9945-B9E9D37FFAC6","","NM-26960","0","95","115","","5096","3FBAD432-D86C-420A-89C4-C3EBC74306BD","0x00000000002C526C" +"8BE3AB5D-1662-47F0-A33B-92EB4A4B41D2","33597","SM-0086","0","260","300","","805","6D939454-01AB-446D-8464-C3FA70B22FB6","0x00000000002C526D" +"AC04BA00-1547-4602-98BF-3787B97EBD43","352","QU-024","0","78","118","","952","FB61C10E-3568-42B7-B351-C400849590F5","0x00000000002C526E" +"2ACFA6B4-3470-074C-80DD-B64425FDA7FB","","WL-0237","0","30","55","","5745","5B6D24F4-6CA7-FD4E-B711-C40629AC8D7C","0x00000000002C526F" +"7FEE0937-B92F-412A-A3E2-562968C2CAAB","527","SA-0220","0","435","475","","879","D1566812-0096-466C-96F5-C431BA4FDDA4","0x00000000002C5270" +"224F61BA-85E9-44E3-9B63-8B7C5A91DB32","109","EB-108","0","820","840","","134","CF5234F6-D35F-4B79-A875-C4330F7DCBF8","0x00000000002C5271" +"CDD44303-21C8-4136-A754-9C4F5F43C7E4","","SV-0087","0","280","300","","3382","9D79A49F-259D-4369-8DCA-C436FF658546","0x00000000002C5272" +"5E82DE32-F500-414B-B64A-44B7F8404364","","WL-0309","0","360","400","","5744","F0E45612-189E-644C-AC2F-C43DA20E4E7B","0x00000000002C5273" +"B10268A1-36EF-4C38-B735-E1A9E5DC99FF","","SV-0091","0","150","190","","3387","620DAE4F-7511-479F-99C6-C442CF1E8E13","0x00000000002C5274" +"093C4B93-A8B0-4A1F-88C9-C94D1722B752","6","EB-005","0","520","530","","10","C1E12BC7-7888-48F6-B6BD-C443F081F7FC","0x00000000002C5275" +"02D4CC66-3B9B-475B-B2F8-095D6D1945EB","","NM-01254","0","692","683","","3075","D3E577DD-7AAC-4E47-95D2-C447732C95EC","0x00000000002C5276" +"6CED4734-4E7A-45DA-A5D6-6ECB13B5A803","","AR-0064","0","10","15","","3009","08F07FE1-C858-4AB3-AB76-C449E1F438EE","0x00000000002C5277" +"52EA0E73-6E5C-48CE-968E-4E679A9D9DA4","","TV-302","0","1000","1180","","3123","5F0BE089-1489-4B05-BA33-C454FA3F4BD0","0x00000000002C5278" +"43CF4BF2-0BF2-4859-B4EF-A21BCA7118DB","155672","TB-0167","0","2","176","","1294","12653820-9F98-4521-B2C1-C45EE9FFD044","0x00000000002C5279" +"1503986D-98BF-4154-AAEB-57BBC50CDBD8","","NM-23679","0","275","285","","3930","0796CB35-5E07-475A-A88A-C4893A2B0DF0","0x00000000002C527A" +"88480C51-CEC7-4CFF-80CD-6E19D262026C","","NM-02116","0","100","225","","5597","905DFDBD-853B-5C49-8BFD-C4B3B00FC752","0x00000000002C527B" +"39CE4E6A-61A2-4366-B24C-7D86784C8FE4","353","MG-025","0","225","325","","934","DA40CD22-B1C4-4A28-AE1E-C4F49686EFF6","0x00000000002C527C" +"C69F11DA-5B6E-40C6-8CCA-B2C42B6D9F27","296","EB-292","0","667","688","","367","B8E12F21-A082-4411-91B8-C4FDB857EA3C","0x00000000002C527D" +"C297586C-32FE-48F5-8C82-6E883DD6C624","33322","EB-617","0","282","302","","670","8BEED59E-EDBA-4929-979A-C4FFDFB77DC8","0x00000000002C527E" +"36283AA6-0640-463D-95E5-8ACC3E1C449D","355","MG-027","0","490","530","","919","639E5E88-E57A-4705-8EFE-C5014C823662","0x00000000002C527F" +"B8B62A81-82E3-4AEA-8E53-6B1999931A99","268","EB-264","0","40","50","","323","919D0B00-725F-4AB4-BAC6-C512A1F69A46","0x00000000002C5280" +"99ABA3A9-4E90-454F-98EE-450D81410852","375","EB-371","0","751","919","","256","BE57C35A-FA72-41FD-BA4E-C520A15EAC85","0x00000000002C5281" +"867F415C-5B28-4FDC-B76A-1DA920EA6A67","","AB-0026","0","1355","1655","","2578","04787DD9-B76A-43A3-9791-C5218518B9C2","0x00000000002C5282" +"9D7ED5D4-7A24-47AD-8FC1-39507E8A2343","","BC-0065","0","360","400","","5000","40F4D6A7-03B1-43CB-8D7E-C528010CA58E","0x00000000002C5283" +"78EC166D-744A-4496-BB8E-FB4B19B00966","33412","SM-0054","0","120","140","","777","28DBF19D-4AE1-492B-89CD-C55D41F87D01","0x00000000002C5284" +"BC6BB9E4-7116-435E-BBC5-D8FF30DE35B4","542","QU-155","0","220","255","","1030","2866FB8C-254E-49F8-8BBD-C56D3A3ADC21","0x00000000002C5285" +"6668148B-852D-E54B-90D2-7DBD18C8D6F5","","AR-0234","0","43","48","","5524","5BC9C91C-D6B3-8148-92C4-C56DFA6C433D","0x00000000002C5286" +"B8EE7B20-753B-45E3-A19E-C083C11C1F64","33590","SM-0081","0","222","300","","801","A6AD73A2-56D1-462C-B281-C56EB0C046B8","0x00000000002C5287" +"840CB02F-D31B-443E-A6EC-C2434BBAF542","","AB-0023","0","550","1150","","2575","8865F6FD-AB18-4D89-98AB-C587C0E3C019","0x00000000002C5288" +"D5C219E6-C96E-8A46-A669-7E353224F761","","NM-28439","0","164","184","","5641","EF5C5F42-C268-EE44-9C1E-C589768AE3D1","0x00000000002C5289" +"5E6B58EC-4B0F-465D-AF13-9BD3817B9BA4","33234","EB-524","0","135","155","","599","FA0E1D23-F6D4-4AA2-AE80-C599011F4F2B","0x00000000002C528A" +"A9B0FC98-4D76-4493-9D5B-AEF0974BAABC","","SO-0198","0","20","35","","3196","A0C719E0-400A-493E-B07A-C5B34669FCDC","0x00000000002C528B" +"E7201AE5-878B-463E-9B9F-7B53CDA5693A","499","EB-490","0","1000","1980","","580","649C9360-1D9E-4964-893D-C5C2E422122F","0x00000000002C528C" +"E6446ED1-87F7-44A2-B163-D43F0E1C2CE7","","AS-029","0","60","250","","1522","9B0BD1CA-3C20-4AE8-BD66-C5C57BECD2DE","0x00000000002C528D" +"553FD900-3A72-4EDA-9D2F-0C65DFF04A65","","AH-007","0","280","315","","1564","6E7CF26D-2C9A-400B-B4E3-C5C7DBF1B26C","0x00000000002C528E" +"DD2B3214-1342-467A-A1A1-9AE9A22BFF96","","SV-0035","0","145","165","","3329","92C49A6A-2309-494F-A7A6-C5FE50D2F077","0x00000000002C528F" +"F1EC07E4-D8F5-4390-A3DF-CF2D93ACD0D8","33375","EB-664","0","370","390","","710","8505D6F7-CAEF-4DD5-B3FA-C611BA3088FC","0x00000000002C5290" +"1884B8CA-6B5B-475C-8989-5F5865F30DE9","33391","SM-0038","0","375","475","","767","7CEEB919-4707-41FA-9F11-C63B1D5740A8","0x00000000002C5291" +"272025D9-3C49-447B-8EA5-436258E3CEC2","174","TV-154","0","30","40","","1084","E37E66CA-4F85-419A-BE11-C64DAB891203","0x00000000002C5292" +"87896DED-C8B5-4471-A09C-4EE1053E7943","","AB-0126","0","46","51","","2662","C2198BC3-EEE3-4373-B86A-C67709E2F204","0x00000000002C5293" +"C8B7A42D-4CA1-49CB-B2A9-49ECF47FE780","93","EB-092","0","902","912","","114","0BBEBEDD-9BCF-4E32-992F-C695D0DC4939","0x00000000002C5294" +"E9FF5E15-5577-4615-8CC0-6A9A8B12EE05","","NM-24781","0","85","105","","3644","8FB7DDE6-4B5B-43BC-AC60-C69A4091CB88","0x00000000002C5295" +"24F485E5-5982-4308-A60B-11EB91747A11","","NM-02481","0","0","200","","5608","9DFF1EA5-44E1-5949-B4DD-C6B05362385B","0x00000000002C5296" +"E993A486-38AA-4122-B72D-5A634B958145","86","EB-085","0","639","667","","102","E843735B-0AB3-4F01-AC1B-C6BAC6111C73","0x00000000002C5297" +"8350CB05-7342-49A0-AAB5-4B089ECD95A7","","TV-292","0","1921","1942","","2552","36422150-634F-46D1-B0D9-C6BF1EBC36DA","0x00000000002C5298" +"E0F22A21-E44F-4803-BE5F-4A3CAA605737","","AB-0003","0","1102","1107","","2561","0C56CB21-2C8A-4F79-B064-C6EC8A1C45BE","0x00000000002C5299" +"1134F3B1-0054-4F54-9151-FE113A7D11AF","","NM-25060","0","478","568","","3491","DDA617C0-57BE-4307-B6E9-C6F3A671763B","0x00000000002C529A" +"FE6242FA-1405-4EA4-BB84-7AD2E016F6FB","","SO-0244","0","5","20","","3248","8AF5382D-4741-4781-820F-C70C4AF896C1","0x00000000002C529B" +"9C20BAF9-2936-4DB4-B6C3-F5F450EAA159","426","QU-091","0","135","155","","987","B804A184-D96E-456B-996B-C72FC8A6414C","0x00000000002C529C" +"ABF8CDB7-2109-4B7F-A74F-C89AF86DEBCF","","SO-0188","0","44","49","","3186","021B3E97-E1DF-4230-9FCD-C738D6852A13","0x00000000002C529D" +"56D7745E-D097-47F2-A009-C84AE7CFF7C2","155502","TB-0070","0","180","190","","1252","548B7B28-8D7B-4F2C-A5D8-C76AF00B40D6","0x00000000002C529E" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","","EB-692","0","433","455","","5459","33B5ADDD-C93E-9B44-ACCE-C791C9DEA62C","0x00000000002C529F" +"A5DC41E0-A5EF-4A3D-98C0-CA4448076430","78867","SM-0229","0","320","380","","836","930840CF-7CE5-441E-A794-C79A7DA8EA79","0x00000000002C52A0" +"E80498BE-D199-4162-90EE-C404E7781A4C","183","EB-182","0","650","670","","226","43039049-C43B-4333-9273-C7D5FCA8FEF9","0x00000000002C52A1" +"3E816E4D-797B-444B-B46A-479BF6F44E2C","33348","EB-640","0","400","440","","689","12BCED96-A9B1-4EBD-9E3D-C7DB5E763582","0x00000000002C52A2" +"9EEC0F83-4F36-43B8-A584-355A01CE0155","33379","EB-668","0","360","380","","715","03719DC1-D0D9-4367-A0CF-C800E9520D1B","0x00000000002C52A3" +"408C3DA6-9F69-418E-9587-0E1D47D116CC","","WL-0364","0","","","","5770","ACCA0E60-D027-41C4-B98E-C81A12AB1A50","0x00000000002CF3B1" +"AE6DDA3D-C765-4858-9E6A-EE7336143DFC","","BC-0007","0","300","420","","3909","A18A6AE1-E6C9-4B1F-9DCA-C81B7683321B","0x00000000002C52A4" +"FEF10EF2-7D96-4973-9A11-CCFBD8CA4199","","NM-26909","0","80","90","","4951","1D414F2D-22E1-4B5A-A4F3-C823AE732DE3","0x00000000002C52A5" +"ED65DCCE-C438-4ECE-8AE8-CB5BA82388C3","33365","EB-656","0","300","340","","699","0AED47E9-C395-49DE-86CE-C82CE99A231D","0x00000000002C52A6" +"658EDE9E-348F-42CE-87D7-AD2C166E39FB","398","HS-038","0","40","60","","1199","5903BD7C-DE16-4411-BAB9-C82ECE90EE0F","0x00000000002C52A7" +"A11C7928-3E07-4577-AEBF-C4166F3D986D","","SV-0088","0","140","180","","3383","28A38BA6-EA16-4739-AC4B-C842FE7AED83","0x00000000002C52A8" +"C6D33182-8511-4DE3-9DD5-5E462A3D63E1","","NM-24879","0","209","219","","3621","CF9125A0-5CAB-4501-83F7-C846FE27856D","0x00000000002C52A9" +"C6DC52B4-E0F4-9E4E-BF45-A939D64B23C4","","AR-0227","0","64","78","","5471","ABD82E1B-E1F5-C74E-A66E-C847E54E0058","0x00000000002C52AA" +"C45F987E-FDD2-48F7-9026-AA072E872957","33383","SM-0014","0","450","490","","764","0F0CB48E-B0AA-476B-8E70-C859841C8ED1","0x00000000002C52AB" +"F777228D-0214-420D-96A5-6FF5CBE3041E","33335","EB-630","0","1620","1640","","678","72009EDA-E8BB-4290-8C46-C8AC71F11546","0x00000000002C52AC" +"AD759A14-00CE-4288-9A1D-E2C756BC0482","","AS-006","0","130","170","","1501","62C537D1-0CC5-4AE1-A8A1-C8B89C7FB08A","0x00000000002C52AD" +"B1396814-B99B-4C4E-B6CE-F192BA466C1C","","SV-0122","0","240","260","","3425","1E4D85D0-DCF5-4C0E-AFEC-C8B963672711","0x00000000002C52AE" +"75B4FB4B-9057-4F41-BC11-BC72CC0B65C2","454","EB-449","0","360","400","","512","C47A92C0-75C4-4474-97D7-C8C1C408975B","0x00000000002C52AF" +"EF326E75-DFBE-4655-A8F1-0E430590D14A","","NM-24593","0","280","300","","3718","63E8E055-7C78-4EBA-8F8B-C8C1D824CAA9","0x00000000002C52B0" +"7CF3241C-8223-EA42-B5F2-26C058761700","","PC-114","0","320","340","","5405","5CD2D811-C184-B847-98DB-C8DE64153527","0x00000000002C52B1" +"484372C6-1C2F-471B-BA49-B337CF7FDB5D","84","EB-083","0","706","716","","99","9A4BCA1E-91FA-45D0-8291-C8F003F139F4","0x00000000002C52B2" +"F9602428-2E13-43A4-B3C4-1FE8D8088A1D","","AB-0146","0","1120","1520","","2680","BC3F38B5-CC7A-430A-AC6C-C8F1DDD0206D","0x00000000002C52B3" +"581CCF28-F542-45BA-A918-EDCA7ED3396A","33235","EB-523","0","220","280","","598","F1688105-F0D1-4B12-82BE-C9061E059221","0x00000000002C52B4" +"41108FEA-8869-438F-942C-CDCFD185BA8A","","NM-09589","0","71","231","","5562","FF5E3CCB-C98C-364E-AF51-C931E70B22CB","0x00000000002C52B5" +"9A7C85DC-0CA7-F249-94F9-3ACD3A1BC9DF","","PC-012","0","397","412","","5320","3B3E6898-5CCD-D944-819D-C93CB8A97777","0x00000000002C52B6" +"56D7745E-D097-47F2-A009-C84AE7CFF7C2","155502","TB-0070","0","120","130","","1250","BA9F23BC-4A30-49F4-895B-C94D79256B42","0x00000000002C52B7" +"CAD2B4D7-149E-4E8F-9409-C691B927D5C5","69","EB-068","0","299","320","","82","B312E8FA-E3DC-49EA-8FFE-C95EFC7511A9","0x00000000002C52B8" +"1F93CE8B-FF2F-4E25-B7A9-5AD9DEA85C5B","406","QU-071","0","35","40","","1002","DA13FE2A-20B9-4BA5-8E1F-C96B0234AAE0","0x00000000002C52B9" +"0CF682DC-7131-4057-94DE-90BE9048FD6B","","AS-054","0","260","300","","1542","03BC678B-E8A7-41D2-8ED0-C96B6B976C01","0x00000000002C52BA" +"6D81C9B8-C75D-413F-9560-9FB0E347BBEC","","NM-25936","0","77","79","","3882","48E31F48-56EE-48BE-9FF8-C96EC923C5B4","0x00000000002C52BB" +"85EF298A-F48A-43E8-8495-3BD95E488E90","","AB-0147","0","120","130","","2681","C9A473DC-D4B1-4633-8AAF-C98791949882","0x00000000002C52BC" +"BE7C68D5-8967-4DD2-A31F-61137ADF6662","","TC-260","0","122","162","","2133","BA416227-3B86-4733-94F6-C9A4AF2CB75F","0x00000000002C52BD" +"0E004374-320E-4766-890B-5AD9274AF2F4","","AH-020","0","382","398","","1575","7319933B-2E2F-43DF-B8C2-C9A8FEA01C2D","0x00000000002C52BE" +"1A80BC2A-D656-4F0F-9A03-1AD1CEF6AA00","","SV-0108","0","440","460","","3407","6506EB06-96CC-49E4-9BF9-C9AC743589FE","0x00000000002C52BF" +"D892AF2C-D47E-4796-8F88-91CF79983289","","NM-25485","0","4832","4962","","3776","F7211B55-6E69-4400-9D14-C9BB12DB2DC4","0x00000000002C52C0" +"0ED94190-C69A-46F5-BD7E-7E67C424A00F","33282","EB-578","0","300","320","","624","F5065D85-53C1-4F3B-BB0D-C9D879569D7B","0x00000000002C52C1" +"B220A61A-6A60-4F89-9D2A-EF9E045A9527","333","MG-005","0","690","730","","903","73145A78-E76A-4C61-8596-C9E1FA6F31E5","0x00000000002C52C2" +"E81679DD-D815-4FB7-A5D5-521F20BBBF17","432","QU-097","0","60","95","","981","05FDAAF5-52AC-4562-BAA4-C9F97D6C8AC3","0x00000000002C52C3" +"EA199671-4F25-4B8C-B567-D4885B1694A1","291","EB-287","0","579","607","","353","1F5A5074-A7CA-42E9-B1C2-CA35A74B6CEF","0x00000000002C52C4" +"94B6FE3A-C704-4E06-A08B-9A06C2E34060","","NM-24624","0","260","320","","3710","954ABE68-5D8F-4DDD-9A67-CA363D50AD03","0x00000000002C52C5" +"3B953B75-431F-4C87-BB45-1A44D6BE2034","","SV-0041","0","100","120","","3338","0633C4BF-A189-4C2D-899B-CA3E2DC066F6","0x00000000002C52C6" +"5D49E611-3C60-40E9-8A52-30E41718F1A2","","BC-0255","0","430","450","","3543","D96FF41E-4CFF-42D2-B532-CA508EE6AD19","0x00000000002C52C7" +"BB0AE4F4-D0E1-4A89-851F-5BA62F3B9A1F","","AH-047","0","440","520","","1601","087D33FC-BCCD-40F8-BBE9-CA615F71D0D4","0x00000000002C52C8" +"2637550A-40FE-478A-950A-F1E0ADD0DA22","","QU-174","0","262","302","","3115","FED1F036-DC54-4668-9110-CA67EC8B08C5","0x00000000002C52C9" +"D6A2E847-4200-4C77-BFB0-DD4C56E1C2C5","","AR-0114","0","20","60","","3727","3C7D5D3D-C6A8-4763-9267-CA6FF91DF833","0x00000000002C52CA" +"7A8403BA-ACE4-4209-9C86-7830852F6DBE","","UC-0211","0","480","500","","2859","AD87F62E-E62A-48F0-9635-CA7122F01C48","0x00000000002C52CB" +"AD57AA73-7832-4A8C-8B98-D27B9D42430F","","NM-01202","0","185","194","","3811","F3F3F88A-CD0B-4AAC-AA61-CA71632514A6","0x00000000002C52CC" +"F9FA7B1C-F615-4650-94E6-06B8CD279EE8","155543","TB-0080","0","80","140","","1265","C12A64A4-DD9B-4E09-9607-CAC190D3D8C9","0x00000000002C52CD" +"B7ECF8B7-D787-404A-9DE4-6FF476505226","","WL-0080","0","280","320","","5308","DB928461-B455-DD41-81CE-CAC5E863D110","0x00000000002C52CE" +"29663F01-7F8F-490B-ADDB-0070FEE086F4","","NM-03078","0","210","220","","2823","7B2FA8D0-59B5-4644-AB61-CAF851847A46","0x00000000002C52CF" +"85D523D7-C2A3-4CC5-ACB8-89BEC6F57E22","","AR-0032","0","4","18","","3080","4978B378-43BC-4E87-A509-CAFBC0E116FE","0x00000000002C52D0" +"1BCC7CD8-56C1-41F1-8088-FB3612ACF744","","SA-0009","0","268","297","Steel with torch cut slots","5624","3040F7D8-E624-F446-8BE3-CB084C37EB45","0x00000000002C52D1" +"D0C3569C-B682-41FD-93EF-E76982514801","","SV-0126","0","280","305","","3428","DD172D3C-B919-47A6-B4D8-CB0DE5D884FB","0x00000000002C52D2" +"F5DABD7B-535A-42D5-84E2-7C38350C8CC5","","AH-019","0","200","260","","1574","D874E6B6-4595-4075-BC90-CB0F2F4B6C02","0x00000000002C52D3" +"1450FC5F-BBE4-4A65-8146-129502F92E73","","NM-26889","0","436","446","","4936","5730315B-7811-4444-B4B1-CB1CD0009433","0x00000000002C52D4" +"31A93F84-CBA7-4B73-A2E6-E3C3AF2CE0AE","186","EB-185","0","220","240","","231","C3C6121F-656B-4749-A5AD-CB3C0B0C40BD","0x00000000002C52D5" +"EFD9E189-0C9E-466B-AFC8-1A8E0278F06A","","NM-01859","0","160","202","","5573","7B521984-6629-BF4E-9E3E-CB3EF7BE0063","0x00000000002C52D6" +"406638FB-EF3B-49D3-B64F-85ACB1E3F411","","AB-0002","0","1534","1539","","2560","B2CA4805-8E53-4028-864E-CB524D30799F","0x00000000002C52D7" +"7F1ACE59-834A-4AA0-9F14-F34336192AAA","","SO-0195","0","50","56","","3193","9E416818-799A-4B61-A503-CB597417637A","0x00000000002C52D8" +"DA89CA22-609B-CB45-8C1D-716157D075C6","","WL-0267","0","441","500","","5701","99ACD835-2BC1-5942-87F2-CB5E3B5ADB34","0x00000000002C52D9" +"10500EB0-AB82-4A12-9867-D80F94BB40A5","","NM-09008","0","0","300","","5543","A1E9836E-0967-A646-9196-CB6C94563908","0x00000000002C52DA" +"4D888923-8C44-1746-9CCD-AF83EFA8511E","","NM-28329","0","80","100","","5509","5E9DE65A-DC0F-A442-B3D3-CB6E9775706F","0x00000000002C52DB" +"282DE52C-A637-485D-9014-285E42262D98","","BC-0167","0","340","380","","5139","D32857C1-51A2-4D1B-B41D-CBACC90BE98F","0x00000000002C52DC" +"C8AD51A2-A91D-4495-BA9C-461F1B85C94F","","AS-060","0","300","340","","1548","B585062B-E326-443B-B286-CBB031F3E59F","0x00000000002C52DD" +"6EA7707B-FE6A-48E1-A85E-1609030F9D2C","54","EB-053","0","260","280","","60","B4E028F5-CCE5-4A04-8485-CBBA800A2C64","0x00000000002C52DE" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","460","480","","2895","FAF0FE15-77C2-4314-A2A0-CBCAF8D91E00","0x00000000002C52DF" +"A590900F-DC41-4DCF-920E-052F077F4BD8","","BC-0101","0","260","280","","5038","B722CD4D-AF2B-4C38-BC7B-CBD6E1C9C500","0x00000000002C52E0" +"B5B88D1F-4A39-45A3-BC9B-7A41E3F44DF3","","NM-26914","0","70","90","","5060","9CD4A0C6-4C45-487A-8589-CBEAA57140D0","0x00000000002C52E1" +"72546D2F-F43E-4574-9531-B1A580ADAD3C","","SV-0110","0","380","480","","5198","668FEDFB-4944-A549-9024-CBF3AFC122D7","0x00000000002C52E2" +"F999084D-5FEB-4B57-AD6E-953C4C3BD6EC","","NM-26936","0","280","420","","5080","5ABA9AF3-CC36-42A7-8B1D-CC09ACA093F1","0x00000000002C52E3" +"BD941312-3E34-4AD1-9AFC-448550B3A810","311","EB-307","0","65","125","","381","D34DA678-8381-468A-8B58-CC24A7A19B1B","0x00000000002C52E4" +"596E59FE-6FBB-45CC-B836-3F4DB6AB5A25","","BC-0196","0","420","480","","3516","1E718B4B-933E-4A53-9DD0-CC25C8DFFD30","0x00000000002C52E5" +"FAE8FBCA-0478-4C48-BF8F-B8739AD6BDCF","","QY-0685","0","76","116","","2987","F9EF29B8-D98A-4F32-99B1-CC2B7EFE5905","0x00000000002C52E6" +"58CC9B8E-1B95-4B61-8A75-CC215339B65B","","NM-24726","0","125","145","","3666","E9B0D9EE-9D43-4974-9C9A-CC2C46845485","0x00000000002C52E7" +"C8664DC4-3AD9-4101-A2EC-AECA2E3B9ED2","","NM-26961","0","540","560","","5097","3D99C2C7-4D52-4CDE-9F86-CC50E338C7E7","0x00000000002C52E8" +"7F11A3B4-6090-AB46-A515-7260A4969E1C","","PC-111","0","350","500","","5401","E8C6A53A-00A7-6242-80CA-CC62EE843439","0x00000000002C52E9" +"E00A34B2-D9DD-42D4-B6DA-C4D1BDB5E009","","NM-23243","0","240","260","","3278","400154A5-5619-4220-91EE-CC736AA9EB26","0x00000000002C52EA" +"CB26BC39-ED26-486D-865C-8FF1F14E469F","155","TV-135","0","72","112","","1068","981CE52F-D39A-45A5-B6E8-CC75F39111E0","0x00000000002C52EB" +"45043B44-BEEA-0748-92C0-C94C57DACA67","","PC-063","0","140","180","","5365","F97B50EF-A2EB-2E46-81F2-CC86611DE30F","0x00000000002C52EC" +"87D00501-C53A-4E3E-9955-9A03BDF03F27","","NM-08909","0","500","780","","5541","071AC56F-7DF6-6A41-81B1-CC8853C8A89F","0x00000000002C52ED" +"0B734823-1B8B-0447-8E98-C2FF763B3CD9","","SV-0145","0","340","360","","5482","2DE8B037-FC21-094D-A12A-CCA2AA4697AE","0x00000000002C52EE" +"5C7C53BA-892F-4F3F-B9BC-AD47B991E810","","NM-03883","0","555","565","","4965","8DE52A9A-C0CB-4DB8-A832-CCA5584771BC","0x00000000002C52EF" +"28E72EFB-290D-4B4D-B36D-FA744625CE1C","","PC-051","0","250","272","","5353","ED5AE248-669B-734A-B00B-CCE79B8AB6B6","0x00000000002C52F0" +"DC1C1FE3-C2F2-4C5D-8F9A-293857CE8D25","537","QU-150","0","15","20","","1022","8E520F2C-4FA0-48A5-BB71-CCECBDA705C5","0x00000000002C52F1" +"7AF22EE0-A5DB-4F08-82D3-A0397EE241B4","","BC-0088","0","225","245","","5027","BF9CA933-9FD4-4F7D-B2CB-CD00049859E7","0x00000000002C52F2" +"BFC3FF86-DD42-DA49-86A6-B37E11562D79","","PB-0029","0","150","180","","5652","918C0CFF-948D-DB4B-ADB5-CD04165392ED","0x00000000002C52F3" +"F0416D8F-9E73-4DA3-BF71-8FCC50DEE31E","33511","SM-0067","0","75","155","","789","859C638F-72FC-4C65-B594-CD151BF06D13","0x00000000002C52F4" +"446644D8-8080-439C-80FB-699A0F834C26","","NM-24794","0","137","144","","3643","CDEBF155-ED43-4973-A6ED-CD3C71E2F891","0x00000000002C52F5" +"D08478AF-FB8B-47EC-AB4E-4FF5D7F5B454","","NM-24677","0","256","266","","3685","E96C812C-3DCA-4B50-BE1F-CD532B279369","0x00000000002C52F6" +"7FCB85DD-521D-4962-BEE3-32B7FD56C2F1","301","EB-297","0","505","655","","372","CF11AA8B-A927-4252-BF12-CD84686F35D5","0x00000000002C52F7" +"F17FF5AB-2124-4399-B545-624632923150","43","UC-0027","0","272","292","","1321","F55FA231-09B2-4411-A9CA-CD863FD02BBD","0x00000000002C52F8" +"A894CE22-F082-4EA7-B78E-083D2E0792EC","533","QU-146","0","295","305","","1018","92BF5835-4DA5-4ECB-ADA9-CDADF21DCEB9","0x00000000002C52F9" +"BB0F1F44-181D-4E78-95B4-FAA226B2DE8F","","QY-0440","0","280","300","","2972","594DEAAB-BD93-40FD-9D57-CDD600A95B6A","0x00000000002C52FA" +"7A1954D0-887D-4127-AEEB-B9554F18B8A1","","NM-24613","0","313","319","","3713","7639747F-805A-4781-A293-CDEAE24007EF","0x00000000002C52FB" +"28F629AD-BBF6-4E23-A6E7-889B12D4BF32","","UC-0232","0","200","250","","2849","54E1D9C8-3D9F-4699-8E5E-CDF11CBDB293","0x00000000002C52FC" +"A96BD399-2E42-284D-8279-3225CEB8D056","","WL-0281","0","285","305","","5717","760FC370-19A4-9144-A64B-CDF9DCFEFB46","0x00000000002C52FD" +"8C5953A0-D364-4A5A-B2F2-44BFEDC556BE","","BC-0164","0","130","150","","3274","F1EA472C-CE6F-4888-A082-CE0671B05D33","0x00000000002C52FE" +"5AE3710E-05CC-46B8-8B16-6AE1DCBF4AF8","","BC-0244","0","300","375","","3536","6C66B3CB-D042-4A20-BE01-CE0FE7488DDF","0x00000000002C52FF" +"6A99AA87-C4DE-4152-9CE0-CBDD30786860","","NM-24687","0","120","140","","3679","7B62B922-D39E-4F72-8458-CE14F170582A","0x00000000002C5301" +"E32CA757-9B05-8642-83E8-A60052548EF0","","PC-115","0","650","655","","5407","C4CD6214-DF49-174E-8E7C-CE1FDEDD98D0","0x00000000002C5302" +"3483392A-C2E9-8D4D-A0DA-97B2D5C9CF71","","WL-0230","0","790","1200","","5646","BA76EED2-A2BA-C44F-A0DA-CE40863C00AE","0x00000000002C5303" +"0205DFEC-B828-4DFD-8D49-1AEAFF60C0B3","261","TV-232","0","100","120","","1144","21E3E07B-10C1-4DED-9141-CE4B0906D3DE","0x00000000002C5304" +"D62FFAA0-76F9-4EAA-A6ED-BC247D692545","","BC-0186","0","510","570","","5156","4A24222B-4BA5-42F5-8FE9-CE5179CC758C","0x00000000002C5305" +"A3113DEA-B822-C447-A453-9062D9097E53","","DE-0006","0","135","155","","5656","1815AD33-4BC5-2047-A290-CE5C3A57A544","0x00000000002C5306" +"DB4B0D3F-21A2-6A49-837B-4CD5BD18914B","","WL-0240","0","180","300","PVC w/0.06"" slots","5669","02ACA154-C6C3-794A-8745-CE60FF8EBADB","0x00000000002C5307" +"6111C568-0978-4B34-BA3E-9E1A06EE8746","","AH-013","0","210","270","","1570","57C7B0A1-A96C-44C4-9111-CE6F8B447AF7","0x00000000002C5308" +"94CD3655-AFC3-44E5-9F2A-02B007AE5705","","AS-028","0","420","520","","1521","7BF80674-0DB9-4363-AE6C-CE7EEC7D5429","0x00000000002C5309" +"3157BE78-EBBE-49F1-93DD-261BD9E96747","33385","EB-674","0","435","475","","723","B7C61122-C5B5-4D24-8EBD-CE9B9E1A128E","0x00000000002C530A" +"631B060C-74B2-40BF-AB37-BDF6AB2D6063","","SV-0127","0","270","350","","3429","4B9A8943-66CD-4597-AC39-CE9DD05D455F","0x00000000002C530B" +"2D7C1EBB-7E4B-4D09-A560-3B5E56786F43","","AB-0162","0","1015","1020","","2690","32406770-3DCA-4AA5-9530-CEA74F8BDFC6","0x00000000002C530C" +"04E335CB-9AD8-479E-B943-61523F060AFA","155508","TB-0014","0","80","100","","1256","50B491A8-AC70-4E27-B7F5-CEABE71D9977","0x00000000002C530D" +"E3301AC3-2783-4D57-B7D1-7D7F7239F158","290","TV-256","0","200","260","","1164","1FA10A86-05B9-40F7-B266-CEB0CB35E534","0x00000000002C530E" +"F06BE847-7C89-4CE7-BF7A-AA528ECCD0A6","","NM-24710","0","262","264","","3672","7F6F5B9B-E57B-4B6C-A84E-CEC8D2A904B9","0x00000000002C530F" +"48405FAA-FF66-4360-B870-73B03B3878F2","388","QU-058","0","160","235","","967","1272788B-E8A4-46B2-8137-CECC2FF94BD3","0x00000000002C5310" +"EE8E9C7D-6C8E-41B7-ADF6-E93B3334F3AD","","AB-0010","0","180","804","","2567","9D04522D-BA12-4665-B65E-CEE0E3BC954B","0x00000000002C5311" +"FB1F5499-4B21-426C-BE26-F60EDE6698FD","33330","EB-625","0","1900","1920","","673","933D6D1A-8434-4FDE-838C-CEE3792E5F38","0x00000000002C5312" +"E34F58B6-6F16-4694-9477-235503BA8539","","NM-25000","0","91","94","","3560","4562606D-050C-4EFB-A919-CEF1BE991754","0x00000000002C5313" +"8C73B4FF-EA8C-4A3B-B4FE-3D919174707C","184","TV-164","0","60","100","","1089","167F2C69-2E4F-402E-86DE-CEF5B63C4068","0x00000000002C5314" +"5B7DD296-A8FA-416E-AA61-43034D2523AB","","NM-23363","0","285","325","","5200","EE8AA1E5-CBC8-3944-B8D6-CF03954E5A56","0x00000000002C5315" +"3A5D07BA-A3A2-43AE-B22E-E82A38734999","","AR-0007","0","27","32","","2947","447D9E9F-F901-4841-B01F-CF0A30BEDDAA","0x00000000002C5316" +"2E889D4F-C879-41D2-A05D-20D177C7226C","398","QU-100","0","25","30","PVC","1027","17ADE0B4-9899-46E2-BA42-CF3C5CCA4A07","0x00000000002C5317" +"695CF0C9-D248-414F-AE04-FA71A54F40E2","","QU-166","0","151","185","","2481","7D828408-715B-4E4D-914E-CF56BDA0BC1C","0x00000000002C5318" +"2F4D875B-BD8A-40E9-A142-CCB78A941F4C","","NM-26215","0","1320","2125","","3779","D36B0753-1BFF-42DF-8887-CF612C12917A","0x00000000002C5319" +"140BF149-C856-4945-89F1-8E44DEFA2B8B","97","EB-096","0","492","477","","118","E5DCC05B-29F6-469B-8CA2-CF8443833CC1","0x00000000002C531A" +"87368E25-32A2-4AD9-9BB8-43AA0DD2BCFC","404","EB-400","0","65","118","","457","69D72297-7A5B-4A2A-816A-CF8744C316D2","0x00000000002C531B" +"CA40C510-9FBE-40AC-81EB-2EF8C1008755","","AB-0089","0","288","1128","","2629","0C75EDA6-2BA2-4604-BA48-CF8AE2CE05D2","0x00000000002C531C" +"FD65BB51-71A0-4F57-BEC8-61051CE96441","","AB-0059","0","260","916","","2604","81A2B7B7-1A60-49CE-A0E4-CF8E15AD9956","0x00000000002C531D" +"1D914A8B-21F2-40C1-9FC4-7070A52CC9A1","","NM-00557","0","315","400","","2883","EA2A9F71-4C01-4BFD-9659-CF92A1678A2E","0x00000000002C531E" +"0CA68EAE-2561-4B18-B73B-B59E3D5AC6B2","","BC-0076","0","220","240","","5011","B9C6A70C-9315-4D22-AEC2-CFBED57DC9BA","0x00000000002C531F" +"85E67012-EB5F-4EB5-B0DB-BAD9D03CDA2F","","AB-0164","0","383","583","","2692","851089DE-5807-44E6-B0FB-CFC5B0A509CD","0x00000000002C5320" +"B502DC0E-EBC8-49D9-8812-C8F7B6A418A5","","NM-24739","0","341","354","","3659","6EA0E36F-B6CD-4E97-891B-CFE4AEE3E0EB","0x00000000002C5321" +"76794085-9CE7-43A0-9533-92F69B185D43","185","EB-184","0","480","600","","230","F019C208-B867-4F9A-89BE-D00B868A7B6C","0x00000000002C5322" +"D0BB92F8-F1A1-4D8C-B4D8-AC4FC01F9847","","NM-24919","0","234","264","","3601","42C700CC-F3A0-4E58-AB64-D00CF1587F1B","0x00000000002C5323" +"0C882ABB-893C-4635-84DD-6E17610C4AC1","33698","SM-0173","0","330","","","825","0B53BBB2-9387-484B-9EC7-D0139D0E5DB5","0x00000000002C5324" +"EC748491-0EE1-4352-9458-EDAEC4720600","","NM-01222","0","340","360","","3024","C7C19593-B4AB-4211-BD48-D035A481C441","0x00000000002C5325" +"4DB7A0D1-B963-44F0-9CC9-54B75D3AACD5","","QY-0507","0","94","100","","2981","3E896775-EF7F-48B2-9E15-D042D3D166CC","0x00000000002C5326" +"EAB43F41-9B52-445D-BC52-75FEAC09262C","","NM-24672","0","225","235","","3688","ECFBEB82-D70F-41A6-BC4B-D047B43D8437","0x00000000002C5327" +"9A2B757F-2E79-4CF0-BB94-53E9ECEF8B92","","TV-297","0","327","348","","2557","65008CA1-B22C-45D0-A767-D057FE54BA50","0x00000000002C5328" +"CDA775E7-92EF-444E-BC38-C6FD84E72232","","AB-0052","0","995","1010","","2598","80F48E1B-B73A-44AE-ACD1-D067628C331D","0x00000000002C5329" +"E53AEB8C-9FC9-4ADE-B14E-897D0CF91225","","NM-25053","0","731.6500244140625","741.6500244140625","","3494","E185C827-FEE1-4112-AF57-D06D8B90E57B","0x00000000002C532A" +"F7AB7088-17F7-45C8-898D-69737E1C38E9","485","EB-476","0","200","725","","553","8CB96831-D8BC-40DA-AF92-D0730DD5B8A1","0x00000000002C532B" +"93D0CACE-5828-4C9F-A87D-0889463AC255","","SO-0247","0","5","20","","3251","1A7AE1EE-C8C5-4142-AC0A-D07B0ABADCD7","0x00000000002C532C" +"0A7BA070-C6F1-42D0-B55C-DA059FFEC3C6","204","EB-203","0","97","111","","266","6DB392BA-E01C-48A0-B0DB-D08622680610","0x00000000002C532D" +"4DBB5795-1F95-4BE4-BA2B-C05EAB92936B","135","EB-134","0","90","134","","167","E6FF8543-8DDB-479D-BFA7-D0957E811A9C","0x00000000002C532E" +"B6836B56-1103-47AE-892B-E18CDE759695","","NM-00663","0","116","136","","4955","71040E59-3E6A-4022-80B0-D0B987C4BF9C","0x00000000002C532F" +"DAE80998-FD59-E649-B7C2-69719B66D9B8","","NM-28320","0","61","101","","5501","A68932B1-FA81-0040-AA9D-D0BCE2ECCAC2","0x00000000002C5330" +"6E5776AB-D8AE-44A7-94F0-60558A29B8A4","258","EB-254","0","80","100","","310","802EB1AE-9785-492A-B879-D10CFCB73C4C","0x00000000002C5331" +"D600E421-C7A5-4B48-B846-517CF9E6F570","155573","TB-0110","0","60","80","","1278","0AB455B5-6FF5-4683-9134-D12CE2421E3E","0x00000000002C5332" +"11C38C17-3AA8-4528-ADC0-F8953E10D144","","NM-09329","0","106","146","","5553","767B2582-A9ED-FB43-93B0-D16317D25245","0x00000000002C5333" +"2F3E0BDF-3BC3-4B4B-B014-11F53F1ECAB8","","NM-24571","0","259","273","","3752","598168AF-013A-42BD-8556-D1904FE4BCF2","0x00000000002C5334" +"AB57B1EC-7F92-46DE-8473-107BA50239EC","","NM-00774","0","462","482","","3745","BA092039-A9A0-4F81-8690-D1F775D5F02F","0x00000000002C5335" +"2D2133DA-4359-3F4F-88DF-EB7A9201A7B9","","WL-0103","0","296","440","","5440","895D1525-5683-864D-8D62-D208F9399C28","0x00000000002C5336" +"6ECA50DF-FA9C-4310-9C4A-D097DB756B60","156","EB-155","0","264","308","","189","C8E38848-A51B-4C71-A52D-D20C51CA5306","0x00000000002C5337" +"D02D537A-A1D9-4673-A289-7682A6F9E5CB","","UC-0213","0","190","250","","2834","AA6AD26C-B065-492B-838D-D213CE2ADF5C","0x00000000002C5338" +"D8B774AF-CCEA-4B9D-A350-C174A322A6F6","","NM-03819","0","112","162","","5612","506E8DDF-E05B-4947-981E-D22613D29F29","0x00000000002C5339" +"B627A3E4-A230-4F50-B15E-EB5E2FA37CC5","","AS-009","0","75","180","","1504","3C2F78F3-1D15-432B-AA3F-D23EC7DA3F56","0x00000000002C533A" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","866","878","","2929","61A70FCB-2B56-4525-9334-D2415E958840","0x00000000002C533B" +"F6243B22-CC24-46C0-BFC5-4569DE838D74","","NM-24966","0","1940","1960","","3767","B6AB1192-B227-44A5-8DE7-D25DE161270A","0x00000000002C533C" +"4052762E-CC1F-4C55-8E4A-E118A1EF9046","338","EB-334","0","60","120","","414","C9E84F3F-4189-4E54-B422-D270E6131191","0x00000000002C533D" +"B061C12A-99CC-4B7E-8165-307E84A3830F","","SV-0111","0","300","380","","3408","5513238D-522F-4FE6-8625-D2846024F48F","0x00000000002C533E" +"6AE53A94-F44A-4E31-8E02-E3DBF098B5C5","","NM-04044","0","203","503","","5615","B733BB61-9EF1-9D4C-B8FE-D28EEEDA8F51","0x00000000002C533F" +"EDE6AD0A-9950-4A80-8A11-B1CAF53189F8","","BC-0151","0","230","250","","5121","8BAEBD35-91DB-4221-A062-D29828EC6746","0x00000000002C5340" +"431BFF9C-5F28-4E55-8610-2AAE12484B10","","NM-24714","0","400","420","","3669","4B4EA6F8-B9E4-4CC1-838A-D2A025E56BE3","0x00000000002C5341" +"01161C36-655A-4AF0-965A-7829EE8150C0","427","QU-092","0","140","160","","996","9179BFA7-058B-4C2E-9430-D2B6CE8AF1CE","0x00000000002C5342" +"4117662C-DFCB-4B9D-8F15-8EEF421645D4","33302","EB-600","0","821","831","","647","19DED16C-CBCB-419A-B5E8-D2BC53310A50","0x00000000002C5343" +"63AE00FC-5341-40B3-B2CE-0CC93CE3CD41","","QY-0499","0","160","210","","2978","590D3AD0-22A5-44C1-8585-D2CB3ADB47C9","0x00000000002C5344" +"BD4879F1-3995-4503-9765-805474EB28DB","134","EB-133","0","80","120","","166","855D6FAA-8D4C-4D2B-84F3-D2CDAA9EFBD1","0x00000000002C5345" +"C8DD9FF9-C311-4AC2-AEFA-D511EAE94F07","","NM-00736","0","110","150","","3744","B330B1A4-831E-4C96-A517-D2D620FD674D","0x00000000002C5346" +"FA8DED1F-F41C-4B87-9E9D-BC425DA8A2CE","","NM-26667","0","47","50","","3803","B3429975-DA50-4D04-99BC-D2EED72D3632","0x00000000002C5347" +"371C40C9-82F2-4E97-AF38-4E1EB4A71523","","NM-06964","0","4169","4187","","2869","409411C6-8339-4F91-A5BF-D321A5071C48","0x00000000002C5348" +"FB2A3D11-8177-4946-B73C-18D75041A413","255","EB-251","0","250","260","","305","820168A5-25D6-4962-99F0-D36CDE601891","0x00000000002C5349" +"AAE63F34-7FD8-423D-A6EA-686B955048C5","","NM-21424","0","85","104","","3836","A15C882D-67D9-453E-AD9B-D380F9BA2F05","0x00000000002C534A" +"B0193969-D692-4072-89CA-01DE95F4FE1E","294","EB-290","0","630","647","","361","723C9E40-8968-4050-A89F-D38635459879","0x00000000002C534B" +"D1EEA243-469F-4F68-BFD7-B7F8384A0756","","UC-0214","0","295","335","","2861","FAF37604-AC1E-4261-B930-D38F2169F45F","0x00000000002C534C" +"D09E2541-02D5-48A1-B6CC-72EDD01A7DCF","469","EB-464","0","380","400","","532","DC740D9B-BE4E-4C33-A896-D394B0DF3EB5","0x00000000002C534D" +"7B2C740A-7B7F-4065-B45C-A064AA4596DE","33242","EB-518","0","160","205","","590","5EBD4429-F3D9-4C07-AFC6-D3961285E444","0x00000000002C534E" +"2BCF2466-0548-4316-991E-184C71A01005","","NM-23298","0","280","300","","3284","76A08C64-DA89-497D-9B91-D39694F2AAF4","0x00000000002C534F" +"F4A5A8E4-5F06-4B3F-8DFB-60E07F36750E","","SV-0038","0","360","370","","3332","64898A50-5A1D-441F-867B-D39958C128D1","0x00000000002C5350" +"8FA2DE80-5A81-4D64-A1B3-E8EEBAAFEF6E","","SV-0136","0","218","278","","5210","E0360D0D-6FD4-5D4C-B13A-D3B84A142B73","0x00000000002C5351" +"B4A0AC50-1E5B-4F45-958A-46A91F1DDA28","429","QU-094","0","121","141","","995","12396D41-8FAE-4544-846B-D3C01D5FA825","0x00000000002C5352" +"7925856B-F53D-4B49-AB5F-DED7BDA1CF08","33420","SM-0062","0","50","80","","783","5AB405C0-0FFC-4C1A-B95F-D3C73B17E47D","0x00000000002C5353" +"E1C05C90-7720-4C63-B19F-F3FB81A6E9B2","33316","EB-589","0","520","580","","633","B82162B4-3B17-43BE-A918-D3C818BE56D0","0x00000000002C5354" +"F1005B8F-6F74-452B-91D3-17253502C232","","AB-0093","0","490","590","","2633","2E380420-5456-4FB2-A929-D3C83359E240","0x00000000002C5355" +"CCF92B28-8BCE-4E80-A0FB-6F93F304BC49","","BC-0227","0","200","220","","3525","CC308A63-01AD-456D-A2AA-D3C9028DE257","0x00000000002C5356" +"9C732E3F-71A5-DF4A-A565-7CCD48A26484","","PP-064","0","250","285","","5284","4F0A17B3-AB83-A141-A6EC-D3D9611612F0","0x00000000002C5357" +"F77B7259-9C40-491C-A111-0191815D9FA4","","BC-0263","0","240","260","","3551","4AC46006-5713-44EF-8A91-D3E417863382","0x00000000002C5358" +"D724EE34-9B26-44BA-8386-FC91A9952BA5","308","EB-304","0","20","40","","378","65D23239-0564-4CF2-9F31-D3F05297D050","0x00000000002C5359" +"73463C13-2599-ED46-A15A-0D6D64FBC090","","BC-0365","0","500","690","0.05"" perforations","5727","BC06A030-B9F6-3F47-8041-D41B78200C89","0x00000000002C535A" +"C31263EE-9E1F-2A4B-84A7-8E9BAF224AA9","","PC-067","0","160","200","","5368","F244B7C7-0BE2-CD4C-89C6-D43A17D468FC","0x00000000002C535B" +"E77F60D1-298D-406D-B94A-C2A1D4CEF157","","BC-0187","0","405","505","","5159","1F7C3304-EA22-4434-AB1D-D44B46BAA051","0x00000000002C535C" +"1E41E5B3-D1DF-C441-9BBA-E20BAEE7BBF0","","SB-0920","0","680","740","0.032 inch slots","5632","AAA727DF-3522-8847-A538-D44C043F2EB9","0x00000000002C535D" +"195DED4B-6BD9-4919-889B-A607BF4986BF","","QY-0985","0","65","70","","2999","F6629096-CEC1-438D-9CA7-D450B29DA851","0x00000000002C535E" +"DC10417A-EA65-4ACB-89F1-F3F3FCF807DC","312","TV-276","0","270","290","","1184","EF0C3EDE-8782-4B98-8567-D492AC9D43F0","0x00000000002C535F" +"55F887F9-E3C4-4505-B24D-2A669AFA3B76","","TC-239","0","265","280","","2118","866776A7-7DEE-4906-AD1E-D49DDD95E8D6","0x00000000002C5360" +"23A43421-105A-482D-AEA4-A697758DA85D","433","QU-098","0","39","59","","985","E5AEB395-CE0A-43E4-B95C-D4AA6FE4C1AF","0x00000000002C5361" +"93C0A76E-F8BA-4ED6-893D-EFBE75B7A0C1","","NM-25121","0","692","712","","3464","46BBFDC9-5DA0-4246-BCF4-D4AACF674B67","0x00000000002C5362" +"7A3BCE38-D499-48A5-81DE-01424B3BA651","","NM-25118","0","346","368","","3466","C38212F3-1E93-4DE9-8C71-D4C3E32C51AE","0x00000000002C5363" +"E67AADF7-ECD2-4F09-B637-50E6008245B5","","AB-0184","0","789","794","","2708","30F4E703-B702-4EBD-B0C0-D4C9C42F726E","0x00000000002C5364" +"045243FE-9281-4E76-A991-83769B370F4A","33366","EB-657","0","170","300","","702","5CBAD1A6-D48D-4474-8127-D50029FE8BAD","0x00000000002C5365" +"DD4C5A61-5E1F-4897-9733-8D0DEB8C5284","","SO-0203","0","44","49","","3207","D1F62B18-1826-44C3-A39B-D50ABE3ECC48","0x00000000002C5366" +"8EFE0A0B-673D-314F-A464-1A9BE5D1F7C2","","PC-015","0","80","100","","5325","0EEF4E4E-8567-4F49-B60C-D50CB234760D","0x00000000002C5367" +"89BC1296-1E93-46B9-B609-EF931687D0B2","410","EB-406","0","250","595","","463","8A67F1D3-6519-4079-BD76-D50D227D381C","0x00000000002C5368" +"38213188-92DD-48C7-957F-1238529AE432","","TC-267","0","233","250","","2138","FF98CCB4-ECEF-4042-9AAD-D5102C241926","0x00000000002C5369" +"C3B83C0B-4F77-4244-B405-CE33FF3F9D78","","WL-0020","0","120","320","","3853","A3874CBD-7972-435A-B07B-D5210D67DF17","0x00000000002C536A" +"29862621-7897-401F-BBE8-57F6887C8B5D","","NM-01904","0","280","430","","5575","FDDACF25-C3E1-0946-8D46-D52195913CF0","0x00000000002C536B" +"E53AEB8C-9FC9-4ADE-B14E-897D0CF91225","","NM-25053","0","774","784","","3495","19E7AF31-3C3C-4AD5-8D89-D5294EEBFBB9","0x00000000002C536C" +"68DC19C9-6EAE-4943-87D3-BDFDDF862BB8","","NM-26965","0","300","340","","5101","7CEA1C52-CE1E-4EF8-9866-D59B682B930F","0x00000000002C536D" +"EDE6AD0A-9950-4A80-8A11-B1CAF53189F8","","BC-0151","0","270","290","","5122","0FE5CC86-635A-40DA-8E66-D5C3BF07334F","0x00000000002C536E" +"0A12AA63-CDF5-4331-8AFE-801B1216B887","","NM-21780","0","65","105","","3848","3E1BCBB1-248C-45FD-A0AA-D5CFF998C770","0x00000000002C536F" +"0930A01B-CADA-489D-83B8-D3369404985C","33730","SM-0201","0","540","590","","828","4ECC19FB-390E-4D0B-BAC8-D5E044A09AF7","0x00000000002C5370" +"01535DFB-D713-244F-A9A1-E04B9ED102DD","","WL-0286","0","300","302","","5733","4DE4D2E8-B151-624D-81C6-D5E0BE6088D6","0x00000000002C5371" +"784B7266-CAFD-B541-831E-2E6278246422","","PC-027","0","80","100","","5332","F2D135BE-0DF3-8448-B437-D5E10A8B7505","0x00000000002C5372" +"C122A4FF-8AA3-4CD8-88B6-1088DEE2B6C3","","SV-0090","0","200","240","","3386","47EB2094-D1F9-4E0E-8369-D5EFD7B6DC4B","0x00000000002C5373" +"EFE5ED74-F76B-4DF0-A019-497B29DB138F","33394","SM-0041","0","330","370","","769","FEE1C6BA-71B3-4A4B-A2C3-D5F7F501BEE1","0x00000000002C5374" +"1804C956-89DE-415F-A8FB-0AC857123E47","","SO-0138","0","42","47","","3136","42D59AD1-F455-4A4C-82E7-D60470D95E71","0x00000000002C5375" +"FDDC897E-43D0-4399-AE01-CD66B080EA5F","","AR-0054","0","20","25","","3005","A4477DDB-D408-45CA-B085-D6082E5B0854","0x00000000002C5376" +"C6B2D377-4B13-4339-A138-B630522AED92","","NM-21159","0","55","80","","3815","8792E866-A65D-4453-B3FB-D61C6745B5B6","0x00000000002C5377" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","","EB-692","0","198","203","","5455","76E2600E-07F5-884D-8A09-D63414AD55D4","0x00000000002C5378" +"07BFEF11-1834-4164-851E-761BA4702182","","NM-26903","0","360","400","","4948","69CAF52C-D61B-405A-BC87-D6425087C4FA","0x00000000002C5379" +"52EA0E73-6E5C-48CE-968E-4E679A9D9DA4","","TV-302","0","1000","1180","","3119","F7E3022C-54D5-43EE-BC6B-D65549D29D82","0x00000000002C537A" +"6A5138FF-309D-4E0A-AFD1-0BF6FF14DD7B","","AB-0157","0","517","547","","2685","87BA9634-747D-4CE5-8757-D67DF3E1293A","0x00000000002C537B" +"1A566D4A-D058-4EE2-9B63-D5ED2ACEA849","342","EB-338","0","580","600","","419","C5EF9B52-615D-4AFA-98A8-D684612CB9A6","0x00000000002C537C" +"4551B9D3-42DD-D448-B52F-81E799DEC80E","","PC-041","0","202","222","","5344","942336FD-DC39-4048-A523-D69D2D6F99CF","0x00000000002C537D" +"093CDAAB-AD2A-44B4-B1D9-B80783155E09","","NM-01691","0","330","341","","3763","D35D689E-E827-49A3-8C7F-D69FB307D250","0x00000000002C537E" +"393FAD87-36D1-4B55-8739-47626EF930C0","","NM-03330","0","39","44","","2822","2ACD272D-9214-4315-A944-D6A1345871D2","0x00000000002C537F" +"CA0D6C82-54E5-4A12-8B59-C3E42E84D9F8","155673","TB-0168","0","110","140","","1295","4EA40F64-8CD8-4784-AC89-D6AB2B18EA3B","0x00000000002C5380" +"45137610-CC42-470F-A911-B740944DBFB3","155525","TB-0058","0","180","200","","1258","CB561628-8DAA-4813-AE6D-D6B3CF4B203C","0x00000000002C5381" +"9D7BE9E9-F953-4738-8DBC-7F553258CCAF","33237","EB-522","0","170","210","","597","DB8495FE-BFAD-4B7C-A4E4-D6B6DA1C472A","0x00000000002C5382" +"7B5BC315-30B4-4675-9FD1-D871A19A1D2B","","NM-26253","0","1575","2047","","3780","77E27E03-0815-4EE4-8F03-D6C1C899F833","0x00000000002C5383" +"6CB0C675-CA6E-4B4D-833A-6E3546F89498","","NM-06901","0","280","360","","5589","6DE588A8-EDB3-E049-ADA2-D6E76CE1A248","0x00000000002C5384" +"AFD3E223-73E4-48E5-940A-FBD87DC0016A","","AB-0025","0","555","616","","2577","1BC9A788-475C-4506-9BB8-D71C0FA2AF05","0x00000000002C5385" +"435544A7-5BDD-48DE-997F-74F6B50C8D22","33293","EB-591","0","570","620","","634","70FD0AFF-7B31-4421-96A7-D7207E7ACF8F","0x00000000002C5386" +"7A6BF1B2-8E2D-42E2-AFC5-A51F77545DD3","401","MG-040","0","120","160","","937","36754B49-1B34-4E9E-A0F1-D7262CA44BE7","0x00000000002C5387" +"1ACEF15A-E2C9-4D10-82D9-9B88530D9680","411","HS-051","0","40","50","","1206","947A2D25-DE7D-481E-A908-D73375544B33","0x00000000002C5388" +"5F231DB8-1D9C-470D-9C18-CD94BFFFF0F5","","SV-0105","0","185","205","","3401","CE205D0A-E8CA-4C2B-B5E7-D74973C0EA59","0x00000000002C5389" +"5C74D71F-D4BE-4BD7-9D95-D7FD0A29CDF9","","AB-0100","0","1460","1500","","2640","B857C06A-C726-4F2B-8CBD-D7620C17D0EB","0x00000000002C538A" +"C1AE76E3-2A26-4802-805F-9D1D4CA233EE","4","EB-003","0","260","300","","4","CCB115A4-76B7-4E0C-829A-D76C187873E1","0x00000000002C538B" +"C2E22F6E-A5D3-44D4-B935-99C5E7ED4737","","NM-24609","0","230","260","","3715","98424A94-ECD7-422E-AC17-D78AF70CA213","0x00000000002C538C" +"8A804FB3-3077-8143-B0DF-8097D6C22B89","","WL-0246","0","60","100","","5675","51F203F0-BCCC-DB4C-B14F-D7B87F3E4C44","0x00000000002C538D" +"32619A63-F945-47CE-BE7F-058696513590","","NM-27195","0","140","160","","2917","0A6A7FE9-EC0B-46C2-B1AB-D7C4BCDFFD33","0x00000000002C538E" +"110DBB5D-ADC7-3446-AE47-A518CB8AE883","","WL-0121","0","230","250","","5454","3685A4CC-A1A7-4A49-BD5F-D7C80FEF4312","0x00000000002C538F" +"3171A0B7-00BC-4D90-AE06-94A3A086451A","","BC-0238","0","510","710","","5728","DBD41F3C-F3BB-E54D-8FEE-D7CA00CFA575","0x00000000002C5390" +"5B82C24E-E20B-4214-AEFE-F7B758B0E056","","NM-01504","0","420","440","","3065","E1BD8340-49AA-4A15-88C3-D7EC7A705CD4","0x00000000002C5391" +"441DAF07-52F9-4F0D-8C7B-7A754B24FD71","155523","TB-0056","0","340","518","","1257","335627D9-64B6-40BA-8DDF-D7F0068E2A3E","0x00000000002C5392" +"E4EA939B-1AB4-4D3F-B69C-45B234CC5B28","","NM-21770","0","200","300","","3847","7C44BBBE-DF13-49D3-8480-D7F0400E7532","0x00000000002C5393" +"D3AC0876-A564-4FAB-A4DC-55AFF23BE8CE","33355","SM-0016","0","210","250","","749","EFE8B3AF-0688-436D-8E9E-D7F53533FDDF","0x00000000002C5394" +"6A98EF55-825B-4F07-BDE7-C1333B512B89","","AS-010","0","65","105","","1505","4E563E60-D142-4FE6-9DDA-D80CF49C81F9","0x00000000002C5395" +"D1A5389D-FBA5-8541-98C6-81A8E5B7AEC1","","PC-016","0","300","345","","5322","290FE41C-5983-7648-9715-D83639AA1DF0","0x00000000002C5396" +"80E877FF-E289-4DD6-918E-9FE5DCDD5B14","","NM-24800","0","37","51","","3639","F1280FE7-1A10-4DFA-8C3F-D8628DD0C45E","0x00000000002C5397" +"108CF161-8AFD-4D34-83BF-C0E3236B196B","33418","SM-0060","0","390","410","","780","37DAF12F-74D2-4036-9D87-D863959CBBC5","0x00000000002C5398" +"C97ECA76-58CC-4371-844E-C6877961CF37","192","TV-172","0","62","92","","1095","91BEBBD7-C4FE-43BA-A458-D86631C44CB9","0x00000000002C5399" +"411D4FE4-DDF3-4F33-92A4-9AA23FCDF560","","BC-0031","0","260","280","","3922","D4CCF578-217D-4457-911B-D869F2DADCE5","0x00000000002C539A" +"5BE5F7B9-3CCA-4D7B-9B69-64D4143EF3AD","","AB-0076","0","175","180","","2617","C931048D-4392-4244-B66D-D87783AEB4BB","0x00000000002C539B" +"D09E2541-02D5-48A1-B6CC-72EDD01A7DCF","469","EB-464","0","340","360","","531","777B024E-06A7-42F5-A40E-D8802A68FB57","0x00000000002C539C" +"F0C95D1F-A207-44EF-AB3E-895D01C2D6C6","","AB-0220","0","715","725","","2739","3D854BBC-EE04-4C22-AACA-D88BAE0FB3F1","0x00000000002C539D" +"EF930E18-215A-AA47-80F3-132E493A62FE","","WL-0123","0","120","121","","5463","CE068ECE-CC06-1348-B42F-D893E4A3658A","0x00000000002C539E" +"102BFEBB-3819-4E46-8BF2-4FA1F36474B6","","NM-26952","0","571","591","","5091","3DBBA318-E8D1-44FF-AADC-D89CF3A3327C","0x00000000002C539F" +"0930A01B-CADA-489D-83B8-D3369404985C","33730","SM-0201","0","674","754","","829","080DD87E-EDF2-4153-A197-D8A1FBEBBB79","0x00000000002C53A0" +"F118E5AD-1D61-4E4E-B42E-24915D4B0918","","NM-01419","0","200","220","","3050","EEC3E984-6EFD-4E55-AB1E-D8B18EA8C2D3","0x00000000002C53A1" +"26CE07C7-BA10-42F3-8B0E-CC76A4484B1D","33312","EB-608","0","1960","1980","","657","75F17C83-BD49-482F-BA67-D8C1A173C733","0x00000000002C53A2" +"BD9ACDEA-B25E-41EA-9502-9FDEC652B332","495","EB-486","0","1021","1336","","570","8A8C017C-FD1F-44EA-B2AE-D8CA50F72F68","0x00000000002C53A3" +"DD897F76-810E-41F1-BE23-E66375A98384","416","EB-412","0","250","270","","471","F4A0D4AB-D23B-4438-9EFB-D8D64EB7926E","0x00000000002C53A4" +"18F15FB6-220A-4D93-943F-CF963018E2B8","","NM-00728","0","55","75","","4957","BF31587B-804F-4910-80ED-D8DD458990CF","0x00000000002C53A5" +"78D727CF-4982-45E9-872B-BEEB40BBB5BC","","NM-24572","0","25","35","","3738","2F418521-9FE3-4CC9-BE94-D8F887393334","0x00000000002C53A6" +"A98DC623-90E7-4F73-950C-5548EBC9B208","","QU-180","0","425","445","","2936","7A55A122-D9EE-42E6-8201-D911CEAF3202","0x00000000002C53A7" +"DF6F3602-BD8D-4361-86F8-4E3D482E989B","","AB-0169","0","190","210","","2696","B95C2F13-10E2-455A-B452-D913789C3E45","0x00000000002C53A8" +"1C18B62C-0F8C-4922-810E-23A032C889FE","","AH-058","0","460","510","","1745","19AE1639-53B2-4DC0-A070-D92D60BB9333","0x00000000002C53A9" +"A1F47094-2F5B-4E2D-A309-64386AC863DC","","NM-24908","0","220","240","","3609","4579AA1A-76CF-4DFE-9A29-D9322986BF46","0x00000000002C53AA" +"8B23EDF3-3090-45A7-A9A5-167B46B34865","","NM-26963","0","180","200","","5099","6094187F-5572-4633-9953-D9501B90EA7A","0x00000000002C53AB" +"7747FFD3-82DB-49F8-BF24-0554F6B4C31D","","SV-0022","0","100","120","","3310","5F54145D-B188-4626-9F1B-D953A7A4230C","0x00000000002C53AC" +"DFE3D8EC-B754-437E-BF57-D227381FCDD4","","SV-0083","0","480","503","","3377","743013E8-C211-4157-9923-D97401BB37B2","0x00000000002C53AD" +"8ECA02E4-6AB3-4F38-ABA4-266B65CE39AF","","NM-24731","0","402","422","","3664","AE4BC99F-B162-400A-AF18-D977B67C7CD9","0x00000000002C53AE" +"CAD2B4D7-149E-4E8F-9409-C691B927D5C5","69","EB-068","0","401","440","","83","7DA1B4E1-E000-4475-9FF8-D97C71C29E0E","0x00000000002C53AF" +"48560988-B0D5-4EE7-A9D0-F8BBFACF9E6B","","BC-0051","0","200","245","","4986","D571378F-CB97-40FE-9635-D9822F0258E0","0x00000000002C53B0" +"B54CCEDC-BFFB-4906-A3CE-17D9A3F91BC9","498","EB-489","0","1000","1900","","578","9592F93C-0ADB-4E34-9A52-D982ABE1F89C","0x00000000002C53B1" +"1ACA981A-099B-4253-888E-6DB5E46EA3E5","","NM-24683","0","200","220","","3683","F0B4AC28-1CCF-416A-86D7-D9904E10055A","0x00000000002C53B2" +"6662EA7A-CFF6-405B-B4FC-257F31DBAB5E","33300","EB-598","0","520","580","","645","3893D0C6-035D-403F-8F3A-D9940C62864E","0x00000000002C53B3" +"F17FF5AB-2124-4399-B545-624632923150","43","UC-0027","0","372","392","","1331","C440F8F0-15FD-4C82-B4CB-D999296BA283","0x00000000002C53B4" +"B2CF637B-8C49-48B9-B923-47C7CE4CAE96","","AB-0181","0","140","200","","2705","3CF5DA1E-1FD2-4CD4-9DC6-D9ADCFC0617E","0x00000000002C53B5" +"99218CFB-8C26-4396-8EC7-B8807A8DC5DC","","QU-004","0","200","210","","1904","7EE20891-4EB2-46CD-A082-D9AE2188843E","0x00000000002C53B6" +"8C6D9CAB-D786-418E-B55C-6DA4CA4C561C","33602","SM-0091","0","660","680","","807","C73E3076-BD63-4385-808B-D9C631EDC54F","0x00000000002C53B7" +"BA8F2918-1017-41A9-AB81-A250F8560AC9","","WL-0039","0","720","730","","5202","359766C5-40CE-1C4E-8429-D9C8BF312FE3","0x00000000002C53B8" +"B8E54263-A883-7149-BC11-8A8918CC9E60","","WL-0153","0","250","350","","5504","751E85DC-95F0-B047-AD30-D9CE77CC0C84","0x00000000002C53B9" +"8943545B-9C61-4048-BF54-8E943A7EADE0","199","EB-198","0","115","135","","262","50EC0F72-5742-45BE-A6FC-DA0355853BCC","0x00000000002C53BA" +"D892AF2C-D47E-4796-8F88-91CF79983289","","NM-25485","0","4766","4798","","3775","B1529EE1-B075-428D-8068-DA0AF6D4F896","0x00000000002C53BB" +"72C06B26-EA64-4E7E-84C0-DBC509097A2C","","SO-0225","0","9","24","","3229","0BEE167F-F171-43D7-B434-DA112EBC5472","0x00000000002C53BC" +"9A1923D7-791D-4163-BA5A-90351839C9DB","","UC-0226","0","273","333","","2844","5800419C-D059-43E5-BF16-DA26969C9386","0x00000000002C53BD" +"87516ACB-A1A9-4047-A94B-B563C35E719A","","NM-24887","0","230","250","","3616","1F5B7DF0-DEA1-41D8-89FD-DA7E8C2212D6","0x00000000002C53BE" +"F114CAE9-6AD7-44F8-9904-C0A86EB806B9","","AS-033","0","240","335","","1526","AAE71520-25B6-47CB-8773-DA7EF887308C","0x00000000002C53BF" +"0C62F9A6-A15A-4155-A57E-922CE6249507","","SO-0234","0","4","19","","3238","FBCA81DD-6380-4EDB-A9D4-DAA444586DE4","0x00000000002C53C0" +"127EC6BE-8505-4502-9B29-0A2D157C88A1","","QU-173","0","460","500","","2539","AF31B8CC-5234-43D8-9803-DAABBA9FBF6E","0x00000000002C53C1" +"3E816E4D-797B-444B-B46A-479BF6F44E2C","33348","EB-640","0","320","340","","688","E3A97542-416B-481E-8EF5-DAB25CCA80BE","0x00000000002C53C2" +"8CCAF058-5BA8-4C76-A141-8BE958B541DA","","SO-0160","0","4","19","","3158","809A13F4-BEB0-411A-B063-DABC0D530B11","0x00000000002C53C3" +"5AB74A95-0BC2-4785-A0C6-52F6A2CCAE1E","","BC-0094","0","75","85","","5031","43D15146-C0A1-4A2F-8FBC-DABDAACEEC36","0x00000000002C53C4" +"25C7F9BD-7E10-432D-878B-AAF87BE5F015","","NM-02539","0","300","340","","5610","27107767-E248-FD4B-A898-DAC93AE14041","0x00000000002C53C5" +"149C4549-41D4-484F-BDB6-393ADFD7D604","","NM-04073","0","340","380","","3105","EA9DC7ED-22EE-463E-9BD9-DB039097DE11","0x00000000002C53C6" +"9488EFF2-AA28-E743-9C70-3695D767C548","","PC-059","0","120","150","","5362","857FFD2C-0AB0-6241-83EA-DB34C2540FCB","0x00000000002C53C7" +"9908CAE6-1317-40F2-B8E7-3035AB0237DC","","NM-26945","0","440","500","","5084","0263481D-26AD-4964-A246-DB3827A2D1F8","0x00000000002C53C8" +"D712D779-6A34-4983-9EF3-2EE8AE13E231","","SV-0129","0","240","260","","3432","3BF8A6E4-E2BE-4320-8B9A-DB57362F8870","0x00000000002C53C9" +"8F87C556-FF3A-4E50-B953-4DC3ED759E1C","","AH-039","0","270","330","","1594","A014D63F-B543-423E-872E-DB66F1B86267","0x00000000002C53CA" +"2F8CD42C-75B3-4482-B39E-45DC4D729110","99","EB-098","0","740","760","","121","27807192-00FF-4C58-BA0D-DB713F480403","0x00000000002C53CB" +"E2888A6D-01C0-4679-96D2-DA2D200CB01D","419","QU-084","0","207","247","","983","0A7FB40E-BE76-4AFB-9800-DBA041B0DD23","0x00000000002C53CC" +"06CA006F-516A-4D6B-81C6-742E848916D3","","AR-0151","0","19","24","","3090","321A8312-274F-4414-B375-DBB971F66777","0x00000000002C53CD" +"0BE447B4-5E61-4F88-A8CB-008A5B94AE6B","","NM-26800","0","730","750","","5453","6A8B25BD-5F25-FC40-BB02-DBD820DB7F1F","0x00000000002C53CE" +"DC3BAEF8-E889-4D47-828C-57F23D567FF6","","NM-25072","0","59","63","","3488","7438BEBE-1061-4A34-A962-DBDEC1DBC2B5","0x00000000002C53CF" +"4BBFF235-ADCB-40C8-A021-9CC7EA36E989","","AB-0043","0","65","70","","2591","8CFB77F3-1B94-4E5F-9368-DBDFF5AA9189","0x00000000002C53D0" +"E4CB746F-DB84-40F1-9D6C-40691FEC4846","33363","SM-0005","0","275","295","","757","255F73AB-7E29-4378-AF41-DBE6B49D8502","0x00000000002C53D1" +"A71BDC76-207F-4B67-8F5B-54D0391CE430","","NM-00037","0","20","518","Open, uncased hole","5681","8C6CEEDB-EE9E-694A-92B0-DBFEE5F6209E","0x00000000002C53D2" +"A9779C27-58A6-7B45-85E4-0CB26B0554F5","","PP-026","0","70","80","","5266","69E2E1C0-2149-9840-AB39-DC23A72A8456","0x00000000002C53D3" +"095FBB71-3ACF-496B-8BD3-52C48C82A7B5","","BC-0069","0","70","100","","5003","F82842CD-39EE-41AD-8E89-DC2B36252FF4","0x00000000002C53D4" +"0205DFEC-B828-4DFD-8D49-1AEAFF60C0B3","261","TV-232","0","60","80","","1143","1B9933BF-4F0B-4618-B506-DC2C6F32088A","0x00000000002C53D5" +"6CA06EE9-4A84-4BE8-8B12-5A86840138B2","","SA-0226","0","160","400","","2856","A55AE1CD-5089-445C-9BDC-DC2E628B7A63","0x00000000002C53D6" +"650871B2-1DA8-5B4E-B3B9-158C3A022AC9","","WL-0258","0","30","110","","5688","CCCA46CE-8AA1-A640-A627-DC40C1A74972","0x00000000002C53D7" +"BFDD3347-4567-4631-B8F9-CA6EDD867808","","NM-26735","0","27","34","","3807","5255B86C-E406-4C07-A934-DC75AA67EE4B","0x00000000002C53D8" +"2E41D15C-2BB9-B749-BCBA-BF706CBD5DC0","","NM-28312","0","220","240","","5497","A29F222D-AAD9-B94D-ADD2-DC7D0F11787A","0x00000000002C53D9" +"F21AE9A1-6839-4811-B08B-BC9AB1A311A2","","NM-02463","0","340","403","","5588","E07A9926-BE05-7F4D-8074-DC80F18D57AD","0x00000000002C53DA" +"EE0FCB37-4D3A-48C8-BE22-D7F2F2683900","325","SA-0019","0","250","350","","855","72B6CA64-E227-42EB-ABB9-DC82F66B5113","0x00000000002C53DB" +"EFC62544-C42E-4001-87D0-8267641C3C27","193","TV-173","0","160","200","","1096","762927BD-8395-4C9C-B207-DC936E4FDBF7","0x00000000002C53DC" +"7E2A9F45-DF74-4615-AE2E-7796024B0183","","EB-697","0","408","420","","2930","DA853027-8A0F-4FDE-9727-DCAC05B140FB","0x00000000002C53DD" +"EF4A38BB-FE28-4E75-92D7-3D402EC446FF","33372","EB-661","0","580","620","","707","A6AD6BAF-2462-4011-9532-DCAD6FA74B26","0x00000000002C53DE" +"7A34736F-0182-40AE-A684-8196750AF52C","","SV-0062","0","420","440","","5192","2427E9F5-C1F0-9444-99FA-DCB7C92C9EFE","0x00000000002C53DF" +"84354BF9-80AF-4845-9922-FED592D0253F","","NM-27235","0","690","705","","4975","446E2416-2D5C-4199-A966-DCCC6B1175DD","0x00000000002C53E0" +"42343E46-11B8-429A-9BC3-70E3CC8D2EF1","308","JM-009","0","90","130","","888","375BDFD6-60DF-4D17-AF74-DCCFA9D187BC","0x00000000002C53E1" +"19CC9502-7C12-4238-97AF-ACE69F766F40","119","EB-118","0","450","490","","151","4196DBCF-73AF-4F48-90C0-DCD1F8688704","0x00000000002C53E2" +"7B3F41EE-A5EE-5E4F-95D1-0D4829E9C33B","","WL-0228","0","75","97","","5650","CBDDC85F-C516-CC46-AEB8-DCE15B61C1E9","0x00000000002C53E3" +"0A67C5AC-975C-4B66-ABFA-BFE3A2760A64","40","EB-039","0","80","400","","42","9DAE0DE2-BB3A-4D0C-941C-DD1CB89AE98C","0x00000000002C53E4" +"8C64A201-8864-45B8-ABB5-E5E8CF5ADD81","33384","EB-673","0","700","780","","722","B38A46BB-EF56-4A12-94E9-DD29F4817119","0x00000000002C53E5" +"737F3D89-07E0-43A7-A652-23FEB9C56B1A","","BC-0120","0","780","800","","5054","2E48A307-2DA7-4353-8FC4-DD433465BBE0","0x00000000002C53E6" +"4A8DC4A3-5009-477B-8CDC-7746AF5D7960","","NM-10271","0","130","165","","3903","84A564B4-A325-4936-BB68-DD5D1CE9A839","0x00000000002C53E7" +"CB3A3CAD-1871-423C-BA3A-5C6C60AD5221","","NM-26881","0","85","125","","3931","845D8CCF-DF82-4953-BB70-DD68AAD3FC57","0x00000000002C53E8" +"019C5AA9-3F5C-4B9D-B53F-9279D826900E","","NM-21461","0","7.5","17.5","","3840","BA719D7A-E791-4A8A-B486-DD797593E382","0x00000000002C53E9" +"84329DED-33F8-48CE-AD10-82335219B9D9","","NM-03387","0","40","45","","2797","9450E690-2B24-43D3-B142-DD9A86002FDA","0x00000000002C53EA" +"B061C12A-99CC-4B7E-8165-307E84A3830F","","SV-0111","0","440","420","","3409","1DB4FD95-461D-4428-9CF0-DD9E4B5F7ABB","0x00000000002C53EB" +"9580A9CD-DBEC-4DF9-B3FF-E5890FD0A16F","","NM-24639","0","90","130","","3706","91B8B0E0-73F3-42C6-8369-DDA179AE93FF","0x00000000002C53EC" +"C561EFDD-92C3-4E7F-BD72-544A023B2378","332","MG-004","0","280","320","","902","E66921EE-F423-4849-80F4-DDA4F48F321A","0x00000000002C53ED" +"5184D03E-5C19-4080-98FB-0E78770809FD","445","EB-440","0","305","315","","504","1682683B-B20E-4708-8BCE-DDB008F51F83","0x00000000002C53EE" +"D81F94B1-1D06-4865-8607-589437E68AE1","","BC-0064","0","320","340","","4998","C8A1A739-E062-4815-AA34-DDB1845F6541","0x00000000002C53EF" +"EA80F27A-28D0-4CF2-AB7E-2BFD286B57C9","484","EB-455","0","250","259","","518","2A7F5E3B-C805-442F-BF00-DDC2F63AD056","0x00000000002C53F0" +"6C563339-DEB6-4FA6-8319-B8E3E3AAA5BB","","BC-0194","0","360","380","","5166","8C9FE39A-45B7-4EE3-8C30-DDCBF9872FFC","0x00000000002C53F1" +"74CC7281-11A8-410B-9B79-480B471A8F56","","SV-0089","0","190","210","","3384","629AC658-7D01-4B50-8645-DDDE219241F4","0x00000000002C53F2" +"A90E62D9-2F0B-4267-8295-AA8FB3F146E9","249","EB-245","0","1025","1030","","302","E5908930-F7EE-4647-8E04-DDE9975D43B1","0x00000000002C53F3" +"C198B228-7883-4742-AB83-4DD87DFA2CF1","435","HS-019","0","22","42","","1201","E7E74BCC-514C-4204-BE2D-DDE9CEAE2A17","0x00000000002C53F4" +"02AEFCE1-E8F8-400C-8F20-D1FC37D5AC45","","AB-0148","0","580","600","","2682","0B2D7D62-3EED-4991-BB0D-DDEC6EC7BB47","0x00000000002C53F5" +"B2B6629F-2D43-4898-BEC5-08703FBC130F","","NM-03331","0","139","144","","2815","80DBD717-B193-487E-BF65-DDFAA4F8D1CF","0x00000000002C53F6" +"3D73E5D3-D73B-497E-8C31-3FB65D83BD46","","EB-692","0","266","301","","5457","3BE26CC5-AA16-494C-8303-DE0A2A9478E1","0x00000000002C53F7" +"DFED61C2-1B73-4E97-967F-7F870818AAEB","","CP-0026","0","310","330","","2939","0408E552-F5FA-4B45-A6D3-DE161526E45F","0x00000000002C53F8" +"6B0AADAB-A483-49EF-8E65-CD6A617FD737","","AB-0001","0","650","1180","","2559","8AC31645-1723-41BB-8FD3-DE2A6A79FEDE","0x00000000002C53F9" +"3F9CF305-22BE-4BF0-A132-636CDA5CA933","","NM-01826","0","537","723","","5572","BC2B0107-5B27-574F-8A1E-DE2F7CEEC47F","0x00000000002C53FA" +"36782F7E-1F97-444F-B951-6EA5E6A1A435","","NM-26927","0","80","100","","5074","52B23EFD-2F47-4588-8305-DE4F6D4896DF","0x00000000002C53FB" +"B4E733BB-1990-495B-974A-75C3CFED7E1F","","NM-05946","0","308","400","","5583","5C0C3EDE-E7AC-3B41-8322-DE5FD49EA4F9","0x00000000002C53FC" +"4BD5B6D1-18CD-4893-BF0D-3E6109347671","299","EB-295","0","1080","1090","","370","71290677-CC5C-4FB8-9250-DE65D0CE2817","0x00000000002C53FD" +"4887E67C-173B-4E2E-8644-12356BC089DE","225","EB-221","0","160","220","","282","B85E2BED-F8CD-4B01-B4D1-DE913D8C619B","0x00000000002C53FE" +"217FE465-49F5-E44D-BFE1-460AB83C8CBC","","PC-010","0","220","230","","5318","2AAEBF4B-CC92-8044-BDD0-DE975D2F14A3","0x00000000002C53FF" +"0A7E0BE9-4D2E-48E0-B9AD-F50BEC0D4F54","451","EB-446","0","340","400","","510","AD8D8F6F-613C-4740-9CF1-DEA60213C35E","0x00000000002C5401" +"A4337B54-DBE6-45F8-B3B6-13DA810B1C98","","NM-00808","0","81","84","","3748","88552FEF-E6C3-4959-B4F7-DED475BA8278","0x00000000002C5402" +"46045373-93B7-43D7-9996-04CC02A6C2AC","33306","EB-603","0","580","640","","650","3123EFD8-CA0E-4861-8DF2-DEE3056D71C2","0x00000000002C5403" +"A8E82DFC-62A4-8545-B373-1F58070A161F","","PC-054","0","40","100","","5356","1BE87A45-9192-E84A-A9E9-DEF429751E70","0x00000000002C5404" +"66DAE851-CF8F-4204-AB54-6989887815C5","176","TV-156","0","280","380","","1085","EF43431C-EE9D-4BBB-8294-DEF5726C9D54","0x00000000002C5405" +"C69F11DA-5B6E-40C6-8CCA-B2C42B6D9F27","296","EB-292","0","625","645","","366","2C6857CF-1242-4E3F-8A57-DEFC2D0D4AF6","0x00000000002C5406" +"9A55E877-B723-4762-B27C-3662F486F6A9","304","EB-300","0","340","350","","376","6E2BB5BE-E12B-4692-A871-DF005C788A6D","0x00000000002C5407" +"E80498BE-D199-4162-90EE-C404E7781A4C","183","EB-182","0","690","710","","227","F65E58A9-546F-4376-994F-DF16D1605E71","0x00000000002C5408" +"045243FE-9281-4E76-A991-83769B370F4A","33366","EB-657","0","110","130","","701","13A10058-1ADC-46D6-BB73-DF1FE8B7C631","0x00000000002C5409" +"F510B757-4A82-4316-B061-C36211797AA2","","SO-0171","0","45","50","","3169","4C281679-9CDA-4083-9013-DF3DB930E27C","0x00000000002C540A" +"34B2042E-E117-4B42-970F-30BFCE1207BD","","SO-0206","0","6","9","","3210","D1EB53B4-E6A5-43A7-9BE3-DF56D5110077","0x00000000002C540B" +"C5465CCB-EF55-4718-992A-A2A3A8CFF451","","NM-02572","0","20","58","","5611","3BEF319F-3C8D-DD4A-8C2F-DF5B6A080A56","0x00000000002C540C" +"31BEC324-DB5B-C34B-928D-2A080B8751EC","","PC-036","0","480","505","","5341","83C11E62-901E-4647-AFE2-DF6A4733EB68","0x00000000002C540D" +"B6FE0880-D7D2-482B-98A2-08762A0136D0","33341","EB-636","0","1982","2002","","684","CB55DF1B-8276-49F1-9C8C-DF988B55622A","0x00000000002C540E" +"11DD1585-1C64-1745-84EF-9CBB72EC49C5","","PP-022","0","90","100","","5262","F1AA4F70-C953-C543-9A26-DFA10C7E9935","0x00000000002C540F" +"1566B3BF-8027-4EA4-AA30-76EFCBEB41AF","","TC-246","0","800","860","","2123","CCE1DF1F-9121-4D8F-8968-DFB47FDBBEA6","0x00000000002C5410" +"1D96DE47-603C-46DE-8085-0DBB3F90C87F","","NM-24876","0","140","160","","3625","EE7C00C9-5B9A-456D-B232-DFB60221900B","0x00000000002C5411" +"609D834D-E670-48A7-9594-63541C46F72E","","NM-25261","0","40","115","","3447","EDEE6D2E-CE6D-4423-B3EF-DFC061F33501","0x00000000002C5412" +"F1BC25D7-0EA7-4FD0-8C03-237AC5326065","428","QU-093","0","260","280","","998","39D58F5A-A786-415D-B770-DFC56B487CD3","0x00000000002C5413" +"B384E107-A93E-4BA6-A862-3EB5EBB7CC15","","TC-270","0","235","265","","2140","11B8711F-5193-48A2-90B5-DFCD20849A0B","0x00000000002C5414" +"B1FBD489-2800-4024-9EF8-21B043EE61DB","428","EB-423","0","430","450","","481","B084D7C5-03D5-427B-95A2-DFCD21D320B2","0x00000000002C5415" +"150BDE7B-93C0-4287-AFB6-23FFB688CE4A","","NM-00461","0","60","180","","2878","F15955F8-ABAC-4831-ACA4-DFDC23005E4F","0x00000000002C5416" +"B0EE8181-BEA3-4C5E-86E9-28E72E8B1392","","NM-24973","0","408","422","","3580","204FC9F3-9564-4476-863E-DFEE163DCB18","0x00000000002C5417" +"2D8CA33E-3568-4337-B0F9-250CBBB0CCE1","","AH-049","0","260","300","","1603","FDDAB02C-2130-4D1F-A77F-DFF7FB69663F","0x00000000002C5418" +"77BE5748-C850-49E3-A054-6FBD60AE72F8","","SO-0205","0","46","50","","3209","950FA4F0-B03B-4C62-8718-DFFFE7E2CF7C","0x00000000002C5419" +"F9B2854F-D2B6-45E0-9BD0-AD564ACCCB92","","WL-0362","0","550","560","","5759","DDFAC455-8C43-4B4B-B6CD-E017304D6D04","0x00000000002CF392" +"E6A4063C-1657-074D-9C15-78E477806D44","","WL-0261","0","640","660","PVC with 0.032"" slots","5691","45B9EBA0-99B9-1C4E-9E9A-E036974CE1CA","0x00000000002C541A" +"BDC84EE3-F0A7-F547-9E6A-61E0C758063E","","PC-108","0","500","540","","5398","0CE73C56-F2F1-2E48-8D92-E03AC923037F","0x00000000002C541B" +"E38F0A84-FAB1-439B-9AE1-E6EB6363658A","","TV-298","0","185","206","","2558","DA884AEF-AC0D-4E6D-8314-E04082AC1B34","0x00000000002C541C" +"8CE50522-0DEB-4E41-9055-8F4D56B0BEE2","164","EB-163","0","656","897","","198","84C3EC28-80A7-46AA-B03E-E064E63E8A83","0x00000000002C541D" +"C35A7E0C-51CF-4453-99F2-B41CF6E8396F","","AB-0042","0","95","100","","2590","6F38BF07-1940-4DEA-94D9-E072D46BD203","0x00000000002C541E" +"3F9CF305-22BE-4BF0-A132-636CDA5CA933","","NM-01826","0","420","530","","5571","E80A1C32-FB2B-F744-BEDC-E09EF7251068","0x00000000002C541F" +"03B105CD-04A4-4B30-99AF-54BE43FF43DE","","BC-0177","0","400","480","","5146","6FFC349C-D554-40D6-8BC5-E0B3BEB7663F","0x00000000002C5420" +"23CEBA55-36D6-40DB-A010-9B1CFC641623","","NM-24666","0","336","353","","3693","27328672-B454-4893-B9E4-E0C701C9907C","0x00000000002C5421" +"5F53A7C2-BF23-4F09-AE3D-EEF2F1BBFF12","496","EB-487","0","1000","1740","","574","97C4FBC4-DA30-49D3-A1DF-E0F8566095D4","0x00000000002C5422" +"8EA85C21-0764-4E30-8E61-D1B8B89CED74","77","EB-076","0","67","68","","85","57F42050-36FD-4304-A74C-E0FC188871F8","0x00000000002C5423" +"DC10417A-EA65-4ACB-89F1-F3F3FCF807DC","312","TV-276","0","180","220","","1183","0FC592EA-378F-4A6A-BF0F-E1082F1EFFF8","0x00000000002C5424" +"53D600D7-1264-4F0B-B5A2-06AA77F79A53","354","JM-055","0","120","240","","896","C0132D77-F9AE-47DE-98C9-E13C05DAA675","0x00000000002C5425" +"5BB9442C-D842-A74B-9949-1198AF191428","","WL-0241","0","45","85","PVC","5670","539484AD-F75A-E94D-9EBB-E13CC04BD056","0x00000000002C5426" +"25083BD9-23B9-0A4C-9400-4C417E8CC71A","","PC-006","0","80","90","","5314","D21E239A-9F4A-C34A-A31D-E147CC940F55","0x00000000002C5427" +"B1396814-B99B-4C4E-B6CE-F192BA466C1C","","SV-0122","0","120","140","","3423","5A9805C7-32AE-4DEB-9A8F-E151C86E06C1","0x00000000002C5428" +"8A8D77D5-A188-4D80-A798-A53C4E90B1B2","","SV-0049","0","240","260","","3346","F7980EEA-5C98-435B-B347-E15D37F753DA","0x00000000002C5429" +"C0DE0F0A-E2A8-461D-A5E4-1E5B7941CB03","558","GT-006","0","906","1005","","1337","D2EA5EE7-24D5-46F3-8847-E15F5D55B298","0x00000000002C542A" +"398135A3-3693-4828-A711-84F2E00E5BF0","33664","SM-0139","0","317","338","","811","24A732F7-3082-4DD5-AEB6-E1978655C7E9","0x00000000002C542B" +"D2D06DDB-7AAC-41FF-BD2A-A61EF74A05BB","","SO-0212","0","93","98","","3216","2010CC80-3D38-427B-89AA-E1A1686E3954","0x00000000002C542C" +"3A676C0A-E16C-4BA3-B8A4-B3453EFDE21A","417","EB-414","0","1360","1370","","474","1BA0483E-C5B2-4FF9-A3A2-E1A17EB1CF85","0x00000000002C542D" +"375C8559-F9A1-421B-ABEB-02EE8B6A45C4","566","GT-014","0","20","40","","1338","087E9187-A9DA-43CC-8B8E-E1D320506051","0x00000000002C542E" +"0E78871D-1715-4CA3-BE06-EBEB7F6A373B","","SO-0245","0","45","50","","3249","F7BE4380-A932-48AD-B6D1-E1E2771BBB22","0x00000000002C542F" +"02D4CC66-3B9B-475B-B2F8-095D6D1945EB","","NM-01254","0","573","575","","3070","D279251D-DEE6-4821-B554-E20243EC665F","0x00000000002C5430" +"99900D7D-556F-4C3A-9323-4F86FDABAFD7","","NM-03691","0","218","238","","2828","03FB4163-DF7E-4618-B401-E207FF5DAEB1","0x00000000002C5431" +"F81501AF-929E-4C89-8FB7-FA0591C562BF","","BC-0229","0","380","400","","3528","97C88282-389C-4B09-B85D-E216F7F9A76E","0x00000000002C5432" +"9442868E-3A17-44F6-BD24-F5EEF5358905","","SV-0045","0","465","505","","3342","32E09B16-17F0-44A2-BCA9-E222DA52D203","0x00000000002C5433" +"5D6365C4-131E-407C-85C9-96725C9409FC","393","SA-0115","0","280","330","","858","7518380D-CD1A-4115-9A8E-E224DC3EEAFA","0x00000000002C5434" +"98C38C53-4B82-DA42-BE6D-BD1CC8C067A4","","PC-130","0","260","310","","5417","70DEE349-BDB4-3A47-A938-E23E2409F739","0x00000000002C5435" +"F690649A-1CCB-4640-9DD0-5F0461173695","","NM-25042","0","545","570","","3497","DA61FEA6-A691-4F91-96F4-E24845563131","0x00000000002C5436" +"28B1F51C-77F9-4DEA-AE44-B5048262DC45","","NM-03339","0","39","44","","2820","3F07BD5E-980E-4A3E-B288-E25221648E0A","0x00000000002C5437" +"9B622A6D-68C3-4A0D-905C-913B9527A491","","NM-01620","0","614","789","","3753","131B8AE9-A761-454E-805D-E2530D9441A4","0x00000000002C5438" +"B936E760-342A-46A7-91C8-EDECD5E13EA1","","BC-0153","0","243","283","","5124","92F1CBA7-40A0-4639-AD7A-E263FC080180","0x00000000002C5439" +"48C1FE2E-A759-46D5-9398-4E51ABC73949","","TC-204","0","440","490","","2105","0E526DF1-1753-473B-A2E3-E271CE900AFB","0x00000000002C543A" +"C469CC1C-A12B-4E42-BB16-C109ED153A0E","","SV-0048","0","535","575","","3345","3C0FC15A-3ABC-46C4-879A-E28677352808","0x00000000002C543B" +"85FCEB57-2255-44B4-B7AE-E4DF53450DD6","370","EB-366","0","184","204","","251","E0848EB8-F18C-4758-8EDC-E28C9E16676B","0x00000000002C543C" +"E0A7162E-DC82-4E6E-9547-311FE7BAA3CA","","AS-062","0","262","302","","1550","A88AFBF1-1F0A-4260-96A0-E290EF171789","0x00000000002C543D" +"B388C22C-9701-47DF-9632-041BDC40AF03","","NM-25037","0","562","602","","3555","8B8E896A-03C4-42B3-95E4-E2951FAC5472","0x00000000002C543E" +"E0CD1A6D-FAF7-43CD-9250-6F4EEF16C474","33411","SM-0053","0","315","344","","775","C885353B-1805-4E42-977C-E29E8900F36E","0x00000000002C543F" +"E8FD938A-40B7-4115-A41D-A15A12257278","","AR-0164","0","17","22","","3093","F9D1742D-E34D-4911-A912-E2AE5819059A","0x00000000002C5440" +"5F60BF58-6A49-47FA-8A75-F6A431B3C625","","BC-0053","0","200","240","","4987","80C0B266-9E35-4101-87E8-E2B07D28775C","0x00000000002C5441" +"7129ED03-844F-5F47-A1D3-CFAC8149F0EB","","WL-0076","0","180","420","","5228","1887FFC9-5E92-EE46-A2FE-E2B736DB0A07","0x00000000002C5442" +"32A29457-C0FB-45FB-88BC-A211A99801E2","","NM-24587","0","187","247","","3719","2E9BB5FA-B8F5-4A2C-A127-E2DA777BD24C","0x00000000002C5443" +"03A96018-B57D-4EC8-B454-A9CA0FA240B6","","SO-0165","0","4","19","","3163","B7047E93-A982-4F6D-89C9-E30A1E9A45C4","0x00000000002C5444" +"21FB0E10-147F-4A31-9ABB-15DE6C4E49E2","53","EB-052","0","320","340","","57","2A643038-2D5D-4A05-B23A-E323A0D4C337","0x00000000002C5445" +"99900D7D-556F-4C3A-9323-4F86FDABAFD7","","NM-03691","0","258","298","","2829","CE3D5698-6469-4043-AFC0-E32C78196698","0x00000000002C5446" +"9C3C002C-E029-F740-B1D3-9C6A2DCD7DB6","","WL-0232","0","65","90","","5648","630FADB0-F18E-AA45-9A2C-E34057DF8553","0x00000000002C5447" +"4183CE7A-4531-4D45-9E41-595C7C3B1B4A","33321","EB-616","0","340","360","","668","9DE49420-FA87-49E3-A228-E340D58E83DF","0x00000000002C5448" +"5A59AF9C-6661-4D82-A009-4F62CDB21B78","","NM-00882","0","480","620","","2913","A4557774-CEFB-4B25-AE08-E3418E13F91E","0x00000000002C5449" +"59B492FB-4813-424E-BC91-52CB6F078767","187","TV-167","0","400","460","","1091","3E08460E-3404-4EDE-9AE2-E346B1E2BDF7","0x00000000002C544A" +"9969E82B-BAAF-47FA-A6D8-4409A0BD6FFF","","SV-0024","0","240","260","","3313","5B06563D-33C9-46C5-A9A9-E347730D56D4","0x00000000002C544B" +"5473A547-475F-4610-B46A-2804B360DB3A","","NM-25108","0","547","562","","3476","485D1402-0786-4CFD-BEB6-E35EB05F47BE","0x00000000002C544C" +"3161190D-E421-C642-9467-EAA421C7B98B","","WL-0255","0","80","100","","5712","E235D3D0-68CB-044D-B404-E37B9F6F82A3","0x00000000002C544D" +"C8634A0A-D40A-41F8-9427-EAC3FD42DA8A","","AS-020","0","340","420","","1514","B1CA3F0D-8F22-43DA-A769-E3817D5B10DF","0x00000000002C544E" +"E9B59DC0-F16E-4A7C-9AF7-9E04E1CD415D","","NM-26894","0","400","440","","4939","77F0C2BD-B646-4D8B-BFD2-E397F6B953A9","0x00000000002C544F" +"253DAA80-E094-45FC-B927-DF2D205270BE","","AS-027","0","60","100","","1520","CF8F7C6A-23B1-40B5-856D-E3A1D590D989","0x00000000002C5450" +"316F269A-BCB9-486E-B834-FE85C0659193","","NM-09532","0","60","236","","5556","CC4A1439-92F7-6B4F-8FFB-E3A6E35FE313","0x00000000002C5451" +"718BBA91-AE78-424F-8280-35E9210A741C","155542","TB-0079","0","100","295","","1264","F7A8C28F-7367-4F44-918B-E414DD19AFD4","0x00000000002C5452" +"95704E14-D055-4849-A052-662A8EA26CC3","","NM-25116","0","560","600","","3470","3AE5A3A7-9D5E-4140-936F-E4460BBA4FB8","0x00000000002C5453" +"0BF62E29-2C94-40BA-9303-A5CDECA310D6","300","EB-296","0","900","910","","371","6B36F436-6995-41D6-B3ED-E45A23601C43","0x00000000002C5454" +"B8F4E068-92D1-48D4-B060-1086D86E1314","","NM-25167","0","110","120","","3452","4AA815ED-F35E-4E02-9056-E4764C9E50BB","0x00000000002C5455" +"2392B91B-5F4D-4AC6-B512-244A89BF404D","132","EB-131","0","180","220","","164","DFD4C31B-CB79-4835-9CD9-E4797A913A68","0x00000000002C5456" +"0CD11939-B283-984B-AC7C-D4057A81FE99","","PC-029","0","120","140","","5334","47219DEC-131E-B440-833C-E47B4268C57E","0x00000000002C5457" +"6851EEFC-6A19-46F1-9266-34C177A247FE","","SV-0039","0","320","340","","3335","0C21B0D4-B49A-4217-A150-E47D35FCF2DE","0x00000000002C5458" +"B0193969-D692-4072-89CA-01DE95F4FE1E","294","EB-290","0","547","570","","359","57E73E23-C2E5-4E84-B467-E47DAF179A42","0x00000000002C5459" +"6982FDED-1156-4152-BC94-8C9E6A8314D2","","NM-00995","0","540","560","","2790","A85817E2-DF3A-4439-B159-E48920EC57C5","0x00000000002C545A" +"D3F121D5-0B6F-4E13-A0E4-308AC8BA7839","","SV-0141","0","260","300","","5216","CFF96EA4-218C-A340-9076-E4928891AB74","0x00000000002C545B" +"6851EEFC-6A19-46F1-9266-34C177A247FE","","SV-0039","0","260","280","","3334","71524A8E-57EC-4421-B095-E4A2DB74D907","0x00000000002C545C" +"10BD81E6-6A3E-4DBB-9084-EACA9BA833DA","","NM-24918","0","220","240","","3603","07859DBC-0305-442F-922F-E4B8907F4E7F","0x00000000002C545D" +"D8C18F48-6860-4249-AEE6-7117A99FD740","","NM-04335","0","45","181","","5619","F566E86D-A842-3848-91B0-E4BF9A951FF3","0x00000000002C545E" +"5AD24383-E49C-4A86-8EDD-3F9BE2D2CF82","","TC-241","0","700","730","","2119","A27E46E4-3F48-4D83-9DC0-E4DAC95B6CA0","0x00000000002C545F" +"7764FBE4-CAE5-4A2A-9F89-BB89F8444E89","105","EB-104","0","785","825","","129","D8194718-0A14-4CB8-85AD-E4F1C9AE165C","0x00000000002C5460" +"D774DC4C-52B9-4770-AC9A-ECF370A44161","","NM-03900","0","0","502","","3101","2F32918E-1717-49A6-9181-E4FD77C746C8","0x00000000002C5461" +"18F43C6A-60D5-43D1-9F72-38285198D905","350","QU-022","0","77","137","","950","62B10916-4B67-4C22-9EE3-E5051D2B46FB","0x00000000002C5462" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","540","560","","2897","6A725E8E-C1B0-46A8-BAB1-E50DFA4BF341","0x00000000002C5463" +"058902E8-0F22-4349-ADE1-EE74BAB436FE","323","TV-282","0","65","85","","1189","0E0CE173-C534-4DD9-8C4A-E5255E0E00C2","0x00000000002C5464" +"144FC6FA-8676-443E-AEC8-849E60C08682","78845","SM-0217","0","375","395","","831","6F1D9DC4-DBA5-464A-AC05-E527AB093A5E","0x00000000002C5465" +"BADB74D7-54DB-4628-9217-F6980ED96B4D","","AB-0129","0","964","1693","","2664","4DB708B8-BDFA-4B2E-8ABE-E5298A7297BA","0x00000000002C5466" +"522F79D0-F820-4C66-9EF4-ABCF1307BFF3","394","EB-390","0","200","220","","445","1C022E7E-53E2-4EA7-A0C8-E54E27425D32","0x00000000002C5467" +"B26C3CD1-A8DF-BB4B-9520-2C478B2EA5C5","","PP-024","0","82","102","","5264","309B0F49-58C6-6A45-8D70-E552F25CD9D5","0x00000000002C5468" +"70F1A72F-247C-4AB9-88B4-043A5115C3BE","","SV-0057","0","260","280","","3358","6D8D9451-E07C-486A-9A69-E56B02B83B08","0x00000000002C5469" +"3B46781C-88BC-44C1-8227-14E8315E6E2B","384","EB-380","0","160","201","","440","368EDC30-3391-42BE-8262-E572DF7CDA0B","0x00000000002C546A" +"75492087-8A39-4186-9DAE-5DF898501586","96","UC-0072","0","260","300","","1326","07D7CB9B-5347-42CA-B70C-E5884D5D1122","0x00000000002C546B" +"7129ED03-844F-5F47-A1D3-CFAC8149F0EB","","WL-0076","0","380","800","","5229","B7F2C0E9-6897-0548-96A1-E5951234229E","0x00000000002C546C" +"8E01FD70-D8CE-4233-9285-40CE5B55BBF4","237","TV-217","0","1952","1960","","1128","B2D749A5-63AB-4E47-988A-E597371F087F","0x00000000002C546D" +"F2D6597C-2A7F-4EA4-B0E3-D716BB86A27C","","SV-0098","0","320","340","","3396","463F168E-9D72-4F5C-AC1C-E5A4C8945CDF","0x00000000002C546E" +"5D8A735F-4860-49CF-A2AB-C66F308753D8","","BC-0114","0","120","140","","5047","BA7F95DF-FB35-4CF3-8C89-E5CB8A58EC4E","0x00000000002C546F" +"7B2B1BA0-12F0-4553-BE60-E31FD181C8F4","386","EB-382","0","231","252","","441","3BD78C8D-74CC-4C0B-890B-E5CDBC81DB67","0x00000000002C5470" +"0084348E-120D-40B5-989D-EE4BF43C3D25","","SO-0248","0","44","50","","3252","F478EB7B-D672-41F4-ACB1-E5E0E76FED06","0x00000000002C5471" +"5412743A-2FAC-4AC0-8D5C-039C5A2D568D","","BC-0013","0","100","140","","3914","017B8ED8-D518-4DE9-8A98-E5F1A304445E","0x00000000002C5472" +"C3CD5B8B-FD05-4E79-A695-1C8BE35C66EC","","NM-04691","0","340","380","","3868","C5E85BC8-1A09-4DB8-B3AB-E618750E4757","0x00000000002C5473" +"3C6C9A04-4E66-4100-98D1-531F44ADD6E7","","AB-0232","0","750","800","","2746","4CA1FCA4-F8EB-4784-A636-E61CA1EBF681","0x00000000002C5474" +"2822D158-1432-48B9-91D0-DDA7AB449300","","BC-0087","0","360","380","","5025","A947638B-860A-4587-930A-E62B236BF41C","0x00000000002C5475" +"4AD6872B-0522-48F9-AEFA-9571CE083C88","","NM-26133","0","0","1407","","3778","5B4A9C2D-4FC4-406D-8C59-E62EF717644E","0x00000000002C5476" +"D168C5B2-08D7-43FD-B0FF-8D789F146F3F","","AB-0198","0","60","320","","2719","EE4470CF-1FFB-4DCD-B83B-E6306374C856","0x00000000002C5477" +"DA1A0469-D8EA-443A-8E67-E5831D9676C5","262","TV-233","0","309","347","","1146","62F7A660-F84E-448B-8D6B-E63B758C7BD7","0x00000000002C5478" +"FEC4574A-FC18-49BF-AD99-49BD1EF380B2","295","EB-291","0","603","619","","363","CF2C9332-9882-41B8-930F-E6458841676C","0x00000000002C5479" +"C98FF74F-5776-4CB6-9BDA-89CEA3145415","","NM-21892","0","260","300","","3865","8822AFD5-DD02-4DB6-8AD7-E64ECBCBC260","0x00000000002C547A" +"E21645C8-3145-482E-A26C-73E8AE694F1C","33254","EB-505","0","30","51","","583","936A2500-8358-47CB-9DB4-E65823C5F5F3","0x00000000002C547B" +"6EE7149C-3CB3-47F0-8945-26EF772956E3","33388","EB-676","0","200","215","","726","B7852078-7CD3-4C3D-B810-E666CBDFF97E","0x00000000002C547C" +"01B0D526-AAE2-4EB0-994D-8DBB238F683C","95","UC-0071","0","201","261","","1325","32461362-1FF4-4FEA-8E6D-E67C12A25A68","0x00000000002C547D" +"ABB00A9A-0D9D-4B30-9C1F-D78B3AAF239F","467","EB-462","0","390","410","","527","2989C2BB-2CB0-43F3-9694-E68D4ADC7E5C","0x00000000002C547E" +"8A07E894-30C3-4D6A-A822-11B90EAEFEE2","","SO-0168","0","45","50","","3166","048B2B2E-024D-4C86-9DAD-E696E327DF4F","0x00000000002C547F" +"77D48A6E-67D8-4C3B-9347-0D49F5FCEA2A","","SA-0174","0","240","324","Steel with torch cut slots","5484","3B2C512E-0D49-1549-912E-E6AA0C762A14","0x00000000002C5480" +"4117662C-DFCB-4B9D-8F15-8EEF421645D4","33302","EB-600","0","872","882","","648","2AAC78F9-1212-43FE-B881-E6DA6F50C52E","0x00000000002C5481" +"70B19642-A912-5A40-816E-A59ECA60056F","","AH-011","0","280","300","","5306","AF5E3659-F06E-CB42-B19A-E6DB05B62CD9","0x00000000002C5482" +"204E7423-41D3-4D42-8198-CD41E163AF3E","","AH-027","0","440","480","","1582","CCF8FE4D-C601-4032-882E-E6E25CD9BDC8","0x00000000002C5483" +"E3650985-C37B-AA46-A95C-CADBEF2BA211","","SA-0241","0","802","842","","5221","D7FF7281-3C7E-C14C-B6E0-E6E81B25D4B5","0x00000000002C5484" +"D221EF5D-AB92-4C93-B999-C772D86179D6","","NM-04977","0","348","408","","3873","7060C88A-99ED-4722-B410-E7141788B629","0x00000000002C5485" +"8E01FD70-D8CE-4233-9285-40CE5B55BBF4","237","TV-217","0","1695","1938","","1127","60304F67-7CEB-4ACB-AD7D-E71C0051B90A","0x00000000002C5486" +"DB13C1C8-2838-4C10-9A08-0C056B0D7896","","SO-0181","0","5","20","","3179","0885E372-980A-49F2-9F18-E71EF4372404","0x00000000002C5487" +"81D73012-3E44-4D80-822E-177BD18E2A65","155504","TB-0051","0","260","280","","1254","8B3865CF-E2EA-42C7-B1F8-E72BE06B5C68","0x00000000002C5488" +"B7417163-D9AE-4CBC-8FE3-189B94C53C6C","","SV-0131","0","302","322","","3436","28654036-DDFD-47CE-BDA0-E739F2AD1D94","0x00000000002C5489" +"3CF1696D-0641-48AB-9B77-A53562FB63BC","","NM-24985","0","254","295","","3573","29DD05E6-F79F-4917-AA17-E73EAC5C99DE","0x00000000002C548A" +"EBE7706A-8D77-482B-B289-A0D65DCC3A4A","155570","TB-0107","0","0","500","","1277","2BBB9599-DF88-493F-8171-E74EF2736F4C","0x00000000002C548B" +"C785775F-ECEA-4ECC-AEE2-6A47ECA7AD71","366","QU-037","0","520","560","","956","7BAA861B-CB3B-4FEE-AD12-E7653F89A7E4","0x00000000002C548C" +"8508F688-E93A-4DBB-83FA-607B31C22551","","AB-0032","0","550","1564","","2582","239CB79A-0BF6-4BBF-B00B-E778FD0920C3","0x00000000002C548D" +"FB87E8F2-42CC-4863-88C7-0F2061024407","","AB-0088","0","218","228","","2628","11D765B0-7A8D-4419-8496-E77A5EEA960F","0x00000000002C548E" +"177BA916-8E6D-4C20-98D4-82BAB9800FED","","AB-0138","0","330","590","","2672","4326644D-4FC5-4C4A-8E97-E785A079C0E2","0x00000000002C548F" +"4D95B48B-1F80-4277-A443-6985DAE56334","130","EB-129","0","160","220","","163","4263B798-AA1F-4413-951F-E786CEAC5B4C","0x00000000002C5490" +"EA06C6BC-2F16-47A1-9292-C7EE5B1DD599","","NM-24578","0","248","288","","3735","B5C003B2-1980-4FA6-B27B-E78FD33F773B","0x00000000002C5491" +"A25859D2-860E-4A34-A853-26A333F1C7AA","","NM-03667","0","275","330","","5426","022173FA-A2C6-D048-AC70-E79989EC53DD","0x00000000002C5492" +"37C27819-112F-864E-B502-9772D75ABDE0","","WL-0122","0","100","120","","5465","5A5D1D1D-21DC-EB45-AB85-E79F89CFB439","0x00000000002C5493" +"63210E9C-7EDF-403D-8577-62C52CD4E7D0","","NM-09553","0","23","255","","5559","5F63482B-ABA7-FD4E-ADE8-E7BFA99B5E34","0x00000000002C5494" +"5A5A278F-0701-4F5C-96E3-BBD874CF8B5D","33373","EB-662","0","1020","1140","","708","E41F7F07-6979-4D1A-96F8-E81AE3E0816F","0x00000000002C5495" +"12EF8B30-9A3E-4B7F-9FBF-27CCFF759B44","","BC-0128","0","720","740","","5109","EAFD3251-8EA6-4CDE-9E4D-E820FAF0B021","0x00000000002C5496" +"960EAB56-D367-4848-B55B-48FE88E9D34E","","NM-23313","0","140","200","","3273","9F940A33-D28F-4FE2-9AA3-E8269E983D01","0x00000000002C5497" +"621E0E60-CA3B-FA48-9A03-8E0D31EA9BA5","","PC-092","0","565","570","","5383","9F2D66E2-F6B7-8547-B1D0-E82EC963D87B","0x00000000002C5498" +"000C2EF3-B792-420C-B490-CB97124C634B","","SV-0013","0","200","240","","5175","B820172C-F4E0-934D-8B98-E83375E76BB8","0x00000000002C5499" +"04DEC3BC-CED7-4479-85D0-498891285A9F","267","EB-263","0","110","120","","322","AB1555BD-1BB8-40C1-98AF-E8379CD1D2F9","0x00000000002C549A" +"9D0581A8-4DF3-434D-8989-C59B5015785C","","WL-0363","0","","","","5769","AFD02843-8939-4E05-9E45-E83EC9DCCF49","0x00000000002CF3AE" +"A0A5E10F-39A7-AF45-B948-D85AC14C51D7","","WL-0245","0","440","460","","5674","872D2E07-F2CA-7442-9FD0-E8502C967895","0x00000000002C549B" +"5F53A7C2-BF23-4F09-AE3D-EEF2F1BBFF12","496","EB-487","0","1860","1980","","572","1E877E6B-ADD2-4A7B-98E9-E85F3230336A","0x00000000002C549C" +"4BAA497B-2060-4DA3-8CC0-82437D199C7E","","BC-0036","0","250","350","","4960","DD512ED6-03BA-47D2-A0EE-E8642D064B69","0x00000000002C549D" +"1B3ABF31-E2A0-454D-B68C-0BF2614F67DC","275","EB-271","0","45","80","","330","C54F27CD-C2FB-48B2-BF7C-E86E3776D55D","0x00000000002C549E" +"E34F58B6-6F16-4694-9477-235503BA8539","","NM-25000","0","54","55","","3557","1AF6955A-3513-4069-9F61-E8826112E255","0x00000000002C549F" +"BE5D1112-D83E-0A49-9E57-2519097B29A3","","WL-0272","0","190","202","","5703","719987C5-9175-4F43-934D-E88CBB8F0AA4","0x00000000002C54A0" +"B4525646-069E-4F27-BF36-873605EEF4D1","","AB-0110","0","826","831","","2648","8B4FA37E-49E1-4BF0-8BAA-E89A2683D8E1","0x00000000002C54A1" +"CE89B311-A7F6-48EA-ABEE-A4A750301B53","","SV-0012","0","190","275","","5181","07D46A12-FEA8-544D-9E50-E89ACAE74D55","0x00000000002C54A2" +"0884C4E0-AD45-4408-A0F9-18D6154E73BD","404","QU-069","0","160","180","","1000","E2EC2B43-6ACF-492B-B581-E89FD3B8C804","0x00000000002C54A3" +"3ED8ABFA-6596-8F48-8C9F-5B2C16B505BA","","PC-107","0","580","623","","5397","F0074899-AC46-7044-834A-E8C45C56CB6C","0x00000000002C54A4" +"7B56AEFA-0C15-4CF9-BF2A-609F83F02F64","41","EB-040","0","204","355","","43","AA027948-1F5C-4D90-A704-E8DB3EE30C1E","0x00000000002C54A5" +"0B917E9D-8BFE-4AE2-8B63-5443A6E24B34","33382","EB-671","0","380","400","","719","FD40AB31-8444-42A8-8502-E8E72394A792","0x00000000002C54A6" +"4CF6DB44-A59E-4FE7-BECE-0087721BE7E8","","NM-05451","0","200","580","","3876","06380EC3-805E-4444-97F5-E905633A2259","0x00000000002C54A7" +"FB0C2D31-C499-45FA-A301-2BA730437D22","","UC-0208","0","101","121","","2830","93D8BC2E-F3DF-4849-ADCD-E91335E18C8A","0x00000000002C54A8" +"9103F62E-9212-46B5-8BF7-B8B57216BA7C","155645","TB-0182","0","102","162","","1292","CCCC31E5-0EFE-4244-8A1D-E91F6DEFE40D","0x00000000002C54A9" +"11275315-7565-42FC-A199-ACB2DE7E4BDF","174","EB-173","0","640","660","","215","592AEDA9-1553-4B51-9931-E93C164C3C8D","0x00000000002C54AA" +"09EBC420-883E-4896-A5F5-B7E889F41970","243","TV-223","0","25","70","","1133","B9B5D23C-8DD6-4340-8EF3-E986232C1E27","0x00000000002C54AB" +"3833073F-D9B3-410C-8FB8-0DD2C9F27075","347","MG-019","0","160","200","","935","B77BC7A3-961F-4544-8C00-E98FDC18FB10","0x00000000002C54AC" +"00EBFB49-0FEC-494B-9CD6-124CE9D41585","","NM-00698","0","215","235","","3740","98389A94-0C53-4192-9D8D-E992C3B0E8A4","0x00000000002C54AD" +"EAEA4A49-DF67-41EC-B896-3F753A008FB6","","AB-0168","0","472","492","","2695","FAA46E8F-EF49-46FE-85B9-E994B7669BD9","0x00000000002C54AE" +"32B62C2E-0952-46DA-A272-92117EA2674A","","PB-0021","0","1","6","","3267","A921E5A5-72EE-4FE5-84DC-E99E9EF1EC83","0x00000000002C54AF" +"E6C1732F-1378-AF45-96FC-D13F4CFA28E0","","PC-083","0","320","340","","5379","B8CC4151-93DA-084F-B363-E9B33CADD260","0x00000000002C54B0" +"2EC5915B-BDFA-476C-B2F4-E67F6B1FAFFA","","NM-01357","0","206","246","","3032","016B7F6E-CD28-44E9-BECD-E9BAB9DBFD65","0x00000000002C54B1" +"A359517E-8942-4E16-8E7E-E9DBBDF6AD1F","431","EB-426","0","260","340","","485","B21AFAB9-73D9-45B9-966A-E9C2D724E0BE","0x00000000002C54B2" +"71BAF346-D81E-4873-824E-322FFB0420A0","","QU-178","0","415","435","","2934","3D6AB29B-C028-43A2-A9F6-E9F6F039C4E9","0x00000000002C54B3" +"045243FE-9281-4E76-A991-83769B370F4A","33366","EB-657","0","340","380","","703","C5D97562-3FFB-4FC8-9E39-E9FEB8A33AF0","0x00000000002C54B4" +"C84E0BD1-9CA4-4852-A7D5-494B65562DCB","33280","EB-576","0","435","455","","622","1969DFAF-EC05-41E0-A4A0-EA0D349F40E3","0x00000000002C54B5" +"499A69FA-31AE-43CF-B3BE-19E9058B8AB8","335","EB-331","0","70","90","","409","F3C53920-EF91-4E32-8F27-EA267B86E89E","0x00000000002C54B6" +"785D9570-C7D8-4479-8410-678259EB6F6A","162","TV-142","0","45","65","","1072","0E093A43-B69D-4879-8C93-EA297E496090","0x00000000002C54B7" +"8EE5DDF8-BAFD-42ED-85B1-959A799E7CCB","471","EB-466","0","640","800","","537","5117FB70-5716-4479-9A0C-EA47BA62AACE","0x00000000002C54B8" +"1E61E283-A882-4E43-8A4F-79B93FD45F16","","BC-0086","0","322","422","","5024","66851205-FC94-4D5E-9A50-EA679D7A8FEE","0x00000000002C54B9" +"0339B18F-5A8F-477E-9E05-5386F4B3A180","","AB-0066","0","845","850","","2609","90E85B3B-4DDE-4CC5-ADE7-EA6F604138F5","0x00000000002C54BA" +"6EE971B6-71DF-467C-996B-06E44A8BFBCD","444","EB-439","0","262","277","","503","0E7091D3-E0D3-487D-BCAD-EA730A88FCA3","0x00000000002C54BB" +"583C1C43-FB9F-4546-B78D-0A6931845150","","AS-047","0","660","740","","1535","711F8EFF-B869-43CC-8597-EA877E3E47D6","0x00000000002C54BC" +"6E1753D1-6AA5-3140-B6FD-AD000141D0DA","","PP-025","0","70","90","","5265","636F2E36-10B4-624C-94F4-EA8FCAAC7C2A","0x00000000002C54BD" +"834AAB63-E20A-4D87-86DA-5DCA13B87D18","","NM-02128","0","56","212","","5598","2E17DFC5-EEDA-884E-BFA3-EA98712797E7","0x00000000002C54BE" +"DDC35985-1905-4F63-ADE5-D7B4CC09CA07","","TB-0071","0","539","638","PVC with horizontal slots","5629","1DAAF2D8-F875-4246-94FF-EAE5466038D1","0x00000000002C54BF" +"56D7745E-D097-47F2-A009-C84AE7CFF7C2","155502","TB-0070","0","150","160","","1251","55A8941B-50F9-4DA4-A34B-EAE6E0D59CDE","0x00000000002C54C0" +"774CAC5C-47A3-4032-84C7-28E9C4FE76B5","","SV-0059","0","400","440","","3360","3F2577D4-1A0A-489F-A5E3-EAFFA87616A1","0x00000000002C54C1" +"61FCCF5A-49AE-B54F-8170-4F9E1EDD42F6","","TC-447","0","105","145","","5452","30E21B6D-A382-7E45-9B3D-EB19EA576C3C","0x00000000002C54C2" +"8143C7F0-6D4A-4B5D-A3B8-2466EE2E6AA1","351","QU-023","0","120","160","","951","41FB973E-1B57-40DA-802F-EB305E7430C7","0x00000000002C54C3" +"627D3CBC-4F42-754B-A04B-F82347B82EAC","","WL-0206","0","360","400","PVC with 0.032 inch perforations","5631","BC90EE5A-2640-4740-BF9F-EB36DF16A60B","0x00000000002C54C4" +"D8BCED35-3B48-4928-B742-3DEACB24D245","222","EB-218","0","317","332","","278","DF084A98-91FC-42C6-B917-EB50A7C4FBB7","0x00000000002C54C5" +"D0F74F13-54DD-4D76-9B2E-DA379A0B5DFC","","TV-301","0","1164.5","1175","","3004","2A71ACF4-E4D6-4768-BD53-EB682474A48B","0x00000000002C54C6" +"0443D262-CD45-4C44-B73B-D5588EBBACD7","","PC-005","0","80","90","","5313","8CE4DE1E-7B8E-1143-B808-EB6BD4C4DB15","0x00000000002C54C7" +"715B6322-CB82-4563-8D53-CE6AA7D4E698","","BC-0014","0","286","306","","3916","216857CF-6C8C-49C8-A0CC-EB6DE16B128B","0x00000000002C54C8" +"579CAC43-9F02-408D-B542-31098C933DD4","100","EB-099","0","400","725","","123","CB3ECEA6-93A1-4908-89D1-EB6ED3C17F9E","0x00000000002C54C9" +"7CD53210-F847-764E-BF6C-5299E1005DF3","","PC-100","0","290","370","","5392","F81B6076-3AF7-5147-8DF7-EBB28123CDD8","0x00000000002C54CA" +"0CEBDAF5-A140-4970-9F1A-E12A3D77205A","","NM-26948","0","230","270","","5088","F2E6D8F4-5078-4730-9E3E-EBBA9725C930","0x00000000002C54CB" +"5D62273E-5CAF-49E4-9706-9FA851FBD1E2","","NM-00441","0","535","595","","2907","F6521C2D-5DF9-4D77-96E6-EBD7049F728E","0x00000000002C54CC" +"BA57D501-C97D-440D-B344-C787427E5C9A","","NM-26292","0","1302","1656","","3781","1D599DF0-43F8-4592-9432-EBE6A74349C6","0x00000000002C54CD" +"FA15C5D4-D843-48D8-AD22-ABD7EBEBD657","","AB-0180","0","918","923","","2704","BFF8A455-3832-4B3F-B4DD-EC0F44977D2B","0x00000000002C54CE" +"3C7FB511-4C54-49C0-BCFA-ECE9C1C1E271","","AS-044","0","220","300","","1531","0B335308-C647-46C8-B7B5-EC0F5E333810","0x00000000002C54CF" +"00AA26B5-5CCC-434F-9190-B1BA50107573","","WI-0001","0","56","76","","3572","C5BA39CE-A125-4FCE-A379-EC1DDE84BBFF","0x00000000002C54D0" +"0EF96178-504C-0C47-9FE2-00B998EDC45E","","PC-118","0","385","405","","5410","11961295-CD93-6343-AA24-EC1FA8C4D9C1","0x00000000002C54D1" +"ED65DCCE-C438-4ECE-8AE8-CB5BA82388C3","33365","EB-656","0","200","240","","700","3E4C5328-6511-4700-842C-EC4510F8D3D8","0x00000000002C54D2" +"B1FBD489-2800-4024-9EF8-21B043EE61DB","428","EB-423","0","510","530","","482","F4E490C3-7290-4C0F-8BFF-EC5E75791244","0x00000000002C54D3" +"DB86C570-B336-4D1B-BE7E-BBFD719CEA71","464","EB-459","0","410","420","","521","E40C6DF6-910F-4B9D-B2E1-EC5FC76C89B4","0x00000000002C54D4" +"C819875B-438D-4367-B97D-2589AD235C0A","","SV-0029","0","360","380","","3324","808246C8-35D9-40C5-B900-EC65D6F487A9","0x00000000002C54D5" +"33500A74-8AA6-4627-A507-C5526961D6DE","","NM-09543","0","50","217","","5557","D34078D8-01EF-DF48-87E9-EC678DF690C8","0x00000000002C54D6" +"F9C932B0-1612-46B2-8070-39FBC68A48B4","","BC-0033","0","205","225","","3926","73E5747E-C654-418F-A655-EC6D0EB51964","0x00000000002C54D7" +"7F38592F-628F-46BE-8496-AF547490AAC9","","NM-24753","0","190","205","","3652","3A76D610-C664-4649-801F-EC8CB2705548","0x00000000002C54D8" +"880E4BC5-6DB0-4190-B463-AC15EDAE5187","","NM-24604","0","52","67","","3716","B2C69EF4-603B-4938-A4E6-EC9A42F13074","0x00000000002C54D9" +"DCE8AEEE-4180-422A-A068-48B160EA7E99","163","TV-143","0","280","300","","1074","3D90177C-FBAC-4FB1-BE4D-ECAE1E7E667B","0x00000000002C54DA" +"E8BA339F-87D1-490C-A4F5-87EA3CF2BB44","532","QU-145","0","282","292","","1017","A28153D2-FBA8-4964-9E91-ECDDCA203727","0x00000000002C54DB" +"1621D4CF-6106-4326-8F3E-3AF2E1C67FA1","","AH-059","0","560","620","","1746","DEA32A9A-2649-4097-8A9F-ECDDD50884AD","0x00000000002C54DC" +"A6359A67-F41B-470A-A95D-EDF55A9C60FC","","AB-0086","0","79","104","","2626","3A8B739E-B408-40AA-BCEA-ECDFF49904F0","0x00000000002C54DD" +"61FA0DA5-7741-42AF-A783-5F3AFC96BB8A","39","EB-038","0","280","320","","41","4AA9C15C-287C-4E8E-B139-ECE56AD6CE0E","0x00000000002C54DE" +"AA55FC7B-717B-4F43-B55F-74E1A3991A40","33362","SM-0012","0","255","355","","756","8C19672C-EEC0-4786-8227-ED04491D84DE","0x00000000002C54DF" +"8639BF32-99B2-49C8-AA57-767DAD1FEC85","309","EB-305","0","55","75","","380","097DD321-7949-4E18-B917-ED0744778877","0x00000000002C54E0" +"E0AA284C-D7CC-429F-8392-C58BA3D8FD80","","SO-0190","0","50","54","","3188","A89AB76E-3F25-4CC4-88EB-ED0D6BFF5016","0x00000000002C54E1" +"9535D7D4-D090-4273-8E12-AA3D34430266","45","EB-044","0","233","253","","48","6BC78F99-06A1-4F40-8953-ED2BE8F4A812","0x00000000002C54E2" +"D08478AF-FB8B-47EC-AB4E-4FF5D7F5B454","","NM-24677","0","276","290","","3686","B672777B-D1BF-47AC-9185-ED354E8979AE","0x00000000002C54E3" +"5840D5DC-3684-43A8-A712-FE289656C8B6","","SV-0093","0","292","312","","3389","D16D0241-3D5A-4C2F-90B1-ED437019A09C","0x00000000002C54E4" +"65865CEB-7AA6-45E4-A24F-7F98EB8C00BC","","BC-0147","0","480","520","","3502","22AA1EEF-A336-4D39-8173-ED4F37B1BE4F","0x00000000002C54E5" +"00B6FC01-9214-4C5B-8128-1A03AA427A80","415","EB-411","0","410","430","","469","94BBC63A-6C3C-4ABA-AAC2-ED64FB78FD78","0x00000000002C54E6" +"06462043-CC88-2848-99DB-3A8C0C0B51A8","","NM-28324","0","195","245","","5502","B389E297-D84F-D146-BAF7-ED6FA8250220","0x00000000002C54E7" +"7A1954D0-887D-4127-AEEB-B9554F18B8A1","","NM-24613","0","321","323","","3714","4AE4461E-D13E-477C-88C7-ED87570D0B18","0x00000000002C54E8" +"1F0009E2-B6C8-4476-83E5-72D4F02D7CB7","","BC-0248","0","162","263.25","","3540","3E9EEF88-36BF-4A17-B43B-ED8DA3657000","0x00000000002C54E9" +"87D00501-C53A-4E3E-9955-9A03BDF03F27","","NM-08909","0","320","420","","5540","AEE680D1-11F7-1B47-916E-EDA7506884C2","0x00000000002C54EA" +"97D309FA-B322-6F46-81B7-ABF6337190AD","","PP-045","0","30","55","","5274","889F4661-A5B8-6A48-BDA0-EDA8CE30B8DB","0x00000000002C54EB" +"7E526469-3009-40DD-9507-63607F475ECE","406","EB-402","0","108","118","","459","6E978E8D-4EE1-433F-A130-EDAD789ED730","0x00000000002C54EC" +"21FB0E10-147F-4A31-9ABB-15DE6C4E49E2","53","EB-052","0","380","400","","58","0CBB5725-A6F2-444F-AEDC-EDD0B7A0E331","0x00000000002C54ED" +"C50315E6-C2EC-4580-9B57-266791257D5F","410","HS-050","0","40","53","","1221","F320811F-935F-4170-AE8A-EDDC5D7F55F2","0x00000000002C54EE" +"C86E26A9-209F-44BF-A902-5373CD7BFE5C","","AB-0160","0","460","480","","2688","E300825C-2BAC-4E25-B163-EDEB63229677","0x00000000002C54EF" +"6E367730-6533-4EDD-9A38-1E9E48ACD2A7","","SV-0037","0","280","320","","3331","79010AA8-C331-4378-B1CE-EDEFCE540A2A","0x00000000002C54F0" +"9580A9CD-DBEC-4DF9-B3FF-E5890FD0A16F","","NM-24639","0","30","70","","3707","D59AA11D-40F5-4B20-ADBB-EE0EA08A7DAD","0x00000000002C54F1" +"B230C2C5-1885-419C-9B3E-51FFE6F637CA","","NM-25014","0","106","111","","3511","4386602C-7343-4EF9-A09A-EE0FF69A8578","0x00000000002C54F2" +"2E0EB942-D7DA-E541-9226-7D97FD2FF102","","PP-047","0","40","70","","5248","0F86EBA3-7BA8-AC43-AD47-EE1C54F1370B","0x00000000002C54F3" +"D8CAF88A-5DAE-434A-A42E-287153EF1579","33252","EB-507","0","354","364","","584","E74AE1C2-75F7-4E49-83D7-EE2199826DF5","0x00000000002C54F4" +"318EF5B5-77A0-4010-BA32-3EC83D167E64","","NM-09061","0","100","180","","5544","87F0934B-7F75-A744-A1B8-EE52F5A3ED0D","0x00000000002C54F5" +"14B3757E-BF1C-4DE7-9D04-1AD2ADE2F234","","BC-0154","0","225","265","","5125","E9ED61D4-FA55-49AF-AB69-EE6CD91D831E","0x00000000002C54F6" +"A1F47094-2F5B-4E2D-A309-64386AC863DC","","NM-24908","0","180","200","","3608","30F15850-00E8-456D-8FA3-EEB87818CCB2","0x00000000002C54F7" +"108CF161-8AFD-4D34-83BF-C0E3236B196B","33418","SM-0060","0","490","510","","781","58397D6D-47DC-4EF0-A7AD-EED116C47B23","0x00000000002C54F8" +"89CA9D18-6AF4-45B0-9AD1-F1C311FB89BF","","TV-241","0","1000","1200","","3018","7FA0389F-C862-49F0-813B-EEF69A4C6E7B","0x00000000002C54F9" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","500","520","","2896","37241431-9AD7-4B32-B6CD-EF0F1FB3A0E9","0x00000000002C54FA" +"6D2490B9-540B-4977-B3FC-2605E7F8B0F4","140","TV-120","0","64","125","","1058","32B2450D-8776-49B3-A745-EF2E3A24A658","0x00000000002C54FB" +"D3D16546-D556-43A7-B218-6322B8EFA968","33403","EB-686","0","100","120","","734","0378026D-D0BF-4084-BE1C-EF31B4BBCE47","0x00000000002C54FC" +"877CDAB3-6216-44D0-9A0F-956D15CC8126","","NM-05258","0","395","455","","3874","3A3028B5-6A53-4A23-A010-EF3CC4DCEEBB","0x00000000002C54FD" +"3DB12D48-D855-49CF-B14F-3D6BEA0D95BB","","BC-0079","0","360","400","","5015","51D02A77-B2BA-4314-806E-EF554A69152C","0x00000000002C54FE" +"90985A92-1040-45A0-A19E-1C61760369A5","","NM-04199","0","108","140","","3107","552F79A5-F340-4693-83F9-EF5CCA672002","0x00000000002C54FF" +"9265416C-798F-45C7-92AE-5FBD9DCBA9BE","","UC-0219","0","40","60","","2838","CA2E8176-903B-43F4-937A-EF679BC33787","0x00000000002C5501" +"8ECA02E4-6AB3-4F38-ABA4-266B65CE39AF","","NM-24731","0","362","382","","3663","79E35BFC-BAE4-49E9-9472-EF6C1B48054C","0x00000000002C5502" +"3438E7A0-2C5B-4715-A1D3-1B9C9E2B1608","78879","SM-0239","0","360","400","","842","13A9FF14-8513-4773-A82F-EF6DC5CDBBDD","0x00000000002C5503" +"A7C3E101-292C-4979-B50A-002FCE0CE827","33374","EB-663","0","1500","1580","","709","453162A5-FAA1-4A7B-874A-EF6F47D343A2","0x00000000002C5504" +"865A8642-751B-4346-8D7F-9D37C57BC20F","","PB-0028","0","85","90","","3269","9B5F7101-D5A6-4F67-B8FF-EF7E6F1E07C4","0x00000000002C5505" +"177114AE-3AF4-4E2C-B655-4681B4A8D250","","SO-0183","0","86","91","","3181","2F2EEFE1-135D-4EDC-8330-EF896507F4E9","0x00000000002C5506" +"FDF7334A-939B-47FA-AE21-93BF7C10A79F","247","EB-243","0","91","107","","300","71C54C4D-C5E3-4A44-8CE7-EF92033BBEED","0x00000000002C5507" +"B9D804D3-392B-48A3-A28C-8FC180F625C9","","SO-0257","0","45","70","","3261","9FCB27F7-9F2D-475D-A7D0-EFC03A09D6F3","0x00000000002C5508" +"D600E421-C7A5-4B48-B846-517CF9E6F570","155573","TB-0110","0","120","140","","1279","DA1DF621-CDBE-4BCE-8A42-EFED6831C619","0x00000000002C5509" +"EE4402EC-84D8-415F-BE86-69F4F7621D87","","QY-0726","0","120","140","","2991","8608689F-1752-44A4-B0EC-EFFA8C9C6C8F","0x00000000002C550A" +"83B05E6D-FEBC-4AE1-B39B-9739571B7192","","NM-21365","0","400","440","","3830","DEC04CA5-8D91-4883-ABA0-F0029A9EB908","0x00000000002C550B" +"4C80D4AA-63F9-4535-87D4-E0B4A7EC9220","52","EB-051","0","200","400","","55","62BAA2BB-76B0-4186-B625-F01D79D33F3C","0x00000000002C550C" +"9D07C22B-48F0-A840-A7D9-004D5DE5C5C7","","PP-040","0","37","42","","5245","5F900C80-57BB-4544-82E2-F01ED7B699AE","0x00000000002C550D" +"2C348F92-0A9E-44DA-B3C0-3915EBE24C3A","519","QU-132","0","15","35","","1006","49C2ACE8-7977-460C-89C4-F0202DF82518","0x00000000002C550E" +"0117E49E-DABC-4A89-95FF-42A6EFBB8AE7","","NM-01877","0","104","383","","5574","3A865A57-18A0-0042-AC1B-F02C398871A6","0x00000000002C550F" +"BD9AADE8-C1D7-41AF-91CB-6B0500328A84","","AR-0173","0","37","43","","3096","CD29711F-526B-4321-BDEC-F06187837FED","0x00000000002C5510" +"B1C2B354-13DD-41B9-B258-85315C16055F","192","EB-191","0","40","60","","243","45C08CC2-4F36-447F-846B-F0743CC46332","0x00000000002C5511" +"D81F94B1-1D06-4865-8607-589437E68AE1","","BC-0064","0","280","300","","4997","3D38DB70-7C1E-448C-9ED6-F0778F16757F","0x00000000002C5512" +"125CB524-F60C-0648-91FE-F49B25D9A1BA","","AH-012","0","75","115","","5307","F687729E-61B6-F043-9961-F08F5014DDE9","0x00000000002C5513" +"0F7F219A-5263-43A8-A294-BB6E854EE77B","330","EB-326","0","260","280","","404","966F3126-9037-4F41-A807-F0909BC55000","0x00000000002C5514" +"0B3E56BD-E8E4-4A21-ABAB-88FC2265040C","","AB-0065","0","1508","1513","","2608","958CA533-F100-45D0-95B7-F091FB80B732","0x00000000002C5515" +"C115E05C-EF79-4223-946B-446801FD6E90","","BC-0090","0","260","300","","5028","DD7EDF0F-0B1B-461F-8E3F-F0BB7F4C509B","0x00000000002C5516" +"F1E81124-2A22-411B-84D6-43844F662175","","NM-09605","0","120","130","","5563","6B6BFEAA-3127-A84A-9DC6-F0C914A29A28","0x00000000002C5517" +"6188B6BB-6FD3-456C-81CA-C75017676C9B","","NM-26885","0","575","590","","4933","EF4DAEAC-5023-4562-9755-F0D1ACF2E77D","0x00000000002C5518" +"A60AF7DA-CD93-4B7E-A5B8-E80F738D639E","","AH-033","0","303","343","","1588","3809C49C-C043-4A36-A16E-F0D23E28D8FA","0x00000000002C5519" +"0D744B32-F65B-4222-A8A1-57354B619591","","AB-0165","0","485","525","","2693","C999B71B-37D1-4ADC-8A35-F0E1611A8B28","0x00000000002C551A" +"0E130A19-EEE5-45B3-9EE9-B95A483447A2","","SO-0137","0","5","20","","3135","17D2AC35-8EAE-49F9-A838-F0E5739D02A4","0x00000000002C551B" +"453ADD72-E30B-4EE9-8162-AC57EBA817CB","128","EB-127","0","260","300","","160","B572BA42-AEE0-457E-AC65-F119BCF989C8","0x00000000002C551C" +"05996B77-ADAD-4830-AC4D-17C111320698","435","SA-0150","0","470","490","","867","ACDE8F7C-2FBE-47AA-B4D0-F121D3E529ED","0x00000000002C551D" +"D9AD3C7A-DC0E-ED41-8C3C-49C63F5DD83B","","WL-0162","0","174","177","","5512","E87F19D6-C3FB-C349-8D70-F12E3A3D7786","0x00000000002C551E" +"A99B29D2-8222-4792-95A6-36CCBF589D5C","151","TV-131","0","420","460","","1067","A34EBA6C-E49C-4F3B-A63A-F12EDEE1E3CD","0x00000000002C551F" +"61EBBFE9-0F41-4D56-83AA-6D95BE18F0F1","","TV-264","0","110","210","","3019","D76D4609-6AA0-4CC4-A341-F15115AAE4C0","0x00000000002C5520" +"55393A69-D316-41A5-9F62-F4463E7F65A7","","SV-0138","0","400","450","","5212","7D9607D6-2AEE-034F-A142-F152217DA86D","0x00000000002C5521" +"277CF6CE-26CF-43A9-8674-12D658C202FF","","MG-043","0","170","230","","2933","AA376497-0FF9-47AE-874A-F1537099B776","0x00000000002C5522" +"AFD8F3F0-EE0D-48EE-B941-07A39472BCB5","","BC-0134","0","420","440","","5115","6FBE729B-8DA9-4AFF-A03C-F15E273893C0","0x00000000002C5523" +"29DE62E4-ADDC-4E1F-A80B-BEAC5BCA12DA","310","JM-011","0","50","150","","890","DA113724-2745-47A1-A4B0-F1675A56A0E4","0x00000000002C5524" +"42D7A3BF-1AEB-4246-BD66-5A2D0DB1FA08","33352","EB-644","0","660","670","","693","B1FBDF98-089E-4EC8-BF34-F16954443424","0x00000000002C5525" +"A10BDBCE-5598-AE4F-83A9-B94E6D2A6803","","WL-0147","0","750","790","","5491","9A848A42-036E-5243-AE40-F16AF459DC67","0x00000000002C5526" +"76ACF5B3-94BB-AB4A-9E8C-95CE024EC369","","PP-010","0","250","255","","5258","7364640F-992F-A44D-89A9-F181DA9D34F1","0x00000000002C5527" +"82B39893-FCEC-4186-8FA8-B613FB912055","","TC-279","0","60","279","","2146","C124E579-CAA9-4110-941E-F19A8A543CD7","0x00000000002C5528" +"5CEC45B9-40AB-4D27-9E0A-4170ED41C105","257","EB-253","0","110","131","","309","9780680A-CBE3-4503-B7F7-F1C8B8BC82D0","0x00000000002C5529" +"C90A77AC-2112-4D7C-AC57-9CA653C76C39","414","EB-410","0","320","360","","466","A2B5A505-F4E4-4CA1-99CA-F1CB6A5FF75B","0x00000000002C552A" +"C8551EEB-1173-4265-94D4-EC72EEF01936","","BC-0136","0","302","322","","5117","F1BD0403-4177-4CA4-9B7B-F1CFF1EEF9E5","0x00000000002C552B" +"B684F7FD-8B3C-4368-8E2A-F00ED3322BCB","","NM-09228","0","357","362","","5549","83F40A95-FFA3-4049-8CD4-F1EAB051B48B","0x00000000002C552C" +"4892C5A0-C6FD-4968-A60B-08B30E4BFE33","","SO-0166","0","46","50","","3164","FBDE94AE-BFD4-4171-AD58-F1ED1EC5C6E1","0x00000000002C552D" +"3F7A8623-7F65-450C-BF5C-0E947915EB4C","","EB-161","0","684","763","","2926","23613AFB-F2AD-4044-8F02-F1F1B99243D8","0x00000000002C552E" +"066659B4-4588-45CB-9361-0EAA468A8936","","AS-017","0","220","280","","1511","EEFA122B-1F49-41E9-8FBD-F21CDC30F6D9","0x00000000002C552F" +"2AA1FF8C-B555-416F-AC9C-89ACA3579ACA","","AS-059","0","200","260","","1547","C7B4F3ED-E95E-43D7-A527-F22A7058363E","0x00000000002C5530" +"D0CF7085-9782-4F50-B423-766B5B5AA7A2","155557","TB-0094","0","160","200","","1272","67449D9A-8E3D-4F4F-9E20-F24FA52E2321","0x00000000002C5531" +"A0D068DE-EC0C-407D-8F35-3DE5EDBC2D44","","NM-01246","0","259","274","","2801","5F5177E3-98DF-4C3F-B6E4-F2548E992971","0x00000000002C5532" +"CEA0CAEC-49FA-4DED-B7F1-94CF0936D461","","NM-00848","0","232","432","","2910","B71BBA13-E51B-4498-9A2D-F26198D1156B","0x00000000002C5533" +"54A04C97-222F-44B7-8E0D-B3ABE9CDCBD8","","UC-0236","0","80","100","","2853","DCE0DD74-D50B-47DE-B796-F281DB72CC36","0x00000000002C5534" +"8DFDBC4B-F54D-4AE1-BCC1-601A7C2E0448","","AH-090","0","755","815","","1777","C0F68B43-E66C-4FB8-9E63-F29C46B3C9EB","0x00000000002C5535" +"CE9A1685-A286-0940-ACA2-0EE20EF8A3EE","","PC-028","0","180","200","","5333","369B45BB-24CD-9A4E-8F5C-F29ECF3C3EFB","0x00000000002C5536" +"770D871B-A6AB-411D-B2F1-813B85F4FA9C","","NM-03424","0","80","90","","2807","C9BF3975-9387-4FF1-92B8-F2B308E2C06D","0x00000000002C5537" +"5ABDC77D-F41C-4F2A-9FD6-9454832615BB","33333","EB-628","0","797","817","","676","F549E3A7-46FD-44F4-9690-F2B7F9C407D0","0x00000000002C5538" +"81EBC93A-2C08-4BB5-9D05-FDE15E800494","124","TV-104","0","980","1080","","1039","F0FE282F-82B2-4C97-838D-F2CB1BBC3418","0x00000000002C5539" +"0D2A97AC-D0CC-4356-9D20-E5BE5B582604","397","HS-037","0","40","60","","1205","B8B50AB2-8441-491F-8366-F2E97987A418","0x00000000002C553A" +"6A7D3208-6D63-4563-984C-E076706C4CE4","","BC-0083","0","220","300","","5019","3896C176-C907-4A28-920A-F311ECB4B5C4","0x00000000002C553B" +"414FD68A-E4B8-4B48-8664-591B7AFA6E8A","361","MG-033","0","618","638","","927","DDDF7EE7-99C5-4002-8921-F340B00CCA86","0x00000000002C553C" +"FF40E45E-2619-4B48-8489-75F0DBF48249","43243","BW-0946","432","99","999","fdaf","5750","08FA56D0-F810-427D-8DC4-F35B69598780","0x00000000002CF37D" +"71A06967-FBB4-4362-A99A-8B5860F33541","","BC-0008","0","200","260","","3910","B8C40F80-624E-4A01-B014-F39940051B12","0x00000000002C553D" +"34B795EE-B0F8-49FA-A2F2-109ECAF60F29","12","EB-011","0","200","260","","20","40B26C07-2EBA-439A-8018-F3A2FD5FAD82","0x00000000002C553E" +"054EBBDD-3C81-4F66-9FDD-49AB3400A2F5","155569","TB-0106","0","116","136","","1276","40CFF74A-30ED-40BA-B084-F3ABDFE27700","0x00000000002C553F" +"033C9CD3-A3C0-4A27-B8F7-EBA9155B2088","33272","EB-545","0","461","475","","604","FB167E49-9215-465F-A640-F3BDF3F4F0EE","0x00000000002C5540" +"B8432F4A-00A4-45B3-81A4-A3A00040AFDE","","AH-080","0","360","380","","1767","75876178-3B75-4BA5-B903-F3CCADB93F2D","0x00000000002C5541" +"B09CD4DD-AC82-4295-9202-404FB7C8305C","425","EB-420","0","675","710","","478","9FE414B7-0819-48FE-8C3A-F3D04916CCDF","0x00000000002C5542" +"88A8E20F-BDCD-4959-AC2E-0BA07F54E297","442","EB-437","0","300","320","","498","1D43A357-DD9D-4D18-9AC1-F3DB79988AE2","0x00000000002C5543" +"67814F3D-8116-4521-8EB9-1EB6E373C265","301","TV-266","0","40","75","","1172","A2C69D59-AD7B-4483-94AE-F422C17BA458","0x00000000002C5544" +"08299411-2E13-4963-A84B-521EE66B561E","","AH-018","0","520","560","","1573","2F362E00-9901-4B78-8FAA-F42A47777982","0x00000000002C5545" +"5B82C24E-E20B-4214-AEFE-F7B758B0E056","","NM-01504","0","500","520","","3066","E49E0DAD-EB12-4F8D-AF5A-F444D7DC18AE","0x00000000002C5546" +"8FCE66ED-E650-4855-A9F8-3FEBF44E29A4","","SO-0132","0","45","50","","3202","0278B3B7-CE3C-4E3F-A42A-F44F8EC0202B","0x00000000002C5547" +"2EE9DCA9-2BAE-43CF-842B-51E77D7EA95D","","QU-168","0","449","509","","2502","045E8AE2-6F9E-4B1C-84C5-F47B39BD883C","0x00000000002C5548" +"A5CEAE93-333A-4F46-801C-4D391662EB90","","AR-0191","0","14","19","","3097","8DA1DDDC-45F1-47A5-BA2D-F4B3583BE1CA","0x00000000002C5549" +"BE3D2C3A-A4F5-4F0C-9B59-AE51A62A9ACC","","NM-26962","0","280","320","","5098","6AC7BAF9-1443-4D02-9831-F4C30A2FBD41","0x00000000002C554A" +"0940A952-6CD3-41DD-A2F5-8826F7AB866B","","UC-0233","0","268","408","","2850","83D2BA5C-2904-47B6-B516-F4CCFF6C9420","0x00000000002C554B" +"664225B7-B010-44F3-86B6-DE03D6B282B3","","AH-038","0","450","490","","1593","59AC5D00-C309-4A48-BB84-F4D8515A13D9","0x00000000002C554C" +"62A2E57D-F441-4891-A5EC-82AB3AF8AAAD","","AH-025","0","480","500","","1580","0348FCA2-DF9C-4C63-A30F-F4E46EC010A8","0x00000000002C554D" +"EBD2DD45-B6A0-4F30-B249-3716755612BC","","AB-0036","0","460","480","","2584","529ED0F3-307A-44BA-85ED-F4EBD4C029FD","0x00000000002C554E" +"414FD68A-E4B8-4B48-8664-591B7AFA6E8A","361","MG-033","0","518","538","","926","27585B9E-2970-4804-AC82-F5199B554E62","0x00000000002C554F" +"F471F79B-58D0-4BA9-8103-586747B93E33","371","EB-367","0","385","495","","252","4E26B51C-AE77-415D-AFB7-F52CB3F5D01A","0x00000000002C5550" +"108CF161-8AFD-4D34-83BF-C0E3236B196B","33418","SM-0060","0","290","310","","779","6C8B01E9-5E53-4B2F-9FAB-F53198247083","0x00000000002C5551" +"411D4FE4-DDF3-4F33-92A4-9AA23FCDF560","","BC-0031","0","300","320","","3923","8A82D238-76AE-46CF-81DB-F53F91D85F7B","0x00000000002C5552" +"B4154C7B-BB6A-44F9-B3A4-5DCC922C6435","","NM-00678","0","23","38","","2884","4DA39F84-1B26-46B3-AD05-F547D2F2A824","0x00000000002C5553" +"0F7627E1-11D6-4DBA-9C0B-C551425F9B1A","33540","SM-0073","0","160","220","","1232","74B225DA-9BB6-4899-B6DD-F551D216BB98","0x00000000002C5554" +"25A22480-44AD-4551-9604-2088498694DB","","SO-0159","0","46","50","","3157","40E683BD-10EB-4364-8AB4-F55ED3BC1414","0x00000000002C5555" +"E7E43180-3A1C-4BFC-A707-2380A234774F","371","QU-042","0","165","225","","958","1B7FFE43-ED00-4492-903B-F56169F3EA11","0x00000000002C5556" +"583982CE-8099-4A39-8832-FC73A1B8480A","","AB-0206","0","360","852","","2726","6C42CC48-B05B-405B-8FCD-F568B9092919","0x00000000002C5557" +"78EC166D-744A-4496-BB8E-FB4B19B00966","33412","SM-0054","0","15","50","","776","1F302CA0-F291-44C0-A49E-F57BD615CF4A","0x00000000002C5558" +"3AE580C0-372F-4A4E-A896-29FD43CA2A7A","","NM-26341","0","175","242","","3792","F8F8FB81-66C7-4923-8D35-F5D27D752E03","0x00000000002C5559" +"22E9769D-3B17-4FF5-BEDA-2DEB3F6A9DFE","","AH-010","0","120","180","","1567","05E455CF-D148-4017-BA6A-F5E8EE2AD069","0x00000000002C555A" +"9EFE695A-FF93-47E8-9FD6-432FA49892D1","33313","EB-609","0","1290","1310","","658","1B029D95-AFEC-4E3F-BD78-F5EF424786D6","0x00000000002C555B" +"F2F0B4C4-0C9D-2B4E-97F8-EC08E15C0D98","","PC-056","0","100","120","","5358","AE5B2DA5-0919-5249-9D78-F5F0933334FA","0x00000000002C555C" +"187E4060-1402-471B-ACE5-50EEDA7B4848","","NM-02227","0","110","213","","5599","172595B4-5884-6B4E-BF61-F6190F01C054","0x00000000002C555D" +"6E88628D-A493-4429-94CB-08E1A12A8044","","NM-26525","0","36","44","","3801","8A41AD59-47CD-4689-AB44-F627A9B06929","0x00000000002C555E" +"89CDC273-80FB-4B15-92F9-119153D44396","","QY-0494","0","0","102","","2976","1DE6DA27-1693-4F0B-BF19-F62C745CDAF6","0x00000000002C555F" +"FDFE189F-20B3-4C48-9884-F0849130EF44","","WL-0072","0","530","690","","5749","9DBBEE2D-658E-8245-8D4A-F62D981FDD70","0x00000000002C5560" +"6EB2CE3E-75E9-4897-9FFD-5FE61DBE0573","33291","EB-588","0","680","780","","632","F2395482-D098-44B5-8826-F65A0FA28CCE","0x00000000002C5561" +"5210B475-DD5C-4A4D-AAE1-34A25C468E83","422","SA-0136","0","118","138","","863","2F97F82A-B5C7-45FA-B775-F6B0D21A4877","0x00000000002C5562" +"B1D222DD-43E9-4F3F-91EA-E4979C0C3497","","NM-01388","0","266","282","","3040","0EE55514-470B-4427-89E4-F6B45B36403D","0x00000000002C5563" +"81393C84-599B-4252-8ED9-7E24BDFD8D54","","NM-24871","0","21","46","","3627","44C501F7-829F-4D7D-AF4C-F6CF55675A18","0x00000000002C5564" +"6D6D36C0-2317-45DB-8FDB-6B4699BD2051","347","QU-019","0","60","120","","948","5EC2C946-2CD3-4466-BF50-F6DDC2495440","0x00000000002C5565" +"102A58AF-CB5F-4E7C-8B60-C6E708DCD3D0","","NM-01374","0","345","385","","3037","76A103AE-D4F2-416E-8D32-F6ECFD7F7FAA","0x00000000002C5566" +"BBA47012-2516-47BE-8AB6-3D433F81803A","","SV-0074","0","380","400","","3371","A8E4A2A4-D1E8-40A7-8B2F-F6F9AD49DD44","0x00000000002C5567" +"5C79A4E4-CAC5-43F9-B8D1-40C96C6B0104","321","SA-0081","0","310","345","","852","782FF608-057E-46F4-A038-F706B9A6EAFE","0x00000000002C5568" +"1A8C45D5-0BD1-4895-8C26-9AFA661A695E","33415","SM-0057","0","220","280","","778","FBA77DDC-9D1A-42C5-87AA-F710B38896CF","0x00000000002C5569" +"57D88A14-271C-F147-A37D-128EB2E25B2C","","PC-110","0","260","280","","5400","46784978-A63D-CC45-ABEA-F715682F872D","0x00000000002C556A" +"491EE5C2-F7F7-41B0-93F9-C493A0128BCC","","BC-0179","0","500","520","","5149","D057FBA3-2446-44B6-84A7-F72DBE46CF55","0x00000000002C556B" +"BAF89B3C-F39E-405F-8FB4-3E37E88E8618","","SV-0003","0","165","185","","3287","39C5432F-C948-43F5-A8AA-F735BA1665B2","0x00000000002C556C" +"4A732948-4995-4BA1-8F98-45E20E3DCABD","536","QU-149","0","153","158","","1021","B4C77088-8262-4045-95C5-F73804C334A3","0x00000000002C556D" +"8743BA6D-EDF1-46A6-99D4-C38DE1EE10CC","362","EB-358","0","1137","1157","","427","4EC4029B-1FFA-40AA-8546-F74A4CA26D1D","0x00000000002C556E" +"53FC7947-31F9-4677-97F9-D83EAEF18693","","NM-03425","0","30","40","","2808","BE633F7B-059F-42EA-B25F-F752A50294E5","0x00000000002C556F" +"D5C2458D-6883-4753-9C89-074C2475C6C6","","AS-061","0","220","260","","1549","201F49A8-B3CA-448E-BEB4-F77496A31523","0x00000000002C5570" +"3BBD0EC4-0A1C-493F-ACC3-D7BF3D17F0FA","324","EB-320","0","160","200","","395","3008F071-F7A2-417C-BC2D-F77F77B985E2","0x00000000002C5571" +"4FF7ECB3-871E-AA4A-99AD-E016F2E73060","","DE-0013","0","80","98","","5661","59B949D3-769D-5F4F-8E4A-F784BC06ED9D","0x00000000002C5572" +"B1396814-B99B-4C4E-B6CE-F192BA466C1C","","SV-0122","0","200","220","","3424","E83FC314-5270-46CF-869B-F784DFD0F438","0x00000000002C5573" +"EA80F27A-28D0-4CF2-AB7E-2BFD286B57C9","484","EB-455","0","209","223","","517","DD67F247-FEB1-4E90-AF02-F7A0E65678E7","0x00000000002C5574" +"952B4D0C-560F-4C12-90CC-F98B85E5D227","","NM-26340","0","425","750","","3791","434F89F5-C8DD-45C5-9F67-F7C4ADFEBE31","0x00000000002C5575" +"D78C0730-771A-40C8-8171-B70F37CE7859","243","EB-239","0","370","398","","295","0C7D60D4-B70E-4F73-B08C-F7E0BD8A6E2D","0x00000000002C5576" +"8A209CB7-0011-410C-A286-3C9742E50C58","","NM-23599","0","363","420","","5295","C5EA3862-2D01-004B-BD3F-F7FAA73BAAC9","0x00000000002C5577" +"6AF24437-33C4-45DB-8165-49DB55740E44","","SO-0191","0","4","18","","3189","1BE094C1-42BC-4A3A-BB01-F8048857E1E2","0x00000000002C5578" +"FF253173-CA88-40FF-BEFD-41B658462F86","","AB-0022","0","425","845","","2574","B59D105A-27A5-4746-B3B3-F817D09D1D35","0x00000000002C5579" +"57FED340-907D-44E3-9046-BDC067B509E8","","SO-0157","0","45","50","","3155","DE82BB16-B5A3-4395-A6D5-F830567930CC","0x00000000002C557A" +"1A86962E-DED1-4AD2-BF16-B9952760358B","33311","EB-607","0","230","330","","656","8E5A09E3-AA32-4570-B626-F83C1D77225C","0x00000000002C557B" +"129E3113-9AAE-496B-8180-EA4CE8E1BCB4","","NM-00770","0","365","385","","2904","B0CF1DBF-9AE2-4A5F-8318-F84A548559F1","0x00000000002C557C" +"C7C3D5C2-92D9-4988-B7C5-9B5F9444C1B6","","AS-008","0","240","320","","1503","C001A4A7-C6CF-46BA-9702-F8649A0A4E54","0x00000000002C557D" +"9C43EC08-86D5-44EE-8FCA-8F63CC39BEB3","139","EB-138","0","500","580","","171","FE029786-1368-4D6A-84D6-F86AA50CFCC8","0x00000000002C557E" +"D7C49030-4FB5-471C-983E-579AA47C5838","10","EB-009","0","240","300","","18","D1F300B3-CE6B-4937-AECB-F8931FA631D6","0x00000000002C557F" +"C34E52A0-342E-44DE-9EA9-CA2AB991E688","276","EB-272","0","603","605","","331","284228CD-F6A4-4BFB-BC2E-F8A81E662E35","0x00000000002C5580" +"01B52B25-88CD-4A1F-AA10-C08F9F0F215D","535","QU-148","0","50","55","","1020","2CD07123-AB0B-456F-9CBC-F8AFC1898E30","0x00000000002C5581" +"84354BF9-80AF-4845-9922-FED592D0253F","","NM-27235","0","815","830","","4978","54718BD0-3C27-44E5-AC58-F8C8B2748122","0x00000000002C5582" +"55C2F4F2-51AB-BF43-8353-6EBAE5C2DCAD","","PC-060","0","320","360","","5363","3CBDF835-67DB-454F-A570-F8C9DD2AC3DF","0x00000000002C5583" +"F009BA6C-CF9C-4F8F-A7EB-F0CA1C13B134","528","QU-141","0","8","29","","1015","33B72893-8F3A-45C5-829E-F8D8369E24B3","0x00000000002C5584" +"7E0BB3FB-29BE-4605-8376-6402080BA95D","185","TV-165","0","90","120","","1090","72D78504-276D-41AB-9305-F8F1FFF1EDCF","0x00000000002C5585" +"1C25EDAD-0B30-4B82-A552-896F9AC94FFA","104","EB-103","0","142","147","","127","EF58B5A2-3F29-4418-B883-F8F921EB0326","0x00000000002C5586" +"4A2ED905-977E-504F-A063-0F56A50F9F77","","PC-017","0","295","305","","5323","AD134C19-AE02-1F43-9B19-F8FF303B32FE","0x00000000002C5587" +"D3C97BDA-52A2-40F8-88D2-9D1ED8D78A4C","168","EB-167","0","660","800","","206","D790C15A-2737-4847-B493-F905C67C2B63","0x00000000002C5588" +"39179CFA-9EA5-4095-A0F7-65E7D93E629E","60","EB-059","0","600","800","","69","D2CC6A63-3DC3-4D1D-9272-F917022ED316","0x00000000002C5589" +"03FDADC7-A482-49AA-B42F-42098ABFC02B","","BC-0230","0","150","200","","3529","EF0FA812-A9FA-4B32-8FBD-F95472242C2E","0x00000000002C558A" +"EF0DC739-0BA5-41D8-8D0E-7FF7FBCAF8BD","","BC-0002","0","300","360","","3886","C70344F9-6C20-43EA-8798-F997FF0C8B62","0x00000000002C558B" +"01535DFB-D713-244F-A9A1-E04B9ED102DD","","WL-0286","0","147","149","","5729","ACB467F0-6C8A-FD45-B637-F9C95AE714C2","0x00000000002C558C" +"DD897F76-810E-41F1-BE23-E66375A98384","416","EB-412","0","490","510","","470","CE7B8915-CF7F-4A54-88B6-F9CF11B28021","0x00000000002C558D" +"5CF2D720-B0BB-4D2F-BF8E-B74E031BD14F","","BC-0161","0","205","225","","5134","7D546896-0E74-4DEB-9330-F9D10B9D482A","0x00000000002C558E" +"FEC4574A-FC18-49BF-AD99-49BD1EF380B2","295","EB-291","0","560","582","","362","9E5D4733-510A-4F2A-82FD-F9D8D16DFECC","0x00000000002C558F" +"C96202C7-653E-4B1A-9BB6-B075CC3C99A5","","NM-21131","0","305","345","","3816","CE2289B3-3A8D-4020-9077-F9DB624A509F","0x00000000002C5590" +"E34F58B6-6F16-4694-9477-235503BA8539","","NM-25000","0","98","99","","3561","80F888EE-F7DC-4ADD-853F-F9DDB878DE54","0x00000000002C5591" +"0A8652F3-1F36-4AB6-9374-D2E8D474FE2D","78882","SM-0240","0","583","625","","843","9260A78B-267D-481A-BF65-FA19D510B302","0x00000000002C5592" +"941EEE06-D4FB-4A1C-9A46-08021E73B00E","","BC-0171","0","500","640","","5141","31B09816-4033-4EAF-B4B4-FA1C40AAB139","0x00000000002C5593" +"CEA00D03-202F-4D2C-B943-2754BC179C33","155476","TB-0018","0","340","400","","1243","43E3C394-49F0-4824-AF9E-FA28D7B2410F","0x00000000002C5594" +"DC26922F-FC81-4428-AF4B-528D8C763745","282","TV-248","0","160","180","","1158","37C502BE-9E24-456E-845A-FA2E38C9046A","0x00000000002C5595" +"8C3B82BE-8FD4-45D4-A6EE-F1C1B5D7DCD6","284","EB-280","0","240","280","","341","87170FDB-E8C3-4AEB-8B8C-FA4D9C54AFBB","0x00000000002C5596" +"311A6F19-D19F-4852-99E0-5A97E07FD523","","AH-036","0","297","347","","1591","75903A1C-7387-435B-ABD1-FA6700F446F8","0x00000000002C5597" +"FEBA2C3F-832A-4B53-B4B0-CF7F6689B6C5","","SV-0118","0","380","400","","3418","6D57BDFA-AE6F-4740-AC13-FA7157216401","0x00000000002C5598" +"00030781-EB8A-4356-BA81-2F872A7FB48B","403","EB-399","0","120","150","","456","D1218912-7345-4D92-91FA-FA76CE9F454C","0x00000000002C5599" +"A091899E-6364-4D32-8414-9BF6081A51D6","152","EB-151","0","313","353","","184","596D1890-9532-4FEB-850B-FA7D8B3D3F64","0x00000000002C559A" +"72232B4F-DF27-4D19-9261-00EFE4C3211B","537","SA-0309","0","760","800","","881","D3D8A078-BF0F-4540-80C8-FA86BC3DF13B","0x00000000002C559B" +"39C153D9-DFF2-42EC-91AC-2ADEB4561708","","NM-24961","0","284","301","","3585","07A05E4E-5E65-4EB2-BB97-FABAF037B5AE","0x00000000002C559C" +"8D033064-B3AA-4F56-8637-AF2E62191A77","","AH-061","0","560","620","","1748","1F2B80A5-A2CC-4786-8E8C-FAC13D2B2DE8","0x00000000002C559D" +"590DB116-9ED9-400F-B313-CC05BA6AFD35","","AB-0140","0","800","1435","","2674","078ECF5D-4329-4230-8D16-FAC3A6CE7AA2","0x00000000002C559E" +"C44F807E-9670-4117-B561-8C9891B27FA2","","QU-167","0","62","77","","2495","A6379702-A651-4F09-95CA-FAC6AFD817AE","0x00000000002C559F" +"5F8D0B2A-02E9-4793-9238-935CB23CB587","","NM-24656","0","194","209","","3695","D09BE1E0-AE43-48FA-92C7-FAE298CE07F1","0x00000000002C55A0" +"5A8AF12E-4CC0-F64A-9DA1-C10083817B21","","PP-034","0","7","28","","5270","21E93056-848D-DB49-9CAE-FAE5586E02CF","0x00000000002C55A1" +"CBCA0833-DDD2-498A-B5EF-A9E54F8E4F6A","","AB-0108","0","185","195","","2646","0C57235F-1E14-4DFD-A464-FAEC3F60789F","0x00000000002C55A2" +"FD0D72F7-64D4-471D-852F-1FD409E906B1","","NM-26923","0","386","708","","5070","BB272FA3-915B-4737-AF5F-FB02923CD117","0x00000000002C55A3" +"98BE9901-127E-4AC0-A6CF-D25106CA9627","","AB-0159","0","264","996","","2687","6C01A267-640D-4FC7-98CC-FB0646ECFC4C","0x00000000002C55A4" +"FCC66EA5-46CF-4C01-A565-2BAD38B90D94","445","HS-063","0","0","99","","1210","C34D6FEC-D075-484D-A560-FB198463B165","0x00000000002C55A5" +"406319A6-57F5-4120-82FA-7BF5EF5A82A3","78904","SM-0253","0","40","60","","1235","9B822437-B45F-4237-ACCF-FB2064384772","0x00000000002C55A6" +"D7E19BAA-84B7-4E36-95AF-CAEE2E8AEDA1","337","EB-333","0","80","120","","413","6720DAD2-7961-4A41-AE4E-FB20AF6683BE","0x00000000002C55A7" +"EA199671-4F25-4B8C-B567-D4885B1694A1","291","EB-287","0","440","468","","352","11B3B59B-F75C-4435-AFC0-FB3DCEC26099","0x00000000002C55A8" +"30A04A76-0676-4484-80EA-120679068D1E","","NM-24747","0","56","61","","3653","18E56E44-6E92-4693-BD14-FB4CAE95C1B4","0x00000000002C55A9" +"3B7C8053-0151-410F-86E9-799C32E6931E","158","EB-157","0","305","325","","191","8438A81A-BBBC-41B8-B22B-FB4CC650DC86","0x00000000002C55AA" +"0F4C0D7A-9584-4D9A-A754-A195CFD212D6","","NM-25067","0","416","430","","3489","ACE98279-339D-483F-B99A-FB510110D4C8","0x00000000002C55AB" +"194FB67A-CC55-456F-ABE2-0EDD2EACFF65","33314","EB-610","0","380","440","","659","423063B1-4658-4BA2-84AC-FB7E2AD5DB64","0x00000000002C55AC" +"A6D35286-68B9-4F6A-BC67-1877EF0563E7","408","EB-404","0","135","148","","461","5A4567F6-47BD-40ED-91A3-FB807C013427","0x00000000002C55AD" +"009626EB-D392-4996-9E49-A3D4DC47AF01","","AR-0213","0","440","500","","3570","5AFAFF43-A9F1-43E6-9D72-FB9BB3E2D877","0x00000000002C55AE" +"B055AD39-F423-4FB6-8462-6226EAD5194C","","SO-0258","0","4","18","","3262","92F78F41-48DD-404E-8D2C-FBA57A6A68B8","0x00000000002C55AF" +"D86EE586-0223-43C9-8C1E-7B6903F08840","","NM-01418","0","220","260","","3047","98D7AB70-E6A7-4467-A95D-FBA840C04497","0x00000000002C55B0" +"277D6630-FD7D-42B1-AE22-DF78852AED5B","","TC-305","0","300","400","","3786","1139D30E-023F-4DBB-BB3A-FBA8CA71CAE2","0x00000000002C55B1" +"6C5D62D6-50C1-4AA6-A3A1-41215106165E","78869","SM-0234","0","240","260","","838","9CAC8007-6AE1-458D-A5FE-FBB6C4927B86","0x00000000002C55B2" +"3201FAD8-6633-4508-A825-5E7D1AB4043B","","BC-0098","0","139","179","","5035","79E0FCC2-A4F8-40CA-BED2-FBBB2A546FA1","0x00000000002C55B3" +"3BAA4A2A-74A6-498B-802C-23231BA1E03C","33296","EB-594","0","760","780","","638","7EDC6BE8-3F4E-4AFE-9D84-FBBC0ED80B12","0x00000000002C55B4" +"1E6F6A6F-0887-44DF-96D2-D2909DBA94B3","","NM-25025","0","600","620","","3506","C69FE8D2-E3FD-4EFD-8B21-FBD1FD82E1B9","0x00000000002C55B5" +"8C5953A0-D364-4A5A-B2F2-44BFEDC556BE","","BC-0164","0","270","290","","3276","A12795C9-85B2-475C-9C81-FBDCFDDE3436","0x00000000002C55B6" +"26A57626-C063-4EE6-907D-C8952EB20C68","","AH-102","0","500","555","","1789","541B41B1-8D47-455F-9141-FC06791C4A97","0x00000000002C55B7" +"007D543A-1A75-4C95-9AC9-3E3B4108D751","155590","TB-0127","0","60","80","","1285","0A26C098-4DC9-4DE9-A9DE-FC22468D1564","0x00000000002C55B8" +"157DE72B-6859-4195-92DD-516A5F34B4A9","37","EB-036","0","81","85","","38","8AC876B0-BC2C-41E5-AFD6-FC2571C4768C","0x00000000002C55B9" +"59EDEB19-932B-4704-A5C7-E0FC92DD7E4E","","AB-0136","0","139","144","","2670","89FF403A-CD74-4CB5-8F60-FC30C6FD2311","0x00000000002C55BA" +"D5A9AB04-66C2-49E7-A48A-50022C82F1C6","","UC-0212","0","50","90","","2833","6DEFDFEE-40BC-47E3-8AFD-FC4F1AC09813","0x00000000002C55BB" +"53DE0B95-0141-48F8-AF87-2E6498D2C402","","NM-24620","0","220","235","","3711","C1702F3E-75C8-48E8-AD73-FC5F01373CFB","0x00000000002C55BC" +"5465A226-ABBD-4399-96AD-3FD6B82AD329","33215","EB-563","0","410","425","","610","477A6107-4B12-45D5-B197-FC6D228AD299","0x00000000002C55BD" +"C11687ED-ED25-46E9-8411-9AC83BBC10B6","","NM-03332","0","94","99","","2816","4BC0FFF0-D9D0-4AF2-8336-FC6DE6A4C1FE","0x00000000002C55BE" +"5D60A341-18D6-4300-A4FD-9867A256ECFC","","NM-24645","0","240","280","","3703","5641EB0D-9C09-4F2E-AB6D-FC7BD11A7444","0x00000000002C55BF" +"8C7E194F-20D9-42B7-BE86-B18DC27B54A3","218","TV-198","0","400","480","","1115","4F8F3E15-34EA-4538-90EC-FCB5BBF6E43E","0x00000000002C55C0" +"7C5BDF78-605C-4F30-AA6B-2CCB658EA15F","","NM-24939","0","220","245","","3589","2C9378D6-257B-4ABD-9BF9-FCCB8AE56F88","0x00000000002C55C1" +"5465A226-ABBD-4399-96AD-3FD6B82AD329","33215","EB-563","0","446","506","","609","79A23D7D-24C7-4698-8135-FCD49DCE3A27","0x00000000002C55C2" +"2E8F6AB3-DEFD-4DE6-913C-F2C3344867CE","452","EB-447","0","400","410","","511","92591B63-D5C9-4E41-A383-FCD8DECDDDA4","0x00000000002C55C3" +"0E60F36E-AE8F-436E-B622-331EF968A41F","","NM-24975","0","116","137","","3575","C837EC7D-A1DE-4297-B3CD-FCD98254E046","0x00000000002C55C4" +"4284699F-8A98-4114-B988-8DA78E4A6150","","AB-0106","0","990","1010","","2644","2E9E2CFE-5E94-4597-BB95-FCF0D29787BC","0x00000000002C55C5" +"947F716C-94AE-462D-99B2-9835742750CA","169","EB-168","0","740","760","","209","01EE492D-E703-4F1F-9E4A-FCF69ED9D4D9","0x00000000002C55C6" +"24987D28-CF86-7548-9149-FA6289EDC2AB","","PP-060","0","7","25","","5283","0C1A552D-6D1D-F042-A7A4-FD132D0EDFBB","0x00000000002C55C7" +"53A01440-56FE-40B0-808C-ED8D22AD288D","","NM-21428","0","460","480","","3839","907FE3CF-E699-4A1C-BC14-FD19F36238E3","0x00000000002C55C8" +"D1619517-9085-4AF6-AC1F-507DAD9CDB83","","AB-0227","0","750","770","","2741","57FFF1F9-F370-4354-995A-FD2C6E868543","0x00000000002C55C9" +"855BC954-3D5B-41C5-8574-7716B6A6DBCB","437","QU-105","0","90","215","","974","6ADFA21F-2C50-472B-8584-FD4F386CF2F2","0x00000000002C55CA" +"CD3B6B48-E44F-469D-B05F-9255C68E6E0E","","SV-0063","0","150","170","","3362","509C8834-1236-494D-B05C-FD5915D26F3E","0x00000000002C55CB" +"D3A92432-2016-43AB-A437-CEFCFD24E8C3","","AB-0196","0","60","240","","2717","8A26B38C-F066-4E06-B82C-FD5A587DDA7E","0x00000000002C55CC" +"9B35932B-003A-412F-8A6C-EAE8B0A05863","33378","SM-0032","0","80","120","","1229","3AEDB146-E056-4B59-9BC6-FD80223EC068","0x00000000002C55CD" +"8F15C914-CC42-44B7-A2B6-C379C5684241","8","EB-007","0","122","144","","17","9A5D9B5C-3420-4204-AF50-FD86A5659719","0x00000000002C55CE" +"68B92FA5-7CEB-45A3-AB70-FCAD52BE5F92","","AH-077","0","380","420","","1764","4FA7E2E4-B091-4003-9800-FD8A973DC163","0x00000000002C55CF" +"BB3CE71B-511A-4F5B-8C06-31BCF40EC232","155461","TB-0001","0","50","300","","1237","D3BAF658-9B97-473D-B3A7-FDB89D8FBF07","0x00000000002C55D0" +"F22EF8FC-CE7A-4B36-8BFD-61668703CBCA","","SO-0178","0","44","50","","3176","CFD16F5C-C5DA-4408-9428-FDB96A490E7F","0x00000000002C55D1" +"33FA9BB7-36DA-45DA-A246-7F29270259C4","","NM-26943","0","272","472","","5300","8825BA7C-4D71-624B-9933-FDCF97BB101A","0x00000000002C55D2" +"36F7E176-1CC0-420F-AE80-32D3038EBC7F","155738","TB-0233","0","0","200","","1308","B1B41B01-0CB0-4819-ADC9-FDDDE3EDAC40","0x00000000002C55D3" +"FC72583A-2F30-4F70-906B-466A360A6B89","423","HS-007","0","487","507","","1217","80429976-587F-4687-A720-FDE2E8475172","0x00000000002C55D4" +"28D62B0C-ADAF-4DE3-BB59-B92DC81890B8","","NM-26548","0","220","250","","3802","F9CB7C49-7AC1-4DE1-A735-FDF5B6B00FA9","0x00000000002C55D5" +"2D5D644D-6242-AF4C-A494-996A44076FAA","","PC-048","0","95","105","","5350","73E8E056-A3D1-1E48-A458-FE04D40E56DE","0x00000000002C55D6" +"B0E3A7E3-781F-4A3B-9D8B-88E113413391","","SA-0225","0","160","400","","2855","A78ABC45-42F8-4299-966E-FE0EB3EA6E96","0x00000000002C55D7" +"8BAA1DE7-BF79-42C4-B550-8E52D3593132","","NM-00845","0","70","285","","2909","98CCAD80-76C7-4669-8ECB-FE2CC5E6C913","0x00000000002C55D8" +"87D00501-C53A-4E3E-9955-9A03BDF03F27","","NM-08909","0","860","980","","5542","7A09F716-BFCA-304C-809F-FE3D848FA670","0x00000000002C55D9" +"A4337B54-DBE6-45F8-B3B6-13DA810B1C98","","NM-00808","0","100","105","","3749","96F08D89-DC54-4B32-B86B-FE3F3A6A91B6","0x00000000002C55DA" +"9295A19B-840A-49C5-B167-29001573F0F3","395","EB-391","0","240","260","","448","5DDD6316-9967-4225-8C72-FE4868F95287","0x00000000002C55DB" +"B2217473-1644-47A3-BADB-07CCAB557587","422","QU-087","0","269","289","","988","F00DD27C-F562-497B-AAF3-FE4B4C25C850","0x00000000002C55DC" +"C7F8532B-A6DA-4A38-870C-55953E4689FC","306","JM-007","0","450","500","","887","98ED90A6-8FED-4DC6-8E4E-FE554FE054D8","0x00000000002C55DD" +"3DB12D48-D855-49CF-B14F-3D6BEA0D95BB","","BC-0079","0","300","340","","5014","12CF29B2-C17E-46EF-B4CA-FE8EB8CD9295","0x00000000002C55DE" +"3A1EE303-F916-A541-89FD-55F796B5E276","","NM-28272","0","355","435","","5430","357C173F-D717-C449-8E17-FEB4F5EB5387","0x00000000002C55DF" +"C95DA221-68C7-455D-BDE5-D2F40B09D3D6","171","EB-170","0","76","210","","211","7D17D128-7D77-4EAD-8CF0-FEB9F0DFB11C","0x00000000002C55E0" +"F6720734-566E-4B1B-8FBF-D8DC28E354D9","294","TV-260","0","235","275","","1166","E352C709-C6A8-424C-BB24-FECC696449C3","0x00000000002C55E1" +"A4C24A6C-0DCF-4423-903C-A24E0E483A07","","AH-062","0","480","520","","1749","79F78239-CDAD-4CD1-A5F0-FEE04A912A0B","0x00000000002C55E2" +"16DC3A3A-1DAB-4013-860F-A1E8CFBC003C","","SV-0117","0","180","200","","3415","BDB22CDE-65FA-46F3-85F9-FEE5039F8F6C","0x00000000002C55E3" +"635D7861-97DE-4053-9994-C36552172C60","","TC-256","0","90","125","","2129","B972C675-5710-4FA6-8B16-FEE7549C3126","0x00000000002C55E4" +"E63D3D8F-C471-4699-92A2-45BAC2E1814E","","NM-01417","0","93","94","","3045","95F867DE-E877-46C4-AA93-FF23474ACE99","0x00000000002C55E5" +"FA599519-55F4-47EC-9736-F33FE1F375D5","","SV-0014","0","230","268","","5183","2A86171F-18B0-F440-94BA-FF339E0D3F31","0x00000000002C55E6" +"303B58BE-CC39-40A3-A3BB-73BB7FEAACE5","","NM-25081","0","700","760","","3483","077D1C28-73E1-41ED-96FC-FF3445D1B1D6","0x00000000002C55E7" +"1C4DE8FE-049D-444A-8EB3-E48DB94D24F0","","NM-23307","0","150","225","","3285","3FC3C10C-2FEB-4ED7-BE51-FF385684EE58","0x00000000002C55E8" +"D9F1E745-ED28-4CAA-B736-E06DC83958D0","","BC-0158","0","240","280","","5129","79671CD3-E28F-4936-BF6D-FF49D31F860F","0x00000000002C55E9" +"9B88A9FC-9B41-49DE-AE37-8DFDDE9EECA5","","NM-25023","0","114","115","","3510","C3C1A1F4-62BE-4474-87BB-FF5EC987307B","0x00000000002C55EA" +"EE5D56D8-5085-4010-97BF-614F4C93E13F","","NM-24826","0","326","341","","3634","9DAE59E2-0E5D-4C1C-AF68-FF60EB176E42","0x00000000002C55EB" +"FBF0E520-4521-4529-85DD-03CC008819C1","","AH-001","0","360","400","","1609","015C96AC-20BB-47B0-8F9B-FF7A6E25D960","0x00000000002C55EC" +"FC6F1528-1257-AD42-B18A-182B8D5E2053","","PP-070","0","30","50","","5287","26E15C2F-65A0-0946-BE6B-FF8F6E8D0B96","0x00000000002C55ED" +"C463AE72-E64D-4D06-84D8-068AC1554AC3","155528","TB-0062","0","12","190","","1260","D4D109AE-65C0-4B91-905B-FFAF6F29A699","0x00000000002C55EE" +"491EE5C2-F7F7-41B0-93F9-C493A0128BCC","","BC-0179","0","460","480","","5150","7CE4F5DB-C625-4444-BF3C-FFC15BC50C19","0x00000000002C55EF" +"4F2B9ED4-2B2F-46DD-B595-A4FECB8CF5F1","","AB-0135","0","572","1412","","2669","4072AAF1-FA4E-4E42-AC07-FFC233233C57","0x00000000002C55F0" +"168A3F47-9FD1-4347-B1C4-33C73BA59217","264","EB-260","0","280","290","","319","A7C94F48-F052-4C09-BD64-FFC6E40DE6E5","0x00000000002C55F1" +"2510CE1B-AFF0-4B10-912A-72D09B78EB48","34","EB-033","0","160","260","","34","3354EB8F-8E3C-42AE-B1C8-FFD0DB20C9D5","0x00000000002C55F2" +"9517345C-C67C-4CBB-822A-F9A5550D0FE5","","QU-072","0","28","78","","2278","75DB112E-73BD-401F-B120-FFD6BE594923","0x00000000002C55F3" +"1AF2D0AB-15B6-4E2E-AF9B-394E068D6EE1","","NM-01465","0","99","100","","3063","9AF95E70-5005-4E32-ADB9-FFDD4F28E6EB","0x00000000002C55F4" +"2E0BF6A4-781D-4E46-B736-3DC01395A87A","","WL-0145","0","155","160","","5490","740B975A-9CC1-F545-BFF9-FFE15BFAC4F6","0x00000000002C55F5" +"44F90235-404A-4EEA-9578-39BFCA3558E5","33594","SM-0085","0","72","150","","804","5E6CC938-115C-4597-9325-FFF405A511D7","0x00000000002C55F6" +"0DC1DADB-1FC3-411A-B1C9-88FA7893316C","359","MG-031","0","225","325","","922","CCF77C6C-F88A-4AEC-8598-FFFA4D20F09F","0x00000000002C55F7" +"6B81C7C1-AE7C-6B4E-97EE-536822FC7E1D","","PP-014","0","106","126","","5259","E9F0F127-062F-1A4E-B2DA-FFFC4F5E62C0","0x00000000002C55F8" diff --git a/transfers/entrypoint.py b/transfers/entrypoint.py new file mode 100644 index 000000000..082fde659 --- /dev/null +++ b/transfers/entrypoint.py @@ -0,0 +1,112 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== + +from fastapi import FastAPI + +from core.dependencies import session_dependency +from transfers.asset_transfer import transfer_assets_testing +from transfers.contact_transfer import transfer_contacts +from transfers.group_transfer import transfer_groups +from transfers.link_ids_transfer import transfer_link_ids, transfer_link_ids_welldata +from transfers.thing_transfer import ( + transfer_met, + transfer_ephemeral_stream, + transfer_perennial_stream, + transfer_springs, +) +from transfers.transfer import message +from transfers.waterlevels_transfer import transfer_water_levels +from transfers.well_transfer import transfer_wells, cleanup_wells + +app = FastAPI(title="Transfer Service") + + +@app.post("/wells") +async def wells( + session: session_dependency, + start_index: int, + limit: int = 25, +): + results = transfer_wells(session, start_index=start_index, limit=limit) + return results + + +@app.post("/spring") +async def _(session: session_dependency, limit: int = 25): + message("TRANSFERRING SPRINGS") + transfer_springs(session, limit) + + +@app.post("/perennial_stream") +async def _(session: session_dependency, limit: int = 25): + message("TRANSFERRING PERENNIAL STREAMS") + transfer_perennial_stream(session, limit) + + +@app.post("/ephemeral_stream") +async def _(session: session_dependency, limit: int = 25): + message("TRANSFERRING EPHEMERAL STREAMS") + transfer_ephemeral_stream(session, limit) + + +@app.post("/met") +async def _(session: session_dependency, limit: int = 25): + message("TRANSFERRING METEOROLOGICAL") + transfer_met(session, limit) + + +@app.post("/contacts") +async def _(session: session_dependency): + message("TRANSFERRING CONTACTS") + transfer_contacts(session) + + +@app.post("/waterlevels") +async def _(session: session_dependency): + message("TRANSFERRING WATER LEVELS") + transfer_water_levels(session) + + +@app.post("/link_ids") +async def _(session: session_dependency): + message("TRANSFERRING LINK IDS") + transfer_link_ids(session) + transfer_link_ids_welldata(session) + + +@app.post("assets") +async def _transfer_assets(session: session_dependency): + message("TRANSFERRING ASSETS") + transfer_assets_testing(session) + + +@app.post("/groups") +async def _transfer_groups(session: session_dependency): + message("TRANSFERRING GROUPS") + transfer_groups(session) + + +@app.post("/cleanup_wells") +async def _cleanup_wells(session: session_dependency): + cleanup_wells(session) + + +@app.get("/health") +async def health(): + return {"status": "ok"} + + +# ============= EOF ============================================= diff --git a/transfers/group_transfer.py b/transfers/group_transfer.py new file mode 100644 index 000000000..12bcf452f --- /dev/null +++ b/transfers/group_transfer.py @@ -0,0 +1,55 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from sqlalchemy import select +from sqlalchemy.orm import Session + +from db import Thing, Group +from db.engine import session_ctx +from transfers.util import read_csv, logger + + +def transfer_groups( + session: Session, +) -> None: + wdf = read_csv("Projects") + for i, row in enumerate(wdf.itertuples()): + + sql = select(Group).where(Group.name == row.Project) + group = session.scalars(sql).one_or_none() + if not group: + # add a group for each project + group = Group(name=row.Project) + + for prefix in row.PointIDPrefix.split(","): + prefix = prefix.strip() + if prefix: + # get all PointIDs that start with prefix + sql = select(Thing).where(Thing.name.like(f"{prefix}%")) + records = session.scalars(sql).all() + if records: + logger.info( + f"Adding {len(records)} things to group {group.name}, prefix {prefix}" + ) + group.things = records + + session.add(group) + session.commit() + + +if __name__ == "__main__": + with session_ctx() as session: + transfer_groups(session) +# ============= EOF ============================================= diff --git a/transfers/link_ids_transfer.py b/transfers/link_ids_transfer.py new file mode 100644 index 000000000..fc1cd8a97 --- /dev/null +++ b/transfers/link_ids_transfer.py @@ -0,0 +1,177 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +import re +import pandas as pd + +from db import Thing, ThingIdLink +from transfers.util import ( + filter_to_valid_point_ids, + logger, + extract_organization, + read_csv, +) + + +def transfer_link_ids_welldata(session): + ldf = read_csv("WellData", dtype={"OSEWelltagID": str}) + + ldf = filter_to_valid_point_ids(session, ldf) + + for i, row in enumerate(ldf.itertuples()): + + # RULE: exclude rows where both ids are null + if pd.isna(row.OSEWellID) and pd.isna(row.OSEWelltagID): + logger.warning(f"Both OSEWellID and OSEWelltagID are null for row {i}") + continue + + thing = session.query(Thing).where(Thing.name == row.PointID).first() + if thing is None: + logger.warning( + f"Thing not found for row {i} PointID {row.PointID}. Skipping link ids." + ) + continue + + for aid, klass, regex in ( + (row.OSEWellID, "OSEPOD", r"^[A-Z]{1,2}-\d{5,6}"), + ( + row.OSEWelltagID, + "OSEWellTagID", + r"", + ), # TODO: need to figure out regex for this field + ): + if pd.isna(aid): + logger.warning(f"{klass} is null for row {i}") + continue + + # RULE: exclude any id that == 'X', '?' + if aid.strip().lower() in ("x", "?", "exempt"): + logger.warning( + f'{klass} is "X", "?", or "exempt", id={aid} for row {i}' + ) + continue + + if regex and not re.match(regex, aid): + logger.warning( + f"{klass} id does not match regex {regex}, id={aid} for row {i}" + ) + continue + + # TODO: add guards for null values + link_id = ThingIdLink() + link_id.thing = thing + link_id.relation = klass + link_id.alternate_id = aid + link_id.alternate_organization = "NMOSE" + + # does link_id need a class e.g. + # link_id.alternate_id_class = klass + + session.add(link_id) + session.commit() + + +def add_link_alternate_site_id(session, row, thing): + if not row.AlternateSiteID: + return + + link_id = ThingIdLink() + link_id.thing = thing + link_id.relation = "same_as" + link_id.alternate_id = row.AlternateSiteID + + link_id.alternate_organization = extract_organization(str(row.AlternateSiteID)) + + logger.info(f"adding link id: {link_id}") + session.add(link_id) + + +def add_link_site_id(session, row, thing): + if not row.SiteID: + return + + link_id = ThingIdLink() + link_id.thing = thing + link_id.relation = "same_as" + + site_id = row.SiteID.strip() + if not re.match(r"^\d{15}$", site_id): + # TODO: lets make a sweet function for flagging issues + # flag for interrogation + logger.warning(f"alternate id {site_id} is not a valid USGS site id") + return + + link_id.alternate_id = row.SiteID + link_id.alternate_organization = "USGS" + session.add(link_id) + + +def add_link_plss(session, row, thing): + + township = row.Township + township_direction = row.TownshipDirection + _range = row.Range + range_direction = row.RangeDirection + section = row.Section + section_direction = row.SectionDirection + + if not township or not _range or not section: + return + + link_id = ThingIdLink() + link_id.thing = thing + link_id.relation = "same_as" + link_id.alternate_organization = "PLSS" + + alternate_id = f"T{township}{township_direction}.R{_range}{range_direction}.S{section}{section_direction}" + if not re.match(r"T\d{1,3}.R\d{1,3}.S\d{1,3}", alternate_id): + # flag for interrogation + logger.warning(f"alternate id {alternate_id} is not a valid PLSS") + return + link_id.alternate_id = alternate_id + link_id.alternate_organization = "PLSS" + session.add(link_id) + + +def transfer_link_ids(session, site_type="GW"): + ldf = read_csv("Location") + ldf = ldf[ldf["SiteType"] == site_type] + ldf = ldf[ldf["Easting"].notna() & ldf["Northing"].notna()] + # ldf = ldf[ldf["AlternateSiteID"].notna()] + + ldf = filter_to_valid_point_ids(session, ldf) + + for i, row in enumerate(ldf.itertuples()): + thing = session.query(Thing).where(Thing.name == row.PointID).first() + if thing is None: + logger.warning( + f"Thing with PointID {row.PointID} not found. Skipping link id." + ) + continue + logger.info( + f"Processing PointID: {row.PointID}, Thing ID: {thing.id}, a={row.AlternateSiteID}, " + f"b={row.AlternateSiteID2}" + ) + add_link_alternate_site_id(session, row, thing) + # add_link_site_id(session, row, thing) + # add_link_plss(session, row, thing) + + # not clear what alternate_id2 is for, or what it maps to + # add_link_alternate_site_id2(session, row, thing) + + session.commit() + + +# ============= EOF ============================================= diff --git a/schemas/base.py b/transfers/sensor_transfer.py similarity index 69% rename from schemas/base.py rename to transfers/sensor_transfer.py index 5e9873ad2..d6a3e7f8d 100644 --- a/schemas/base.py +++ b/transfers/sensor_transfer.py @@ -15,18 +15,15 @@ # =============================================================================== from datetime import datetime -from pydantic import field_validator, model_validator - -from schemas import ORMBaseModel - - -class BaseRecord(ORMBaseModel): - """ - Base schema for records that have an ID. - """ - - id: int - created_at: datetime +from db import Sensor # ============= EOF ============================================= +def init_sensor(session): + sensor = Sensor() + sensor.name = "Groundwater level manual measurement" + sensor.description = "manual gwl measurement. needs to be replaced with measurementmethod(?) e.g. steel tape, eprobe, etc." + sensor.unit = "ft" + sensor.datetime_installed = datetime.now() + session.add(sensor) + session.commit() diff --git a/transfers/thing_transfer.py b/transfers/thing_transfer.py new file mode 100644 index 000000000..306df6533 --- /dev/null +++ b/transfers/thing_transfer.py @@ -0,0 +1,98 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +import time +from sqlalchemy.orm import Session + +from db import LocationThingAssociation +from services.thing_helper import add_thing +from transfers.util import make_location, read_csv, logger + + +def transfer_thing(session: Session, site_type: str, make_payload, limit=None) -> None: + + ldf = read_csv("Location") + ldf = ldf[ldf["SiteType"] == site_type] + ldf = ldf[ldf["Easting"].notna() & ldf["Northing"].notna()] + n = len(ldf) + start_time = time.time() + for i, row in enumerate(ldf.itertuples()): + if limit and i >= limit: + logger.warning(f"Reached limit of {limit} rows. Stopping migration.") + break + + if i and not i % 100: + logger.info( + f"Processing row {i} of {n}. {row.PointID}, avg rows per second: {i / (time.time() - start_time):.2f}" + ) + session.commit() + + location = make_location(row) + session.add(location) + payload = make_payload(row) + thing_type = payload.pop("thing_type") + spring = add_thing(session, payload, thing_type=thing_type) + assoc = LocationThingAssociation() + + assoc.location = location + assoc.thing = spring + session.add(assoc) + + +def transfer_springs(session, limit=None): + def make_payload(row): + return { + "name": row.PointID, + "thing_type": "spring", + "release_status": "public" if row.PublicRelease else "private", + } + + transfer_thing(session, "SP", make_payload, limit) + + +def transfer_perennial_stream(session, limit=None): + def make_payload(row): + return { + "name": row.PointID, + "thing_type": "perennial stream", + "release_status": "public" if row.PublicRelease else "private", + } + + transfer_thing(session, "PS", make_payload, limit) + + +def transfer_ephemeral_stream(session, limit=None): + def make_payload(row): + return { + "name": row.PointID, + "thing_type": "ephemeral stream", + "release_status": "public" if row.PublicRelease else "private", + } + + transfer_thing(session, "ES", make_payload, limit) + + +def transfer_met(session, limit=None): + def make_payload(row): + return { + "name": row.PointID, + "thing_type": "meteorological station", + "release_status": "public" if row.PublicRelease else "private", + } + + transfer_thing(session, "M", make_payload, limit) + + +# ============= EOF ============================================= diff --git a/transfers/transfer.py b/transfers/transfer.py new file mode 100644 index 000000000..efd71c103 --- /dev/null +++ b/transfers/transfer.py @@ -0,0 +1,126 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from dotenv import load_dotenv + +load_dotenv() + +from sqlalchemy.orm import Session +from core.initializers import init_lexicon +from db import Base +from db.engine import session_ctx +from transfers.group_transfer import transfer_groups +from transfers.link_ids_transfer import transfer_link_ids, transfer_link_ids_welldata +from transfers.contact_transfer import transfer_contacts +from transfers.sensor_transfer import init_sensor +from transfers.waterlevels_transfer import transfer_water_levels + +from transfers.well_transfer import transfer_wells, transfer_wellscreens +from transfers.thing_transfer import ( + transfer_springs, + transfer_perennial_stream, + transfer_ephemeral_stream, + transfer_met, +) +from transfers.util import logger + + +def erase_and_initalize(session: Session) -> None: + Base.metadata.drop_all(session.bind) + Base.metadata.create_all(session.bind) + + init_lexicon() + init_sensor(session) + + +def message(msg, pad=10): + pad = "*" * pad + logger.info("") + logger.info(f"{pad} {msg} {pad}") + + +def main_transfer(): + logger.info("Starting transfer") + + init = True + + transfer_well_flag = False + transfer_spring_flag = False + transfer_perennial_stream_flag = False + transfer_ephemeral_stream_flag = False + transfer_met_flag = False + transfer_contacts_flag = False + transfer_waterlevels_flag = False + transfer_link_ids_flag = False + transfer_assets_flag = False + transfer_groups_flag = False + + cleanup_wells_flag = False + + limit = 500 + with session_ctx() as sess: + if init: + erase_and_initalize(sess) + + if init or transfer_well_flag: + message("TRANSFERRING WELLS") + transfer_wells(sess, limit=limit) + transfer_wellscreens(sess) + # + if init or transfer_spring_flag: + message("TRANSFERRING SPRINGS") + transfer_springs(sess, limit) + + if init or transfer_perennial_stream_flag: + message("TRANSFERRING PERENNIAL STREAMS") + transfer_perennial_stream(sess, limit) + + if init or transfer_ephemeral_stream_flag: + message("TRANSFERRING EPHEMERAL STREAMS") + transfer_ephemeral_stream(sess, limit) + + if init or transfer_met_flag: + message("TRANSFERRING METEOROLOGICAL") + transfer_met(sess, limit) + + if init or transfer_contacts_flag: + message("TRANSFERRING CONTACTS") + transfer_contacts(sess) + + if init or transfer_waterlevels_flag: + message("TRANSFERRING WATER LEVELS") + transfer_water_levels(sess) + + if init or transfer_link_ids_flag: + message("TRANSFERRING LINK IDS") + transfer_link_ids(sess) + transfer_link_ids_welldata(sess) + + # if init or transfer_assets_flag: + # message("TRANSFERRING ASSETS") + # transfer_assets_testing(sess) + + if init or transfer_groups_flag: + message("TRANSFERRING GROUPS") + transfer_groups(sess) + + # if init or cleanup_wells_flag: + # cleanup_wells(sess) + + +if __name__ == "__main__": + main_transfer() + +# ============= EOF ============================================= diff --git a/transfers/util.py b/transfers/util.py new file mode 100644 index 000000000..79fec1c2c --- /dev/null +++ b/transfers/util.py @@ -0,0 +1,274 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +from datetime import datetime +import re +import io +import logging +import httpx +import pyproj +from shapely import Point +from shapely.ops import transform + +from sqlalchemy.orm import Session +import pandas as pd + +from db import Thing, Location +from services.gcs_helper import get_storage_bucket + +import sys + + +class StreamToLogger: + def __init__(self, logger, level): + self.logger = logger + self.level = level + self.linebuf = "" + + def write(self, buf): + for line in buf.rstrip().splitlines(): + self.logger.log(self.level, line.rstrip()) + + def flush(self): + pass + + +log_filename = f"transfers/transfer_{datetime.now():%Y-%m-%dT%Hh%Mm%Ss}.log" + + +logging.basicConfig( + level=logging.INFO, + format="%(asctime)s [%(levelname)-8s] %(message)s", + handlers=[ + logging.StreamHandler(), + logging.FileHandler(log_filename, mode="w", encoding="utf-8"), + ], +) +logger = logging.getLogger(__name__) + +# redirect stderr to the logger +sys.stderr = StreamToLogger(logger, logging.ERROR) + +TRANSFORMERS = {} + + +def read_csv(name: str, dtype: dict | None = None) -> pd.DataFrame: + bucket = get_storage_bucket() + blob = bucket.blob(f"nma_csv/{name}.csv") + data = blob.download_as_bytes() + + if dtype: + return pd.read_csv(io.BytesIO(data), dtype=dtype) + else: + return pd.read_csv(io.BytesIO(data)) + + +def transform_srid(geometry, source_srid, target_srid): + """ + geometry must be a shapely geometry object, like Point, Polygon, or MultiPolygon + """ + transformer_key = (source_srid, target_srid) + if transformer_key not in TRANSFORMERS: + source_crs = pyproj.CRS(f"EPSG:{source_srid}") + target_crs = pyproj.CRS(f"EPSG:{target_srid}") + transformer = pyproj.Transformer.from_crs( + source_crs, target_crs, always_xy=True + ) + TRANSFORMERS[transformer_key] = transformer + else: + transformer = TRANSFORMERS[transformer_key] + return transform(transformer.transform, geometry) + + +def get_valid_point_ids(session, thing_type="water well"): + things = get_valid_things(session, thing_type) + valid_pointids = [thing.name for thing in things] + return valid_pointids + + +def get_valid_things(session, thing_type="water well"): + return session.query(Thing).where(Thing.thing_type == thing_type).all() + + +def extract_organization(alternate_id: str) -> str: + if alternate_id.startswith("TWDB"): + return "TWDB" + elif alternate_id.startswith("NMED"): + return "NMED" + + # TODO: There are a bunch of other formats used for AlternateSiteID. + # we should try to handle as many as possible but its not the end of the world + # if we have to update the organization for a particular alternate id at a later time + for regex, org in ((r"^A-Z{1,2}-\d{5,6}$", "NMOSE"), (r"\d+(\.\d+){3,}", "PLSS")): + + if re.match(regex, alternate_id): + return org + + return "Unknown" + + +def filter_to_valid_point_ids(session: Session, df: pd.DataFrame) -> pd.DataFrame: + valid_point_ids = get_valid_point_ids(session) + return df[df["PointID"].isin(valid_point_ids)] + + +def convert_to_wgs84_vertical_datum(row, z): + if row.VerticalDatum == "NAVD88": + z = z + 2.0 # TODO: check this transformation + elif row.VerticalDatum == "NGVD29": + z = z + 3.0 # TODO: check this transformation + return z + + +def get_state_from_point(lon: float, lat: float) -> str: + attrs = get_tiger_data(lon, lat, layer=0, outfields="BASENAME") + return attrs["BASENAME"] + + +def get_county_from_point(lon: float, lat: float) -> str: + """ + Look up county for a given longitude/latitude + using the US Census TIGERWeb REST API. + """ + + attrs = get_tiger_data(lon, lat, layer=1, outfields="BASENAME") + return attrs["BASENAME"] + + +def get_tiger_data( + lon: float, lat: float, layer: int, outfields: str = "*" +) -> dict | None: + url = f"https://tigerweb.geo.census.gov/arcgis/rest/services/TIGERweb/State_County/MapServer/{layer}/query" + params = { + "f": "json", + "where": "1=1", + "geometry": f"{lon},{lat}", + "geometryType": "esriGeometryPoint", + "inSR": "4326", + "spatialRel": "esriSpatialRelIntersects", + "outFields": outfields, + "returnGeometry": "false", + } + resp = httpx.get(url, params=params, timeout=15) + data = resp.json() + if not data.get("features"): + return None + + return data["features"][0]["attributes"] + + +def get_quad_name_from_point(lon: float, lat: float) -> str: + url = "https://carto.nationalmap.gov/arcgis/rest/services/map_indices/MapServer/10/query" + params = { + "f": "json", + "geometry": f"{lon},{lat}", + "geometryType": "esriGeometryPoint", + "inSR": "4326", + "spatialRel": "esriSpatialRelIntersects", + "outFields": "CELL_NAME,CELL_MAPCODE", + "returnGeometry": "false", + } + + resp = httpx.get(url, params=params, timeout=15) + logger.info(resp) + data = resp.json() + + if data["features"]: + attrs = data["features"][0]["attributes"] + return attrs["CELL_NAME"] + else: + logger.warning(f"No quad name found for POINT ({lon} {lat})") + + +def get_epqs_elevation(lon: float, lat: float) -> float: + url = "https://epqs.nationalmap.gov/v1/json" + params = { + "x": lon, + "y": lat, + "units": "Meters", + "wkid": "4326", + "includeDate": False, + } + + resp = httpx.get(url, params=params) + data = resp.json() + + return data["value"] + + +def make_location(row: pd.Series) -> Location: + + # TODO: should the altitude be fetched from USGS' + # Elevation Point Query Service https://epqs.nationalmap.gov/v1/docs + xypoint = transform_srid( + Point(row.Easting, row.Northing), + source_srid=26913, + target_srid=4326, # WGS84 SRID + ) + + z = 0 + + # idx = row.index + # idx = df.index.get_loc(row.name) + # print('asdfa', idx, row.name) + # if not z: + # z = get_epqs_elevation(xypoint.x, xypoint.y) + + # z = row.Altitude if row.Altitude else 0 + # convert z from ft to meters + z = z * 0.3048 + + point = Point(row.Easting, row.Northing, z) + + # Convert the point to a WGS84 coordinate system + transformed_point = transform_srid( + point, source_srid=26913, target_srid=4326 # WGS84 SRID + ) + + # TODO: Add tests for these functions. move to a different location + # use in Location API + + # TODO: determine correct created_at value + # created_at = row.DateCreated + name = row.PointID + + location = Location( + nma_pk_location=row.LocationId, + # TODO: determine if PointID should map to location.name or thing.name or if the Location table needs a name field at all. + name=row.PointID, + point=transformed_point.wkt, + release_status="public" if row.PublicRelease else "private", + elevation_accuracy=row.AltitudeAccuracy, + elevation_method=row.AltitudeMethod, + # created_at=created_at, + coordinate_accuracy=row.CoordinateAccuracy, + coordinate_method=row.CoordinateMethod, + nma_coordinate_notes=row.CoordinateNotes, + nma_notes_location=row.LocationNotes, + ) + return location + + +if __name__ == "__main__": + # quad = get_quad_name_from_point(-106.5, 34.2) + # print(quad) + # state = get_state_from_point(-106.5, 34.2) + # print(state) + # county = get_county_from_point(-106.5, 34.2) + # print(county) + z = get_epqs_elevation(-106.5, 34.2) + print(z) + +# ============= EOF ============================================= diff --git a/transfers/waterlevels_transfer.py b/transfers/waterlevels_transfer.py new file mode 100644 index 000000000..5dfe41191 --- /dev/null +++ b/transfers/waterlevels_transfer.py @@ -0,0 +1,73 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +import uuid +from datetime import datetime + +import pandas as pd + +from db import Thing, Sample, Observation +from transfers.util import filter_to_valid_point_ids, logger, read_csv + + +def transfer_water_levels(session): + + wd = read_csv("WaterLevels") + wd = filter_to_valid_point_ids(session, wd) + gwd = wd.groupby(["PointID"]) + + for index, group in gwd: + for row in group.itertuples(): + if pd.isna(row.DepthToWater) or pd.isna(row.DateMeasured): + logger.warning(f"Skipping row {row.Index} due to missing data.") + continue + + dt = datetime.fromisoformat(row.DateMeasured) + thing = session.query(Thing).where(Thing.name == row.PointID).first() + if thing is None: + logger.warning( + f"Thing with PointID {row.PointID} not found. Skipping water level." + ) + continue + + sample = Sample() + sample.sampler_name = "unknown" + sample.sample_type = "groundwater level" + + sample.field_sample_id = str(uuid.uuid4()) + sample.sample_date = dt + sample.thing = thing + session.add(sample) + + obs = Observation() + + # TODO: this needs to be resolved + obs.sensor_id = 1 + + # TODO: this needs to be implemented + # obs.nma_pk_observation = row.GlobalID + + obs.sample = sample + obs.observation_datetime = dt + obs.value = row.DepthToWater + obs.measuring_point_height = row.MPHeight + obs.observed_property = "groundwater level:groundwater level" + obs.unit = "ft" + + session.add(obs) + session.commit() + + +# ============= EOF ============================================= diff --git a/transfers/well_transfer.py b/transfers/well_transfer.py new file mode 100644 index 000000000..19d726bdf --- /dev/null +++ b/transfers/well_transfer.py @@ -0,0 +1,186 @@ +# =============================================================================== +# Copyright 2025 ross +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# =============================================================================== +import time +import numpy as np +import pandas as pd +from pydantic import ValidationError +from sqlalchemy import select + +from db import LocationThingAssociation, Thing, WellScreen, Location +from schemas.thing import CreateWellScreen +from services.thing_helper import add_thing +from transfers.util import ( + make_location, + filter_to_valid_point_ids, + read_csv, + get_state_from_point, + get_county_from_point, + get_quad_name_from_point, + logger, +) + +ADDED = [] + + +def transfer_wells(session, start_index=0, limit=0): + wdf = read_csv("WellData", dtype={"OSEWelltagID": str}) + ldf = read_csv("Location") + ldf = ldf.drop(["PointID", "SSMA_TimeStamp"], axis=1) + wdf = wdf.join(ldf.set_index("LocationId"), on="LocationId") + wdf = wdf[wdf["SiteType"] == "GW"] + wdf = wdf[wdf["Easting"].notna() & wdf["Northing"].notna()] + wdf = wdf.iloc[start_index : start_index + limit] + n = len(wdf) + start_time = time.time() + results = { + "n": n, + } + made_things = [] + for i, row in enumerate(wdf.itertuples()): + if limit and i >= limit: + logger.warning("Reached limit of %d rows. Stopping migration.", limit) + break + + if i and not i % 25: + logger.info( + f"Processing row {i} of {n}. {row.PointID}, avg rows per second: {i / (time.time() - start_time):.2f}" + ) + session.commit() + + try: + location = make_location(row) + except Exception as e: + logger.warning(f"Error making location for row {i}: {e}") + break + + # print(location_row) + session.add(location) + + # TODO: add guards for null values + well = add_thing( + session, + { + # "nma_pk_welldata": row.WellID, + "name": row.PointID, + "hole_depth": row.HoleDepth, + "well_depth": row.WellDepth, + # "driller_name": row.DrillerName, + # "construction_method": row.ConstructionMethod, + # "casing_diameter": row.CasingDiameter, + # "casing_depth": row.CasingDepth, + # "casing_description": row.CasingDescription, + "release_status": "public" if row.PublicRelease else "private", + # "data_reliability": row.DataReliability, + }, + thing_type="water well", + ) + # TODO: use current use LUT to get well type + + # wt = row.Meaning + # if wt not in ADDED: + # add_lexicon_term( + # session, + # wt, + # "Current use of the well, aka well purpose", + # [{"name": "current_use", "desciption": "Current use of the well"}], + # ) + # ADDED.append(wt) + # + # well.well_type = wt + + assoc = LocationThingAssociation() + + assoc.location = location + assoc.thing = well + session.add(assoc) + made_things.append(row.PointID) + + results["made_things"] = made_things + return results + + +def transfer_wellscreens(session, limit=None): + wdf = read_csv("WellScreens") + wdf = wdf.replace(pd.NA, None) + wdf = wdf.replace({np.nan: None}) + + wdf = filter_to_valid_point_ids(session, wdf) + + n = len(wdf) + + start_time = time.time() + + for i, row in enumerate(wdf.itertuples()): + if limit and i >= limit: + logger.warning("Reached limit of", limit, "rows. Stopping migration.") + break + + # this is for testing only. not sure in practice we have to commit every 100 rows + # should we commit every row? or every 1000? or every 10? + if i and not i % 100: + logger.info( + f"Processing row {i} of {n}. {row.PointID}, avg rows per second: {i / (time.time() - start_time):.2f}" + ) + session.commit() + + sql = select(Thing).where(Thing.name == row.PointID) + thing = session.execute(sql).scalar_one_or_none() + if not thing: + logger.warning( + f"Thing with PointID {row.PointID} not found. Skipping well screen." + ) + continue + + well_screen_data = { + "thing_id": thing.id, + "screen_depth_top": row.ScreenTop, + "screen_depth_bottom": row.ScreenBottom, + # "screen_type": row.ScreenType, + "screen_description": row.ScreenDescription, + "release_status": "draft", + "nma_pk_wellscreens": row.GlobalID, + } + try: + # TODO: add validation logic here to ensure no overlapping screens for the same well + CreateWellScreen.model_validate(well_screen_data) + well_screen = WellScreen(**well_screen_data) + session.add(well_screen) + session.commit() + except ValidationError as e: + logger.warning( + f"Validation error for row {i} with PointID {row.PointID}: {e}" + ) + continue + + +def cleanup_wells(session): + locations = session.query(Location).all() + for location in locations: + + y, x = location.latlon + if not location.state: + location.state = get_state_from_point(x, y) + + if not location.county: + location.county = get_county_from_point(x, y) + + if not location.quad_name: + location.quad_name = get_quad_name_from_point(x, y) + + session.commit() + + +# ============= EOF ============================================= diff --git a/uv.lock b/uv.lock index 0c5a1ce1e..a801f7a46 100644 --- a/uv.lock +++ b/uv.lock @@ -1,5 +1,5 @@ version = 1 -revision = 2 +revision = 3 requires-python = ">=3.13" [[package]] @@ -22,7 +22,7 @@ wheels = [ [[package]] name = "aiohttp" -version = "3.12.13" +version = "3.12.15" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiohappyeyeballs" }, @@ -33,37 +33,37 @@ dependencies = [ { name = "propcache" }, { name = "yarl" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/42/6e/ab88e7cb2a4058bed2f7870276454f85a7c56cd6da79349eb314fc7bbcaa/aiohttp-3.12.13.tar.gz", hash = "sha256:47e2da578528264a12e4e3dd8dd72a7289e5f812758fe086473fab037a10fcce", size = 7819160, upload-time = "2025-06-14T15:15:41.354Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/e7/d92a237d8802ca88483906c388f7c201bbe96cd80a165ffd0ac2f6a8d59f/aiohttp-3.12.15.tar.gz", hash = "sha256:4fc61385e9c98d72fcdf47e6dd81833f47b2f77c114c29cd64a361be57a763a2", size = 7823716, upload-time = "2025-07-29T05:52:32.215Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/11/0f/db19abdf2d86aa1deec3c1e0e5ea46a587b97c07a16516b6438428b3a3f8/aiohttp-3.12.13-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:d4a18e61f271127465bdb0e8ff36e8f02ac4a32a80d8927aa52371e93cd87938", size = 694910, upload-time = "2025-06-14T15:14:30.604Z" }, - { url = "https://files.pythonhosted.org/packages/d5/81/0ab551e1b5d7f1339e2d6eb482456ccbe9025605b28eed2b1c0203aaaade/aiohttp-3.12.13-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:532542cb48691179455fab429cdb0d558b5e5290b033b87478f2aa6af5d20ace", size = 472566, upload-time = "2025-06-14T15:14:32.275Z" }, - { url = "https://files.pythonhosted.org/packages/34/3f/6b7d336663337672d29b1f82d1f252ec1a040fe2d548f709d3f90fa2218a/aiohttp-3.12.13-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d7eea18b52f23c050ae9db5d01f3d264ab08f09e7356d6f68e3f3ac2de9dfabb", size = 464856, upload-time = "2025-06-14T15:14:34.132Z" }, - { url = "https://files.pythonhosted.org/packages/26/7f/32ca0f170496aa2ab9b812630fac0c2372c531b797e1deb3deb4cea904bd/aiohttp-3.12.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad7c8e5c25f2a26842a7c239de3f7b6bfb92304593ef997c04ac49fb703ff4d7", size = 1703683, upload-time = "2025-06-14T15:14:36.034Z" }, - { url = "https://files.pythonhosted.org/packages/ec/53/d5513624b33a811c0abea8461e30a732294112318276ce3dbf047dbd9d8b/aiohttp-3.12.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:6af355b483e3fe9d7336d84539fef460120c2f6e50e06c658fe2907c69262d6b", size = 1684946, upload-time = "2025-06-14T15:14:38Z" }, - { url = "https://files.pythonhosted.org/packages/37/72/4c237dd127827b0247dc138d3ebd49c2ded6114c6991bbe969058575f25f/aiohttp-3.12.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a95cf9f097498f35c88e3609f55bb47b28a5ef67f6888f4390b3d73e2bac6177", size = 1737017, upload-time = "2025-06-14T15:14:39.951Z" }, - { url = "https://files.pythonhosted.org/packages/0d/67/8a7eb3afa01e9d0acc26e1ef847c1a9111f8b42b82955fcd9faeb84edeb4/aiohttp-3.12.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b8ed8c38a1c584fe99a475a8f60eefc0b682ea413a84c6ce769bb19a7ff1c5ef", size = 1786390, upload-time = "2025-06-14T15:14:42.151Z" }, - { url = "https://files.pythonhosted.org/packages/48/19/0377df97dd0176ad23cd8cad4fd4232cfeadcec6c1b7f036315305c98e3f/aiohttp-3.12.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a0b9170d5d800126b5bc89d3053a2363406d6e327afb6afaeda2d19ee8bb103", size = 1708719, upload-time = "2025-06-14T15:14:44.039Z" }, - { url = "https://files.pythonhosted.org/packages/61/97/ade1982a5c642b45f3622255173e40c3eed289c169f89d00eeac29a89906/aiohttp-3.12.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:372feeace612ef8eb41f05ae014a92121a512bd5067db8f25101dd88a8db11da", size = 1622424, upload-time = "2025-06-14T15:14:45.945Z" }, - { url = "https://files.pythonhosted.org/packages/99/ab/00ad3eea004e1d07ccc406e44cfe2b8da5acb72f8c66aeeb11a096798868/aiohttp-3.12.13-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a946d3702f7965d81f7af7ea8fb03bb33fe53d311df48a46eeca17e9e0beed2d", size = 1675447, upload-time = "2025-06-14T15:14:47.911Z" }, - { url = "https://files.pythonhosted.org/packages/3f/fe/74e5ce8b2ccaba445fe0087abc201bfd7259431d92ae608f684fcac5d143/aiohttp-3.12.13-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:a0c4725fae86555bbb1d4082129e21de7264f4ab14baf735278c974785cd2041", size = 1707110, upload-time = "2025-06-14T15:14:50.334Z" }, - { url = "https://files.pythonhosted.org/packages/ef/c4/39af17807f694f7a267bd8ab1fbacf16ad66740862192a6c8abac2bff813/aiohttp-3.12.13-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9b28ea2f708234f0a5c44eb6c7d9eb63a148ce3252ba0140d050b091b6e842d1", size = 1649706, upload-time = "2025-06-14T15:14:52.378Z" }, - { url = "https://files.pythonhosted.org/packages/38/e8/f5a0a5f44f19f171d8477059aa5f28a158d7d57fe1a46c553e231f698435/aiohttp-3.12.13-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:d4f5becd2a5791829f79608c6f3dc745388162376f310eb9c142c985f9441cc1", size = 1725839, upload-time = "2025-06-14T15:14:54.617Z" }, - { url = "https://files.pythonhosted.org/packages/fd/ac/81acc594c7f529ef4419d3866913f628cd4fa9cab17f7bf410a5c3c04c53/aiohttp-3.12.13-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:60f2ce6b944e97649051d5f5cc0f439360690b73909230e107fd45a359d3e911", size = 1759311, upload-time = "2025-06-14T15:14:56.597Z" }, - { url = "https://files.pythonhosted.org/packages/38/0d/aabe636bd25c6ab7b18825e5a97d40024da75152bec39aa6ac8b7a677630/aiohttp-3.12.13-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:69fc1909857401b67bf599c793f2183fbc4804717388b0b888f27f9929aa41f3", size = 1708202, upload-time = "2025-06-14T15:14:58.598Z" }, - { url = "https://files.pythonhosted.org/packages/1f/ab/561ef2d8a223261683fb95a6283ad0d36cb66c87503f3a7dde7afe208bb2/aiohttp-3.12.13-cp313-cp313-win32.whl", hash = "sha256:7d7e68787a2046b0e44ba5587aa723ce05d711e3a3665b6b7545328ac8e3c0dd", size = 420794, upload-time = "2025-06-14T15:15:00.939Z" }, - { url = "https://files.pythonhosted.org/packages/9d/47/b11d0089875a23bff0abd3edb5516bcd454db3fefab8604f5e4b07bd6210/aiohttp-3.12.13-cp313-cp313-win_amd64.whl", hash = "sha256:5a178390ca90419bfd41419a809688c368e63c86bd725e1186dd97f6b89c2706", size = 446735, upload-time = "2025-06-14T15:15:02.858Z" }, + { url = "https://files.pythonhosted.org/packages/f2/33/918091abcf102e39d15aba2476ad9e7bd35ddb190dcdd43a854000d3da0d/aiohttp-3.12.15-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:9f922ffd05034d439dde1c77a20461cf4a1b0831e6caa26151fe7aa8aaebc315", size = 696741, upload-time = "2025-07-29T05:51:19.021Z" }, + { url = "https://files.pythonhosted.org/packages/b5/2a/7495a81e39a998e400f3ecdd44a62107254803d1681d9189be5c2e4530cd/aiohttp-3.12.15-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2ee8a8ac39ce45f3e55663891d4b1d15598c157b4d494a4613e704c8b43112cd", size = 474407, upload-time = "2025-07-29T05:51:21.165Z" }, + { url = "https://files.pythonhosted.org/packages/49/fc/a9576ab4be2dcbd0f73ee8675d16c707cfc12d5ee80ccf4015ba543480c9/aiohttp-3.12.15-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3eae49032c29d356b94eee45a3f39fdf4b0814b397638c2f718e96cfadf4c4e4", size = 466703, upload-time = "2025-07-29T05:51:22.948Z" }, + { url = "https://files.pythonhosted.org/packages/09/2f/d4bcc8448cf536b2b54eed48f19682031ad182faa3a3fee54ebe5b156387/aiohttp-3.12.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b97752ff12cc12f46a9b20327104448042fce5c33a624f88c18f66f9368091c7", size = 1705532, upload-time = "2025-07-29T05:51:25.211Z" }, + { url = "https://files.pythonhosted.org/packages/f1/f3/59406396083f8b489261e3c011aa8aee9df360a96ac8fa5c2e7e1b8f0466/aiohttp-3.12.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:894261472691d6fe76ebb7fcf2e5870a2ac284c7406ddc95823c8598a1390f0d", size = 1686794, upload-time = "2025-07-29T05:51:27.145Z" }, + { url = "https://files.pythonhosted.org/packages/dc/71/164d194993a8d114ee5656c3b7ae9c12ceee7040d076bf7b32fb98a8c5c6/aiohttp-3.12.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5fa5d9eb82ce98959fc1031c28198b431b4d9396894f385cb63f1e2f3f20ca6b", size = 1738865, upload-time = "2025-07-29T05:51:29.366Z" }, + { url = "https://files.pythonhosted.org/packages/1c/00/d198461b699188a93ead39cb458554d9f0f69879b95078dce416d3209b54/aiohttp-3.12.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0fa751efb11a541f57db59c1dd821bec09031e01452b2b6217319b3a1f34f3d", size = 1788238, upload-time = "2025-07-29T05:51:31.285Z" }, + { url = "https://files.pythonhosted.org/packages/85/b8/9e7175e1fa0ac8e56baa83bf3c214823ce250d0028955dfb23f43d5e61fd/aiohttp-3.12.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5346b93e62ab51ee2a9d68e8f73c7cf96ffb73568a23e683f931e52450e4148d", size = 1710566, upload-time = "2025-07-29T05:51:33.219Z" }, + { url = "https://files.pythonhosted.org/packages/59/e4/16a8eac9df39b48ae102ec030fa9f726d3570732e46ba0c592aeeb507b93/aiohttp-3.12.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:049ec0360f939cd164ecbfd2873eaa432613d5e77d6b04535e3d1fbae5a9e645", size = 1624270, upload-time = "2025-07-29T05:51:35.195Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f8/cd84dee7b6ace0740908fd0af170f9fab50c2a41ccbc3806aabcb1050141/aiohttp-3.12.15-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b52dcf013b57464b6d1e51b627adfd69a8053e84b7103a7cd49c030f9ca44461", size = 1677294, upload-time = "2025-07-29T05:51:37.215Z" }, + { url = "https://files.pythonhosted.org/packages/ce/42/d0f1f85e50d401eccd12bf85c46ba84f947a84839c8a1c2c5f6e8ab1eb50/aiohttp-3.12.15-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:9b2af240143dd2765e0fb661fd0361a1b469cab235039ea57663cda087250ea9", size = 1708958, upload-time = "2025-07-29T05:51:39.328Z" }, + { url = "https://files.pythonhosted.org/packages/d5/6b/f6fa6c5790fb602538483aa5a1b86fcbad66244997e5230d88f9412ef24c/aiohttp-3.12.15-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ac77f709a2cde2cc71257ab2d8c74dd157c67a0558a0d2799d5d571b4c63d44d", size = 1651553, upload-time = "2025-07-29T05:51:41.356Z" }, + { url = "https://files.pythonhosted.org/packages/04/36/a6d36ad545fa12e61d11d1932eef273928b0495e6a576eb2af04297fdd3c/aiohttp-3.12.15-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:47f6b962246f0a774fbd3b6b7be25d59b06fdb2f164cf2513097998fc6a29693", size = 1727688, upload-time = "2025-07-29T05:51:43.452Z" }, + { url = "https://files.pythonhosted.org/packages/aa/c8/f195e5e06608a97a4e52c5d41c7927301bf757a8e8bb5bbf8cef6c314961/aiohttp-3.12.15-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:760fb7db442f284996e39cf9915a94492e1896baac44f06ae551974907922b64", size = 1761157, upload-time = "2025-07-29T05:51:45.643Z" }, + { url = "https://files.pythonhosted.org/packages/05/6a/ea199e61b67f25ba688d3ce93f63b49b0a4e3b3d380f03971b4646412fc6/aiohttp-3.12.15-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ad702e57dc385cae679c39d318def49aef754455f237499d5b99bea4ef582e51", size = 1710050, upload-time = "2025-07-29T05:51:48.203Z" }, + { url = "https://files.pythonhosted.org/packages/b4/2e/ffeb7f6256b33635c29dbed29a22a723ff2dd7401fff42ea60cf2060abfb/aiohttp-3.12.15-cp313-cp313-win32.whl", hash = "sha256:f813c3e9032331024de2eb2e32a88d86afb69291fbc37a3a3ae81cc9917fb3d0", size = 422647, upload-time = "2025-07-29T05:51:50.718Z" }, + { url = "https://files.pythonhosted.org/packages/1b/8e/78ee35774201f38d5e1ba079c9958f7629b1fd079459aea9467441dbfbf5/aiohttp-3.12.15-cp313-cp313-win_amd64.whl", hash = "sha256:1a649001580bdb37c6fdb1bebbd7e3bc688e8ec2b5c6f52edbb664662b17dc84", size = 449067, upload-time = "2025-07-29T05:51:52.549Z" }, ] [[package]] name = "aiosignal" -version = "1.3.2" +version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "frozenlist" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ba/b5/6d55e80f6d8a08ce22b982eafa278d823b541c925f11ee774b0b9c43473d/aiosignal-1.3.2.tar.gz", hash = "sha256:a8c255c66fafb1e499c9351d0bf32ff2d8a0321595ebac3b93713656d2436f54", size = 19424, upload-time = "2024-12-13T17:10:40.86Z" } +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/6a/bc7e17a3e87a2985d3e8f4da4cd0f481060eb78fb08596c42be62c90a4d9/aiosignal-1.3.2-py2.py3-none-any.whl", hash = "sha256:45cde58e409a301715980c2b01d0c28bdde3770d8290b5eb2173759d9acb31a5", size = 7597, upload-time = "2024-12-13T17:10:38.469Z" }, + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, ] [[package]] @@ -80,16 +80,16 @@ wheels = [ [[package]] name = "alembic" -version = "1.16.2" +version = "1.16.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "mako" }, { name = "sqlalchemy" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/9c/35/116797ff14635e496bbda0c168987f5326a6555b09312e9b817e360d1f56/alembic-1.16.2.tar.gz", hash = "sha256:e53c38ff88dadb92eb22f8b150708367db731d58ad7e9d417c9168ab516cbed8", size = 1963563, upload-time = "2025-06-16T18:05:08.566Z" } +sdist = { url = "https://files.pythonhosted.org/packages/83/52/72e791b75c6b1efa803e491f7cbab78e963695e76d4ada05385252927e76/alembic-1.16.4.tar.gz", hash = "sha256:efab6ada0dd0fae2c92060800e0bf5c1dc26af15a10e02fb4babff164b4725e2", size = 1968161, upload-time = "2025-07-10T16:17:20.192Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/dd/e2/88e425adac5ad887a087c38d04fe2030010572a3e0e627f8a6e8c33eeda8/alembic-1.16.2-py3-none-any.whl", hash = "sha256:5f42e9bd0afdbd1d5e3ad856c01754530367debdebf21ed6894e34af52b3bb03", size = 242717, upload-time = "2025-06-16T18:05:10.27Z" }, + { url = "https://files.pythonhosted.org/packages/c2/62/96b5217b742805236614f05904541000f55422a6060a90d7fd4ce26c172d/alembic-1.16.4-py3-none-any.whl", hash = "sha256:b05e51e8e82efc1abd14ba2af6392897e145930c3e0a2faf2b0da2f7f7fd660d", size = 247026, upload-time = "2025-07-10T16:17:21.845Z" }, ] [[package]] @@ -103,24 +103,24 @@ wheels = [ [[package]] name = "anyio" -version = "4.9.0" +version = "4.10.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, { name = "sniffio" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/95/7d/4c1bd541d4dffa1b52bd83fb8527089e097a106fc90b467a7313b105f840/anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028", size = 190949, upload-time = "2025-03-17T00:02:54.77Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/b4/636b3b65173d3ce9a38ef5f0522789614e590dab6a8d505340a4efe4c567/anyio-4.10.0.tar.gz", hash = "sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6", size = 213252, upload-time = "2025-08-04T08:54:26.451Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c", size = 100916, upload-time = "2025-03-17T00:02:52.713Z" }, + { url = "https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl", hash = "sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1", size = 107213, upload-time = "2025-08-04T08:54:24.882Z" }, ] [[package]] name = "asgiref" -version = "3.8.1" +version = "3.9.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/29/38/b3395cc9ad1b56d2ddac9970bc8f4141312dbaec28bc7c218b0dfafd0f42/asgiref-3.8.1.tar.gz", hash = "sha256:c343bd80a0bec947a9860adb4c432ffa7db769836c64238fc34bdc3fec84d590", size = 35186, upload-time = "2024-03-22T14:39:36.863Z" } +sdist = { url = "https://files.pythonhosted.org/packages/90/61/0aa957eec22ff70b830b22ff91f825e70e1ef732c06666a805730f28b36b/asgiref-3.9.1.tar.gz", hash = "sha256:a5ab6582236218e5ef1648f242fd9f10626cfd4de8dc377db215d5d5098e3142", size = 36870, upload-time = "2025-07-08T09:07:43.344Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/39/e3/893e8757be2612e6c266d9bb58ad2e3651524b5b40cf56761e985a28b13e/asgiref-3.8.1-py3-none-any.whl", hash = "sha256:3e1e3ecc849832fe52ccf2cb6686b7a55f82bb1d6aee72a58826471390335e47", size = 23828, upload-time = "2024-03-22T14:39:34.521Z" }, + { url = "https://files.pythonhosted.org/packages/7c/3c/0464dcada90d5da0e71018c04a140ad6349558afb30b3051b4264cc5b965/asgiref-3.9.1-py3-none-any.whl", hash = "sha256:f3bba7092a48005b5f5bacd747d36ee4a5a61f4a269a6df590b43144355ebd2c", size = 23790, upload-time = "2025-07-08T09:07:41.548Z" }, ] [[package]] @@ -157,6 +157,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3", size = 63815, upload-time = "2025-03-13T11:10:21.14Z" }, ] +[[package]] +name = "authlib" +version = "1.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cryptography" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5d/c6/d9a9db2e71957827e23a34322bde8091b51cb778dcc38885b84c772a1ba9/authlib-1.6.3.tar.gz", hash = "sha256:9f7a982cc395de719e4c2215c5707e7ea690ecf84f1ab126f28c053f4219e610", size = 160836, upload-time = "2025-08-26T12:13:25.206Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/2f/efa9d26dbb612b774990741fd8f13c7cf4cfd085b870e4a5af5c82eaf5f1/authlib-1.6.3-py2.py3-none-any.whl", hash = "sha256:7ea0f082edd95a03b7b72edac65ec7f8f68d703017d7e37573aee4fc603f2a48", size = 240105, upload-time = "2025-08-26T12:13:23.889Z" }, +] + [[package]] name = "bcrypt" version = "4.3.0" @@ -218,11 +230,11 @@ wheels = [ [[package]] name = "certifi" -version = "2025.6.15" +version = "2025.8.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/73/f7/f14b46d4bcd21092d7d3ccef689615220d8a08fb25e564b65d20738e672e/certifi-2025.6.15.tar.gz", hash = "sha256:d747aa5a8b9bbbb1bb8c22bb13e22bd1f18e9796defa16bab421f7f7a317323b", size = 158753, upload-time = "2025-06-15T02:45:51.329Z" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/67/960ebe6bf230a96cda2e0abcf73af550ec4f090005363542f0765df162e0/certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407", size = 162386, upload-time = "2025-08-03T03:07:47.08Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/84/ae/320161bd181fc06471eed047ecce67b693fd7515b16d495d8932db763426/certifi-2025.6.15-py3-none-any.whl", hash = "sha256:2e0c7ce7cb5d8f8634ca55d2ba7e6ec2689a2fd6537d8dec1296a477a4910057", size = 157650, upload-time = "2025-06-15T02:45:49.977Z" }, + { url = "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5", size = 161216, upload-time = "2025-08-03T03:07:45.777Z" }, ] [[package]] @@ -248,25 +260,43 @@ wheels = [ ] [[package]] -name = "charset-normalizer" -version = "3.4.2" +name = "cfgv" +version = "3.4.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz", hash = "sha256:5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63", size = 126367, upload-time = "2025-05-02T08:34:42.01Z" } +sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ea/12/a93df3366ed32db1d907d7593a94f1fe6293903e3e92967bebd6950ed12c/charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:926ca93accd5d36ccdabd803392ddc3e03e6d4cd1cf17deff3b989ab8e9dbcf0", size = 199622, upload-time = "2025-05-02T08:32:56.363Z" }, - { url = "https://files.pythonhosted.org/packages/04/93/bf204e6f344c39d9937d3c13c8cd5bbfc266472e51fc8c07cb7f64fcd2de/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eba9904b0f38a143592d9fc0e19e2df0fa2e41c3c3745554761c5f6447eedabf", size = 143435, upload-time = "2025-05-02T08:32:58.551Z" }, - { url = "https://files.pythonhosted.org/packages/22/2a/ea8a2095b0bafa6c5b5a55ffdc2f924455233ee7b91c69b7edfcc9e02284/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3fddb7e2c84ac87ac3a947cb4e66d143ca5863ef48e4a5ecb83bd48619e4634e", size = 153653, upload-time = "2025-05-02T08:33:00.342Z" }, - { url = "https://files.pythonhosted.org/packages/b6/57/1b090ff183d13cef485dfbe272e2fe57622a76694061353c59da52c9a659/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98f862da73774290f251b9df8d11161b6cf25b599a66baf087c1ffe340e9bfd1", size = 146231, upload-time = "2025-05-02T08:33:02.081Z" }, - { url = "https://files.pythonhosted.org/packages/e2/28/ffc026b26f441fc67bd21ab7f03b313ab3fe46714a14b516f931abe1a2d8/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c9379d65defcab82d07b2a9dfbfc2e95bc8fe0ebb1b176a3190230a3ef0e07c", size = 148243, upload-time = "2025-05-02T08:33:04.063Z" }, - { url = "https://files.pythonhosted.org/packages/c0/0f/9abe9bd191629c33e69e47c6ef45ef99773320e9ad8e9cb08b8ab4a8d4cb/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e635b87f01ebc977342e2697d05b56632f5f879a4f15955dfe8cef2448b51691", size = 150442, upload-time = "2025-05-02T08:33:06.418Z" }, - { url = "https://files.pythonhosted.org/packages/67/7c/a123bbcedca91d5916c056407f89a7f5e8fdfce12ba825d7d6b9954a1a3c/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1c95a1e2902a8b722868587c0e1184ad5c55631de5afc0eb96bc4b0d738092c0", size = 145147, upload-time = "2025-05-02T08:33:08.183Z" }, - { url = "https://files.pythonhosted.org/packages/ec/fe/1ac556fa4899d967b83e9893788e86b6af4d83e4726511eaaad035e36595/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ef8de666d6179b009dce7bcb2ad4c4a779f113f12caf8dc77f0162c29d20490b", size = 153057, upload-time = "2025-05-02T08:33:09.986Z" }, - { url = "https://files.pythonhosted.org/packages/2b/ff/acfc0b0a70b19e3e54febdd5301a98b72fa07635e56f24f60502e954c461/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:32fc0341d72e0f73f80acb0a2c94216bd704f4f0bce10aedea38f30502b271ff", size = 156454, upload-time = "2025-05-02T08:33:11.814Z" }, - { url = "https://files.pythonhosted.org/packages/92/08/95b458ce9c740d0645feb0e96cea1f5ec946ea9c580a94adfe0b617f3573/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:289200a18fa698949d2b39c671c2cc7a24d44096784e76614899a7ccf2574b7b", size = 154174, upload-time = "2025-05-02T08:33:13.707Z" }, - { url = "https://files.pythonhosted.org/packages/78/be/8392efc43487ac051eee6c36d5fbd63032d78f7728cb37aebcc98191f1ff/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a476b06fbcf359ad25d34a057b7219281286ae2477cc5ff5e3f70a246971148", size = 149166, upload-time = "2025-05-02T08:33:15.458Z" }, - { url = "https://files.pythonhosted.org/packages/44/96/392abd49b094d30b91d9fbda6a69519e95802250b777841cf3bda8fe136c/charset_normalizer-3.4.2-cp313-cp313-win32.whl", hash = "sha256:aaeeb6a479c7667fbe1099af9617c83aaca22182d6cf8c53966491a0f1b7ffb7", size = 98064, upload-time = "2025-05-02T08:33:17.06Z" }, - { url = "https://files.pythonhosted.org/packages/e9/b0/0200da600134e001d91851ddc797809e2fe0ea72de90e09bec5a2fbdaccb/charset_normalizer-3.4.2-cp313-cp313-win_amd64.whl", hash = "sha256:aa6af9e7d59f9c12b33ae4e9450619cf2488e2bbe9b44030905877f0b2324980", size = 105641, upload-time = "2025-05-02T08:33:18.753Z" }, - { url = "https://files.pythonhosted.org/packages/20/94/c5790835a017658cbfabd07f3bfb549140c3ac458cfc196323996b10095a/charset_normalizer-3.4.2-py3-none-any.whl", hash = "sha256:7f56930ab0abd1c45cd15be65cc741c28b1c9a34876ce8c17a2fa107810c0af0", size = 52626, upload-time = "2025-05-02T08:34:40.053Z" }, + { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/2d/5fd176ceb9b2fc619e63405525573493ca23441330fcdaee6bef9460e924/charset_normalizer-3.4.3.tar.gz", hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14", size = 122371, upload-time = "2025-08-09T07:57:28.46Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe", size = 205326, upload-time = "2025-08-09T07:56:24.721Z" }, + { url = "https://files.pythonhosted.org/packages/71/11/98a04c3c97dd34e49c7d247083af03645ca3730809a5509443f3c37f7c99/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41d1fc408ff5fdfb910200ec0e74abc40387bccb3252f3f27c0676731df2b2c8", size = 146008, upload-time = "2025-08-09T07:56:26.004Z" }, + { url = "https://files.pythonhosted.org/packages/60/f5/4659a4cb3c4ec146bec80c32d8bb16033752574c20b1252ee842a95d1a1e/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1bb60174149316da1c35fa5233681f7c0f9f514509b8e399ab70fea5f17e45c9", size = 159196, upload-time = "2025-08-09T07:56:27.25Z" }, + { url = "https://files.pythonhosted.org/packages/86/9e/f552f7a00611f168b9a5865a1414179b2c6de8235a4fa40189f6f79a1753/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:30d006f98569de3459c2fc1f2acde170b7b2bd265dc1943e87e1a4efe1b67c31", size = 156819, upload-time = "2025-08-09T07:56:28.515Z" }, + { url = "https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f", size = 151350, upload-time = "2025-08-09T07:56:29.716Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a9/3865b02c56f300a6f94fc631ef54f0a8a29da74fb45a773dfd3dcd380af7/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aab0f181c486f973bc7262a97f5aca3ee7e1437011ef0c2ec04b5a11d16c927", size = 148644, upload-time = "2025-08-09T07:56:30.984Z" }, + { url = "https://files.pythonhosted.org/packages/77/d9/cbcf1a2a5c7d7856f11e7ac2d782aec12bdfea60d104e60e0aa1c97849dc/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fdabf8315679312cfa71302f9bd509ded4f2f263fb5b765cf1433b39106c3cc9", size = 160468, upload-time = "2025-08-09T07:56:32.252Z" }, + { url = "https://files.pythonhosted.org/packages/f6/42/6f45efee8697b89fda4d50580f292b8f7f9306cb2971d4b53f8914e4d890/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:bd28b817ea8c70215401f657edef3a8aa83c29d447fb0b622c35403780ba11d5", size = 158187, upload-time = "2025-08-09T07:56:33.481Z" }, + { url = "https://files.pythonhosted.org/packages/70/99/f1c3bdcfaa9c45b3ce96f70b14f070411366fa19549c1d4832c935d8e2c3/charset_normalizer-3.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:18343b2d246dc6761a249ba1fb13f9ee9a2bcd95decc767319506056ea4ad4dc", size = 152699, upload-time = "2025-08-09T07:56:34.739Z" }, + { url = "https://files.pythonhosted.org/packages/a3/ad/b0081f2f99a4b194bcbb1934ef3b12aa4d9702ced80a37026b7607c72e58/charset_normalizer-3.4.3-cp313-cp313-win32.whl", hash = "sha256:6fb70de56f1859a3f71261cbe41005f56a7842cc348d3aeb26237560bfa5e0ce", size = 99580, upload-time = "2025-08-09T07:56:35.981Z" }, + { url = "https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef", size = 107366, upload-time = "2025-08-09T07:56:37.339Z" }, + { url = "https://files.pythonhosted.org/packages/8e/91/b5a06ad970ddc7a0e513112d40113e834638f4ca1120eb727a249fb2715e/charset_normalizer-3.4.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3cd35b7e8aedeb9e34c41385fda4f73ba609e561faedfae0a9e75e44ac558a15", size = 204342, upload-time = "2025-08-09T07:56:38.687Z" }, + { url = "https://files.pythonhosted.org/packages/ce/ec/1edc30a377f0a02689342f214455c3f6c2fbedd896a1d2f856c002fc3062/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b89bc04de1d83006373429975f8ef9e7932534b8cc9ca582e4db7d20d91816db", size = 145995, upload-time = "2025-08-09T07:56:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/17/e5/5e67ab85e6d22b04641acb5399c8684f4d37caf7558a53859f0283a650e9/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2001a39612b241dae17b4687898843f254f8748b796a2e16f1051a17078d991d", size = 158640, upload-time = "2025-08-09T07:56:41.311Z" }, + { url = "https://files.pythonhosted.org/packages/f1/e5/38421987f6c697ee3722981289d554957c4be652f963d71c5e46a262e135/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8dcfc373f888e4fb39a7bc57e93e3b845e7f462dacc008d9749568b1c4ece096", size = 156636, upload-time = "2025-08-09T07:56:43.195Z" }, + { url = "https://files.pythonhosted.org/packages/a0/e4/5a075de8daa3ec0745a9a3b54467e0c2967daaaf2cec04c845f73493e9a1/charset_normalizer-3.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18b97b8404387b96cdbd30ad660f6407799126d26a39ca65729162fd810a99aa", size = 150939, upload-time = "2025-08-09T07:56:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/02/f7/3611b32318b30974131db62b4043f335861d4d9b49adc6d57c1149cc49d4/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ccf600859c183d70eb47e05a44cd80a4ce77394d1ac0f79dbd2dd90a69a3a049", size = 148580, upload-time = "2025-08-09T07:56:46.684Z" }, + { url = "https://files.pythonhosted.org/packages/7e/61/19b36f4bd67f2793ab6a99b979b4e4f3d8fc754cbdffb805335df4337126/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:53cd68b185d98dde4ad8990e56a58dea83a4162161b1ea9272e5c9182ce415e0", size = 159870, upload-time = "2025-08-09T07:56:47.941Z" }, + { url = "https://files.pythonhosted.org/packages/06/57/84722eefdd338c04cf3030ada66889298eaedf3e7a30a624201e0cbe424a/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:30a96e1e1f865f78b030d65241c1ee850cdf422d869e9028e2fc1d5e4db73b92", size = 157797, upload-time = "2025-08-09T07:56:49.756Z" }, + { url = "https://files.pythonhosted.org/packages/72/2a/aff5dd112b2f14bcc3462c312dce5445806bfc8ab3a7328555da95330e4b/charset_normalizer-3.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d716a916938e03231e86e43782ca7878fb602a125a91e7acb8b5112e2e96ac16", size = 152224, upload-time = "2025-08-09T07:56:51.369Z" }, + { url = "https://files.pythonhosted.org/packages/b7/8c/9839225320046ed279c6e839d51f028342eb77c91c89b8ef2549f951f3ec/charset_normalizer-3.4.3-cp314-cp314-win32.whl", hash = "sha256:c6dbd0ccdda3a2ba7c2ecd9d77b37f3b5831687d8dc1b6ca5f56a4880cc7b7ce", size = 100086, upload-time = "2025-08-09T07:56:52.722Z" }, + { url = "https://files.pythonhosted.org/packages/ee/7a/36fbcf646e41f710ce0a563c1c9a343c6edf9be80786edeb15b6f62e17db/charset_normalizer-3.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:73dc19b562516fc9bcf6e5d6e596df0b4eb98d87e4f79f3ae71840e6ed21361c", size = 107400, upload-time = "2025-08-09T07:56:55.172Z" }, + { url = "https://files.pythonhosted.org/packages/8a/1f/f041989e93b001bc4e44bb1669ccdcf54d3f00e628229a85b08d330615c5/charset_normalizer-3.4.3-py3-none-any.whl", hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a", size = 53175, upload-time = "2025-08-09T07:57:26.864Z" }, ] [[package]] @@ -283,7 +313,7 @@ wheels = [ [[package]] name = "cloud-sql-python-connector" -version = "1.18.2" +version = "1.18.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiofiles" }, @@ -293,9 +323,9 @@ dependencies = [ { name = "google-auth" }, { name = "requests" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/64/99/4380be2f05bf2eef47120294b1809046d35d97e5f6bbbb1beb8af67e4cef/cloud_sql_python_connector-1.18.2.tar.gz", hash = "sha256:c3c51e6cba6e25834f8858588020bf8972dd3e44a01cfe320959bd97c40f6268", size = 42636, upload-time = "2025-06-10T14:32:28.693Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/b8/575145a7b58b57dfb347f4397a23efaf14001ff2d37d4ca71f1bcfc52881/cloud_sql_python_connector-1.18.4.tar.gz", hash = "sha256:dd2b015245d77771b5e7566e2817e279e9daca90e0cf30dac032155e813afe76", size = 42652, upload-time = "2025-08-12T21:27:30.386Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b9/cc/630a951a7bd06b9cea2134b7d96c29da66ff3ba38ecaf414d3614032a552/cloud_sql_python_connector-1.18.2-py3-none-any.whl", hash = "sha256:9b96f4d6484eb35317e09e9ac3678a67343fb8b13f00152378b1445bf6a46fdd", size = 49255, upload-time = "2025-05-20T20:44:44.96Z" }, + { url = "https://files.pythonhosted.org/packages/00/45/ad1e5b214037e5ec095e8b3b2082d61653f10b862b9542a99f993d31f8b4/cloud_sql_python_connector-1.18.4-py3-none-any.whl", hash = "sha256:0a77a16ab2d93fc78d8593175cb69fedfbc1c67aa99f9b3ba70b5026343db092", size = 49276, upload-time = "2025-08-12T21:27:29.054Z" }, ] [[package]] @@ -307,39 +337,101 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, ] +[[package]] +name = "coverage" +version = "7.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/76/17780846fc7aade1e66712e1e27dd28faa0a5d987a1f433610974959eaa8/coverage-7.10.2.tar.gz", hash = "sha256:5d6e6d84e6dd31a8ded64759626627247d676a23c1b892e1326f7c55c8d61055", size = 820754, upload-time = "2025-08-04T00:35:17.511Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/04/9b7a741557f93c0ed791b854d27aa8d9fe0b0ce7bb7c52ca1b0f2619cb74/coverage-7.10.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:aca7b5645afa688de6d4f8e89d30c577f62956fefb1bad021490d63173874186", size = 215337, upload-time = "2025-08-04T00:33:50.61Z" }, + { url = "https://files.pythonhosted.org/packages/02/a4/8d1088cd644750c94bc305d3cf56082b4cdf7fb854a25abb23359e74892f/coverage-7.10.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:96e5921342574a14303dfdb73de0019e1ac041c863743c8fe1aa6c2b4a257226", size = 215596, upload-time = "2025-08-04T00:33:52.33Z" }, + { url = "https://files.pythonhosted.org/packages/01/2f/643a8d73343f70e162d8177a3972b76e306b96239026bc0c12cfde4f7c7a/coverage-7.10.2-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:11333094c1bff621aa811b67ed794865cbcaa99984dedea4bd9cf780ad64ecba", size = 246145, upload-time = "2025-08-04T00:33:53.641Z" }, + { url = "https://files.pythonhosted.org/packages/1f/4a/722098d1848db4072cda71b69ede1e55730d9063bf868375264d0d302bc9/coverage-7.10.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6eb586fa7d2aee8d65d5ae1dd71414020b2f447435c57ee8de8abea0a77d5074", size = 248492, upload-time = "2025-08-04T00:33:55.366Z" }, + { url = "https://files.pythonhosted.org/packages/3f/b0/8a6d7f326f6e3e6ed398cde27f9055e860a1e858317001835c521673fb60/coverage-7.10.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2d358f259d8019d4ef25d8c5b78aca4c7af25e28bd4231312911c22a0e824a57", size = 249927, upload-time = "2025-08-04T00:33:57.042Z" }, + { url = "https://files.pythonhosted.org/packages/bb/21/1aaadd3197b54d1e61794475379ecd0f68d8fc5c2ebd352964dc6f698a3d/coverage-7.10.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5250bda76e30382e0a2dcd68d961afcab92c3a7613606e6269855c6979a1b0bb", size = 248138, upload-time = "2025-08-04T00:33:58.329Z" }, + { url = "https://files.pythonhosted.org/packages/48/65/be75bafb2bdd22fd8bf9bf63cd5873b91bb26ec0d68f02d4b8b09c02decb/coverage-7.10.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:a91e027d66eff214d88d9afbe528e21c9ef1ecdf4956c46e366c50f3094696d0", size = 246111, upload-time = "2025-08-04T00:33:59.899Z" }, + { url = "https://files.pythonhosted.org/packages/5e/30/a4f0c5e249c3cc60e6c6f30d8368e372f2d380eda40e0434c192ac27ccf5/coverage-7.10.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:228946da741558904e2c03ce870ba5efd9cd6e48cbc004d9a27abee08100a15a", size = 247493, upload-time = "2025-08-04T00:34:01.619Z" }, + { url = "https://files.pythonhosted.org/packages/85/99/f09b9493e44a75cf99ca834394c12f8cb70da6c1711ee296534f97b52729/coverage-7.10.2-cp313-cp313-win32.whl", hash = "sha256:95e23987b52d02e7c413bf2d6dc6288bd5721beb518052109a13bfdc62c8033b", size = 217756, upload-time = "2025-08-04T00:34:03.277Z" }, + { url = "https://files.pythonhosted.org/packages/2d/bb/cbcb09103be330c7d26ff0ab05c4a8861dd2e254656fdbd3eb7600af4336/coverage-7.10.2-cp313-cp313-win_amd64.whl", hash = "sha256:f35481d42c6d146d48ec92d4e239c23f97b53a3f1fbd2302e7c64336f28641fe", size = 218526, upload-time = "2025-08-04T00:34:04.635Z" }, + { url = "https://files.pythonhosted.org/packages/37/8f/8bfb4e0bca52c00ab680767c0dd8cfd928a2a72d69897d9b2d5d8b5f63f5/coverage-7.10.2-cp313-cp313-win_arm64.whl", hash = "sha256:65b451949cb789c346f9f9002441fc934d8ccedcc9ec09daabc2139ad13853f7", size = 217176, upload-time = "2025-08-04T00:34:05.973Z" }, + { url = "https://files.pythonhosted.org/packages/1e/25/d458ba0bf16a8204a88d74dbb7ec5520f29937ffcbbc12371f931c11efd2/coverage-7.10.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:e8415918856a3e7d57a4e0ad94651b761317de459eb74d34cc1bb51aad80f07e", size = 216058, upload-time = "2025-08-04T00:34:07.368Z" }, + { url = "https://files.pythonhosted.org/packages/0b/1c/af4dfd2d7244dc7610fed6d59d57a23ea165681cd764445dc58d71ed01a6/coverage-7.10.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f287a25a8ca53901c613498e4a40885b19361a2fe8fbfdbb7f8ef2cad2a23f03", size = 216273, upload-time = "2025-08-04T00:34:09.073Z" }, + { url = "https://files.pythonhosted.org/packages/8e/67/ec5095d4035c6e16368226fa9cb15f77f891194c7e3725aeefd08e7a3e5a/coverage-7.10.2-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:75cc1a3f8c88c69bf16a871dab1fe5a7303fdb1e9f285f204b60f1ee539b8fc0", size = 257513, upload-time = "2025-08-04T00:34:10.403Z" }, + { url = "https://files.pythonhosted.org/packages/1c/47/be5550b57a3a8ba797de4236b0fd31031f88397b2afc84ab3c2d4cf265f6/coverage-7.10.2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:ca07fa78cc9d26bc8c4740de1abd3489cf9c47cc06d9a8ab3d552ff5101af4c0", size = 259377, upload-time = "2025-08-04T00:34:12.138Z" }, + { url = "https://files.pythonhosted.org/packages/37/50/b12a4da1382e672305c2d17cd3029dc16b8a0470de2191dbf26b91431378/coverage-7.10.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c2e117e64c26300032755d4520cd769f2623cde1a1d1c3515b05a3b8add0ade1", size = 261516, upload-time = "2025-08-04T00:34:13.608Z" }, + { url = "https://files.pythonhosted.org/packages/db/41/4d3296dbd33dd8da178171540ca3391af7c0184c0870fd4d4574ac290290/coverage-7.10.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:daaf98009977f577b71f8800208f4d40d4dcf5c2db53d4d822787cdc198d76e1", size = 259110, upload-time = "2025-08-04T00:34:15.089Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f1/b409959ecbc0cec0e61e65683b22bacaa4a3b11512f834e16dd8ffbc37db/coverage-7.10.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:ea8d8fe546c528535c761ba424410bbeb36ba8a0f24be653e94b70c93fd8a8ca", size = 257248, upload-time = "2025-08-04T00:34:16.501Z" }, + { url = "https://files.pythonhosted.org/packages/48/ab/7076dc1c240412e9267d36ec93e9e299d7659f6a5c1e958f87e998b0fb6d/coverage-7.10.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:fe024d40ac31eb8d5aae70215b41dafa264676caa4404ae155f77d2fa95c37bb", size = 258063, upload-time = "2025-08-04T00:34:18.338Z" }, + { url = "https://files.pythonhosted.org/packages/1e/77/f6b51a0288f8f5f7dcc7c89abdd22cf514f3bc5151284f5cd628917f8e10/coverage-7.10.2-cp313-cp313t-win32.whl", hash = "sha256:8f34b09f68bdadec122ffad312154eda965ade433559cc1eadd96cca3de5c824", size = 218433, upload-time = "2025-08-04T00:34:19.71Z" }, + { url = "https://files.pythonhosted.org/packages/7b/6d/547a86493e25270ce8481543e77f3a0aa3aa872c1374246b7b76273d66eb/coverage-7.10.2-cp313-cp313t-win_amd64.whl", hash = "sha256:71d40b3ac0f26fa9ffa6ee16219a714fed5c6ec197cdcd2018904ab5e75bcfa3", size = 219523, upload-time = "2025-08-04T00:34:21.171Z" }, + { url = "https://files.pythonhosted.org/packages/ff/d5/3c711e38eaf9ab587edc9bed232c0298aed84e751a9f54aaa556ceaf7da6/coverage-7.10.2-cp313-cp313t-win_arm64.whl", hash = "sha256:abb57fdd38bf6f7dcc66b38dafb7af7c5fdc31ac6029ce373a6f7f5331d6f60f", size = 217739, upload-time = "2025-08-04T00:34:22.514Z" }, + { url = "https://files.pythonhosted.org/packages/71/53/83bafa669bb9d06d4c8c6a055d8d05677216f9480c4698fb183ba7ec5e47/coverage-7.10.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:a3e853cc04987c85ec410905667eed4bf08b1d84d80dfab2684bb250ac8da4f6", size = 215328, upload-time = "2025-08-04T00:34:23.991Z" }, + { url = "https://files.pythonhosted.org/packages/1d/6c/30827a9c5a48a813e865fbaf91e2db25cce990bd223a022650ef2293fe11/coverage-7.10.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0100b19f230df72c90fdb36db59d3f39232391e8d89616a7de30f677da4f532b", size = 215608, upload-time = "2025-08-04T00:34:25.437Z" }, + { url = "https://files.pythonhosted.org/packages/bb/a0/c92d85948056ddc397b72a3d79d36d9579c53cb25393ed3c40db7d33b193/coverage-7.10.2-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:9c1cd71483ea78331bdfadb8dcec4f4edfb73c7002c1206d8e0af6797853f5be", size = 246111, upload-time = "2025-08-04T00:34:26.857Z" }, + { url = "https://files.pythonhosted.org/packages/c2/cf/d695cf86b2559aadd072c91720a7844be4fb82cb4a3b642a2c6ce075692d/coverage-7.10.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9f75dbf4899e29a37d74f48342f29279391668ef625fdac6d2f67363518056a1", size = 248419, upload-time = "2025-08-04T00:34:28.726Z" }, + { url = "https://files.pythonhosted.org/packages/ce/0a/03206aec4a05986e039418c038470d874045f6e00426b0c3879adc1f9251/coverage-7.10.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a7df481e7508de1c38b9b8043da48d94931aefa3e32b47dd20277e4978ed5b95", size = 250038, upload-time = "2025-08-04T00:34:30.061Z" }, + { url = "https://files.pythonhosted.org/packages/ab/9b/b3bd6bd52118c12bc4cf319f5baba65009c9beea84e665b6b9f03fa3f180/coverage-7.10.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:835f39e618099325e7612b3406f57af30ab0a0af350490eff6421e2e5f608e46", size = 248066, upload-time = "2025-08-04T00:34:31.53Z" }, + { url = "https://files.pythonhosted.org/packages/80/cc/bfa92e261d3e055c851a073e87ba6a3bff12a1f7134233e48a8f7d855875/coverage-7.10.2-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:12e52b5aa00aa720097d6947d2eb9e404e7c1101ad775f9661ba165ed0a28303", size = 245909, upload-time = "2025-08-04T00:34:32.943Z" }, + { url = "https://files.pythonhosted.org/packages/12/80/c8df15db4847710c72084164f615ae900af1ec380dce7f74a5678ccdf5e1/coverage-7.10.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:718044729bf1fe3e9eb9f31b52e44ddae07e434ec050c8c628bf5adc56fe4bdd", size = 247329, upload-time = "2025-08-04T00:34:34.388Z" }, + { url = "https://files.pythonhosted.org/packages/04/6f/cb66e1f7124d5dd9ced69f889f02931419cb448125e44a89a13f4e036124/coverage-7.10.2-cp314-cp314-win32.whl", hash = "sha256:f256173b48cc68486299d510a3e729a96e62c889703807482dbf56946befb5c8", size = 218007, upload-time = "2025-08-04T00:34:35.846Z" }, + { url = "https://files.pythonhosted.org/packages/8c/e1/3d4be307278ce32c1b9d95cc02ee60d54ddab784036101d053ec9e4fe7f5/coverage-7.10.2-cp314-cp314-win_amd64.whl", hash = "sha256:2e980e4179f33d9b65ac4acb86c9c0dde904098853f27f289766657ed16e07b3", size = 218802, upload-time = "2025-08-04T00:34:37.35Z" }, + { url = "https://files.pythonhosted.org/packages/ec/66/1e43bbeb66c55a5a5efec70f1c153cf90cfc7f1662ab4ebe2d844de9122c/coverage-7.10.2-cp314-cp314-win_arm64.whl", hash = "sha256:14fb5b6641ab5b3c4161572579f0f2ea8834f9d3af2f7dd8fbaecd58ef9175cc", size = 217397, upload-time = "2025-08-04T00:34:39.15Z" }, + { url = "https://files.pythonhosted.org/packages/81/01/ae29c129217f6110dc694a217475b8aecbb1b075d8073401f868c825fa99/coverage-7.10.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:e96649ac34a3d0e6491e82a2af71098e43be2874b619547c3282fc11d3840a4b", size = 216068, upload-time = "2025-08-04T00:34:40.648Z" }, + { url = "https://files.pythonhosted.org/packages/a2/50/6e9221d4139f357258f36dfa1d8cac4ec56d9d5acf5fdcc909bb016954d7/coverage-7.10.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1a2e934e9da26341d342d30bfe91422bbfdb3f1f069ec87f19b2909d10d8dcc4", size = 216285, upload-time = "2025-08-04T00:34:42.441Z" }, + { url = "https://files.pythonhosted.org/packages/eb/ec/89d1d0c0ece0d296b4588e0ef4df185200456d42a47f1141335f482c2fc5/coverage-7.10.2-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:651015dcd5fd9b5a51ca79ece60d353cacc5beaf304db750407b29c89f72fe2b", size = 257603, upload-time = "2025-08-04T00:34:43.899Z" }, + { url = "https://files.pythonhosted.org/packages/82/06/c830af66734671c778fc49d35b58339e8f0687fbd2ae285c3f96c94da092/coverage-7.10.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:81bf6a32212f9f66da03d63ecb9cd9bd48e662050a937db7199dbf47d19831de", size = 259568, upload-time = "2025-08-04T00:34:45.519Z" }, + { url = "https://files.pythonhosted.org/packages/60/57/f280dd6f1c556ecc744fbf39e835c33d3ae987d040d64d61c6f821e87829/coverage-7.10.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d800705f6951f75a905ea6feb03fff8f3ea3468b81e7563373ddc29aa3e5d1ca", size = 261691, upload-time = "2025-08-04T00:34:47.019Z" }, + { url = "https://files.pythonhosted.org/packages/54/2b/c63a0acbd19d99ec32326164c23df3a4e18984fb86e902afdd66ff7b3d83/coverage-7.10.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:248b5394718e10d067354448dc406d651709c6765669679311170da18e0e9af8", size = 259166, upload-time = "2025-08-04T00:34:48.792Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c5/cd2997dcfcbf0683634da9df52d3967bc1f1741c1475dd0e4722012ba9ef/coverage-7.10.2-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:5c61675a922b569137cf943770d7ad3edd0202d992ce53ac328c5ff68213ccf4", size = 257241, upload-time = "2025-08-04T00:34:51.038Z" }, + { url = "https://files.pythonhosted.org/packages/16/26/c9e30f82fdad8d47aee90af4978b18c88fa74369ae0f0ba0dbf08cee3a80/coverage-7.10.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:52d708b5fd65589461381fa442d9905f5903d76c086c6a4108e8e9efdca7a7ed", size = 258139, upload-time = "2025-08-04T00:34:52.533Z" }, + { url = "https://files.pythonhosted.org/packages/c9/99/bdb7bd00bebcd3dedfb895fa9af8e46b91422993e4a37ac634a5f1113790/coverage-7.10.2-cp314-cp314t-win32.whl", hash = "sha256:916369b3b914186b2c5e5ad2f7264b02cff5df96cdd7cdad65dccd39aa5fd9f0", size = 218809, upload-time = "2025-08-04T00:34:54.075Z" }, + { url = "https://files.pythonhosted.org/packages/eb/5e/56a7852e38a04d1520dda4dfbfbf74a3d6dec932c20526968f7444763567/coverage-7.10.2-cp314-cp314t-win_amd64.whl", hash = "sha256:5b9d538e8e04916a5df63052d698b30c74eb0174f2ca9cd942c981f274a18eaf", size = 219926, upload-time = "2025-08-04T00:34:55.643Z" }, + { url = "https://files.pythonhosted.org/packages/e0/12/7fbe6b9c52bb9d627e9556f9f2edfdbe88b315e084cdecc9afead0c3b36a/coverage-7.10.2-cp314-cp314t-win_arm64.whl", hash = "sha256:04c74f9ef1f925456a9fd23a7eef1103126186d0500ef9a0acb0bd2514bdc7cc", size = 217925, upload-time = "2025-08-04T00:34:57.564Z" }, + { url = "https://files.pythonhosted.org/packages/18/d8/9b768ac73a8ac2d10c080af23937212434a958c8d2a1c84e89b450237942/coverage-7.10.2-py3-none-any.whl", hash = "sha256:95db3750dd2e6e93d99fa2498f3a1580581e49c494bddccc6f85c5c21604921f", size = 206973, upload-time = "2025-08-04T00:35:15.918Z" }, +] + [[package]] name = "cryptography" -version = "45.0.5" +version = "45.0.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/95/1e/49527ac611af559665f71cbb8f92b332b5ec9c6fbc4e88b0f8e92f5e85df/cryptography-45.0.5.tar.gz", hash = "sha256:72e76caa004ab63accdf26023fccd1d087f6d90ec6048ff33ad0445abf7f605a", size = 744903, upload-time = "2025-07-02T13:06:25.941Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f0/fb/09e28bc0c46d2c547085e60897fea96310574c70fb21cd58a730a45f3403/cryptography-45.0.5-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:101ee65078f6dd3e5a028d4f19c07ffa4dd22cce6a20eaa160f8b5219911e7d8", size = 7043092, upload-time = "2025-07-02T13:05:01.514Z" }, - { url = "https://files.pythonhosted.org/packages/b1/05/2194432935e29b91fb649f6149c1a4f9e6d3d9fc880919f4ad1bcc22641e/cryptography-45.0.5-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3a264aae5f7fbb089dbc01e0242d3b67dffe3e6292e1f5182122bdf58e65215d", size = 4205926, upload-time = "2025-07-02T13:05:04.741Z" }, - { url = "https://files.pythonhosted.org/packages/07/8b/9ef5da82350175e32de245646b1884fc01124f53eb31164c77f95a08d682/cryptography-45.0.5-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e74d30ec9c7cb2f404af331d5b4099a9b322a8a6b25c4632755c8757345baac5", size = 4429235, upload-time = "2025-07-02T13:05:07.084Z" }, - { url = "https://files.pythonhosted.org/packages/7c/e1/c809f398adde1994ee53438912192d92a1d0fc0f2d7582659d9ef4c28b0c/cryptography-45.0.5-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3af26738f2db354aafe492fb3869e955b12b2ef2e16908c8b9cb928128d42c57", size = 4209785, upload-time = "2025-07-02T13:05:09.321Z" }, - { url = "https://files.pythonhosted.org/packages/d0/8b/07eb6bd5acff58406c5e806eff34a124936f41a4fb52909ffa4d00815f8c/cryptography-45.0.5-cp311-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e6c00130ed423201c5bc5544c23359141660b07999ad82e34e7bb8f882bb78e0", size = 3893050, upload-time = "2025-07-02T13:05:11.069Z" }, - { url = "https://files.pythonhosted.org/packages/ec/ef/3333295ed58d900a13c92806b67e62f27876845a9a908c939f040887cca9/cryptography-45.0.5-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:dd420e577921c8c2d31289536c386aaa30140b473835e97f83bc71ea9d2baf2d", size = 4457379, upload-time = "2025-07-02T13:05:13.32Z" }, - { url = "https://files.pythonhosted.org/packages/d9/9d/44080674dee514dbb82b21d6fa5d1055368f208304e2ab1828d85c9de8f4/cryptography-45.0.5-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:d05a38884db2ba215218745f0781775806bde4f32e07b135348355fe8e4991d9", size = 4209355, upload-time = "2025-07-02T13:05:15.017Z" }, - { url = "https://files.pythonhosted.org/packages/c9/d8/0749f7d39f53f8258e5c18a93131919ac465ee1f9dccaf1b3f420235e0b5/cryptography-45.0.5-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:ad0caded895a00261a5b4aa9af828baede54638754b51955a0ac75576b831b27", size = 4456087, upload-time = "2025-07-02T13:05:16.945Z" }, - { url = "https://files.pythonhosted.org/packages/09/d7/92acac187387bf08902b0bf0699816f08553927bdd6ba3654da0010289b4/cryptography-45.0.5-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9024beb59aca9d31d36fcdc1604dd9bbeed0a55bface9f1908df19178e2f116e", size = 4332873, upload-time = "2025-07-02T13:05:18.743Z" }, - { url = "https://files.pythonhosted.org/packages/03/c2/840e0710da5106a7c3d4153c7215b2736151bba60bf4491bdb421df5056d/cryptography-45.0.5-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:91098f02ca81579c85f66df8a588c78f331ca19089763d733e34ad359f474174", size = 4564651, upload-time = "2025-07-02T13:05:21.382Z" }, - { url = "https://files.pythonhosted.org/packages/2e/92/cc723dd6d71e9747a887b94eb3827825c6c24b9e6ce2bb33b847d31d5eaa/cryptography-45.0.5-cp311-abi3-win32.whl", hash = "sha256:926c3ea71a6043921050eaa639137e13dbe7b4ab25800932a8498364fc1abec9", size = 2929050, upload-time = "2025-07-02T13:05:23.39Z" }, - { url = "https://files.pythonhosted.org/packages/1f/10/197da38a5911a48dd5389c043de4aec4b3c94cb836299b01253940788d78/cryptography-45.0.5-cp311-abi3-win_amd64.whl", hash = "sha256:b85980d1e345fe769cfc57c57db2b59cff5464ee0c045d52c0df087e926fbe63", size = 3403224, upload-time = "2025-07-02T13:05:25.202Z" }, - { url = "https://files.pythonhosted.org/packages/fe/2b/160ce8c2765e7a481ce57d55eba1546148583e7b6f85514472b1d151711d/cryptography-45.0.5-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:f3562c2f23c612f2e4a6964a61d942f891d29ee320edb62ff48ffb99f3de9ae8", size = 7017143, upload-time = "2025-07-02T13:05:27.229Z" }, - { url = "https://files.pythonhosted.org/packages/c2/e7/2187be2f871c0221a81f55ee3105d3cf3e273c0a0853651d7011eada0d7e/cryptography-45.0.5-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3fcfbefc4a7f332dece7272a88e410f611e79458fab97b5efe14e54fe476f4fd", size = 4197780, upload-time = "2025-07-02T13:05:29.299Z" }, - { url = "https://files.pythonhosted.org/packages/b9/cf/84210c447c06104e6be9122661159ad4ce7a8190011669afceeaea150524/cryptography-45.0.5-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:460f8c39ba66af7db0545a8c6f2eabcbc5a5528fc1cf6c3fa9a1e44cec33385e", size = 4420091, upload-time = "2025-07-02T13:05:31.221Z" }, - { url = "https://files.pythonhosted.org/packages/3e/6a/cb8b5c8bb82fafffa23aeff8d3a39822593cee6e2f16c5ca5c2ecca344f7/cryptography-45.0.5-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:9b4cf6318915dccfe218e69bbec417fdd7c7185aa7aab139a2c0beb7468c89f0", size = 4198711, upload-time = "2025-07-02T13:05:33.062Z" }, - { url = "https://files.pythonhosted.org/packages/04/f7/36d2d69df69c94cbb2473871926daf0f01ad8e00fe3986ac3c1e8c4ca4b3/cryptography-45.0.5-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2089cc8f70a6e454601525e5bf2779e665d7865af002a5dec8d14e561002e135", size = 3883299, upload-time = "2025-07-02T13:05:34.94Z" }, - { url = "https://files.pythonhosted.org/packages/82/c7/f0ea40f016de72f81288e9fe8d1f6748036cb5ba6118774317a3ffc6022d/cryptography-45.0.5-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:0027d566d65a38497bc37e0dd7c2f8ceda73597d2ac9ba93810204f56f52ebc7", size = 4450558, upload-time = "2025-07-02T13:05:37.288Z" }, - { url = "https://files.pythonhosted.org/packages/06/ae/94b504dc1a3cdf642d710407c62e86296f7da9e66f27ab12a1ee6fdf005b/cryptography-45.0.5-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:be97d3a19c16a9be00edf79dca949c8fa7eff621763666a145f9f9535a5d7f42", size = 4198020, upload-time = "2025-07-02T13:05:39.102Z" }, - { url = "https://files.pythonhosted.org/packages/05/2b/aaf0adb845d5dabb43480f18f7ca72e94f92c280aa983ddbd0bcd6ecd037/cryptography-45.0.5-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:7760c1c2e1a7084153a0f68fab76e754083b126a47d0117c9ed15e69e2103492", size = 4449759, upload-time = "2025-07-02T13:05:41.398Z" }, - { url = "https://files.pythonhosted.org/packages/91/e4/f17e02066de63e0100a3a01b56f8f1016973a1d67551beaf585157a86b3f/cryptography-45.0.5-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:6ff8728d8d890b3dda5765276d1bc6fb099252915a2cd3aff960c4c195745dd0", size = 4319991, upload-time = "2025-07-02T13:05:43.64Z" }, - { url = "https://files.pythonhosted.org/packages/f2/2e/e2dbd629481b499b14516eed933f3276eb3239f7cee2dcfa4ee6b44d4711/cryptography-45.0.5-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:7259038202a47fdecee7e62e0fd0b0738b6daa335354396c6ddebdbe1206af2a", size = 4554189, upload-time = "2025-07-02T13:05:46.045Z" }, - { url = "https://files.pythonhosted.org/packages/f8/ea/a78a0c38f4c8736287b71c2ea3799d173d5ce778c7d6e3c163a95a05ad2a/cryptography-45.0.5-cp37-abi3-win32.whl", hash = "sha256:1e1da5accc0c750056c556a93c3e9cb828970206c68867712ca5805e46dc806f", size = 2911769, upload-time = "2025-07-02T13:05:48.329Z" }, - { url = "https://files.pythonhosted.org/packages/79/b3/28ac139109d9005ad3f6b6f8976ffede6706a6478e21c889ce36c840918e/cryptography-45.0.5-cp37-abi3-win_amd64.whl", hash = "sha256:90cb0a7bb35959f37e23303b7eed0a32280510030daba3f7fdfbb65defde6a97", size = 3390016, upload-time = "2025-07-02T13:05:50.811Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/d6/0d/d13399c94234ee8f3df384819dc67e0c5ce215fb751d567a55a1f4b028c7/cryptography-45.0.6.tar.gz", hash = "sha256:5c966c732cf6e4a276ce83b6e4c729edda2df6929083a952cc7da973c539c719", size = 744949, upload-time = "2025-08-05T23:59:27.93Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/29/2793d178d0eda1ca4a09a7c4e09a5185e75738cc6d526433e8663b460ea6/cryptography-45.0.6-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:048e7ad9e08cf4c0ab07ff7f36cc3115924e22e2266e034450a890d9e312dd74", size = 7042702, upload-time = "2025-08-05T23:58:23.464Z" }, + { url = "https://files.pythonhosted.org/packages/b3/b6/cabd07410f222f32c8d55486c464f432808abaa1f12af9afcbe8f2f19030/cryptography-45.0.6-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:44647c5d796f5fc042bbc6d61307d04bf29bccb74d188f18051b635f20a9c75f", size = 4206483, upload-time = "2025-08-05T23:58:27.132Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9e/f9c7d36a38b1cfeb1cc74849aabe9bf817990f7603ff6eb485e0d70e0b27/cryptography-45.0.6-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e40b80ecf35ec265c452eea0ba94c9587ca763e739b8e559c128d23bff7ebbbf", size = 4429679, upload-time = "2025-08-05T23:58:29.152Z" }, + { url = "https://files.pythonhosted.org/packages/9c/2a/4434c17eb32ef30b254b9e8b9830cee4e516f08b47fdd291c5b1255b8101/cryptography-45.0.6-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:00e8724bdad672d75e6f069b27970883179bd472cd24a63f6e620ca7e41cc0c5", size = 4210553, upload-time = "2025-08-05T23:58:30.596Z" }, + { url = "https://files.pythonhosted.org/packages/ef/1d/09a5df8e0c4b7970f5d1f3aff1b640df6d4be28a64cae970d56c6cf1c772/cryptography-45.0.6-cp311-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:7a3085d1b319d35296176af31c90338eeb2ddac8104661df79f80e1d9787b8b2", size = 3894499, upload-time = "2025-08-05T23:58:32.03Z" }, + { url = "https://files.pythonhosted.org/packages/79/62/120842ab20d9150a9d3a6bdc07fe2870384e82f5266d41c53b08a3a96b34/cryptography-45.0.6-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:1b7fa6a1c1188c7ee32e47590d16a5a0646270921f8020efc9a511648e1b2e08", size = 4458484, upload-time = "2025-08-05T23:58:33.526Z" }, + { url = "https://files.pythonhosted.org/packages/fd/80/1bc3634d45ddfed0871bfba52cf8f1ad724761662a0c792b97a951fb1b30/cryptography-45.0.6-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:275ba5cc0d9e320cd70f8e7b96d9e59903c815ca579ab96c1e37278d231fc402", size = 4210281, upload-time = "2025-08-05T23:58:35.445Z" }, + { url = "https://files.pythonhosted.org/packages/7d/fe/ffb12c2d83d0ee625f124880a1f023b5878f79da92e64c37962bbbe35f3f/cryptography-45.0.6-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:f4028f29a9f38a2025abedb2e409973709c660d44319c61762202206ed577c42", size = 4456890, upload-time = "2025-08-05T23:58:36.923Z" }, + { url = "https://files.pythonhosted.org/packages/8c/8e/b3f3fe0dc82c77a0deb5f493b23311e09193f2268b77196ec0f7a36e3f3e/cryptography-45.0.6-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:ee411a1b977f40bd075392c80c10b58025ee5c6b47a822a33c1198598a7a5f05", size = 4333247, upload-time = "2025-08-05T23:58:38.781Z" }, + { url = "https://files.pythonhosted.org/packages/b3/a6/c3ef2ab9e334da27a1d7b56af4a2417d77e7806b2e0f90d6267ce120d2e4/cryptography-45.0.6-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:e2a21a8eda2d86bb604934b6b37691585bd095c1f788530c1fcefc53a82b3453", size = 4565045, upload-time = "2025-08-05T23:58:40.415Z" }, + { url = "https://files.pythonhosted.org/packages/31/c3/77722446b13fa71dddd820a5faab4ce6db49e7e0bf8312ef4192a3f78e2f/cryptography-45.0.6-cp311-abi3-win32.whl", hash = "sha256:d063341378d7ee9c91f9d23b431a3502fc8bfacd54ef0a27baa72a0843b29159", size = 2928923, upload-time = "2025-08-05T23:58:41.919Z" }, + { url = "https://files.pythonhosted.org/packages/38/63/a025c3225188a811b82932a4dcc8457a26c3729d81578ccecbcce2cb784e/cryptography-45.0.6-cp311-abi3-win_amd64.whl", hash = "sha256:833dc32dfc1e39b7376a87b9a6a4288a10aae234631268486558920029b086ec", size = 3403805, upload-time = "2025-08-05T23:58:43.792Z" }, + { url = "https://files.pythonhosted.org/packages/5b/af/bcfbea93a30809f126d51c074ee0fac5bd9d57d068edf56c2a73abedbea4/cryptography-45.0.6-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:3436128a60a5e5490603ab2adbabc8763613f638513ffa7d311c900a8349a2a0", size = 7020111, upload-time = "2025-08-05T23:58:45.316Z" }, + { url = "https://files.pythonhosted.org/packages/98/c6/ea5173689e014f1a8470899cd5beeb358e22bb3cf5a876060f9d1ca78af4/cryptography-45.0.6-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0d9ef57b6768d9fa58e92f4947cea96ade1233c0e236db22ba44748ffedca394", size = 4198169, upload-time = "2025-08-05T23:58:47.121Z" }, + { url = "https://files.pythonhosted.org/packages/ba/73/b12995edc0c7e2311ffb57ebd3b351f6b268fed37d93bfc6f9856e01c473/cryptography-45.0.6-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea3c42f2016a5bbf71825537c2ad753f2870191134933196bee408aac397b3d9", size = 4421273, upload-time = "2025-08-05T23:58:48.557Z" }, + { url = "https://files.pythonhosted.org/packages/f7/6e/286894f6f71926bc0da67408c853dd9ba953f662dcb70993a59fd499f111/cryptography-45.0.6-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:20ae4906a13716139d6d762ceb3e0e7e110f7955f3bc3876e3a07f5daadec5f3", size = 4199211, upload-time = "2025-08-05T23:58:50.139Z" }, + { url = "https://files.pythonhosted.org/packages/de/34/a7f55e39b9623c5cb571d77a6a90387fe557908ffc44f6872f26ca8ae270/cryptography-45.0.6-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2dac5ec199038b8e131365e2324c03d20e97fe214af051d20c49db129844e8b3", size = 3883732, upload-time = "2025-08-05T23:58:52.253Z" }, + { url = "https://files.pythonhosted.org/packages/f9/b9/c6d32edbcba0cd9f5df90f29ed46a65c4631c4fbe11187feb9169c6ff506/cryptography-45.0.6-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:18f878a34b90d688982e43f4b700408b478102dd58b3e39de21b5ebf6509c301", size = 4450655, upload-time = "2025-08-05T23:58:53.848Z" }, + { url = "https://files.pythonhosted.org/packages/77/2d/09b097adfdee0227cfd4c699b3375a842080f065bab9014248933497c3f9/cryptography-45.0.6-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:5bd6020c80c5b2b2242d6c48487d7b85700f5e0038e67b29d706f98440d66eb5", size = 4198956, upload-time = "2025-08-05T23:58:55.209Z" }, + { url = "https://files.pythonhosted.org/packages/55/66/061ec6689207d54effdff535bbdf85cc380d32dd5377173085812565cf38/cryptography-45.0.6-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:eccddbd986e43014263eda489abbddfbc287af5cddfd690477993dbb31e31016", size = 4449859, upload-time = "2025-08-05T23:58:56.639Z" }, + { url = "https://files.pythonhosted.org/packages/41/ff/e7d5a2ad2d035e5a2af116e1a3adb4d8fcd0be92a18032917a089c6e5028/cryptography-45.0.6-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:550ae02148206beb722cfe4ef0933f9352bab26b087af00e48fdfb9ade35c5b3", size = 4320254, upload-time = "2025-08-05T23:58:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/82/27/092d311af22095d288f4db89fcaebadfb2f28944f3d790a4cf51fe5ddaeb/cryptography-45.0.6-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5b64e668fc3528e77efa51ca70fadcd6610e8ab231e3e06ae2bab3b31c2b8ed9", size = 4554815, upload-time = "2025-08-05T23:59:00.283Z" }, + { url = "https://files.pythonhosted.org/packages/7e/01/aa2f4940262d588a8fdf4edabe4cda45854d00ebc6eaac12568b3a491a16/cryptography-45.0.6-cp37-abi3-win32.whl", hash = "sha256:780c40fb751c7d2b0c6786ceee6b6f871e86e8718a8ff4bc35073ac353c7cd02", size = 2912147, upload-time = "2025-08-05T23:59:01.716Z" }, + { url = "https://files.pythonhosted.org/packages/0a/bc/16e0276078c2de3ceef6b5a34b965f4436215efac45313df90d55f0ba2d2/cryptography-45.0.6-cp37-abi3-win_amd64.whl", hash = "sha256:20d15aed3ee522faac1a39fbfdfee25d17b1284bafd808e1640a74846d7c4d1b", size = 3390459, upload-time = "2025-08-05T23:59:03.358Z" }, +] + +[[package]] +name = "distlib" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/8e/709914eb2b5749865801041647dc7f4e6d00b549cfe88b65ca192995f07c/distlib-0.4.0.tar.gz", hash = "sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d", size = 614605, upload-time = "2025-07-17T16:52:00.465Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl", hash = "sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16", size = 469047, upload-time = "2025-07-17T16:51:58.613Z" }, ] [[package]] @@ -352,57 +444,76 @@ wheels = [ ] [[package]] -name = "email-validator" -version = "2.2.0" +name = "dotenv" +version = "0.9.9" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "dnspython" }, - { name = "idna" }, + { name = "python-dotenv" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/48/ce/13508a1ec3f8bb981ae4ca79ea40384becc868bfae97fd1c942bb3a001b1/email_validator-2.2.0.tar.gz", hash = "sha256:cb690f344c617a714f22e66ae771445a1ceb46821152df8e165c5f9a364582b7", size = 48967, upload-time = "2024-06-20T11:30:30.034Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d7/ee/bf0adb559ad3c786f12bcbc9296b3f5675f529199bef03e2df281fa1fadb/email_validator-2.2.0-py3-none-any.whl", hash = "sha256:561977c2d73ce3611850a06fa56b414621e0c8faa9d66f2611407d87465da631", size = 33521, upload-time = "2024-06-20T11:30:28.248Z" }, + { url = "https://files.pythonhosted.org/packages/b2/b7/545d2c10c1fc15e48653c91efde329a790f2eecfbbf2bd16003b5db2bab0/dotenv-0.9.9-py2.py3-none-any.whl", hash = "sha256:29cf74a087b31dafdb5a446b6d7e11cbce8ed2741540e2339c69fbef92c94ce9", size = 1892, upload-time = "2025-02-19T22:15:01.647Z" }, ] [[package]] -name = "fastadmin" -version = "0.2.22" +name = "ecdsa" +version = "0.19.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "asgiref" }, - { name = "pyjwt" }, + { name = "six" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/50/2a/e5443dbf1eba8d9799862b87edcb5a8e3c8d837923aa6617222ce8f5747b/fastadmin-0.2.22.tar.gz", hash = "sha256:51703a9e0a892ce2baeceb43cafef7f5ecbbc70ee17dd3f93f25277f81bdcbe0", size = 1660674, upload-time = "2025-04-22T11:14:43.391Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/1f/924e3caae75f471eae4b26bd13b698f6af2c44279f67af317439c2f4c46a/ecdsa-0.19.1.tar.gz", hash = "sha256:478cba7b62555866fcb3bb3fe985e06decbdb68ef55713c4e5ab98c57d508e61", size = 201793, upload-time = "2025-03-13T11:52:43.25Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/80/26/cb8393ce0c179c29b15a7ce214b22d798a547f505f4c4b0b0a11a580f2c6/fastadmin-0.2.22-py3-none-any.whl", hash = "sha256:4e8e1341a5097d9da7f2a8c5b925de8bf16253822e7b857a5d430d3b026251b8", size = 1679535, upload-time = "2025-04-22T11:14:41.578Z" }, + { url = "https://files.pythonhosted.org/packages/cb/a3/460c57f094a4a165c84a1341c373b0a4f5ec6ac244b998d5021aade89b77/ecdsa-0.19.1-py2.py3-none-any.whl", hash = "sha256:30638e27cf77b7e15c4c4cc1973720149e1033827cfd00661ca5c8cc0cdb24c3", size = 150607, upload-time = "2025-03-13T11:52:41.757Z" }, +] + +[[package]] +name = "email-validator" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dnspython" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/ce/13508a1ec3f8bb981ae4ca79ea40384becc868bfae97fd1c942bb3a001b1/email_validator-2.2.0.tar.gz", hash = "sha256:cb690f344c617a714f22e66ae771445a1ceb46821152df8e165c5f9a364582b7", size = 48967, upload-time = "2024-06-20T11:30:30.034Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/ee/bf0adb559ad3c786f12bcbc9296b3f5675f529199bef03e2df281fa1fadb/email_validator-2.2.0-py3-none-any.whl", hash = "sha256:561977c2d73ce3611850a06fa56b414621e0c8faa9d66f2611407d87465da631", size = 33521, upload-time = "2024-06-20T11:30:28.248Z" }, ] [[package]] name = "fastapi" -version = "0.115.14" +version = "0.116.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pydantic" }, { name = "starlette" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ca/53/8c38a874844a8b0fa10dd8adf3836ac154082cf88d3f22b544e9ceea0a15/fastapi-0.115.14.tar.gz", hash = "sha256:b1de15cdc1c499a4da47914db35d0e4ef8f1ce62b624e94e0e5824421df99739", size = 296263, upload-time = "2025-06-26T15:29:08.21Z" } +sdist = { url = "https://files.pythonhosted.org/packages/78/d7/6c8b3bfe33eeffa208183ec037fee0cce9f7f024089ab1c5d12ef04bd27c/fastapi-0.116.1.tar.gz", hash = "sha256:ed52cbf946abfd70c5a0dccb24673f0670deeb517a88b3544d03c2a6bf283143", size = 296485, upload-time = "2025-07-11T16:22:32.057Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/53/50/b1222562c6d270fea83e9c9075b8e8600b8479150a18e4516a6138b980d1/fastapi-0.115.14-py3-none-any.whl", hash = "sha256:6c0c8bf9420bd58f565e585036d971872472b4f7d3f6c73b698e10cffdefb3ca", size = 95514, upload-time = "2025-06-26T15:29:06.49Z" }, + { url = "https://files.pythonhosted.org/packages/e5/47/d63c60f59a59467fda0f93f46335c9d18526d7071f025cb5b89d5353ea42/fastapi-0.116.1-py3-none-any.whl", hash = "sha256:c46ac7c312df840f0c9e220f7964bada936781bc4e2e6eb71f1c4d7553786565", size = 95631, upload-time = "2025-07-11T16:22:30.485Z" }, ] [[package]] name = "fastapi-pagination" -version = "0.13.3" +version = "0.14.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fastapi" }, { name = "pydantic" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/10/4c/e98a1665b6ac2e9e4ed98450e4e0ea48108f3bc52de517d9a70cc22761c2/fastapi_pagination-0.13.3.tar.gz", hash = "sha256:40c2383aff13a3a0e4a2742dfbf004572e88458cd8f338d85f90a27e07abab4a", size = 550898, upload-time = "2025-06-25T21:22:15.287Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/94/7f894a3137b2c5618f5b677c468a9a54c3e82a40019e168c7e1ac02112a4/fastapi_pagination-0.14.0.tar.gz", hash = "sha256:e576800270f2714c781241b66c11f5da24f6671670edc122f5be7e4c2bd7f353", size = 557583, upload-time = "2025-08-20T17:56:19.456Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/74/f3/b00424f9fe4d1f0a7657b7ab931bdfea5a9a9103f6684a0d64687d6f9f94/fastapi_pagination-0.14.0-py3-none-any.whl", hash = "sha256:72ed471c79c3aa07940b287b9cf022503ec2e69e1f2ca5a7a5fcd8152cc43392", size = 52517, upload-time = "2025-08-20T17:56:18.404Z" }, +] + +[[package]] +name = "filelock" +version = "3.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075, upload-time = "2025-03-14T07:11:40.47Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bf/73/ef1ab892c2d189d8b6bd72325e9e710df6737c3b7976e12aa5749a56ea01/fastapi_pagination-0.13.3-py3-none-any.whl", hash = "sha256:e1b1cc7fa5c773c61087845ef8a73ed6b516071c057418698b9242461573f44e", size = 50986, upload-time = "2025-06-25T21:22:13.591Z" }, + { url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215, upload-time = "2025-03-14T07:11:39.145Z" }, ] [[package]] @@ -450,15 +561,15 @@ wheels = [ [[package]] name = "geoalchemy2" -version = "0.17.1" +version = "0.18.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "packaging" }, { name = "sqlalchemy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/46/52/60214c086a57a7e3ea82241bab94e09827f2b7f7c2084fe6fc280c099b23/geoalchemy2-0.17.1.tar.gz", hash = "sha256:ff5bbe0db5a4ff979f321c8aa1a7556f444ea30cda5146189b1a177ae5bec69d", size = 231566, upload-time = "2025-02-17T09:41:04.72Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/15/88398e863a9e044e06957d0f214cc5f7ef3c1dee4c540d828bfa6c7d4535/geoalchemy2-0.18.0.tar.gz", hash = "sha256:9a04690cc33fbc580d15c7c028d9b1b1ea08271489730096c7092e1d486c2b7a", size = 239129, upload-time = "2025-07-21T10:51:47.52Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f5/82/e83e0f74cba8bbff9c12b2dea4693adb0cf89204012da48433ebd8e8c4d8/GeoAlchemy2-0.17.1-py3-none-any.whl", hash = "sha256:29f41b67d3a52df47821b695d31dec8600747c6ef4de62ee69811bde481dd2ae", size = 77791, upload-time = "2025-02-17T09:41:02.7Z" }, + { url = "https://files.pythonhosted.org/packages/b5/f5/1e36e49d4380d70d58c777953fd3c465b4fb242309b6bd6b88e45ef11bd7/geoalchemy2-0.18.0-py3-none-any.whl", hash = "sha256:ff0fe7339ba535c50845a2c7e8817a20c164364128991d795733b3c5904b1ee1", size = 81248, upload-time = "2025-07-21T10:51:46.291Z" }, ] [[package]] @@ -506,7 +617,7 @@ wheels = [ [[package]] name = "google-cloud-storage" -version = "3.1.1" +version = "3.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "google-api-core" }, @@ -516,9 +627,9 @@ dependencies = [ { name = "google-resumable-media" }, { name = "requests" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/27/84/6afc2ffdf31f6247a6bab6ba070e073fb05e0fda56adf59ce52ac591a033/google_cloud_storage-3.1.1.tar.gz", hash = "sha256:f9c8f965cafd1d38509f8e2b070339e0e9e5bf050774653bf36213d4ea6104c0", size = 7668109, upload-time = "2025-06-18T11:06:52.332Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1e/91/10b9ddd5baacde375dcd7e6716b5024b3f65a22366f74c26926b6aa84e4e/google_cloud_storage-3.3.0.tar.gz", hash = "sha256:ae9d891d53e17d9681d7c4ef1ffeea0cde9bdc53d5b64fa6ff6bf30d1911cf61", size = 7781974, upload-time = "2025-08-12T09:10:36.245Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/89/4f/b922e919f6e1ea5905f1427fadf1a3f56a85e79e2b0037fec182f6b437dd/google_cloud_storage-3.1.1-py3-none-any.whl", hash = "sha256:ba7e6ae2be5a7a08742f001e23ec6a0c17d78c620f63bf8e0e7c2cbdddb407de", size = 175464, upload-time = "2025-06-18T11:06:51.043Z" }, + { url = "https://files.pythonhosted.org/packages/41/9d/2814a2c47429dc2e197e176de25a946d4538422b081ade8638e585e4006f/google_cloud_storage-3.3.0-py3-none-any.whl", hash = "sha256:0338ecd6621b3ecacb108f1cf7513ff0d1bca7f1ff4d58e0220b59f3a725ff23", size = 274270, upload-time = "2025-08-12T09:10:34.793Z" }, ] [[package]] @@ -562,26 +673,26 @@ wheels = [ [[package]] name = "greenlet" -version = "3.2.3" +version = "3.2.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c9/92/bb85bd6e80148a4d2e0c59f7c0c2891029f8fd510183afc7d8d2feeed9b6/greenlet-3.2.3.tar.gz", hash = "sha256:8b0dd8ae4c0d6f5e54ee55ba935eeb3d735a9b58a8a1e5b5cbab64e01a39f365", size = 185752, upload-time = "2025-06-05T16:16:09.955Z" } +sdist = { url = "https://files.pythonhosted.org/packages/03/b8/704d753a5a45507a7aab61f18db9509302ed3d0a27ac7e0359ec2905b1a6/greenlet-3.2.4.tar.gz", hash = "sha256:0dca0d95ff849f9a364385f36ab49f50065d76964944638be9691e1832e9f86d", size = 188260, upload-time = "2025-08-07T13:24:33.51Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b1/cf/f5c0b23309070ae93de75c90d29300751a5aacefc0a3ed1b1d8edb28f08b/greenlet-3.2.3-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:500b8689aa9dd1ab26872a34084503aeddefcb438e2e7317b89b11eaea1901ad", size = 270732, upload-time = "2025-06-05T16:10:08.26Z" }, - { url = "https://files.pythonhosted.org/packages/48/ae/91a957ba60482d3fecf9be49bc3948f341d706b52ddb9d83a70d42abd498/greenlet-3.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a07d3472c2a93117af3b0136f246b2833fdc0b542d4a9799ae5f41c28323faef", size = 639033, upload-time = "2025-06-05T16:38:53.983Z" }, - { url = "https://files.pythonhosted.org/packages/6f/df/20ffa66dd5a7a7beffa6451bdb7400d66251374ab40b99981478c69a67a8/greenlet-3.2.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:8704b3768d2f51150626962f4b9a9e4a17d2e37c8a8d9867bbd9fa4eb938d3b3", size = 652999, upload-time = "2025-06-05T16:41:37.89Z" }, - { url = "https://files.pythonhosted.org/packages/51/b4/ebb2c8cb41e521f1d72bf0465f2f9a2fd803f674a88db228887e6847077e/greenlet-3.2.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:5035d77a27b7c62db6cf41cf786cfe2242644a7a337a0e155c80960598baab95", size = 647368, upload-time = "2025-06-05T16:48:21.467Z" }, - { url = "https://files.pythonhosted.org/packages/8e/6a/1e1b5aa10dced4ae876a322155705257748108b7fd2e4fae3f2a091fe81a/greenlet-3.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2d8aa5423cd4a396792f6d4580f88bdc6efcb9205891c9d40d20f6e670992efb", size = 650037, upload-time = "2025-06-05T16:13:06.402Z" }, - { url = "https://files.pythonhosted.org/packages/26/f2/ad51331a157c7015c675702e2d5230c243695c788f8f75feba1af32b3617/greenlet-3.2.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2c724620a101f8170065d7dded3f962a2aea7a7dae133a009cada42847e04a7b", size = 608402, upload-time = "2025-06-05T16:12:51.91Z" }, - { url = "https://files.pythonhosted.org/packages/26/bc/862bd2083e6b3aff23300900a956f4ea9a4059de337f5c8734346b9b34fc/greenlet-3.2.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:873abe55f134c48e1f2a6f53f7d1419192a3d1a4e873bace00499a4e45ea6af0", size = 1119577, upload-time = "2025-06-05T16:36:49.787Z" }, - { url = "https://files.pythonhosted.org/packages/86/94/1fc0cc068cfde885170e01de40a619b00eaa8f2916bf3541744730ffb4c3/greenlet-3.2.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:024571bbce5f2c1cfff08bf3fbaa43bbc7444f580ae13b0099e95d0e6e67ed36", size = 1147121, upload-time = "2025-06-05T16:12:42.527Z" }, - { url = "https://files.pythonhosted.org/packages/27/1a/199f9587e8cb08a0658f9c30f3799244307614148ffe8b1e3aa22f324dea/greenlet-3.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:5195fb1e75e592dd04ce79881c8a22becdfa3e6f500e7feb059b1e6fdd54d3e3", size = 297603, upload-time = "2025-06-05T16:20:12.651Z" }, - { url = "https://files.pythonhosted.org/packages/d8/ca/accd7aa5280eb92b70ed9e8f7fd79dc50a2c21d8c73b9a0856f5b564e222/greenlet-3.2.3-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:3d04332dddb10b4a211b68111dabaee2e1a073663d117dc10247b5b1642bac86", size = 271479, upload-time = "2025-06-05T16:10:47.525Z" }, - { url = "https://files.pythonhosted.org/packages/55/71/01ed9895d9eb49223280ecc98a557585edfa56b3d0e965b9fa9f7f06b6d9/greenlet-3.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8186162dffde068a465deab08fc72c767196895c39db26ab1c17c0b77a6d8b97", size = 683952, upload-time = "2025-06-05T16:38:55.125Z" }, - { url = "https://files.pythonhosted.org/packages/ea/61/638c4bdf460c3c678a0a1ef4c200f347dff80719597e53b5edb2fb27ab54/greenlet-3.2.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f4bfbaa6096b1b7a200024784217defedf46a07c2eee1a498e94a1b5f8ec5728", size = 696917, upload-time = "2025-06-05T16:41:38.959Z" }, - { url = "https://files.pythonhosted.org/packages/22/cc/0bd1a7eb759d1f3e3cc2d1bc0f0b487ad3cc9f34d74da4b80f226fde4ec3/greenlet-3.2.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:ed6cfa9200484d234d8394c70f5492f144b20d4533f69262d530a1a082f6ee9a", size = 692443, upload-time = "2025-06-05T16:48:23.113Z" }, - { url = "https://files.pythonhosted.org/packages/67/10/b2a4b63d3f08362662e89c103f7fe28894a51ae0bc890fabf37d1d780e52/greenlet-3.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:02b0df6f63cd15012bed5401b47829cfd2e97052dc89da3cfaf2c779124eb892", size = 692995, upload-time = "2025-06-05T16:13:07.972Z" }, - { url = "https://files.pythonhosted.org/packages/5a/c6/ad82f148a4e3ce9564056453a71529732baf5448ad53fc323e37efe34f66/greenlet-3.2.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:86c2d68e87107c1792e2e8d5399acec2487a4e993ab76c792408e59394d52141", size = 655320, upload-time = "2025-06-05T16:12:53.453Z" }, - { url = "https://files.pythonhosted.org/packages/5c/4f/aab73ecaa6b3086a4c89863d94cf26fa84cbff63f52ce9bc4342b3087a06/greenlet-3.2.3-cp314-cp314-win_amd64.whl", hash = "sha256:8c47aae8fbbfcf82cc13327ae802ba13c9c36753b67e760023fd116bc124a62a", size = 301236, upload-time = "2025-06-05T16:15:20.111Z" }, + { url = "https://files.pythonhosted.org/packages/49/e8/58c7f85958bda41dafea50497cbd59738c5c43dbbea5ee83d651234398f4/greenlet-3.2.4-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:1a921e542453fe531144e91e1feedf12e07351b1cf6c9e8a3325ea600a715a31", size = 272814, upload-time = "2025-08-07T13:15:50.011Z" }, + { url = "https://files.pythonhosted.org/packages/62/dd/b9f59862e9e257a16e4e610480cfffd29e3fae018a68c2332090b53aac3d/greenlet-3.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd3c8e693bff0fff6ba55f140bf390fa92c994083f838fece0f63be121334945", size = 641073, upload-time = "2025-08-07T13:42:57.23Z" }, + { url = "https://files.pythonhosted.org/packages/f7/0b/bc13f787394920b23073ca3b6c4a7a21396301ed75a655bcb47196b50e6e/greenlet-3.2.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:710638eb93b1fa52823aa91bf75326f9ecdfd5e0466f00789246a5280f4ba0fc", size = 655191, upload-time = "2025-08-07T13:45:29.752Z" }, + { url = "https://files.pythonhosted.org/packages/f2/d6/6adde57d1345a8d0f14d31e4ab9c23cfe8e2cd39c3baf7674b4b0338d266/greenlet-3.2.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:c5111ccdc9c88f423426df3fd1811bfc40ed66264d35aa373420a34377efc98a", size = 649516, upload-time = "2025-08-07T13:53:16.314Z" }, + { url = "https://files.pythonhosted.org/packages/7f/3b/3a3328a788d4a473889a2d403199932be55b1b0060f4ddd96ee7cdfcad10/greenlet-3.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d76383238584e9711e20ebe14db6c88ddcedc1829a9ad31a584389463b5aa504", size = 652169, upload-time = "2025-08-07T13:18:32.861Z" }, + { url = "https://files.pythonhosted.org/packages/ee/43/3cecdc0349359e1a527cbf2e3e28e5f8f06d3343aaf82ca13437a9aa290f/greenlet-3.2.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:23768528f2911bcd7e475210822ffb5254ed10d71f4028387e5a99b4c6699671", size = 610497, upload-time = "2025-08-07T13:18:31.636Z" }, + { url = "https://files.pythonhosted.org/packages/b8/19/06b6cf5d604e2c382a6f31cafafd6f33d5dea706f4db7bdab184bad2b21d/greenlet-3.2.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:00fadb3fedccc447f517ee0d3fd8fe49eae949e1cd0f6a611818f4f6fb7dc83b", size = 1121662, upload-time = "2025-08-07T13:42:41.117Z" }, + { url = "https://files.pythonhosted.org/packages/a2/15/0d5e4e1a66fab130d98168fe984c509249c833c1a3c16806b90f253ce7b9/greenlet-3.2.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:d25c5091190f2dc0eaa3f950252122edbbadbb682aa7b1ef2f8af0f8c0afefae", size = 1149210, upload-time = "2025-08-07T13:18:24.072Z" }, + { url = "https://files.pythonhosted.org/packages/0b/55/2321e43595e6801e105fcfdee02b34c0f996eb71e6ddffca6b10b7e1d771/greenlet-3.2.4-cp313-cp313-win_amd64.whl", hash = "sha256:554b03b6e73aaabec3745364d6239e9e012d64c68ccd0b8430c64ccc14939a8b", size = 299685, upload-time = "2025-08-07T13:24:38.824Z" }, + { url = "https://files.pythonhosted.org/packages/22/5c/85273fd7cc388285632b0498dbbab97596e04b154933dfe0f3e68156c68c/greenlet-3.2.4-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:49a30d5fda2507ae77be16479bdb62a660fa51b1eb4928b524975b3bde77b3c0", size = 273586, upload-time = "2025-08-07T13:16:08.004Z" }, + { url = "https://files.pythonhosted.org/packages/d1/75/10aeeaa3da9332c2e761e4c50d4c3556c21113ee3f0afa2cf5769946f7a3/greenlet-3.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:299fd615cd8fc86267b47597123e3f43ad79c9d8a22bebdce535e53550763e2f", size = 686346, upload-time = "2025-08-07T13:42:59.944Z" }, + { url = "https://files.pythonhosted.org/packages/c0/aa/687d6b12ffb505a4447567d1f3abea23bd20e73a5bed63871178e0831b7a/greenlet-3.2.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:c17b6b34111ea72fc5a4e4beec9711d2226285f0386ea83477cbb97c30a3f3a5", size = 699218, upload-time = "2025-08-07T13:45:30.969Z" }, + { url = "https://files.pythonhosted.org/packages/dc/8b/29aae55436521f1d6f8ff4e12fb676f3400de7fcf27fccd1d4d17fd8fecd/greenlet-3.2.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b4a1870c51720687af7fa3e7cda6d08d801dae660f75a76f3845b642b4da6ee1", size = 694659, upload-time = "2025-08-07T13:53:17.759Z" }, + { url = "https://files.pythonhosted.org/packages/92/2e/ea25914b1ebfde93b6fc4ff46d6864564fba59024e928bdc7de475affc25/greenlet-3.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:061dc4cf2c34852b052a8620d40f36324554bc192be474b9e9770e8c042fd735", size = 695355, upload-time = "2025-08-07T13:18:34.517Z" }, + { url = "https://files.pythonhosted.org/packages/72/60/fc56c62046ec17f6b0d3060564562c64c862948c9d4bc8aa807cf5bd74f4/greenlet-3.2.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:44358b9bf66c8576a9f57a590d5f5d6e72fa4228b763d0e43fee6d3b06d3a337", size = 657512, upload-time = "2025-08-07T13:18:33.969Z" }, + { url = "https://files.pythonhosted.org/packages/e3/a5/6ddab2b4c112be95601c13428db1d8b6608a8b6039816f2ba09c346c08fc/greenlet-3.2.4-cp314-cp314-win_amd64.whl", hash = "sha256:e37ab26028f12dbb0ff65f29a8d3d44a765c61e729647bf2ddfbbed621726f01", size = 303425, upload-time = "2025-08-07T13:32:27.59Z" }, ] [[package]] @@ -633,6 +744,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, ] +[[package]] +name = "identify" +version = "2.6.12" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/88/d193a27416618628a5eea64e3223acd800b40749a96ffb322a9b55a49ed1/identify-2.6.12.tar.gz", hash = "sha256:d8de45749f1efb108badef65ee8386f0f7bb19a7f26185f74de6367bffbaf0e6", size = 99254, upload-time = "2025-05-23T20:37:53.3Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/cd/18f8da995b658420625f7ef13f037be53ae04ec5ad33f9b718240dcfd48c/identify-2.6.12-py2.py3-none-any.whl", hash = "sha256:ad9672d5a72e0d2ff7c5c8809b62dfa60458626352fb0eb7b55e69bdc45334a2", size = 99145, upload-time = "2025-05-23T20:37:51.495Z" }, +] + [[package]] name = "idna" version = "3.10" @@ -651,6 +771,27 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" }, ] +[[package]] +name = "itsdangerous" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410, upload-time = "2024-04-16T21:28:15.614Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234, upload-time = "2024-04-16T21:28:14.499Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + [[package]] name = "mako" version = "1.3.10" @@ -741,98 +882,270 @@ name = "nmsamplelocations" version = "0.1.0" source = { virtual = "." } dependencies = [ + { name = "aiofiles" }, + { name = "aiohappyeyeballs" }, + { name = "aiohttp" }, + { name = "aiosignal" }, { name = "aiosqlite" }, { name = "alembic" }, + { name = "annotated-types" }, + { name = "anyio" }, + { name = "asgiref" }, + { name = "asn1crypto" }, { name = "asyncpg" }, + { name = "attrs" }, + { name = "authlib" }, { name = "bcrypt" }, + { name = "cachetools" }, + { name = "certifi" }, + { name = "cffi" }, + { name = "charset-normalizer" }, + { name = "click" }, { name = "cloud-sql-python-connector" }, + { name = "cryptography" }, + { name = "dnspython" }, + { name = "dotenv" }, { name = "email-validator" }, - { name = "fastadmin" }, { name = "fastapi" }, { name = "fastapi-pagination" }, + { name = "frozenlist" }, { name = "geoalchemy2" }, + { name = "google-api-core" }, + { name = "google-auth" }, + { name = "google-cloud-core" }, { name = "google-cloud-storage" }, + { name = "google-crc32c" }, + { name = "google-resumable-media" }, + { name = "googleapis-common-protos" }, { name = "greenlet" }, { name = "gunicorn" }, + { name = "h11" }, + { name = "httpcore" }, { name = "httpx" }, + { name = "idna" }, + { name = "iniconfig" }, + { name = "itsdangerous" }, + { name = "jinja2" }, + { name = "mako" }, + { name = "markupsafe" }, + { name = "multidict" }, + { name = "numpy" }, + { name = "packaging" }, { name = "pandas" }, + { name = "pandas-stubs" }, { name = "pg8000" }, { name = "phonenumbers" }, { name = "pillow" }, - { name = "psycopg2" }, + { name = "pluggy" }, + { name = "pre-commit" }, + { name = "propcache" }, + { name = "proto-plus" }, + { name = "protobuf" }, + { name = "psycopg2-binary" }, + { name = "pyasn1" }, + { name = "pyasn1-modules" }, + { name = "pycparser" }, + { name = "pydantic" }, + { name = "pydantic-core" }, + { name = "pygments" }, + { name = "pyjwt" }, { name = "pyproj" }, { name = "pyshp" }, + { name = "pytest" }, + { name = "pytest-cov" }, + { name = "python-dateutil" }, + { name = "python-jose" }, { name = "python-multipart" }, + { name = "pytz" }, + { name = "requests" }, + { name = "rsa" }, + { name = "scramp" }, + { name = "sentry-sdk", extra = ["fastapi"] }, { name = "shapely" }, + { name = "six" }, + { name = "sniffio" }, + { name = "sqlalchemy" }, + { name = "sqlalchemy-continuum" }, { name = "sqlalchemy-searchable" }, + { name = "sqlalchemy-utils" }, + { name = "starlette" }, + { name = "typing-extensions" }, + { name = "typing-inspection" }, + { name = "tzdata" }, + { name = "urllib3" }, { name = "uvicorn" }, + { name = "yarl" }, ] [package.dev-dependencies] dev = [ { name = "pytest" }, + { name = "python-dotenv" }, ] [package.metadata] requires-dist = [ - { name = "aiosqlite", specifier = ">=0.21.0" }, - { name = "alembic", specifier = ">=1.16.1" }, - { name = "asyncpg", specifier = ">=0.30.0" }, - { name = "bcrypt", specifier = ">=4.3.0" }, - { name = "cloud-sql-python-connector", specifier = ">=1.18.2" }, - { name = "email-validator", specifier = ">=2.2.0" }, - { name = "fastadmin", specifier = ">=0.2.22" }, - { name = "fastapi", specifier = ">=0.115.12" }, - { name = "fastapi-pagination", specifier = ">=0.13.2" }, - { name = "geoalchemy2", specifier = ">=0.17.1" }, - { name = "google-cloud-storage", specifier = ">=3.1.1" }, - { name = "greenlet", specifier = ">=3.2.2" }, - { name = "gunicorn", specifier = ">=23.0.0" }, - { name = "httpx", specifier = ">=0.28.1" }, - { name = "pandas", specifier = ">=2.3.0" }, - { name = "pg8000", specifier = ">=1.31.2" }, - { name = "phonenumbers", specifier = ">=9.0.7" }, - { name = "pillow", specifier = ">=11.2.1" }, - { name = "psycopg2", specifier = ">=2.9.10" }, - { name = "pyproj", specifier = ">=3.7.1" }, - { name = "pyshp", specifier = ">=2.3.1" }, - { name = "python-multipart", specifier = ">=0.0.20" }, - { name = "shapely", specifier = ">=2.1.1" }, - { name = "sqlalchemy-searchable", specifier = ">=2.1.0" }, - { name = "uvicorn", specifier = ">=0.34.3" }, + { name = "aiofiles", specifier = "==24.1.0" }, + { name = "aiohappyeyeballs", specifier = "==2.6.1" }, + { name = "aiohttp", specifier = "==3.12.15" }, + { name = "aiosignal", specifier = "==1.4.0" }, + { name = "aiosqlite", specifier = "==0.21.0" }, + { name = "alembic", specifier = "==1.16.4" }, + { name = "annotated-types", specifier = "==0.7.0" }, + { name = "anyio", specifier = "==4.10.0" }, + { name = "asgiref", specifier = "==3.9.1" }, + { name = "asn1crypto", specifier = "==1.5.1" }, + { name = "asyncpg", specifier = "==0.30.0" }, + { name = "attrs", specifier = "==25.3.0" }, + { name = "authlib", specifier = ">=1.6.0" }, + { name = "bcrypt", specifier = "==4.3.0" }, + { name = "cachetools", specifier = "==5.5.2" }, + { name = "certifi", specifier = "==2025.8.3" }, + { name = "cffi", specifier = "==1.17.1" }, + { name = "charset-normalizer", specifier = "==3.4.3" }, + { name = "click", specifier = "==8.2.1" }, + { name = "cloud-sql-python-connector", specifier = "==1.18.4" }, + { name = "cryptography", specifier = "==45.0.6" }, + { name = "dnspython", specifier = "==2.7.0" }, + { name = "dotenv", specifier = ">=0.9.9" }, + { name = "email-validator", specifier = "==2.2.0" }, + { name = "fastapi", specifier = "==0.116.1" }, + { name = "fastapi-pagination", specifier = "==0.14.0" }, + { name = "frozenlist", specifier = "==1.7.0" }, + { name = "geoalchemy2", specifier = "==0.18.0" }, + { name = "google-api-core", specifier = "==2.25.1" }, + { name = "google-auth", specifier = "==2.40.3" }, + { name = "google-cloud-core", specifier = "==2.4.3" }, + { name = "google-cloud-storage", specifier = "==3.3.0" }, + { name = "google-crc32c", specifier = "==1.7.1" }, + { name = "google-resumable-media", specifier = "==2.7.2" }, + { name = "googleapis-common-protos", specifier = "==1.70.0" }, + { name = "greenlet", specifier = "==3.2.4" }, + { name = "gunicorn", specifier = "==23.0.0" }, + { name = "h11", specifier = "==0.16.0" }, + { name = "httpcore", specifier = "==1.0.9" }, + { name = "httpx", specifier = "==0.28.1" }, + { name = "idna", specifier = "==3.10" }, + { name = "iniconfig", specifier = "==2.1.0" }, + { name = "itsdangerous", specifier = ">=2.2.0" }, + { name = "jinja2", specifier = ">=3.1.6" }, + { name = "mako", specifier = "==1.3.10" }, + { name = "markupsafe", specifier = "==3.0.2" }, + { name = "multidict", specifier = "==6.6.3" }, + { name = "numpy", specifier = "==2.3.2" }, + { name = "packaging", specifier = "==25.0" }, + { name = "pact-python", specifier = ">=2.3.3" }, + { name = "pandas", specifier = "==2.3.2" }, + { name = "pandas-stubs", specifier = "==2.3.0.250703" }, + { name = "pg8000", specifier = "==1.31.4" }, + { name = "phonenumbers", specifier = "==9.0.13" }, + { name = "pillow", specifier = "==11.3.0" }, + { name = "pluggy", specifier = "==1.6.0" }, + { name = "pre-commit", specifier = "==4.3.0" }, + { name = "propcache", specifier = "==0.3.2" }, + { name = "proto-plus", specifier = "==1.26.1" }, + { name = "protobuf", specifier = "==6.32.0" }, + { name = "psycopg2-binary", specifier = ">=2.9.10" }, + { name = "pyasn1", specifier = "==0.6.1" }, + { name = "pyasn1-modules", specifier = "==0.4.2" }, + { name = "pycparser", specifier = "==2.22" }, + { name = "pydantic", specifier = "==2.11.7" }, + { name = "pydantic-core", specifier = "==2.33.2" }, + { name = "pygments", specifier = "==2.19.2" }, + { name = "pyjwt", specifier = "==2.10.1" }, + { name = "pyproj", specifier = "==3.7.2" }, + { name = "pyshp", specifier = "==2.3.1" }, + { name = "pytest", specifier = "==8.4.1" }, + { name = "pytest-cov", specifier = ">=6.2.1" }, + { name = "python-dateutil", specifier = "==2.9.0.post0" }, + { name = "python-jose", specifier = ">=3.5.0" }, + { name = "python-multipart", specifier = "==0.0.20" }, + { name = "pytz", specifier = "==2025.2" }, + { name = "requests", specifier = "==2.32.5" }, + { name = "rsa", specifier = "==4.9.1" }, + { name = "scramp", specifier = "==1.4.6" }, + { name = "sentry-sdk", extras = ["fastapi"], specifier = ">=2.35.0" }, + { name = "shapely", specifier = "==2.1.1" }, + { name = "six", specifier = "==1.17.0" }, + { name = "sniffio", specifier = "==1.3.1" }, + { name = "sqlalchemy", specifier = "==2.0.43" }, + { name = "sqlalchemy-continuum", specifier = "==1.4.2" }, + { name = "sqlalchemy-searchable", specifier = "==2.1.0" }, + { name = "sqlalchemy-utils", specifier = "==0.42.0" }, + { name = "starlette", specifier = "==0.47.3" }, + { name = "typing-extensions", specifier = "==4.15.0" }, + { name = "typing-inspection", specifier = "==0.4.1" }, + { name = "tzdata", specifier = "==2025.2" }, + { name = "urllib3", specifier = "==2.5.0" }, + { name = "uvicorn", specifier = "==0.35.0" }, + { name = "yarl", specifier = "==1.20.1" }, ] [package.metadata.requires-dev] -dev = [{ name = "pytest", specifier = ">=8.4.0" }] +dev = [ + { name = "pytest", specifier = ">=8.4.0" }, + { name = "python-dotenv", specifier = ">=1.1.1" }, +] [[package]] -name = "numpy" -version = "2.3.1" +name = "nodeenv" +version = "1.9.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/2e/19/d7c972dfe90a353dbd3efbbe1d14a5951de80c99c9dc1b93cd998d51dc0f/numpy-2.3.1.tar.gz", hash = "sha256:1ec9ae20a4226da374362cca3c62cd753faf2f951440b0e3b98e93c235441d2b", size = 20390372, upload-time = "2025-06-21T12:28:33.469Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d4/bd/35ad97006d8abff8631293f8ea6adf07b0108ce6fec68da3c3fcca1197f2/numpy-2.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:25a1992b0a3fdcdaec9f552ef10d8103186f5397ab45e2d25f8ac51b1a6b97e8", size = 20889381, upload-time = "2025-06-21T12:19:04.103Z" }, - { url = "https://files.pythonhosted.org/packages/f1/4f/df5923874d8095b6062495b39729178eef4a922119cee32a12ee1bd4664c/numpy-2.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7dea630156d39b02a63c18f508f85010230409db5b2927ba59c8ba4ab3e8272e", size = 14152726, upload-time = "2025-06-21T12:19:25.599Z" }, - { url = "https://files.pythonhosted.org/packages/8c/0f/a1f269b125806212a876f7efb049b06c6f8772cf0121139f97774cd95626/numpy-2.3.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:bada6058dd886061f10ea15f230ccf7dfff40572e99fef440a4a857c8728c9c0", size = 5105145, upload-time = "2025-06-21T12:19:34.782Z" }, - { url = "https://files.pythonhosted.org/packages/6d/63/a7f7fd5f375b0361682f6ffbf686787e82b7bbd561268e4f30afad2bb3c0/numpy-2.3.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:a894f3816eb17b29e4783e5873f92faf55b710c2519e5c351767c51f79d8526d", size = 6639409, upload-time = "2025-06-21T12:19:45.228Z" }, - { url = "https://files.pythonhosted.org/packages/bf/0d/1854a4121af895aab383f4aa233748f1df4671ef331d898e32426756a8a6/numpy-2.3.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:18703df6c4a4fee55fd3d6e5a253d01c5d33a295409b03fda0c86b3ca2ff41a1", size = 14257630, upload-time = "2025-06-21T12:20:06.544Z" }, - { url = "https://files.pythonhosted.org/packages/50/30/af1b277b443f2fb08acf1c55ce9d68ee540043f158630d62cef012750f9f/numpy-2.3.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:5902660491bd7a48b2ec16c23ccb9124b8abfd9583c5fdfa123fe6b421e03de1", size = 16627546, upload-time = "2025-06-21T12:20:31.002Z" }, - { url = "https://files.pythonhosted.org/packages/6e/ec/3b68220c277e463095342d254c61be8144c31208db18d3fd8ef02712bcd6/numpy-2.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:36890eb9e9d2081137bd78d29050ba63b8dab95dff7912eadf1185e80074b2a0", size = 15562538, upload-time = "2025-06-21T12:20:54.322Z" }, - { url = "https://files.pythonhosted.org/packages/77/2b/4014f2bcc4404484021c74d4c5ee8eb3de7e3f7ac75f06672f8dcf85140a/numpy-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a780033466159c2270531e2b8ac063704592a0bc62ec4a1b991c7c40705eb0e8", size = 18360327, upload-time = "2025-06-21T12:21:21.053Z" }, - { url = "https://files.pythonhosted.org/packages/40/8d/2ddd6c9b30fcf920837b8672f6c65590c7d92e43084c25fc65edc22e93ca/numpy-2.3.1-cp313-cp313-win32.whl", hash = "sha256:39bff12c076812595c3a306f22bfe49919c5513aa1e0e70fac756a0be7c2a2b8", size = 6312330, upload-time = "2025-06-21T12:25:07.447Z" }, - { url = "https://files.pythonhosted.org/packages/dd/c8/beaba449925988d415efccb45bf977ff8327a02f655090627318f6398c7b/numpy-2.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:8d5ee6eec45f08ce507a6570e06f2f879b374a552087a4179ea7838edbcbfa42", size = 12731565, upload-time = "2025-06-21T12:25:26.444Z" }, - { url = "https://files.pythonhosted.org/packages/0b/c3/5c0c575d7ec78c1126998071f58facfc124006635da75b090805e642c62e/numpy-2.3.1-cp313-cp313-win_arm64.whl", hash = "sha256:0c4d9e0a8368db90f93bd192bfa771ace63137c3488d198ee21dfb8e7771916e", size = 10190262, upload-time = "2025-06-21T12:25:42.196Z" }, - { url = "https://files.pythonhosted.org/packages/ea/19/a029cd335cf72f79d2644dcfc22d90f09caa86265cbbde3b5702ccef6890/numpy-2.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:b0b5397374f32ec0649dd98c652a1798192042e715df918c20672c62fb52d4b8", size = 20987593, upload-time = "2025-06-21T12:21:51.664Z" }, - { url = "https://files.pythonhosted.org/packages/25/91/8ea8894406209107d9ce19b66314194675d31761fe2cb3c84fe2eeae2f37/numpy-2.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c5bdf2015ccfcee8253fb8be695516ac4457c743473a43290fd36eba6a1777eb", size = 14300523, upload-time = "2025-06-21T12:22:13.583Z" }, - { url = "https://files.pythonhosted.org/packages/a6/7f/06187b0066eefc9e7ce77d5f2ddb4e314a55220ad62dd0bfc9f2c44bac14/numpy-2.3.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d70f20df7f08b90a2062c1f07737dd340adccf2068d0f1b9b3d56e2038979fee", size = 5227993, upload-time = "2025-06-21T12:22:22.53Z" }, - { url = "https://files.pythonhosted.org/packages/e8/ec/a926c293c605fa75e9cfb09f1e4840098ed46d2edaa6e2152ee35dc01ed3/numpy-2.3.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:2fb86b7e58f9ac50e1e9dd1290154107e47d1eef23a0ae9145ded06ea606f992", size = 6736652, upload-time = "2025-06-21T12:22:33.629Z" }, - { url = "https://files.pythonhosted.org/packages/e3/62/d68e52fb6fde5586650d4c0ce0b05ff3a48ad4df4ffd1b8866479d1d671d/numpy-2.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:23ab05b2d241f76cb883ce8b9a93a680752fbfcbd51c50eff0b88b979e471d8c", size = 14331561, upload-time = "2025-06-21T12:22:55.056Z" }, - { url = "https://files.pythonhosted.org/packages/fc/ec/b74d3f2430960044bdad6900d9f5edc2dc0fb8bf5a0be0f65287bf2cbe27/numpy-2.3.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:ce2ce9e5de4703a673e705183f64fd5da5bf36e7beddcb63a25ee2286e71ca48", size = 16693349, upload-time = "2025-06-21T12:23:20.53Z" }, - { url = "https://files.pythonhosted.org/packages/0d/15/def96774b9d7eb198ddadfcbd20281b20ebb510580419197e225f5c55c3e/numpy-2.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c4913079974eeb5c16ccfd2b1f09354b8fed7e0d6f2cab933104a09a6419b1ee", size = 15642053, upload-time = "2025-06-21T12:23:43.697Z" }, - { url = "https://files.pythonhosted.org/packages/2b/57/c3203974762a759540c6ae71d0ea2341c1fa41d84e4971a8e76d7141678a/numpy-2.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:010ce9b4f00d5c036053ca684c77441f2f2c934fd23bee058b4d6f196efd8280", size = 18434184, upload-time = "2025-06-21T12:24:10.708Z" }, - { url = "https://files.pythonhosted.org/packages/22/8a/ccdf201457ed8ac6245187850aff4ca56a79edbea4829f4e9f14d46fa9a5/numpy-2.3.1-cp313-cp313t-win32.whl", hash = "sha256:6269b9edfe32912584ec496d91b00b6d34282ca1d07eb10e82dfc780907d6c2e", size = 6440678, upload-time = "2025-06-21T12:24:21.596Z" }, - { url = "https://files.pythonhosted.org/packages/f1/7e/7f431d8bd8eb7e03d79294aed238b1b0b174b3148570d03a8a8a8f6a0da9/numpy-2.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:2a809637460e88a113e186e87f228d74ae2852a2e0c44de275263376f17b5bdc", size = 12870697, upload-time = "2025-06-21T12:24:40.644Z" }, - { url = "https://files.pythonhosted.org/packages/d4/ca/af82bf0fad4c3e573c6930ed743b5308492ff19917c7caaf2f9b6f9e2e98/numpy-2.3.1-cp313-cp313t-win_arm64.whl", hash = "sha256:eccb9a159db9aed60800187bc47a6d3451553f0e1b08b068d8b277ddfbb9b244", size = 10260376, upload-time = "2025-06-21T12:24:56.884Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, +] + +[[package]] +name = "numpy" +version = "2.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/37/7d/3fec4199c5ffb892bed55cff901e4f39a58c81df9c44c280499e92cad264/numpy-2.3.2.tar.gz", hash = "sha256:e0486a11ec30cdecb53f184d496d1c6a20786c81e55e41640270130056f8ee48", size = 20489306, upload-time = "2025-07-24T21:32:07.553Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/c0/c6bb172c916b00700ed3bf71cb56175fd1f7dbecebf8353545d0b5519f6c/numpy-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c8d9727f5316a256425892b043736d63e89ed15bbfe6556c5ff4d9d4448ff3b3", size = 20949074, upload-time = "2025-07-24T20:43:07.813Z" }, + { url = "https://files.pythonhosted.org/packages/20/4e/c116466d22acaf4573e58421c956c6076dc526e24a6be0903219775d862e/numpy-2.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:efc81393f25f14d11c9d161e46e6ee348637c0a1e8a54bf9dedc472a3fae993b", size = 14177311, upload-time = "2025-07-24T20:43:29.335Z" }, + { url = "https://files.pythonhosted.org/packages/78/45/d4698c182895af189c463fc91d70805d455a227261d950e4e0f1310c2550/numpy-2.3.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dd937f088a2df683cbb79dda9a772b62a3e5a8a7e76690612c2737f38c6ef1b6", size = 5106022, upload-time = "2025-07-24T20:43:37.999Z" }, + { url = "https://files.pythonhosted.org/packages/9f/76/3e6880fef4420179309dba72a8c11f6166c431cf6dee54c577af8906f914/numpy-2.3.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:11e58218c0c46c80509186e460d79fbdc9ca1eb8d8aee39d8f2dc768eb781089", size = 6640135, upload-time = "2025-07-24T20:43:49.28Z" }, + { url = "https://files.pythonhosted.org/packages/34/fa/87ff7f25b3c4ce9085a62554460b7db686fef1e0207e8977795c7b7d7ba1/numpy-2.3.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5ad4ebcb683a1f99f4f392cc522ee20a18b2bb12a2c1c42c3d48d5a1adc9d3d2", size = 14278147, upload-time = "2025-07-24T20:44:10.328Z" }, + { url = "https://files.pythonhosted.org/packages/1d/0f/571b2c7a3833ae419fe69ff7b479a78d313581785203cc70a8db90121b9a/numpy-2.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:938065908d1d869c7d75d8ec45f735a034771c6ea07088867f713d1cd3bbbe4f", size = 16635989, upload-time = "2025-07-24T20:44:34.88Z" }, + { url = "https://files.pythonhosted.org/packages/24/5a/84ae8dca9c9a4c592fe11340b36a86ffa9fd3e40513198daf8a97839345c/numpy-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:66459dccc65d8ec98cc7df61307b64bf9e08101f9598755d42d8ae65d9a7a6ee", size = 16053052, upload-time = "2025-07-24T20:44:58.872Z" }, + { url = "https://files.pythonhosted.org/packages/57/7c/e5725d99a9133b9813fcf148d3f858df98511686e853169dbaf63aec6097/numpy-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a7af9ed2aa9ec5950daf05bb11abc4076a108bd3c7db9aa7251d5f107079b6a6", size = 18577955, upload-time = "2025-07-24T20:45:26.714Z" }, + { url = "https://files.pythonhosted.org/packages/ae/11/7c546fcf42145f29b71e4d6f429e96d8d68e5a7ba1830b2e68d7418f0bbd/numpy-2.3.2-cp313-cp313-win32.whl", hash = "sha256:906a30249315f9c8e17b085cc5f87d3f369b35fedd0051d4a84686967bdbbd0b", size = 6311843, upload-time = "2025-07-24T20:49:24.444Z" }, + { url = "https://files.pythonhosted.org/packages/aa/6f/a428fd1cb7ed39b4280d057720fed5121b0d7754fd2a9768640160f5517b/numpy-2.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:c63d95dc9d67b676e9108fe0d2182987ccb0f11933c1e8959f42fa0da8d4fa56", size = 12782876, upload-time = "2025-07-24T20:49:43.227Z" }, + { url = "https://files.pythonhosted.org/packages/65/85/4ea455c9040a12595fb6c43f2c217257c7b52dd0ba332c6a6c1d28b289fe/numpy-2.3.2-cp313-cp313-win_arm64.whl", hash = "sha256:b05a89f2fb84d21235f93de47129dd4f11c16f64c87c33f5e284e6a3a54e43f2", size = 10192786, upload-time = "2025-07-24T20:49:59.443Z" }, + { url = "https://files.pythonhosted.org/packages/80/23/8278f40282d10c3f258ec3ff1b103d4994bcad78b0cba9208317f6bb73da/numpy-2.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4e6ecfeddfa83b02318f4d84acf15fbdbf9ded18e46989a15a8b6995dfbf85ab", size = 21047395, upload-time = "2025-07-24T20:45:58.821Z" }, + { url = "https://files.pythonhosted.org/packages/1f/2d/624f2ce4a5df52628b4ccd16a4f9437b37c35f4f8a50d00e962aae6efd7a/numpy-2.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:508b0eada3eded10a3b55725b40806a4b855961040180028f52580c4729916a2", size = 14300374, upload-time = "2025-07-24T20:46:20.207Z" }, + { url = "https://files.pythonhosted.org/packages/f6/62/ff1e512cdbb829b80a6bd08318a58698867bca0ca2499d101b4af063ee97/numpy-2.3.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:754d6755d9a7588bdc6ac47dc4ee97867271b17cee39cb87aef079574366db0a", size = 5228864, upload-time = "2025-07-24T20:46:30.58Z" }, + { url = "https://files.pythonhosted.org/packages/7d/8e/74bc18078fff03192d4032cfa99d5a5ca937807136d6f5790ce07ca53515/numpy-2.3.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f66e7d2b2d7712410d3bc5684149040ef5f19856f20277cd17ea83e5006286", size = 6737533, upload-time = "2025-07-24T20:46:46.111Z" }, + { url = "https://files.pythonhosted.org/packages/19/ea/0731efe2c9073ccca5698ef6a8c3667c4cf4eea53fcdcd0b50140aba03bc/numpy-2.3.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de6ea4e5a65d5a90c7d286ddff2b87f3f4ad61faa3db8dabe936b34c2275b6f8", size = 14352007, upload-time = "2025-07-24T20:47:07.1Z" }, + { url = "https://files.pythonhosted.org/packages/cf/90/36be0865f16dfed20f4bc7f75235b963d5939707d4b591f086777412ff7b/numpy-2.3.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3ef07ec8cbc8fc9e369c8dcd52019510c12da4de81367d8b20bc692aa07573a", size = 16701914, upload-time = "2025-07-24T20:47:32.459Z" }, + { url = "https://files.pythonhosted.org/packages/94/30/06cd055e24cb6c38e5989a9e747042b4e723535758e6153f11afea88c01b/numpy-2.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:27c9f90e7481275c7800dc9c24b7cc40ace3fdb970ae4d21eaff983a32f70c91", size = 16132708, upload-time = "2025-07-24T20:47:58.129Z" }, + { url = "https://files.pythonhosted.org/packages/9a/14/ecede608ea73e58267fd7cb78f42341b3b37ba576e778a1a06baffbe585c/numpy-2.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:07b62978075b67eee4065b166d000d457c82a1efe726cce608b9db9dd66a73a5", size = 18651678, upload-time = "2025-07-24T20:48:25.402Z" }, + { url = "https://files.pythonhosted.org/packages/40/f3/2fe6066b8d07c3685509bc24d56386534c008b462a488b7f503ba82b8923/numpy-2.3.2-cp313-cp313t-win32.whl", hash = "sha256:c771cfac34a4f2c0de8e8c97312d07d64fd8f8ed45bc9f5726a7e947270152b5", size = 6441832, upload-time = "2025-07-24T20:48:37.181Z" }, + { url = "https://files.pythonhosted.org/packages/0b/ba/0937d66d05204d8f28630c9c60bc3eda68824abde4cf756c4d6aad03b0c6/numpy-2.3.2-cp313-cp313t-win_amd64.whl", hash = "sha256:72dbebb2dcc8305c431b2836bcc66af967df91be793d63a24e3d9b741374c450", size = 12927049, upload-time = "2025-07-24T20:48:56.24Z" }, + { url = "https://files.pythonhosted.org/packages/e9/ed/13542dd59c104d5e654dfa2ac282c199ba64846a74c2c4bcdbc3a0f75df1/numpy-2.3.2-cp313-cp313t-win_arm64.whl", hash = "sha256:72c6df2267e926a6d5286b0a6d556ebe49eae261062059317837fda12ddf0c1a", size = 10262935, upload-time = "2025-07-24T20:49:13.136Z" }, + { url = "https://files.pythonhosted.org/packages/c9/7c/7659048aaf498f7611b783e000c7268fcc4dcf0ce21cd10aad7b2e8f9591/numpy-2.3.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:448a66d052d0cf14ce9865d159bfc403282c9bc7bb2a31b03cc18b651eca8b1a", size = 20950906, upload-time = "2025-07-24T20:50:30.346Z" }, + { url = "https://files.pythonhosted.org/packages/80/db/984bea9d4ddf7112a04cfdfb22b1050af5757864cfffe8e09e44b7f11a10/numpy-2.3.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:546aaf78e81b4081b2eba1d105c3b34064783027a06b3ab20b6eba21fb64132b", size = 14185607, upload-time = "2025-07-24T20:50:51.923Z" }, + { url = "https://files.pythonhosted.org/packages/e4/76/b3d6f414f4eca568f469ac112a3b510938d892bc5a6c190cb883af080b77/numpy-2.3.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:87c930d52f45df092f7578889711a0768094debf73cfcde105e2d66954358125", size = 5114110, upload-time = "2025-07-24T20:51:01.041Z" }, + { url = "https://files.pythonhosted.org/packages/9e/d2/6f5e6826abd6bca52392ed88fe44a4b52aacb60567ac3bc86c67834c3a56/numpy-2.3.2-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:8dc082ea901a62edb8f59713c6a7e28a85daddcb67454c839de57656478f5b19", size = 6642050, upload-time = "2025-07-24T20:51:11.64Z" }, + { url = "https://files.pythonhosted.org/packages/c4/43/f12b2ade99199e39c73ad182f103f9d9791f48d885c600c8e05927865baf/numpy-2.3.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:af58de8745f7fa9ca1c0c7c943616c6fe28e75d0c81f5c295810e3c83b5be92f", size = 14296292, upload-time = "2025-07-24T20:51:33.488Z" }, + { url = "https://files.pythonhosted.org/packages/5d/f9/77c07d94bf110a916b17210fac38680ed8734c236bfed9982fd8524a7b47/numpy-2.3.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed5527c4cf10f16c6d0b6bee1f89958bccb0ad2522c8cadc2efd318bcd545f5", size = 16638913, upload-time = "2025-07-24T20:51:58.517Z" }, + { url = "https://files.pythonhosted.org/packages/9b/d1/9d9f2c8ea399cc05cfff8a7437453bd4e7d894373a93cdc46361bbb49a7d/numpy-2.3.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:095737ed986e00393ec18ec0b21b47c22889ae4b0cd2d5e88342e08b01141f58", size = 16071180, upload-time = "2025-07-24T20:52:22.827Z" }, + { url = "https://files.pythonhosted.org/packages/4c/41/82e2c68aff2a0c9bf315e47d61951099fed65d8cb2c8d9dc388cb87e947e/numpy-2.3.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b5e40e80299607f597e1a8a247ff8d71d79c5b52baa11cc1cce30aa92d2da6e0", size = 18576809, upload-time = "2025-07-24T20:52:51.015Z" }, + { url = "https://files.pythonhosted.org/packages/14/14/4b4fd3efb0837ed252d0f583c5c35a75121038a8c4e065f2c259be06d2d8/numpy-2.3.2-cp314-cp314-win32.whl", hash = "sha256:7d6e390423cc1f76e1b8108c9b6889d20a7a1f59d9a60cac4a050fa734d6c1e2", size = 6366410, upload-time = "2025-07-24T20:56:44.949Z" }, + { url = "https://files.pythonhosted.org/packages/11/9e/b4c24a6b8467b61aced5c8dc7dcfce23621baa2e17f661edb2444a418040/numpy-2.3.2-cp314-cp314-win_amd64.whl", hash = "sha256:b9d0878b21e3918d76d2209c924ebb272340da1fb51abc00f986c258cd5e957b", size = 12918821, upload-time = "2025-07-24T20:57:06.479Z" }, + { url = "https://files.pythonhosted.org/packages/0e/0f/0dc44007c70b1007c1cef86b06986a3812dd7106d8f946c09cfa75782556/numpy-2.3.2-cp314-cp314-win_arm64.whl", hash = "sha256:2738534837c6a1d0c39340a190177d7d66fdf432894f469728da901f8f6dc910", size = 10477303, upload-time = "2025-07-24T20:57:22.879Z" }, + { url = "https://files.pythonhosted.org/packages/8b/3e/075752b79140b78ddfc9c0a1634d234cfdbc6f9bbbfa6b7504e445ad7d19/numpy-2.3.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:4d002ecf7c9b53240be3bb69d80f86ddbd34078bae04d87be81c1f58466f264e", size = 21047524, upload-time = "2025-07-24T20:53:22.086Z" }, + { url = "https://files.pythonhosted.org/packages/fe/6d/60e8247564a72426570d0e0ea1151b95ce5bd2f1597bb878a18d32aec855/numpy-2.3.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:293b2192c6bcce487dbc6326de5853787f870aeb6c43f8f9c6496db5b1781e45", size = 14300519, upload-time = "2025-07-24T20:53:44.053Z" }, + { url = "https://files.pythonhosted.org/packages/4d/73/d8326c442cd428d47a067070c3ac6cc3b651a6e53613a1668342a12d4479/numpy-2.3.2-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:0a4f2021a6da53a0d580d6ef5db29947025ae8b35b3250141805ea9a32bbe86b", size = 5228972, upload-time = "2025-07-24T20:53:53.81Z" }, + { url = "https://files.pythonhosted.org/packages/34/2e/e71b2d6dad075271e7079db776196829019b90ce3ece5c69639e4f6fdc44/numpy-2.3.2-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9c144440db4bf3bb6372d2c3e49834cc0ff7bb4c24975ab33e01199e645416f2", size = 6737439, upload-time = "2025-07-24T20:54:04.742Z" }, + { url = "https://files.pythonhosted.org/packages/15/b0/d004bcd56c2c5e0500ffc65385eb6d569ffd3363cb5e593ae742749b2daa/numpy-2.3.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f92d6c2a8535dc4fe4419562294ff957f83a16ebdec66df0805e473ffaad8bd0", size = 14352479, upload-time = "2025-07-24T20:54:25.819Z" }, + { url = "https://files.pythonhosted.org/packages/11/e3/285142fcff8721e0c99b51686426165059874c150ea9ab898e12a492e291/numpy-2.3.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cefc2219baa48e468e3db7e706305fcd0c095534a192a08f31e98d83a7d45fb0", size = 16702805, upload-time = "2025-07-24T20:54:50.814Z" }, + { url = "https://files.pythonhosted.org/packages/33/c3/33b56b0e47e604af2c7cd065edca892d180f5899599b76830652875249a3/numpy-2.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:76c3e9501ceb50b2ff3824c3589d5d1ab4ac857b0ee3f8f49629d0de55ecf7c2", size = 16133830, upload-time = "2025-07-24T20:55:17.306Z" }, + { url = "https://files.pythonhosted.org/packages/6e/ae/7b1476a1f4d6a48bc669b8deb09939c56dd2a439db1ab03017844374fb67/numpy-2.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:122bf5ed9a0221b3419672493878ba4967121514b1d7d4656a7580cd11dddcbf", size = 18652665, upload-time = "2025-07-24T20:55:46.665Z" }, + { url = "https://files.pythonhosted.org/packages/14/ba/5b5c9978c4bb161034148ade2de9db44ec316fab89ce8c400db0e0c81f86/numpy-2.3.2-cp314-cp314t-win32.whl", hash = "sha256:6f1ae3dcb840edccc45af496f312528c15b1f79ac318169d094e85e4bb35fdf1", size = 6514777, upload-time = "2025-07-24T20:55:57.66Z" }, + { url = "https://files.pythonhosted.org/packages/eb/46/3dbaf0ae7c17cdc46b9f662c56da2054887b8d9e737c1476f335c83d33db/numpy-2.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:087ffc25890d89a43536f75c5fe8770922008758e8eeeef61733957041ed2f9b", size = 13111856, upload-time = "2025-07-24T20:56:17.318Z" }, + { url = "https://files.pythonhosted.org/packages/c1/9e/1652778bce745a67b5fe05adde60ed362d38eb17d919a540e813d30f6874/numpy-2.3.2-cp314-cp314t-win_arm64.whl", hash = "sha256:092aeb3449833ea9c0bf0089d70c29ae480685dd2377ec9cdbbb620257f84631", size = 10544226, upload-time = "2025-07-24T20:56:34.509Z" }, ] [[package]] @@ -846,7 +1159,7 @@ wheels = [ [[package]] name = "pandas" -version = "2.3.0" +version = "2.3.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, @@ -854,43 +1167,56 @@ dependencies = [ { name = "pytz" }, { name = "tzdata" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/72/51/48f713c4c728d7c55ef7444ba5ea027c26998d96d1a40953b346438602fc/pandas-2.3.0.tar.gz", hash = "sha256:34600ab34ebf1131a7613a260a61dbe8b62c188ec0ea4c296da7c9a06b004133", size = 4484490, upload-time = "2025-06-05T03:27:54.133Z" } +sdist = { url = "https://files.pythonhosted.org/packages/79/8e/0e90233ac205ad182bd6b422532695d2b9414944a280488105d598c70023/pandas-2.3.2.tar.gz", hash = "sha256:ab7b58f8f82706890924ccdfb5f48002b83d2b5a3845976a9fb705d36c34dcdb", size = 4488684, upload-time = "2025-08-21T10:28:29.257Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d3/57/5cb75a56a4842bbd0511c3d1c79186d8315b82dac802118322b2de1194fe/pandas-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2c7e2fc25f89a49a11599ec1e76821322439d90820108309bf42130d2f36c983", size = 11518913, upload-time = "2025-06-05T03:27:02.757Z" }, - { url = "https://files.pythonhosted.org/packages/05/01/0c8785610e465e4948a01a059562176e4c8088aa257e2e074db868f86d4e/pandas-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c6da97aeb6a6d233fb6b17986234cc723b396b50a3c6804776351994f2a658fd", size = 10655249, upload-time = "2025-06-05T16:50:20.17Z" }, - { url = "https://files.pythonhosted.org/packages/e8/6a/47fd7517cd8abe72a58706aab2b99e9438360d36dcdb052cf917b7bf3bdc/pandas-2.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb32dc743b52467d488e7a7c8039b821da2826a9ba4f85b89ea95274f863280f", size = 11328359, upload-time = "2025-06-05T03:27:06.431Z" }, - { url = "https://files.pythonhosted.org/packages/2a/b3/463bfe819ed60fb7e7ddffb4ae2ee04b887b3444feee6c19437b8f834837/pandas-2.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:213cd63c43263dbb522c1f8a7c9d072e25900f6975596f883f4bebd77295d4f3", size = 12024789, upload-time = "2025-06-05T03:27:09.875Z" }, - { url = "https://files.pythonhosted.org/packages/04/0c/e0704ccdb0ac40aeb3434d1c641c43d05f75c92e67525df39575ace35468/pandas-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1d2b33e68d0ce64e26a4acc2e72d747292084f4e8db4c847c6f5f6cbe56ed6d8", size = 12480734, upload-time = "2025-06-06T00:00:22.246Z" }, - { url = "https://files.pythonhosted.org/packages/e9/df/815d6583967001153bb27f5cf075653d69d51ad887ebbf4cfe1173a1ac58/pandas-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:430a63bae10b5086995db1b02694996336e5a8ac9a96b4200572b413dfdfccb9", size = 13223381, upload-time = "2025-06-05T03:27:15.641Z" }, - { url = "https://files.pythonhosted.org/packages/79/88/ca5973ed07b7f484c493e941dbff990861ca55291ff7ac67c815ce347395/pandas-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4930255e28ff5545e2ca404637bcc56f031893142773b3468dc021c6c32a1390", size = 10970135, upload-time = "2025-06-05T03:27:24.131Z" }, - { url = "https://files.pythonhosted.org/packages/24/fb/0994c14d1f7909ce83f0b1fb27958135513c4f3f2528bde216180aa73bfc/pandas-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:f925f1ef673b4bd0271b1809b72b3270384f2b7d9d14a189b12b7fc02574d575", size = 12141356, upload-time = "2025-06-05T03:27:34.547Z" }, - { url = "https://files.pythonhosted.org/packages/9d/a2/9b903e5962134497ac4f8a96f862ee3081cb2506f69f8e4778ce3d9c9d82/pandas-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e78ad363ddb873a631e92a3c063ade1ecfb34cae71e9a2be6ad100f875ac1042", size = 11474674, upload-time = "2025-06-05T03:27:39.448Z" }, - { url = "https://files.pythonhosted.org/packages/81/3a/3806d041bce032f8de44380f866059437fb79e36d6b22c82c187e65f765b/pandas-2.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:951805d146922aed8357e4cc5671b8b0b9be1027f0619cea132a9f3f65f2f09c", size = 11439876, upload-time = "2025-06-05T03:27:43.652Z" }, - { url = "https://files.pythonhosted.org/packages/15/aa/3fc3181d12b95da71f5c2537c3e3b3af6ab3a8c392ab41ebb766e0929bc6/pandas-2.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a881bc1309f3fce34696d07b00f13335c41f5f5a8770a33b09ebe23261cfc67", size = 11966182, upload-time = "2025-06-05T03:27:47.652Z" }, - { url = "https://files.pythonhosted.org/packages/37/e7/e12f2d9b0a2c4a2cc86e2aabff7ccfd24f03e597d770abfa2acd313ee46b/pandas-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e1991bbb96f4050b09b5f811253c4f3cf05ee89a589379aa36cd623f21a31d6f", size = 12547686, upload-time = "2025-06-06T00:00:26.142Z" }, - { url = "https://files.pythonhosted.org/packages/39/c2/646d2e93e0af70f4e5359d870a63584dacbc324b54d73e6b3267920ff117/pandas-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bb3be958022198531eb7ec2008cfc78c5b1eed51af8600c6c5d9160d89d8d249", size = 13231847, upload-time = "2025-06-05T03:27:51.465Z" }, + { url = "https://files.pythonhosted.org/packages/27/64/a2f7bf678af502e16b472527735d168b22b7824e45a4d7e96a4fbb634b59/pandas-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0c6ecbac99a354a051ef21c5307601093cb9e0f4b1855984a084bfec9302699e", size = 11531061, upload-time = "2025-08-21T10:27:34.647Z" }, + { url = "https://files.pythonhosted.org/packages/54/4c/c3d21b2b7769ef2f4c2b9299fcadd601efa6729f1357a8dbce8dd949ed70/pandas-2.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c6f048aa0fd080d6a06cc7e7537c09b53be6642d330ac6f54a600c3ace857ee9", size = 10668666, upload-time = "2025-08-21T10:27:37.203Z" }, + { url = "https://files.pythonhosted.org/packages/50/e2/f775ba76ecfb3424d7f5862620841cf0edb592e9abd2d2a5387d305fe7a8/pandas-2.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0064187b80a5be6f2f9c9d6bdde29372468751dfa89f4211a3c5871854cfbf7a", size = 11332835, upload-time = "2025-08-21T10:27:40.188Z" }, + { url = "https://files.pythonhosted.org/packages/8f/52/0634adaace9be2d8cac9ef78f05c47f3a675882e068438b9d7ec7ef0c13f/pandas-2.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac8c320bded4718b298281339c1a50fb00a6ba78cb2a63521c39bec95b0209b", size = 12057211, upload-time = "2025-08-21T10:27:43.117Z" }, + { url = "https://files.pythonhosted.org/packages/0b/9d/2df913f14b2deb9c748975fdb2491da1a78773debb25abbc7cbc67c6b549/pandas-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:114c2fe4f4328cf98ce5716d1532f3ab79c5919f95a9cfee81d9140064a2e4d6", size = 12749277, upload-time = "2025-08-21T10:27:45.474Z" }, + { url = "https://files.pythonhosted.org/packages/87/af/da1a2417026bd14d98c236dba88e39837182459d29dcfcea510b2ac9e8a1/pandas-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:48fa91c4dfb3b2b9bfdb5c24cd3567575f4e13f9636810462ffed8925352be5a", size = 13415256, upload-time = "2025-08-21T10:27:49.885Z" }, + { url = "https://files.pythonhosted.org/packages/22/3c/f2af1ce8840ef648584a6156489636b5692c162771918aa95707c165ad2b/pandas-2.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:12d039facec710f7ba305786837d0225a3444af7bbd9c15c32ca2d40d157ed8b", size = 10982579, upload-time = "2025-08-21T10:28:08.435Z" }, + { url = "https://files.pythonhosted.org/packages/f3/98/8df69c4097a6719e357dc249bf437b8efbde808038268e584421696cbddf/pandas-2.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:c624b615ce97864eb588779ed4046186f967374185c047070545253a52ab2d57", size = 12028163, upload-time = "2025-08-21T10:27:52.232Z" }, + { url = "https://files.pythonhosted.org/packages/0e/23/f95cbcbea319f349e10ff90db488b905c6883f03cbabd34f6b03cbc3c044/pandas-2.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0cee69d583b9b128823d9514171cabb6861e09409af805b54459bd0c821a35c2", size = 11391860, upload-time = "2025-08-21T10:27:54.673Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1b/6a984e98c4abee22058aa75bfb8eb90dce58cf8d7296f8bc56c14bc330b0/pandas-2.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2319656ed81124982900b4c37f0e0c58c015af9a7bbc62342ba5ad07ace82ba9", size = 11309830, upload-time = "2025-08-21T10:27:56.957Z" }, + { url = "https://files.pythonhosted.org/packages/15/d5/f0486090eb18dd8710bf60afeaf638ba6817047c0c8ae5c6a25598665609/pandas-2.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b37205ad6f00d52f16b6d09f406434ba928c1a1966e2771006a9033c736d30d2", size = 11883216, upload-time = "2025-08-21T10:27:59.302Z" }, + { url = "https://files.pythonhosted.org/packages/10/86/692050c119696da19e20245bbd650d8dfca6ceb577da027c3a73c62a047e/pandas-2.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:837248b4fc3a9b83b9c6214699a13f069dc13510a6a6d7f9ba33145d2841a012", size = 12699743, upload-time = "2025-08-21T10:28:02.447Z" }, + { url = "https://files.pythonhosted.org/packages/cd/d7/612123674d7b17cf345aad0a10289b2a384bff404e0463a83c4a3a59d205/pandas-2.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d2c3554bd31b731cd6490d94a28f3abb8dd770634a9e06eb6d2911b9827db370", size = 13186141, upload-time = "2025-08-21T10:28:05.377Z" }, +] + +[[package]] +name = "pandas-stubs" +version = "2.3.0.250703" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "types-pytz" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/df/c1c51c5cec087b8f4d04669308b700e9648745a77cdd0c8c5e16520703ca/pandas_stubs-2.3.0.250703.tar.gz", hash = "sha256:fb6a8478327b16ed65c46b1541de74f5c5947f3601850caf3e885e0140584717", size = 103910, upload-time = "2025-07-02T17:49:11.667Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/cb/09d5f9bf7c8659af134ae0ffc1a349038a5d0ff93e45aedc225bde2872a3/pandas_stubs-2.3.0.250703-py3-none-any.whl", hash = "sha256:a9265fc69909f0f7a9cabc5f596d86c9d531499fed86b7838fd3278285d76b81", size = 154719, upload-time = "2025-07-02T17:49:10.697Z" }, ] [[package]] name = "pg8000" -version = "1.31.2" +version = "1.31.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "python-dateutil" }, { name = "scramp" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0f/d7/0554640cbe3e193184796bedb6de23f797c03958425176faf0e694c06eb0/pg8000-1.31.2.tar.gz", hash = "sha256:1ea46cf09d8eca07fe7eaadefd7951e37bee7fabe675df164f1a572ffb300876", size = 113513, upload-time = "2024-04-28T16:57:47.611Z" } +sdist = { url = "https://files.pythonhosted.org/packages/20/dd/bcf762fca8768973ffe3e9f0ef9809c11ff95e6f80115bc8c7b2492a969e/pg8000-1.31.4.tar.gz", hash = "sha256:e7ecce4339891f27b0b22e2f79eb9efe44118bd384207359fc18350f788ace00", size = 115515, upload-time = "2025-07-20T17:18:37.92Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/09/a0/2b30d52017c4ced8fc107386666ea7573954eb708bf66121f0229df05d41/pg8000-1.31.2-py3-none-any.whl", hash = "sha256:436c771ede71af4d4c22ba867a30add0bc5c942d7ab27fadbb6934a487ecc8f6", size = 54494, upload-time = "2024-04-28T16:57:44.431Z" }, + { url = "https://files.pythonhosted.org/packages/65/da/0fc4596b75f07a93dacb322063a5d139aefbe1b5b68997bf1e9c4aa86667/pg8000-1.31.4-py3-none-any.whl", hash = "sha256:d14fb2054642ee80f9a216721892e99e19db60a005358460ffa48872351423d4", size = 55407, upload-time = "2025-07-20T17:18:36.151Z" }, ] [[package]] name = "phonenumbers" -version = "9.0.8" +version = "9.0.13" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/86/3a/8dd1d5e15ac347db59a43fc623638d8088f9d511e7f8d8eec7d90b3abb4f/phonenumbers-9.0.8.tar.gz", hash = "sha256:16f03f2cf65b5eee99ed25827d810febcab92b5d76f977e425fcd2e4ca6d4865", size = 2297504, upload-time = "2025-06-25T05:41:38.414Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/9a/66002928beba17a01e39c4cd17d0a73677788ddaf314b500ceeeae6b2323/phonenumbers-9.0.13.tar.gz", hash = "sha256:eca06e01382412c45316868f86a44bb217c02f9ee7196589041556a2f54a7639", size = 2297900, upload-time = "2025-08-29T09:39:52.564Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/48/2e/23c1eca9f73e332b947c66c431690672783cf49b8418aa650ce06bdf6115/phonenumbers-9.0.8-py2.py3-none-any.whl", hash = "sha256:53d357111c0ead0d6408ae443613b18d3a053431ca1ddf7e881457c0969afcf9", size = 2583252, upload-time = "2025-06-25T05:41:34.815Z" }, + { url = "https://files.pythonhosted.org/packages/e3/d8/fb5066b2cbb03fd373833b54d8a6a2c1a2b54a369a1c469db47d2d21ea84/phonenumbers-9.0.13-py2.py3-none-any.whl", hash = "sha256:b97661e177773e7509c6d503e0f537cd0af22aa3746231654590876eb9430915", size = 2583732, upload-time = "2025-08-29T09:39:48.294Z" }, ] [[package]] @@ -904,6 +1230,8 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/aa/86/3f758a28a6e381758545f7cdb4942e1cb79abd271bea932998fc0db93cb6/pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f", size = 2227443, upload-time = "2025-07-01T09:14:39.344Z" }, { url = "https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c", size = 5278474, upload-time = "2025-07-01T09:14:41.843Z" }, { url = "https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd", size = 4686038, upload-time = "2025-07-01T09:14:44.008Z" }, + { url = "https://files.pythonhosted.org/packages/ff/b0/3426e5c7f6565e752d81221af9d3676fdbb4f352317ceafd42899aaf5d8a/pillow-11.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e", size = 5864407, upload-time = "2025-07-03T13:10:15.628Z" }, + { url = "https://files.pythonhosted.org/packages/fc/c1/c6c423134229f2a221ee53f838d4be9d82bab86f7e2f8e75e47b6bf6cd77/pillow-11.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f0f5d8f4a08090c6d6d578351a2b91acf519a54986c055af27e7a93feae6d3f1", size = 7639094, upload-time = "2025-07-03T13:10:21.857Z" }, { url = "https://files.pythonhosted.org/packages/ba/c9/09e6746630fe6372c67c648ff9deae52a2bc20897d51fa293571977ceb5d/pillow-11.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805", size = 5973503, upload-time = "2025-07-01T09:14:45.698Z" }, { url = "https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8", size = 6642574, upload-time = "2025-07-01T09:14:47.415Z" }, { url = "https://files.pythonhosted.org/packages/36/de/d5cc31cc4b055b6c6fd990e3e7f0f8aaf36229a2698501bcb0cdf67c7146/pillow-11.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2", size = 6084060, upload-time = "2025-07-01T09:14:49.636Z" }, @@ -913,6 +1241,8 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/17/d2/622f4547f69cd173955194b78e4d19ca4935a1b0f03a302d655c9f6aae65/pillow-11.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580", size = 2423055, upload-time = "2025-07-01T09:14:58.072Z" }, { url = "https://files.pythonhosted.org/packages/dd/80/a8a2ac21dda2e82480852978416cfacd439a4b490a501a288ecf4fe2532d/pillow-11.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e", size = 5281110, upload-time = "2025-07-01T09:14:59.79Z" }, { url = "https://files.pythonhosted.org/packages/44/d6/b79754ca790f315918732e18f82a8146d33bcd7f4494380457ea89eb883d/pillow-11.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d", size = 4689547, upload-time = "2025-07-01T09:15:01.648Z" }, + { url = "https://files.pythonhosted.org/packages/49/20/716b8717d331150cb00f7fdd78169c01e8e0c219732a78b0e59b6bdb2fd6/pillow-11.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1019b04af07fc0163e2810167918cb5add8d74674b6267616021ab558dc98ced", size = 5901554, upload-time = "2025-07-03T13:10:27.018Z" }, + { url = "https://files.pythonhosted.org/packages/74/cf/a9f3a2514a65bb071075063a96f0a5cf949c2f2fce683c15ccc83b1c1cab/pillow-11.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f944255db153ebb2b19c51fe85dd99ef0ce494123f21b9db4877ffdfc5590c7c", size = 7669132, upload-time = "2025-07-03T13:10:33.01Z" }, { url = "https://files.pythonhosted.org/packages/98/3c/da78805cbdbee9cb43efe8261dd7cc0b4b93f2ac79b676c03159e9db2187/pillow-11.3.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8", size = 6005001, upload-time = "2025-07-01T09:15:03.365Z" }, { url = "https://files.pythonhosted.org/packages/6c/fa/ce044b91faecf30e635321351bba32bab5a7e034c60187fe9698191aef4f/pillow-11.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59", size = 6668814, upload-time = "2025-07-01T09:15:05.655Z" }, { url = "https://files.pythonhosted.org/packages/7b/51/90f9291406d09bf93686434f9183aba27b831c10c87746ff49f127ee80cb/pillow-11.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe", size = 6113124, upload-time = "2025-07-01T09:15:07.358Z" }, @@ -922,6 +1252,8 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f3/7e/b623008460c09a0cb38263c93b828c666493caee2eb34ff67f778b87e58c/pillow-11.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e", size = 2424803, upload-time = "2025-07-01T09:15:15.695Z" }, { url = "https://files.pythonhosted.org/packages/73/f4/04905af42837292ed86cb1b1dabe03dce1edc008ef14c473c5c7e1443c5d/pillow-11.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d9da3df5f9ea2a89b81bb6087177fb1f4d1c7146d583a3fe5c672c0d94e55e12", size = 5278520, upload-time = "2025-07-01T09:15:17.429Z" }, { url = "https://files.pythonhosted.org/packages/41/b0/33d79e377a336247df6348a54e6d2a2b85d644ca202555e3faa0cf811ecc/pillow-11.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0b275ff9b04df7b640c59ec5a3cb113eefd3795a8df80bac69646ef699c6981a", size = 4686116, upload-time = "2025-07-01T09:15:19.423Z" }, + { url = "https://files.pythonhosted.org/packages/49/2d/ed8bc0ab219ae8768f529597d9509d184fe8a6c4741a6864fea334d25f3f/pillow-11.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0743841cabd3dba6a83f38a92672cccbd69af56e3e91777b0ee7f4dba4385632", size = 5864597, upload-time = "2025-07-03T13:10:38.404Z" }, + { url = "https://files.pythonhosted.org/packages/b5/3d/b932bb4225c80b58dfadaca9d42d08d0b7064d2d1791b6a237f87f661834/pillow-11.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2465a69cf967b8b49ee1b96d76718cd98c4e925414ead59fdf75cf0fd07df673", size = 7638246, upload-time = "2025-07-03T13:10:44.987Z" }, { url = "https://files.pythonhosted.org/packages/09/b5/0487044b7c096f1b48f0d7ad416472c02e0e4bf6919541b111efd3cae690/pillow-11.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41742638139424703b4d01665b807c6468e23e699e8e90cffefe291c5832b027", size = 5973336, upload-time = "2025-07-01T09:15:21.237Z" }, { url = "https://files.pythonhosted.org/packages/a8/2d/524f9318f6cbfcc79fbc004801ea6b607ec3f843977652fdee4857a7568b/pillow-11.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93efb0b4de7e340d99057415c749175e24c8864302369e05914682ba642e5d77", size = 6642699, upload-time = "2025-07-01T09:15:23.186Z" }, { url = "https://files.pythonhosted.org/packages/6f/d2/a9a4f280c6aefedce1e8f615baaa5474e0701d86dd6f1dede66726462bbd/pillow-11.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7966e38dcd0fa11ca390aed7c6f20454443581d758242023cf36fcb319b1a874", size = 6083789, upload-time = "2025-07-01T09:15:25.1Z" }, @@ -931,6 +1263,8 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d6/e9/9c0a616a71da2a5d163aa37405e8aced9a906d574b4a214bede134e731bc/pillow-11.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:155658efb5e044669c08896c0c44231c5e9abcaadbc5cd3648df2f7c0b96b9a6", size = 2511385, upload-time = "2025-07-01T09:15:33.328Z" }, { url = "https://files.pythonhosted.org/packages/1a/33/c88376898aff369658b225262cd4f2659b13e8178e7534df9e6e1fa289f6/pillow-11.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:59a03cdf019efbfeeed910bf79c7c93255c3d54bc45898ac2a4140071b02b4ae", size = 5281129, upload-time = "2025-07-01T09:15:35.194Z" }, { url = "https://files.pythonhosted.org/packages/1f/70/d376247fb36f1844b42910911c83a02d5544ebd2a8bad9efcc0f707ea774/pillow-11.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f8a5827f84d973d8636e9dc5764af4f0cf2318d26744b3d902931701b0d46653", size = 4689580, upload-time = "2025-07-01T09:15:37.114Z" }, + { url = "https://files.pythonhosted.org/packages/eb/1c/537e930496149fbac69efd2fc4329035bbe2e5475b4165439e3be9cb183b/pillow-11.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ee92f2fd10f4adc4b43d07ec5e779932b4eb3dbfbc34790ada5a6669bc095aa6", size = 5902860, upload-time = "2025-07-03T13:10:50.248Z" }, + { url = "https://files.pythonhosted.org/packages/bd/57/80f53264954dcefeebcf9dae6e3eb1daea1b488f0be8b8fef12f79a3eb10/pillow-11.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c96d333dcf42d01f47b37e0979b6bd73ec91eae18614864622d9b87bbd5bbf36", size = 7670694, upload-time = "2025-07-03T13:10:56.432Z" }, { url = "https://files.pythonhosted.org/packages/70/ff/4727d3b71a8578b4587d9c276e90efad2d6fe0335fd76742a6da08132e8c/pillow-11.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4c96f993ab8c98460cd0c001447bff6194403e8b1d7e149ade5f00594918128b", size = 6005888, upload-time = "2025-07-01T09:15:39.436Z" }, { url = "https://files.pythonhosted.org/packages/05/ae/716592277934f85d3be51d7256f3636672d7b1abfafdc42cf3f8cbd4b4c8/pillow-11.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41342b64afeba938edb034d122b2dda5db2139b9a4af999729ba8818e0056477", size = 6670330, upload-time = "2025-07-01T09:15:41.269Z" }, { url = "https://files.pythonhosted.org/packages/e7/bb/7fe6cddcc8827b01b1a9766f5fdeb7418680744f9082035bdbabecf1d57f/pillow-11.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:068d9c39a2d1b358eb9f245ce7ab1b5c3246c7c8c7d9ba58cfa5b43146c06e50", size = 6114089, upload-time = "2025-07-01T09:15:43.13Z" }, @@ -940,6 +1274,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/89/c7/5572fa4a3f45740eaab6ae86fcdf7195b55beac1371ac8c619d880cfe948/pillow-11.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:79ea0d14d3ebad43ec77ad5272e6ff9bba5b679ef73375ea760261207fa8e0aa", size = 2512835, upload-time = "2025-07-01T09:15:50.399Z" }, ] +[[package]] +name = "platformdirs" +version = "4.3.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz", hash = "sha256:3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc", size = 21362, upload-time = "2025-05-07T22:47:42.121Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/39/979e8e21520d4e47a0bbe349e2713c0aac6f3d853d0e5b34d76206c439aa/platformdirs-4.3.8-py3-none-any.whl", hash = "sha256:ff7059bb7eb1179e2685604f4aaf157cfd9535242bd23742eadc3c13542139b4", size = 18567, upload-time = "2025-05-07T22:47:40.376Z" }, +] + [[package]] name = "pluggy" version = "1.6.0" @@ -949,6 +1292,22 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, ] +[[package]] +name = "pre-commit" +version = "4.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cfgv" }, + { name = "identify" }, + { name = "nodeenv" }, + { name = "pyyaml" }, + { name = "virtualenv" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ff/29/7cf5bbc236333876e4b41f56e06857a87937ce4bf91e117a6991a2dbb02a/pre_commit-4.3.0.tar.gz", hash = "sha256:499fe450cc9d42e9d58e606262795ecb64dd05438943c62b66f6a8673da30b16", size = 193792, upload-time = "2025-08-09T18:56:14.651Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl", hash = "sha256:2b0747ad7e6e967169136edffee14c16e148a778a54e4f967921aa1ebf2308d8", size = 220965, upload-time = "2025-08-09T18:56:13.192Z" }, +] + [[package]] name = "propcache" version = "0.3.2" @@ -1004,25 +1363,35 @@ wheels = [ [[package]] name = "protobuf" -version = "6.31.1" +version = "6.32.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/52/f3/b9655a711b32c19720253f6f06326faf90580834e2e83f840472d752bc8b/protobuf-6.31.1.tar.gz", hash = "sha256:d8cac4c982f0b957a4dc73a80e2ea24fab08e679c0de9deb835f4a12d69aca9a", size = 441797, upload-time = "2025-05-28T19:25:54.947Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/df/fb4a8eeea482eca989b51cffd274aac2ee24e825f0bf3cbce5281fa1567b/protobuf-6.32.0.tar.gz", hash = "sha256:a81439049127067fc49ec1d36e25c6ee1d1a2b7be930675f919258d03c04e7d2", size = 440614, upload-time = "2025-08-14T21:21:25.015Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f3/6f/6ab8e4bf962fd5570d3deaa2d5c38f0a363f57b4501047b5ebeb83ab1125/protobuf-6.31.1-cp310-abi3-win32.whl", hash = "sha256:7fa17d5a29c2e04b7d90e5e32388b8bfd0e7107cd8e616feef7ed3fa6bdab5c9", size = 423603, upload-time = "2025-05-28T19:25:41.198Z" }, - { url = "https://files.pythonhosted.org/packages/44/3a/b15c4347dd4bf3a1b0ee882f384623e2063bb5cf9fa9d57990a4f7df2fb6/protobuf-6.31.1-cp310-abi3-win_amd64.whl", hash = "sha256:426f59d2964864a1a366254fa703b8632dcec0790d8862d30034d8245e1cd447", size = 435283, upload-time = "2025-05-28T19:25:44.275Z" }, - { url = "https://files.pythonhosted.org/packages/6a/c9/b9689a2a250264a84e66c46d8862ba788ee7a641cdca39bccf64f59284b7/protobuf-6.31.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:6f1227473dc43d44ed644425268eb7c2e488ae245d51c6866d19fe158e207402", size = 425604, upload-time = "2025-05-28T19:25:45.702Z" }, - { url = "https://files.pythonhosted.org/packages/76/a1/7a5a94032c83375e4fe7e7f56e3976ea6ac90c5e85fac8576409e25c39c3/protobuf-6.31.1-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:a40fc12b84c154884d7d4c4ebd675d5b3b5283e155f324049ae396b95ddebc39", size = 322115, upload-time = "2025-05-28T19:25:47.128Z" }, - { url = "https://files.pythonhosted.org/packages/fa/b1/b59d405d64d31999244643d88c45c8241c58f17cc887e73bcb90602327f8/protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:4ee898bf66f7a8b0bd21bce523814e6fbd8c6add948045ce958b73af7e8878c6", size = 321070, upload-time = "2025-05-28T19:25:50.036Z" }, - { url = "https://files.pythonhosted.org/packages/f7/af/ab3c51ab7507a7325e98ffe691d9495ee3d3aa5f589afad65ec920d39821/protobuf-6.31.1-py3-none-any.whl", hash = "sha256:720a6c7e6b77288b85063569baae8536671b39f15cc22037ec7045658d80489e", size = 168724, upload-time = "2025-05-28T19:25:53.926Z" }, + { url = "https://files.pythonhosted.org/packages/33/18/df8c87da2e47f4f1dcc5153a81cd6bca4e429803f4069a299e236e4dd510/protobuf-6.32.0-cp310-abi3-win32.whl", hash = "sha256:84f9e3c1ff6fb0308dbacb0950d8aa90694b0d0ee68e75719cb044b7078fe741", size = 424409, upload-time = "2025-08-14T21:21:12.366Z" }, + { url = "https://files.pythonhosted.org/packages/e1/59/0a820b7310f8139bd8d5a9388e6a38e1786d179d6f33998448609296c229/protobuf-6.32.0-cp310-abi3-win_amd64.whl", hash = "sha256:a8bdbb2f009cfc22a36d031f22a625a38b615b5e19e558a7b756b3279723e68e", size = 435735, upload-time = "2025-08-14T21:21:15.046Z" }, + { url = "https://files.pythonhosted.org/packages/cc/5b/0d421533c59c789e9c9894683efac582c06246bf24bb26b753b149bd88e4/protobuf-6.32.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d52691e5bee6c860fff9a1c86ad26a13afbeb4b168cd4445c922b7e2cf85aaf0", size = 426449, upload-time = "2025-08-14T21:21:16.687Z" }, + { url = "https://files.pythonhosted.org/packages/ec/7b/607764ebe6c7a23dcee06e054fd1de3d5841b7648a90fd6def9a3bb58c5e/protobuf-6.32.0-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:501fe6372fd1c8ea2a30b4d9be8f87955a64d6be9c88a973996cef5ef6f0abf1", size = 322869, upload-time = "2025-08-14T21:21:18.282Z" }, + { url = "https://files.pythonhosted.org/packages/40/01/2e730bd1c25392fc32e3268e02446f0d77cb51a2c3a8486b1798e34d5805/protobuf-6.32.0-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:75a2aab2bd1aeb1f5dc7c5f33bcb11d82ea8c055c9becbb41c26a8c43fd7092c", size = 322009, upload-time = "2025-08-14T21:21:19.893Z" }, + { url = "https://files.pythonhosted.org/packages/9c/f2/80ffc4677aac1bc3519b26bc7f7f5de7fce0ee2f7e36e59e27d8beb32dd1/protobuf-6.32.0-py3-none-any.whl", hash = "sha256:ba377e5b67b908c8f3072a57b63e2c6a4cbd18aea4ed98d2584350dbf46f2783", size = 169287, upload-time = "2025-08-14T21:21:23.515Z" }, ] [[package]] -name = "psycopg2" +name = "psycopg2-binary" version = "2.9.10" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/62/51/2007ea29e605957a17ac6357115d0c1a1b60c8c984951c19419b3474cdfd/psycopg2-2.9.10.tar.gz", hash = "sha256:12ec0b40b0273f95296233e8750441339298e6a572f7039da5b260e3c8b60e11", size = 385672, upload-time = "2024-10-16T11:24:54.832Z" } +sdist = { url = "https://files.pythonhosted.org/packages/cb/0e/bdc8274dc0585090b4e3432267d7be4dfbfd8971c0fa59167c711105a6bf/psycopg2-binary-2.9.10.tar.gz", hash = "sha256:4b3df0e6990aa98acda57d983942eff13d824135fe2250e6522edaa782a06de2", size = 385764, upload-time = "2024-10-16T11:24:58.126Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ae/49/a6cfc94a9c483b1fa401fbcb23aca7892f60c7269c5ffa2ac408364f80dc/psycopg2-2.9.10-cp313-cp313-win_amd64.whl", hash = "sha256:91fd603a2155da8d0cfcdbf8ab24a2d54bca72795b90d2a3ed2b6da8d979dee2", size = 2569060, upload-time = "2025-01-04T20:09:15.28Z" }, + { url = "https://files.pythonhosted.org/packages/3e/30/d41d3ba765609c0763505d565c4d12d8f3c79793f0d0f044ff5a28bf395b/psycopg2_binary-2.9.10-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:26540d4a9a4e2b096f1ff9cce51253d0504dca5a85872c7f7be23be5a53eb18d", size = 3044699, upload-time = "2024-10-16T11:21:42.841Z" }, + { url = "https://files.pythonhosted.org/packages/35/44/257ddadec7ef04536ba71af6bc6a75ec05c5343004a7ec93006bee66c0bc/psycopg2_binary-2.9.10-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e217ce4d37667df0bc1c397fdcd8de5e81018ef305aed9415c3b093faaeb10fb", size = 3275245, upload-time = "2024-10-16T11:21:51.989Z" }, + { url = "https://files.pythonhosted.org/packages/1b/11/48ea1cd11de67f9efd7262085588790a95d9dfcd9b8a687d46caf7305c1a/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:245159e7ab20a71d989da00f280ca57da7641fa2cdcf71749c193cea540a74f7", size = 2851631, upload-time = "2024-10-16T11:21:57.584Z" }, + { url = "https://files.pythonhosted.org/packages/62/e0/62ce5ee650e6c86719d621a761fe4bc846ab9eff8c1f12b1ed5741bf1c9b/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c4ded1a24b20021ebe677b7b08ad10bf09aac197d6943bfe6fec70ac4e4690d", size = 3082140, upload-time = "2024-10-16T11:22:02.005Z" }, + { url = "https://files.pythonhosted.org/packages/27/ce/63f946c098611f7be234c0dd7cb1ad68b0b5744d34f68062bb3c5aa510c8/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3abb691ff9e57d4a93355f60d4f4c1dd2d68326c968e7db17ea96df3c023ef73", size = 3264762, upload-time = "2024-10-16T11:22:06.412Z" }, + { url = "https://files.pythonhosted.org/packages/43/25/c603cd81402e69edf7daa59b1602bd41eb9859e2824b8c0855d748366ac9/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8608c078134f0b3cbd9f89b34bd60a943b23fd33cc5f065e8d5f840061bd0673", size = 3020967, upload-time = "2024-10-16T11:22:11.583Z" }, + { url = "https://files.pythonhosted.org/packages/5f/d6/8708d8c6fca531057fa170cdde8df870e8b6a9b136e82b361c65e42b841e/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:230eeae2d71594103cd5b93fd29d1ace6420d0b86f4778739cb1a5a32f607d1f", size = 2872326, upload-time = "2024-10-16T11:22:16.406Z" }, + { url = "https://files.pythonhosted.org/packages/ce/ac/5b1ea50fc08a9df82de7e1771537557f07c2632231bbab652c7e22597908/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:bb89f0a835bcfc1d42ccd5f41f04870c1b936d8507c6df12b7737febc40f0909", size = 2822712, upload-time = "2024-10-16T11:22:21.366Z" }, + { url = "https://files.pythonhosted.org/packages/c4/fc/504d4503b2abc4570fac3ca56eb8fed5e437bf9c9ef13f36b6621db8ef00/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f0c2d907a1e102526dd2986df638343388b94c33860ff3bbe1384130828714b1", size = 2920155, upload-time = "2024-10-16T11:22:25.684Z" }, + { url = "https://files.pythonhosted.org/packages/b2/d1/323581e9273ad2c0dbd1902f3fb50c441da86e894b6e25a73c3fda32c57e/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f8157bed2f51db683f31306aa497311b560f2265998122abe1dce6428bd86567", size = 2959356, upload-time = "2024-10-16T11:22:30.562Z" }, + { url = "https://files.pythonhosted.org/packages/08/50/d13ea0a054189ae1bc21af1d85b6f8bb9bbc5572991055d70ad9006fe2d6/psycopg2_binary-2.9.10-cp313-cp313-win_amd64.whl", hash = "sha256:27422aa5f11fbcd9b18da48373eb67081243662f9b46e6fd07c3eb46e4535142", size = 2569224, upload-time = "2025-01-04T20:09:19.234Z" }, ] [[package]] @@ -1118,21 +1487,49 @@ wheels = [ [[package]] name = "pyproj" -version = "3.7.1" +version = "3.7.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/67/10/a8480ea27ea4bbe896c168808854d00f2a9b49f95c0319ddcbba693c8a90/pyproj-3.7.1.tar.gz", hash = "sha256:60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47", size = 226339, upload-time = "2025-02-16T04:28:46.621Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ef/01/984828464c9960036c602753fc0f21f24f0aa9043c18fa3f2f2b66a86340/pyproj-3.7.1-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:5f8d02ef4431dee414d1753d13fa82a21a2f61494737b5f642ea668d76164d6d", size = 6253062, upload-time = "2025-02-16T04:28:27.861Z" }, - { url = "https://files.pythonhosted.org/packages/68/65/6ecdcdc829811a2c160cdfe2f068a009fc572fd4349664f758ccb0853a7c/pyproj-3.7.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:0b853ae99bda66cbe24b4ccfe26d70601d84375940a47f553413d9df570065e0", size = 4660548, upload-time = "2025-02-16T04:28:29.526Z" }, - { url = "https://files.pythonhosted.org/packages/67/da/dda94c4490803679230ba4c17a12f151b307a0d58e8110820405ca2d98db/pyproj-3.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83db380c52087f9e9bdd8a527943b2e7324f275881125e39475c4f9277bdeec4", size = 9662464, upload-time = "2025-02-16T04:28:31.437Z" }, - { url = "https://files.pythonhosted.org/packages/6f/57/f61b7d22c91ae1d12ee00ac4c0038714e774ebcd851b9133e5f4f930dd40/pyproj-3.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b35ed213892e211a3ce2bea002aa1183e1a2a9b79e51bb3c6b15549a831ae528", size = 9497461, upload-time = "2025-02-16T04:28:33.848Z" }, - { url = "https://files.pythonhosted.org/packages/b7/f6/932128236f79d2ac7d39fe1a19667fdf7155d9a81d31fb9472a7a497790f/pyproj-3.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a8b15b0463d1303bab113d1a6af2860a0d79013c3a66fcc5475ce26ef717fd4f", size = 10708869, upload-time = "2025-02-16T04:28:37.34Z" }, - { url = "https://files.pythonhosted.org/packages/1d/0d/07ac7712994454a254c383c0d08aff9916a2851e6512d59da8dc369b1b02/pyproj-3.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:87229e42b75e89f4dad6459200f92988c5998dfb093c7c631fb48524c86cd5dc", size = 10729260, upload-time = "2025-02-16T04:28:40.639Z" }, - { url = "https://files.pythonhosted.org/packages/b0/d0/9c604bc72c37ba69b867b6df724d6a5af6789e8c375022c952f65b2af558/pyproj-3.7.1-cp313-cp313-win32.whl", hash = "sha256:d666c3a3faaf3b1d7fc4a544059c4eab9d06f84a604b070b7aa2f318e227798e", size = 5855462, upload-time = "2025-02-16T04:28:42.827Z" }, - { url = "https://files.pythonhosted.org/packages/98/df/68a2b7f5fb6400c64aad82d72bcc4bc531775e62eedff993a77c780defd0/pyproj-3.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:d3caac7473be22b6d6e102dde6c46de73b96bc98334e577dfaee9886f102ea2e", size = 6266573, upload-time = "2025-02-16T04:28:44.727Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/04/90/67bd7260b4ea9b8b20b4f58afef6c223ecb3abf368eb4ec5bc2cdef81b49/pyproj-3.7.2.tar.gz", hash = "sha256:39a0cf1ecc7e282d1d30f36594ebd55c9fae1fda8a2622cee5d100430628f88c", size = 226279, upload-time = "2025-08-14T12:05:42.18Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/14/faf1b90d267cea68d7e70662e7f88cefdb1bc890bd596c74b959e0517a72/pyproj-3.7.2-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:19466e529b1b15eeefdf8ff26b06fa745856c044f2f77bf0edbae94078c1dfa1", size = 6214580, upload-time = "2025-08-14T12:04:28.804Z" }, + { url = "https://files.pythonhosted.org/packages/35/48/da9a45b184d375f62667f62eba0ca68569b0bd980a0bb7ffcc1d50440520/pyproj-3.7.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:c79b9b84c4a626c5dc324c0d666be0bfcebd99f7538d66e8898c2444221b3da7", size = 4615388, upload-time = "2025-08-14T12:04:30.553Z" }, + { url = "https://files.pythonhosted.org/packages/5e/e7/d2b459a4a64bca328b712c1b544e109df88e5c800f7c143cfbc404d39bfb/pyproj-3.7.2-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:ceecf374cacca317bc09e165db38ac548ee3cad07c3609442bd70311c59c21aa", size = 9628455, upload-time = "2025-08-14T12:04:32.435Z" }, + { url = "https://files.pythonhosted.org/packages/f8/85/c2b1706e51942de19076eff082f8495e57d5151364e78b5bef4af4a1d94a/pyproj-3.7.2-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:5141a538ffdbe4bfd157421828bb2e07123a90a7a2d6f30fa1462abcfb5ce681", size = 9514269, upload-time = "2025-08-14T12:04:34.599Z" }, + { url = "https://files.pythonhosted.org/packages/34/38/07a9b89ae7467872f9a476883a5bad9e4f4d1219d31060f0f2b282276cbe/pyproj-3.7.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f000841e98ea99acbb7b8ca168d67773b0191de95187228a16110245c5d954d5", size = 10808437, upload-time = "2025-08-14T12:04:36.485Z" }, + { url = "https://files.pythonhosted.org/packages/12/56/fda1daeabbd39dec5b07f67233d09f31facb762587b498e6fc4572be9837/pyproj-3.7.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8115faf2597f281a42ab608ceac346b4eb1383d3b45ab474fd37341c4bf82a67", size = 10745540, upload-time = "2025-08-14T12:04:38.568Z" }, + { url = "https://files.pythonhosted.org/packages/0d/90/c793182cbba65a39a11db2ac6b479fe76c59e6509ae75e5744c344a0da9d/pyproj-3.7.2-cp313-cp313-win32.whl", hash = "sha256:f18c0579dd6be00b970cb1a6719197fceecc407515bab37da0066f0184aafdf3", size = 5896506, upload-time = "2025-08-14T12:04:41.059Z" }, + { url = "https://files.pythonhosted.org/packages/be/0f/747974129cf0d800906f81cd25efd098c96509026e454d4b66868779ab04/pyproj-3.7.2-cp313-cp313-win_amd64.whl", hash = "sha256:bb41c29d5f60854b1075853fe80c58950b398d4ebb404eb532536ac8d2834ed7", size = 6310195, upload-time = "2025-08-14T12:04:42.974Z" }, + { url = "https://files.pythonhosted.org/packages/82/64/fc7598a53172c4931ec6edf5228280663063150625d3f6423b4c20f9daff/pyproj-3.7.2-cp313-cp313-win_arm64.whl", hash = "sha256:2b617d573be4118c11cd96b8891a0b7f65778fa7733ed8ecdb297a447d439100", size = 6230748, upload-time = "2025-08-14T12:04:44.491Z" }, + { url = "https://files.pythonhosted.org/packages/aa/f0/611dd5cddb0d277f94b7af12981f56e1441bf8d22695065d4f0df5218498/pyproj-3.7.2-cp313-cp313t-macosx_13_0_x86_64.whl", hash = "sha256:d27b48f0e81beeaa2b4d60c516c3a1cfbb0c7ff6ef71256d8e9c07792f735279", size = 6241729, upload-time = "2025-08-14T12:04:46.274Z" }, + { url = "https://files.pythonhosted.org/packages/15/93/40bd4a6c523ff9965e480870611aed7eda5aa2c6128c6537345a2b77b542/pyproj-3.7.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:55a3610d75023c7b1c6e583e48ef8f62918e85a2ae81300569d9f104d6684bb6", size = 4652497, upload-time = "2025-08-14T12:04:48.203Z" }, + { url = "https://files.pythonhosted.org/packages/1b/ae/7150ead53c117880b35e0d37960d3138fe640a235feb9605cb9386f50bb0/pyproj-3.7.2-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:8d7349182fa622696787cc9e195508d2a41a64765da9b8a6bee846702b9e6220", size = 9942610, upload-time = "2025-08-14T12:04:49.652Z" }, + { url = "https://files.pythonhosted.org/packages/d8/17/7a4a7eafecf2b46ab64e5c08176c20ceb5844b503eaa551bf12ccac77322/pyproj-3.7.2-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:d230b186eb876ed4f29a7c5ee310144c3a0e44e89e55f65fb3607e13f6db337c", size = 9692390, upload-time = "2025-08-14T12:04:51.731Z" }, + { url = "https://files.pythonhosted.org/packages/c3/55/ae18f040f6410f0ea547a21ada7ef3e26e6c82befa125b303b02759c0e9d/pyproj-3.7.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:237499c7862c578d0369e2b8ac56eec550e391a025ff70e2af8417139dabb41c", size = 11047596, upload-time = "2025-08-14T12:04:53.748Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2e/d3fff4d2909473f26ae799f9dda04caa322c417a51ff3b25763f7d03b233/pyproj-3.7.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8c225f5978abd506fd9a78eaaf794435e823c9156091cabaab5374efb29d7f69", size = 10896975, upload-time = "2025-08-14T12:04:55.875Z" }, + { url = "https://files.pythonhosted.org/packages/f2/bc/8fc7d3963d87057b7b51ebe68c1e7c51c23129eee5072ba6b86558544a46/pyproj-3.7.2-cp313-cp313t-win32.whl", hash = "sha256:2da731876d27639ff9d2d81c151f6ab90a1546455fabd93368e753047be344a2", size = 5953057, upload-time = "2025-08-14T12:04:58.466Z" }, + { url = "https://files.pythonhosted.org/packages/cc/27/ea9809966cc47d2d51e6d5ae631ea895f7c7c7b9b3c29718f900a8f7d197/pyproj-3.7.2-cp313-cp313t-win_amd64.whl", hash = "sha256:f54d91ae18dd23b6c0ab48126d446820e725419da10617d86a1b69ada6d881d3", size = 6375414, upload-time = "2025-08-14T12:04:59.861Z" }, + { url = "https://files.pythonhosted.org/packages/5b/f8/1ef0129fba9a555c658e22af68989f35e7ba7b9136f25758809efec0cd6e/pyproj-3.7.2-cp313-cp313t-win_arm64.whl", hash = "sha256:fc52ba896cfc3214dc9f9ca3c0677a623e8fdd096b257c14a31e719d21ff3fdd", size = 6262501, upload-time = "2025-08-14T12:05:01.39Z" }, + { url = "https://files.pythonhosted.org/packages/42/17/c2b050d3f5b71b6edd0d96ae16c990fdc42a5f1366464a5c2772146de33a/pyproj-3.7.2-cp314-cp314-macosx_13_0_x86_64.whl", hash = "sha256:2aaa328605ace41db050d06bac1adc11f01b71fe95c18661497763116c3a0f02", size = 6214541, upload-time = "2025-08-14T12:05:03.166Z" }, + { url = "https://files.pythonhosted.org/packages/03/68/68ada9c8aea96ded09a66cfd9bf87aa6db8c2edebe93f5bf9b66b0143fbc/pyproj-3.7.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:35dccbce8201313c596a970fde90e33605248b66272595c061b511c8100ccc08", size = 4617456, upload-time = "2025-08-14T12:05:04.563Z" }, + { url = "https://files.pythonhosted.org/packages/81/e4/4c50ceca7d0e937977866b02cb64e6ccf4df979a5871e521f9e255df6073/pyproj-3.7.2-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:25b0b7cb0042444c29a164b993c45c1b8013d6c48baa61dc1160d834a277e83b", size = 9615590, upload-time = "2025-08-14T12:05:06.094Z" }, + { url = "https://files.pythonhosted.org/packages/05/1e/ada6fb15a1d75b5bd9b554355a69a798c55a7dcc93b8d41596265c1772e3/pyproj-3.7.2-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:85def3a6388e9ba51f964619aa002a9d2098e77c6454ff47773bb68871024281", size = 9474960, upload-time = "2025-08-14T12:05:07.973Z" }, + { url = "https://files.pythonhosted.org/packages/51/07/9d48ad0a8db36e16f842f2c8a694c1d9d7dcf9137264846bef77585a71f3/pyproj-3.7.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b1bccefec3875ab81eabf49059e2b2ea77362c178b66fd3528c3e4df242f1516", size = 10799478, upload-time = "2025-08-14T12:05:14.102Z" }, + { url = "https://files.pythonhosted.org/packages/85/cf/2f812b529079f72f51ff2d6456b7fef06c01735e5cfd62d54ffb2b548028/pyproj-3.7.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d5371ca114d6990b675247355a801925814eca53e6c4b2f1b5c0a956336ee36e", size = 10710030, upload-time = "2025-08-14T12:05:16.317Z" }, + { url = "https://files.pythonhosted.org/packages/99/9b/4626a19e1f03eba4c0e77b91a6cf0f73aa9cb5d51a22ee385c22812bcc2c/pyproj-3.7.2-cp314-cp314-win32.whl", hash = "sha256:77f066626030f41be543274f5ac79f2a511fe89860ecd0914f22131b40a0ec25", size = 5991181, upload-time = "2025-08-14T12:05:19.492Z" }, + { url = "https://files.pythonhosted.org/packages/04/b2/5a6610554306a83a563080c2cf2c57565563eadd280e15388efa00fb5b33/pyproj-3.7.2-cp314-cp314-win_amd64.whl", hash = "sha256:5a964da1696b8522806f4276ab04ccfff8f9eb95133a92a25900697609d40112", size = 6434721, upload-time = "2025-08-14T12:05:21.022Z" }, + { url = "https://files.pythonhosted.org/packages/ae/ce/6c910ea2e1c74ef673c5d48c482564b8a7824a44c4e35cca2e765b68cfcc/pyproj-3.7.2-cp314-cp314-win_arm64.whl", hash = "sha256:e258ab4dbd3cf627809067c0ba8f9884ea76c8e5999d039fb37a1619c6c3e1f6", size = 6363821, upload-time = "2025-08-14T12:05:22.627Z" }, + { url = "https://files.pythonhosted.org/packages/e4/e4/5532f6f7491812ba782a2177fe9de73fd8e2912b59f46a1d056b84b9b8f2/pyproj-3.7.2-cp314-cp314t-macosx_13_0_x86_64.whl", hash = "sha256:bbbac2f930c6d266f70ec75df35ef851d96fdb3701c674f42fd23a9314573b37", size = 6241773, upload-time = "2025-08-14T12:05:24.577Z" }, + { url = "https://files.pythonhosted.org/packages/20/1f/0938c3f2bbbef1789132d1726d9b0e662f10cfc22522743937f421ad664e/pyproj-3.7.2-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:b7544e0a3d6339dc9151e9c8f3ea62a936ab7cc446a806ec448bbe86aebb979b", size = 4652537, upload-time = "2025-08-14T12:05:26.391Z" }, + { url = "https://files.pythonhosted.org/packages/c7/a8/488b1ed47d25972f33874f91f09ca8f2227902f05f63a2b80dc73e7b1c97/pyproj-3.7.2-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:f7f5133dca4c703e8acadf6f30bc567d39a42c6af321e7f81975c2518f3ed357", size = 9940864, upload-time = "2025-08-14T12:05:27.985Z" }, + { url = "https://files.pythonhosted.org/packages/c7/cc/7f4c895d0cb98e47b6a85a6d79eaca03eb266129eed2f845125c09cf31ff/pyproj-3.7.2-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:5aff3343038d7426aa5076f07feb88065f50e0502d1b0d7c22ddfdd2c75a3f81", size = 9688868, upload-time = "2025-08-14T12:05:30.425Z" }, + { url = "https://files.pythonhosted.org/packages/b2/b7/c7e306b8bb0f071d9825b753ee4920f066c40fbfcce9372c4f3cfb2fc4ed/pyproj-3.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:b0552178c61f2ac1c820d087e8ba6e62b29442debddbb09d51c4bf8acc84d888", size = 11045910, upload-time = "2025-08-14T12:05:32.507Z" }, + { url = "https://files.pythonhosted.org/packages/42/fb/538a4d2df695980e2dde5c04d965fbdd1fe8c20a3194dc4aaa3952a4d1be/pyproj-3.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:47d87db2d2c436c5fd0409b34d70bb6cdb875cca2ebe7a9d1c442367b0ab8d59", size = 10895724, upload-time = "2025-08-14T12:05:35.465Z" }, + { url = "https://files.pythonhosted.org/packages/e8/8b/a3f0618b03957de9db5489a04558a8826f43906628bb0b766033aa3b5548/pyproj-3.7.2-cp314-cp314t-win32.whl", hash = "sha256:c9b6f1d8ad3e80a0ee0903a778b6ece7dca1d1d40f6d114ae01bc8ddbad971aa", size = 6056848, upload-time = "2025-08-14T12:05:37.553Z" }, + { url = "https://files.pythonhosted.org/packages/bc/56/413240dd5149dd3291eda55aa55a659da4431244a2fd1319d0ae89407cfb/pyproj-3.7.2-cp314-cp314t-win_amd64.whl", hash = "sha256:1914e29e27933ba6f9822663ee0600f169014a2859f851c054c88cf5ea8a333c", size = 6517676, upload-time = "2025-08-14T12:05:39.126Z" }, + { url = "https://files.pythonhosted.org/packages/15/73/a7141a1a0559bf1a7aa42a11c879ceb19f02f5c6c371c6d57fd86cefd4d1/pyproj-3.7.2-cp314-cp314t-win_arm64.whl", hash = "sha256:d9d25bae416a24397e0d85739f84d323b55f6511e45a522dd7d7eae70d10c7e4", size = 6391844, upload-time = "2025-08-14T12:05:40.745Z" }, ] [[package]] @@ -1160,6 +1557,20 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/29/16/c8a903f4c4dffe7a12843191437d7cd8e32751d5de349d45d3fe69544e87/pytest-8.4.1-py3-none-any.whl", hash = "sha256:539c70ba6fcead8e78eebbf1115e8b589e7565830d7d006a8723f19ac8a0afb7", size = 365474, upload-time = "2025-06-18T05:48:03.955Z" }, ] +[[package]] +name = "pytest-cov" +version = "6.2.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coverage" }, + { name = "pluggy" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/18/99/668cade231f434aaa59bbfbf49469068d2ddd945000621d3d165d2e7dd7b/pytest_cov-6.2.1.tar.gz", hash = "sha256:25cc6cc0a5358204b8108ecedc51a9b57b34cc6b8c967cc2c01a4e00d8a67da2", size = 69432, upload-time = "2025-06-12T10:47:47.684Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/16/4ea354101abb1287856baa4af2732be351c7bee728065aed451b678153fd/pytest_cov-6.2.1-py3-none-any.whl", hash = "sha256:f5bc4c23f42f1cdd23c70b1dab1bbaef4fc505ba950d53e0081d0730dd7e86d5", size = 24644, upload-time = "2025-06-12T10:47:45.932Z" }, +] + [[package]] name = "python-dateutil" version = "2.9.0.post0" @@ -1172,6 +1583,29 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, ] +[[package]] +name = "python-dotenv" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/b0/4bc07ccd3572a2f9df7e6782f52b0c6c90dcbb803ac4a167702d7d0dfe1e/python_dotenv-1.1.1.tar.gz", hash = "sha256:a8a6399716257f45be6a007360200409fce5cda2661e3dec71d23dc15f6189ab", size = 41978, upload-time = "2025-06-24T04:21:07.341Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/ed/539768cf28c661b5b068d66d96a2f155c4971a5d55684a514c1a0e0dec2f/python_dotenv-1.1.1-py3-none-any.whl", hash = "sha256:31f23644fe2602f88ff55e1f5c79ba497e01224ee7737937930c448e4d0e24dc", size = 20556, upload-time = "2025-06-24T04:21:06.073Z" }, +] + +[[package]] +name = "python-jose" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ecdsa" }, + { name = "pyasn1" }, + { name = "rsa" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/77/3a1c9039db7124eb039772b935f2244fbb73fc8ee65b9acf2375da1c07bf/python_jose-3.5.0.tar.gz", hash = "sha256:fb4eaa44dbeb1c26dcc69e4bd7ec54a1cb8dd64d3b4d81ef08d90ff453f2b01b", size = 92726, upload-time = "2025-05-28T17:31:54.288Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/c3/0bd11992072e6a1c513b16500a5d07f91a24017c5909b02c72c62d7ad024/python_jose-3.5.0-py2.py3-none-any.whl", hash = "sha256:abd1202f23d34dfad2c3d28cb8617b90acf34132c7afd60abd0b0b7d3cb55771", size = 34624, upload-time = "2025-05-28T17:31:52.802Z" }, +] + [[package]] name = "python-multipart" version = "0.0.20" @@ -1190,9 +1624,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225, upload-time = "2025-03-25T02:24:58.468Z" }, ] +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309, upload-time = "2024-08-06T20:32:43.4Z" }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679, upload-time = "2024-08-06T20:32:44.801Z" }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428, upload-time = "2024-08-06T20:32:46.432Z" }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361, upload-time = "2024-08-06T20:32:51.188Z" }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523, upload-time = "2024-08-06T20:32:53.019Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660, upload-time = "2024-08-06T20:32:54.708Z" }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597, upload-time = "2024-08-06T20:32:56.985Z" }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527, upload-time = "2024-08-06T20:33:03.001Z" }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" }, +] + [[package]] name = "requests" -version = "2.32.4" +version = "2.32.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, @@ -1200,9 +1651,9 @@ dependencies = [ { name = "idna" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e1/0a/929373653770d8a0d7ea76c37de6e41f11eb07559b103b1c02cafb3f7cf8/requests-2.32.4.tar.gz", hash = "sha256:27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422", size = 135258, upload-time = "2025-06-09T16:43:07.34Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl", hash = "sha256:27babd3cda2a6d50b30443204ee89830707d396671944c998b5975b031ac2b2c", size = 64847, upload-time = "2025-06-09T16:43:05.728Z" }, + { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, ] [[package]] @@ -1219,14 +1670,32 @@ wheels = [ [[package]] name = "scramp" -version = "1.4.5" +version = "1.4.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "asn1crypto" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f9/fa/8f1b99c3f875f334ac782e173ec03c35c246ec7a94fc5dd85153bc1d8285/scramp-1.4.5.tar.gz", hash = "sha256:be3fbe774ca577a7a658117dca014e5d254d158cecae3dd60332dfe33ce6d78e", size = 16169, upload-time = "2024-04-13T12:35:19.617Z" } +sdist = { url = "https://files.pythonhosted.org/packages/58/77/6db18bab446c12cfbee22ca8f65d5b187966bd8f900aeb65db9e60d4be3d/scramp-1.4.6.tar.gz", hash = "sha256:fe055ebbebf4397b9cb323fcc4b299f219cd1b03fd673ca40c97db04ac7d107e", size = 16306, upload-time = "2025-07-05T14:44:03.977Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/bf/54b5d40bea1c1805175ead2d496c267f05eec87561687dd73ab76869d8d9/scramp-1.4.6-py3-none-any.whl", hash = "sha256:a0cf9d2b4624b69bac5432dd69fecfc55a542384fe73c3a23ed9b138cda484e1", size = 12812, upload-time = "2025-07-05T14:44:02.345Z" }, +] + +[[package]] +name = "sentry-sdk" +version = "2.35.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/31/83/055dc157b719651ef13db569bb8cf2103df11174478649735c1b2bf3f6bc/sentry_sdk-2.35.0.tar.gz", hash = "sha256:5ea58d352779ce45d17bc2fa71ec7185205295b83a9dbb5707273deb64720092", size = 343014, upload-time = "2025-08-14T17:11:20.223Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d9/9f/8b2f2749ccfbe4fcef08650896ac47ed919ff25b7ac57b7a1ae7da16c8c3/scramp-1.4.5-py3-none-any.whl", hash = "sha256:50e37c464fc67f37994e35bee4151e3d8f9320e9c204fca83a5d313c121bbbe7", size = 12781, upload-time = "2024-04-13T12:35:17.466Z" }, + { url = "https://files.pythonhosted.org/packages/36/3d/742617a7c644deb0c1628dcf6bb2d2165ab7c6aab56fe5222758994007f8/sentry_sdk-2.35.0-py2.py3-none-any.whl", hash = "sha256:6e0c29b9a5d34de8575ffb04d289a987ff3053cf2c98ede445bea995e3830263", size = 363806, upload-time = "2025-08-14T17:11:18.29Z" }, +] + +[package.optional-dependencies] +fastapi = [ + { name = "fastapi" }, ] [[package]] @@ -1276,23 +1745,36 @@ wheels = [ [[package]] name = "sqlalchemy" -version = "2.0.41" +version = "2.0.43" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "greenlet", marker = "(python_full_version < '3.14' and platform_machine == 'AMD64') or (python_full_version < '3.14' and platform_machine == 'WIN32') or (python_full_version < '3.14' and platform_machine == 'aarch64') or (python_full_version < '3.14' and platform_machine == 'amd64') or (python_full_version < '3.14' and platform_machine == 'ppc64le') or (python_full_version < '3.14' and platform_machine == 'win32') or (python_full_version < '3.14' and platform_machine == 'x86_64')" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/63/66/45b165c595ec89aa7dcc2c1cd222ab269bc753f1fc7a1e68f8481bd957bf/sqlalchemy-2.0.41.tar.gz", hash = "sha256:edba70118c4be3c2b1f90754d308d0b79c6fe2c0fdc52d8ddf603916f83f4db9", size = 9689424, upload-time = "2025-05-14T17:10:32.339Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/bc/d59b5d97d27229b0e009bd9098cd81af71c2fa5549c580a0a67b9bed0496/sqlalchemy-2.0.43.tar.gz", hash = "sha256:788bfcef6787a7764169cfe9859fe425bf44559619e1d9f56f5bddf2ebf6f417", size = 9762949, upload-time = "2025-08-11T14:24:58.438Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d3/ad/2e1c6d4f235a97eeef52d0200d8ddda16f6c4dd70ae5ad88c46963440480/sqlalchemy-2.0.41-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4eeb195cdedaf17aab6b247894ff2734dcead6c08f748e617bfe05bd5a218443", size = 2115491, upload-time = "2025-05-14T17:55:31.177Z" }, - { url = "https://files.pythonhosted.org/packages/cf/8d/be490e5db8400dacc89056f78a52d44b04fbf75e8439569d5b879623a53b/sqlalchemy-2.0.41-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d4ae769b9c1c7757e4ccce94b0641bc203bbdf43ba7a2413ab2523d8d047d8dc", size = 2102827, upload-time = "2025-05-14T17:55:34.921Z" }, - { url = "https://files.pythonhosted.org/packages/a0/72/c97ad430f0b0e78efaf2791342e13ffeafcbb3c06242f01a3bb8fe44f65d/sqlalchemy-2.0.41-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a62448526dd9ed3e3beedc93df9bb6b55a436ed1474db31a2af13b313a70a7e1", size = 3225224, upload-time = "2025-05-14T17:50:41.418Z" }, - { url = "https://files.pythonhosted.org/packages/5e/51/5ba9ea3246ea068630acf35a6ba0d181e99f1af1afd17e159eac7e8bc2b8/sqlalchemy-2.0.41-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc56c9788617b8964ad02e8fcfeed4001c1f8ba91a9e1f31483c0dffb207002a", size = 3230045, upload-time = "2025-05-14T17:51:54.722Z" }, - { url = "https://files.pythonhosted.org/packages/78/2f/8c14443b2acea700c62f9b4a8bad9e49fc1b65cfb260edead71fd38e9f19/sqlalchemy-2.0.41-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c153265408d18de4cc5ded1941dcd8315894572cddd3c58df5d5b5705b3fa28d", size = 3159357, upload-time = "2025-05-14T17:50:43.483Z" }, - { url = "https://files.pythonhosted.org/packages/fc/b2/43eacbf6ccc5276d76cea18cb7c3d73e294d6fb21f9ff8b4eef9b42bbfd5/sqlalchemy-2.0.41-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4f67766965996e63bb46cfbf2ce5355fc32d9dd3b8ad7e536a920ff9ee422e23", size = 3197511, upload-time = "2025-05-14T17:51:57.308Z" }, - { url = "https://files.pythonhosted.org/packages/fa/2e/677c17c5d6a004c3c45334ab1dbe7b7deb834430b282b8a0f75ae220c8eb/sqlalchemy-2.0.41-cp313-cp313-win32.whl", hash = "sha256:bfc9064f6658a3d1cadeaa0ba07570b83ce6801a1314985bf98ec9b95d74e15f", size = 2082420, upload-time = "2025-05-14T17:55:52.69Z" }, - { url = "https://files.pythonhosted.org/packages/e9/61/e8c1b9b6307c57157d328dd8b8348ddc4c47ffdf1279365a13b2b98b8049/sqlalchemy-2.0.41-cp313-cp313-win_amd64.whl", hash = "sha256:82ca366a844eb551daff9d2e6e7a9e5e76d2612c8564f58db6c19a726869c1df", size = 2108329, upload-time = "2025-05-14T17:55:54.495Z" }, - { url = "https://files.pythonhosted.org/packages/1c/fc/9ba22f01b5cdacc8f5ed0d22304718d2c758fce3fd49a5372b886a86f37c/sqlalchemy-2.0.41-py3-none-any.whl", hash = "sha256:57df5dc6fdb5ed1a88a1ed2195fd31927e705cad62dedd86b46972752a80f576", size = 1911224, upload-time = "2025-05-14T17:39:42.154Z" }, + { url = "https://files.pythonhosted.org/packages/41/1c/a7260bd47a6fae7e03768bf66451437b36451143f36b285522b865987ced/sqlalchemy-2.0.43-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e7c08f57f75a2bb62d7ee80a89686a5e5669f199235c6d1dac75cd59374091c3", size = 2130598, upload-time = "2025-08-11T15:51:15.903Z" }, + { url = "https://files.pythonhosted.org/packages/8e/84/8a337454e82388283830b3586ad7847aa9c76fdd4f1df09cdd1f94591873/sqlalchemy-2.0.43-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:14111d22c29efad445cd5021a70a8b42f7d9152d8ba7f73304c4d82460946aaa", size = 2118415, upload-time = "2025-08-11T15:51:17.256Z" }, + { url = "https://files.pythonhosted.org/packages/cf/ff/22ab2328148492c4d71899d62a0e65370ea66c877aea017a244a35733685/sqlalchemy-2.0.43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21b27b56eb2f82653168cefe6cb8e970cdaf4f3a6cb2c5e3c3c1cf3158968ff9", size = 3248707, upload-time = "2025-08-11T15:52:38.444Z" }, + { url = "https://files.pythonhosted.org/packages/dc/29/11ae2c2b981de60187f7cbc84277d9d21f101093d1b2e945c63774477aba/sqlalchemy-2.0.43-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c5a9da957c56e43d72126a3f5845603da00e0293720b03bde0aacffcf2dc04f", size = 3253602, upload-time = "2025-08-11T15:56:37.348Z" }, + { url = "https://files.pythonhosted.org/packages/b8/61/987b6c23b12c56d2be451bc70900f67dd7d989d52b1ee64f239cf19aec69/sqlalchemy-2.0.43-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d79f9fdc9584ec83d1b3c75e9f4595c49017f5594fee1a2217117647225d738", size = 3183248, upload-time = "2025-08-11T15:52:39.865Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/29d216002d4593c2ce1c0ec2cec46dda77bfbcd221e24caa6e85eff53d89/sqlalchemy-2.0.43-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9df7126fd9db49e3a5a3999442cc67e9ee8971f3cb9644250107d7296cb2a164", size = 3219363, upload-time = "2025-08-11T15:56:39.11Z" }, + { url = "https://files.pythonhosted.org/packages/b6/e4/bd78b01919c524f190b4905d47e7630bf4130b9f48fd971ae1c6225b6f6a/sqlalchemy-2.0.43-cp313-cp313-win32.whl", hash = "sha256:7f1ac7828857fcedb0361b48b9ac4821469f7694089d15550bbcf9ab22564a1d", size = 2096718, upload-time = "2025-08-11T15:55:05.349Z" }, + { url = "https://files.pythonhosted.org/packages/ac/a5/ca2f07a2a201f9497de1928f787926613db6307992fe5cda97624eb07c2f/sqlalchemy-2.0.43-cp313-cp313-win_amd64.whl", hash = "sha256:971ba928fcde01869361f504fcff3b7143b47d30de188b11c6357c0505824197", size = 2123200, upload-time = "2025-08-11T15:55:07.932Z" }, + { url = "https://files.pythonhosted.org/packages/b8/d9/13bdde6521f322861fab67473cec4b1cc8999f3871953531cf61945fad92/sqlalchemy-2.0.43-py3-none-any.whl", hash = "sha256:1681c21dd2ccee222c2fe0bef671d1aef7c504087c9c4e800371cfcc8ac966fc", size = 1924759, upload-time = "2025-08-11T15:39:53.024Z" }, +] + +[[package]] +name = "sqlalchemy-continuum" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sqlalchemy" }, + { name = "sqlalchemy-utils" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/81/76e0b16ca8575463ba83e014afe8a89443bbc6a896dad3c48068ce571611/sqlalchemy_continuum-1.4.2.tar.gz", hash = "sha256:0fd2be79f718eda47c2206879d92ec4ebf1889364637b3caf3ee5d34bd19c8e3", size = 81713, upload-time = "2024-05-02T20:03:43.192Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/d4/c404ce46dc2d53e536f470e76d7f657de46cf091d5ba05d19040d420d825/SQLAlchemy_Continuum-1.4.2-py3-none-any.whl", hash = "sha256:154588d79deb8b1683b5f39c130e6f0ad793c0b2f27e8c210565c23fb6fe74de", size = 44789, upload-time = "2024-05-02T20:03:41.009Z" }, ] [[package]] @@ -1310,35 +1792,44 @@ wheels = [ [[package]] name = "sqlalchemy-utils" -version = "0.41.2" +version = "0.42.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "sqlalchemy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/4d/bf/abfd5474cdd89ddd36dbbde9c6efba16bfa7f5448913eba946fed14729da/SQLAlchemy-Utils-0.41.2.tar.gz", hash = "sha256:bc599c8c3b3319e53ce6c5c3c471120bd325d0071fb6f38a10e924e3d07b9990", size = 138017, upload-time = "2024-03-24T15:17:28.196Z" } +sdist = { url = "https://files.pythonhosted.org/packages/63/80/4e15fdcfc25a2226122bf316f0ebac86d840ab3fb38b38ca4cabc395865e/sqlalchemy_utils-0.42.0.tar.gz", hash = "sha256:6d1ecd3eed8b941f0faf8a531f5d5cee7cffa2598fcf8163de8c31c7a417a5e0", size = 130531, upload-time = "2025-08-30T18:43:41.904Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/f0/dc4757b83ac1ab853cf222df8535ed73973e0c203d983982ba7b8bc60508/SQLAlchemy_Utils-0.41.2-py3-none-any.whl", hash = "sha256:85cf3842da2bf060760f955f8467b87983fb2e30f1764fd0e24a48307dc8ec6e", size = 93083, upload-time = "2024-03-24T15:17:24.533Z" }, + { url = "https://files.pythonhosted.org/packages/52/86/21e97809b017a4ebc88971eea335130782421851b0ed8dc3ab6126b479f1/sqlalchemy_utils-0.42.0-py3-none-any.whl", hash = "sha256:c8c0b7f00f4734f6f20e9a4d06b39d79d58c8629cba50924fcaeb20e28eb4f48", size = 91744, upload-time = "2025-08-30T18:43:40.199Z" }, ] [[package]] name = "starlette" -version = "0.46.2" +version = "0.47.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ce/20/08dfcd9c983f6a6f4a1000d934b9e6d626cff8d2eeb77a89a68eef20a2b7/starlette-0.46.2.tar.gz", hash = "sha256:7f7361f34eed179294600af672f565727419830b54b7b084efe44bb82d2fccd5", size = 2580846, upload-time = "2025-04-13T13:56:17.942Z" } +sdist = { url = "https://files.pythonhosted.org/packages/15/b9/cc3017f9a9c9b6e27c5106cc10cc7904653c3eec0729793aec10479dd669/starlette-0.47.3.tar.gz", hash = "sha256:6bc94f839cc176c4858894f1f8908f0ab79dfec1a6b8402f6da9be26ebea52e9", size = 2584144, upload-time = "2025-08-24T13:36:42.122Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8b/0c/9d30a4ebeb6db2b25a841afbb80f6ef9a854fc3b41be131d249a977b4959/starlette-0.46.2-py3-none-any.whl", hash = "sha256:595633ce89f8ffa71a015caed34a5b2dc1c0cdb3f0f1fbd1e69339cf2abeec35", size = 72037, upload-time = "2025-04-13T13:56:16.21Z" }, + { url = "https://files.pythonhosted.org/packages/ce/fd/901cfa59aaa5b30a99e16876f11abe38b59a1a2c51ffb3d7142bb6089069/starlette-0.47.3-py3-none-any.whl", hash = "sha256:89c0778ca62a76b826101e7c709e70680a1699ca7da6b44d38eb0a7e61fe4b51", size = 72991, upload-time = "2025-08-24T13:36:40.887Z" }, +] + +[[package]] +name = "types-pytz" +version = "2025.2.0.20250809" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/07/e2/c774f754de26848f53f05defff5bb21dd9375a059d1ba5b5ea943cf8206e/types_pytz-2025.2.0.20250809.tar.gz", hash = "sha256:222e32e6a29bb28871f8834e8785e3801f2dc4441c715cd2082b271eecbe21e5", size = 10876, upload-time = "2025-08-09T03:14:17.453Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/d0/91c24fe54e565f2344d7a6821e6c6bb099841ef09007ea6321a0bac0f808/types_pytz-2025.2.0.20250809-py3-none-any.whl", hash = "sha256:4f55ed1b43e925cf851a756fe1707e0f5deeb1976e15bf844bcaa025e8fbd0db", size = 10095, upload-time = "2025-08-09T03:14:16.674Z" }, ] [[package]] name = "typing-extensions" -version = "4.14.0" +version = "4.15.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d1/bc/51647cd02527e87d05cb083ccc402f93e441606ff1f01739a62c8ad09ba5/typing_extensions-4.14.0.tar.gz", hash = "sha256:8676b788e32f02ab42d9e7c61324048ae4c6d844a399eebace3d4979d75ceef4", size = 107423, upload-time = "2025-06-02T14:52:11.399Z" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl", hash = "sha256:a1514509136dd0b477638fc68d6a91497af5076466ad0fa6c338e44e359944af", size = 43839, upload-time = "2025-06-02T14:52:10.026Z" }, + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, ] [[package]] @@ -1384,6 +1875,20 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d2/e2/dc81b1bd1dcfe91735810265e9d26bc8ec5da45b4c0f6237e286819194c3/uvicorn-0.35.0-py3-none-any.whl", hash = "sha256:197535216b25ff9b785e29a0b79199f55222193d47f820816e7da751e9bc8d4a", size = 66406, upload-time = "2025-06-28T16:15:44.816Z" }, ] +[[package]] +name = "virtualenv" +version = "20.32.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "distlib" }, + { name = "filelock" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a9/96/0834f30fa08dca3738614e6a9d42752b6420ee94e58971d702118f7cfd30/virtualenv-20.32.0.tar.gz", hash = "sha256:886bf75cadfdc964674e6e33eb74d787dff31ca314ceace03ca5810620f4ecf0", size = 6076970, upload-time = "2025-07-21T04:09:50.985Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/c6/f8f28009920a736d0df434b52e9feebfb4d702ba942f15338cb4a83eafc1/virtualenv-20.32.0-py3-none-any.whl", hash = "sha256:2c310aecb62e5aa1b06103ed7c2977b81e042695de2697d01017ff0f1034af56", size = 6057761, upload-time = "2025-07-21T04:09:48.059Z" }, +] + [[package]] name = "yarl" version = "1.20.1"