diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6abab421058..da9f9399d77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,10 +14,6 @@ variables: DOCKERHUB_PASSWORD: DOCKERHUB_PASSWORD DOCKER_TOKEN: DOCKER_TOKEN registry: https://registry.hub.docker.com/ - #EKS Default current max - KUBERNETES_CPU_REQUEST: "2" - KUBERNETES_MEMORY_REQUEST: "8Gi" - KUBERNETES_MEMORY_LIMIT: "8Gi" #Circle CI need to replace #CIRCLE_PROJECT_USERNAME: "my-username" # Replace with the actual namespace @@ -32,16 +28,16 @@ variables: GOLANGCI_LINT_VERBOSE: "-v" # Specify the environment: loadtest, demo, exp - DP3_ENV: &dp3_env demo + DP3_ENV: &dp3_env placeholder_env # Specify the branch to deploy - DP3_BRANCH: &dp3_branch B-18585-gitlab-deploy + DP3_BRANCH: &dp3_branch placeholder_branch_name # Ignore branches for integration tests - INTEGRATION_IGNORE_BRANCH: &integration_ignore_branch B-18585-gitlab-deploy - INTEGRATION_MTLS_IGNORE_BRANCH: &integration_mtls_ignore_branch B-18585-gitlab-deploy - CLIENT_IGNORE_BRANCH: &client_ignore_branch B-18585-gitlab-deploy - SERVER_IGNORE_BRANCH: &server_ignore_branch B-18585-gitlab-deploy + INTEGRATION_IGNORE_BRANCH: &integration_ignore_branch placeholder_branch_name + INTEGRATION_MTLS_IGNORE_BRANCH: &integration_mtls_ignore_branch placeholder_branch_name + CLIENT_IGNORE_BRANCH: &client_ignore_branch placeholder_branch_name + SERVER_IGNORE_BRANCH: &server_ignore_branch placeholder_branch_name stages: - pre_checks @@ -49,6 +45,9 @@ stages: - test - push - deploy +- prod_approval +- push_prd +- deploy_prd #anchors #set safe directory and path @@ -57,6 +56,92 @@ stages: - export PATH=${PATH}:${GOPATH}/bin:~/transcom/mymove/builds/milmove/mymove - export REACT_APP_ERROR_LOGGING=otel +.announce_failure: &announce_failure + - if [[ "$CI_COMMIT_BRANCH" == "main" && "$CI_JOB_STATUS" == "failed" ]]; then + echo "Announcing broken branch in GitLab CI" + fi + +.setup_aws_vars_dp3: &setup_aws_vars_dp3 + - if [[ "$DP3_ENV" == "exp" OR "$DP3_ENV" == "loadtest" OR "$DP3_ENV" == "demo" ]]; then + export AWS_DEFAULT_REGION=$(eval echo \$${DP3_ENV^^}_REGION) + export AWS_ACCOUNT_ID=$(eval echo \$${DP3_ENV^^}_ACCOUNT_ID) + export AWS_ACCESS_KEY_ID=$(eval echo \$${DP3_ENV^^}_ACCESS_KEY_ID) + export AWS_SECRET_ACCESS_KEY=$(eval echo \$${DP3_ENV^^}_SECRET_ACCESS_KEY) + fi + +.setup_tls_vars_dp3: &setup_tls_vars_dp3 + - if [[ "$DP3_ENV" == "exp" OR "$DP3_ENV" == "loadtest" OR "$DP3_ENV" == "demo" ]]; then + export TLS_CERT=$(eval echo \$${DP3_ENV^^}_DP3_CERT) + export TLS_KEY=$(eval echo \$${DP3_ENV^^}_DP3_KEY) + export TLS_CA=$(eval echo \$${DP3_ENV^^}_DP3_CA) + fi + +.setup_aws_vars_stg: &setup_aws_vars_stg + - export AWS_DEFAULT_REGION=$STG_REGION + - export AWS_ACCOUNT_ID=$STG_ACCOUNT_ID + - export AWS_ACCESS_KEY_ID=$STG_ACCESS_KEY_ID + - export AWS_SECRET_ACCESS_KEY=$STG_SECRET_ACCESS_KEY + - export SERVICE_RESERVATION_CPU=2048 + - export SERVICE_RESERVATION_MEM=4096 + +.setup_tls_vars_stg: &setup_tls_vars_stg + - export TLS_CERT=$STG_MOVE_MIL_DOD_TLS_CERT + - export TLS_KEY=$STG_MOVE_MIL_DOD_TLS_KEY + - export TLS_CA=$STG_MOVE_MIL_DOD_TLS_CA + +.setup_aws_vars_prd: &setup_aws_vars_prd + - export AWS_DEFAULT_REGION=$PRD_REGION + - export AWS_ACCOUNT_ID=$PRD_ACCOUNT_ID + - export AWS_ACCESS_KEY_ID=$PRD_ACCESS_KEY_ID + - export AWS_SECRET_ACCESS_KEY=$PRD_SECRET_ACCESS_KEY + +.setup_tls_vars_prd: &setup_tls_vars_prd + - export TLS_CERT=$PRD_MOVE_MIL_DOD_TLS_CERT + - export TLS_KEY=$PRD_MOVE_MIL_DOD_TLS_KEY + - export TLS_CA=$PRD_MOVE_MIL_DOD_TLS_CA + +.setup_release_dp3: &setup_release_dp3 + #if demo/loadtest/exp + - export ECR_REPOSITORY_URI=$(eval echo \$${DP3_ENV^^}_ACCOUNT_ID).dkr.ecr.$(eval echo \$${DP3_ENV^^}_REGION).amazonaws.com + - export APP_DOCKER_FILE=Dockerfile.dp3 + - export TASK_DOCKER_FILE=Dockerfile.tasks_dp3 + - export APP_ENVIRONMENT=$DPS_ENV + - echo ${ECR_REPOSITORY_URI} + +.setup_release_stg: &setup_release_stg + #if main + - export ECR_REPOSITORY_URI=${STG_ACCOUNT_ID}.dkr.ecr.${STG_REGION}.amazonaws.com + - export APP_DOCKER_FILE=Dockerfile.dp3 + - export TASK_DOCKER_FILE=Dockerfile.tasks_dp3 + #TODO: update demo to stg + - export APP_ENVIRONMENT=demo + - echo ${ECR_REPOSITORY_URI} + +.setup_release_prd: &setup_release_prd + #build off prd variables + - export ECR_REPOSITORY_URI=${PRD_ACCOUNT_ID}.dkr.ecr.${PRD_REGION}.amazonaws.com + - export APP_DOCKER_FILE=Dockerfile.dp3 + - export TASK_DOCKER_FILE=Dockerfile.tasks_dp3 + #TODO: update exp to prod + - export APP_ENVIRONMENT=exp + - echo ${ECR_REPOSITORY_URI} + +.kaniko_before_setup: &kaniko_before_setup + # prep login for kaniko + mkdir -p /kaniko/.docker + echo "Simulating Docker image build setup..." + echo "{\"credHelpers\":{\"${ECR_REPOSITORY_URI}\":\"ecr-login\"}}" > /kaniko/.docker/config.json + +.check_dp3: &check_dp3 + - if: $DP3_ENV == "exp" || $DP3_ENV == "loadtest" || $DP3_ENV == "demo" + +.check_main: &check_main + - if: '$CI_COMMIT_BRANCH == "main"' + +.check_debug: &check_debug + - if: '$debug == "true"' + + sast: stage: pre_checks include: @@ -87,16 +172,25 @@ anti_virus: --tempdir=/tmp \ $CI_PROJECT_DIR after_script: - - echo "Anti-virus scan completed. Replace with failure announcement logic if needed." + - *announce_failure + rules: + - *check_main pre_deps_golang: stage: pre_checks image: $DOCKER_APP_IMAGE - before_script: *setup_milmove_env + before_script: + - *setup_milmove_env + variables: + KUBERNETES_CPU_REQUEST: "2" + KUBERNETES_MEMORY_REQUEST: "4Gi" + KUBERNETES_MEMORY_LIMIT: "4Gi" script: - for i in $(seq 1 5); do go mod download && break || s=$? && sleep 5; done; (exit $s) - scripts/check-generated-code go.sum - make bin/swagger + after_script: + - *announce_failure artifacts: paths: - bin/ @@ -126,10 +220,78 @@ pre_deps_yarn: artifacts: paths: - ~/.cache/yarn + after_script: + - *announce_failure + +check_generated_code: + stage: pre_checks + image: $DOCKER_APP_IMAGE # Replace with the appropriate Docker image + needs: + - pre_deps_golang + before_script: + - *setup_milmove_env + script: + - make server_generate mocks_generate + - scripts/check-generated-code pkg/gen/ $(find . -type d -name "*mocks" -exec echo -n '{} ' \;) + after_script: + - *announce_failure + rules: + - *check_debug + + +check_tls_certificate_dp3: + stage: pre_checks + image: $DOCKER_APP_IMAGE # Replace with your appropriate Docker image. + before_script: + - *setup_aws_vars_dp3 + - *setup_tls_vars_dp3 + - *announce_failure + script: + # Check if we are using a DP3 environment + - echo "Checking if we are using a DP3 environment at all..." + - | + if [[ $DP3_ENV != "demo" && $DP3_ENV != "exp" && $DP3_ENV != "loadtest" ]]; then + echo "Not a DP3 environment. Skipping TLS checks." + exit 0 + fi + - echo "Running TLS pair check..." + - /usr/local/bin/check-tls-pair "${TLS_KEY}" "${TLS_CERT}" + after_script: + - *announce_failure + rules: + - *check_dp3 + +check_tls_certificate_stg: + stage: pre_checks + image: $DOCKER_APP_IMAGE # This can reB-18585-gitlab-pipeline-work unchanged, or you can use a lightweight image since no real work is done. + before_script: + - *setup_aws_vars_stg + - *setup_tls_vars_stg + script: + - echo "Running TLS pair check..." + - /usr/local/bin/check-tls-pair "${TLS_KEY}" "${TLS_CERT}" + after_script: + - *announce_failure + +check_tls_certificate_prd: + stage: pre_checks + image: $DOCKER_APP_IMAGE + before_script: + - *setup_tls_vars_prd + - *setup_aws_vars_prd + script: + - echo "Running TLS pair check for PRD environment..." + - /usr/local/bin/check-tls-pair "${TLS_KEY}" "${TLS_CERT}" + after_script: + - *announce_failure compile_app_client: stage: build image: $DOCKER_APP_IMAGE + variables: + KUBERNETES_CPU_REQUEST: "2" + KUBERNETES_MEMORY_REQUEST: "8Gi" + KUBERNETES_MEMORY_LIMIT: "8Gi" before_script: *setup_milmove_env needs: - pre_deps_yarn @@ -147,10 +309,17 @@ compile_app_client: - yarn.lock - eslint-plugin-ato expire_in: 1 week + after_script: + - *announce_failure + compile_app_server: stage: build image: $DOCKER_APP_IMAGE + variables: + KUBERNETES_CPU_REQUEST: "2" + KUBERNETES_MEMORY_REQUEST: "4Gi" + KUBERNETES_MEMORY_LIMIT: "4Gi" needs: - pre_deps_golang - pre_deps_yarn @@ -175,9 +344,497 @@ compile_app_server: - pkg/testdatagen/testdata - /builds/milmove/mymove/config/otel/* expire_in: 1 week + after_script: + - *announce_failure + +build_push_app_stg: + stage: push + environment: stg + image: + name: gcr.io/kaniko-project/executor:v1.14.0-debug + entrypoint: [""] + needs: + - compile_app_client + - compile_app_server + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + - *kaniko_before_setup + script: + - echo "Building and Pushing app Docker image..." + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/${APP_DOCKER_FILE}" --destination "${ECR_REPOSITORY_URI}/app:$CI_COMMIT_SHORT_SHA" + after_script: + - *announce_failure + rules: + - *check_main + +build_push_migrations_stg: + stage: push + environment: stg + image: + name: gcr.io/kaniko-project/executor:v1.14.0-debug + entrypoint: [""] + needs: + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + - *kaniko_before_setup + script: + - echo "Building and Pushing migrations Docker image..." + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/Dockerfile.migrations" --destination "${ECR_REPOSITORY_URI}/app-migrations:$CI_COMMIT_SHORT_SHA" + after_script: + - *announce_failure + rules: + - *check_main + +build_push_tasks_stg: + stage: push + environment: stg + image: + name: gcr.io/kaniko-project/executor:v1.14.0-debug + entrypoint: [""] + needs: + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + - *kaniko_before_setup + script: + - echo "Building tasks Docker image..." + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/${TASK_DOCKER_FILE}" --destination "${ECR_REPOSITORY_URI}/app-tasks:$CI_COMMIT_SHORT_SHA" + after_script: + - *announce_failure + rules: + - *check_main + +push_otel_collector_image_stg: + stage: push + environment: stg + image: + name: $DOCKER_BASE_IMAGE + entrypoint: [""] + needs: + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + script: + - echo "Logging in to Amazon ECR with Crane..." + - aws ecr get-login-password --region us-gov-west-1 | crane auth login ${ECR_REPOSITORY_URI} -u AWS --password-stdin + + - echo "Pulling the AWS OTel Collector image from the public registry with Crane..." + - crane pull --insecure public.ecr.aws/aws-observability/aws-otel-collector:v0.31.0 image.tar + + - echo "Pushing the image to our private ECR using Crane..." + - crane push --insecure image.tar ${ECR_REPOSITORY_URI}/otel-collector:${CI_COMMIT_SHORT_SHA} + + - echo "Cleaning up the temporary image file..." + - rm image.tar + allow_failure: false + after_script: + - *announce_failure + rules: + - *check_main + +deploy_migrations_stg: + stage: deploy + environment: stg + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - build_push_migrations_stg + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + script: + # Step 1: Get the Digest + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app-migrations --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + # Step 2: Ensure exclusive execution and Snapshot + - echo "Snapshotting database" + - ./scripts/rds-snapshot-app-db "$APP_ENVIRONMENT" + # Step 3: Run migrations + - echo "Running migrations" + - ./scripts/ecs-run-app-migrations-container "${ECR_REPOSITORY_URI}/app-migrations@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + after_script: + - *announce_failure + rules: + - *check_main + +deploy_tasks_stg: + stage: deploy + environment: stg + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - build_push_tasks_stg + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + script: + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app-tasks --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - echo "Deploying GHC fuel price data task service" + - ./scripts/ecs-deploy-task-container save-ghc-fuel-price-data "${ECR_REPOSITORY_URI}/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + - echo "Deploying payment reminder email task service" + - ./scripts/ecs-deploy-task-container send-payment-reminder "${ECR_REPOSITORY_URI}/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + after_script: + - *announce_failure + rules: + - *check_main + +deploy_app_client_tls_stg: + stage: deploy + environment: stg + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - deploy_migrations_stg + - push_otel_collector_image_stg + - compile_app_server + - compile_app_client + variables: + OPEN_TELEMETRY_SIDECAR: "true" + HEALTH_CHECK: "true" + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + script: + # - echo "Comparing against deployed commit" + # - ./scripts/compare-deployed-commit "" $CI_COMMIT_SHA ${TLS_KEY} ${TLS_CERT} ${TLS_CA} + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - echo "Getting otel collector Digest from AWS" + - export OTEL_ECR_DIGEST=$(aws ecr describe-images --repository-name otel-collector --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - export OTEL_COLLECTOR_IMAGE="${ECR_REPOSITORY_URI}/otel-collector@${OTEL_ECR_DIGEST}" + - echo "Deploying app-client-tls service" + - ./scripts/ecs-deploy-service-container app-client-tls "${ECR_REPOSITORY_URI}/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" + - echo "Running Health Check" + # - bin/health-checker --schemes https --hosts api.demo.dp3.us --key ${TLS_KEY} --cert ${TLS_CERT} --ca ${TLS_CA} --tries 10 --backoff 3 --log-level info --timeout 5m + # - echo "Running TLS Check" + # - bin/tls-checker --schemes https --hosts api.demo.dp3.us --key ${TLS_KEY} --cert ${TLS_CERT} --ca ${TLS_CA} --log-level info --timeout 15m + # - echo "Checking deployed commits" + # - ./scripts/check-deployed-commit "api.demo.dp3.us" "$CI_COMMIT_SHA" ${TLS_KEY} ${TLS_CERT} ${TLS_CA} + after_script: + - *announce_failure + rules: + - *check_main + +deploy_app_stg: + stage: deploy + environment: stg + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - build_push_app_stg + - deploy_migrations_stg + - compile_app_server + - compile_app_client + variables: + OPEN_TELEMETRY_SIDECAR: "true" + HEALTH_CHECK: "true" + before_script: + - *setup_aws_vars_stg + - *setup_release_stg + script: + - echo "Comparing against deployed commit" + # - ./scripts/compare-deployed-commit "" "$CI_COMMIT_SHA" "$TLS_KEY" "$TLS_CERT" "$TLS_CA" + - echo "Creating .go-version file if not already present" + - | + if [ -f ".go-version" ]; then + echo ".go-version already exists, no need to re-create" + else + GO_VERSION=$(awk '/golang/ { print $2 }' .tool-versions) + echo "Creating .go-version using version ${GO_VERSION}" + echo $GO_VERSION > .go-version + fi + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - echo "Getting otel collector digest from AWS" + - export OTEL_ECR_DIGEST=$(aws ecr describe-images --repository-name otel-collector --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - export OTEL_COLLECTOR_IMAGE="${ECR_REPOSITORY_URI}/otel-collector@${OTEL_ECR_DIGEST}" + - echo "Deploying app service" + - ./scripts/ecs-deploy-service-container app "${ECR_REPOSITORY_URI}/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" + - echo "Running Health Check" + # - bin/health-checker --schemes https --hosts my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us --tries 10 --backoff 3 --log-level info --timeout 5m + # - echo "Running TLS Check" + # - bin/tls-checker --schemes https --hosts my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us --log-level info --timeout 15m + # - echo "Checking deployed commits" + - ./scripts/check-deployed-commit "my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us" "$CI_COMMIT_SHA" + after_script: + - *announce_failure + rules: + - *check_main + +prod_approval: + stage: prod_approval + environment: prd_approval + image: + name: gcr.io/kaniko-project/executor:v1.14.0-debug + entrypoint: [""] + needs: + - compile_app_client + - compile_app_server + - deploy_app_stg + - deploy_app_client_tls_stg + script: + - echo "No Op Prd" + after_script: + - *announce_failure + rules: + - *check_main + +build_push_app_prd: + stage: push_prd + environment: prd + image: + name: gcr.io/kaniko-project/executor:v1.14.0-debug + entrypoint: [""] + needs: + - prod_approval + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + - *kaniko_before_setup + script: + - echo "Building and Pushing app Docker image..." + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/${APP_DOCKER_FILE}" --destination "${ECR_REPOSITORY_URI}/app:$CI_COMMIT_SHORT_SHA" + after_script: + - *announce_failure + rules: + - *check_main + +build_push_migrations_prd: + stage: push_prd + environment: prd + image: + name: gcr.io/kaniko-project/executor:v1.14.0-debug + entrypoint: [""] + needs: + - prod_approval + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + - *kaniko_before_setup + script: + - echo "Building and Pushing migrations Docker image..." + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/Dockerfile.migrations" --destination "${ECR_REPOSITORY_URI}/app-migrations:$CI_COMMIT_SHORT_SHA" + after_script: + - *announce_failure + rules: + - if: '$CI_COMMIT_BRANCH == "main"' + +build_push_tasks_prd: + stage: push_prd + environment: prd + image: + name: gcr.io/kaniko-project/executor:v1.14.0-debug + entrypoint: [""] + needs: + - prod_approval + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + - *kaniko_before_setup + script: + - echo "Building tasks Docker image..." + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/${TASK_DOCKER_FILE}" --destination "${ECR_REPOSITORY_URI}/app-tasks:$CI_COMMIT_SHORT_SHA" + after_script: + - *announce_failure + rules: + - *check_main + +push_otel_collector_image_prd: + stage: push_prd + environment: prd + image: + name: $DOCKER_BASE_IMAGE + entrypoint: [""] + needs: + - prod_approval + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + script: + - echo "Logging in to Amazon ECR with Crane..." + - aws ecr get-login-password --region us-gov-west-1 | crane auth login ${ECR_REPOSITORY_URI} -u AWS --password-stdin + + - echo "Pulling the AWS OTel Collector image from the public registry with Crane..." + - crane pull --insecure public.ecr.aws/aws-observability/aws-otel-collector:v0.31.0 image.tar + + - echo "Pushing the image to our private ECR using Crane..." + - crane push --insecure image.tar ${ECR_REPOSITORY_URI}/otel-collector:${CI_COMMIT_SHORT_SHA} + + - echo "Cleaning up the temporary image file..." + - rm image.tar + allow_failure: false + after_script: + - *announce_failure + rules: + - if: '$CI_COMMIT_BRANCH == "main"' + +deploy_migrations_prd: + stage: deploy_prd + environment: prd + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - build_push_migrations_prd + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + script: + # Step 1: Get the Digest + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app-migrations --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + # Step 2: Ensure exclusive execution and Snapshot + - echo "Snapshotting database" + - ./scripts/rds-snapshot-app-db "$APP_ENVIRONMENT" + # Step 3: Run migrations + - echo "Running migrations" + - ./scripts/ecs-run-app-migrations-container "${ECR_REPOSITORY_URI}/app-migrations@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + after_script: + - *announce_failure + rules: + - *check_main + +deploy_tasks_prd: + stage: deploy_prd + environment: prd + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - build_push_tasks_prd + - compile_app_server + - compile_app_client + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + script: + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app-tasks --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - echo "Deploying GHC fuel price data task service" + - ./scripts/ecs-deploy-task-container save-ghc-fuel-price-data "${ECR_REPOSITORY_URI}/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + - echo "Deploying payment reminder email task service" + - ./scripts/ecs-deploy-task-container send-payment-reminder "${ECR_REPOSITORY_URI}/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + after_script: + - *announce_failure + rules: + - *check_main + +deploy_app_client_tls_prd: + stage: deploy_prd + environment: prd + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - deploy_migrations_prd + - push_otel_collector_image_prd + - compile_app_server + - compile_app_client + variables: + OPEN_TELEMETRY_SIDECAR: "true" + HEALTH_CHECK: "true" + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + script: + # - echo "Comparing against deployed commit" + # - ./scripts/compare-deployed-commit "" $CI_COMMIT_SHA ${TLS_KEY} ${TLS_CERT} ${TLS_CA} + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - echo "Getting otel collector Digest from AWS" + - export OTEL_ECR_DIGEST=$(aws ecr describe-images --repository-name otel-collector --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - export OTEL_COLLECTOR_IMAGE="${ECR_REPOSITORY_URI}/otel-collector@${OTEL_ECR_DIGEST}" + - echo "Deploying app-client-tls service" + - ./scripts/ecs-deploy-service-container app-client-tls "${ECR_REPOSITORY_URI}/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" + - echo "Running Health Check" + # - bin/health-checker --schemes https --hosts api.demo.dp3.us --key ${TLS_KEY} --cert ${TLS_CERT} --ca ${TLS_CA} --tries 10 --backoff 3 --log-level info --timeout 5m + # - echo "Running TLS Check" + # - bin/tls-checker --schemes https --hosts api.demo.dp3.us --key ${TLS_KEY} --cert ${TLS_CERT} --ca ${TLS_CA} --log-level info --timeout 15m + # - echo "Checking deployed commits" + # - ./scripts/check-deployed-commit "api.demo.dp3.us" "$CI_COMMIT_SHA" ${TLS_KEY} ${TLS_CERT} ${TLS_CA} + after_script: + - *announce_failure + rules: + - *check_main + +deploy_app_prd: + stage: deploy_prd + environment: prd + image: + name: $DOCKER_APP_IMAGE + entrypoint: [""] + needs: + - build_push_app_prd + - deploy_migrations_prd + - compile_app_server + - compile_app_client + variables: + OPEN_TELEMETRY_SIDECAR: "true" + HEALTH_CHECK: "true" + before_script: + - *setup_aws_vars_prd + - *setup_release_prd + script: + - echo "Comparing against deployed commit" + # - ./scripts/compare-deployed-commit "" "$CI_COMMIT_SHA" "$TLS_KEY" "$TLS_CERT" "$TLS_CA" + - echo "Creating .go-version file if not already present" + - | + if [ -f ".go-version" ]; then + echo ".go-version already exists, no need to re-create" + else + GO_VERSION=$(awk '/golang/ { print $2 }' .tool-versions) + echo "Creating .go-version using version ${GO_VERSION}" + echo $GO_VERSION > .go-version + fi + - echo "Getting Digest from AWS" + - export ECR_DIGEST=$(aws ecr describe-images --repository-name app --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - echo "Getting otel collector digest from AWS" + - export OTEL_ECR_DIGEST=$(aws ecr describe-images --repository-name otel-collector --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) + - export OTEL_COLLECTOR_IMAGE="${ECR_REPOSITORY_URI}/otel-collector@${OTEL_ECR_DIGEST}" + - echo "Deploying app service" + - ./scripts/ecs-deploy-service-container app "${ECR_REPOSITORY_URI}/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" + - echo "Running Health Check" + # - bin/health-checker --schemes https --hosts my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us --tries 10 --backoff 3 --log-level info --timeout 5m + # - echo "Running TLS Check" + # - bin/tls-checker --schemes https --hosts my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us --log-level info --timeout 15m + # - echo "Checking deployed commits" + - ./scripts/check-deployed-commit "my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us" "$CI_COMMIT_SHA" + after_script: + - *announce_failure + rules: + - *check_main + build_push_app_dp3: stage: push + environment: DP3_ENV image: name: gcr.io/kaniko-project/executor:v1.14.0-debug entrypoint: [""] @@ -185,21 +842,20 @@ build_push_app_dp3: - compile_app_client - compile_app_server before_script: - - ls bin - - mkdir -p /kaniko/.docker - - echo "Simulating Docker image build setup..." - #TODO: make dynamic from anchors and value - - echo "{\"credHelpers\":{\"${ECR_REPOSITORY_URI}\":\"ecr-login\"}}" > /kaniko/.docker/config.json + - *setup_aws_vars_dp3 + - *setup_release_dp3 + - *kaniko_before_setup script: - echo "Building and Pushing app Docker image..." - - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/Dockerfile.dp3" --destination "${ECR_REPOSITORY_URI}/app:$CI_COMMIT_SHORT_SHA" + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/${APP_DOCKER_FILE}" --destination "${ECR_REPOSITORY_URI}/app:$CI_COMMIT_SHORT_SHA" after_script: - - echo "Build_complete" - # rules: - # - if: $CI_COMMIT_BRANCH != "main"' + - *announce_failure + rules: + - *check_dp3 build_push_migrations_dp3: stage: push + environment: DP3_ENV image: name: gcr.io/kaniko-project/executor:v1.14.0-debug entrypoint: [""] @@ -207,17 +863,20 @@ build_push_migrations_dp3: - compile_app_server - compile_app_client before_script: - - mkdir -p /kaniko/.docker - - echo "Simulating migrations Docker image build..." - - echo "{\"credHelpers\":{\"${ECR_REPOSITORY_URI}\":\"ecr-login\"}}" > /kaniko/.docker/config.json + - *setup_aws_vars_dp3 + - *setup_release_dp3 + - *kaniko_before_setup script: - echo "Building and Pushing migrations Docker image..." - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/Dockerfile.migrations" --destination "${ECR_REPOSITORY_URI}/app-migrations:$CI_COMMIT_SHORT_SHA" after_script: - - echo "Migrations image built and pushed successfully." + - *announce_failure + rules: + - *check_dp3 build_push_tasks_dp3: stage: push + environment: DP3_ENV image: name: gcr.io/kaniko-project/executor:v1.14.0-debug entrypoint: [""] @@ -225,18 +884,20 @@ build_push_tasks_dp3: - compile_app_server - compile_app_client before_script: - - mkdir -p /kaniko/.docker - - echo "Simulating tasks Docker image build..." - - echo "{\"credHelpers\":{\"${ECR_REPOSITORY_URI}\":\"ecr-login\"}}" > /kaniko/.docker/config. - - ls -la /builds/milmove/mymove/bin/ + - *setup_aws_vars_dp3 + - *setup_release_dp3 + - *kaniko_before_setup script: - echo "Building tasks Docker image..." - - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/Dockerfile.tasks" --destination "${ECR_REPOSITORY_URI}/app-tasks:$CI_COMMIT_SHORT_SHA" + - /kaniko/executor --context "${CI_PROJECT_DIR}/" --dockerfile "${CI_PROJECT_DIR}/${TASK_DOCKER_FILE}" --destination "${ECR_REPOSITORY_URI}/app-tasks:$CI_COMMIT_SHORT_SHA" after_script: - - echo "Tasks image built successfully." + - *announce_failure + rules: + - *check_dp3 push_otel_collector_image_dp3: stage: push + environment: DP3_ENV image: name: $DOCKER_BASE_IMAGE entrypoint: [""] @@ -256,12 +917,14 @@ push_otel_collector_image_dp3: - echo "Cleaning up the temporary image file..." - rm image.tar allow_failure: false - # rules: - # - if: '$CI_COMMIT_BRANCH != "main"' + after_script: + - *announce_failure + rules: + - *check_dp3 -#Deploy Pushed Images deploy_migrations_dp3: stage: deploy + environment: DP3_ENV image: name: $DOCKER_APP_IMAGE entrypoint: [""] @@ -269,6 +932,9 @@ deploy_migrations_dp3: - build_push_migrations_dp3 - compile_app_server - compile_app_client + before_script: + - *setup_aws_vars_dp3 + - *setup_release_dp3 script: # Step 1: Get the Digest - echo "Getting Digest from AWS" @@ -278,13 +944,12 @@ deploy_migrations_dp3: - ./scripts/rds-snapshot-app-db "$APP_ENVIRONMENT" # Step 3: Run migrations - echo "Running migrations" - - ./scripts/ecs-run-app-migrations-container "${ECR_REPOSITORY_URI}/app-migrations@${ECR_DIGEST}" "demo" - # # Step 4: Announce failure only if on the specific branch - # - | - # if [[ "$CI_COMMIT_BRANCH" == "main" && "$CI_JOB_STATUS" == "failed" ]]; then - # ./scripts/circleci-announce-broken-branch - # fi - timeout: 40m + - ./scripts/ecs-run-app-migrations-container "${ECR_REPOSITORY_URI}/app-migrations@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + after_script: + - *announce_failure + rules: + - *check_dp3 + deploy_tasks_dp3: stage: deploy image: @@ -294,22 +959,23 @@ deploy_tasks_dp3: - build_push_tasks_dp3 - compile_app_server - compile_app_client + before_script: + - *setup_release_dp3 script: - echo "Getting Digest from AWS" - export ECR_DIGEST=$(aws ecr describe-images --repository-name app-tasks --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) - echo "Deploying GHC fuel price data task service" - - ./scripts/ecs-deploy-task-container save-ghc-fuel-price-data "${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + - ./scripts/ecs-deploy-task-container save-ghc-fuel-price-data "${ECR_REPOSITORY_URI}/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" - echo "Deploying payment reminder email task service" - - ./scripts/ecs-deploy-task-container send-payment-reminder "${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" - # # Run failure announcement only if on the main branch - # - | - # if [[ "$CI_COMMIT_BRANCH" == "main" && "$CI_JOB_STATUS" == "failed" ]]; then - # ./scripts/circleci-announce-broken-branch - # fi - timeout: 40m + - ./scripts/ecs-deploy-task-container send-payment-reminder "${ECR_REPOSITORY_URI}/app-tasks@${ECR_DIGEST}" "${APP_ENVIRONMENT}" + after_script: + - *announce_failure + rules: + - *check_dp3 deploy_app_client_tls_dp3: stage: deploy + environment: DP3_ENV image: name: $DOCKER_APP_IMAGE entrypoint: [""] @@ -321,6 +987,9 @@ deploy_app_client_tls_dp3: variables: OPEN_TELEMETRY_SIDECAR: "true" HEALTH_CHECK: "true" + before_script: + - *setup_aws_vars_dp3 + - *setup_release_dp3 script: # - echo "Comparing against deployed commit" # - ./scripts/compare-deployed-commit "" $CI_COMMIT_SHA ${TLS_KEY} ${TLS_CERT} ${TLS_CA} @@ -328,24 +997,23 @@ deploy_app_client_tls_dp3: - export ECR_DIGEST=$(aws ecr describe-images --repository-name app --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) - echo "Getting otel collector Digest from AWS" - export OTEL_ECR_DIGEST=$(aws ecr describe-images --repository-name otel-collector --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) - - export OTEL_COLLECTOR_IMAGE="${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/otel-collector@${OTEL_ECR_DIGEST}" + - export OTEL_COLLECTOR_IMAGE="${ECR_REPOSITORY_URI}/otel-collector@${OTEL_ECR_DIGEST}" - echo "Deploying app-client-tls service" - - ./scripts/ecs-deploy-service-container app-client-tls "${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" + - ./scripts/ecs-deploy-service-container app-client-tls "${ECR_REPOSITORY_URI}/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" - echo "Running Health Check" # - bin/health-checker --schemes https --hosts api.demo.dp3.us --key ${TLS_KEY} --cert ${TLS_CERT} --ca ${TLS_CA} --tries 10 --backoff 3 --log-level info --timeout 5m # - echo "Running TLS Check" # - bin/tls-checker --schemes https --hosts api.demo.dp3.us --key ${TLS_KEY} --cert ${TLS_CERT} --ca ${TLS_CA} --log-level info --timeout 15m # - echo "Checking deployed commits" # - ./scripts/check-deployed-commit "api.demo.dp3.us" "$CI_COMMIT_SHA" ${TLS_KEY} ${TLS_CERT} ${TLS_CA} - - | - # Run failure announcement only if on the main branch - if [[ "$CI_COMMIT_BRANCH" == "main" && "$CI_JOB_STATUS" == "failed" ]]; then - ./scripts/circleci-announce-broken-branch - fi - timeout: 60m + after_script: + - *announce_failure + rules: + - *check_dp3 deploy_app_dp3: stage: deploy + environment: DP3_ENV image: name: $DOCKER_APP_IMAGE entrypoint: [""] @@ -355,12 +1023,12 @@ deploy_app_dp3: - compile_app_server - compile_app_client variables: - APP_ENVIRONMENT: "demo" OPEN_TELEMETRY_SIDECAR: "true" HEALTH_CHECK: "true" + before_script: + - *setup_aws_vars_dp3 + - *setup_release_dp3 script: - - ls bin - - pwd - echo "Comparing against deployed commit" # - ./scripts/compare-deployed-commit "" "$CI_COMMIT_SHA" "$TLS_KEY" "$TLS_CERT" "$TLS_CA" - echo "Creating .go-version file if not already present" @@ -376,20 +1044,16 @@ deploy_app_dp3: - export ECR_DIGEST=$(aws ecr describe-images --repository-name app --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) - echo "Getting otel collector digest from AWS" - export OTEL_ECR_DIGEST=$(aws ecr describe-images --repository-name otel-collector --image-ids imageTag=$CI_COMMIT_SHORT_SHA --query 'imageDetails[0].imageDigest' --output text) - - export OTEL_COLLECTOR_IMAGE="${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/otel-collector@${OTEL_ECR_DIGEST}" + - export OTEL_COLLECTOR_IMAGE="${ECR_REPOSITORY_URI}/otel-collector@${OTEL_ECR_DIGEST}" - echo "Deploying app service" - - ./scripts/ecs-deploy-service-container app "${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" + - ./scripts/ecs-deploy-service-container app "${ECR_REPOSITORY_URI}/app@${ECR_DIGEST}" "${APP_ENVIRONMENT}" "/bin/milmove serve" - echo "Running Health Check" # - bin/health-checker --schemes https --hosts my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us --tries 10 --backoff 3 --log-level info --timeout 5m # - echo "Running TLS Check" # - bin/tls-checker --schemes https --hosts my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us --log-level info --timeout 15m # - echo "Checking deployed commits" - ./scripts/check-deployed-commit "my.demo.dp3.us,office.demo.dp3.us,admin.demo.dp3.us" "$CI_COMMIT_SHA" - # Run failure announcement only if on the main bran - - | - if [[ "$CI_COMMIT_BRANCH" == "main" && "$CI_JOB_STATUS" == "failed" ]]; then - ./scripts/circleci-announce-broken-branch - fi - timeout: 60m - - + after_script: + - *announce_failure + rules: + - *check_dp3 \ No newline at end of file diff --git a/migrations/app/migrations_manifest.txt b/migrations/app/migrations_manifest.txt index 470dc5e1af7..0c09cc0b270 100644 --- a/migrations/app/migrations_manifest.txt +++ b/migrations/app/migrations_manifest.txt @@ -1055,5 +1055,12 @@ 20241204210208_retroactive_update_of_ppm_max_and_estimated_incentives_prd.up.sql 20241210143143_redefine_mto_shipment_audit_table.up.sql 20241216170325_update_nts_enum_name.up.sql +20241216190428_update_get_zip_code_function_and_update_pricing_proc.up.sql 20241217163231_update_duty_locations_bad_zips.up.sql 20241217180136_add_AK_zips_to_zip3_distances.up.sql +20241218201833_add_PPPO_BASE_ELIZABETH.up.sql +20241220171035_add_additional_AK_zips_to_zip3_distances.up.sql +20241220213134_add_destination_gbloc_db_function.up.sql +20241227153723_remove_empty_string_emplid_values.up.sql +20241230190638_remove_AK_zips_from_zip3.up.sql +20241230190647_add_missing_AK_zips_to_zip3_distances.up.sql diff --git a/migrations/app/schema/20241216190428_update_get_zip_code_function_and_update_pricing_proc.up.sql b/migrations/app/schema/20241216190428_update_get_zip_code_function_and_update_pricing_proc.up.sql new file mode 100644 index 00000000000..de355bc8146 --- /dev/null +++ b/migrations/app/schema/20241216190428_update_get_zip_code_function_and_update_pricing_proc.up.sql @@ -0,0 +1,234 @@ +-- removing the exception that was previously being returned +-- this is to avoid the db update failing for the entire proc it is used in +-- we won't always have the POE/POD locations and want to ignore any errors here +CREATE OR REPLACE FUNCTION get_zip_code(shipment_id uuid, address_type VARCHAR) +RETURNS VARCHAR AS $$ + DECLARE zip_code VARCHAR; + BEGIN + + IF address_type = 'pickup' THEN + SELECT vl.uspr_zip_id + INTO zip_code + FROM mto_shipments ms + JOIN addresses a ON a.id = ms.pickup_address_id + JOIN v_locations vl ON vl.uprc_id = a.us_post_region_cities_id + WHERE ms.id = shipment_id; + ELSIF address_type = 'destination' THEN + SELECT vl.uspr_zip_id + INTO zip_code + FROM mto_shipments ms + JOIN addresses a ON a.id = ms.destination_address_id + JOIN v_locations vl ON vl.uprc_id = a.us_post_region_cities_id + WHERE ms.id = shipment_id; + ELSIF address_type = 'poe' THEN + SELECT vl.uspr_zip_id + INTO zip_code + FROM mto_service_items si + JOIN port_locations pl ON pl.id = si.poe_location_id + JOIN v_locations vl ON vl.uprc_id = pl.us_post_region_cities_id + WHERE si.mto_shipment_id = shipment_id; + ELSIF address_type = 'pod' THEN + SELECT vl.uspr_zip_id + INTO zip_code + FROM mto_service_items si + JOIN port_locations pl ON pl.id = si.pod_location_id + JOIN v_locations vl ON vl.uprc_id = pl.us_post_region_cities_id + WHERE si.mto_shipment_id = shipment_id; + END IF; + + RETURN zip_code; +END; +$$ LANGUAGE plpgsql; + + +-- updating the get rate area function to include the contract id +CREATE OR REPLACE FUNCTION get_rate_area_id( + address_id UUID, + service_item_id UUID, + c_id uuid, + OUT o_rate_area_id UUID +) +RETURNS UUID AS $$ +DECLARE + is_oconus BOOLEAN; + zip3_value TEXT; +BEGIN + is_oconus := get_is_oconus(address_id); + + IF is_oconus THEN + -- re_oconus_rate_areas if is_oconus is TRUE + SELECT ro.rate_area_id + INTO o_rate_area_id + FROM addresses a + JOIN re_oconus_rate_areas ro + ON a.us_post_region_cities_id = ro.us_post_region_cities_id + JOIN re_rate_areas ra ON ro.rate_area_id = ra.id + WHERE a.id = address_id + AND ra.contract_id = c_id; + ELSE + -- re_zip3s if is_oconus is FALSE + SELECT rupr.zip3 + INTO zip3_value + FROM addresses a + JOIN us_post_region_cities uprc + ON a.us_post_region_cities_id = uprc.id + JOIN re_us_post_regions rupr + ON uprc.us_post_regions_id = rupr.id + WHERE a.id = address_id; + + -- use the zip3 value to find the rate_area_id in re_zip3s + SELECT rz.rate_area_id + INTO o_rate_area_id + FROM re_zip3s rz + JOIN re_rate_areas ra + ON rz.rate_area_id = ra.id + WHERE rz.zip3 = zip3_value + AND ra.contract_id = c_id; + END IF; + + -- Raise an exception if no rate area is found + IF o_rate_area_id IS NULL THEN + RAISE EXCEPTION 'Rate area not found for address % for service item ID %', address_id, service_item_id; + END IF; +END; +$$ LANGUAGE plpgsql; + +-- this function will help us get the ZIP code & port type for a port to calculate mileage +CREATE OR REPLACE FUNCTION get_port_location_info_for_shipment(shipment_id UUID) +RETURNS TABLE(uspr_zip_id TEXT, port_type TEXT) AS $$ +BEGIN + -- select the ZIP code and port type (POEFSC or PODFSC) + RETURN QUERY + SELECT + COALESCE(poe_usprc.uspr_zip_id::TEXT, pod_usprc.uspr_zip_id::TEXT) AS uspr_zip_id, + CASE + WHEN msi.poe_location_id IS NOT NULL THEN 'POEFSC' + WHEN msi.pod_location_id IS NOT NULL THEN 'PODFSC' + ELSE NULL + END AS port_type + FROM mto_shipments ms + JOIN mto_service_items msi ON ms.id = msi.mto_shipment_id + LEFT JOIN port_locations poe_pl ON msi.poe_location_id = poe_pl.id + LEFT JOIN port_locations pod_pl ON msi.pod_location_id = pod_pl.id + LEFT JOIN us_post_region_cities poe_usprc ON poe_pl.us_post_region_cities_id = poe_usprc.id + LEFT JOIN us_post_region_cities pod_usprc ON pod_pl.us_post_region_cities_id = pod_usprc.id + WHERE ms.id = shipment_id + AND (msi.poe_location_id IS NOT NULL OR msi.pod_location_id IS NOT NULL) + LIMIT 1; +END; +$$ LANGUAGE plpgsql; + +-- updating the pricing proc to now consume the mileage we get from DTOD instead of calculate it using Rand McNally +-- this is a requirement for E-06210 +-- also updating the get_rate_area parameters and passing in the contract_id +CREATE OR REPLACE PROCEDURE update_service_item_pricing( + shipment_id UUID, + mileage INT +) AS +' +DECLARE + shipment RECORD; + service_item RECORD; + escalated_price NUMERIC; + estimated_price NUMERIC; + o_rate_area_id UUID; + d_rate_area_id UUID; + contract_id UUID; + service_code TEXT; + o_zip_code TEXT; + d_zip_code TEXT; + distance NUMERIC; -- This will be replaced by mileage + estimated_fsc_multiplier NUMERIC; + fuel_price NUMERIC; + cents_above_baseline NUMERIC; + price_difference NUMERIC; +BEGIN + SELECT ms.id, ms.pickup_address_id, ms.destination_address_id, ms.requested_pickup_date, ms.prime_estimated_weight + INTO shipment + FROM mto_shipments ms + WHERE ms.id = shipment_id; + + IF shipment IS NULL THEN + RAISE EXCEPTION ''Shipment with ID % not found'', shipment_id; + END IF; + + -- exit the proc if prime_estimated_weight is NULL + IF shipment.prime_estimated_weight IS NULL THEN + RETURN; + END IF; + + -- loop through service items in the shipment + FOR service_item IN + SELECT si.id, si.re_service_id + FROM mto_service_items si + WHERE si.mto_shipment_id = shipment_id + LOOP + -- get the service code for the current service item to determine calculation + SELECT code + INTO service_code + FROM re_services + WHERE id = service_item.re_service_id; + + CASE + WHEN service_code IN (''ISLH'', ''UBP'') THEN + contract_id := get_contract_id(shipment.requested_pickup_date); + o_rate_area_id := get_rate_area_id(shipment.pickup_address_id, service_item.re_service_id, contract_id); + d_rate_area_id := get_rate_area_id(shipment.destination_address_id, service_item.re_service_id, contract_id); + escalated_price := calculate_escalated_price(o_rate_area_id, d_rate_area_id, service_item.re_service_id, contract_id, service_code); + + IF shipment.prime_estimated_weight IS NOT NULL THEN + estimated_price := ROUND((escalated_price * (shipment.prime_estimated_weight / 100)::NUMERIC) * 100, 0); + RAISE NOTICE ''%: Received estimated price of % (% * (% / 100)) cents'', service_code, estimated_price, escalated_price, shipment.prime_estimated_weight; + END IF; + + WHEN service_code IN (''IHPK'', ''IUBPK'') THEN + -- perform IHPK/IUBPK-specific logic (no destination rate area) + contract_id := get_contract_id(shipment.requested_pickup_date); + o_rate_area_id := get_rate_area_id(shipment.pickup_address_id, service_item.re_service_id, contract_id); + escalated_price := calculate_escalated_price(o_rate_area_id, NULL, service_item.re_service_id, contract_id, service_code); + + IF shipment.prime_estimated_weight IS NOT NULL THEN + estimated_price := ROUND((escalated_price * (shipment.prime_estimated_weight / 100)::NUMERIC) * 100, 0); + RAISE NOTICE ''%: Received estimated price of % (% * (% / 100)) cents'', service_code, estimated_price, escalated_price, shipment.prime_estimated_weight; + END IF; + + WHEN service_code IN (''IHUPK'', ''IUBUPK'') THEN + -- perform IHUPK/IUBUPK-specific logic (no origin rate area) + contract_id := get_contract_id(shipment.requested_pickup_date); + d_rate_area_id := get_rate_area_id(shipment.destination_address_id, service_item.re_service_id, contract_id); + escalated_price := calculate_escalated_price(NULL, d_rate_area_id, service_item.re_service_id, contract_id, service_code); + + IF shipment.prime_estimated_weight IS NOT NULL THEN + estimated_price := ROUND((escalated_price * (shipment.prime_estimated_weight / 100)::NUMERIC) * 100, 0); + RAISE NOTICE ''%: Received estimated price of % (% * (% / 100)) cents'', service_code, estimated_price, escalated_price, shipment.prime_estimated_weight; + END IF; + + WHEN service_code IN (''POEFSC'', ''PODFSC'') THEN + -- use the passed mileage parameter + distance := mileage; + + -- getting FSC multiplier from re_fsc_multipliers + estimated_fsc_multiplier := get_fsc_multiplier(shipment.prime_estimated_weight); + + fuel_price := get_fuel_price(shipment.requested_pickup_date); + + price_difference := calculate_price_difference(fuel_price); + + -- calculate estimated price, return as cents + IF estimated_fsc_multiplier IS NOT NULL AND distance IS NOT NULL THEN + cents_above_baseline := distance * estimated_fsc_multiplier; + RAISE NOTICE ''Distance: % * FSC Multipler: % = $% cents above baseline of $2.50'', distance, estimated_fsc_multiplier, cents_above_baseline; + RAISE NOTICE ''The fuel price is % cents above the baseline ($% - $2.50 baseline)'', price_difference, fuel_price; + estimated_price := ROUND((cents_above_baseline * price_difference) * 100); + RAISE NOTICE ''Received estimated price of % cents for service_code: %.'', estimated_price, service_code; + END IF; + END CASE; + + -- update the pricing_estimate value in mto_service_items + UPDATE mto_service_items + SET pricing_estimate = estimated_price + WHERE id = service_item.id; + END LOOP; +END; +' +LANGUAGE plpgsql; diff --git a/migrations/app/schema/20241220171035_add_additional_AK_zips_to_zip3_distances.up.sql b/migrations/app/schema/20241220171035_add_additional_AK_zips_to_zip3_distances.up.sql new file mode 100644 index 00000000000..81fcfadc0af --- /dev/null +++ b/migrations/app/schema/20241220171035_add_additional_AK_zips_to_zip3_distances.up.sql @@ -0,0 +1,5460 @@ +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7e10f16e-52ba-41c6-912d-c64de6bac931'::uuid,'010','995',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('25b5456d-9430-42bc-8d92-393732d74a13'::uuid,'010','996',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80f7f10c-72d4-458a-acdd-31276d906be0'::uuid,'010','997',4318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c62a1c34-2fc9-4ed8-adb8-5a5519633537'::uuid,'010','998',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8438313-c130-4369-b633-99d208b740a8'::uuid,'010','999',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16d46153-d501-4847-8eb0-21c2e02f93be'::uuid,'011','995',4428,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e5ebea1-b88d-4b21-9c2d-0c422185479c'::uuid,'011','996',4428,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8d8ec08-dab6-47f7-b1e9-014f8121dd79'::uuid,'011','997',4314,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('894e9d41-3017-4b90-8ea5-4834ceb55dbd'::uuid,'011','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e99a6ca-35eb-4067-9a46-8a405a1dd771'::uuid,'011','999',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; + INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3d912b29-c5fd-42ce-86c2-357423ad341e'::uuid,'012','995',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7028c3e3-658c-4642-bca5-f61bb557b539'::uuid,'012','996',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1585b06f-f638-419d-8753-d3b8ff508733'::uuid,'012','997',4268,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f29c823-6e97-4e82-8d3d-eb3a99ad3502'::uuid,'012','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1c36b29-a964-4fac-9521-0226bc3de513'::uuid,'012','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('231eb38f-86a7-49dd-b3d9-4b4b566b0dfb'::uuid,'013','995',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30ea7960-4225-43aa-aec4-e2f11d57b03c'::uuid,'013','996',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe6c65d7-f24d-47c4-897e-f7b439661e9d'::uuid,'013','997',4300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb4d8727-3a63-4581-8478-99178eceae53'::uuid,'013','998',3852,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7a1ca72-4282-4194-b17f-849d2ac8c15d'::uuid,'013','999',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; + INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ac36b7b5-603e-49f7-ab17-7c0a7ab0846d'::uuid,'014','995',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fdaac4a-ebe5-4c60-9cbb-60129773a7da'::uuid,'014','996',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0154312d-334b-456b-9a88-e3242268d13e'::uuid,'014','997',4328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f307f161-034d-41ae-bbfc-eabb58639e9f'::uuid,'014','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4191c495-c3ad-4797-b389-a64377e0f6cc'::uuid,'014','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54cec149-d14f-4b5d-aa23-918fa0d6b839'::uuid,'015','995',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4cd12d07-fd20-4024-936e-e3fe047b962f'::uuid,'015','996',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3dba105-9c39-4ad7-8f2a-761fdd18d024'::uuid,'015','997',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09dd3498-1e2a-46b5-b5bb-06d275f902de'::uuid,'015','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e325c4b-ead2-4c45-b39f-f7f0b129e718'::uuid,'015','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('41667efb-4890-4538-9bfd-04e60124f29b'::uuid,'016','995',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df57dfbb-a3d1-4533-8837-205a286e7ff4'::uuid,'016','996',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f0b628b-d400-42c6-b956-b1bfc65a7985'::uuid,'016','997',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93d1c10b-db1a-4255-bdfc-2b69c3f65722'::uuid,'016','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd10b3c3-f70f-42a2-b7f5-c1634d20f2c4'::uuid,'016','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29d19b23-1a05-4bbc-be6a-81691ca7790a'::uuid,'017','995',4468,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad23741a-eb3d-4f81-83ec-ed3875fa1dc1'::uuid,'017','996',4468,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d270aa63-3433-43bb-baf7-c32eb072c2d5'::uuid,'017','997',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5729abad-cd5d-4dfb-8697-811c4d8c2a01'::uuid,'017','998',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52e93656-77d2-490b-ae8f-b01ca44cb5f8'::uuid,'017','999',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('109a3e0c-2bda-416d-adc6-fb3fe47c2f28'::uuid,'018','995',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66f9922c-6ceb-4713-8183-dab65c3df0db'::uuid,'018','996',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e86ccef-d4f8-4a1c-abc8-3e698c90c5cd'::uuid,'018','997',4332,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('041bc235-5538-436e-b336-06ae1586a56f'::uuid,'018','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb8123a0-a309-4a16-9c88-67ebaccdd56a'::uuid,'018','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a123d9c-5b6b-4081-9956-82adb8e2fea7'::uuid,'019','995',4461,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ecd0fc12-d8d2-46ec-bfc3-68a4ff823d80'::uuid,'019','996',4461,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2befefae-edd6-4dfd-b050-fc5e57d58599'::uuid,'019','997',4347,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('752f897f-a538-4689-9dd0-10df33ddf447'::uuid,'019','998',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4717fe63-4847-467a-b5af-cd0ea227b250'::uuid,'019','999',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1beb9543-fbfe-44de-a05b-3662ac9e9edf'::uuid,'020','995',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb8fe68f-8228-4626-925a-fc5d14d5f729'::uuid,'020','996',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36163852-b9c2-4471-8d44-9169b0dcf5ca'::uuid,'020','997',4365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dff756cc-68b9-4ca7-a149-1ba3257955d6'::uuid,'020','998',3917,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bea1c968-30a3-4d75-ae10-e30f139f8ae4'::uuid,'020','999',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad15e112-f156-4cba-be31-72a193781be9'::uuid,'021','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('707712ef-3e94-4ae1-968a-eb5d3e124a89'::uuid,'021','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55aa9f05-5fbf-4bbb-ac9f-14be19fe9cf6'::uuid,'021','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43bffcc4-13a9-43a7-be29-10a49263b0ba'::uuid,'021','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27daa3e3-9d4a-4f21-941b-2c3c2ade1992'::uuid,'021','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('575c5e33-cbfd-4f23-a328-4b4c28ad6d35'::uuid,'022','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55c3f82e-6942-4182-9009-67fad4262aef'::uuid,'022','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('527b5256-f3ff-4bf9-8a42-fcf63c25c23a'::uuid,'022','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75797cf2-8c72-4030-bdfa-15e779deee73'::uuid,'022','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29b732b6-f43d-474c-8e0d-8a301614d80e'::uuid,'022','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84901878-5112-4040-95b3-3491bd60e59c'::uuid,'023','995',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d2a1682-b6af-4849-8a62-15e4aa488fee'::uuid,'023','996',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39960dbe-10d1-43b2-aff8-0deeeea95986'::uuid,'023','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b9fab0a-b371-4bc1-913f-7b52992ce666'::uuid,'023','998',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c932d332-363a-4349-9d85-b57da5188dca'::uuid,'023','999',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c3298bd9-a700-4ff6-80b4-d028939d1bb1'::uuid,'024','995',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ac7f1b1-b3d8-4011-9333-68939dbfd23f'::uuid,'024','996',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6f2b525-fdc3-4b4a-b227-cec597637681'::uuid,'024','997',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5037eb49-ca6f-4e7c-be87-2c6d386d36ca'::uuid,'024','998',3925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fec07b04-954e-4b36-af53-7a8ff1278535'::uuid,'024','999',3703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f318f19-2029-4022-a0c1-738919551bdb'::uuid,'025','995',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c4dc4ca3-403d-4f1c-9e08-15244ad23b6f'::uuid,'025','996',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c019c70-eb46-4d57-ab28-244cd3d5e4fc'::uuid,'025','997',4544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38a4cf6a-cfcb-45d7-84bd-2ed04844f4d9'::uuid,'025','998',3960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1b0ff3b-c932-4489-aeb9-703127328332'::uuid,'025','999',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8e9b1e76-27c5-451a-ac79-d0b1abfab03b'::uuid,'026','995',4538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1205ac26-5dbd-41d1-9568-e8d72614cd1c'::uuid,'026','996',4538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85609e5f-0fa9-4025-90ce-2e2637ae4cb3'::uuid,'026','997',4424,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b21c9f26-6670-4d0d-ab81-7685e9095cd8'::uuid,'026','998',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edbd084b-e275-44ab-ad96-28070b02017a'::uuid,'026','999',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cf56b05-9b6f-460d-9e41-77f748b561e5'::uuid,'027','995',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60983cb5-687b-452a-93d0-75af1a7bd8ec'::uuid,'027','996',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('590e01d7-611c-471f-b886-a63f2377e240'::uuid,'027','997',4403,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8fee2bc6-17f1-4397-be05-40ce49b17ed7'::uuid,'027','998',3954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e43d778a-e963-40e3-9438-c73c87eed163'::uuid,'027','999',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bd3d8556-e904-4f5a-ace7-bbdb369204bc'::uuid,'028','995',4511,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9eebf50e-da20-411d-bf67-05fa15c41326'::uuid,'028','996',4511,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eaa42ebc-b794-40be-b31f-221f11b0426c'::uuid,'028','997',4397,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d9fa6aa2-5f95-41d9-9374-ab862016f83b'::uuid,'028','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1123f091-1c50-47fb-8057-3e0a5cb52872'::uuid,'028','999',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0ebb6ec-668d-4282-979b-e092a5dcd946'::uuid,'029','995',4508,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea105ec6-c1d0-44f2-850f-535e88162ae7'::uuid,'029','996',4508,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eda0bcb1-38c8-4888-b8ef-5461b674ad74'::uuid,'029','997',4394,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('108c07e1-88c7-4beb-91ce-860d359f5859'::uuid,'029','998',3946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('554453cf-f6f8-4aef-a813-30c0d86a1735'::uuid,'029','999',3688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('304e11b2-87eb-4374-b950-b73377da922e'::uuid,'030','995',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f274a23b-1f47-421a-b24f-b15f263dcceb'::uuid,'030','996',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9c260b47-a2eb-4045-93a3-fdf795c2455e'::uuid,'030','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a784f80-6c6a-4ebd-b31c-acadadfb9acf'::uuid,'030','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb367795-e573-4da2-9cdb-f10038ffc169'::uuid,'030','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c38530e9-28e6-42dd-84b1-0c0ca40ea912'::uuid,'031','995',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('771108fd-7e9f-4c4a-9a9c-d79dc6c67d7b'::uuid,'031','996',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ef989e94-ac35-416d-9501-7e2399db94ee'::uuid,'031','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44016cfb-e114-4644-843d-7ce9e6b633b8'::uuid,'031','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a145a8b8-baae-4016-9da1-a61842546dd4'::uuid,'031','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb01b866-5838-4318-967c-b9c29a0c7501'::uuid,'032','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cc61834-fdcb-4730-b645-a82f3f251139'::uuid,'032','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9bd8ac0-274d-49d3-8e54-d2a23cd70064'::uuid,'032','997',4397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69d8a82e-2f9b-434e-95e2-682d3f3fb21c'::uuid,'032','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da413f37-b214-45e4-b538-1fd0872f6061'::uuid,'032','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc6c9afd-5e30-4a85-bb33-dbfe992e3f34'::uuid,'033','995',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f56c80e0-4e07-4494-9f4d-13690ff05d45'::uuid,'033','996',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('860def77-c65f-4c1d-b9eb-a815ae48b7d0'::uuid,'033','997',4424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00ba3ede-1430-495d-b6b0-e1cd0d2a2582'::uuid,'033','998',3839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5fbdfc4-3628-4894-b132-731286f0703f'::uuid,'033','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cf2127bb-e2a2-46cf-bfb5-ea213ffbca91'::uuid,'034','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a55782b0-d4dd-4fb4-9cba-2bdbf862c0bb'::uuid,'034','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9189a37d-c708-4fae-96ce-a734a5a91d73'::uuid,'034','997',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e39e2254-f233-49b1-999c-6961a27ce2aa'::uuid,'034','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fbef10b-3b96-4d91-84d6-6f03ad7f974a'::uuid,'034','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41ff3516-b6ff-4eac-8db4-4379e2d609a4'::uuid,'035','995',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4188e064-785b-4a8c-ac30-c8df36e8a69c'::uuid,'035','996',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d935096f-54f0-4a2c-896c-9101dc3c333f'::uuid,'035','997',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0221a2ac-3cc3-4e20-b54b-3e5be6f35283'::uuid,'035','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67a30c66-e631-4eee-b2c3-681f88998838'::uuid,'035','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('edc51d86-0b41-4043-bb69-545e05c3a497'::uuid,'036','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('439f5c89-7e8e-442d-a67e-d1b7a0099f42'::uuid,'036','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c18b33a7-6820-4727-b1cd-b3e9c8ed3565'::uuid,'036','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acb7dba1-3b4c-4f66-9982-1ac3f2b35f1b'::uuid,'036','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('957a725f-7f62-4c82-aa55-9b9c86e2a5b0'::uuid,'036','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e201a19-fd30-48c4-ab20-cf5761d36daf'::uuid,'037','995',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2f8fbb99-0b9e-4657-928e-ae36bd54dfdf'::uuid,'037','996',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc29ba7f-e7a0-46f2-b302-f6dc9f8d9a41'::uuid,'037','997',4232,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('627f8a8d-c572-4ba6-ba69-1c0bee437842'::uuid,'037','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d92a7af4-f29d-4d38-93b2-ee55b3c924f1'::uuid,'037','999',3561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('08fdd44a-d806-418a-9dc4-b14b32706bda'::uuid,'038','995',4418,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c03ad42e-7022-4835-bd1c-8644f683b442'::uuid,'038','996',4418,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84298760-fe46-43de-a2f1-b1613fa1fe3b'::uuid,'038','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54060ed6-d97d-41fd-be18-cff0a856bc2d'::uuid,'038','998',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3be61eba-09d0-4bba-a418-59a0c7af603f'::uuid,'038','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fbd9678-52fd-427c-a405-bdc2baff4d13'::uuid,'039','995',4451,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53302c85-78a3-44bf-bfcd-b23e10e9a62e'::uuid,'039','996',4451,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8819784-c760-4ad5-a256-8ce0cc63a3b0'::uuid,'039','997',4337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('606200ea-4d9b-4ad3-b5b7-766fdcbddadb'::uuid,'039','998',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b574cfa6-0b9e-4291-9215-db4b31d3f2a8'::uuid,'039','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('507bcb4f-63fe-4175-8a64-d00d37962e74'::uuid,'040','995',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c7d803af-32d1-45b8-8301-f11cd289426c'::uuid,'040','996',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e41a7091-1bff-4191-bf34-fce1296a2da5'::uuid,'040','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('55336cd9-3707-4bf4-a71d-160d72f3fa92'::uuid,'040','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a2636bd-ea9a-4f63-9744-812fcc2d4e15'::uuid,'040','999',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8402a6c2-4ef0-479f-8c88-fdadb39afe55'::uuid,'041','995',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31354e56-3c9b-43fd-830f-e0c98d421762'::uuid,'041','996',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a3bc341-ce99-4e34-bc1e-8c7dc9626b23'::uuid,'041','997',4318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70be5ff2-e62c-4837-b456-6fe36d086d02'::uuid,'041','998',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cbbb707a-92e0-471e-811d-293baccd3f3f'::uuid,'041','999',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f07485fd-3353-45a2-90a2-4b562a5c294f'::uuid,'042','995',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('701ffab3-fce1-4774-828e-e81e97ebb3e3'::uuid,'042','996',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d12c0ad0-67d7-41d6-9abf-4eb25b96a331'::uuid,'042','997',4399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aeaa3a31-7fff-4c1c-ab09-0b7d5eafd8bb'::uuid,'042','998',3815,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e89da113-f614-4018-9419-b3fc4e783821'::uuid,'042','999',3592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b79011d7-66a1-45a4-91d3-9380ee9c649c'::uuid,'043','995',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d016e13-2921-4cf8-8a05-6f152b29783d'::uuid,'043','996',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73c99482-9f48-4e5b-8c23-e6c4d4f8ea5e'::uuid,'043','997',4443,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1727c04c-3a63-4497-8a8f-80f8a24145e8'::uuid,'043','998',3859,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a57a624-33d6-427e-9498-47eb9178ed26'::uuid,'043','999',3636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d927366a-79e1-47ab-9e21-ffe96438605e'::uuid,'044','995',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf3d9336-c729-4753-b64c-b16634903bb4'::uuid,'044','996',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a16b2ee4-45ff-4625-87e3-f42970367a10'::uuid,'044','997',4330,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0bb77d3a-a5df-431e-b7c7-bd131356f206'::uuid,'044','998',3881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('539fb784-eb15-4239-a703-727d35e6e541'::uuid,'044','999',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fca585f5-829c-4d72-9106-6ec718c3bc5c'::uuid,'045','995',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2e51c53a-b24a-4673-99eb-c8d19d45e12a'::uuid,'045','996',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6b7bef3-2154-4036-b80a-cd2d52a96410'::uuid,'045','997',4330,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7b2c8971-01eb-4823-a190-1239b56c8b82'::uuid,'045','998',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39dcdc99-a113-4f79-81ce-f5566e4966e7'::uuid,'045','999',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fc12a2f9-3f2d-4c8d-ba4f-8b6198dae2e6'::uuid,'046','995',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e95afbd7-2fd0-4b97-96ed-fa99a066d659'::uuid,'046','996',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7172e1b-169b-4b62-bd41-68cd0b84ec38'::uuid,'046','997',4391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a395e2f-decc-461d-ac5d-77a72f37feeb'::uuid,'046','998',3943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03551858-f277-4b42-8bec-278ef5ed6478'::uuid,'046','999',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c32350c-ca01-428a-8471-91bf24103474'::uuid,'047','995',4516,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4857a437-9b55-4065-8adc-84ce50fad86d'::uuid,'047','996',4516,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5cb7c4b1-4821-485f-8fa1-d05faf4be67f'::uuid,'047','997',4402,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2479c8ff-05d9-4479-9dfe-90200c477db2'::uuid,'047','998',3953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f4adb4d-0ac3-4125-810d-79fe308e14e2'::uuid,'047','999',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('33de5a47-a837-445e-9e3e-4cce9a23be44'::uuid,'048','995',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a663e0cd-ae0d-4b78-81e4-6d2111e545ca'::uuid,'048','996',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('898b6ea2-dbbe-4c4c-88e4-2d262110bdfc'::uuid,'048','997',4345,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f81cf056-5dcc-4073-a339-bf58bb959beb'::uuid,'048','998',3897,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39c9c7f0-7fee-4039-9908-f14d42f7e845'::uuid,'048','999',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7859a8bb-f171-4832-b891-9b128ac40895'::uuid,'049','995',4386,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eaea5f0f-b13c-4866-ba95-e814d2d33489'::uuid,'049','996',4386,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72dddd51-f7e7-4038-9b76-e3dd3d33e053'::uuid,'049','997',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('64d02180-174e-45da-b990-ad9ae6acba85'::uuid,'049','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47c25b99-95fb-4140-ac25-cc2cf3fc0580'::uuid,'049','999',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f70aa5ca-63aa-4ff9-bf8c-2a62287a4f02'::uuid,'050','995',4327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3610fa09-3fc9-425d-9459-6bfca23130e9'::uuid,'050','996',4327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db99e121-4ceb-4108-bf4c-352bdca6d4ae'::uuid,'050','997',4213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('788f3058-661c-4728-88b9-ae14ec7e918a'::uuid,'050','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68a33546-62c9-4f09-9418-d75eb0ad1f05'::uuid,'050','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f872255-fab8-4d0b-a106-16968b25d8f0'::uuid,'051','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dbf6b1c-e3ff-42d3-8197-7c7b8bf1d7dd'::uuid,'051','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43aba28f-90c9-4d99-bbcf-d155e0c11069'::uuid,'051','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba55e638-f6b4-47db-b3f6-334c3a386e9c'::uuid,'051','998',3796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c41b9706-40bd-4cac-900e-f22429d1d6f1'::uuid,'051','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6018a3dc-dfe1-402c-a080-eee2577f2ae4'::uuid,'052','995',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2ccdebf-bcdc-405f-b58b-0108b08aaf9f'::uuid,'052','996',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff63e3f3-9023-46c1-85ad-3357bb6c9dff'::uuid,'052','997',4377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1760aff9-81fc-4c81-835a-72e264b8be81'::uuid,'052','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b57bc0e-f095-43e3-9822-563ae214e94f'::uuid,'052','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('009b75bd-59fa-4fd9-964c-1d1ba59ec486'::uuid,'053','995',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2bd5ef2f-d86e-4a6c-ab31-6ca8a5c9df82'::uuid,'053','996',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('869a76ea-2461-4640-bab5-529f68d116fd'::uuid,'053','997',4260,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1018dab3-11d8-4713-aef2-e3dba80bfacb'::uuid,'053','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed604122-6288-4210-9882-23f83c6a53a9'::uuid,'053','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('01cca694-9d1e-4e1a-8344-448ad8111e4e'::uuid,'054','995',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da3b6de4-34dd-46c6-886b-8cba35ce5da6'::uuid,'054','996',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e2d84f0-fb1b-466a-8f55-a6e9a1fe8a44'::uuid,'054','997',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1542dfa-48dc-4bfd-8497-07af8384df28'::uuid,'054','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ece731f-8a57-41e3-85b8-485dbc051183'::uuid,'054','999',3468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a94e09bc-7da1-4124-9ca2-f9b1c1a799d8'::uuid,'055','995',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2b680fb6-a0f8-474b-8118-16890438a616'::uuid,'055','996',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dc8667d5-2fb5-4260-913d-ddf81e728b22'::uuid,'055','997',4332,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d0be4d32-7de9-4357-b107-2f3ce08fc6e5'::uuid,'055','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31cef20d-23a0-4a68-938b-391c1a8893eb'::uuid,'055','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f49cd618-80e7-4506-b4ff-215802b64be7'::uuid,'056','995',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eb37af78-25fb-4cae-b92b-4bafc394e108'::uuid,'056','996',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6e6467c-b761-433d-969b-780c4f5a4663'::uuid,'056','997',4175,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7522f2ba-b855-4739-94c9-96c85d84f580'::uuid,'056','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5b93935-5d76-4ef3-9920-6d705191885c'::uuid,'056','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a2fa4f9-249a-41dc-b371-cb052c482eb7'::uuid,'057','995',4321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('086da356-5f54-4214-b5f8-c5161c2c4861'::uuid,'057','996',4321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95289703-23ff-4847-b113-f4b7a81261c3'::uuid,'057','997',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a97be481-ef69-49d8-9082-99913f2da392'::uuid,'057','998',3758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea3c2aa4-0c2d-40d3-a92b-302a946bb5e4'::uuid,'057','999',3500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('161858d4-9649-43a8-9fe7-4933eaaadba5'::uuid,'058','995',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('508150b0-bb45-4da1-bbe9-2f4fb6b8430c'::uuid,'058','996',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5154206f-c601-4136-8dba-a0f8d9ae2fe6'::uuid,'058','997',4175,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('559388a0-b6dc-4018-9f72-d02fe3453723'::uuid,'058','998',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c720619-3d1e-4de4-8393-2121b1e20cb0'::uuid,'058','999',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('839012d2-ebc8-4ac8-b4f9-80b5d23e8582'::uuid,'059','995',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66ff78b9-d042-47e4-8d95-d0addbc6ddd2'::uuid,'059','996',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1cea99d-68eb-4897-8f51-a95e7f5bfe21'::uuid,'059','997',4333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('49027fa6-de2b-4eee-8e6f-3d160d90a60b'::uuid,'059','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f15152b-f0ce-4beb-88a2-c1dc14ec5329'::uuid,'059','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2a13c0e0-8f05-46c6-8bda-66b23b7e814d'::uuid,'060','995',4442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d0dcdf6a-6a72-4f90-9119-d30c6b8d35f8'::uuid,'060','996',4442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5633bee6-050d-4b61-a15b-f4e56cd142d8'::uuid,'060','997',4328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('044831e6-92f5-4dc4-8d16-f13f75ecc3e8'::uuid,'060','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a87a204-064f-448b-b172-6876453c09f4'::uuid,'060','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97ba64c8-307a-49ae-a898-ac1a8f921f15'::uuid,'061','995',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('281b6fde-f3b5-4d0d-8333-c706cbec5e71'::uuid,'061','996',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bcdb707-5d3b-4a59-904a-313946128dc9'::uuid,'061','997',4339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('be917bc5-a34d-4e6e-ab1f-44df1e464eb8'::uuid,'061','998',3891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f5109ea-08b0-434b-9de2-d825100f8cfe'::uuid,'061','999',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4ce9b339-e929-46a0-9ced-b4848be1bea7'::uuid,'062','995',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3fc6efe5-9161-43b8-b583-978d923c0640'::uuid,'062','996',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3721f57-3771-4cb6-b756-29e4bd5213c3'::uuid,'062','997',4363,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dac648a7-1e81-475a-bd5f-256c4ed01bee'::uuid,'062','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59ee21c8-a05d-4c10-91f3-076bc990063b'::uuid,'062','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65d9068c-e561-4f9c-bf72-8a9361353053'::uuid,'063','995',4485,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4dfd6ac-bf2e-47f5-9b57-5b138605afbb'::uuid,'063','996',4485,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3ec92a7-6237-45b3-b247-d69ddb13de47'::uuid,'063','997',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2a23bb0-6206-4447-bc0e-90390ee3c4ae'::uuid,'063','998',3922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce480feb-986f-43c5-b70a-469795dc57e2'::uuid,'063','999',3700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8ce5a6fe-f708-414f-a8f1-89b97182ed10'::uuid,'064','995',4443,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('76aaba36-1d6a-4c9a-be65-e1a5098293b9'::uuid,'064','996',4443,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb88ce13-ab76-4226-a866-d053bd5f8f6f'::uuid,'064','997',4329,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('20607825-f03a-4473-bc69-6c93674f76c4'::uuid,'064','998',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61bff6b5-8560-4906-8264-9162c1e6f16c'::uuid,'064','999',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74a9cb4b-2dfe-4902-8207-891e36251da9'::uuid,'065','995',4431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fcba035e-0b3a-4aac-adae-5d50e572f26b'::uuid,'065','996',4431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dea1f6ba-a236-4522-9dc2-4600fa1779e5'::uuid,'065','997',4317,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f99d969-ba61-4e10-a855-b6bcfea21a28'::uuid,'065','998',3868,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('308a7fd1-65ca-4653-8fac-d168ede3f6ba'::uuid,'065','999',3645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('56811aae-9b4c-453c-b990-686fc4c3b19a'::uuid,'066','995',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a62ce0d-f166-4bd8-be24-7f9e82b5ab82'::uuid,'066','996',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7108fc0-3fc9-46a8-800a-5d9dbf7ec50a'::uuid,'066','997',4434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e45c082a-be19-49ed-b832-e4a8b08a2a81'::uuid,'066','998',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d00be2e5-31ce-4969-840a-1de490fbefbd'::uuid,'066','999',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ed5130a-ce5a-4ed2-a84d-f41319d1902b'::uuid,'067','995',4426,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53c42208-8830-45e0-a728-80da93abdf26'::uuid,'067','996',4426,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9a8d895-c61e-4e01-b8c7-b5226a57076f'::uuid,'067','997',4312,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9eb0522-9dba-456c-ac23-75214964cfcf'::uuid,'067','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('101e9102-37e6-472c-ab6f-60180799c9a5'::uuid,'067','999',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8311ff47-aacd-4fae-a470-b1bf3ba8d092'::uuid,'068','995',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bdca919-666c-461e-b027-d656ab0bc645'::uuid,'068','996',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8da8ca0b-c805-4c36-b4ca-0b51a0931086'::uuid,'068','997',4293,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a1ed2aa-4e60-4995-b73d-6d56ca308053'::uuid,'068','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79c1a1af-784e-4b1c-8ccf-6b0dd3ac4917'::uuid,'068','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cffec8b-13e3-4b8c-b7d1-cbbd2fa89650'::uuid,'069','995',4391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df39dfad-8cba-4732-9916-3cb34611fd95'::uuid,'069','996',4391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8241f6a-7a80-4c1c-bea5-4d2d44170359'::uuid,'069','997',4276,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('040c40fc-9fbc-4c5f-8306-c149fe8581de'::uuid,'069','998',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('952e37ce-cc4d-43a6-a1f4-90e6e3666b83'::uuid,'069','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0eb42b1c-1d39-4726-82b3-49210fbcc577'::uuid,'070','995',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32e0c7d5-592c-45e7-b99e-9299075364da'::uuid,'070','996',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a34c8994-74c7-403b-8e60-8932c2c7a959'::uuid,'070','997',4240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e891c3f-88a5-4815-8b11-4cdf56c9f666'::uuid,'070','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46e7c90d-2cf9-4098-8354-d87dc8d6c08f'::uuid,'070','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('950dc19f-77b8-47bd-b533-9f5765c8bbea'::uuid,'071','995',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2716e302-2f8b-46c1-9f5e-852f38f9322a'::uuid,'071','996',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70f1b420-4f91-4c33-82ce-987c524de378'::uuid,'071','997',4240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba19a9ad-78ff-4c71-af32-d4ee1df703b0'::uuid,'071','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2feb6d5f-0394-4b5b-ba79-bc93c653ed8c'::uuid,'071','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ad7e46de-0eb2-40db-8fc3-c1c15b71c3be'::uuid,'072','995',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50f199f0-7bc3-4f72-9043-b45e9cb3ce79'::uuid,'072','996',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee2b5325-fb83-4212-9244-b7bdcbfa5032'::uuid,'072','997',4240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c074fbc-2f65-45ee-b65f-bc6cad939d39'::uuid,'072','998',3791,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b22d3520-25de-47b1-acfa-1c54c2fe5535'::uuid,'072','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('989b4d1a-1508-464f-b179-8d3fb5b76fab'::uuid,'073','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c43680c9-069a-466d-8c51-f9f4681cabfe'::uuid,'073','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e24ca92-b6cd-47d8-bad0-6acddb72dd5b'::uuid,'073','997',4244,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77bf717b-e164-4c4b-94df-93fa70723165'::uuid,'073','998',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc3d0498-9ae5-4b15-aef2-6f3593dee19e'::uuid,'073','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('84b028ff-9b7e-44b2-bb12-5968ddfb87e1'::uuid,'074','995',4348,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb87ec4a-35ab-4f55-842c-b4d7d273c495'::uuid,'074','996',4348,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cdbfdf51-2621-44df-9fde-aae30e08af3f'::uuid,'074','997',4234,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('57825824-f728-4686-ab9f-c4f53d635e7b'::uuid,'074','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('325213c0-03ed-4338-a9b1-749fab350140'::uuid,'074','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25bd69e3-1db1-4322-9e15-8b14353e3c6c'::uuid,'075','995',4345,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d482c940-de5d-47e7-8775-a10f347e807b'::uuid,'075','996',4345,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f17b75ba-26b1-4346-97ee-39b1a588f89e'::uuid,'075','997',4231,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b66831e5-f727-4309-8e59-c8d5b1183eb1'::uuid,'075','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b44c689b-95db-42f6-a8de-d4d7a814023e'::uuid,'075','999',3560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2c7f09c0-d996-46df-bb2e-641f96f99f52'::uuid,'076','995',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98207adf-ddc4-4580-8cfe-4443744b31eb'::uuid,'076','996',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7fa3268-9a7c-4891-ba3c-ec700a69a2fc'::uuid,'076','997',4240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('65e3bac6-ecb6-41f7-93de-464ddca737a1'::uuid,'076','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01e604ce-4338-4551-ac5a-2d52e0edf6e5'::uuid,'076','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da3f5eb1-c567-4a71-825e-a83b8b45f7f6'::uuid,'077','995',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e61d48c0-48e4-4502-9624-d8d867003ad1'::uuid,'077','996',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e17843c-6d32-46aa-97c7-0112d792e88b'::uuid,'077','997',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a994e92-42f5-4cc3-9fa3-1b3c8b18a4e1'::uuid,'077','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('393c7a86-c652-466d-be27-bc5752c463dd'::uuid,'077','999',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11b83dab-b8f5-412f-ba28-f7819170fdf6'::uuid,'078','995',4314,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15086056-bc1f-4d15-b0e6-4e1134e50445'::uuid,'078','996',4314,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3628e7bf-1bfd-4a5f-9270-bf13588ad28a'::uuid,'078','997',4200,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d280b6d4-00b0-495f-99b5-8b4a3193acf6'::uuid,'078','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edc18f24-a8ca-4b38-82ba-30a195a302aa'::uuid,'078','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c665cab8-c6d4-4f84-854c-a72c9df82096'::uuid,'079','995',4337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('241bed83-ec41-48ba-ad86-e064934622b5'::uuid,'079','996',4337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93540c12-d522-49cb-8ba5-90d8d42fc3a3'::uuid,'079','997',4223,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4400226-2408-4fcc-9324-59d93bd223d2'::uuid,'079','998',3775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3aa1c951-89b5-4ee5-882d-9b374744c50e'::uuid,'079','999',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a5062c1d-7cad-4b01-9269-8f44cc45aa4f'::uuid,'080','995',4342,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc770640-6324-4809-a5cd-bfea37554ca4'::uuid,'080','996',4342,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d0d4b51-303a-4d78-a449-216b9572f414'::uuid,'080','997',4228,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2e4e477b-f7c1-4e6f-b67b-842c5f2891ca'::uuid,'080','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d017863a-5f12-4e72-bc37-d67c0eddecc5'::uuid,'080','999',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98721205-5aca-44cb-aab9-f471cf5e3403'::uuid,'081','995',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9931c91-a0db-4ea9-a14f-61e0235f8d4d'::uuid,'081','996',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cae22910-ab82-411e-a869-a57849733f5b'::uuid,'081','997',4354,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('892b06af-8f9e-4222-a4b1-4b6cf360f74d'::uuid,'081','998',3769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c065a1a9-52ee-44c0-9584-0f6daf8e8f97'::uuid,'081','999',3547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7024eba7-0654-486e-b46e-6c436cd9dfd5'::uuid,'082','995',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39976156-181a-468b-ac7e-1290890732b2'::uuid,'082','996',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98616a0d-caed-4fb3-beeb-024ac389d533'::uuid,'082','997',4270,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0551b27f-d1f3-4177-bd6f-fc132b42a8ff'::uuid,'082','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('941b7e5a-3eee-4b41-8d70-895bfa32fae5'::uuid,'082','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b5f0286-cc95-4a49-a69b-122ac2ea977b'::uuid,'083','995',4360,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0c6b243-30a7-42d7-b8ae-54a9136bd7bd'::uuid,'083','996',4360,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('26e91a42-ea4a-4013-a027-513b7db73fe3'::uuid,'083','997',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5231073c-67f7-4fa7-809d-0926b07b44a0'::uuid,'083','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40c4114e-f636-433d-adbc-f33dbd5a9f9f'::uuid,'083','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c6a0ceb3-8eb9-4653-9ddb-c7691f4009d9'::uuid,'084','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43aa8580-619d-434d-9023-1a92b52bb41b'::uuid,'084','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c394216-40b5-4fb7-9cbc-f53a64e9486c'::uuid,'084','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d9863a7-a8b3-4951-a56f-a0a47b15d407'::uuid,'084','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fcd92fe-ec6d-404a-989b-58aeeab39f15'::uuid,'084','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('659e0624-18f4-4b10-9ac9-45ad08e1231a'::uuid,'085','995',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3af2b3c-c51c-45ab-a180-fd3c6e7f38ba'::uuid,'085','996',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41477b22-0a31-47ab-a25d-6cac36443add'::uuid,'085','997',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84451f68-8c41-4de2-9a92-3d138073b7cf'::uuid,'085','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79bf192e-0936-4d63-8f68-244a6a2c77dd'::uuid,'085','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6ba58d4e-fabe-463c-b146-ffc5f977161a'::uuid,'086','995',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('955b7d45-dff5-4af5-aca9-7c37dbe22a3a'::uuid,'086','996',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('24f38932-05e7-4248-8eb3-15f0bb4c4dc4'::uuid,'086','997',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e46f50c3-4d5a-43f1-a4a0-5eada6a97935'::uuid,'086','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d2e802a-310e-45b5-ad3b-fe3ea3aec16d'::uuid,'086','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89788780-35af-4300-b7f8-62523422ad06'::uuid,'087','995',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89054b40-1533-4030-b956-8227331addc2'::uuid,'087','996',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ef5b038-f747-4726-94fb-88ba6bbbdb49'::uuid,'087','997',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bedc4967-fbac-4650-a593-56cbe863d84d'::uuid,'087','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f47988c-0830-40c8-a73a-aa32fb4a45bd'::uuid,'087','999',3600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('04862d50-0f96-4f0a-aa52-27298320c3d7'::uuid,'088','995',4339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('76a16b5c-07ff-4084-97d8-e4f50e1850fd'::uuid,'088','996',4339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7a30c8b4-4d48-41b9-a6cb-977467a9b9d8'::uuid,'088','997',4225,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71dff20f-8bfe-48aa-9eba-8af8e24e5465'::uuid,'088','998',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5942b54-cb67-4148-a14e-1d3fc1955e0c'::uuid,'088','999',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cec46fe5-d00d-437a-a017-0456ffe85de0'::uuid,'089','995',4357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('012e9d1c-5bad-4b17-a9a1-6e76ee977d2a'::uuid,'089','996',4357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5e037810-9928-48dd-b833-dd1b9e51a420'::uuid,'089','997',4243,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8c9be0f6-3eda-4f17-8473-660924f907ba'::uuid,'089','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19f3ed2e-1a7f-4a23-bdc4-84c2eaecb922'::uuid,'089','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ad76f3ea-59b1-4ec2-8f89-ea5abe57df91'::uuid,'100','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1ecd98da-f177-44fb-a47d-c863dcfd8cc2'::uuid,'100','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('858d9caa-1eec-41e1-9c04-a2feccd3c8ab'::uuid,'100','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf1fe661-59fc-4d7f-afe3-5ebd07146263'::uuid,'100','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f62fee5-27ea-4b2a-90e4-fbbdf003291d'::uuid,'100','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('171f81f3-d10c-451e-978e-4920339691f6'::uuid,'101','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('669437e7-cca4-419c-9488-575b0ca8107e'::uuid,'101','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e60d6646-8044-415d-8000-3dc2c3a032f5'::uuid,'101','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb07c05b-4c3c-4e80-9631-ecea13ee9bbc'::uuid,'101','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4dd640b-a387-405f-a901-2b38da452dad'::uuid,'101','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9c6fc1d6-ca5d-4ff3-98bd-390e2c7c6426'::uuid,'102','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('619619cc-cd81-4541-9d29-de14bfc94ab2'::uuid,'102','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c0dba64a-d976-4921-a4f0-c4e30c83a17a'::uuid,'102','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ec7a3d9e-e19e-4080-9ef6-5efa7cdddb85'::uuid,'102','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f33c616b-7860-41b2-986e-d4e446612abb'::uuid,'102','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6a79ebd-7ca8-45cc-8806-7a636f3858df'::uuid,'103','995',4364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8132a18d-d544-4909-898f-7d0687e8e77e'::uuid,'103','996',4364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d9e36cc-c20f-4955-b976-a0e9e0536730'::uuid,'103','997',4250,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ecc52a6b-5c6b-4674-8cf2-1237b37482fc'::uuid,'103','998',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35bbb867-64b9-42ee-823b-0c85ad66b234'::uuid,'103','999',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bc94c933-efeb-4ab1-8d5d-50dd01707cbc'::uuid,'104','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0f06a17c-e79a-4c1b-9113-c463623bdcc6'::uuid,'104','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3ba54df-36a3-4084-ad19-e3bd50e2b1a1'::uuid,'104','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcdadfc3-5a5b-402a-81b8-0c13d6a6434a'::uuid,'104','998',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aab1ef28-eb8e-408c-8da8-6559816a94d7'::uuid,'104','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b37297c-d667-4a82-8c7d-b4e8d67af687'::uuid,'105','995',4398,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0d45ea7f-3270-4de3-8fdd-de6c5692b984'::uuid,'105','996',4398,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5dd93294-de94-457d-a725-9be14a95f087'::uuid,'105','997',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4ab58ca-44b3-48eb-b861-eedce7040d9c'::uuid,'105','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('053820be-b1d2-4038-891f-cd1d0cbeaabd'::uuid,'105','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b1ec5dc1-90ed-47a2-9a22-9b92841493d2'::uuid,'106','995',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a88f621e-f6e1-4943-b44f-4db698b41f44'::uuid,'106','996',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1a2d4e5-6f28-416e-abc2-a70fc87703da'::uuid,'106','997',4264,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('79cede23-1ade-4647-870d-7a5adf760029'::uuid,'106','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a72672e-09db-4c16-bac7-65550bc229a6'::uuid,'106','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5307c217-3008-425a-8948-b86bebb94560'::uuid,'107','995',4367,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e476919d-1e82-4c83-8b94-4cf87f5e0a19'::uuid,'107','996',4367,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7417172a-dea6-4381-8c87-e6af7a4456f2'::uuid,'107','997',4253,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd16a9be-01fd-426a-8b86-bae159275a00'::uuid,'107','998',3547,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('249f8ee2-68c5-4b71-a875-57bec28284b1'::uuid,'107','999',3419,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3a682baa-2b83-43c0-9425-6fe9ae650342'::uuid,'108','995',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f0b760d-ad26-4534-81da-1de0eabe7b54'::uuid,'108','996',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2fe0a7c-01ab-417d-a1bb-a3ac5df09f93'::uuid,'108','997',4260,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('451bc8a6-60d9-4fb4-bc2d-2a254268d37f'::uuid,'108','998',3811,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73155e69-3304-47df-be69-7ed2b9469b5d'::uuid,'108','999',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76c61e16-f055-4b1c-a64c-81dd448b1532'::uuid,'109','995',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd0beb21-2a51-417e-9113-974f5b6c0301'::uuid,'109','996',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e92a1e8a-d31a-46d4-b411-b0ee1cf3c24a'::uuid,'109','997',4373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48d85141-bf86-4863-a1db-37d7acbdf52d'::uuid,'109','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fe74840-3a77-4990-afe8-4721de7a089b'::uuid,'109','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8fdbc5ae-9edf-442f-936a-213e697df409'::uuid,'110','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f23ebd6a-ebef-4de8-96dc-d07316f79b2b'::uuid,'110','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2b3c0bf-2811-44d7-9a89-5859ce91c168'::uuid,'110','997',4261,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('124a4584-2526-4d7f-8c40-ee9c0235e237'::uuid,'110','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40038cab-e1db-4a29-a03d-c8ed00f81383'::uuid,'110','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c534524e-cb11-48d3-8896-c84c5f1551c2'::uuid,'111','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c1bb220-be5c-4b7a-87ae-21b31180502d'::uuid,'111','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('badbb0c1-8ff3-47d9-af44-af68a1766004'::uuid,'111','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('780a2173-437e-4ce0-be4e-fcc167a8c276'::uuid,'111','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b3a1f2e-0a4b-4d0b-8f57-98441501a60c'::uuid,'111','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b90e80fa-8748-4523-a5ee-c2bba9636cf0'::uuid,'112','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da68c42a-b211-4ada-9a37-430d17de0729'::uuid,'112','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ec5058c-3dda-4c8a-a5a5-8b421c234902'::uuid,'112','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f543a880-97d1-4938-86ed-1c970cff0c26'::uuid,'112','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f382dc5e-fa2b-49de-8858-cab2c71c25a0'::uuid,'112','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c2f0bef-807a-4be8-bb75-c9420f7f816f'::uuid,'113','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98b7c844-ac29-400b-b413-8ba3f68f6dab'::uuid,'113','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0258bafc-6bd1-422d-9638-5976c89d39a5'::uuid,'113','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ceb2c93e-3477-4671-ae73-d5cd0bca7bbc'::uuid,'113','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf3f68d6-c37a-43a2-9aac-991fa24498f0'::uuid,'113','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('413075af-a1ab-4928-8c25-cfeffea4e8d9'::uuid,'114','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ab33e00-cd36-472e-98ba-eea80d3b9fad'::uuid,'114','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09b5f0a3-2bd4-45ab-b10a-f0e5236135e5'::uuid,'114','997',4261,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da5453a9-e657-4189-9dd7-76c1800aeb17'::uuid,'114','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20e0c6ff-f337-4db4-8bd1-f1db0680e0cf'::uuid,'114','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b1dd9c1-e552-4be2-ae57-cea97fd939af'::uuid,'115','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9435c59-d91c-41ef-8ba4-33b11baf1ec2'::uuid,'115','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2bfb8aa-0367-4871-bbd9-0ffe05ed8d57'::uuid,'115','997',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cf1178d6-1cfd-46f0-af4d-e24d326c5445'::uuid,'115','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35a0b480-15bc-4879-999e-ef1ad726e23c'::uuid,'115','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('99cd28cd-cee6-48af-93c0-049c163f6456'::uuid,'116','995',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6fd9d8fc-8152-4641-bf30-0cc66e8ea4e2'::uuid,'116','996',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86f98351-7159-4143-a2ff-ec98a862bf57'::uuid,'116','997',4268,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d1201ecd-f6d9-450e-9bb0-a5101859c612'::uuid,'116','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35401e05-8a7a-48eb-869a-3421ae05805e'::uuid,'116','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a07041b9-0072-4726-8637-4f727f188ba0'::uuid,'117','995',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae89cb2c-e90e-46b7-9f69-8d2774afa011'::uuid,'117','996',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('951a3aa2-7286-428f-9cd5-89bcd0c27d67'::uuid,'117','997',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('06e63684-12f0-4220-8665-177aa81e3565'::uuid,'117','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e6142fd-7e22-4813-86e8-e7c744eb1daf'::uuid,'117','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e43acdcb-f93e-4d34-8a69-88b1a43cb11c'::uuid,'118','995',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35c4f7bd-13c2-48bb-8511-85923e9d8ed0'::uuid,'118','996',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c9d9684-e914-4b8f-b0ca-7160e7b0d58c'::uuid,'118','997',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1d291ed-3cb8-4dea-9b7d-2c5d6c3f984e'::uuid,'118','998',3826,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8fbaff1-0ad3-4033-9662-3ffbc42399fc'::uuid,'118','999',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1fd52de-c778-4fd4-a550-35138fb7d07b'::uuid,'119','995',4435,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7963ea33-9971-413b-85f9-6801f751ef3e'::uuid,'119','996',4435,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e1a3c39-c312-496a-901f-4ade2f67ea8d'::uuid,'119','997',4321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2a88c77-0d67-480a-9372-7166631b9952'::uuid,'119','998',3873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8757b020-2541-47c7-a2a7-dc9642130a1c'::uuid,'119','999',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('652ebce4-1882-4dce-b78b-e32fa32796d5'::uuid,'120','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86e81bfd-76f3-4ece-af9f-7d88d9098aff'::uuid,'120','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('63628c12-38ea-4be5-ac9a-8d1230c8ed4d'::uuid,'120','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfbcbba7-4d1f-4eb1-8a08-3c779a565e26'::uuid,'120','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38bdac92-1185-47e3-bc9c-3a1916b87521'::uuid,'120','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f485fda0-b0c5-4ca5-a5c2-d0b68c9d1a39'::uuid,'121','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f99c3ec6-764a-497f-8d1b-4217c02c906a'::uuid,'121','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a14c2801-0954-4484-b68a-1f53c396c110'::uuid,'121','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb84ef94-288a-4bfd-88d1-6347bc72afd1'::uuid,'121','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6a4e653-6cf7-4ce0-8738-253d3effe860'::uuid,'121','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1790137d-2cb2-41f3-b672-80f3dc543505'::uuid,'122','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5870cf94-bdad-4298-a1ab-7698ea6be035'::uuid,'122','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a22f3fc4-979c-45d5-a401-36069cecc29b'::uuid,'122','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02ff0cfb-ef17-43f2-adba-5db6e7d5361d'::uuid,'122','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9522b35e-05a2-42d3-a101-be2590ff4dec'::uuid,'122','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('331e257f-e37c-459e-8c1b-e1c04cbaaede'::uuid,'123','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6e8c78e-6df8-4693-b4d0-df3fde8f30c0'::uuid,'123','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33cd1700-1e6a-4845-a03e-ac288ab7bfbf'::uuid,'123','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46c91f25-629e-4033-a108-a3b02d0a723f'::uuid,'123','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5667d42-c000-442d-9f6b-404158def1d7'::uuid,'123','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d9732416-ea70-4017-a25f-29cca7614a06'::uuid,'124','995',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67e2a272-3afb-42a6-be99-98bf7990288b'::uuid,'124','996',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d1c025c-6af9-4cbf-b17a-7845f0a68134'::uuid,'124','997',4270,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('224217ee-af43-4cc8-86e6-3f39de91f453'::uuid,'124','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb84cc03-f32d-4cac-a822-78a049ad2ef7'::uuid,'124','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b13ecbde-f9ed-4404-a73c-183ef2737de8'::uuid,'125','995',4392,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a54f08f6-5a54-4cea-bb9a-73820e83e4c3'::uuid,'125','996',4392,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4738e157-0ab4-4813-a976-d6996812f4bd'::uuid,'125','997',4278,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fdc1c05d-efd4-4bf6-889c-3f0cb7524f75'::uuid,'125','998',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e261a390-a16f-46ff-b589-4e935c42fe85'::uuid,'125','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ebaca5e7-bd77-42a9-9421-082163971160'::uuid,'126','995',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('762d9321-53b9-4ca4-982f-63ca533bef72'::uuid,'126','996',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9139ba2f-4d2b-4e35-8ef7-6c65a93d2006'::uuid,'126','997',4264,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('449c7f2e-3f7e-4fcd-9e1c-e7f51f8db1e8'::uuid,'126','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ab3bb50-5c6a-44fc-8a84-99e83a456d83'::uuid,'126','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d57cb66-3350-476c-a0f8-2886f364f2c2'::uuid,'127','995',4351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f98eeb30-b0b7-495c-8194-d42d5f6f21e2'::uuid,'127','996',4351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8164e078-7968-4811-8783-73f6f39270e0'::uuid,'127','997',4237,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7320a630-18ae-4e18-83a5-8104a4a508ad'::uuid,'127','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c60b930-4c39-46d0-81b8-718c0b673825'::uuid,'127','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b485a4df-f2a6-4f33-afb6-cc936fc83ca7'::uuid,'128','995',4285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f5c06e0c-f5d8-4380-a543-a670f221ddef'::uuid,'128','996',4285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc340042-e072-4d5a-b2fd-20f433ed7b88'::uuid,'128','997',4171,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98520779-42e5-4ea0-8859-0e3cb1c5dd48'::uuid,'128','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00af1364-40cc-4041-85a9-9a84ab632041'::uuid,'128','999',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92039457-7701-44f8-b321-e44161c1ecf0'::uuid,'129','995',4235,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb07bb98-a682-4c50-befb-bd9a57145827'::uuid,'129','996',4235,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('daa94926-ce90-4e4b-a3a4-01df28ddd795'::uuid,'129','997',4121,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e658f0b0-1fc3-4ccb-81c6-8d4a3c892705'::uuid,'129','998',3673,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('502f98f3-b11a-401c-a20c-28c0249e1fdc'::uuid,'129','999',3450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8df9fac0-74cb-4aab-97e6-e76f141cbcc6'::uuid,'130','995',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46485f89-23bf-4a23-a9cb-ec410b2752d8'::uuid,'130','996',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0815ceae-805d-4677-afa2-615c95689252'::uuid,'130','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b203717f-92dc-405c-8384-27d8ba6a1a35'::uuid,'130','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0a943f8-e18c-4509-8620-89bda1554fd6'::uuid,'130','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65960366-6439-4c27-a72f-28a9974d9e74'::uuid,'131','995',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46789c4e-ecda-4322-a330-665e69fa9f42'::uuid,'131','996',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90ab1389-7daa-4cd0-8ee0-01efae851d4b'::uuid,'131','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('62870c5d-64b9-4839-9adf-cd41f4d82a44'::uuid,'131','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('947f9a85-faf3-430c-b308-41cde9eec944'::uuid,'131','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('44daa34f-d08f-4677-bc98-5672d9a73037'::uuid,'132','995',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('186d216b-6367-4b17-9cea-1e09e3a6503b'::uuid,'132','996',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3fe0fbb9-e525-465c-997a-2a7f617cae5a'::uuid,'132','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8ed42f73-7bca-4d4a-a734-f68fbb4bb352'::uuid,'132','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f09d86-8e42-4337-ae6a-2138ad65aaad'::uuid,'132','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ca3fbf5-f043-44c9-ba38-7ac57da20469'::uuid,'133','995',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('355ce44a-e6a5-4ead-a51d-7b9bca87443d'::uuid,'133','996',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4cd6f59c-ec24-4055-bf16-c0a44114c5c7'::uuid,'133','997',4143,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce52bc43-c9ae-4781-9dd4-23b04c1db3f2'::uuid,'133','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a84ddda7-821d-4cc8-aad5-fc1246a5fd9d'::uuid,'133','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fc124178-ea8e-4b68-9611-46e7f7369e90'::uuid,'134','995',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43cb7df4-20a3-4e48-a3a9-f1955b5b9ae6'::uuid,'134','996',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1218514c-052b-4045-ab41-c5d19fe15bb0'::uuid,'134','997',4143,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4379c234-65a2-4800-ae9a-a4172ceb6ac6'::uuid,'134','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01d553a3-884e-4ece-9798-3553c3baf182'::uuid,'134','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50f8cbe1-d4fa-4c0e-a77e-9f2ed7b5a44f'::uuid,'135','995',4253,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('75179eda-d2ef-4ad9-b7ca-19e4d9c47b4e'::uuid,'135','996',4253,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('87d6255d-836b-49b2-ad38-8b939f4cfbc4'::uuid,'135','997',4139,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7364cef9-629c-4ca9-bd42-d31bae45272f'::uuid,'135','998',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e816553e-69ec-4d3f-a61a-078c2cda42f3'::uuid,'135','999',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('af8d199a-7029-4631-9b61-9830fbf8a6c8'::uuid,'136','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0a0aef7-4b6f-4b3c-96b8-42313519d82f'::uuid,'136','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c582d4e-d713-4264-a1f4-c65c6097a83b'::uuid,'136','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ac863f73-98e5-46ef-b5af-5bf91c04144f'::uuid,'136','998',3594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c152e095-2c96-4b29-ac13-84e8050c826d'::uuid,'136','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c46fd3b-93e0-40b3-9954-f88e0b9f69be'::uuid,'137','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e8a171a-9480-42eb-a22a-8d85245a77fd'::uuid,'137','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97ae952d-fb6f-478c-aabe-8eff14c4c854'::uuid,'137','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff018b57-8712-40e9-b763-dfe5d977ed72'::uuid,'137','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9d8253c-1541-4cba-91f6-825d429cb14f'::uuid,'137','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7de8e3a1-49d2-464b-9f2c-74145fd944c1'::uuid,'138','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb4e7dc5-3f56-4e1a-ae34-82d0ab5a66e9'::uuid,'138','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0a94cd0d-c7fb-4b3e-a548-5472f385d7c9'::uuid,'138','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d508bcd9-f096-49b7-ad83-cc5716d2fb36'::uuid,'138','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff380303-a78a-45da-8ee3-720c483512d0'::uuid,'138','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e51ff67-91a9-4b24-b62e-d934105900b2'::uuid,'139','995',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bfc1648-9af1-42a4-8ef7-130a346023ac'::uuid,'139','996',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8ff9dbc-0dc3-4195-b79b-83c1dd895821'::uuid,'139','997',4293,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31a5b14b-6821-45bc-9a5e-f17811ddee85'::uuid,'139','998',3708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('423fca22-186f-481f-8959-4da0176d36e7'::uuid,'139','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('37b44b01-947f-4629-aa3b-943ad3771979'::uuid,'140','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159e07ae-a3ef-4e77-a86b-be9c2762c61d'::uuid,'140','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f33cd11-7697-4172-bff3-3f383c4e321d'::uuid,'140','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('213e8630-c1ca-47f5-9d64-a32c7181935a'::uuid,'140','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b3a50c4-e4c8-40d6-b8ef-b9e759ea242a'::uuid,'140','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f22a7d7-a8a9-45da-add6-ba102ea38e41'::uuid,'141','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccf90049-1a87-4701-8a08-df9f06d30826'::uuid,'141','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38a22a3d-fcb2-4016-ad74-602cb1eb7027'::uuid,'141','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88b292c5-d15b-4f24-8537-e58ae76660b7'::uuid,'141','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b57d327-1120-4e3a-a5c0-7832bc597330'::uuid,'141','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4a9739db-ea42-402e-b32f-b3f9055f374a'::uuid,'142','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33d365c6-a74c-4dc4-8825-a9cd2b611b4b'::uuid,'142','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4ea5ca2-2c44-40f0-82de-8fdc035b2fe4'::uuid,'142','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683b0848-f54e-48d4-8f85-a2d9ae9db64f'::uuid,'142','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da25a9b1-4d17-43fa-83da-e2c66b2df56c'::uuid,'142','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8de5e075-b3da-444a-8d89-722139a6265d'::uuid,'143','995',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce73f3fb-9e49-41d3-b636-fdb62c05e07b'::uuid,'143','996',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a84f5654-48f0-4d73-9e9b-4b36ceb7723f'::uuid,'143','997',3992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f947c03-ebf9-4c67-a12b-6f7af2d8024d'::uuid,'143','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58cb913f-675c-422a-89ea-c9b1eb874324'::uuid,'143','999',3321,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('20befd77-54d4-4ec5-8d3c-329052b6abf2'::uuid,'144','995',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aa9c2828-0f1f-4382-8d4b-ae163e3f65b1'::uuid,'144','996',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7c7a50c-6184-4b0c-9095-a6fe3acdb341'::uuid,'144','997',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5e39655-2b10-4b3e-be16-fd9cc75ce3cd'::uuid,'144','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6aac0724-b83a-40b9-a81f-5e252881115f'::uuid,'144','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('108e0866-4dd4-46f9-bdbf-0811e24be9e5'::uuid,'145','995',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('51f21653-9f9c-4d52-adcb-984f8f288245'::uuid,'145','996',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b6a60b26-de4f-4d3c-a69c-0e92177ceca5'::uuid,'145','997',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('036ca304-5318-4b01-92ac-202bc925333f'::uuid,'145','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a129e503-1a9e-43aa-ae14-5c41979c9648'::uuid,'145','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a35d4109-34ed-4016-a31e-25622dbb4afb'::uuid,'146','995',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('639f637a-9b20-4848-9164-0f0ee0a44b3c'::uuid,'146','996',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5352df15-25b6-4dca-9756-178541077251'::uuid,'146','997',4052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('929c432b-1f9d-4c9f-8b12-834fe21ed4ed'::uuid,'146','998',3604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f175f551-5efd-4546-ae30-6a2a7d3bc49f'::uuid,'146','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35e02561-2a64-478c-af56-154aac1ef290'::uuid,'147','995',4080,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('28516c25-0cca-410d-9889-7b68e3fd6701'::uuid,'147','996',4080,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77b39be7-307d-4b1b-b008-37924b0b3323'::uuid,'147','997',3966,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2208d302-de88-49e8-a5e3-6b63641a0caf'::uuid,'147','998',3518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7ca20dc-4ee4-4706-96ad-451f55ab2c3c'::uuid,'147','999',3295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c5d89dad-8b29-498c-bca0-2f58a83819a4'::uuid,'148','995',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e05da48e-35d8-424e-a761-ed363902394d'::uuid,'148','996',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85d00020-8922-4c04-b3f8-f2a0f44146dc'::uuid,'148','997',4113,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e676a417-a50f-4bc9-bcd5-b1074a112489'::uuid,'148','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('215a3828-f797-4f44-b0ba-f59c3dd91f33'::uuid,'148','999',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d37f41fc-93d0-4e4f-8433-3926d229ef0a'::uuid,'149','995',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f386ef2-a76f-4106-8957-95aafdc4aec9'::uuid,'149','996',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('276e9cfa-5160-4061-a3d7-b32e9fa05e25'::uuid,'149','997',4100,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bf2cb76-ec5e-4621-91f5-e03ea8891301'::uuid,'149','998',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('735ac79f-9b65-4087-8d5b-02d0abec1b19'::uuid,'149','999',3429,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('58fc974f-be88-47f6-8a2c-5725da923845'::uuid,'150','995',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfe18d53-ee0a-4b11-b7ae-c3d0a4e75f48'::uuid,'150','996',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39ee6a83-1f10-49e9-a02c-dd9078c2467d'::uuid,'150','997',3897,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8732b23d-0be2-46d6-9ed4-8ece7c2c8a46'::uuid,'150','998',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b5a86fc-e137-469d-8473-68f4a454e02e'::uuid,'150','999',3225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f44eafc0-de75-4b8b-85eb-d2239486e460'::uuid,'151','995',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6331b4fc-f2c7-4233-9f0d-4f425e0178ad'::uuid,'151','996',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('978df44b-7106-47fa-8ab2-f18b06722787'::uuid,'151','997',3912,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e83d5bc-aa8b-45a7-a07e-8a77b2fb3db4'::uuid,'151','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('24412e32-fd5c-4627-837b-e639c510b715'::uuid,'151','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5ef272d6-589b-40f5-b071-1a7176393224'::uuid,'152','995',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('015b29b8-595b-40cf-9167-42f1e64bf7c6'::uuid,'152','996',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ca8cb772-fbf4-4858-8364-436cfb630c15'::uuid,'152','997',3912,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8d96619f-ee17-402d-b7e6-922ad7de95f5'::uuid,'152','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2e19e85-3fe1-4ad8-8a3f-151b5b528d54'::uuid,'152','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0e30183-2a68-4f15-a574-8588cee763a1'::uuid,'153','995',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9a60411-7fb7-4713-906f-37b69987eee1'::uuid,'153','996',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1924c650-830b-4be6-a9e0-504480d26571'::uuid,'153','997',3935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f362a7b-c5a6-4a9f-9e65-49c4b639ba33'::uuid,'153','998',3487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c7d8791-f630-4400-abc6-c4fe319aae8e'::uuid,'153','999',3229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7686cbfb-ca54-4751-9286-26093a0a705c'::uuid,'154','995',4068,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2c2de4e7-1e02-4e2f-a43b-c2d217026b8b'::uuid,'154','996',4068,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6bc8c4db-ffdb-4545-a314-fd300c3039da'::uuid,'154','997',3954,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad753d7a-18e1-437e-a791-c24a2657b815'::uuid,'154','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfcf4aad-1868-4c51-affb-94f3a05b6440'::uuid,'154','999',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('242e7268-2ec2-474e-ba05-6ad4348b3c20'::uuid,'155','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12c65a40-8331-409c-af2f-4aff3edf249a'::uuid,'155','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf7e4b88-4b21-4cb6-b559-b92dc9edfdd6'::uuid,'155','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('555ecd88-620d-4244-b28b-4fe11b43ad40'::uuid,'155','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('352a8690-7c8b-48bc-8d9d-aa520ea184e0'::uuid,'155','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e41079f2-98d0-4c15-8d94-543188550eaf'::uuid,'156','995',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('432130d0-9aa6-4b82-b48a-c36060ad2847'::uuid,'156','996',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d18919b-bc4b-4bce-822e-1fabd5444778'::uuid,'156','997',3943,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf566f76-58c3-4656-a11f-e8cf67b41630'::uuid,'156','998',3495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de90f81a-d7ce-4b7a-ac21-099a260c8d5b'::uuid,'156','999',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10cd9b13-c604-49a3-9d6e-f7d1079eaea8'::uuid,'157','995',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68a20935-6f34-4dbd-8de3-c428d14d3da0'::uuid,'157','996',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('715514af-5632-41c5-8bdc-8ab65f72dfec'::uuid,'157','997',3950,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f842a4b1-50cc-4b81-8b73-b97d0594f219'::uuid,'157','998',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('285bff3c-38ab-4f0e-96e4-d49851e7f2d3'::uuid,'157','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d8df3fa5-adcb-4e00-bd65-a7f1f9de6773'::uuid,'158','995',4099,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('469b3c95-cb93-40a9-a750-3c84cb1681ff'::uuid,'158','996',4099,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43399d29-1441-42a7-be5a-91f34bc8aab2'::uuid,'158','997',3985,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a0a7c8e5-5ca7-4e24-89ed-dfadaa46b2da'::uuid,'158','998',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c00c9066-74e5-4127-81df-b452c1044e5e'::uuid,'158','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c61ba7ed-4b29-4e06-bb02-13c82b2e598e'::uuid,'159','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87e7b5f7-f03b-497c-a1ed-fd98ccef7a33'::uuid,'159','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdcc23b1-9a99-4730-81e5-4d8c81160582'::uuid,'159','997',3978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5462f740-39fe-4bcc-a628-320db98e6543'::uuid,'159','998',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('499ab95a-1317-4011-9bce-0441cce1ab13'::uuid,'159','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1defd046-3335-4701-8deb-94ea602a6d2d'::uuid,'160','995',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbaf6b80-17a1-42c6-8bd4-a357ee3ef171'::uuid,'160','996',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db80d6ec-360a-4fcf-98ca-e76c7f8b00ec'::uuid,'160','997',4038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba015da6-55de-41e1-a40b-835701612903'::uuid,'160','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6943cb9c-f423-498f-b881-29311b9551b0'::uuid,'160','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f00d9e0e-4c69-4dcd-a1b0-9fb1bf5b9040'::uuid,'161','995',3994,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f7d1d810-f5b2-481c-ac86-5a97329c12cf'::uuid,'161','996',3994,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14b7e6c6-409c-4f9e-b65e-20cd396b2c49'::uuid,'161','997',3880,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e8ee5de8-2663-4d60-8ed4-b5f7a01f808a'::uuid,'161','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c6fca82-2873-4024-8640-b03a07f41e18'::uuid,'161','999',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('db1dccf5-b4a9-46d8-a8d0-da2220c427fa'::uuid,'162','995',4042,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e753c93-0713-4c87-983a-ce9f141d5952'::uuid,'162','996',4042,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4b450802-f7fe-4fdb-8414-89719c695dfe'::uuid,'162','997',3928,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77f5e116-f922-4f2c-b462-3fc67b8c7f3e'::uuid,'162','998',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d842ed1b-c764-4c18-b1de-36e99c0412e4'::uuid,'162','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e9e2185-c886-498e-8480-d75c1456de94'::uuid,'163','995',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2402859-f001-4c71-90b6-a16505eaba4a'::uuid,'163','996',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('980b750a-fd3d-464b-b3dc-4303ae285879'::uuid,'163','997',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a7f4885f-4127-4567-84c1-5c0d13facd1c'::uuid,'163','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('535e1c72-cbdc-4615-916a-589559302a9e'::uuid,'163','999',3261,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('366eff11-5b81-4cc8-94ee-46070873d554'::uuid,'164','995',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da0ff9f3-50fe-47f9-b72a-fae74f07e427'::uuid,'164','996',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('492bb187-e212-4927-bac9-a60024b2bca5'::uuid,'164','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33ab3e3a-e3bf-4689-9d14-74b08edf3961'::uuid,'164','998',3445,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f0ef318-df43-4a13-824c-e71cb9a24d32'::uuid,'164','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8306512-0635-4e59-8f8e-cd032d5c9dc0'::uuid,'165','995',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0ddecdd-38bc-406c-9c80-1835f211e026'::uuid,'165','996',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2c38a24-3a5e-420a-8e3c-840851fe9bfd'::uuid,'165','997',3895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e12ceae9-9f8d-4547-9308-a8bd2ece6ca8'::uuid,'165','998',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('055580cb-e468-43ef-9c8e-90a8b9465fd8'::uuid,'165','999',3224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('08f08137-15e7-4584-b85e-88a6452e4429'::uuid,'166','995',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11c7e141-650b-4f05-867e-10ab794506ef'::uuid,'166','996',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1afdd139-0860-4d27-b985-b3fead509d41'::uuid,'166','997',4138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c86fb1e8-3ea8-4f19-986b-47db9d03fd99'::uuid,'166','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('765ee2d1-b182-45cf-8559-edeec03d4930'::uuid,'166','999',3331,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed70f4fd-beb9-41c4-8c4f-2e5bc5c83d82'::uuid,'167','995',4113,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('029c06ba-37de-4082-8e6f-1b8e18dd34fc'::uuid,'167','996',4113,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f08ba717-3e99-485f-b6bf-2d0da7e67802'::uuid,'167','997',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb608818-4d1f-4df0-8774-560281a3de5f'::uuid,'167','998',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9be61dd-8b86-4633-8a66-041fbaaa52b1'::uuid,'167','999',3328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3332350c-8b62-44f0-a233-0ce6778326b4'::uuid,'168','995',4136,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f387aee-75b0-4723-957e-01c17ced81ee'::uuid,'168','996',4136,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d61224b9-759d-4e41-b30b-cb03f8c174e0'::uuid,'168','997',4022,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd8b77ad-6c97-428b-8b09-c94e37e20d57'::uuid,'168','998',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e01c1a18-7343-4abc-9252-02957d86a9ab'::uuid,'168','999',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef3aa739-5286-49ab-8ea8-8fd658f393c1'::uuid,'169','995',4179,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5faddde-b02b-4b1f-b2c9-6b2d837e6afe'::uuid,'169','996',4179,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a72171d-2871-4c26-9e72-0d254337b76c'::uuid,'169','997',4065,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98e26b0d-b871-4176-8b6b-4ee33aa0b37c'::uuid,'169','998',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a15d5a50-4f3a-42d8-81b0-22ea453288e0'::uuid,'169','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9bd8fc69-aa98-4232-895c-f0edcc835448'::uuid,'170','995',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b25c63ea-e563-4ac1-8026-5e2304dc8118'::uuid,'170','996',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84a079dc-ac93-49f9-ba68-285ea5353fe9'::uuid,'170','997',4085,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7655986d-0243-420b-a27c-b7a78d8d30eb'::uuid,'170','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba866f39-e825-4ac6-bb51-95ee03fd5c47'::uuid,'170','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8eb8d430-6e66-45d6-9586-945b3142b4fd'::uuid,'171','995',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('047b1ebb-6ec7-4da1-99fd-aaac54884eb4'::uuid,'171','996',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fcf22807-cc23-471f-ae65-cf24210f7c4f'::uuid,'171','997',4107,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14bd39d6-f9d7-416c-bb88-dd8e26af3e7f'::uuid,'171','998',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51ddfa0-b35f-4744-b4aa-fb7da2474c5a'::uuid,'171','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('398890b1-c627-430e-969b-8e776fba9543'::uuid,'172','995',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ac890d-606f-4b34-b12d-a9c957d12c46'::uuid,'172','996',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('611ac9e8-53df-473e-b564-d3ca76ec9dc4'::uuid,'172','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ae38b39-3f12-47e9-807b-b4609439f3e7'::uuid,'172','998',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea5b9bef-eeab-4ada-8c2e-a7a683692695'::uuid,'172','999',3406,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcbfa541-5fdf-4c78-8879-5a209e970554'::uuid,'173','995',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc3f276b-a41b-4e27-bbad-3ff12b88405a'::uuid,'173','996',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2af378f-7aa2-4b64-8843-96fc464283f1'::uuid,'173','997',4263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b861617-2a04-4aee-a495-c6950b464742'::uuid,'173','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c26a73a7-1146-4c65-9b68-caa453cc8eed'::uuid,'173','999',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ebc672cf-9225-4424-8904-8a66548db2ce'::uuid,'174','995',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('389b9ee8-97d9-4eb0-8695-77485bc1376b'::uuid,'174','996',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a3d56ee-02df-4846-a14b-51ce3802b3fe'::uuid,'174','997',4132,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e519fe11-2527-4d68-bf15-f1d0fa72cea1'::uuid,'174','998',3426,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ac0afb8c-98f4-41e0-ab31-bdc951d1b152'::uuid,'174','999',3299,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b43738e3-39be-415f-80cc-e3f0687a0f07'::uuid,'175','995',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2387e3af-3b21-4510-a29c-d584868c6375'::uuid,'175','996',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e7c535a-55b9-45b1-b28f-bec9980cee9e'::uuid,'175','997',4145,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0645c658-94af-4467-ad3b-8b19acc1d6e3'::uuid,'175','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('826bae35-ad06-4e91-bd42-6d81f35e0785'::uuid,'175','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('65e46e46-271d-4cb8-bfaf-1d2c4625e5c8'::uuid,'176','995',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d2e537f-61d4-4c77-93b8-a2d362ad8d0e'::uuid,'176','996',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e892ecfd-4164-46c3-b5d7-06396edad6d6'::uuid,'176','997',4145,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2cf30e30-ccb1-4c26-a372-7bfce3e3c1b9'::uuid,'176','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c10bb3fb-2d57-45e8-a682-e5204094587a'::uuid,'176','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f69e810c-e895-4497-a88d-11a9375555d6'::uuid,'177','995',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0334e4c3-3a1e-454c-a31a-3fa1c97d441d'::uuid,'177','996',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34fa4421-04b6-499b-b737-826b8c053c77'::uuid,'177','997',4056,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('317ba659-8b33-46a4-a1fc-a697d724d33d'::uuid,'177','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a6b72bb-a0cd-4779-87fc-9c1fb1229d34'::uuid,'177','999',3385,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e2f78275-6c78-4e3b-994f-09fff246ebbb'::uuid,'178','995',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('861d5b4f-a1d9-40f3-9274-6dcbc0e986fb'::uuid,'178','996',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bbb6107-6e10-4202-b50f-5e3262ec9448'::uuid,'178','997',4085,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e5f8d756-05f3-4485-85c1-2c5e4d7a33b9'::uuid,'178','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f29bb90f-33f1-484d-bdf4-b554c39f26b1'::uuid,'178','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30de071f-5eb9-485b-9980-9130717c2713'::uuid,'179','995',4242,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9d443997-9dce-4ac0-8c57-71714f9ad936'::uuid,'179','996',4242,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84520b92-cf3d-4a4f-9a0b-95d9c359d85b'::uuid,'179','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3bd1d4b2-4469-46aa-99e8-39fdc7578c75'::uuid,'179','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f124808c-804b-40b8-8e56-14b9d553ad83'::uuid,'179','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('409163cb-9ade-4883-9520-60836f1e0ca7'::uuid,'180','995',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('489ad06d-20b9-4ff4-82ca-14764ff0aabe'::uuid,'180','996',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('132d4a0e-48c5-458f-8e31-c24a9c47cf95'::uuid,'180','997',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0fc5fca9-dd91-412d-9936-b6dac20ea11b'::uuid,'180','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8cea41b-5658-4135-9543-0b7dfa849835'::uuid,'180','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('406eba66-066b-4ad6-9af4-5a2dbd9b662c'::uuid,'181','995',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99d77f71-c29a-4251-8a08-08ea8e932744'::uuid,'181','996',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c8256c7-b35c-46fc-8f83-c89a1befe68b'::uuid,'181','997',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b39f1d8-8e5f-403f-8639-69a2b87e8e2a'::uuid,'181','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93d77dab-9f7b-4b68-af7c-916b4e9f2426'::uuid,'181','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('26f2c49b-7b97-4d2e-a667-6211ee87eb29'::uuid,'182','995',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b90cb0f-4bd4-4d63-8488-69ff70f71736'::uuid,'182','996',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe7a7389-2033-4554-b53a-0f9997750c8e'::uuid,'182','997',4131,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d4479cc3-c422-4422-93b7-dedccb8230b7'::uuid,'182','998',3682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5cd16e0-815c-45fd-824f-3a2a640c0044'::uuid,'182','999',3460,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c0657c91-9e0b-4a33-b94e-dabad920c346'::uuid,'183','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f30c537-3ec2-4b4e-98e2-18c097651a10'::uuid,'183','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312bf713-b244-4f14-9a7a-8b85dd776617'::uuid,'183','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82fefd5b-cae0-40a1-993e-f8ed75469165'::uuid,'183','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e10687a9-c629-43ff-a678-4b4280003d1c'::uuid,'183','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d5ee2cb8-aaeb-4978-8441-641e54b7f2ef'::uuid,'184','995',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('870f5b8a-6099-4a56-9819-1b55bb535c6d'::uuid,'184','996',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dbaf1d7-046e-4aff-a2bc-cabcbbb07723'::uuid,'184','997',4182,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6cde9f7-5220-46f8-9f6f-a928d1c93ab6'::uuid,'184','998',3734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65b42231-1141-4025-b81f-85892aceb0ef'::uuid,'184','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('134d0edc-cb82-4852-a0c1-1ff9a59c3f90'::uuid,'185','995',4267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4004afec-0008-40f4-a0ba-bc6c33a9239c'::uuid,'185','996',4267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a42d045f-8d19-44d9-84b5-a58367d7a4ce'::uuid,'185','997',4153,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('108c9be2-ccf1-42de-afa9-54b7dcee3822'::uuid,'185','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc6796a6-373b-4d29-9dc6-e0e3755a5b91'::uuid,'185','999',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5524d749-2998-409c-854c-0108daf67891'::uuid,'186','995',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1b69361-77a8-4022-8986-d39ed878cb5d'::uuid,'186','996',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8339c8dd-a7da-43e9-9b65-57f3e3731d3e'::uuid,'186','997',4129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76535138-f67b-4107-8b6d-bb35ad43611c'::uuid,'186','998',3681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c12be40-ac34-4f73-bb4d-da805e0f31cd'::uuid,'186','999',3458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea150c77-5865-4d17-b934-cb8f117b2d7f'::uuid,'187','995',4252,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39e3d343-b05f-4fb0-b99d-43a16e7443b3'::uuid,'187','996',4252,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('561fd996-3b7e-40c0-a75e-79a3f4ffe4ef'::uuid,'187','997',4138,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a64b2a8-6239-4cc5-970c-6ee1cd95944b'::uuid,'187','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91004c6f-4214-4d9a-a178-e4336334df2e'::uuid,'187','999',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('07207abf-c0d2-4818-89e9-153e55f5d391'::uuid,'188','995',4255,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b29b6cad-38da-4c0e-bd5a-4971f2afe7f1'::uuid,'188','996',4255,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('809de613-2db6-4afe-81d1-fc05ee066c8d'::uuid,'188','997',4141,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('377c3eec-5f5e-4bef-a3e7-7f3794763e8f'::uuid,'188','998',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84053072-f259-4aef-a6c9-a1d6076a7e43'::uuid,'188','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4429064f-c683-4b28-986e-a449fc71819f'::uuid,'189','995',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a237892-91d6-4344-83a3-4ea0b72590e1'::uuid,'189','996',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3007af97-bb75-4b27-ba66-99d0fe478903'::uuid,'189','997',4199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3bfe79a8-9944-4ac4-8cec-aaf79c0955a5'::uuid,'189','998',3751,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7e7fb61-c72f-4f73-93e8-03d36b4aa25d'::uuid,'189','999',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ebf73fbf-9561-4ab4-814d-5437e5420db3'::uuid,'190','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2cab312-9f8c-41f2-8918-daebebec25e5'::uuid,'190','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('072efd0d-1d9a-437b-9a86-3c6bef46b4ce'::uuid,'190','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb191415-c30c-4c51-834e-36ad3117ae39'::uuid,'190','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1dbbb97d-ad5c-4e8a-8ecb-c9159ba98acf'::uuid,'190','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd76ae1d-c5cc-4308-95be-446dd489e3bb'::uuid,'191','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('92ae83a8-2e7a-46c4-994a-3415df584f4f'::uuid,'191','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2028951-6a0b-4b9a-b61f-5d834d6635f0'::uuid,'191','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f789303-4d51-4e66-8d27-8328e8b5a00b'::uuid,'191','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4efcaa9-012a-4fcd-8ef5-927311b76761'::uuid,'191','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('634d6ebd-52fa-4880-a8dc-5213a638a820'::uuid,'192','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('21266355-9a70-4493-8958-f13e1590e644'::uuid,'192','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d97bfa3-9d4b-456d-a03b-9fb41ecff4b5'::uuid,'192','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba3809ae-7509-48ea-aa4d-d6e471274e31'::uuid,'192','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e01fa26-eac8-4216-8105-1cb6b9ca7370'::uuid,'192','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92106873-acc9-46c7-b0eb-68fab6e36a47'::uuid,'193','995',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8d79db4-57e9-487f-ba9c-b305f7285f13'::uuid,'193','996',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5cd55de-fcd7-4d7b-a363-5ac2c4310ceb'::uuid,'193','997',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('340519aa-dbb9-4141-96eb-b2f2e3705b7d'::uuid,'193','998',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d42fd5e-de06-4c71-b01a-e46d4d94ea1f'::uuid,'193','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c860fff4-5f8c-4d87-8ec0-e7564e3d272e'::uuid,'194','995',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c79adad-473f-4a7b-954f-ef1408489cd2'::uuid,'194','996',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16c0c577-6e29-43f1-ad77-bc34b74e9b2b'::uuid,'194','997',4196,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce685ea3-7d6f-4540-9c04-9d7dc7ab88d8'::uuid,'194','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a934cff3-83f0-4a9a-b6a0-ad24658c0ae1'::uuid,'194','999',3525,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78028050-2132-4788-ba57-45d97fc8619c'::uuid,'195','995',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ef29e627-1456-418e-aee3-1d05a81ced13'::uuid,'195','996',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a696ec6-5dce-4873-84ac-ec8b576c70ba'::uuid,'195','997',4160,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30ac0e24-db73-49fe-a6d7-318c75cdd2c0'::uuid,'195','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff415e39-5610-4eb6-8543-a69a32a7e4ed'::uuid,'195','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('89fddf91-cbac-4460-aebd-7523fb7f58e7'::uuid,'196','995',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c934dab0-7689-4068-88fe-ba53028ad0f9'::uuid,'196','996',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6124eee8-8148-4889-869e-86959f2140b5'::uuid,'196','997',4160,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e415890-087f-4b47-ba07-819907ce7eef'::uuid,'196','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10121644-abb0-4ef2-b034-b29560e14c30'::uuid,'196','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('259eb1ce-0630-41f8-8ba2-2d2672b43bd6'::uuid,'197','995',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a29862fb-af75-4953-83e1-05d494880bf5'::uuid,'197','996',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfef327e-8a62-4e47-9421-281730cef84a'::uuid,'197','997',4216,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0e77050a-5e53-4387-98b5-0193a12ac167'::uuid,'197','998',3767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21d687a4-a183-498c-8845-669fb8100b1a'::uuid,'197','999',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb33adb9-53aa-406d-b4b7-212af343c71f'::uuid,'198','995',4309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0d2e04fd-e7d3-4625-b38c-ae38a0694a82'::uuid,'198','996',4309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c88fb3d4-cc5b-4f75-b160-29c02ef77b26'::uuid,'198','997',4195,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e0fb21f-f8ec-4703-bf57-e34bd5ad1819'::uuid,'198','998',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4176436-cc71-4e40-86ad-977cea2c6ed8'::uuid,'198','999',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33e20eba-9907-4d0b-9781-6b9733280ba3'::uuid,'199','995',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5eb2752-9784-4aec-8639-bd317372cdde'::uuid,'199','996',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cefe153c-39a6-404d-951a-4f79982bdf7a'::uuid,'199','997',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3addd556-22e4-47be-a55c-bb86991ee60a'::uuid,'199','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9069428-2fda-412c-b90c-528da9a31a1a'::uuid,'199','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('44310e9b-445b-4cf2-b32c-dba15e55cdfe'::uuid,'200','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1c011de-99b7-4839-b22a-62e817014d88'::uuid,'200','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9eb9929c-c70f-413f-899f-200ea67ab054'::uuid,'200','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4698b951-e74e-4c96-b726-7c78b1a62293'::uuid,'200','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95302999-7e1d-48af-a876-452a7684cb9c'::uuid,'200','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e775f55-4935-48f9-bbbd-e4ce110187fb'::uuid,'201','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ad6aba-1004-48df-8f41-46c0d059732a'::uuid,'201','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf35bf86-508f-41ff-b23f-2297090417be'::uuid,'201','997',4150,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2bf0614-893d-4332-8812-ca31404078f1'::uuid,'201','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7546deed-9313-4dac-80d1-ec8a554e7689'::uuid,'201','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d98a8839-0607-44fa-8ef5-4a1e999eaea5'::uuid,'202','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dac7ad9a-8af2-4b9e-acd0-29abdcd3a739'::uuid,'202','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aeeeef81-4608-4354-8cfe-17c77b4a367a'::uuid,'202','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8600ec1b-2eb5-4bb1-9f02-913abe2a52f6'::uuid,'202','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1194de8c-385a-4d28-9b09-dd03fed682f3'::uuid,'202','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560b645d-cf3f-4295-8f6c-258276175649'::uuid,'203','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e2e5614-03a1-4a23-98e3-c5049f5c0d29'::uuid,'203','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d9cac57-d666-47ae-b672-33d8558d9a01'::uuid,'203','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1bd5558a-b110-476a-b2ba-4c0f274db3d9'::uuid,'203','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b450b99b-38e2-4222-bf2f-7fa1a3083da8'::uuid,'203','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3d8b03f9-b278-4284-97d3-3be6c599bd0f'::uuid,'204','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e92938ce-db6e-426d-a5d6-636b211cd548'::uuid,'204','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3c18400-034f-47ef-86b3-e77f492321af'::uuid,'204','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12b3ec64-51ef-4c76-bb89-3ad327254315'::uuid,'204','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21d369f0-9aa4-455c-9e17-46350b9802a2'::uuid,'204','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12250952-bc38-4fcb-bcdf-8ce6b5ba8b4c'::uuid,'205','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8c9bd85d-ee7b-4a12-b51e-2a46a7e99a68'::uuid,'205','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6610fd62-c72d-49bc-ac7f-3d6095a18370'::uuid,'205','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dae1384e-634d-44a8-b19d-046187e69ecb'::uuid,'205','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6546e727-37da-47da-8444-95a62f8c1229'::uuid,'205','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('016259ab-d6d3-4454-9baa-216c6dcb0952'::uuid,'206','995',4315,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e699191-f877-4e12-8d82-c80651f59957'::uuid,'206','996',4315,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('533a2ec5-365c-4fac-9206-7805f238de47'::uuid,'206','997',4201,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a14986e-4330-4d71-85db-fd22dee6a253'::uuid,'206','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4d3045c-c38d-4828-9922-5b7778fcafa7'::uuid,'206','999',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a223a8f-a65f-40ac-b180-4e9531e473c7'::uuid,'207','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a91bad46-fbbe-43e8-9c91-115325380720'::uuid,'207','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43453987-7c2a-48d2-81d0-9b15f5d3047e'::uuid,'207','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7691ea7f-2854-485e-91c4-8620343c9e9e'::uuid,'207','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bd33fff-e13d-4a7e-8a8e-e38d3c8719e7'::uuid,'207','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f2d6fb53-f223-435f-9814-ca909f7e041e'::uuid,'208','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b82254da-1040-4a91-ad49-b542f23f0843'::uuid,'208','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c92cd844-2f29-49f3-ab6f-395dd57f9ae8'::uuid,'208','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('123f3ad4-c560-49e5-b197-c9ea00c522d8'::uuid,'208','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac140f39-6ac4-4d02-a246-fc4298b3ae1b'::uuid,'208','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc8aaa05-de91-4811-8b39-589bac0315f3'::uuid,'209','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('052bbf2e-09ec-4f77-bb0b-5bf51e44d1ab'::uuid,'209','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8970f040-b6c2-431c-a392-ff282b436f92'::uuid,'209','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae6132e3-c17d-46bc-a77e-0cfb0c820c10'::uuid,'209','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fc5f67a-8e29-4690-9fb9-b307e5ab7d92'::uuid,'209','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('62322f1b-19ce-4b29-862d-528c1156fa74'::uuid,'210','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86aaf8ee-227e-410a-a504-46286b72b376'::uuid,'210','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3083d1c0-8dae-4f1e-b845-fa39f0c42595'::uuid,'210','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cf94ba56-2d07-4522-b53d-afa141bcf0f1'::uuid,'210','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3e8940e-e54a-413d-809a-b567e3b13399'::uuid,'210','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2abe6e79-f02c-45a0-aae6-5e09a0dd4ad5'::uuid,'211','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58967ff0-84b7-40d4-88d6-d67f3545b718'::uuid,'211','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56193dd7-6cc3-4792-9d69-c1aa22a5f759'::uuid,'211','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b302217b-9966-4587-9903-3f7b09f4ca5e'::uuid,'211','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d42416fa-cb06-4f8d-9f10-725286d6b7b6'::uuid,'211','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aedbfe89-4dbb-495e-bf26-7cc1028fd698'::uuid,'212','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8349a6b2-e7ae-4658-9266-d2fafd55f8bf'::uuid,'212','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65cb4dfb-9b94-4501-88e2-1aefaa9f0306'::uuid,'212','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07571a9f-e604-49c3-b2cd-b4bf934c3174'::uuid,'212','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9468acdd-43e9-4e0e-a218-8bbabf8c1025'::uuid,'212','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ffaf6b4e-3f67-402d-ab94-f9c170d94cf4'::uuid,'213','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('907e8d42-2033-4c40-9bab-0d5a5d6e56e5'::uuid,'213','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b5f8adc-89a0-40cf-84b0-63047410b04e'::uuid,'213','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a48e361-9d1e-45d4-97c7-83249de94c7f'::uuid,'213','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ed8f019-43c1-4d0c-a7c8-8bc1b1b70f48'::uuid,'213','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4b9e4418-2500-4f5d-b34d-d07198f754cd'::uuid,'214','995',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43e128ae-2d13-4910-91c1-1d722ba113f3'::uuid,'214','996',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae75c908-7a96-4dcb-9a8b-fb2a426c862f'::uuid,'214','997',4310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cffc88a-9e01-42b1-996d-9c0fd5746980'::uuid,'214','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66c26f07-10a1-47cf-a5d1-e9b95f636829'::uuid,'214','999',3503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39187950-e2b7-4377-8fee-8114d63c5c0b'::uuid,'215','995',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfbc151e-3158-4e64-9bd5-1ba4cc9c4feb'::uuid,'215','996',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4df9394a-3a31-431d-9b92-4fd63ee709d3'::uuid,'215','997',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50a40214-8861-44ea-a1fc-7a815843b997'::uuid,'215','998',3568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1e01f9d-bcbc-4c6f-afef-3b7203291c06'::uuid,'215','999',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5385610c-3a1b-463d-9dea-3884d5b0da7a'::uuid,'216','995',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6900f6dd-1286-4895-b086-1aab49f50578'::uuid,'216','996',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e7d3d9f-3a07-48f2-b0e1-1deaa65b4a00'::uuid,'216','997',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc902afd-e87b-4a6b-9c67-fe5869dbe205'::uuid,'216','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9f7e136-6d30-4b65-9f0c-e9b705f6722f'::uuid,'216','999',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aadd64de-8b05-44bc-8b06-e26fd35c109c'::uuid,'217','995',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c56b3238-8e8a-4e73-ba04-036c0d722500'::uuid,'217','996',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('891139f5-f64a-47a9-a0e0-8fa5ba3f630d'::uuid,'217','997',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('038072cb-df9f-40a9-b9e8-e25eaa0b34e4'::uuid,'217','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41d00aa8-2142-4a15-9050-8582b44ecdec'::uuid,'217','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('203d59f1-0ab0-44b6-b9bf-2b2a0afdcdba'::uuid,'218','995',4375,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e81a1070-4d7f-4cd7-a4de-4fca2023fa96'::uuid,'218','996',4375,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8305494c-1908-4ff9-9548-b9b824565fa1'::uuid,'218','997',4261,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('192a5e13-dfa1-4af6-b066-ed709b54fff3'::uuid,'218','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e6ea1ca-83b4-426e-96e9-ad26b5e381ad'::uuid,'218','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('934015f0-0008-4cf3-b85a-310118cefca5'::uuid,'219','995',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2bc0890-6b42-4f07-8c0e-da42545e9abf'::uuid,'219','996',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('810867a6-fd99-4acf-be39-dbf2e6cfe90a'::uuid,'219','997',4322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd0fd2b6-a90d-499b-8cfa-4ef52ca5841c'::uuid,'219','998',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efea7887-04fe-4946-94de-6d607d68453a'::uuid,'219','999',3515,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1f7f9e87-0b89-4ab9-aec5-9413dce49fbe'::uuid,'220','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfc26e7e-e54a-4240-881b-3bbe43b74ab8'::uuid,'220','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92595f24-3b07-4cff-8ed5-c271c40418dd'::uuid,'220','997',4150,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('36e339fe-d197-4990-b533-bbe5a963d161'::uuid,'220','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8993be4-a9e5-4dd3-9dfc-9f78d722b0a2'::uuid,'220','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09c595af-f00f-4e5b-ad42-204dd59d4997'::uuid,'221','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63025b32-412f-4015-9d8a-1bc5628b7857'::uuid,'221','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4db2b2dc-88d8-49d4-abcd-be092d7ed46d'::uuid,'221','997',4150,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc605ce8-e1ec-47c9-aef2-3862809cb6de'::uuid,'221','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a223da78-ccc6-4918-966b-fd70c3a8c33c'::uuid,'221','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3f4cdd7c-087d-490a-b7e5-eaa0f9417f56'::uuid,'222','995',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4662b2bd-2a83-442d-b6bb-931192c058a2'::uuid,'222','996',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad4b9c88-4816-4485-a422-42acf6f50305'::uuid,'222','997',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec31e3e9-a42a-4c4e-816e-dc82818ae71e'::uuid,'222','998',3706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ffccd86-aa5e-42fc-95cc-bf6a3d81d30d'::uuid,'222','999',3483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe49c7d1-ac49-4fdc-96de-7067b77cd2b5'::uuid,'223','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfb669f5-d0fe-42b3-a1ee-4e11a7182a38'::uuid,'223','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f82520dd-ca68-4ecd-8126-978aa53251f8'::uuid,'223','997',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb53756d-b37e-4d21-9078-cb3eff0d2078'::uuid,'223','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ad09352-e4e5-45f7-9e6d-b28b1fd28891'::uuid,'223','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c5bb8b80-3646-42a3-a94a-56a4ea4f6b2f'::uuid,'224','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1194220-5dc4-4b22-ae2a-a74cbe243341'::uuid,'224','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fccb15bc-7952-4ad9-ac78-41a24f3bf3bd'::uuid,'224','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('254f517e-e678-4d77-b9f6-fa20832ad64b'::uuid,'224','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63777069-3851-47ff-88cf-b24e835f93bd'::uuid,'224','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d1d32d2-5e5d-40c7-96dc-b1aef2353486'::uuid,'225','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82b84a54-5262-482b-8f92-ec1684bdec38'::uuid,'225','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('967a3343-fa00-44e5-9347-d6372a7593de'::uuid,'225','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7df11bb8-7035-408e-afef-836a79089a53'::uuid,'225','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7645cef-7d75-43bf-b71f-85b49a8c6f45'::uuid,'225','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('303ab322-f7bf-45d4-906c-c290bb5f4113'::uuid,'226','995',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b9c726e6-115f-4d6f-bc1e-d204388f19d7'::uuid,'226','996',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4319f1f9-5706-4671-9f6d-04be908ac934'::uuid,'226','997',4120,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1cea46e8-1979-474e-a6ef-e539929bf50b'::uuid,'226','998',3672,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8bd777d-177f-45ae-9123-fe18e61f0ac7'::uuid,'226','999',3449,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebf234b9-9050-4d4e-8020-3eff7312c19b'::uuid,'227','995',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b910efc-43f8-454e-971d-be923f36714a'::uuid,'227','996',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f43c5771-567a-42ae-aa5a-5399172a7f0a'::uuid,'227','997',4161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a4a71ae-1325-4242-aaab-3e7b3e4d1cd0'::uuid,'227','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77f48d29-d203-44a4-8646-67a9c3f4ba4f'::uuid,'227','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fdbf9b92-5054-4cff-849c-65b758112138'::uuid,'228','995',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac76abec-9b11-4efc-a1e9-34dcc3c1a6a2'::uuid,'228','996',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e9b4b0-159d-46fc-81dc-d77a61aa84af'::uuid,'228','997',4098,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dec78870-5ba7-46a2-8ba5-8e8669e74eb5'::uuid,'228','998',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7b4092c-7c61-413d-be77-f5c518e11785'::uuid,'228','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc7f0055-747c-4c3f-88f1-8c15677d3591'::uuid,'229','995',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2140439-0c00-4069-930d-a105a15e207e'::uuid,'229','996',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81808db0-3bef-4391-82e3-478cc5b0d605'::uuid,'229','997',4278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41cf997b-55cf-4b56-9892-0c4f7660d611'::uuid,'229','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d1f7a1a-ee1e-4099-8d74-1327c874303f'::uuid,'229','999',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('41f401f1-d0c1-4306-a0cc-ea39cdc4de68'::uuid,'230','995',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30331936-f2b8-4f5c-8119-090b67ecc905'::uuid,'230','996',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1b5d632-7ccb-4044-9059-3edae2719959'::uuid,'230','997',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f5e0213-314f-4c6c-aae7-40b0849cdb93'::uuid,'230','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6df5accb-16eb-451c-90b9-05f045d76a92'::uuid,'230','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f15dbf52-ef48-4902-af50-14d73b1da6e5'::uuid,'231','995',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9ee584e5-4478-487a-887d-cc766cf20238'::uuid,'231','996',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7b34147-1fa8-45c3-b2d3-37e551886cae'::uuid,'231','997',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39b9f122-562c-4e78-a4cf-c923d463120f'::uuid,'231','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5acb201d-9fd8-4ce7-abc6-fe4e020b3fd0'::uuid,'231','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a5a3fbb8-a271-4ebb-ad42-860c4437c58b'::uuid,'232','995',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4279bd50-6dfc-45a5-8856-6a7aeff5f0ea'::uuid,'232','996',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fa5728d2-b2fb-479c-bd95-1d2c518f8d9c'::uuid,'232','997',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1d040592-011b-44dd-ba75-32b31446a6e8'::uuid,'232','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8214066-1af1-4cc9-aa90-fd5a9b867608'::uuid,'232','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb3ff900-97b5-42cf-821e-53e5920ba750'::uuid,'233','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3f271d2-7ef2-46ed-8efc-ab2d95471a30'::uuid,'233','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44d71e20-3501-49e6-b3ab-4beff6fcbc62'::uuid,'233','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c3e0cb9-1667-4319-ac18-d22f06972a63'::uuid,'233','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6f6f0e7-c4e3-4137-a207-b01f43353048'::uuid,'233','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e09ab15e-5de6-4e6e-ab8f-476d8b581417'::uuid,'234','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2215924-0ded-4fc5-ab74-e7016c0c91f8'::uuid,'234','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('38044a0a-c4c3-4e8b-af33-5cdf739b706d'::uuid,'234','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c50d64b7-ab47-4338-b33a-50e95d5ea033'::uuid,'234','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87219d1a-2890-4e83-bcd8-ed28fa5cd432'::uuid,'234','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5aa993d8-68f2-4fe9-9e77-54e85ab1c3cc'::uuid,'235','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45885be7-3369-47ab-aa61-38eedb0806eb'::uuid,'235','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('762105e7-a65f-4933-a341-4f7a49ae5f73'::uuid,'235','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('27ba4c6f-d69b-422d-bd40-8f7febe547e6'::uuid,'235','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4766a194-a112-4c62-a34b-29707a50cb4e'::uuid,'235','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a9270764-23c2-4e2e-a3a4-fbc13d39563a'::uuid,'236','995',4399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea4320fb-3702-4293-9f3a-8b7c8645bc0c'::uuid,'236','996',4399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0306a80-60d1-4ad9-96a8-1c3b7c79a90b'::uuid,'236','997',4285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('006b31f6-3f68-4aab-88e7-1dedd59c1357'::uuid,'236','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2f69943-9bca-4796-a93f-a9a03d30719c'::uuid,'236','999',3614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c04bfd65-7a09-4258-97e9-5ec3423d2995'::uuid,'237','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97a4cc45-1bf0-4f91-b0bc-066ece01f927'::uuid,'237','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e75e17c-8932-4daa-8811-c5065ff9b1e0'::uuid,'237','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c79787a-6443-4760-a820-88db8494972b'::uuid,'237','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca3a6e2f-55db-4318-8e9b-0254c6fbae7c'::uuid,'237','999',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dd670767-1148-4dca-a962-bd107faf5798'::uuid,'238','995',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b72cc58d-0d05-4471-ba9c-c1e97e53842f'::uuid,'238','996',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eff74f29-3ce6-44d8-9285-6ff95bf7730a'::uuid,'238','997',4258,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('79eb0082-7e9d-499d-98bd-63917fe61f1d'::uuid,'238','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15a5e748-1b8e-449c-a798-4750f4098853'::uuid,'238','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c2e7bfd-ad31-4895-b95e-2d642fa101ec'::uuid,'239','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('87e32289-ed6f-4478-b852-bfed5bbb0e74'::uuid,'239','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd2d59e4-79f5-4f6b-88e9-34ac81eed8a0'::uuid,'239','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('566bed6b-70e8-47bb-80f4-822d2c49c275'::uuid,'239','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cbe03e8-c07d-45bc-b8ab-c867d7f3624b'::uuid,'239','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('553415c7-006c-4a80-9b2d-ca330cc9d99f'::uuid,'240','995',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10adf753-d0cf-4cc9-92e0-fa7446a948bb'::uuid,'240','996',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a24b03c4-5503-4a0e-b018-daadbd188b8f'::uuid,'240','997',4093,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('905e12d2-7ae2-42c4-a55c-ab553ed32429'::uuid,'240','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7682c3e3-ac6d-4880-9d52-f4b61260e700'::uuid,'240','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b9f8dfe-63fe-4004-b2c7-49a74e2d39cb'::uuid,'241','995',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f04ccaa-803b-49e5-ba92-190809868009'::uuid,'241','996',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ab495a0-2af8-49ab-860e-1765bf0d19fa'::uuid,'241','997',4093,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb305beb-5fbe-4565-8956-c79c0c5ffbe7'::uuid,'241','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc87c8c5-e5de-4122-8420-5b48aaef0313'::uuid,'241','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('513f337a-b2ac-451c-a2dd-1355fe1dd0f5'::uuid,'242','995',4111,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c383c1f-f824-42b2-ab5a-6d786a134864'::uuid,'242','996',4111,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('724c09a4-4ce6-41bf-a9d8-34275b740ac6'::uuid,'242','997',3997,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b71a6885-1663-4641-8d45-9e75c9d7cf27'::uuid,'242','998',3549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4fd5189-1cda-42c8-9075-079bfdd6c79f'::uuid,'242','999',3326,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0993d62-9373-4d11-a1e0-2bab4d208457'::uuid,'243','995',4162,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d882225-20c4-4b82-a65d-5fe896d59dc5'::uuid,'243','996',4162,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b494e85d-8801-48de-855e-f0cf5cba8eb9'::uuid,'243','997',4048,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('346729cb-4a2e-4e8d-81c9-53be04ef16f7'::uuid,'243','998',3341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e40f65b5-04a1-4249-be5e-b134401e43d9'::uuid,'243','999',3214,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('00e4b44c-54dc-4eab-942b-b3b2dc0782ce'::uuid,'244','995',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b69629d6-aa1b-4f87-922e-8fbf96d89f4b'::uuid,'244','996',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('041b01df-2188-4ce6-be92-b9a9c3652739'::uuid,'244','997',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e5bdc299-0ca8-4ab1-9a89-a3f93aa318cc'::uuid,'244','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8dd4f7cc-7f8b-4a66-99c8-41f09c753a31'::uuid,'244','999',3418,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62dcf114-a574-4faf-8f4d-b393211f06b8'::uuid,'245','995',4266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10a31f9a-6ced-43e3-bbc8-ae9ccf4f5afa'::uuid,'245','996',4266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('568fc47e-a813-4a67-a5b3-d9617ceb9fa9'::uuid,'245','997',4152,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('acb9f728-1388-43fc-a1c7-8422a4ffb8da'::uuid,'245','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b41c7b9-dbf5-4281-86b6-9e466a20b2a2'::uuid,'245','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('581664d4-682b-46ac-9ed0-96864c3091ea'::uuid,'246','995',4158,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12408aa2-19ed-42c2-84f8-353bb9fac4aa'::uuid,'246','996',4158,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03bffdea-ff47-498f-901d-7c5e0b4664e6'::uuid,'246','997',4044,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1dc32c4c-903c-4982-b771-9d1daf70c564'::uuid,'246','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('429e53b3-bf6e-476b-8945-62f6f43cb82d'::uuid,'246','999',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f94f183c-1854-414a-a67e-b40abd5b4c7f'::uuid,'247','995',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d22d07cb-1fb7-4b90-ad54-c2045e477bcc'::uuid,'247','996',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('efa09d30-a0b3-4adb-a515-0ad784cfe1b5'::uuid,'247','997',4013,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74bedea3-4e05-4b15-936f-3e8a96653316'::uuid,'247','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0a14f5ad-f1e4-4e18-b5d2-c9fbbe1d4be8'::uuid,'247','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7d2d8429-d6bc-4086-9133-c972b33218df'::uuid,'248','995',4130,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('17e1e367-cde3-4c8a-9946-8c9eeb9138e4'::uuid,'248','996',4130,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4fa505d-7dc7-43a1-909d-f1ddd2c46a7a'::uuid,'248','997',4016,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3cf68888-4991-46a5-a013-2dce852e7e4f'::uuid,'248','998',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d6e035b-cb0b-4ee8-9397-fc6fb788e239'::uuid,'248','999',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2db694a6-44f6-400a-b637-ca50c8577b38'::uuid,'249','995',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d17e2300-5433-4c36-b94a-37aa0674060a'::uuid,'249','996',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f09ba524-f689-4d8c-ab69-4228d4b6646b'::uuid,'249','997',4052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('793e6a38-e689-4b00-98a6-b2e9e2abff33'::uuid,'249','998',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c74255b9-3224-4c31-974a-e277422888cd'::uuid,'249','999',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1c6de55a-9841-47b6-a8f7-3dfab21a376f'::uuid,'250','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1807dff4-f21b-4f1a-a9eb-cebf156ca355'::uuid,'250','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c1d3783-c538-4985-8975-00a0a90c4efe'::uuid,'250','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833ea784-2f03-4747-ac60-72d85dd8b1d8'::uuid,'250','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5739785a-3b7f-4a35-b641-b7b97ade5d14'::uuid,'250','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd3ca38a-a07c-4e3f-b601-c39af4223932'::uuid,'251','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19ead668-dc8a-460b-9124-a1232a46e006'::uuid,'251','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8a445bc-5153-4b4a-a80f-2a61cf23e2a7'::uuid,'251','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cf7e890-720a-4124-85c7-cc9dae6207d0'::uuid,'251','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7681190-a16c-45ed-8bf8-31b2efedb117'::uuid,'251','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1baf2d71-c352-4296-8900-ed8cc27b09aa'::uuid,'252','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00afbd0c-6189-4843-b9f8-fba03986ee9c'::uuid,'252','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36f01c9b-4ef6-4515-8660-3784a3654412'::uuid,'252','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4957ea54-2505-485a-bf73-db88ddb5f66e'::uuid,'252','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80538887-8ba8-43c8-bc40-f0482f35b4a9'::uuid,'252','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abe65c0f-8c25-4e29-8418-50bd8b472139'::uuid,'253','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf4ea2d5-5d83-46ab-bf53-08e509fcfb73'::uuid,'253','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f51f20f-0550-47e6-ac9b-382f54320c25'::uuid,'253','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e77f7ead-68d7-48bf-b3f7-2d6d73dc8c5b'::uuid,'253','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79464f4c-1c86-4387-a393-dbfa515a1d40'::uuid,'253','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('df53deb0-3c5e-41bc-bc65-043a7f646b5f'::uuid,'254','995',4203,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72d583bf-c6c6-4a83-aaef-ca8dab31aeb2'::uuid,'254','996',4203,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d1f40e2-7a3d-4350-8bce-5025eeede7b3'::uuid,'254','997',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e275fdf-1bae-436e-94aa-96e87d24debc'::uuid,'254','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d000ac4-294b-455a-9037-bf1275544b25'::uuid,'254','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5e4c4c3-cfaf-40aa-acf9-a072462ee186'::uuid,'255','995',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a7ceea91-4b39-4156-9a14-720bbf2be451'::uuid,'255','996',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('245295d7-2757-4315-8c40-16c053e3b117'::uuid,'255','997',3912,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6df715bd-2c76-4f7e-8d78-473457f5e10e'::uuid,'255','998',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff6a1611-4d78-42c4-a61b-f2369e58ad1c'::uuid,'255','999',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8e631987-5a55-417d-82db-86e1c1b38123'::uuid,'256','995',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8b837380-dcfd-480f-964a-73eaa4516a91'::uuid,'256','996',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('73bdf891-e5ba-4895-89c7-04381df1d78e'::uuid,'256','997',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37e33688-16de-4f7c-ad4b-5c2ffc5dd6b8'::uuid,'256','998',3508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('04e29a5b-8619-4414-a83b-e12ede1edb42'::uuid,'256','999',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c48476ee-5fd8-40b1-a19e-f7e2a92b5cdc'::uuid,'257','995',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('def6ff1c-3c0e-4dbd-9909-754c99bbbb89'::uuid,'257','996',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dab43266-ab9e-4dbe-b9fb-f7533b69bcea'::uuid,'257','997',3890,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5cb71164-2538-4e41-819f-be38e7edd23f'::uuid,'257','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d3d44df-dc03-46d4-82ce-04c111e688a2'::uuid,'257','999',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e25680cc-81dc-43ac-a45f-6e763a2f9adb'::uuid,'258','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e37be9e-19ec-4f9c-a995-38fa7445347d'::uuid,'258','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('824259a0-330e-45e7-b3fa-aab8b5f4e089'::uuid,'258','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee3a8794-5a9d-4cd2-ae04-e0f9cc1f3a2e'::uuid,'258','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('124ff310-6527-405d-ba20-f6f250aeec50'::uuid,'258','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdc9c8d0-50c7-4bf6-9e48-26efc432a760'::uuid,'259','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('57a716ff-627d-4ff3-9bfc-42ee761980bd'::uuid,'259','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00957477-c456-454e-800b-2c0024a7282f'::uuid,'259','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c365287-ca66-4463-a31f-0d6fb0d6a367'::uuid,'259','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12d40e39-49dd-4b05-b185-99f064240bf0'::uuid,'259','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7bf49f41-f655-457a-b74d-d31fd506e4a6'::uuid,'260','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('037c2797-be93-4c53-bd58-15bb4e64d0e9'::uuid,'260','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb240937-7a1c-40a0-b370-cdde1b1528cd'::uuid,'260','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c732eced-3e08-4ebd-9746-65d3d02b101d'::uuid,'260','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d055639-e9ac-475c-91b3-7f6dcdf38234'::uuid,'260','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1b3250f-52b7-4c3e-8d8d-f46b458ce551'::uuid,'261','995',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5efafb55-168a-406e-a841-d1ae9af5c2ed'::uuid,'261','996',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd03749e-5c59-451b-8bb0-c3014fa5cb3e'::uuid,'261','997',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('700e5017-2fd8-411b-8706-bf0e9c953ba5'::uuid,'261','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('163b4a2e-c841-4cb3-bf0b-a4c531e0dbfd'::uuid,'261','999',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ef5cc3e9-db6a-4291-bc74-879e0d72b90a'::uuid,'262','995',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e52c8dec-0f2e-4d08-83d7-eb22c7a63840'::uuid,'262','996',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aefddb7-0d4e-451c-8f79-b4065638086f'::uuid,'262','997',4017,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1ac65567-d072-42d7-8d98-01a90475c145'::uuid,'262','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bad9e1fe-9b73-4876-8f85-c2baeecf1e21'::uuid,'262','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ef3479f-6e1c-4bd9-8496-0841ba671b11'::uuid,'263','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f5a481d-8a57-4602-bb9e-28642ebbf561'::uuid,'263','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abf4add4-cc08-4df3-a654-05d2e43bf7ab'::uuid,'263','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091b1f21-9105-471a-a374-7f332ca4b6d9'::uuid,'263','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0180302a-f78b-4805-9c10-17adbaf32797'::uuid,'263','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5260a8ad-653e-421f-8c74-43be98fd1d37'::uuid,'264','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba09188d-1bae-4769-b821-0f195da24984'::uuid,'264','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1015dbd6-4109-4548-9de4-2894533e01ee'::uuid,'264','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c961fbb-8905-4959-a195-96ea3ad09d7f'::uuid,'264','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83155307-b12b-4b20-8f75-5df50b25505a'::uuid,'264','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9001d557-34e7-410e-a881-fca1903bf213'::uuid,'265','995',4075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('255ecf1a-552e-469e-93cf-761f4e933f13'::uuid,'265','996',4075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6e8eac9-2723-474e-96d7-a92c0b174f9e'::uuid,'265','997',3961,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('023ad1df-61cf-46b7-bd7b-242fe6242fbd'::uuid,'265','998',3512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f803616-2354-4e12-8793-747aad08f54e'::uuid,'265','999',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0b398133-4c41-4128-bd82-1d145731c7f9'::uuid,'266','995',4090,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('817eebc9-efc2-4972-9edf-7d49c8f6f59e'::uuid,'266','996',4090,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c4b7cac-25de-4dc5-88d4-9092c728a98d'::uuid,'266','997',3976,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('479ba7dd-7269-407c-9211-879cd4404f32'::uuid,'266','998',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6f72c1e-404c-4e35-bf36-5366884b476e'::uuid,'266','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e219ca-a1eb-425d-a0a1-c3335df158ea'::uuid,'267','995',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67c59219-c616-4149-bf88-c032893a2157'::uuid,'267','996',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec38d1ed-33b7-41a0-9f80-036e03472b41'::uuid,'267','997',4044,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('05c525b7-70ea-41d9-aae2-16cdf2283759'::uuid,'267','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c7fa33c-a547-4057-9785-525260c601ad'::uuid,'267','999',3373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('49358197-13b7-440b-a27a-b796455f73cb'::uuid,'268','995',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f12ef0e-32a6-4b80-b91d-f89dcdfeed46'::uuid,'268','996',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9b82f3c8-c927-4235-bc89-58c360d1d505'::uuid,'268','997',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3ab51bd1-5d8e-4a47-8442-05a2def8ffc8'::uuid,'268','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ab005f5-6e48-4e95-84d1-a4fdd5d6196f'::uuid,'268','999',3344,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f87a307b-9688-4e9e-a2bf-7731bb7f762d'::uuid,'270','995',4236,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('018f4645-5ba6-4f5e-977a-98b4a68f5fdf'::uuid,'270','996',4236,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8bcbbcc-8330-451f-939b-252ccc91c1de'::uuid,'270','997',4122,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12028503-34ca-44f5-bf94-2ead0e267857'::uuid,'270','998',3415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5b0c3bb-a936-4c27-b513-4aa63b7b3f06'::uuid,'270','999',3288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('867a13f1-2465-456f-8c8c-0b281408e974'::uuid,'271','995',4247,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5336c88c-226f-43c3-a489-9f535c25a137'::uuid,'271','996',4247,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9bf85add-f386-4178-a797-5f76e5d8991b'::uuid,'271','997',4133,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('17b10528-7e97-4b7a-8d9b-d8a237dd00d7'::uuid,'271','998',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61b3a6b6-87f1-4a0b-98e1-36eeb2e88f90'::uuid,'271','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09b99083-d6fc-41ca-ad44-57bc68aa7eba'::uuid,'272','995',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e695f381-3766-4ce1-b9f5-b9e672697432'::uuid,'272','996',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37ba3eea-e135-4e6a-bde1-add04f5a549b'::uuid,'272','997',4192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e505b3cc-bc2d-4b47-9893-5b9978937f1f'::uuid,'272','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d41213b0-aeb6-4d1b-90c8-e935d27d0fa9'::uuid,'272','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5f5cf8e3-bece-432a-8f21-6d6c05af6876'::uuid,'273','995',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9531addd-31e5-4fd7-bb59-91a259afc7a7'::uuid,'273','996',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c35a5231-dbda-4fbf-bca9-18a96f988965'::uuid,'273','997',4192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('238ccfa9-93d7-495e-8282-94458d0d3c96'::uuid,'273','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32bfea58-7382-4afa-9f6a-36f2142f7f40'::uuid,'273','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b30455b1-e181-42f0-9e31-320407f95981'::uuid,'274','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3eb27388-4c24-4bbd-bcfd-3f200dc5d164'::uuid,'274','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d5e6f5e-b668-486b-b975-87c47db52d9b'::uuid,'274','997',4160,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d43b22dd-e699-4d43-9a7e-b3332742e517'::uuid,'274','998',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfe2d6d9-3134-46e0-a86c-a3955282276c'::uuid,'274','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8d7c2a79-0a40-42db-90dd-180c3a1439af'::uuid,'275','995',4358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('24d05fee-1c4e-4c77-ab75-adbbdd871a59'::uuid,'275','996',4358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2c8c7e2a-0ed9-4983-ab32-31662855e373'::uuid,'275','997',4244,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8238dc0d-3ed3-4bdb-bea2-dcc6a7250c3e'::uuid,'275','998',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2186527e-21a8-42c1-a80a-a617b3204b75'::uuid,'275','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43cd628f-5caf-45e7-8266-e0b8cd206c8f'::uuid,'276','995',4349,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('626d1881-dfc8-417c-969c-8cb827ed0fd0'::uuid,'276','996',4349,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('312c9589-374d-4386-9814-5baa3a13becd'::uuid,'276','997',4235,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4502afc9-69e1-4610-93b6-190344703f1b'::uuid,'276','998',3786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b6e073-7c34-4058-8265-a496bb4690e4'::uuid,'276','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2be81df-500d-4f55-a1b3-74693c2e130b'::uuid,'277','995',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('466c81df-c22b-4d5b-b1db-8b0c27a128a9'::uuid,'277','996',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d82d67b-9390-47d1-9d9c-5780e38d8428'::uuid,'277','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14f858b0-e4dd-4489-8ac3-8a11b9b72e2d'::uuid,'277','998',3764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e4c413c-415e-4948-908d-d4885c2f1b45'::uuid,'277','999',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('556205fe-6e6c-4613-81a6-1c298c300c04'::uuid,'278','995',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54c05018-96a0-4ba0-88fe-707b6332f7e3'::uuid,'278','996',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c2e5190-5207-4984-b557-e70e0e913447'::uuid,'278','997',4451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b61c3482-4497-439b-babe-f14a172cac0c'::uuid,'278','998',3866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('384b0613-a4bd-4b75-8918-78df2e31db33'::uuid,'278','999',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0cac00ab-4a8f-40b6-8b54-0ff1d81ef1fe'::uuid,'279','995',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b21d827c-e80d-4a35-871a-a88bc35e6061'::uuid,'279','996',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78013f89-9441-4218-9c8a-70abd24a1485'::uuid,'279','997',4368,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b96c3ab6-25a0-43c7-ae57-e3c6f6683554'::uuid,'279','998',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53ddc287-805e-4f96-a287-0e2f133e2d1e'::uuid,'279','999',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('746d1d06-5485-42c3-af05-36fcb107f6fa'::uuid,'280','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b90b13a0-88cd-4760-abea-ec2e0cef5f7a'::uuid,'280','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99b1a005-e0a0-4b37-a492-f43ec93a8b13'::uuid,'280','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89e6fd2f-0688-424c-880b-c6ef59312c89'::uuid,'280','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27fd82dc-b996-4a18-ae3f-88bfa7ecbc29'::uuid,'280','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c75c2947-35d8-4ab6-9bbb-eb4fae5afec4'::uuid,'281','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d6bdd8e-5421-47aa-b0c7-84ea4db7ad86'::uuid,'281','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0aa49a9e-1751-4cfe-bff1-72eaf9166a32'::uuid,'281','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf20951b-83f5-4ef2-861d-a0aa2a92c7ee'::uuid,'281','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('448e151f-2801-432b-89f7-e1f305f6dd9b'::uuid,'281','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6eddb2fd-e815-4c9f-90c1-8f5b7d46658c'::uuid,'282','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7efb84f0-a666-489e-8916-23d8e6d451f5'::uuid,'282','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e96997e0-2ae8-489b-b588-044bd600fac3'::uuid,'282','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eaf87c9e-a98a-4e12-8ab9-5eb747723ef4'::uuid,'282','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c9865fd-5b32-48fa-b22c-4dbe8bf743ab'::uuid,'282','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f004d510-7224-43e1-91fe-191c832375a4'::uuid,'283','995',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01595b1d-5c45-4b8c-b1ff-7f0d57ec8e48'::uuid,'283','996',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f4aaf15-c5aa-4c3d-91d0-09ded28e8101'::uuid,'283','997',4268,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('381a8e54-4661-4f2d-b73d-a164564c004f'::uuid,'283','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f58a095d-a4f2-4802-ac3a-202e751eb5ce'::uuid,'283','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d992946-7857-436f-bb15-755ff38475cd'::uuid,'284','995',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a388580-b34f-4918-94ef-b1a55c1a1e05'::uuid,'284','996',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84053339-ff0f-4832-8327-0839e0ef07d2'::uuid,'284','997',4477,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1168f709-9dd9-4246-9f7e-db13e947e0dd'::uuid,'284','998',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc24d1c7-a33b-4168-af78-b15871b286a2'::uuid,'284','999',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f9920910-c355-4dd3-9218-931cbe46ff48'::uuid,'285','995',4462,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74eca53e-db79-43fe-b01e-18c33d0e97c8'::uuid,'285','996',4462,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('280d7f3a-a076-424f-8e50-39fa0a92811f'::uuid,'285','997',4348,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dac67a75-f058-4e9e-ad3e-5971453c8f63'::uuid,'285','998',3900,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df00f689-7d86-4db8-a1ab-95e8ea288b96'::uuid,'285','999',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d40d29-10a1-4f4d-bb11-3c1d1d58d5aa'::uuid,'286','995',4238,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2098fcb8-2d07-44e4-a401-8bacffb51175'::uuid,'286','996',4238,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c23462de-4fe0-4b9b-90b5-a16a66cdd7fb'::uuid,'286','997',4124,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3dea0ed9-8ac3-42f9-8ea2-d93ab3fc0cf0'::uuid,'286','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8745d9a-4151-44e3-9ff4-dbb3ecb270aa'::uuid,'286','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5f5c3c18-c56b-4577-8a58-bb6708e5aa93'::uuid,'287','995',4183,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e7fc6e5-7f4a-4c6d-8be9-c319cdb74a10'::uuid,'287','996',4183,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0466b3b5-428b-4672-8644-f84017a2c328'::uuid,'287','997',4069,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e358c08-45a4-4eb2-a5db-c66a66418028'::uuid,'287','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77cb2a97-1221-4ed6-8fb5-17825cf8e976'::uuid,'287','999',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b825841a-36d2-4649-b508-8f1137ebe072'::uuid,'288','995',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7504e3f9-6086-45b9-ac21-524269a87c0c'::uuid,'288','996',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ac238b9-b565-4cd6-8d0f-955b8653e727'::uuid,'288','997',4222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1aeb4f2f-ad5e-4fb1-ba8d-8d1799900ef4'::uuid,'288','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('543c38e3-068b-4e5e-89ca-bef3ff6eed6b'::uuid,'288','999',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('21c77ed5-2eda-4573-9149-a720e9e1031a'::uuid,'289','995',4215,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ff3faac-3e5f-4796-80c3-eb31b9603c50'::uuid,'289','996',4215,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39ab1561-9ef6-431f-9ca3-a51823204180'::uuid,'289','997',4101,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aad374c6-1197-4858-8918-c8fc4308853a'::uuid,'289','998',3653,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1efe0781-d02f-48ba-bdf5-10a0963d4e49'::uuid,'289','999',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('574eecee-a32b-4b34-981c-e2047cb33e95'::uuid,'290','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('264fff0d-6410-4918-b9c1-efb40dfa8435'::uuid,'290','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a097447f-4ecb-4850-a5f8-957471a627c4'::uuid,'290','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eaf36a2c-c561-4e19-8063-90615d771209'::uuid,'290','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b2eef92-147d-4a50-9006-b2ea2764944e'::uuid,'290','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('486f7153-e120-45be-a071-c87ae9723d92'::uuid,'291','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d526cab5-8f05-4e17-a347-246d61dd0489'::uuid,'291','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90a2c2d3-d5ab-4239-a9a9-45c996dd46c5'::uuid,'291','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f1712c2-2229-4438-b7cb-63bde9bc0559'::uuid,'291','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ae0ba2d-e01b-44a2-9b7b-0493143a3898'::uuid,'291','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fea5a98b-fe01-4294-b0b9-2fff6708b6ae'::uuid,'292','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51b7bc9-d4e3-4888-a44b-0757f241c96b'::uuid,'292','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c52c13c-8921-4601-8784-fe111d7b9009'::uuid,'292','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('24cbe12d-7ba1-4a4b-8fd9-7823f7f1e49c'::uuid,'292','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce9465f8-e3df-4bcf-9324-0ccbba0cb732'::uuid,'292','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dc99306e-a930-4730-8339-f0831bca3aa9'::uuid,'293','995',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a9a89e0-1afa-483e-8ee6-7adda41bf45e'::uuid,'293','996',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8be25640-2b92-4b46-ad66-d4150bdc8c1a'::uuid,'293','997',4164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a36be853-a8b0-49b5-b403-3e2b25ddfcfd'::uuid,'293','998',3715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcf527f9-a17e-49bd-a50a-6137db4a698c'::uuid,'293','999',3493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f835e726-5d98-49be-91bf-1f08ffabde6c'::uuid,'294','995',4438,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('254981b4-4825-4b26-8143-ef781c11599a'::uuid,'294','996',4438,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eae86b2d-b8d5-4dd3-a60a-e44f444d912b'::uuid,'294','997',4324,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('348c1614-df7b-49cf-8cdb-c2eb16322cfa'::uuid,'294','998',3875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e043f3f2-b2f6-4d48-849c-5f7688788e66'::uuid,'294','999',3652,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6d89afe7-69a9-4390-8f4d-fdfb441022d8'::uuid,'295','995',4419,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a568350-7bb1-46a7-97a8-bba0b044689d'::uuid,'295','996',4419,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a1605d77-b4ae-4821-9c24-3696dca4ac7b'::uuid,'295','997',4305,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c7a05be8-7d23-4c01-b23f-c5321830f66d'::uuid,'295','998',3857,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae17f170-64bd-4862-9fec-703ca5a94d54'::uuid,'295','999',3634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88bebd36-a305-407e-9608-d500b0625613'::uuid,'296','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('090a47d7-29af-4b15-aff7-3c65c03e48be'::uuid,'296','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9536a3dc-b1c8-4083-8c1c-97bc356cdf6e'::uuid,'296','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce12f03d-c312-4d97-8a8b-4fcc8a4e6f35'::uuid,'296','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51e2169e-82c5-4271-9468-d56d397c02df'::uuid,'296','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e475d483-98fc-47f7-9c23-51e42908f27c'::uuid,'297','995',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3bc524a1-3054-45a0-8930-be02b969cf4a'::uuid,'297','996',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fb65308-c895-4971-8513-27dd5342be52'::uuid,'297','997',4328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1f876e8-731e-4e09-8974-5ae8209fdc64'::uuid,'297','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('370c1d52-0097-43d3-b5a2-063e080babec'::uuid,'297','999',3521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d8cc489-17d6-460d-b9a0-f2a5a5cd7f4f'::uuid,'298','995',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('673275c2-974f-45f2-b9da-f1a19d58b1ad'::uuid,'298','996',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('937c90c9-c245-48b2-b98c-bf136b241a4c'::uuid,'298','997',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b3f964e5-d37c-4cd1-9cd3-3ae093cc542f'::uuid,'298','998',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cc44cdb-0b5a-42e9-a435-7699ee49db67'::uuid,'298','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('44951017-67ae-40ca-ad99-d3ff30bb70c8'::uuid,'299','995',4458,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdb0eaf7-9c96-4d9a-9388-5e5c77ee8a1d'::uuid,'299','996',4458,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fa0496f-bfbf-4583-8530-3ddb825281bc'::uuid,'299','997',4344,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d5ce60f9-1b51-45cc-9039-7dcc16a890bf'::uuid,'299','998',3896,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fbdae02-b99d-4bac-9c58-62cb40e70d54'::uuid,'299','999',3638,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a80c574a-3796-439d-b436-f77dce59847b'::uuid,'300','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8d6b9a5-58f5-493c-a50b-c1c54a22504d'::uuid,'300','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3508dd44-12bc-428c-b07d-ef809a960b79'::uuid,'300','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4841c6b1-9f5f-4c00-b9ba-13777718c37c'::uuid,'300','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a8854ac-eabe-4412-affe-ab112549512d'::uuid,'300','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0fd3154f-d7cf-4ac0-8fdd-ca54fc12edc9'::uuid,'301','995',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('806f6b1c-68eb-439d-a629-ffea8deeeee3'::uuid,'301','996',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0d247dd-71c3-441a-b7b6-fc6f5c97973e'::uuid,'301','997',4223,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec82172f-c73d-43bd-a55d-d0e11b5aba97'::uuid,'301','998',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81cf50e4-3e58-4915-8ce6-b41b0aa7f985'::uuid,'301','999',3416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ee09e57-b03f-4ef9-acf7-9afb9185494c'::uuid,'302','995',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2109642b-06c3-4a1f-b683-ca02e45c243d'::uuid,'302','996',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1311faaf-7566-40e7-87d0-3dbb05808d0f'::uuid,'302','997',4174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a67776e1-1ad5-48be-813a-8d83a27ea78a'::uuid,'302','998',3725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ffb77760-b836-45b5-b0de-4bed04921375'::uuid,'302','999',3467,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0491b332-8916-4f24-98a9-f26738eb7a2c'::uuid,'303','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e71605af-17e3-4a9a-a47d-4d4cb8be41a2'::uuid,'303','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5597075-133f-4d9f-8cda-59a33d4ac63b'::uuid,'303','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75fca57a-07c0-4419-9c03-c60d6b5b717e'::uuid,'303','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('158e7b87-b9b2-44cd-b877-c91bc890540c'::uuid,'303','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d1dfc901-10e2-457b-8b26-e0ef29eded7a'::uuid,'304','995',4439,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d4f67eb6-13b6-40ea-bd5b-8cdcef959f3f'::uuid,'304','996',4439,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32786e2a-65a6-45dc-8ddf-5707f8df0b5c'::uuid,'304','997',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('533efc44-27a8-4c7f-ae11-8a4b9cd41eee'::uuid,'304','998',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c32493a8-da50-45ad-91a5-a21f332e6507'::uuid,'304','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f377c71f-f771-460b-b8a1-2f1c4b601276'::uuid,'305','995',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c9f8200-203e-4648-8d32-3db256b5a2a4'::uuid,'305','996',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e06278-1a20-457b-abae-5619d7399f52'::uuid,'305','997',4277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c004971-3b81-4980-9856-4d7c22995d67'::uuid,'305','998',3693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95ac5e69-0d4c-4972-b746-cbf38546f181'::uuid,'305','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e36f4699-f8df-4e87-9391-b0793b61fefd'::uuid,'306','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab2cf5f3-0e8e-4921-a22d-7edea16aafba'::uuid,'306','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc6fa435-6e25-4662-b17c-6f0480bb06d1'::uuid,'306','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('999b9eaa-642f-48df-b5a1-275d9f7b5c13'::uuid,'306','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('526b086f-a98c-4269-8b42-a0e835505662'::uuid,'306','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b7b5fc09-7302-4331-8178-b5370b33212f'::uuid,'307','995',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99256076-a556-459a-9e7a-47f004765eaa'::uuid,'307','996',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8be92583-c884-40ac-b0f4-bb3002791e4c'::uuid,'307','997',4051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81b64d72-5c76-4294-b35b-3c2518929c17'::uuid,'307','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f8761c2-3682-412e-8dfb-3485f912228a'::uuid,'307','999',3379,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f5cbbc8-5f01-46df-b55d-15dd68f9c645'::uuid,'308','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('890cff7b-0c22-42d8-9f39-dd1a44e09b71'::uuid,'308','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb45fa89-4988-4db7-a5eb-f87ae79a928f'::uuid,'308','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('740c5d96-1269-40ca-8e64-bc3f07eb1089'::uuid,'308','998',3808,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2ec8366-a3df-4c63-8626-c651bb9b1f32'::uuid,'308','999',3585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cf75c82c-dada-456b-9a6f-3730aeb352e7'::uuid,'309','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c54c657-9bd7-443e-849b-f8f791b3533b'::uuid,'309','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3028237-34c2-4dbe-877d-5dfdb5800411'::uuid,'309','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1e9466c-327c-471f-8a52-8dd7b26ef93b'::uuid,'309','998',3803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3b53348-939f-43a3-88c0-62e15ba97390'::uuid,'309','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e045e367-0e2f-4ce3-a3cc-d02e6a95c733'::uuid,'310','995',4368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e932817e-1329-46b7-838c-2b04e52a0ca1'::uuid,'310','996',4368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1384a757-522f-4345-90ff-3a4eed01c440'::uuid,'310','997',4254,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74eacbaa-8809-40be-af05-e273c92ee5aa'::uuid,'310','998',3806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a64687bd-fb97-4d9a-b140-6b0786e88459'::uuid,'310','999',3583,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4b4271b2-594b-422b-b7b5-22fb71365391'::uuid,'311','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95704b9d-a8ad-4da7-835a-a62e59a11a6a'::uuid,'311','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('542d645d-dd45-4467-97a9-308b8bc9cf54'::uuid,'311','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eade56f4-0b47-454d-81b0-c2529e6e890e'::uuid,'311','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34845e0e-9baa-49ac-862f-0e70313c590e'::uuid,'311','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e7c4f58-b9ba-45a6-8ab1-2d92cf69b2b4'::uuid,'312','995',4336,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d817986a-7be6-4a7b-bab8-4b3c484eeb9a'::uuid,'312','996',4336,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fd70e60-4792-4e7c-a78a-d9a4ace55d84'::uuid,'312','997',4221,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7cabfb2e-8140-41c1-9ac8-4cc377434875'::uuid,'312','998',3773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f940bbf3-8019-4030-8306-694e3be22662'::uuid,'312','999',3550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a90f9de2-182f-4e00-b47c-a184cb74dabb'::uuid,'313','995',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bc196bf-8709-4fe0-8b2d-15d602bda174'::uuid,'313','996',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea3fb98b-fb8b-47e4-a309-6258b988c1bb'::uuid,'313','997',4383,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1cafc7ac-f216-43ec-82ce-2c5c34d0e6e5'::uuid,'313','998',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63208aac-72b4-4255-a631-5d35349bb2ad'::uuid,'313','999',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abb11104-850d-4b18-928b-4404a07f00a9'::uuid,'314','995',4489,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9031423-fa8b-456e-b26f-2321c305c7f0'::uuid,'314','996',4489,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9693eabc-a816-434d-80bd-c5fff2ae79dd'::uuid,'314','997',4375,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45f4f79b-df6a-4081-b230-f34a5d9d4158'::uuid,'314','998',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b867eca8-acc3-49de-a369-60bba434df15'::uuid,'314','999',3669,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e9836516-edb0-4130-895f-da9083ecb0d6'::uuid,'315','995',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c92dad1-b028-4d2f-9600-2f5f3f700850'::uuid,'315','996',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('397e60f3-6522-4667-bcc9-d54629db577a'::uuid,'315','997',4499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cb2b047-a2b0-425e-a3a3-1691969576fa'::uuid,'315','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c55464ae-03f5-4bab-9bf4-9f9caa7ac4c3'::uuid,'315','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70cc0162-e50d-4b9e-a5bd-cb7cc7dca422'::uuid,'316','995',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('024f7f11-8016-4f63-b556-2c87dc3ac606'::uuid,'316','996',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56b6d098-31ac-4c65-b4be-165ff5423484'::uuid,'316','997',4363,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6c96a11-bd96-4cd6-af13-af873ab2a12b'::uuid,'316','998',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b67dc948-63d8-4cb2-be38-6418b1bf9c6b'::uuid,'316','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('93d4b82b-b03e-4529-8542-0a3395287dae'::uuid,'317','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3122414f-34b8-4852-b9ec-5163ca3f58ea'::uuid,'317','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80f63a6b-4e56-429d-8b34-a322a9b04448'::uuid,'317','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67925a9b-1d9d-47b4-b2c6-1a9c0153012b'::uuid,'317','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82a72092-7dae-40a0-921c-18749a9654df'::uuid,'317','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39013f90-4367-449b-a0a8-c519b6fdc24a'::uuid,'318','995',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('336e8d72-2217-4d41-9e0a-f26fea792fba'::uuid,'318','996',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6448b3e0-898e-4047-91c3-3598784af444'::uuid,'318','997',4378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e185c6de-0b33-44e2-aa45-e25a6068c00d'::uuid,'318','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea49605c-96dc-469b-96f7-c930917fbb48'::uuid,'318','999',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7f5471e2-7cd9-4e8a-8d7b-66d187de75af'::uuid,'319','995',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59fb6a19-1816-4a6f-8ad1-4b854c205eb6'::uuid,'319','996',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('978e0997-3d0a-4bc4-bda6-a5022684fc9a'::uuid,'319','997',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ad02c38-7720-431b-b835-3c3744f155f2'::uuid,'319','998',3763,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1f7c8cb-cb83-453c-a65e-caf200956cba'::uuid,'319','999',3540,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba0f188f-d358-484a-a4d7-ed0fd740604b'::uuid,'320','995',4570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('abc5bfbf-46d0-44fe-96ac-4410dd6d279b'::uuid,'320','996',4570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45cfad31-0567-4f4e-ad3f-b622e675c7d1'::uuid,'320','997',4456,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('066f884b-5761-4636-824e-c8ef803d0d30'::uuid,'320','998',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('528f1fad-45f1-49a4-a936-3bee3775cd62'::uuid,'320','999',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5c4d4871-0e13-435c-9ca1-e5bd9c66cc75'::uuid,'321','995',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ec6054e-9533-4cb2-bfcc-dc42770ea9d8'::uuid,'321','996',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75038700-9e53-479a-85b4-defd6c1df4a9'::uuid,'321','997',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcbbcecd-07c3-4d86-a982-efb5d8048f9c'::uuid,'321','998',4078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86440a6b-109c-4004-81b4-4609fbd53f35'::uuid,'321','999',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5380887f-d54f-4df1-a611-975ecbdc70c0'::uuid,'322','995',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e652a25-762a-4a25-9541-1fee75cfcd1b'::uuid,'322','996',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c3a420c-3c07-450d-8a08-8ad1b48e88ab'::uuid,'322','997',4453,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a27ab44-65ee-462e-8c32-85da68d4aa0a'::uuid,'322','998',4004,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46252aa5-d052-4ed6-8093-817a23c6a571'::uuid,'322','999',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7d94f962-8c89-4175-a9f8-1479c30cd754'::uuid,'323','995',4474,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2326f2c9-7dfc-412e-94f5-f966e6a58d1e'::uuid,'323','996',4474,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d81a40f-a881-48a8-83f9-8d2d3b29cc75'::uuid,'323','997',4360,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('beec250a-1a23-4566-9490-6c0243360d57'::uuid,'323','998',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('514c6a04-e142-411d-8787-98f9c11d64f0'::uuid,'323','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fcde787-df73-46d6-84af-060a364d7a6c'::uuid,'324','995',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b016ffd8-7018-48d0-a0f9-74dd8f58f6f4'::uuid,'324','996',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69485c6b-6df8-42a5-9dca-3290f3cca3b2'::uuid,'324','997',4428,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62ec5f8a-a3f5-48bc-ada5-a12325c3caf6'::uuid,'324','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebc328f0-0b86-4d6e-89e8-d630bf0eef27'::uuid,'324','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aff2f194-4e3a-4eff-a01a-48f6d07d9cb6'::uuid,'325','995',4372,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('28641937-ddc5-4403-b4eb-bd262916a7eb'::uuid,'325','996',4372,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('88af4920-5df9-46de-ad14-60d06c18ec5b'::uuid,'325','997',4258,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('73aee377-09cf-4766-9577-6a7fe8a5377d'::uuid,'325','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7842f17-f356-459c-b91c-cba5f5ea9df1'::uuid,'325','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95e55c74-b911-4118-a14e-5a45da90ccec'::uuid,'326','995',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2af0eba-b4f9-424d-a8d8-db4a13d3c971'::uuid,'326','996',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b930a62-d29b-46b2-9b8b-5201129969f2'::uuid,'326','997',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47af5b35-d79e-4a94-b2b0-70f0f747f0e7'::uuid,'326','998',4024,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68f93cbf-adca-408b-91e6-ba113d404ab0'::uuid,'326','999',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('09deb6a8-1250-48fc-b546-504f6e8d25d4'::uuid,'327','995',4685,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03e8b9d3-0558-44f5-bae2-8b6029a5fdbf'::uuid,'327','996',4685,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a97a2797-8538-4f5b-874b-4e51ee9e01d3'::uuid,'327','997',4571,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ed768fe1-9ea4-4bc8-93c2-430f053ad88b'::uuid,'327','998',4122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79f02661-fa82-4084-ab1b-12e5667c9d18'::uuid,'327','999',3865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0cc7eed-312b-4ac7-8c46-81960887cf9a'::uuid,'328','995',4690,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46d6bc88-d5bd-41ec-bd9a-985f41708393'::uuid,'328','996',4690,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a60d4308-c0f8-49ed-9a71-a0af8ab2ab01'::uuid,'328','997',4576,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9d0f36f6-a889-4dd2-a5bd-a46115eb2e53'::uuid,'328','998',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdffa565-85da-456b-8596-f8b919ff87a5'::uuid,'328','999',3905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88edc673-b67e-41f3-a2da-8db6881034a6'::uuid,'329','995',4741,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('416870a3-d6b9-4892-9f75-44119ff10747'::uuid,'329','996',4741,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c9cdd7c-bcf4-4033-9af6-6a864f5aca16'::uuid,'329','997',4626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a48765cb-bb09-4100-a62e-0e122916e579'::uuid,'329','998',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('670ed815-4789-42df-9929-03228667e436'::uuid,'329','999',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f21ae0b-02b9-4f19-b018-a44e6190637f'::uuid,'330','995',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('337443ca-c00d-419f-80f3-0193a64185de'::uuid,'330','996',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c93b510-abbb-4ef0-ad45-ba244f2afb5e'::uuid,'330','997',4796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41f043b6-f420-40f0-a04a-1b9fe3e44e35'::uuid,'330','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb08b24a-153c-4933-9556-d21f6c98acfa'::uuid,'330','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6ebfe7c2-af36-441f-a69e-6669f3a9d0b0'::uuid,'331','995',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c95de71-c4c0-4625-b83b-8a900b509e49'::uuid,'331','996',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ca38bcdc-361c-4754-8813-912db6dded05'::uuid,'331','997',4796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('be39f0a1-de58-41cf-85d0-975e1400ed71'::uuid,'331','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a698c8d-38d4-41f8-a52a-8634179be3e6'::uuid,'331','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0463ef4-2218-443b-9e4a-c7653dffaf49'::uuid,'332','995',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('873982bb-2466-49ab-936a-9d4d52082d2e'::uuid,'332','996',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8df68e1d-69a0-4d86-93d1-6bf34cb54ea9'::uuid,'332','997',4796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5916400f-5057-448c-bb3d-00768c2f100b'::uuid,'332','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a801589e-8fd0-40ea-bfc9-0df7f9dbf95a'::uuid,'332','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a30ab952-e9d0-45ab-af32-d19cead1e44a'::uuid,'333','995',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09241860-f055-46bb-8e72-6690203f66c1'::uuid,'333','996',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44fb2c1b-3b69-4beb-8cea-00f286009531'::uuid,'333','997',4773,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b289fde-3b50-4f38-84de-0b6cd134bfcd'::uuid,'333','998',4324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('49e6accd-91b5-404f-83ee-7f7e0b821b54'::uuid,'333','999',4101,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4d22652-1060-410b-a2ba-30399b7900d3'::uuid,'334','995',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c44c37e4-fbd2-4922-8d70-6efe8eb2e2b5'::uuid,'334','996',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71bd107e-3831-4fa6-bad5-b0f7d4f39835'::uuid,'334','997',4715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a4305a28-5b90-4d15-b1dc-bfb963d5180e'::uuid,'334','998',4267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('782c4445-8795-4e5f-830d-d9944ad2a61b'::uuid,'334','999',4044,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('987989f4-cb29-4ff0-95cc-f56357c23d7b'::uuid,'335','995',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b990201-79a5-4dd0-87c4-10b91c490f23'::uuid,'335','996',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9042027f-1158-4a97-899e-a90713d79765'::uuid,'335','997',4593,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5cc6ccd-e8f2-4561-9773-14d70a993b75'::uuid,'335','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7701a75f-5b49-4404-82e3-8c57aaf94e41'::uuid,'335','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc7b5a58-8b67-4031-9865-fb251380e788'::uuid,'336','995',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('522cfb5c-1d66-4d97-a39b-67a87787a8d2'::uuid,'336','996',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e1efb2b-c89c-4d82-8d16-630143a274ec'::uuid,'336','997',4593,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('246c6b1f-16f0-4fcb-8a41-8f3b9a35123e'::uuid,'336','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acf1591f-270d-4a8c-a05a-1d409b1890e5'::uuid,'336','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2cda7123-260b-4431-83ca-dc826905be18'::uuid,'337','995',4721,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29a3cd36-7037-42de-a25f-1f9265588bfb'::uuid,'337','996',4721,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45a57259-4b02-4e98-a6a2-201e77418c14'::uuid,'337','997',4607,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f07ace9-bf7f-418a-9ca6-c2e2363f218b'::uuid,'337','998',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ed7f377-0d44-4b45-8b22-a09c5dd21c94'::uuid,'337','999',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2305e75a-f375-4df2-910b-87eeece111c5'::uuid,'338','995',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e66b04cc-8514-4ebc-aaa0-71beb3129634'::uuid,'338','996',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5772116-16a8-47c5-9b4b-b90e610115c8'::uuid,'338','997',4620,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('928fc86d-ab08-41bb-8f67-995c8a91ee9b'::uuid,'338','998',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833c0877-1020-46d3-b69c-91a022848742'::uuid,'338','999',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('74d71b33-0b94-4d01-900b-68c5fe229a83'::uuid,'339','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b42a80b0-a90d-4936-a822-245a29ba1da7'::uuid,'339','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d347ac6b-b011-4205-a470-e3779f402faf'::uuid,'339','997',4697,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9bf9908-88d4-4839-a579-bfe28afeb000'::uuid,'339','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7f6ffca-1cba-488c-b352-906a20c15ddb'::uuid,'339','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfab6d7d-249f-403f-b807-f77726670270'::uuid,'341','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f0f5d8c-cf21-4f9d-8571-902ac6ba28e5'::uuid,'341','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7b9a533-07bf-4047-b434-0003b86f9b49'::uuid,'341','997',4697,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6a4ba4f-d466-4636-b33f-5e6989d36fb3'::uuid,'341','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb9d5419-4f4b-496d-a20d-08109af78e22'::uuid,'341','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('928903b5-d371-4c38-8ddb-83b42a78095d'::uuid,'342','995',4755,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('16b60ed8-b418-4420-8d1b-1779a4fe5595'::uuid,'342','996',4755,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e373d877-43ff-4808-b683-8367bdb6d2e7'::uuid,'342','997',4641,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff7113e5-f3bf-4d65-83c3-ba75d52fe4dd'::uuid,'342','998',4192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2dcec900-17b3-4bad-b2c4-c012e61c9eca'::uuid,'342','999',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fabf2d6-01dc-47b1-a990-596cc4f5229f'::uuid,'344','995',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b214c4a2-23c9-402f-a44d-18fd40704b24'::uuid,'344','996',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01a7f7ae-3f8c-4400-862c-2e9915edfcdb'::uuid,'344','997',4509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29c4815b-ccdd-44db-971b-da5423f83389'::uuid,'344','998',4060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c1f7751-a4cf-4abc-a613-d35bfa491f4d'::uuid,'344','999',3837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1d10d6c2-c6b3-4eb9-ab31-337012cf828e'::uuid,'346','995',4683,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93ceaa53-634e-4409-b769-5415be0b75f7'::uuid,'346','996',4683,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31e66b1f-cdf0-45fb-adbd-d14d55204290'::uuid,'346','997',4569,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b379b3e6-60dd-4e84-83fe-73505337be04'::uuid,'346','998',4121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c994cdcc-3f95-473b-baec-abe56e083caa'::uuid,'346','999',3863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28dbb463-8a9e-46f5-b9bc-7fe0ceb1fb17'::uuid,'347','995',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cdd939a-fe2c-4939-a563-19d34e321a2a'::uuid,'347','996',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdadf950-6a17-484e-a581-8505fc0ba21d'::uuid,'347','997',4587,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('678598f4-e667-4e5d-a9eb-1e96b4ca8c97'::uuid,'347','998',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e71e65a-3a93-4880-a89f-27a4e7bbde51'::uuid,'347','999',3916,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f8b0cd73-8c11-42f4-b64f-3c1dccf24d60'::uuid,'349','995',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e939ad46-7fbf-4a79-bbcc-1fbaabab0204'::uuid,'349','996',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ab1bd6c-b17e-43de-af06-2c5b36b4c5d5'::uuid,'349','997',4674,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5086e351-d77e-421d-9934-e5a2044b9026'::uuid,'349','998',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acd28542-237a-455c-b6e2-b15f8f0c1435'::uuid,'349','999',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('42a7c330-5264-48cb-8013-55b89966fd5d'::uuid,'350','995',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('903daadb-c8c3-4c60-b5fb-72dce7d6bf64'::uuid,'350','996',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('573fc18f-e2dc-408b-a24f-14f410a5dccd'::uuid,'350','997',4084,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c35874f4-97c4-4c9b-a306-bc0a767c447d'::uuid,'350','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4addd5fc-968d-440e-b844-96fa725aee57'::uuid,'350','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6cfaf08f-5136-42af-8530-e09a5b4f1fa1'::uuid,'351','995',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72a5edf8-5cf7-4b50-98ef-a6f61ed86550'::uuid,'351','996',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df85f4ba-b57c-441d-9328-9cc78bb35ca4'::uuid,'351','997',4084,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('96bc8ad6-9e73-4b90-92b2-a7b5270bcafb'::uuid,'351','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39f0d7a3-b58b-475a-9a14-ed619e8b5b6a'::uuid,'351','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3419a3c-6976-4a2d-a2e2-392d5fb47bb5'::uuid,'352','995',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69938228-d68a-448d-9c0c-4519589106ad'::uuid,'352','996',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3ef1717-ac75-4305-90f4-8db08b5da020'::uuid,'352','997',4204,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9dcc22c7-7a3f-4d26-9b0e-84f5aa25cf4d'::uuid,'352','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6bb9a3b-2b7c-41de-a657-32f55d2e2f25'::uuid,'352','999',3397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a5caa996-63fd-4139-a003-de66001cb463'::uuid,'354','995',4184,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7b74ac53-4872-452c-a37d-efa74720d207'::uuid,'354','996',4184,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('94f45a7e-fc31-47e3-a374-14e2ac093b2e'::uuid,'354','997',4070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('317a6313-eb98-44e3-933d-4422709eba3a'::uuid,'354','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccd35856-949b-492e-8790-0940b2dc78cf'::uuid,'354','999',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b274b018-7bfc-4328-9e4f-1dda6f529db9'::uuid,'355','995',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a438cf92-c6aa-48f2-8f84-6ee7f62dc056'::uuid,'355','996',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55c91d67-cb77-4473-b930-29f164531d8e'::uuid,'355','997',4159,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29d6eb40-3e09-45d6-90bb-94b656de6a7b'::uuid,'355','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02761da5-ba9e-4ee0-94b4-1669ae6e3c94'::uuid,'355','999',3352,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('26c2b32a-7d75-4d11-bdf3-e0f3d810b4b8'::uuid,'356','995',4088,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54450ad0-ef7c-4ae8-81ba-440b2980b828'::uuid,'356','996',4088,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7240f9d8-acac-4993-89c1-083d89698e7f'::uuid,'356','997',3974,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f43c05a2-3430-4913-b310-ad7c463992ea'::uuid,'356','998',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56ebd485-75b3-49f8-9f3a-055db2ec358c'::uuid,'356','999',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d697caca-c148-49fe-9a61-e13a35d65ccb'::uuid,'357','995',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9aced432-493f-4b24-baed-3de4fceeb1e2'::uuid,'357','996',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('104fcc24-2b8f-4bab-b028-9318a4627342'::uuid,'357','997',4010,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f2e656c-475d-40a8-b366-1fa12a43044c'::uuid,'357','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8d894fd-1008-4b8b-975f-bf76c03d8b08'::uuid,'357','999',3339,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9795eef1-dfdf-4d76-9e12-c4acf179d961'::uuid,'358','995',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce0747e3-be2a-441e-87ac-a1365cd8b1ca'::uuid,'358','996',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0219c94c-afcd-4107-8295-891f954d3412'::uuid,'358','997',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0caef744-b63e-4c5e-98ca-8fd42953987e'::uuid,'358','998',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5765d1c5-62fc-4b24-b3f7-f743c97755ec'::uuid,'358','999',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c16fd64d-b4ec-4f52-9f3b-a52fdba1d1b7'::uuid,'359','995',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9250c82d-de32-4c72-952b-e08e14a698e4'::uuid,'359','996',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcb813f7-c44a-425a-8b52-2fbfc5aeef73'::uuid,'359','997',4195,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d072c8c1-16dd-496e-9495-d9cddfa4e4b2'::uuid,'359','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('343b248f-20eb-4d12-ab14-4704f453faa7'::uuid,'359','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('34e845d2-e8a2-4a0d-b135-f2ce98d2b52f'::uuid,'360','995',4302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dc0b253e-eb3d-48f9-be6c-0c36888deab1'::uuid,'360','996',4302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f187241e-d4a3-4f98-8736-b6f601695ff4'::uuid,'360','997',4188,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41da94f6-2da9-4ef4-90da-718a0becda9c'::uuid,'360','998',3739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6ecedac-48e1-472d-9abb-3bff7e0dab21'::uuid,'360','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce4c5332-9a59-499f-8052-1f0a69f7dfd3'::uuid,'361','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23fb83a0-7067-4cbb-9b24-868be4d3f58e'::uuid,'361','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a206ce84-25b1-4952-bdf5-d4942b71c1e5'::uuid,'361','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13ac893b-91ac-4c2d-bb41-f67a5d987a33'::uuid,'361','998',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ac1f204-f2d7-491f-83b9-c9064d035d9c'::uuid,'361','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2e1109ce-d682-4e0e-9f41-179016268026'::uuid,'362','995',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ec6e2f8-bb3f-4319-a00a-e64590e378f6'::uuid,'362','996',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5f3f80c-0103-4614-902e-627e47f87ebc'::uuid,'362','997',4251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1144d2f2-deed-4a18-9082-106794968114'::uuid,'362','998',3666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2870647-e388-4f51-9866-43dc876df708'::uuid,'362','999',3444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5b951a6-9e2e-425c-8325-4ebfd85a24b3'::uuid,'363','995',4355,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad5754f4-b3ea-4a76-a63a-004e939c3d24'::uuid,'363','996',4355,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f77e1b4-480d-4d9d-b28a-9c1ae465e6ca'::uuid,'363','997',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1af9346-b560-4e8e-8ad5-4ca4e1fe5b20'::uuid,'363','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e87e2f-1e7c-4944-860b-e263145856ed'::uuid,'363','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4faaba6b-fa03-4e40-97ce-6026ba13ba12'::uuid,'364','995',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1592fdc3-ed51-436a-8d12-2141da44601b'::uuid,'364','996',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d9f1a6b-07e1-4068-a21b-ab92cd284dd4'::uuid,'364','997',4207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68075639-8d3c-4e07-8913-29501ef1113c'::uuid,'364','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d88a333-9899-40f7-b333-1329c09c7016'::uuid,'364','999',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a384a3b2-3109-4ae7-822a-d2c96b6c8723'::uuid,'365','995',4312,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99429bd0-a28c-4025-8c88-62f2b4d2f7f9'::uuid,'365','996',4312,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77b6fa38-20e7-487a-86cb-cdaef2c16d80'::uuid,'365','997',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a53704ab-486a-4308-adf8-f3e2bb0db652'::uuid,'365','998',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2154de3e-b053-4e28-ba1b-7a02ba744316'::uuid,'365','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f6f5b71c-823a-408a-8933-c9a0245c064b'::uuid,'366','995',4324,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a29286b2-e254-49ac-a2ab-7aaf8d1de1b0'::uuid,'366','996',4324,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('384910b0-ce50-4a6e-b5c9-3e367dc017a8'::uuid,'366','997',4210,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3292afbb-29b2-442b-820d-a7e6836d9389'::uuid,'366','998',3761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('334dd1b7-1222-45fc-842a-fe4f20a9bbc7'::uuid,'366','999',3539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e12b8f30-921d-47bc-a11c-3d708f06322a'::uuid,'367','995',4224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fff96b3-bd7e-4dd0-b3e5-c7982211b2ec'::uuid,'367','996',4224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0efdfb74-f85d-4d94-a0bc-bacead5adb9d'::uuid,'367','997',4110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5499ac73-f031-4b79-bbc1-d611686de8b0'::uuid,'367','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5766c748-d158-48b8-a95c-9d3b7063b631'::uuid,'367','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ab81f6ed-49de-4a8f-8038-a70de6320e47'::uuid,'368','995',4294,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a846f54-afdc-4aca-93ae-de998b15f5b4'::uuid,'368','996',4294,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dfc773a9-a9f7-4749-8fc1-00924cca4f14'::uuid,'368','997',4180,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('343630de-2781-44b6-aba1-849eb6181a65'::uuid,'368','998',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4052d909-39c0-48f4-80ec-b0c0faca08a7'::uuid,'368','999',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d649ade-4a72-4749-8571-77771e6df737'::uuid,'369','995',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5babc1fb-b480-4605-8de4-3c6e8e0d1c4c'::uuid,'369','996',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10ae8be5-8496-43ce-8807-2e9a16fe61a2'::uuid,'369','997',4247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ab3a171-01db-468d-b4da-df3e07db5984'::uuid,'369','998',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ab44752-2958-4887-b854-82df8619cbfa'::uuid,'369','999',3440,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1595fc80-bf83-4b52-a0e3-7be78e24c295'::uuid,'370','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ac95e0c-5515-4a39-af0c-e056cc043291'::uuid,'370','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d6850d2a-7d1d-49e8-8bc2-b6cf81a94cd3'::uuid,'370','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2552eec-bb3a-43a7-9328-c86c74d7904e'::uuid,'370','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ce772a-a9ea-435f-9665-112a0fb77b28'::uuid,'370','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c99f82ea-2fa9-4dcd-b97a-623ee0170231'::uuid,'371','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('58d0c392-b338-4804-a281-8ed369f52f2f'::uuid,'371','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fe6cc244-6539-41ec-be5a-2db32d63ba69'::uuid,'371','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('17a791d5-ef5a-4be5-98eb-f6456cbdac4b'::uuid,'371','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('adfb832d-d82b-4966-b6f0-c7cd4eafdc46'::uuid,'371','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('acb18139-8aca-49a6-a9ef-de858069b877'::uuid,'372','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('42719632-a77b-46fc-a629-c337027045bb'::uuid,'372','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('62c07f24-9fcb-405f-9ef0-c904fe49a451'::uuid,'372','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3256aff4-755c-4292-aa18-0fadbdada500'::uuid,'372','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2be87918-686d-4dee-a938-2c58d0096de9'::uuid,'372','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('023bc02f-d736-4d84-bfe7-b38d58ac2548'::uuid,'373','995',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da67a3bd-9e10-4428-b2a7-a00b6ba07616'::uuid,'373','996',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fa5a2476-a67d-4da3-80d1-d73dc1990a36'::uuid,'373','997',3997,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1ed6b1b-370c-4461-9904-11a027539c3c'::uuid,'373','998',3548,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcce6f14-fad6-4e1e-bdad-1e82abef5975'::uuid,'373','999',3325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a25d8b28-bd21-461c-8f0d-7af77d5565b4'::uuid,'374','995',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce5637fe-fc28-4d8f-9c62-edc7358f0657'::uuid,'374','996',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac6c665b-404a-4579-b510-59ad783f97d4'::uuid,'374','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0f34b759-9d2a-45ce-8159-ad9183fdb3ca'::uuid,'374','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0930ea7c-b552-4658-bf38-d0e9241e2e92'::uuid,'374','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e201772-30c8-4471-99b9-356e6cac6a43'::uuid,'375','995',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3a6ef6a-c686-4827-a998-ef2d26f68efc'::uuid,'375','996',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b72df6f6-b29d-4b43-87fa-4880d525a586'::uuid,'375','997',3843,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31482a0c-0e45-4eb3-8807-f18d990fee7e'::uuid,'375','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14de41bf-9291-4678-b721-a85866be72aa'::uuid,'375','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bb00e4ef-d779-4cde-81e6-9eb7cdffbb17'::uuid,'376','995',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6784401-e195-4608-bcac-c53fb47288b4'::uuid,'376','996',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3108fb8f-5013-4bc5-a991-7417d3d9d4bd'::uuid,'376','997',4054,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6aace830-e50d-40ea-8291-78a4364afeb2'::uuid,'376','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01a02e3c-26a5-47be-990b-7c51942a4188'::uuid,'376','999',3383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33ed6a16-eff7-46e6-af12-9d82058741e7'::uuid,'377','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9faf62f8-abb4-4860-a84e-7ce3e0e2b518'::uuid,'377','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3283d2d5-5e28-4a93-a36b-b15d9dd43231'::uuid,'377','997',3990,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aa4f9273-e064-410f-8ebf-c82833268af7'::uuid,'377','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65b4f844-97db-49a5-9259-0cd132bee328'::uuid,'377','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4f458f05-b068-42e0-be07-03ba0021285d'::uuid,'378','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f56b8e5b-621c-470e-854e-cb83ab7d7cc5'::uuid,'378','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a73dbb29-b8ba-4b8f-bc75-7e36147d3732'::uuid,'378','997',3990,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14c0c3b4-a6ff-43a8-b659-dda768ca4f85'::uuid,'378','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8ff57a0-8752-4ffa-8124-a8a2d8f90667'::uuid,'378','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f699a21-f962-4ff7-a0fb-e22ed431764e'::uuid,'379','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa88c2ec-3e9d-4639-8145-93a98de29426'::uuid,'379','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb294330-bec9-4864-b54c-c9626d3c716c'::uuid,'379','997',3990,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('abc8b7ff-75c0-4e8d-bf8f-f7d4451666fe'::uuid,'379','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d157e47-58fe-45c4-bf6f-4142e05d5af9'::uuid,'379','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('69befc96-d1e4-44ff-82e3-f38deeeb639e'::uuid,'380','995',3939,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3124fdb-f2fb-4350-8773-50df151d9148'::uuid,'380','996',3939,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95fd1827-1044-4cd4-9b50-81bdd1a4d8cd'::uuid,'380','997',3825,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31d011af-9024-4b55-b7e2-49824b8ee034'::uuid,'380','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4937e54-ec9a-4774-b426-a32db6c1bb21'::uuid,'380','999',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('808a4ca5-5788-4dac-accd-c0eeb3c12ccd'::uuid,'381','995',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f703c37d-2e30-474a-bfce-a0db475d21ea'::uuid,'381','996',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('deeb8e86-954c-4242-af3b-3e1978cefec5'::uuid,'381','997',3843,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fc0a38b-50b3-402c-8480-9c609098ca93'::uuid,'381','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a75c026d-eff8-4210-be92-90331c0fda23'::uuid,'381','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fd6dca1b-636a-4fd6-bb26-db697e67f401'::uuid,'382','995',3929,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4752a2f5-a04c-4fe8-aef0-f87ae760fae8'::uuid,'382','996',3929,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3503f70e-1fde-4fe5-a807-c49925346e0f'::uuid,'382','997',3815,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('007db3cc-198f-44ca-a055-3401300a048d'::uuid,'382','998',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4381ab59-62d1-41ff-8bb5-677d1e153a3c'::uuid,'382','999',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('834f9cd9-c227-4efc-bafb-52594c33ce56'::uuid,'383','995',3986,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33cea76a-b269-4a53-91f1-8f77e826283e'::uuid,'383','996',3986,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('267eeec3-3e3b-4f59-9528-caf543a16780'::uuid,'383','997',3872,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2ca3f2e-5e19-4411-ba27-938538f3ce8f'::uuid,'383','998',3423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40372cad-872c-4e19-adf8-e63cabe7d1ed'::uuid,'383','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('73153580-2368-4fb0-a302-8a58b6e1aabe'::uuid,'384','995',4062,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6556d4dd-57b7-43a5-b152-80a10d79d5bd'::uuid,'384','996',4062,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('decc25dd-65cd-4fa8-baea-921965a41b74'::uuid,'384','997',3948,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('599660ec-5688-4b3a-a9ee-3c3a4dcb8e93'::uuid,'384','998',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('080ea6a1-777b-4266-b75e-8d989b7c055e'::uuid,'384','999',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64288b3c-adc2-4593-bd79-f11ab844acea'::uuid,'385','995',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('136654a8-df21-40a3-80a9-4ce1954569fd'::uuid,'385','996',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7452fa1f-7c09-4e21-89c3-5c2087e5aa1d'::uuid,'385','997',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a98ca9b8-63b9-4d00-8fa6-5213ee8ee9ab'::uuid,'385','998',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bf466a9-972a-44a4-9c18-2ffc77ebeb5e'::uuid,'385','999',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('32b3a9fa-b1e8-42eb-accc-06628795e5ff'::uuid,'386','995',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98469886-2ced-4cbc-abd3-0d4f0d030691'::uuid,'386','996',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4b8c074-9736-4fe3-8841-f2eba3ae681b'::uuid,'386','997',3879,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('823064fe-1028-4747-b7ae-960d143094ab'::uuid,'386','998',3431,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312f4cfb-aa8d-4f19-ad16-9b3033ea8620'::uuid,'386','999',3173,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('049ee39c-efae-4f97-a8c4-3ff03aa0c4de'::uuid,'387','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('620bb21f-b7b0-4f11-8353-404ec32c663e'::uuid,'387','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac9f460a-67c6-4355-949a-63b1e2176083'::uuid,'387','997',3944,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f41f4c97-da63-43a6-bdda-8f0f87e75387'::uuid,'387','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c779791-18b1-4842-bb13-4b0b1b40b27c'::uuid,'387','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5bc49c73-9b23-47a8-8dca-099a5075e7b1'::uuid,'388','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f1b55b5-1412-44a8-b951-da954ca7bd64'::uuid,'388','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35d60a10-7d77-4dfa-9bf9-7bb967365393'::uuid,'388','997',4070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fc2fe24-e4b7-4a43-8518-bd14f184973e'::uuid,'388','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f620df4-1e51-4928-a191-8c9005978860'::uuid,'388','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d3684c6-f739-4944-83b7-a4358096ad26'::uuid,'389','995',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a896216a-0e45-4130-ab3e-2bfef3793ac0'::uuid,'389','996',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e593792-0123-4bfc-bc41-7b2a6cd9c282'::uuid,'389','997',3941,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7721b39b-681f-4a21-a7f1-e0671bb12d6d'::uuid,'389','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51bdf420-e08b-4d94-a958-2e9928c711c6'::uuid,'389','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ee1eb773-f154-4c19-a037-ca59f45abe80'::uuid,'390','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91cdf814-8365-4313-8bc1-85a07619d3a8'::uuid,'390','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf68e613-128a-4fab-9908-d722b0cd7ff0'::uuid,'390','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f366d0f-7fc5-4d31-ac0b-f97729b1e82f'::uuid,'390','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60848180-a7f6-48b5-9b4b-50e0f57fcdc2'::uuid,'390','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9658a699-793a-4f29-a62e-24d7eaa0100e'::uuid,'391','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dea4d653-8988-477a-90b3-b1a2f4da4c98'::uuid,'391','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8e04dc4-ac04-4bd8-ae07-4b290ce7c952'::uuid,'391','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3501487a-bbfe-47bc-aa82-5e572e42c609'::uuid,'391','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65a3f68d-b3b8-444e-8265-435f6a8bced8'::uuid,'391','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4258b5eb-56a4-4344-91b2-37bd6ff5467a'::uuid,'392','995',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e98d080-f450-4043-b284-5222b6f3cbcc'::uuid,'392','996',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09139905-d2eb-483c-9193-411980d490d5'::uuid,'392','997',4030,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39bf0be1-8cfd-49d4-a992-e6897ae908af'::uuid,'392','998',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72b8ce71-f113-42ae-a053-619e64bc3918'::uuid,'392','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7aa2e8f0-f27f-4179-a1bd-804456c6dbd0'::uuid,'393','995',4189,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6082740c-31cb-49f6-b34b-3e564b83d1e2'::uuid,'393','996',4189,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1670ccf2-feac-498d-8f56-b5e00c0f5958'::uuid,'393','997',4075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6a9a117c-5da4-4733-a3da-20772fef3315'::uuid,'393','998',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8874af70-7870-4d3b-a6d3-e8f17cc27134'::uuid,'393','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4d504d60-3ae5-4c78-bd52-1b50dabd7f22'::uuid,'394','995',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a94105-811a-4913-9aac-845e8c701a03'::uuid,'394','996',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8621af14-147a-47d7-9ac2-00d8fc711060'::uuid,'394','997',4119,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1f3aaee-932c-4a52-9b05-db6f967bbd8b'::uuid,'394','998',3671,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f605d8c-066c-4a9c-8453-f3982ae3e0e0'::uuid,'394','999',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a52b8f8a-2909-4d69-bad6-685705acf282'::uuid,'395','995',4282,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33b6cd63-15c9-4347-abb9-af00ed8f637a'::uuid,'395','996',4282,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cab09945-a5fb-4efc-8e89-83e6e4720490'::uuid,'395','997',4168,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2e202c3-1415-4766-aa2b-2362b392ad1f'::uuid,'395','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c7dbfd-0248-4774-8089-6c1b51fa1b28'::uuid,'395','999',3462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('92d996cc-e46e-4be4-8d97-6a8eea14cb83'::uuid,'396','995',4204,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('255c3357-a0d2-4d99-add5-2a7ef3487b9d'::uuid,'396','996',4204,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9f8f46c-41ef-43bc-9025-644a2b73d3e8'::uuid,'396','997',4090,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbfad524-115e-4c8d-b70d-3cea9ccffe33'::uuid,'396','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35212846-1823-42a6-880e-2c7158a3b52b'::uuid,'396','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f6cbaca-3249-401a-884c-85f0526dd5ad'::uuid,'397','995',4122,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d224bf09-cb02-4e8c-9185-ff6a5bc662b9'::uuid,'397','996',4122,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44bbb44b-b1d2-4c14-a2cd-7d1650956e96'::uuid,'397','997',4008,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09f76f18-2dd0-4e43-b9cb-c92918cbced9'::uuid,'397','998',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c13766d7-234c-4343-8635-f605e29ee8d5'::uuid,'397','999',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0d63262f-6efe-480d-afe7-da538ba2f82e'::uuid,'398','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('739d7b3d-a973-4e3c-b7be-7eb8c847a1de'::uuid,'398','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a668630-ae00-4fb0-895c-0bfbdb51c567'::uuid,'398','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7a081e6-ee39-4ce5-affd-2acdc2d61100'::uuid,'398','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44ed0a3f-1486-4e5c-817d-d10564c154b7'::uuid,'398','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cf617c9-35d3-4a7b-bff2-d221de9148ce'::uuid,'399','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b875a1f-78c0-42cc-a9d0-3693ee609b52'::uuid,'399','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21c00a55-c156-4156-b557-86f2c2ea8286'::uuid,'399','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45714275-cd8a-48f3-b63e-8d329e2d1198'::uuid,'399','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65e3db99-e414-4dbb-9e45-2718d3d710d8'::uuid,'399','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88d21213-bdbd-4316-9347-a18d2daf95b7'::uuid,'400','995',3898,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fa09050-5ed1-4a44-a4d0-a3d41168eadf'::uuid,'400','996',3898,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db9cebe3-6e1e-4b9c-bb6a-34969b7341d6'::uuid,'400','997',3784,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b6b6b69-3e2e-4332-8bc2-ae4017589ea0'::uuid,'400','998',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e49c5ca-c4da-4b3a-923b-8d597cfbd38c'::uuid,'400','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('867ff36b-689f-4331-af4e-73e6a7b8cb15'::uuid,'401','995',3903,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdfff041-adbc-47ce-b2b2-15b72be1bc08'::uuid,'401','996',3903,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('062d2a52-81f6-4684-9c9a-cbf9bacd7432'::uuid,'401','997',3789,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0727a48a-be59-4754-994f-8fb95a16283f'::uuid,'401','998',3341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4718051b-39a9-449a-9c13-ced79f0776bc'::uuid,'401','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e631e1c5-dae4-4a2f-a4c7-1b09b04dfe27'::uuid,'402','995',3867,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3049979b-0bc8-469c-bf63-0d91ab27367b'::uuid,'402','996',3867,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df70ae7a-5522-4e86-936e-dcf4e431f445'::uuid,'402','997',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54d31015-f40e-4c88-b0e8-142339c6cc0f'::uuid,'402','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cb6d127-9fbe-47fa-bce6-aac3aa0965a0'::uuid,'402','999',3082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('829dbb84-244c-44e5-a215-dbc581dc3ebc'::uuid,'403','995',3967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34917f0b-a6a3-4f99-b112-15a6636162f9'::uuid,'403','996',3967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1adcc12-b84d-4db3-a733-93ac014c2232'::uuid,'403','997',3853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3b519a3-3f7d-43b4-9fa0-7e291d4492a9'::uuid,'403','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e4ccb8e-6d18-40c5-84df-348088136caf'::uuid,'403','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fd7ff97e-e63f-4a26-9e91-496e6e18b19f'::uuid,'404','995',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd135615-0167-4814-897d-52495f191e32'::uuid,'404','996',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75781174-dacd-497f-bd5d-9b78ce7d26d9'::uuid,'404','997',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9969580-e73a-4093-a2ad-46db983c04fc'::uuid,'404','998',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8564954b-bedf-4669-87e5-5f6ed41cfc37'::uuid,'404','999',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51adbab-f0eb-4fec-96f9-6afdd2852f23'::uuid,'405','995',3937,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c99dbd2-4cfc-4908-8385-507c0895d596'::uuid,'405','996',3937,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3853847-70cc-4134-a53f-9c45dcc076c7'::uuid,'405','997',3823,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cdb25c90-9781-430c-8e61-e0597a20dfa8'::uuid,'405','998',3374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72aaeb04-f851-4e03-bb3d-82ec2fcd22ce'::uuid,'405','999',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fb086be5-5ffd-4d7d-aa11-e64e48647517'::uuid,'406','995',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7da705f-13df-4256-b6b2-42d00fe1d242'::uuid,'406','996',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('576d4f60-ad26-488d-9197-ddd9071ea8a6'::uuid,'406','997',3803,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4722139-83e6-4cda-85fa-190680ccf092'::uuid,'406','998',3355,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f4debc6-cbc2-4091-9d77-62a4f1e94771'::uuid,'406','999',3132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71ba2829-f7ce-47f6-8227-525e9e9545d3'::uuid,'407','995',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb4eaeb5-08cd-45af-9e71-26e47f954692'::uuid,'407','996',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a2808d72-b1b5-459e-b294-3633374ad8b9'::uuid,'407','997',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b69ea3d-0f0b-4253-9d53-2dbb2b9712cc'::uuid,'407','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ba993b5-f407-40b3-be10-c55a322d3c5e'::uuid,'407','999',3242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2d5551d9-f603-4952-a44f-c5ca11387961'::uuid,'408','995',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e86d8a2-2018-47b9-ba64-cd02346ccd93'::uuid,'408','996',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98147445-71ef-41cd-be63-9a802e2cdb66'::uuid,'408','997',3971,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e35dacff-3abc-4c62-83fe-4514717f4d01'::uuid,'408','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae113128-7c7f-4921-ae37-40a633b0cfda'::uuid,'408','999',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d704b735-9153-43bc-b81f-6b7fcba4a724'::uuid,'409','995',4025,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('074a4549-d543-47ca-b463-4b8f8b4584e7'::uuid,'409','996',4025,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4e12ebc-8c5b-410a-9ec1-6bb877f00924'::uuid,'409','997',3911,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a924ec4-f174-45f9-92fc-108a524ac10f'::uuid,'409','998',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18ae6bfd-158d-45fd-876c-c6d6236cad66'::uuid,'409','999',3240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a64629e9-4113-4a8f-a45d-7d7fee5a98b1'::uuid,'410','995',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc40dc80-9788-4f3a-8315-3d43c2603468'::uuid,'410','996',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75c3cbe7-ddf2-45ff-b810-4f1c3c6cd04a'::uuid,'410','997',3787,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e7d0a31-0897-4dbd-9bfc-06d781d6e699'::uuid,'410','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a582b75-bd77-4b6d-9fcf-62daf1e80aea'::uuid,'410','999',3116,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c867619b-5827-4264-8479-e8754cdb79db'::uuid,'411','995',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edc9a6de-f032-44f8-b696-8a422b21c856'::uuid,'411','996',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a820960-4843-4f34-ae43-7f2a5d8b90c1'::uuid,'411','997',3869,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('596dab0c-8ed5-4b8d-b9f8-6c4c418e76ca'::uuid,'411','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdcee7f2-9255-415a-9bea-a42f63bd8f1f'::uuid,'411','999',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('edd96b78-183b-4f54-895d-63b55b657640'::uuid,'412','995',4047,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b2b88af-9104-4102-a559-8e84499c808c'::uuid,'412','996',4047,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('abd276c9-ac99-4de9-922d-fd9a7b73ea80'::uuid,'412','997',3933,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1dd5d9ca-dd5e-48b3-ad63-171c45ccecad'::uuid,'412','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5891ddaf-0ccf-4016-9942-8cc16f7a2ac7'::uuid,'412','999',3262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ab631f56-5615-4d99-866a-38ecf83e5e98'::uuid,'413','995',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('886f4b0b-04b6-4334-8987-0277bd530b2a'::uuid,'413','996',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('039cb738-018e-4d51-a331-496827aec269'::uuid,'413','997',3903,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1ed16d4-c684-4077-9085-d772898a6b6b'::uuid,'413','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e9a4d72-6ddb-4210-81c2-f0b659e27ce0'::uuid,'413','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c2c4f0b9-ffa0-4432-85fb-007d8424ab60'::uuid,'414','995',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9cbe709-41c7-4864-8ccb-59ba9aa4fcad'::uuid,'414','996',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5300681-91ac-4325-9dc4-12eff1a97359'::uuid,'414','997',3879,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78562018-9569-4ffc-8e69-157f5fd32e8f'::uuid,'414','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('499ba6ff-92f6-484f-8215-6ae68b0fd834'::uuid,'414','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a82c1ce5-6350-4773-8e17-93b80c665fed'::uuid,'415','995',4073,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2b8c6940-9bc0-4f30-99cc-b1075891878f'::uuid,'415','996',4073,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0ae854ac-2cd7-4706-b6b6-f23302ddaf04'::uuid,'415','997',3959,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6ade605-d894-4f30-8031-cea418adee41'::uuid,'415','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26f50081-565c-4404-93c1-13a84ce8e660'::uuid,'415','999',3253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a3e05965-22fb-48bd-9451-69db01fc9657'::uuid,'416','995',4049,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('94890399-60eb-44eb-99f6-531b5ec0f4a1'::uuid,'416','996',4049,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6c0260a3-abe8-4298-a116-5fdf1de1a190'::uuid,'416','997',3935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33c2bc23-4bea-4870-8553-628484094689'::uuid,'416','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28c0132a-c8e8-45e3-81ee-02209fe7465f'::uuid,'416','999',3228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560ea882-9d14-4cfa-a7fe-b4711943c036'::uuid,'417','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b77a31e8-3bad-46bc-b8a4-71b5b38eb700'::uuid,'417','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec1cab62-9941-4330-bae0-0c2565e90b4b'::uuid,'417','997',3934,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f0fac9af-312f-4344-927e-c0a1187182a0'::uuid,'417','998',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ef9ae51-152d-487a-a552-0479dd0b3aaf'::uuid,'417','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('68b52011-ea47-47f2-9960-2252971d5b2a'::uuid,'418','995',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bc38cb6-c3f6-4902-9c79-0a70c079ffb9'::uuid,'418','996',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('896d85dc-9a05-4c25-833d-0e8cf35f92ed'::uuid,'418','997',3958,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce5cef89-d83d-43f1-b37b-54e661f42ec4'::uuid,'418','998',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a9454e1-1459-49d0-8731-1ac610df71d7'::uuid,'418','999',3287,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acbd8889-41d3-49b1-8fbb-1843a1ff07a0'::uuid,'420','995',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b1a6954-6952-4af9-b9f4-b3a8dcf9094f'::uuid,'420','996',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb2291da-7df9-4d5f-90dc-ee4cf0c72f37'::uuid,'420','997',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31fac67c-cd18-4feb-8fd0-32a2ebdc6833'::uuid,'420','998',3336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cdfdf0d-c176-4bdf-ab36-ec254d4e7b14'::uuid,'420','999',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('76386ffd-6e65-456c-a315-ef8775eefa90'::uuid,'421','995',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('951ce0dd-43ca-4d44-a520-ba6e40ebb0ee'::uuid,'421','996',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c1b8f53-3560-4f7a-900d-1c245fe96ea2'::uuid,'421','997',3847,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f516a855-b106-4a54-8e01-e2f9a334ba25'::uuid,'421','998',3399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a39386ee-b511-4e83-b7ab-25354c8e5d79'::uuid,'421','999',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d26905ee-6a4b-47e8-99bd-737eec18aa87'::uuid,'422','995',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f86d01f-4707-45c3-ba11-d799bb3b8a57'::uuid,'422','996',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0085648d-e52d-4957-97a2-b9f5da9b29e7'::uuid,'422','997',3838,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3de5b71-c9fe-43c1-a9b5-9dfabd649743'::uuid,'422','998',3390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ea77a06-6f39-424d-b3b0-bccb53bc0b78'::uuid,'422','999',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('251821bd-4f50-4329-a56a-8a88fbf18a0a'::uuid,'423','995',3908,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f84a030b-de41-4fdf-90ab-1b49378a47af'::uuid,'423','996',3908,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('700cfd43-7f30-4052-8d42-c321950e7d7b'::uuid,'423','997',3794,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b661e76-131d-4b69-9e43-96f1390b9365'::uuid,'423','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d93e8454-4eee-4997-815d-22d4ba756602'::uuid,'423','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe50e3a1-8376-4bfe-8f5b-6da2cc2e727b'::uuid,'424','995',3880,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('013bddd6-a803-493c-9192-47a799bf1f63'::uuid,'424','996',3880,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('496981af-22e5-40a6-b776-7b1cee7f1ab5'::uuid,'424','997',3766,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ceff5bbf-e30f-47c9-8486-2ba9b18d6d1e'::uuid,'424','998',3317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df1a0250-070b-4f67-ab2a-18f22ea64aea'::uuid,'424','999',3060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c1cb5213-0ef9-4f1c-9dad-43eade1c2118'::uuid,'425','995',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6a3b8f7e-8cac-4587-9366-a078c344aedf'::uuid,'425','996',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('642d5f06-ad32-46f4-be48-e2845f804e06'::uuid,'425','997',3879,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13e9f2e8-9f1b-4b07-9b9d-a4af209f009d'::uuid,'425','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4dc8ceef-6116-4b60-a039-11a7999bbe99'::uuid,'425','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4147b88b-b6ad-434c-86e3-5d118d0c3de4'::uuid,'426','995',4018,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7260ffe9-74fc-4625-8ec7-2ccb839a8eba'::uuid,'426','996',4018,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45f25913-c8de-420b-b021-277a0b8e0079'::uuid,'426','997',3904,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9aacf3a1-6238-4d37-ae01-5617b632b1bf'::uuid,'426','998',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f8080e9-1e5b-4038-99b9-acf83fb8fc50'::uuid,'426','999',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a0f8bc56-9274-4458-bbde-50ebed50caff'::uuid,'427','995',3942,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ecbd1de7-6995-4a57-b7d8-d3a68c0766e2'::uuid,'427','996',3942,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2a22727e-dd7b-4c1f-b711-4ccbc6381122'::uuid,'427','997',3828,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6c7f58e0-bfe6-42b7-84a8-79e757d892c8'::uuid,'427','998',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b3089819-6515-4fd3-93b1-d0ecbc6077d3'::uuid,'427','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f520979-958d-4ac7-a8fe-1bb6f1355f71'::uuid,'430','995',3876,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43707a6e-94bf-4c3d-9640-be3165b889c6'::uuid,'430','996',3876,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4665afb3-7c12-46e0-aeeb-f2d3730a4874'::uuid,'430','997',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('841c81f2-524b-4c13-9db6-c65980e3335c'::uuid,'430','998',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fffc060c-fffb-4254-93d3-8c3e8c765ff8'::uuid,'430','999',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c60c1f58-f332-4f45-a8ca-123554051b6a'::uuid,'431','995',3899,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('244b50f1-7458-49a9-99d1-7d2b8c22e00a'::uuid,'431','996',3899,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2f5814e2-4d61-4f39-a2a8-b09732c16ce5'::uuid,'431','997',3785,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6d5874a5-517a-4712-90c4-9f46846c89d8'::uuid,'431','998',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a25e0f9-cdfa-4dc7-8824-ce56e704d535'::uuid,'431','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f049ed1-8e43-474a-b0a3-96b22e7a6305'::uuid,'432','995',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6774dd5d-9bc0-4ca6-8f01-d12847a412bc'::uuid,'432','996',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d28aab05-1372-4013-8035-535d7dba7adf'::uuid,'432','997',3906,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed3b8733-e2c3-48f0-b84b-c2dea94d5584'::uuid,'432','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9451d51b-a66e-4a1c-ab9f-a33d742aa0c3'::uuid,'432','999',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88de2cb2-d334-4e72-b8cf-7dd9d17661e0'::uuid,'433','995',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('153d8b8c-b9e9-4fab-bcdc-320f9581951b'::uuid,'433','996',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6e4942e5-b58f-40b0-8c92-dee15a41d760'::uuid,'433','997',3725,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('362a6b37-3b96-4b39-ba99-6be12e8c2c28'::uuid,'433','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3addeacd-7e3e-4dc1-98c3-d0195fdbf512'::uuid,'433','999',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a3775d5-a26c-44e1-baf1-f1f8da8e9a6b'::uuid,'434','995',3820,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eae332cd-a35c-4113-9b06-2ed8885af9d9'::uuid,'434','996',3820,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99d60a67-89fb-4b4c-8b04-bc7b32672352'::uuid,'434','997',3706,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b65a76b4-acd5-41d5-a32c-60424ef3cce4'::uuid,'434','998',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78bcd8d4-444e-4ad0-8ba8-0fd4d081dda2'::uuid,'434','999',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0733abf3-b074-420a-893a-92e67eb3ff4d'::uuid,'435','995',3781,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56cbd72d-3387-479f-9e68-d5e02afa35b3'::uuid,'435','996',3781,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6d19fa9-5198-45a3-ac76-fd4f9ca1fa16'::uuid,'435','997',3667,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6d31037f-6862-42de-a94e-8ed23ffda565'::uuid,'435','998',3218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73399d37-ff56-45b1-90ad-14232c839d71'::uuid,'435','999',2995,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94d5e713-05fc-449c-aced-b2656af91f0f'::uuid,'436','995',3808,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0ee70f5-e801-430c-85c4-9a8acbcae6e2'::uuid,'436','996',3808,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c35a5a43-aa99-47e8-8b7a-de6aff9ad4de'::uuid,'436','997',3694,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e812a4fd-bf37-4285-986c-ce1fda7fdd7d'::uuid,'436','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('907e8091-5cb1-439d-ab94-1cf86771e40a'::uuid,'436','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1e1dac34-bdf2-47ef-ac80-fbef30791239'::uuid,'437','995',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('497172f0-d467-423e-b976-d961e603060b'::uuid,'437','996',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77741c04-a634-4999-8b2e-2a0c2d2dabb3'::uuid,'437','997',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72235503-4007-49d3-875e-dc72093d4aab'::uuid,'437','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0e6b612-b56e-41e6-a1ed-39d2a5ee8a6a'::uuid,'437','999',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('263ee874-ae79-4ba9-9365-cce9366e0852'::uuid,'438','995',3934,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a422fbd-ecb0-4513-b1ce-950048ab4fe8'::uuid,'438','996',3934,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2b6a73da-a677-4e49-8127-b94ee23dd76c'::uuid,'438','997',3820,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fbe81dc6-a4ca-4438-98fc-35a892a6196a'::uuid,'438','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b4c6b5-cc48-4d3f-9d8e-f0dfa1f6295e'::uuid,'438','999',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fba0eb0c-690a-470d-8c89-3973a5472d17'::uuid,'439','995',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fe1240e-8ca4-414f-b55a-c9919451bb21'::uuid,'439','996',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c97c205-12a7-45b3-bdc7-c6ed5434919f'::uuid,'439','997',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fa0fa4e-20fb-4d0b-9fef-9d0472b46d8e'::uuid,'439','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac4bc474-6364-4b5a-82bf-36eb445428b3'::uuid,'439','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80192fa0-1c1d-4d29-8c04-34143554fbe2'::uuid,'440','995',3925,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99f6c5b1-95c2-41c2-9774-cfafea9a8acf'::uuid,'440','996',3925,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7f6c8a1-94e3-416a-bfaf-73a21cf6bc09'::uuid,'440','997',3811,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4ed3ddcb-4aba-41d8-9df1-e1f29de3fe25'::uuid,'440','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67afe44c-345b-4ba7-8d49-d9dd28d827e8'::uuid,'440','999',3140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('55ebba62-2563-4d93-bdb3-11ced1843a48'::uuid,'441','995',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcfcd15b-29df-4b67-8301-fd6458afb41b'::uuid,'441','996',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69e68fa0-0c37-469c-9291-bdf7bad09815'::uuid,'441','997',3933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03fe8047-d1b3-4099-8b91-97c9000ee553'::uuid,'441','998',3349,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3705e99c-64dd-46fb-9583-9a42261199f0'::uuid,'441','999',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97611df8-afa4-49c6-9b87-cea918a22e00'::uuid,'442','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cbe54f1-c190-46b5-b506-9643d086775c'::uuid,'442','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('390d67b9-3a08-468f-94ac-bf07ae1018b3'::uuid,'442','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0270ac8-875f-44dd-bcf2-b2b3e8cd8c03'::uuid,'442','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('757b84d1-0c54-4ad2-8048-730f21fedf82'::uuid,'442','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fd7e8067-fd20-4eb0-8f70-03bb52aa0ac7'::uuid,'443','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4970ddf2-62e9-4f38-b965-5165f1d66ca6'::uuid,'443','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5857226-60e8-4e7f-aa2f-7ee984595b07'::uuid,'443','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75a2a4f9-776d-4017-8bb8-a0c98bd9c415'::uuid,'443','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('daa44ed0-5959-430b-8138-e401a0b98e28'::uuid,'443','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abf32de7-9d0a-4270-bab9-76350bff4088'::uuid,'444','995',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e41c3e8e-b7b9-4c97-938d-e9dc8803e36c'::uuid,'444','996',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5de13bb3-fda4-43bc-8ec8-d318dcf7fdb2'::uuid,'444','997',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b9dfa71-66bb-47e3-a432-a7e1be28ab18'::uuid,'444','998',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e285b168-0232-45cd-9af0-9bb3626b5409'::uuid,'444','999',3024,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8169ce55-c34c-482a-93d0-d86cc3346882'::uuid,'445','995',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2075660-f933-439d-93d2-7afd9d063559'::uuid,'445','996',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9c017e5e-9fdc-4555-9af5-d4e87073c314'::uuid,'445','997',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fc16c0a-419c-46b7-af9d-163531eaa330'::uuid,'445','998',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d453c906-fc33-41b5-ae01-b34a8ce7d69f'::uuid,'445','999',3024,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f72b8319-3f1d-4810-920a-2e9428ef8f20'::uuid,'446','995',3938,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61d4f749-d575-40af-a0c2-2ace556b1a29'::uuid,'446','996',3938,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('01e74f2b-df3a-424b-ad6c-be5281e2b911'::uuid,'446','997',3824,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a9860f4-051c-4334-a3c1-6aa0b07c11f6'::uuid,'446','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a51f465-d53c-45e2-8840-4315227c0433'::uuid,'446','999',3153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8c27d610-e00d-4ba6-968e-cabf8ad37b0e'::uuid,'447','995',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c24ad802-7b25-4131-9d01-8563c8abba31'::uuid,'447','996',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f70a311-7092-40f3-8bc2-fd7d49c33b44'::uuid,'447','997',3963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3c33215-1504-48d0-aaaa-dd127b0c1593'::uuid,'447','998',3378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01f1981d-f656-499c-929d-2ecb987e8b19'::uuid,'447','999',3156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f37964a-a7b5-4ebb-bef3-c2d0e9b5180d'::uuid,'448','995',3868,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbadf3fb-d724-4e91-a04f-2f1d7c9b17f9'::uuid,'448','996',3868,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c8d157d-7c55-44f8-95b7-63ff108d8aca'::uuid,'448','997',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35d49a13-1d9a-4144-9eb4-e2c154a955a2'::uuid,'448','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2050e916-57ef-40f2-beb4-60840a21219e'::uuid,'448','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c7d2a2ec-2e1d-4c0b-90a1-1c3b223cdc2a'::uuid,'449','995',3882,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bb9f709-02e3-4982-8b93-58cc556f432d'::uuid,'449','996',3882,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d1752dfd-eada-4d76-bd1b-8dab49628526'::uuid,'449','997',3768,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dab946e1-0736-4258-ab9a-93015ed823cd'::uuid,'449','998',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7115450a-85c2-44d8-baa0-4754c1df2593'::uuid,'449','999',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88370dd9-4e5c-4b38-8ae8-a665f6d13c61'::uuid,'450','995',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfc84ff1-6eb8-4f21-b1f8-c3bd107bdd9e'::uuid,'450','996',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee9d19f4-f13c-43cc-9f44-6dfb7dc10728'::uuid,'450','997',3735,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('be7f1e79-55e4-4872-80ef-48ee275cc9f2'::uuid,'450','998',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81690508-4669-46d9-965c-e77cd05eac88'::uuid,'450','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4405fb5d-c1fa-4ac8-a4e3-89f51c598ad3'::uuid,'451','995',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc86636c-7715-4a56-9c81-bd83f0bf7bdc'::uuid,'451','996',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('941df88c-536a-45c7-bb7d-d3215a4148ba'::uuid,'451','997',3778,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fbeff0b-5ea7-4ae7-8cde-18165d3e31a0'::uuid,'451','998',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e57663-ed01-44a2-90d2-a5ca05d8e339'::uuid,'451','999',3106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9b58721-7d7f-4944-9649-5a178be09fde'::uuid,'452','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('523d05a3-158b-4410-a64b-a4d6ca988d60'::uuid,'452','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6addf6b-7a54-4a90-aacd-01c102ae0854'::uuid,'452','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f86a8977-2c6f-488f-a0b4-063dce981d0c'::uuid,'452','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1464e778-f959-44b4-b82c-d180b78bc499'::uuid,'452','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('588e88a9-f48f-4f00-b03f-49b8ad2b853d'::uuid,'453','995',3830,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('04960393-a80b-48da-b55b-442ce5ea9592'::uuid,'453','996',3830,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c59d48a-3358-423d-ae81-e70a822037fc'::uuid,'453','997',3716,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7d0bf931-e8e9-48de-bcb1-5d768e4f82df'::uuid,'453','998',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48787c92-a71a-40e6-8a5b-72eb5f69ce2c'::uuid,'453','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e759d8c-1249-4739-8e8b-c00c8c235db4'::uuid,'454','995',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4498c00f-39bf-4e84-b8cb-28dd82d3aebf'::uuid,'454','996',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38038b36-8838-4fce-ab6a-1759ead4e2fb'::uuid,'454','997',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31113846-b614-44d2-92b0-e2f4f5f18ed9'::uuid,'454','998',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a242fbe8-2630-45e4-aadb-bc29d1e1718e'::uuid,'454','999',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('355c658a-f671-42e7-ab79-0a023a4cc9bd'::uuid,'455','995',3855,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a9f38a4-fd42-44ae-9fa2-15865007ab51'::uuid,'455','996',3855,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a8c4253-1013-4b92-8d10-5539a6433d97'::uuid,'455','997',3741,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('69853267-b14e-4040-9b3e-d1ec559d1560'::uuid,'455','998',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd5e40c7-7232-4446-a3b5-d472927fc998'::uuid,'455','999',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d0c3b19-0f22-419a-bf32-bd5cf703bcc6'::uuid,'456','995',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0a692d6-e2cb-4f34-9376-4ae070a5a045'::uuid,'456','996',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc3b33e4-e0fc-4cd3-8889-1b39d9f1a74a'::uuid,'456','997',3833,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6069e77f-24d6-4335-bbab-083e5d9a6886'::uuid,'456','998',3384,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c96cff2-fd9f-4ed5-8c12-882de16ddb69'::uuid,'456','999',3162,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('158e10de-3954-40f7-ae7c-4b47cb96f382'::uuid,'457','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1e3520b-d80c-4c57-a25d-9620bffbd905'::uuid,'457','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a437b1e2-23a9-4500-bd7d-08639a453bdd'::uuid,'457','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99828035-60ff-4781-b577-3b32e9078bab'::uuid,'457','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e62c8a6-be42-44c1-93d1-36f367bad859'::uuid,'457','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('670d8551-6059-4ff3-807e-834aee3b8ab7'::uuid,'458','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1035551a-d7b8-4695-ba0d-ed6fae3615c6'::uuid,'458','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6c0e1c0-a369-4674-9a63-966c05c5e526'::uuid,'458','997',3818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a156a5c-1b53-4ff8-b0ae-57611b33ee89'::uuid,'458','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('104fc361-570e-4712-a993-2e22013fbbea'::uuid,'458','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d7c5d3c7-4caf-40e7-9205-21ccf1ef6a07'::uuid,'459','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9de9789-b22b-4191-a9e7-e701673c0b00'::uuid,'459','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('935df46a-3780-4670-a0ad-c90aaf5f1267'::uuid,'459','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db1309c6-5411-4023-bc03-b434ce64e5a5'::uuid,'459','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8f79bc2-4985-4191-9f83-4ed4e32065c9'::uuid,'459','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b236cbb-c54e-4dce-bc6e-b01d1de3d47e'::uuid,'460','995',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9296210b-17de-46f0-a14c-0dd9e0d080ca'::uuid,'460','996',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30ee9253-2cd1-4819-bc39-2815c4bde881'::uuid,'460','997',3633,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8d68bef-6b87-4661-b576-71972bdb35a2'::uuid,'460','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ea02bf1-ae6b-411f-8c24-233ef3f24c6d'::uuid,'460','999',2962,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e272f2c8-764f-4e13-91ed-e7e74be4ad55'::uuid,'461','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e187754-bff3-43db-ad3d-a7a0643f48f7'::uuid,'461','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26eedfaf-84af-48cb-b221-4dce5e47b5b3'::uuid,'461','997',3662,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3cf436f3-380e-4c82-8c3a-435d8b77244a'::uuid,'461','998',3213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b24e854-55ed-4884-8534-57f162b8167e'::uuid,'461','999',2991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03f4c248-0f3c-4614-be27-de0307d1667e'::uuid,'462','995',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5c226c5-0590-42fb-aa30-a90b7eb6db5a'::uuid,'462','996',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd98e07b-5c87-4edb-8750-0d1dc7a5c41d'::uuid,'462','997',3640,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f302f242-99f3-4eec-8121-6af20d8b3a5e'::uuid,'462','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6392d265-6444-45df-b6c6-a5f1a4f0be16'::uuid,'462','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('488a9acd-4f03-4ab9-91f8-83986a6202f6'::uuid,'463','995',3623,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2c55b854-7937-451c-b3a9-a2c1337b07b5'::uuid,'463','996',3623,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a93b746-3ee2-4c28-b90b-d5dbbee33058'::uuid,'463','997',3509,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c0532ae4-7cd0-4091-bc10-4b5a35d9fcd2'::uuid,'463','998',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36cffc74-5e99-44cc-8b2f-4707f1f22944'::uuid,'463','999',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee7599a1-3a87-42bb-ae38-24db1fa78c87'::uuid,'464','995',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f28a03f-6658-41c2-8407-d1d1f641767f'::uuid,'464','996',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cae7c22-d00b-4f57-b728-10fd0a1d9519'::uuid,'464','997',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6bc077f6-da5a-45a9-b75a-295082a62278'::uuid,'464','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81ea8513-e227-40a3-b3aa-8134d3226369'::uuid,'464','999',2818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('717e67db-ea41-4b18-9117-a6cf6886e124'::uuid,'465','995',3680,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b64576e9-678e-4ef7-9220-e8af4d7ec048'::uuid,'465','996',3680,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35032849-4aa4-4d65-b941-08d3ff813f6d'::uuid,'465','997',3566,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2aa13f13-f4c4-4bd5-9b70-1f1a50e8909b'::uuid,'465','998',3117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff9520a1-ac61-40f8-9c31-dd3ce0c2337d'::uuid,'465','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2230bf8-d331-4d6c-916c-54a0745a03c7'::uuid,'466','995',3664,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb24e22b-9a69-46ae-98ea-7258854d486d'::uuid,'466','996',3664,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6166a60d-f080-4543-97bf-c77f0c869941'::uuid,'466','997',3550,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ada7e311-befe-4ce6-80d7-e94ac2cad1dd'::uuid,'466','998',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef122620-668e-4a05-bc02-28b99e6f995e'::uuid,'466','999',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7a376f57-795e-4b69-9c1b-e97b989f775b'::uuid,'467','995',3738,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('096296f6-e57c-42f7-9995-b9a92bbd2cbd'::uuid,'467','996',3738,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f74597c0-a1c0-4a81-9896-b9d82f0c004c'::uuid,'467','997',3624,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da4261cd-c73b-4e3c-9b44-c4e402d454ab'::uuid,'467','998',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91e0ec97-321a-41f2-b6f0-e6e784eac949'::uuid,'467','999',2953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6232335c-3c53-454f-82b6-68b204ad2e4b'::uuid,'468','995',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5a7c93-e1bf-465a-9110-32b116cdf69a'::uuid,'468','996',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0637c66d-b248-447f-912c-35774a48cf3b'::uuid,'468','997',3618,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd9014f5-4ecd-477d-90f7-546f20db046a'::uuid,'468','998',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5aedf84-02cb-440f-a0f6-200f0e7ffdfd'::uuid,'468','999',2947,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fbecb12e-c80e-47c8-8d48-95b017c9abe0'::uuid,'469','995',3715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9180d1d6-c96f-49ec-9693-3cda71dca2d3'::uuid,'469','996',3715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2131b75e-bbaa-4008-8d56-3b1bb40a75c0'::uuid,'469','997',3600,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9ffc5db2-911c-4f44-b90d-5a64c6a7e828'::uuid,'469','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8149aa9-face-42be-b6b8-68d8de6ad635'::uuid,'469','999',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a26c4dc-a2ca-4823-b4a2-9a15556a6240'::uuid,'470','995',3828,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bcbbc296-6e31-4a84-99d7-efdb49015879'::uuid,'470','996',3828,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('219dea62-5c31-448a-970b-1411940507f2'::uuid,'470','997',3714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32723175-e1d7-46e6-8d70-f84509e0deb1'::uuid,'470','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d1ffc11-9255-4fd1-bcdf-dcb183635c7b'::uuid,'470','999',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6ca59880-bf85-4a8d-a627-cd13e08056ad'::uuid,'471','995',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('68160c34-2d43-4298-a233-92f9c03221d7'::uuid,'471','996',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7061c9d-5ee0-47ad-a4d1-92814f1501fe'::uuid,'471','997',3744,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f84580c2-8ee3-4171-9445-f7a1d7860535'::uuid,'471','998',3296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55a0a192-0669-4abc-b23e-cad10412b5c6'::uuid,'471','999',3073,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8addeef4-af9b-4b93-a12d-6068e3c7fafd'::uuid,'472','995',3818,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b35a9b4-03ec-4473-825c-2160657c1ea8'::uuid,'472','996',3818,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('49a035d5-a6fa-43a0-9023-92207defc3fe'::uuid,'472','997',3704,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c2374335-48f9-4b80-8578-720627a41f6c'::uuid,'472','998',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('559c811b-2819-4fef-afbe-efb5295fe888'::uuid,'472','999',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('69680c5a-93dd-4682-a117-30b55f9444cc'::uuid,'473','995',3796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5268a928-a5b4-4fef-a0da-d9ba76a6e0ec'::uuid,'473','996',3796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54e865a1-ef3d-42be-920e-e40fe1c315ea'::uuid,'473','997',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1f858580-b1bc-4703-897c-9947aee10580'::uuid,'473','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afcdef01-3f2b-4361-b740-50e94e87f185'::uuid,'473','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23d6b209-5f04-4cbb-8c9f-5e747d416345'::uuid,'474','995',3810,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('59b247cb-47fd-49b9-af3a-bd092a3e3574'::uuid,'474','996',3810,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b133afa5-2ff2-42b7-b8c9-35980b04d90a'::uuid,'474','997',3696,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7d606349-c417-47e7-b9ca-79280055398a'::uuid,'474','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e67e2593-d1aa-438c-86ab-ce756f0aff81'::uuid,'474','999',3025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('741cf3c1-8248-45db-a1fc-f0224ad125c8'::uuid,'475','995',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e85d554-8e86-4aa4-913d-fa2d4c57cd43'::uuid,'475','996',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27998ae6-4592-403c-938b-2cb37a1ddd6b'::uuid,'475','997',3730,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a350daba-291c-44be-be0a-47da9bcdbe21'::uuid,'475','998',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('263038f9-6480-4eff-a55b-b7d135992f15'::uuid,'475','999',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44f683b0-9005-44fc-bd24-97893a77ee4a'::uuid,'476','995',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7a1b344-0dc7-4f95-8138-5daada4d3bf4'::uuid,'476','996',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8994e86d-a997-4fde-9e6f-9ed0220fca0c'::uuid,'476','997',3885,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f34ea4a1-051d-4ba8-80a1-82b3264b525e'::uuid,'476','998',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ffbf2cb-d825-467c-950e-e0aaf0bd33fd'::uuid,'476','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e3267571-baf6-411e-b579-fc5232f5fc66'::uuid,'477','995',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68696564-8c0b-470c-ab8b-ac2060e6a268'::uuid,'477','996',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6672af8-fc94-4223-a827-d0f2b3faaf33'::uuid,'477','997',3738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('236a3d78-6ab0-400c-9856-e21e849d66b1'::uuid,'477','998',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fae4e74b-c563-4f1b-bf5f-9db58fec4261'::uuid,'477','999',3067,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d3c1175-149e-481e-988d-306854a29953'::uuid,'478','995',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56114714-932f-4355-9444-b363a5c71149'::uuid,'478','996',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d23788bd-be34-438a-b44a-057d1e375f77'::uuid,'478','997',3647,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('931aa427-a87e-4507-8957-177021bcdec0'::uuid,'478','998',3199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c51b9a3-912f-41e2-9a28-4f0dee5f10a8'::uuid,'478','999',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5d504910-d2df-4109-a499-ea2bf1846292'::uuid,'479','995',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8eeed57d-8758-4139-9294-5760e7b8fa13'::uuid,'479','996',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0c24e3ce-c262-4304-a757-79faa077e496'::uuid,'479','997',3568,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a8b2315-743c-4eb9-8f23-48fa12b8e493'::uuid,'479','998',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb71bd10-ad5d-4a36-91cf-e6100339f01d'::uuid,'479','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('479ef00d-1db7-46ab-a8cf-86258682c261'::uuid,'480','995',3834,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3fd93496-80b9-4ff1-89f3-31134b2c167d'::uuid,'480','996',3834,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('143e5129-242d-4cb4-8c98-d400347df98f'::uuid,'480','997',3720,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f025fdd-a879-4f60-8258-3d3bc38d6d33'::uuid,'480','998',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8332147-9e46-4537-b8c7-9aa4bb43e503'::uuid,'480','999',3049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('678e809d-1fbd-4829-b802-521710339d66'::uuid,'481','995',3813,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c2be95fa-61ce-4085-a779-2242048db553'::uuid,'481','996',3813,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fefd0e8-d55b-48e0-89f5-22bbf86f1910'::uuid,'481','997',3699,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab67540e-50e9-489f-a03c-7827d39816ed'::uuid,'481','998',2992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a93daedf-2cdb-407d-8de3-b02213484e07'::uuid,'481','999',2865,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84600821-6909-4628-88b0-bb359ffa6fb7'::uuid,'482','995',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea307d8e-f7e2-4553-9fb4-35a69d0c8d6e'::uuid,'482','996',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2b614e3-faaa-4517-ba84-d75d52e25006'::uuid,'482','997',3719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c55f93a-13b1-42e9-8358-4ad0f206646c'::uuid,'482','998',3270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90bc35d8-d08c-4b9a-ba88-5d11efa42e83'::uuid,'482','999',3048,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4914120d-88e9-4e73-83c0-6d8ac5d4a94a'::uuid,'483','995',3805,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('599fd986-0534-40c5-8c82-c01eac50bbce'::uuid,'483','996',3805,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6353b099-e4dd-4854-8ba5-e37940ba258d'::uuid,'483','997',3691,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('079c9d3b-76bc-41c6-bfb9-f7661ec86138'::uuid,'483','998',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c3ac99a-3d5d-47c7-b737-337161a3a129'::uuid,'483','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a79a551c-9c6c-4cd7-9112-d39aca738650'::uuid,'484','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aebda3cf-6ea2-4bf6-ad96-93da730e3546'::uuid,'484','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7de98410-49ac-495f-bf9c-d2dc375d7cae'::uuid,'484','997',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd653868-6cfd-44bb-9290-3c9a927c47b7'::uuid,'484','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e20f15ce-e68b-4750-98cd-f41a93bbf75b'::uuid,'484','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('67b9d13b-ebf5-42b1-b136-6f198ba071aa'::uuid,'485','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b358cf08-cbd1-40d1-b993-6be0269d024c'::uuid,'485','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0372d56-4849-48d1-9357-c1eae085b5c3'::uuid,'485','997',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5084f12-a1b6-4751-88af-c9379f11a4fb'::uuid,'485','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2a75629-66fc-4408-b370-b7747b3e908d'::uuid,'485','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a17825d3-e0c0-4520-aa5e-52e0982ad126'::uuid,'486','995',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5830d084-d686-485e-b365-f819ce719cdd'::uuid,'486','996',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c08a568d-5693-4a90-bf31-d0204baa9b5b'::uuid,'486','997',3584,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d114014-d769-44f4-bde6-062b197b4162'::uuid,'486','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6be3c1a-cedf-4326-bb58-203b84769614'::uuid,'486','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9ec5da65-b714-4cfb-a270-0f3c3f106def'::uuid,'487','995',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('91f5cf11-d708-4784-a3d8-e7b2026d7c6d'::uuid,'487','996',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5827113a-416a-404c-ab74-015497cbb77b'::uuid,'487','997',3584,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f861d0e0-d238-4bc6-a4a3-43f06b42b53e'::uuid,'487','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef2135d2-4d1d-4327-bf00-1422ac86b1fa'::uuid,'487','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13c0741a-a6b4-4afe-a646-d3f37bbbbc1d'::uuid,'488','995',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4951afdc-265e-40f1-a432-dcd070285819'::uuid,'488','996',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3bb8d463-71e1-44f1-ab6a-3d19522886e4'::uuid,'488','997',3639,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ebb4ec89-637a-439f-ba0f-4ecc0007f0f5'::uuid,'488','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d361b03-ffe7-4ad5-9be2-0b5ab306396d'::uuid,'488','999',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11d28902-628c-481f-ab50-f51d20eb4da3'::uuid,'489','995',3775,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c0d4471-4b07-4508-8471-f2dd726800bd'::uuid,'489','996',3775,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0afa4076-88db-4519-a5a0-a491904d16ad'::uuid,'489','997',3660,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0545c810-055c-4dae-a539-9ce918835424'::uuid,'489','998',3212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da2fa586-c5e7-4071-970c-2a78086a6e1a'::uuid,'489','999',2989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3654db8-d43e-4e4a-a99f-6ba36dd6b775'::uuid,'490','995',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f71dad92-a607-48f3-b318-b70e5684e18e'::uuid,'490','996',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ac6a515-0185-4d57-b5f4-175a1753ccc1'::uuid,'490','997',3602,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5823d39f-0fe7-407c-be58-f94fe8ff8ac6'::uuid,'490','998',3154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54a13975-0f79-4ea8-a704-665cfe64d575'::uuid,'490','999',2931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2a2eeea-2735-47df-9cbc-359ac49f1ecb'::uuid,'491','995',3665,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e719dea0-5ceb-4dd5-aad1-dda8ec9eafe5'::uuid,'491','996',3665,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2493a11e-2354-403a-aba3-820eb3e6ec16'::uuid,'491','997',3551,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f9a75e6-b150-41f6-b321-448b5d8ec223'::uuid,'491','998',3103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07130ca0-bb6e-4389-9ae8-649c9af0cbcb'::uuid,'491','999',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1998b7a5-8cee-45ef-a199-9267a95a115b'::uuid,'492','995',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1256f315-a443-4a44-83c4-f29bcbe47ffc'::uuid,'492','996',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91368955-435b-465b-9867-17341d9e1633'::uuid,'492','997',3659,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fce37ef-ad2d-4893-8573-9e3e034a7e4e'::uuid,'492','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad50629b-552b-4942-9e40-71558f9db0aa'::uuid,'492','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5901d033-b048-4955-96d8-c24ff5c9641e'::uuid,'493','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b248a7c2-5827-464b-8ce0-ffbb124f1da5'::uuid,'493','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d253bb53-2f46-47ae-8124-1bb27eb671a5'::uuid,'493','997',3632,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f85a7369-ef12-4286-beff-11a1c0216710'::uuid,'493','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c6185f4-f655-4180-8b5c-963ec15cb432'::uuid,'493','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88769a36-057f-4fcd-9645-eb217a78a74b'::uuid,'494','995',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbca66e2-473a-4079-a2a5-ee98598eea95'::uuid,'494','996',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c03879a-7aa4-47bb-a0b8-e73caa8218d2'::uuid,'494','997',3640,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f3e03e0b-1dd0-4a6e-9ecb-6c943fa6066d'::uuid,'494','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('282c91aa-8ad5-40f7-8406-97b39eb41716'::uuid,'494','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9f105d8c-edae-4e97-9555-f1fa54b8978f'::uuid,'495','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('465b025e-83f1-4f25-a6e6-52ba14c14271'::uuid,'495','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09c0ea7f-fdae-45c4-88d9-a1c861e635d8'::uuid,'495','997',3632,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7d49732-893b-4ca0-9bda-cfc27d3a6931'::uuid,'495','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcfb0e26-f0ea-4285-9c1c-352f4b09a805'::uuid,'495','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a727ea8-ca3c-446a-ab62-70544738d0cb'::uuid,'496','995',3660,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab4e8a62-ee6b-42d3-911a-31bffa603192'::uuid,'496','996',3660,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9151e380-f8a5-4a08-bc11-fd31f342a682'::uuid,'496','997',3546,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74c42e4a-d161-441f-8bf5-9d2b7278f584'::uuid,'496','998',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5de919a-35fb-4c38-8a5a-3a174b664c6b'::uuid,'496','999',2875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ce962fe7-54f0-4bc2-ae97-47188fb430f2'::uuid,'497','995',3547,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84ea165c-7d9e-4fdb-8ac8-b048d44a1af4'::uuid,'497','996',3547,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('776cac8c-848e-42be-863d-890f559b7f5f'::uuid,'497','997',3433,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc862f5d-c95f-4dea-bf52-ce194ea364a4'::uuid,'497','998',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5ace281-b626-4811-b049-f8d6b968c67e'::uuid,'497','999',2762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('288b4638-627b-4e93-afcc-923ba11dc7c7'::uuid,'498','995',3414,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db6a0cde-ac40-4221-b576-a85238a64641'::uuid,'498','996',3414,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78e95fc1-67e5-42c0-b5c6-abd9bd03e60f'::uuid,'498','997',3300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d9448715-cfc8-4f28-a07a-dde3d6f28ea0'::uuid,'498','998',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0853c83-5aff-498e-8916-8679fc8eb995'::uuid,'498','999',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a7eaca52-1f79-4d92-8e3b-074071657a2c'::uuid,'499','995',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('293db368-968a-44e0-838b-f54e7d572111'::uuid,'499','996',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0876cfcc-dd14-4488-972f-7486910993f9'::uuid,'499','997',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('308e4839-498b-4331-b80e-2f1c48d3ff42'::uuid,'499','998',2725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59017588-5a5e-41f0-85de-109db0c05688'::uuid,'499','999',2503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6d165b7-ca2b-4eb2-8cb8-1a0ab5b2d6a5'::uuid,'500','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc7bd7f9-097c-433c-a14b-8a28105c5998'::uuid,'500','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11c05742-0a71-4653-a7b0-414a3a31148f'::uuid,'500','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85040b1b-6033-4c0a-b475-76c20908d5cc'::uuid,'500','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebcdb609-7d9f-48df-ada7-70a1e50c232b'::uuid,'500','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('50f3bf41-59ca-4306-b69e-1b44dd930642'::uuid,'501','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53898e62-1c3e-47eb-81c9-87022698770c'::uuid,'501','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae6085e3-98be-416d-953d-9c0659c6c74c'::uuid,'501','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20d08c22-14cc-41fe-a198-29d41feda4fe'::uuid,'501','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7747373-d741-49d8-a7e4-00e7fb5bf204'::uuid,'501','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6aff899c-d16e-4250-92d6-273b8d31a522'::uuid,'502','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05b16f5e-4e39-4f4c-b36a-e6bcb01703a1'::uuid,'502','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8673ea86-f275-4f09-bba7-13cf1a3fcb82'::uuid,'502','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ce0348a-0c84-4cdd-b0b0-95b20d0139bc'::uuid,'502','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e3ea40d-cb60-4279-b6a4-65afef4b4495'::uuid,'502','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b592d2ff-7ca0-428b-941c-20a467f6e843'::uuid,'503','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e51abe4-6ad2-4d3d-8c23-0c1d29acdaec'::uuid,'503','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66e27e3e-0fb5-4852-8186-f037e341b353'::uuid,'503','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5d99678-9559-45db-9024-d8cc459f404d'::uuid,'503','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87e29bec-1b23-4a98-937f-457af738bb51'::uuid,'503','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('672a0156-9f4f-4da2-b17d-f95b13e6ad14'::uuid,'504','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08b903e4-fc9b-442e-8321-f880c9f4c2ca'::uuid,'504','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fcc89834-78ac-4096-8b6d-55b56e90151f'::uuid,'504','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('682736f7-72ec-497f-a190-5f68aaa9afb2'::uuid,'504','998',2739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b02a1030-44dd-4c03-b6a6-c7726b317e94'::uuid,'504','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cb55e5ad-ea58-46dc-ab50-a950b258a29b'::uuid,'505','995',3286,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f72d38a-15ae-4998-9829-f1df7b3b2bc8'::uuid,'505','996',3286,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad8d7db4-dba1-44a4-9faa-e6df153708f5'::uuid,'505','997',3172,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90e11ed7-df73-4c1d-ac3a-312fd16b14ec'::uuid,'505','998',2723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25d5b746-85b2-4aab-8780-b62800a14e6f'::uuid,'505','999',2465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('badce3d1-f4a0-41d7-958c-042c3931f0ff'::uuid,'506','995',3358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f50d8001-17b9-473b-bb6e-c7c23b429e31'::uuid,'506','996',3358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cd40c85c-4a47-4f46-8293-6868d8921ffd'::uuid,'506','997',3244,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ace4d766-5305-4925-a2ba-9d06ad8010af'::uuid,'506','998',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e49e17f-4c3d-412e-8455-d95331be33ae'::uuid,'506','999',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('66a6f294-7e3a-475a-9e5d-9ca8d59ccde8'::uuid,'507','995',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29eed9ef-1de1-49c8-b1fa-9b103551892f'::uuid,'507','996',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61caee36-e034-4855-923b-2116d501f1b5'::uuid,'507','997',3256,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9af983f0-01c2-4d0b-8828-4620bc70fd78'::uuid,'507','998',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5d8f994-194a-4a5c-91c9-449f1c988a6c'::uuid,'507','999',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db4540c1-8664-41ac-8d39-21dfc263d48d'::uuid,'508','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3d7539d-726e-4219-b3b2-c672111552e7'::uuid,'508','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('051a2ecb-0aa1-4a04-ade4-aedd93739dc5'::uuid,'508','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28fa3e2a-9a3a-4074-bb6b-e2caa662ee79'::uuid,'508','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560cac6f-d809-4954-b41b-b9caa64fbd5f'::uuid,'508','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7a05a2a7-0ae6-46bd-9c14-0d98c07f03bf'::uuid,'509','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ac2e33b-7160-4940-aaa2-f4465d2c16ac'::uuid,'509','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7658de4-dfb0-4a08-a0f4-b4c1df11f25d'::uuid,'509','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78037109-49b4-42a9-a4fd-4954f0175ace'::uuid,'509','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd35fc2c-321c-49b0-8dfc-073e2132da46'::uuid,'509','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88d5a085-a611-4a48-988f-5e405f9f2118'::uuid,'510','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('392735fb-85bd-4319-a893-4bc756bec532'::uuid,'510','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5e311d8-bf65-4337-a0bd-f915860a86b3'::uuid,'510','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ee5a825-794c-4cd4-8cc9-53de90cb6a0d'::uuid,'510','998',2699,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d83b8992-cd33-4574-9099-7beaea15c5eb'::uuid,'510','999',2476,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7cc09c71-a71f-4e22-bfe6-8096b6737194'::uuid,'511','995',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a1192a2-f481-4dd4-b20f-790cbf2dcaaf'::uuid,'511','996',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('490075ff-4e05-4ad0-ae27-de2f67e82089'::uuid,'511','997',3115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c7de705-37c2-4379-ba1c-189daf503304'::uuid,'511','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7de18435-a6b4-45ea-b6d2-8b65d92aa9d2'::uuid,'511','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb9bb9c7-92b4-47ed-ab6c-b5245e2ffb0a'::uuid,'512','995',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6ca08dd-95f1-4b32-9026-f1f7f570e021'::uuid,'512','996',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40315aa7-9e0c-490f-94f1-8af7f764e105'::uuid,'512','997',3080,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0ec1b5c-9442-49ab-8854-8ff675e1c649'::uuid,'512','998',2631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01e02d1c-794a-4a9d-98aa-4933fa2e3d5a'::uuid,'512','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('82f5ef1e-baf0-4a8a-9fef-7a616305454c'::uuid,'513','995',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('150d55ab-7a8a-437f-a9d0-7410cce0d267'::uuid,'513','996',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f5d77e8-67e3-4995-9a82-f5ceaab676a1'::uuid,'513','997',3115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2c3ab5c-0f7f-4645-9bfc-3c4c36a84074'::uuid,'513','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d37ca22-75b3-4dbe-952c-754d86ed0d57'::uuid,'513','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29404e16-639c-4378-9b6a-f91ca372c158'::uuid,'514','995',3321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6bea77d6-0c65-4cc5-9a4c-1bafe8bb2d86'::uuid,'514','996',3321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7707d664-4819-4e46-b571-b11c47f06109'::uuid,'514','997',3207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cc8ed47e-fde9-456b-8378-3607ed0ca476'::uuid,'514','998',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bd277fd-ae1e-4496-b195-900f8269512f'::uuid,'514','999',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('37d5fca0-45af-4333-8d4a-2cac80a71bfe'::uuid,'515','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9c6b6a6-e8b5-4a49-a087-996ffe3a6744'::uuid,'515','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4797eb1d-4085-40bc-8131-e2489f2f12f2'::uuid,'515','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('deed655b-6136-4828-a0af-c18a111fa6ae'::uuid,'515','998',2773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33e55130-8fa1-4cb1-92ea-c813dd96fae5'::uuid,'515','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd80efa8-eaf7-437d-b520-2092973a5a79'::uuid,'516','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('27b1fffe-b8e7-4f44-9f75-f6e2b67b2ecc'::uuid,'516','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5ccab14a-a979-4a61-b9f8-4077df4434d4'::uuid,'516','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f854cc80-23fe-4f07-88d6-d8ecad4e0b6a'::uuid,'516','998',2817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('624dd381-7631-4b18-a112-f44a11057a13'::uuid,'516','999',2559,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('80e9861a-f128-48ca-aaa1-55f17dd55d7c'::uuid,'520','995',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97163bf2-7471-41ad-907b-f71cf540fc85'::uuid,'520','996',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f034f1b1-7c36-46fa-8ec4-7e03ffa89b71'::uuid,'520','997',3303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72edd028-6546-46e0-b695-08b1537a7091'::uuid,'520','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5bcec1-936a-4418-aa6e-8288d5d1bc44'::uuid,'520','999',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da44bc22-9bff-4b7d-9bf7-a1447aeb9356'::uuid,'521','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b11f426-4d48-4dbb-aaa1-de753947af50'::uuid,'521','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07b91069-3674-4a27-975b-6967a43bf4ad'::uuid,'521','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52a84590-f1e0-4392-986d-49ce670500a7'::uuid,'521','998',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1693e341-df34-4eca-bfd3-7b9b1ebe1bb6'::uuid,'521','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a36ec8f0-8b6f-4259-9340-000bb7ef1dff'::uuid,'522','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1715a64b-99da-4c88-84a1-559b96ac6399'::uuid,'522','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('364374e3-a6b1-4023-b15e-970a03f3e7af'::uuid,'522','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b6b6ff8-4093-49e9-b3e0-26f92b6a897b'::uuid,'522','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18cef7f3-cee0-4352-aa42-8e82ee72ff61'::uuid,'522','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6184722-426a-41fa-b444-5c8edba78c22'::uuid,'523','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54a5578a-e383-4ccd-b236-a8bc3e739ca4'::uuid,'523','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d062465-28b7-479a-99c5-2e73e9a735cf'::uuid,'523','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb7801c5-01ec-42df-a1e7-f405977282c6'::uuid,'523','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83569f57-af7a-41f5-bc46-6150badbd233'::uuid,'523','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bbfb6b63-f44c-4fae-ac0f-2bfb0fc29614'::uuid,'524','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6da75008-3d6f-4bab-81eb-976a72c2b3dd'::uuid,'524','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb6aa045-898e-4f44-bfba-0e07e118aa59'::uuid,'524','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b406496-2351-4ccb-8b24-af541a942eba'::uuid,'524','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5e93ecd-96f1-4dca-856e-4993078d38f0'::uuid,'524','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('644c6953-ffc2-4e4e-993c-4bb46e289ef3'::uuid,'525','995',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71df5aac-9f06-42f4-9b5e-c89813a7a024'::uuid,'525','996',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f54761b9-52b0-40fa-a8f4-190732fb9c36'::uuid,'525','997',3373,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('045b9b90-7d1b-4a97-86a0-a13b02749775'::uuid,'525','998',2925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed775a7f-d766-4fd6-967e-f6796ded10c9'::uuid,'525','999',2702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('46f9e86c-a3a1-440c-ae25-2d2bc9d9582a'::uuid,'526','995',3499,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0dbd0821-052a-4aa5-81ec-58abe9246169'::uuid,'526','996',3499,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b85c102-e6e4-40c4-bd83-c4a8d1a3a033'::uuid,'526','997',3385,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1d875264-80b3-42e0-b094-c6cce7e9c36f'::uuid,'526','998',2937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7505e80-0d1c-41a9-b6c2-102fc97d534b'::uuid,'526','999',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('707b3553-f1ea-405d-a5b9-063818a23aaa'::uuid,'527','995',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4f18f40-2902-415f-968b-6a98755ae756'::uuid,'527','996',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a1efd5f8-8c33-48a8-acb1-c076258c07e0'::uuid,'527','997',3351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b375919e-70b1-487c-b91c-cbc5c93f1c15'::uuid,'527','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4565e818-0c63-4994-8813-4daa97b6256a'::uuid,'527','999',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('584b7841-227c-481a-966d-bc5054c5176b'::uuid,'528','995',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d232818a-c7d2-4686-a9a7-c0b20c80c2bf'::uuid,'528','996',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5803583-470d-46b4-b5f1-abc036add53e'::uuid,'528','997',3389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b978a5e3-16ff-4f32-a379-a02f44b4437c'::uuid,'528','998',2940,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ce63fa2-a1ae-4fdf-b10c-7a6a8626348d'::uuid,'528','999',2718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bb777fc-445c-49ad-afd2-cebf0e262169'::uuid,'530','995',3481,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea5bfcc8-9cf6-4742-be42-219a414ec765'::uuid,'530','996',3481,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb4f6c28-7aab-4472-98ef-f1f44c0f3e75'::uuid,'530','997',3367,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a220e2c3-b9d4-4811-8490-fc55aa19583f'::uuid,'530','998',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2650f692-2775-4b1d-9858-2242f0f7fec2'::uuid,'530','999',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2a915e8c-6332-4a03-b83b-163df9988e5b'::uuid,'531','995',3507,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7d840e04-4686-4976-876e-c3da0ca4f2ce'::uuid,'531','996',3507,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8fb4fb96-3e6f-4b88-9173-64501ee314ca'::uuid,'531','997',3393,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8fff39dc-7e29-4fcc-940e-c0732ad4d8f0'::uuid,'531','998',2944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5143dc2e-3882-4480-a72f-6fbb85d6b823'::uuid,'531','999',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62dfc0b1-37ea-45c2-9951-03fbd7655ece'::uuid,'532','995',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5ac17bd-6057-4ac8-a925-7296bcb53e58'::uuid,'532','996',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37bfb9fb-852e-4349-9311-4e309c1385ae'::uuid,'532','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('154e2b80-9a5d-4d7c-9186-af81551379c5'::uuid,'532','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ecb3aa04-6de2-4afd-905e-be5c922f7e66'::uuid,'532','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('90576107-0bd7-496a-b9cd-24e2c1dd5629'::uuid,'533','995',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34a78337-715b-4a10-9704-4d0096f9f915'::uuid,'533','996',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e8f3ccd-0091-46bd-a95d-2059ec144f08'::uuid,'533','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b6d8c62-3bb5-447d-aa6b-f2df6c44e96e'::uuid,'533','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfefaffd-d3a8-4d3a-9290-cb91c1914ba7'::uuid,'533','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95e1e745-192e-42ca-bd3b-f5515cba8484'::uuid,'534','995',3530,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d27c73eb-ba0d-4296-8d6b-45189a2de2cd'::uuid,'534','996',3530,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('990de793-8677-4bb4-a096-30faf6939099'::uuid,'534','997',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95eefb0a-18e0-4a3d-8a12-0bba2669addc'::uuid,'534','998',2968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('443e9d2d-798f-4971-9a39-cb02d8de9903'::uuid,'534','999',2710,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ad34f0a2-1a85-45fa-b438-e66546585697'::uuid,'535','995',3447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('20ecb8ce-0cb2-4bf4-bf40-679cf4ccd394'::uuid,'535','996',3447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c2fecc73-3661-4d0f-afcd-f8627c0a2dfd'::uuid,'535','997',3333,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b9a3faa3-a369-4087-b5d0-3b576e12cf71'::uuid,'535','998',2884,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82cd8ee9-59c5-48c9-bf64-537e195a2832'::uuid,'535','999',2661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('242b7d12-f8f8-4738-b85e-fc101cc24e8e'::uuid,'536','995',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71e834b7-8983-4220-b4ec-b184ae9fe14e'::uuid,'536','996',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('585b104d-8730-47c2-9f5f-edb60c2d6683'::uuid,'536','997',3328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('281c409a-768a-47e2-958b-45ac1711ee78'::uuid,'536','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52727088-9d26-4c48-b7d7-8749e086ab21'::uuid,'536','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('685e2fd5-0c01-41ba-98e6-c784cee40a95'::uuid,'537','995',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74b20dfa-6569-4780-9fc2-0e572f01c662'::uuid,'537','996',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e43a1e51-f0fe-4940-9924-788251f22751'::uuid,'537','997',3328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d59aa46-101c-4ebb-bc8b-3e1fde9e71e4'::uuid,'537','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0a74cf0-51af-4be8-8327-48488e25f625'::uuid,'537','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('816d820b-d681-4c0e-86c2-31dafb573d29'::uuid,'538','995',3403,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e82d7e36-7b22-4ba2-b778-bdf0c393c92a'::uuid,'538','996',3403,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9fc95b98-2eae-4c6b-8f44-37c02abd363c'::uuid,'538','997',3289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8134b658-70e0-4447-8f88-97def9eabffe'::uuid,'538','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d1dc09fa-9f73-44c0-8926-4739cce8e4be'::uuid,'538','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fb558c78-1306-4079-b276-4be05231c1fb'::uuid,'539','995',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13898b31-cb48-4cb5-b7e3-3af492150fc7'::uuid,'539','996',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eb3daadc-d6a1-4285-bce9-7eac48c1c04a'::uuid,'539','997',3295,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('307cc6f9-760f-42e9-b6f7-d41a8c318df2'::uuid,'539','998',2846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b551bad6-ac5a-4940-aa87-8cdd2333743c'::uuid,'539','999',2588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7808e084-fe2a-4c91-b74f-00e0e2e29b2e'::uuid,'540','995',3219,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4a92e44-b924-4051-b198-f25b3b1b013c'::uuid,'540','996',3219,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a37231f6-2cb2-49f4-8f9a-ebfdc0cb6b97'::uuid,'540','997',3105,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c297c89a-4076-49cd-9a38-690d936b2aa5'::uuid,'540','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32ce3c5f-4677-4c82-94c2-97e756e655fe'::uuid,'540','999',2434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1f2e8eb6-f858-4d4a-a6ad-485c09f22527'::uuid,'541','995',3404,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8cbfd377-a3ba-407b-846f-e603afd39f85'::uuid,'541','996',3404,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c6a6aea-a1ea-4eac-b8e8-73fa7fde9594'::uuid,'541','997',3290,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9d6ace54-5385-4a98-bc19-2b2e6bcc9c40'::uuid,'541','998',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05badb97-1bd6-4402-8622-6cd3c46cd0ea'::uuid,'541','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d066efa-2832-40a5-a5a9-4c1b9c113d28'::uuid,'542','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da78b8f8-b9c8-443d-af62-9054febb398b'::uuid,'542','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3361e7b9-2362-4d26-b733-48cdd264ca98'::uuid,'542','997',3505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5675ed58-620a-4a29-98a3-ff913f496355'::uuid,'542','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('509da96f-3093-4153-bcd0-47d883f8b4fc'::uuid,'542','999',2698,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9c50c2f1-ea66-4b01-b7dc-700ab2d52be8'::uuid,'543','995',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9250ae5-591d-4d98-bbe5-87748b33d893'::uuid,'543','996',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38552f04-5e4c-4a03-93c9-838d2b00095c'::uuid,'543','997',3337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cac1ceef-e647-4733-962a-25fe7e58a685'::uuid,'543','998',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4dbe36b-b057-4ea0-8c7f-b948fa7a1d34'::uuid,'543','999',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da35386f-def9-42bc-9eea-9dde3827078f'::uuid,'544','995',3357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7fa2a84-4f35-4a5c-bb21-8e806ec31894'::uuid,'544','996',3357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0e0846b0-a1ad-468c-b3f1-b75f54d4da79'::uuid,'544','997',3243,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c3c52f83-0181-42d4-9390-44c62a594e11'::uuid,'544','998',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d032616a-b99e-46a5-9f04-e874d1ae8d24'::uuid,'544','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('473f54f9-2663-4c35-b08e-f44415020d6c'::uuid,'545','995',3291,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('440b1d5c-19fa-4a41-8c01-91b96c27dece'::uuid,'545','996',3291,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74656ea2-9917-4a16-a31c-386c3010be92'::uuid,'545','997',3177,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('564ffd53-0df4-4ad9-8e6f-8a65294a7e93'::uuid,'545','998',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8268090b-9acc-4e8a-91d5-14758590c154'::uuid,'545','999',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eafde64a-af81-4ecc-a630-a9dcfae4df9f'::uuid,'546','995',3344,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c79f8fc-7178-4d18-8523-d512aed65148'::uuid,'546','996',3344,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5498e693-b986-4971-9a36-2e9332578533'::uuid,'546','997',3230,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56e54fb9-b73b-4f24-b59a-3687afbca812'::uuid,'546','998',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f19e38ce-1db1-4521-a222-6bceb8186baa'::uuid,'546','999',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0bc664ed-cdef-4665-9a46-d56ce1df89f9'::uuid,'547','995',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4d14354-19da-4bce-99bf-b8b921c14a03'::uuid,'547','996',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b42dab02-79f1-4856-b5c9-1fbd1ce3c648'::uuid,'547','997',3151,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae710a5b-ee1b-4d72-aa33-bc3e4150956b'::uuid,'547','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3204b758-5cb4-49e5-9089-8b9c7fc52f17'::uuid,'547','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d357470a-36b5-49f2-b128-6208147ed14f'::uuid,'548','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07f6729e-e0f2-4dbe-954a-72ec0cc2b855'::uuid,'548','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdbdbef5-102e-4de7-97f4-86ed0cc3b2de'::uuid,'548','997',3091,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1a256afb-77fe-4fe3-b8d1-b54296ac43ff'::uuid,'548','998',2642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac534684-53a1-47ac-8af2-ae9bb1989f59'::uuid,'548','999',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c53611b2-a777-4a0d-b1b0-b7ae6d1d2642'::uuid,'549','995',3400,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97a8cdbb-e5c2-4b98-87d0-9059e0fb7337'::uuid,'549','996',3400,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80613cf0-e086-4ede-9745-099c9f3de501'::uuid,'549','997',3286,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('862a322b-9b63-4fa4-8f00-43e39ff7eabc'::uuid,'549','998',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('430dde37-491f-4748-b232-7b9ef03d85cc'::uuid,'549','999',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84c06531-7e26-4d12-b2a9-9eed5bdd9885'::uuid,'550','995',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7bb74a06-da5e-4e8d-8eb0-1f9439c7f6e5'::uuid,'550','996',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2bf619d5-f16e-4d55-aef3-f4840f810a07'::uuid,'550','997',3078,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e1d3a37-5ce7-4e8c-b3ce-e77fc2f0ad1e'::uuid,'550','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1573c59f-bf00-4184-86cf-117ba40420c2'::uuid,'550','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f37d6f39-1dc4-409b-a440-f0a589c21ed6'::uuid,'551','995',3182,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aa67ed16-196a-4bac-85d8-c874fb0a6d17'::uuid,'551','996',3182,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('40b6d1be-52eb-40e8-8ca4-40abd8749c0c'::uuid,'551','997',3068,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eaef8804-a559-4db3-b264-11210bd0a612'::uuid,'551','998',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4a2c77d-0eb5-46c3-8e5c-93a20a25f641'::uuid,'551','999',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb5eee6b-dac0-408a-b321-37454554903a'::uuid,'553','995',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56ec959a-badc-45a5-93f7-ace3ddc75669'::uuid,'553','996',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0df6e3c9-96b5-426c-b169-5525ff3fdd3d'::uuid,'553','997',3037,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e1258ac0-e9e7-4f7d-ae41-570109837123'::uuid,'553','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7aaf3717-7c83-4113-8cf5-5f8416401bef'::uuid,'553','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7d95504d-babc-4ac4-89f9-8f632b3689ed'::uuid,'554','995',3174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5c0363b-1225-45af-a276-a355fe4b3ddb'::uuid,'554','996',3174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0aa97b8d-626e-46a4-a300-15ee5998724f'::uuid,'554','997',3060,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e47c2a66-a16a-4b97-9776-970ffc670747'::uuid,'554','998',2611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdbf6c2a-cde0-42f4-ae17-700a8ac52d7b'::uuid,'554','999',2389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fb14283-3939-4543-bfbd-32d95f7db727'::uuid,'555','995',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45902b12-fed8-4830-bd39-f18406b9b72c'::uuid,'555','996',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4a5c031-ada7-4dc1-b08d-b6946008580c'::uuid,'555','997',3037,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2d6b1b6d-771f-4cba-912b-3d732e68ff3a'::uuid,'555','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4cdcf69-79a6-4f0c-8b27-8b36264ba3c7'::uuid,'555','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fc68c3c7-be05-4e05-85e2-bfea6de1052a'::uuid,'556','995',3213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ad1beeb-3b3b-4b78-8099-feb2f7e63ad3'::uuid,'556','996',3213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71031929-5d96-475f-bca4-5ea7e22a9488'::uuid,'556','997',3099,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f0cd533-bb45-49b2-a755-abbc95fcf1d8'::uuid,'556','998',2651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc157c16-3ab2-4426-b193-62664ca797bb'::uuid,'556','999',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e176ab82-d911-4316-85d5-23fe05a2aecf'::uuid,'557','995',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9df31a4-207d-4f91-a395-1dca7d339c63'::uuid,'557','996',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdba86e5-90ab-47a2-9691-01a0559d7b86'::uuid,'557','997',2969,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0ee2d61a-58d4-4177-a3a3-1c8abb89e23b'::uuid,'557','998',2521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3ffd31f-db57-4cec-87be-7f92c9d872f4'::uuid,'557','999',2298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2f316561-b131-40c2-9780-280a3eb0ef5e'::uuid,'558','995',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07cdd2a7-0ab7-4490-9b21-bb17bb66289b'::uuid,'558','996',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cecbb52-c01c-47bb-b342-515ec5167364'::uuid,'558','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a58cd870-34c3-447e-8a64-777350ca77d8'::uuid,'558','998',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8537d37f-d2c8-4541-a6cf-2f26d2bba7cd'::uuid,'558','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52cc86b4-123e-4315-bdbe-520ef59a67c4'::uuid,'559','995',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47228aaf-640e-490e-a669-cbd088fd3340'::uuid,'559','996',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd4c910-8316-4857-9042-8483b601e5a5'::uuid,'559','997',3299,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('42034574-4ba2-441c-9a8c-3ff316feb834'::uuid,'559','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('744093c5-b0d0-4ce5-98a2-c1fe24745cbd'::uuid,'559','999',2491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a740abb5-18cd-4a1a-a5d5-6026c1d616cc'::uuid,'560','995',3207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80bcbcac-86c1-4908-899c-532c32748965'::uuid,'560','996',3207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('89d1c467-98e4-4b6a-a44b-529ee15be4e3'::uuid,'560','997',3093,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a23c3a4-1ed7-4a01-9ad8-2fdf84c0f19a'::uuid,'560','998',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8feae52-93f4-4402-a396-8996fa2b4a46'::uuid,'560','999',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('04cf5de9-2ceb-4fd2-999b-867510b9681b'::uuid,'561','995',3157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c81a7e5d-ddc2-4a26-9cc7-c1365ffff840'::uuid,'561','996',3157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('028d7f25-040b-4792-b311-8992b8d61e52'::uuid,'561','997',3042,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('badbb6ed-829e-448d-a8bf-be3aa63165e8'::uuid,'561','998',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b678d686-b8f2-4f22-a872-d56fc8f1ff5f'::uuid,'561','999',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3606cb9f-eb9a-4d38-a7da-5727e7af78a0'::uuid,'562','995',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('093c06aa-2f54-4108-b3e3-bfb9995c8032'::uuid,'562','996',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ea03b2f-c45a-48f1-b754-e3e424a15159'::uuid,'562','997',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c6d0706-4d6d-4a53-ab43-0da43df1cf10'::uuid,'562','998',2509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92e98c7d-0771-461b-b6f3-e7f591f182b9'::uuid,'562','999',2286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ab47fabb-2749-4130-a752-86af5b98d2ea'::uuid,'563','995',3069,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d1f49e3-53ef-4d56-951a-663a226e15a3'::uuid,'563','996',3069,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66d07a19-eccd-42bd-ba56-a3e60993b9c7'::uuid,'563','997',2955,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9e033c3-e258-4ca8-81b4-9f1e47e64b0f'::uuid,'563','998',2506,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e013fa19-d374-4a66-b574-443a03e0cdea'::uuid,'563','999',2248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c8051561-7b10-4cde-b820-4c8db36967f5'::uuid,'564','995',3052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('02b94a03-33d0-48a7-8ee2-72a341f3cb2c'::uuid,'564','996',3052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('519ff7d3-af6d-457b-a622-d8a700554d46'::uuid,'564','997',2938,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23874d4e-1365-44ae-853b-7a6f8efdc310'::uuid,'564','998',2490,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5323124e-0e44-4b60-b7af-4867237dde6b'::uuid,'564','999',2232,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091f8b2f-01a7-4142-bb8b-90f630f28a66'::uuid,'565','995',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82ae642a-ab2a-4081-9993-d34207a02295'::uuid,'565','996',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a071e8-1b3b-4f3e-a706-e186d016927b'::uuid,'565','997',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd8cbbd4-25ce-4290-9fa9-608eae305d28'::uuid,'565','998',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8136a4c-dbc3-42d2-9f5b-5731fb274c1e'::uuid,'565','999',2199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e7d0d72c-3474-4bd9-bce5-838ac46ca3b6'::uuid,'566','995',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d002bef4-b344-4d7d-95f5-2abe3bf44774'::uuid,'566','996',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae624527-b3ba-44f9-b52b-771333f3cfbf'::uuid,'566','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01447a9d-40fa-4e97-b74e-9e8f56f9b237'::uuid,'566','998',2433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ba9c60a-f7ee-4fec-a9c2-394040d87acd'::uuid,'566','999',2210,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bac06daa-e4ad-43e6-82d1-1f0dcda7dc21'::uuid,'567','995',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae82e5dd-69f9-4b0d-a99e-258ba6e8a57f'::uuid,'567','996',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a9f69ba-6238-45de-bcda-e56aadb95f8a'::uuid,'567','997',2745,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d344c598-11d5-4fc4-8c27-9688db7a236a'::uuid,'567','998',2297,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aaea3be-8ce2-4948-9983-e6f49c3829c7'::uuid,'567','999',2074,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3bc34563-614f-404b-b5ef-f9048e9b5468'::uuid,'570','995',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f27abefe-de8d-4111-98e0-7aa17ebe007d'::uuid,'570','996',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5de2b0ea-d211-43e2-9ff5-f8d062d31485'::uuid,'570','997',3035,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1bb320a-9f1f-4cb0-827a-1a6f7cebc96b'::uuid,'570','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de508cf4-9513-400d-b011-6d9c6f3e1a57'::uuid,'570','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb0f7a44-0758-45d6-b56f-cc675dc5d79d'::uuid,'571','995',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a7ec7990-0e2b-496f-b80a-c7ce83a4d827'::uuid,'571','996',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2b70e54-d9e0-4ace-8235-8fa36d62d8e7'::uuid,'571','997',3035,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f67871e0-e4ac-4409-9568-cc1af2a64b0c'::uuid,'571','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b325a32-de88-470e-b390-e9f1dda0bc92'::uuid,'571','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('defc5343-032a-440e-99df-02267e017e0d'::uuid,'572','995',3045,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6001af3-b945-4a6c-b007-b7e09a5c016b'::uuid,'572','996',3045,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5851bf8d-df1e-40a9-8010-3e49e3460546'::uuid,'572','997',2931,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('48f45265-d627-402a-ba7b-1bba82d2095a'::uuid,'572','998',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fa40f95e-fcc3-4236-a5e1-d156afa17e99'::uuid,'572','999',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67040feb-4819-4cc8-a638-c4706504ed24'::uuid,'573','995',3095,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84dd0873-9d8a-4fbc-a065-d59465df74ba'::uuid,'573','996',3095,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4033ce2a-252d-440c-8182-3129865e5924'::uuid,'573','997',2981,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f230884b-fd02-4a67-9b83-eb9c50b37689'::uuid,'573','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73c0994b-ceaa-4816-9be0-f9f61aaff3c7'::uuid,'573','999',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('68174f83-a713-431a-bfa5-4c470ce5a495'::uuid,'574','995',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9602695a-9188-4a11-bab2-28eff43de1e0'::uuid,'574','996',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80fbff72-3484-4245-a8d8-c79a3b130b25'::uuid,'574','997',2841,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e0f739e1-7fe2-43c5-a6e7-ea2a93c54dde'::uuid,'574','998',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8430abd-da25-4e06-9198-fad42e0f7389'::uuid,'574','999',2170,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b8c092-01c7-42e7-a49d-ed707a214ed8'::uuid,'575','995',3012,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7142e1c-a5b4-48fb-9a0c-0ed6b60e9659'::uuid,'575','996',3012,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('529592c0-1ef3-45dd-ae73-23c1b59964ab'::uuid,'575','997',2898,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5674434d-f20f-45a8-8827-a956bd5670fe'::uuid,'575','998',2450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb7a89ff-ec6b-4607-967b-394d378465ea'::uuid,'575','999',2227,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1dbfd8b0-1f42-4007-b510-59c7ad5cc2c4'::uuid,'576','995',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d0083a1-f589-44bb-b27f-d2ddc7032233'::uuid,'576','996',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55e4c7fc-61fa-470e-8e23-9945d161c20f'::uuid,'576','997',2796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6fba924d-6058-4462-a4a0-620b97f5a315'::uuid,'576','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f011bd9-d5bd-4e82-a932-5e42e6d8eadf'::uuid,'576','999',2124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16b8bba9-dc91-4537-9923-5b85688ac90d'::uuid,'577','995',2951,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('729f771a-5362-4c32-b849-ab2b65276aae'::uuid,'577','996',2951,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9fb6a3e7-bfa5-48a1-b1d1-a9a60fbc1618'::uuid,'577','997',2837,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('feb42382-5b2a-4721-b6bf-a4ade12fe36f'::uuid,'577','998',2388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('594eea09-6914-4e00-be9d-6ed478087384'::uuid,'577','999',2131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8fc8db9a-26f5-4af8-9475-ea1d8c032ae5'::uuid,'580','995',2935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61fde359-2617-4c5a-aa71-f499553295d1'::uuid,'580','996',2935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8648822-6b92-489b-934a-f8aeb6c6dc24'::uuid,'580','997',2821,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('38642e7f-b6e7-4b0d-9c76-fa029be473be'::uuid,'580','998',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95f96e81-3e71-4363-9efb-c01ff16495c2'::uuid,'580','999',2150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f61da887-6be8-4288-8d64-79a26785c5f0'::uuid,'581','995',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29a8b222-8b88-48d4-97e5-5f3b2daac3ff'::uuid,'581','996',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad223705-5486-435a-b918-04137c425005'::uuid,'581','997',2826,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a6ff4392-87ce-4191-a2ad-0996aa18302a'::uuid,'581','998',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a05cf28a-8d3e-42a0-b032-c55762831cd9'::uuid,'581','999',2154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6043c1c7-9c3e-4801-9b34-0864c1d31eee'::uuid,'582','995',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159bd446-56fa-4cc5-a142-27ef71b23461'::uuid,'582','996',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2889e245-c067-45c1-ab50-014b5bd1712c'::uuid,'582','997',2768,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('712b215c-4d71-4054-8d5f-75424a16bcf7'::uuid,'582','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f10eadcc-9dfa-422a-b864-8d90294bc51f'::uuid,'582','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cb9b480-8caa-4c23-96f9-8f0bbb7c838a'::uuid,'583','995',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('517b77ae-cbae-4740-a901-1856e750daba'::uuid,'583','996',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7e773cd-f27d-498f-a518-1b474d47a24e'::uuid,'583','997',2796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ed413e7-b246-4a82-8989-80684b4794a3'::uuid,'583','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0bef008b-cf07-4f76-9302-18b43943bba8'::uuid,'583','999',1989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d6bc516a-f821-4242-890d-ea8d1cc7fe0e'::uuid,'584','995',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('caa142ff-d7c0-4732-8f4b-f206e6accb30'::uuid,'584','996',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3eacd7ab-46df-4188-92c5-ec9bbe6cf0db'::uuid,'584','997',2732,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2afcb1b9-1ade-4da9-9f4e-c58a2b30d084'::uuid,'584','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a326983-9245-4801-be7a-a710f3cde4d8'::uuid,'584','999',2061,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f73026f2-aa01-406c-93a8-1c36d33a88fd'::uuid,'585','995',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef337442-c49e-4a20-b128-5c35770bed62'::uuid,'585','996',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4badeef4-bf49-46d5-9412-8b3e42281715'::uuid,'585','997',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('feeb4199-1677-428c-8d08-c7380320518b'::uuid,'585','998',2222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66c1438c-777c-4851-bcbe-458ceb6f90d2'::uuid,'585','999',1999,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b6c10648-7be0-4627-bda4-74e7627b524b'::uuid,'586','995',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccae245a-7795-43cd-9ff8-422e4c8a7dbc'::uuid,'586','996',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd472422-5135-4ea9-a4ae-c9e6dfa04522'::uuid,'586','997',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a08ad7e4-f3e4-49b4-a5bc-f9372284c0fd'::uuid,'586','998',2186,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9676daa7-10c9-495d-938a-7e3aacec6d16'::uuid,'586','999',1963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34fcc021-df26-43ff-a85d-9e0540bab693'::uuid,'587','995',2676,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2c61fcb-3a3d-4afa-a7b3-dedab8ea219b'::uuid,'587','996',2676,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e62dd4e-f27e-4a12-8438-4b09f2008a04'::uuid,'587','997',2562,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e2adfc4-8eb4-4a24-82a2-6f21d7a1f697'::uuid,'587','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af24244c-76ba-43fb-be13-771d61583d80'::uuid,'587','999',1891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('21553092-78bb-4d92-a14c-06b4d5afada1'::uuid,'588','995',2618,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66b28fe9-8e1e-4c98-816f-a64b90019a71'::uuid,'588','996',2618,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('133838d7-fd1c-4214-b6a3-30235cb5c68c'::uuid,'588','997',2504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8f1e398-1dc2-4922-a885-7a350af14934'::uuid,'588','998',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb59922b-edd3-4e72-90ab-8d7324d73b42'::uuid,'588','999',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d39b639-e9ab-4404-9a49-cf1c0fa41a9f'::uuid,'590','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d342f80-5c02-4a09-92b8-665a9c77934c'::uuid,'590','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6af4587a-743e-4f33-8627-b00834c496f9'::uuid,'590','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9438b293-3f9e-40d8-bbd7-5c7321f37450'::uuid,'590','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15be0dae-9252-4a99-b486-a6a9f3b42a9a'::uuid,'590','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('26381dd8-91a6-430f-9b48-297884466d31'::uuid,'591','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51c57dc-fb10-4485-8099-c5c7947460a8'::uuid,'591','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13a44dab-4221-49dd-8558-57cd8c951615'::uuid,'591','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fa6015e-c4fb-4919-aced-3e803aff997d'::uuid,'591','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4853fbca-4939-41a2-bbbb-6cda75664cf0'::uuid,'591','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3420dee-8a61-4c13-9320-d32436d57735'::uuid,'592','995',2592,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9809db90-0321-4cbd-a701-b1925033affd'::uuid,'592','996',2592,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df690c70-3fa3-4a9c-ae41-3549ecb52ed0'::uuid,'592','997',2478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('affaf773-a264-4d2e-aec6-feab899adf92'::uuid,'592','998',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('883101bd-a053-460c-93b6-f834577ac4ef'::uuid,'592','999',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('372ef217-531b-49b8-b3f0-4db3bfd07247'::uuid,'593','995',2752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fcb944ff-1386-4ed0-830e-488da0c6e980'::uuid,'593','996',2752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('900b77a2-d90e-481a-935b-9ffbe95f5e51'::uuid,'593','997',2638,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b240f71f-12e0-4f75-886f-0d42c0da24fb'::uuid,'593','998',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a9fd9a9-fcf4-44f7-9db4-c476b6c87741'::uuid,'593','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0f896af-9304-4d60-bc8c-dcac292467a5'::uuid,'594','995',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56e79e35-5671-47e6-85cf-132bdce31691'::uuid,'594','996',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e4bba32-5e24-4724-a01e-a3651feb40d7'::uuid,'594','997',2323,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4c33a30-60cc-44cc-88f7-864381153d9a'::uuid,'594','998',1864,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f637b1f-e156-4b54-a018-aecd34fa7ccc'::uuid,'594','999',1642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a92f92cc-7415-43d5-bc98-5bbd6f4aaa69'::uuid,'595','995',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7161a1f0-11d4-482e-9329-77dd6ef26612'::uuid,'595','996',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0f1e77a-ba19-4553-880b-822071761f81'::uuid,'595','997',2341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4e24817-ef2c-4781-836f-e46cc505de2f'::uuid,'595','998',1882,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08127592-22d2-4876-9c78-d9ad6501839b'::uuid,'595','999',1659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98b12e6d-9855-4c49-b95e-ed683359fac6'::uuid,'596','995',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5294ef9-d999-4f47-9eec-c6ce61aa2d4e'::uuid,'596','996',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bb4daad-034b-4f2c-af0a-c5e51f730a4c'::uuid,'596','997',2383,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fdeb60f-9816-4f98-8ca8-a4c95dc940e1'::uuid,'596','998',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('819118e1-c0ee-4ad5-a5ec-b92184a79797'::uuid,'596','999',1668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4d0bba16-b627-4205-b83a-e1f3bc97d5b4'::uuid,'597','995',2589,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a861997-81e3-45f8-825a-89e0d600c9ae'::uuid,'597','996',2589,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23461f9e-31b6-4264-a93e-e2cc1d2a2efb'::uuid,'597','997',2475,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad69452c-2e97-461b-8390-8e5b40834800'::uuid,'597','998',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2e6043d-aff1-419a-a2f0-86e75e92abfd'::uuid,'597','999',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36cf8709-a1f9-404d-9ff4-c656158e5612'::uuid,'598','995',2513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('83996d3a-420c-4464-898e-154ef8de0d81'::uuid,'598','996',2513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d1b1739c-99a9-42d8-ab74-db06537448b9'::uuid,'598','997',2399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c8cce8b4-11db-411d-9dd2-5968655ffdfd'::uuid,'598','998',1777,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5109c8de-7420-450d-be53-8a12f0606a45'::uuid,'598','999',1555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('afe30946-7391-482a-a7d2-ff8053ed3102'::uuid,'599','995',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f164b9be-d465-4551-a0bd-b91f64b64460'::uuid,'599','996',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('803d0868-e716-4af7-8afb-4544a81d660a'::uuid,'599','997',2283,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd468b6c-2bf6-473c-ade2-fded58b48c76'::uuid,'599','998',1741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08d5937d-c8d0-460e-8c12-170bf37d9828'::uuid,'599','999',1518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbc98432-fc0c-409b-9e8b-16f64259af35'::uuid,'600','995',3529,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6a0569b-dff5-498f-b678-5eb05425bdca'::uuid,'600','996',3529,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84c037bf-2fbc-4a8c-8229-ccd976a241f0'::uuid,'600','997',3415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c17d1d35-2906-4e6d-b22f-c64eb9277dfb'::uuid,'600','998',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30ed0dc5-57d7-4640-be51-bc66828e4f3e'::uuid,'600','999',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('efc0796b-a480-4f81-8f48-36d2ebd785fa'::uuid,'601','995',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29317075-b3de-48f4-b496-0c27cf78cf7e'::uuid,'601','996',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a7c50eb-c604-495a-8a53-1bd94a24cf41'::uuid,'601','997',3441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b659c5fa-59ec-48a3-b4c5-9a1bc2d09514'::uuid,'601','998',2992,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5b3b684-c8c9-47d1-8bbf-e1fe384fb73b'::uuid,'601','999',2769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9ba1b4e-2f46-483b-a265-b2d491832b31'::uuid,'602','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c58f40b6-97fb-40ca-a637-ce43e8c01449'::uuid,'602','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d6bab2f-a11a-42f0-9eaf-626d2f2580eb'::uuid,'602','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f133358-7d07-4915-996c-81381562fec3'::uuid,'602','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c4ed3e3-ecc4-4cfb-8a1f-bd582468d4f4'::uuid,'602','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9a796351-a7ac-4f41-9c78-efbc5b08d65b'::uuid,'603','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0c32971-33f8-4fba-ab0a-12a5c8fcf6f2'::uuid,'603','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3259712-6d3e-425e-b09d-44924feabcbc'::uuid,'603','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5882c090-5502-4a20-a73e-e4cc55aca34e'::uuid,'603','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d114b51-4e75-4600-bc8a-7c0fc4a93800'::uuid,'603','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54d506b1-7791-4773-b312-bbb4714d3cb0'::uuid,'604','995',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51e7a6fa-55b4-44a7-9812-a357bddf4e02'::uuid,'604','996',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80a08f3a-69b0-4f78-8a03-58e672e54c4e'::uuid,'604','997',3477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0036208c-c009-4d6e-8ec2-9312af1fef16'::uuid,'604','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e15bda6b-6233-4a4c-809e-d148d49cfed4'::uuid,'604','999',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ccdf067f-9e76-4e47-a946-bca37dad5265'::uuid,'605','995',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60a838a9-41ca-401d-948c-bb2e2cca6986'::uuid,'605','996',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c28ab6a8-76e2-4680-a07b-f03747eec433'::uuid,'605','997',3588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9418f8c3-c8c0-44e0-ba54-24eb13ad1e29'::uuid,'605','998',3003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34a434e1-d287-40b3-a9dd-a657ac881964'::uuid,'605','999',2781,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5f363a8-62fc-420f-8fb6-01118c48d876'::uuid,'606','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('677819c8-1db4-469f-b920-d60dbafde746'::uuid,'606','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fa446ac-b92c-48a3-a190-2c2eef1b494c'::uuid,'606','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a3dbc30-7902-4ba3-a7f8-650987442530'::uuid,'606','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396d750a-f3d2-49a1-8e2f-42d2ce6693d1'::uuid,'606','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a7f2d255-6212-42fd-b852-36eb7ac4c3a3'::uuid,'607','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c7225724-e250-4fe9-bbb4-ea872b7d175f'::uuid,'607','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fa0f8c7-6f72-4ced-a990-7920bbedb4ec'::uuid,'607','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa4516e2-00f8-492c-a7bb-9875e2854bb8'::uuid,'607','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('313a7a0e-111e-485b-ac28-3a3f4141436e'::uuid,'607','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('216ed3b2-1b06-48fe-8110-c2ab1a849eda'::uuid,'608','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('089b5212-d62b-400b-83fd-73aaed0f74dd'::uuid,'608','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bff9c00-9ebf-45fb-82be-29de6ebbf8dd'::uuid,'608','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60599c3b-7dea-42d2-8e48-094dd44c5874'::uuid,'608','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('473b3c00-1212-4636-951d-a3be619d066a'::uuid,'608','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ef115955-f435-420d-bbc7-0d2b8cc85676'::uuid,'609','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3349128-7498-43b9-8bb3-6c1811221026'::uuid,'609','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcc268a0-fe16-4e5c-9efa-b908e6f3f14a'::uuid,'609','997',3536,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85e11610-cf9d-45e5-96ac-6f6728e64b0b'::uuid,'609','998',3087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef6644b2-ad5b-40b4-a2e5-81f8deceb510'::uuid,'609','999',2865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb403c20-c713-45b7-a08c-493abb0cdf0c'::uuid,'610','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92182b0c-a4b1-4132-8f08-b66cd190ab26'::uuid,'610','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa5812ae-47a8-4b9c-a855-a260c224e9fa'::uuid,'610','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a7fce7c-c4b0-4e7d-916a-02d2340acb66'::uuid,'610','998',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8ff7155-a628-4e04-a324-da93e574dcb2'::uuid,'610','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('360ff083-15fc-421f-acef-c3dd4af066d2'::uuid,'611','995',3505,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41cb1217-c14d-4573-9809-8c47be524923'::uuid,'611','996',3505,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c555f767-10ed-4ac4-92f1-19bf78409898'::uuid,'611','997',3391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a547a4a9-9448-4a2c-945a-e1f53de05574'::uuid,'611','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5e24e5-8d3e-46b1-b3d4-06c9f50be386'::uuid,'611','999',2684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6312ef1d-f4c1-41d4-a724-123c4f0db011'::uuid,'612','995',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d82a5ebf-33ea-4114-973f-50151b7678d7'::uuid,'612','996',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('520ba3c9-98bf-4fed-978e-f7fa86f0c6cb'::uuid,'612','997',3531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2eb6b8ba-ae42-46fd-aa90-9be947754afb'::uuid,'612','998',2946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6febd9f-0406-4628-b3b8-085ba04c162d'::uuid,'612','999',2724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('331b96b6-99eb-4350-b2bf-67803b753117'::uuid,'613','995',3570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32314154-d0d5-4142-afc8-faa0ef8075f0'::uuid,'613','996',3570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2cfb376-3764-4c9b-ad61-a41bbb1891e6'::uuid,'613','997',3456,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5272acf-b89a-4fc2-be13-589567de068c'::uuid,'613','998',3007,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fc33253-02a9-4249-97ab-a71dc2dfee6c'::uuid,'613','999',2785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('838e7a36-e099-4e80-a0df-6c90ff41e712'::uuid,'614','995',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('596e7115-4a8d-4386-9e99-052646458b61'::uuid,'614','996',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c0fe8446-28da-48d0-8fa8-a9e616df3bb3'::uuid,'614','997',3429,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7708d37b-58ee-4774-82f3-8226a2f542c0'::uuid,'614','998',2981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32ff3263-ab4f-421c-a1fa-427c75b9b0ec'::uuid,'614','999',2758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e2e42a4d-5527-4dde-8b85-390d6b7339aa'::uuid,'615','995',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dc8c25aa-b10f-4c11-962a-2dde94058738'::uuid,'615','996',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('631c8ccf-8e0d-4df6-b9b9-0dbf0098226a'::uuid,'615','997',3476,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6d00dd3a-3e1e-4f45-aae1-46ad89c5669e'::uuid,'615','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ecbf1812-261d-4465-860a-a6641859ed0c'::uuid,'615','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71f1db50-add7-477d-9ee2-fde9f4281fd6'::uuid,'616','995',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('242238c5-6c7b-471f-b4b0-3877b964fbc6'::uuid,'616','996',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb6de643-6dc7-4a27-b784-eb531659a33d'::uuid,'616','997',3476,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b71f945d-9171-4875-ae9f-ac8890a034bc'::uuid,'616','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f9b58b7-e0f8-4b10-9baa-5c5abe830cf9'::uuid,'616','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2f455a3d-893a-475f-a938-2e0cca36c49a'::uuid,'617','995',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ff5b3e4-3ced-43a7-b25d-d096776ab802'::uuid,'617','996',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41260d35-1f4a-4c85-b1a0-66f7609d62ae'::uuid,'617','997',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cce85e6d-9452-498c-a9de-31d432807505'::uuid,'617','998',3065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd46989e-5650-4e1c-9246-84834f254a1d'::uuid,'617','999',2843,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a259932b-3f21-476d-a607-95d4a2001ad6'::uuid,'618','995',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c0bc949b-c85b-49dd-899e-96807d298508'::uuid,'618','996',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84977ef3-5cb8-4678-b80e-3e9bba63cdc1'::uuid,'618','997',3584,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ea3a67a-0dd1-4017-a8d5-2db91a02d9fa'::uuid,'618','998',3136,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0bb4720-943a-4cbb-8f10-eb1003bdcc48'::uuid,'618','999',2913,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4f7ed0be-33b8-40ec-899e-e9cca8072e7f'::uuid,'619','995',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67b3a147-3139-4c3b-823e-2649e5dd057b'::uuid,'619','996',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ef8fdac-7e51-4d2c-b104-f17d5ae9dfb8'::uuid,'619','997',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5410eda9-c2f0-40be-8c5c-ecd34e9cf2f7'::uuid,'619','998',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e26b5c95-3e01-48c7-b10a-4b356626c92a'::uuid,'619','999',2922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fba822cf-a42e-43a3-9872-f68f250176ec'::uuid,'620','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fac0793-6233-4496-bf91-dd37ef6e5d9a'::uuid,'620','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f51378a3-bd0d-4389-9dc3-b00872095041'::uuid,'620','997',3562,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('111e5e34-38db-4c6c-b16b-64c147709b69'::uuid,'620','998',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4081bceb-b2e0-431e-8dfa-69261e04d1dd'::uuid,'620','999',2890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88ad2dc7-72f0-4ee1-ba26-a6a43da03f47'::uuid,'622','995',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bb0aa95-3a51-4236-8bcb-10a03fbb1737'::uuid,'622','996',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f77d538e-88f3-4191-9668-27679f287f62'::uuid,'622','997',3627,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84bf52d0-2b91-4e91-80d3-6b3fdc66e8e4'::uuid,'622','998',3178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('001abfed-9b7c-41e7-8394-0d45e81ee301'::uuid,'622','999',2956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dca90755-c8ba-4803-8d56-5ed28aa702ad'::uuid,'623','995',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae809a3a-39fa-47ec-880a-8c65e9f13126'::uuid,'623','996',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396b34b7-4496-42e3-b549-4677c637dae7'::uuid,'623','997',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25e94773-66da-4e4d-bafd-514fb9e41e99'::uuid,'623','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8670ddd1-57bb-4102-be9a-72eb73ed3301'::uuid,'623','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('53ffa1a8-1685-4423-951a-70f127fb0613'::uuid,'624','995',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74b04afd-0878-4834-8fee-deaa13e9ef6a'::uuid,'624','996',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ddbc252-b24d-4ff9-8bee-69c717b518e7'::uuid,'624','997',3645,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a717fd44-ee96-49c0-90aa-41a6b1cb7b32'::uuid,'624','998',3197,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b08d747-c6e1-4631-a266-bdf0ddab1fa2'::uuid,'624','999',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c46f569e-5c73-478c-815f-60eed80d4452'::uuid,'625','995',3652,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15fc9ac0-65e6-4b51-bc46-7eda7cd267e0'::uuid,'625','996',3652,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('52568b51-77ff-4cfc-a496-b5c79198d276'::uuid,'625','997',3538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c59ca3f-c7d2-4937-b389-1fff6c42ae41'::uuid,'625','998',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b017d23-102a-43b9-80b5-4399ca7fd9fb'::uuid,'625','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02f42e73-f25c-4edd-8fa8-2163270ae23d'::uuid,'626','995',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09e9672b-7322-4f9b-a1ef-69b7db1db72b'::uuid,'626','996',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de36c531-c29e-44cb-bdba-d3756ad1444f'::uuid,'626','997',3534,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23ccb4c9-450e-48c3-8477-8027091418c0'::uuid,'626','998',3085,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b191cbbe-19a5-4e94-bfbc-f39cba25a996'::uuid,'626','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6310fcf-363f-4405-bee6-25f7c0a5345a'::uuid,'627','995',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82a09106-2dbe-4458-8aa4-5caff133dd33'::uuid,'627','996',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('430d0f22-38a5-4eca-8346-7aceba7a9905'::uuid,'627','997',3538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff8c459c-02d2-45c4-94bd-72231bb55f19'::uuid,'627','998',3089,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c31db31d-5185-4fd6-8116-c9ba93f6851a'::uuid,'627','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('70fa3f48-e552-4c08-9814-3cae56ed39ca'::uuid,'628','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59db1a4a-058e-44b2-8080-6570d0de38a3'::uuid,'628','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a547132-bc93-402c-9284-3c6dd97bfc86'::uuid,'628','997',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53bc2164-eea9-4752-a117-d21f77155076'::uuid,'628','998',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2365bd9e-94c4-43b7-9ee3-5ab2f95e0627'::uuid,'628','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb874386-5e66-4be0-b20d-d1c1604b14bc'::uuid,'629','995',3841,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0bcf1663-4d4f-400f-b094-0bcc0e5e60d3'::uuid,'629','996',3841,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5033d39-3c01-4260-82fb-88dfeeb6f84d'::uuid,'629','997',3727,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f834141-ed6a-4a10-9b64-c9406930dce4'::uuid,'629','998',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fcf69349-d948-46ec-849f-40e1329015f9'::uuid,'629','999',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4773cc1f-6bad-4530-811f-c8cbbc5cd868'::uuid,'630','995',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5cf87413-4e71-4e7b-b646-c57f380a97dd'::uuid,'630','996',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b396a991-2064-4ee5-be1a-acbfc7653863'::uuid,'630','997',3601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('041be5b6-9aa3-4404-8e7a-bf7916acc3fa'::uuid,'630','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83da839b-9b3c-464e-a81e-c0e56d15bac4'::uuid,'630','999',2930,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e3f9ef9-4d7d-47fd-85f0-22c5f01c6013'::uuid,'631','995',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8248576d-0a62-4535-bbe7-e9c92708b236'::uuid,'631','996',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('356784ef-bbbe-47f4-85ee-4314dcd26fd1'::uuid,'631','997',3598,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8646eaa0-d0a8-44c6-a0f7-c117c7861061'::uuid,'631','998',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea921a9f-06dc-4b46-940d-73cbf0ce574f'::uuid,'631','999',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aec45582-5c3a-478a-bf98-b6b1f660547b'::uuid,'633','995',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea02f568-11cf-4263-bd6c-47787be8a541'::uuid,'633','996',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('257e2083-0256-4704-a2fe-d0dbc63f1151'::uuid,'633','997',3543,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('127928d5-92a6-45e7-95b1-6754671e6111'::uuid,'633','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ab003ee-3b2a-477b-84d6-49dd125f9393'::uuid,'633','999',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5cd339a-18b6-4c48-8e54-ae924ccbceef'::uuid,'634','995',3594,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d820c62-2c27-421f-8c5c-474b2c11fb27'::uuid,'634','996',3594,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ed046673-0220-4eff-bf73-df099b7de8e4'::uuid,'634','997',3480,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e528be4c-2110-48da-9120-8e1dd52b0009'::uuid,'634','998',3032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3875b8fe-e20f-411d-a832-9314cd7120ed'::uuid,'634','999',2809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('56d1e786-40d7-47e3-ab24-bfa3c0a33308'::uuid,'635','995',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f34a692-0500-4b10-a2a6-cd434a4a93dd'::uuid,'635','996',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('150a5fe5-a216-4985-aa84-2c9e1b6ee8f8'::uuid,'635','997',3435,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d5a70347-4685-4e50-adb6-37f2e7d91526'::uuid,'635','998',2987,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c5a84bc-d037-4477-9f91-756b1c6ab794'::uuid,'635','999',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48f45851-aea8-4913-a991-df3d971ac991'::uuid,'636','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9071a24b-f6d3-49a8-b062-e0038a0428b5'::uuid,'636','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0086ae4-4225-422d-b1a4-6da9f79de1fd'::uuid,'636','997',3817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8eeecac7-d72d-4e2a-906e-b4abd580ef9b'::uuid,'636','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19b969e1-ce50-4659-b4f6-893e406ff8c8'::uuid,'636','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ce9381c5-2384-4550-9f6e-569c2a192a8a'::uuid,'637','995',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('205a35bd-178b-42a8-a01a-2803bcbe3f1e'::uuid,'637','996',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fa56b1d-5af5-4f91-aa18-7002dbadabc2'::uuid,'637','997',3690,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db120b5f-4625-40a5-b6bd-b34da5920b22'::uuid,'637','998',3241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b7ad21d-09a6-482f-aa86-294ab98063e8'::uuid,'637','999',3018,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce1d1874-8ee3-46ca-968d-26ae756217d8'::uuid,'638','995',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a03f1f2a-0aff-4408-812b-e7dac99cab97'::uuid,'638','996',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09264cd6-1d39-468c-94ab-eb9b737708a9'::uuid,'638','997',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b64aa8cf-8fcb-4433-931d-9a272e6688f8'::uuid,'638','998',3311,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fe50ea5-69d5-4de2-a5f6-24c2a1006049'::uuid,'638','999',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7c01bada-e29b-4059-999e-0c0eef70b232'::uuid,'639','995',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('edf1442d-cd2c-4269-a8ac-d5e7260358c7'::uuid,'639','996',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c9b26ac-4a7a-42bf-9fd9-3d2a555557d8'::uuid,'639','997',3725,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4fc9e3a-0dc9-4a13-a139-93c0085bd5ee'::uuid,'639','998',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3fdf37c-3386-4c99-87ce-76645d44c5f6'::uuid,'639','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a262ad5-ddb6-4e9e-9a0f-1830505f9272'::uuid,'640','995',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf03d6f4-3760-42d0-8ea1-b393f34e9486'::uuid,'640','996',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52475a25-2c2a-4f8f-8cd9-5ff300067e82'::uuid,'640','997',3412,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33db773e-bcdd-4f04-89b2-df2828d16319'::uuid,'640','998',2964,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a53f9c86-be83-462b-bf45-b37b2a27ee98'::uuid,'640','999',2741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('97761497-a131-4934-a08d-634895c2ed2e'::uuid,'641','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eefdf64f-7b97-4838-bd70-631843b0cd47'::uuid,'641','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d5acae5-11b6-46ab-87f5-22f45458ed80'::uuid,'641','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5991bbe3-a14c-406a-a03e-4488853b0492'::uuid,'641','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59300cc1-80e0-489b-850b-329f39817668'::uuid,'641','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a2ac9eb2-88b3-46ea-a2ab-826bfbc45e97'::uuid,'644','995',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('364e66a1-8630-4626-ade5-0564f3bf5fa8'::uuid,'644','996',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fde60e2-258a-48d9-948a-306de3282f21'::uuid,'644','997',3335,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fecf1f7f-1eff-419a-811b-dea9bac54967'::uuid,'644','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca93fb41-62b3-42db-980f-607990efb09b'::uuid,'644','999',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4f43b338-46bd-4ad7-a897-51cbf0e9c1bc'::uuid,'645','995',3453,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('910e2299-efac-43a3-a1ff-b149b803f3da'::uuid,'645','996',3453,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('855667d6-5e46-4cd6-9ce1-ed77088d6938'::uuid,'645','997',3339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2030bed4-a451-46cf-bc11-9b1206033b06'::uuid,'645','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e3fad0b-cef7-416b-802f-b7ca3863d2ba'::uuid,'645','999',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cef11a7-6466-4821-ab70-876dadfc7617'::uuid,'646','995',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23c52a87-0d7f-455e-8513-c6d8c60802a8'::uuid,'646','996',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4af1614-7012-48e2-82c3-87ba4b298ff7'::uuid,'646','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b100881-e6a3-4f99-bbdd-5713acd7e608'::uuid,'646','998',2960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bdcbbd0-e171-4596-ba1c-c49aa9a3fb2d'::uuid,'646','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d188b8dc-6230-4816-88b3-4dea75f8ea02'::uuid,'647','995',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a7fc1ea-b770-4470-9ce8-05ce69a1f4bb'::uuid,'647','996',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1808eb5e-443e-4ece-b2d9-fd540341375e'::uuid,'647','997',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('838727ab-fd79-468b-81d6-12a419c461db'::uuid,'647','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd3905b1-c1a1-4f2d-bac9-0ae0ff3be177'::uuid,'647','999',2786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3debcbd1-4986-42f1-b19b-39681dbd8d5d'::uuid,'648','995',3673,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da5e8845-c001-431e-a0b3-be5676196d4e'::uuid,'648','996',3673,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('493c6e30-9dd1-4f55-b4f6-bf652ca449d0'::uuid,'648','997',3559,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00045660-9ba6-4ec7-83a3-51792c3b5391'::uuid,'648','998',3111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b1e691f-4eea-4591-a2eb-e176448b51b4'::uuid,'648','999',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('901285f8-9473-4121-afde-d2830fb500cd'::uuid,'649','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9241ce99-aeac-47b5-8537-1a9fb1bb8674'::uuid,'649','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18a44543-4d09-453d-b83c-673c94778ddc'::uuid,'649','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8853c2d-c536-40e8-aabc-c29a92cb511b'::uuid,'649','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3962b54-f414-4f24-8925-2542ed43dd66'::uuid,'649','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f045f85e-8861-410d-b514-8ee96f97ea85'::uuid,'650','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('185b45bc-c9fa-4f51-bf12-36698c4da9ec'::uuid,'650','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66d4b242-2068-4fba-8d9b-f716895e5fdf'::uuid,'650','997',3541,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('79094362-7f66-436e-86d7-9eb5f9c48692'::uuid,'650','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cce7911-a1c6-4eef-b225-7f6839d6b2da'::uuid,'650','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f15ef513-f9e0-4576-9e48-633e99350ff5'::uuid,'651','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce923100-6a30-47ea-a1dc-c935fce3ed09'::uuid,'651','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca6a5747-6c0a-4f52-8edd-c20e5ca1cbf2'::uuid,'651','997',3541,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('81dd53c1-fa4e-44c3-9128-7fc1b76ed1e5'::uuid,'651','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26b67ccb-f8ef-42b8-9d55-4b5ab45d9364'::uuid,'651','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b3924a1-d61f-418c-ac92-56fd29445d66'::uuid,'652','995',3604,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a59aad56-00f6-4cdf-a9d4-de95ce161710'::uuid,'652','996',3604,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e087c127-926d-453b-8ec4-05f6c11e4a4d'::uuid,'652','997',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('47bba21c-d563-437e-8242-476ff5a33db4'::uuid,'652','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2cc8d262-64c8-4666-992f-3b55d39972d0'::uuid,'652','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7f8683ab-f43a-49a7-9616-b07b33b5441f'::uuid,'653','995',3596,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f046f24-fb57-4f5f-b4ff-d6c923d36999'::uuid,'653','996',3596,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7acfd012-97fd-4424-9942-30eb982e4825'::uuid,'653','997',3482,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70fb57ad-b050-4143-864a-0185585b4ef5'::uuid,'653','998',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e430efc7-905c-417c-b828-5e3d136552a6'::uuid,'653','999',2775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e5807b0-7e2f-412c-811f-9fb720600331'::uuid,'654','995',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3190cf77-1b20-4bb7-80ca-dbcb9f8a03db'::uuid,'654','996',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43d02f37-04ad-4d62-aca3-54a7f963300e'::uuid,'654','997',3638,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93aa5322-7e64-45ce-8a59-c5f3c383742b'::uuid,'654','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53e12b3a-2d76-44a4-8ffb-e89e2b342176'::uuid,'654','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c93734e9-df0b-4b47-9753-40032e5eb86a'::uuid,'655','995',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a95f4cf9-7911-4b97-8332-eb760080e8b7'::uuid,'655','996',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6ac67bb9-28dc-43c8-a358-096d82a2f994'::uuid,'655','997',3638,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d706e46c-be40-471c-beab-8383e8d264b5'::uuid,'655','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2114cf20-cf17-4edb-a6ea-6a8ffba14aec'::uuid,'655','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1eec2c2d-9684-4341-8540-062480dd4c15'::uuid,'656','995',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('635abc6d-a8e9-46d9-94de-33cf490d79f2'::uuid,'656','996',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('baeb17c0-a159-43b2-9cd3-3288596ff0ce'::uuid,'656','997',3561,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('88352316-b152-44f5-9f56-eb851ad74e1a'::uuid,'656','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0985853-0971-40a6-a456-b4f20501d535'::uuid,'656','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('47c027ea-781c-419d-b4dd-9a42f64960f4'::uuid,'657','995',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c901350b-b939-4ff5-af29-78e5b6a2f7a2'::uuid,'657','996',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('329473e5-cdcc-43ac-9b8e-22e2405968b5'::uuid,'657','997',3561,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3bdc9b9-c57d-4602-bd69-aad5fdbfc6bb'::uuid,'657','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f82cba4-3a53-4c42-91d3-ced56e23d19e'::uuid,'657','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa072242-d7d6-49cc-a7af-2a29561880b6'::uuid,'658','995',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3a1b97f-1e88-4f1f-9012-c5831d342977'::uuid,'658','996',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a95d5c84-d33c-4162-9123-bf5c9854fc77'::uuid,'658','997',3561,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3523d042-8593-4c83-88e1-2ecb4ff1e9cf'::uuid,'658','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcdc672f-2f04-41ab-a7a4-cf7454b7c787'::uuid,'658','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ec51d39e-7fe7-4789-b182-b099bbe4e834'::uuid,'660','995',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f3cd05a-72bf-499b-98b3-e88ca41f4830'::uuid,'660','996',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78ea0b30-01d7-4b2c-88f0-049f0e683430'::uuid,'660','997',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e04375f0-7cff-4303-a2a5-68740c611b6c'::uuid,'660','998',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbe9eaca-37be-4776-b75b-127c539ffb5c'::uuid,'660','999',2728,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6f3343c-23eb-4063-b88b-70d37fdfc6c4'::uuid,'661','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efdb5ed7-2b0f-4682-96a1-6cd90cac24de'::uuid,'661','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86c56191-08ec-493e-8b6e-9f8104da647a'::uuid,'661','997',3391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba476972-2006-400a-9f49-87ea025d7676'::uuid,'661','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fc9c033-50ea-4e46-99be-4b86cb2084cf'::uuid,'661','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c9686765-c0c1-40c9-a7a5-ec2db079bf82'::uuid,'662','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7673477-ef45-46a8-9841-9cb59d0d5fbe'::uuid,'662','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e32aec83-694a-4e94-8dcd-5250f3f13077'::uuid,'662','997',3391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0bc9de2f-f111-41ab-ae7c-5d6c3f161f42'::uuid,'662','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c93b75-1f5d-4008-b3b4-a18d0130f477'::uuid,'662','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90a79244-e9e0-45b8-a2bf-198849e519b7'::uuid,'664','995',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a6666422-eae5-4139-87c7-4e20ab366494'::uuid,'664','996',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d3fa685-3ce9-43a3-a4e5-80f9428ce0ec'::uuid,'664','997',3364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('75207433-0fa4-452c-af96-492479925e41'::uuid,'664','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('048dc895-c7b2-419c-8cbf-d48ff2c968ce'::uuid,'664','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f7998777-8918-4b08-bf71-665a49988452'::uuid,'665','995',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14e163b2-d8a5-4635-80b9-fbf33f6bd198'::uuid,'665','996',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6922d4e-1ad5-4837-8eea-83700fe52d93'::uuid,'665','997',3364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8726ba13-9f00-45d0-9d14-b35d7dd1a81f'::uuid,'665','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eceb2c19-a80e-41b3-a997-4e651f682e09'::uuid,'665','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8e23c12-6c9d-4046-8554-82873e39dfba'::uuid,'666','995',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1c7eb54-c458-4e8a-a0c0-f411bc3c1ccb'::uuid,'666','996',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72c0c75e-cee7-40da-a9f2-ecde538ffdea'::uuid,'666','997',3373,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ee5112fb-93db-45c4-88a1-5c614d8c55e2'::uuid,'666','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d30af589-7c26-4175-9274-92dd9d4bd135'::uuid,'666','999',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aa97d875-2448-4856-825d-f66a4742e6d3'::uuid,'667','995',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90f53d3d-3022-4637-9b94-a2874ba79996'::uuid,'667','996',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b11b5850-23aa-4321-96cb-c86086d3b1a0'::uuid,'667','997',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('574d460d-5b90-464d-b25b-e50bca204a5c'::uuid,'667','998',3035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe205168-41f4-491f-8c24-e008b7f51e27'::uuid,'667','999',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fb0bcdb-6473-4516-b08b-c731d27ef72a'::uuid,'668','995',3535,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0245bc1e-f2ee-4dda-b578-f65c86f50c00'::uuid,'668','996',3535,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('959943bd-f2a1-4dc6-8bc6-1a7cc791a906'::uuid,'668','997',3421,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('69073106-748f-48d2-a77f-6c2ee06aff0a'::uuid,'668','998',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d2580fe-de51-4096-ad75-f7da3b487c57'::uuid,'668','999',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f01799ec-62d8-4d9a-bdc1-6ee03cc5ae17'::uuid,'669','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c69d9564-9aee-43f2-9c01-6bf9d24e01ed'::uuid,'669','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d83c828-7da9-4c79-944c-e954cfb8532c'::uuid,'669','997',3420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d4e1308-7c98-4fd2-846b-8c00f52f6f49'::uuid,'669','998',2835,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54fec7aa-27a5-4403-92c0-bd0cf6a7763e'::uuid,'669','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9c8e9e2-5fdf-4106-96e9-2094aaa502db'::uuid,'670','995',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3de81394-497e-4c14-b383-d99f118feec9'::uuid,'670','996',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e2c44e9-5a26-4727-8b9c-d6cb9fc21387'::uuid,'670','997',3463,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6c85d235-21c5-4ffd-9f0c-769c3e08804f'::uuid,'670','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f20d444c-27c9-4095-bca6-34064ebd56cb'::uuid,'670','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('991b3a57-5878-4944-9f29-c049983d5b35'::uuid,'671','995',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9ec375b4-6e37-499e-b372-8f1f711bde69'::uuid,'671','996',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53efdd59-8c16-47d4-9013-b52f5264b9b2'::uuid,'671','997',3463,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2200909-ffda-4120-b37a-f291f30d464f'::uuid,'671','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c5a0f64-6881-4c32-9950-79ecf9bbd9c4'::uuid,'671','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79803ca5-0d9c-4673-b39d-6470b22cf2c3'::uuid,'672','995',3554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cf9b16b4-0837-4ea9-80bb-83706a76e454'::uuid,'672','996',3554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5472f44c-1594-43e2-9ce2-d65b80dde7b5'::uuid,'672','997',3440,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e913d3d-1ac3-4755-83d4-8eab37458956'::uuid,'672','998',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6b341fb-b35e-4487-8731-b686764f622c'::uuid,'672','999',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9710bab0-f869-4414-b99c-37a3bcd3365d'::uuid,'673','995',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6894b7f7-d298-4bec-84f0-79558241ae82'::uuid,'673','996',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18e4b8f3-6e13-4cd1-8740-45ca5831c208'::uuid,'673','997',3508,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c904fa88-3a9b-4f69-a548-5d5cc0589d56'::uuid,'673','998',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd77e2d8-251a-46c8-b30a-fa491c67d756'::uuid,'673','999',2837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6777bf8-72e5-4af0-9350-6e8e7ba7752a'::uuid,'674','995',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7591d270-f0dc-4e17-af47-fb96778d739d'::uuid,'674','996',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('21f606f3-4300-4140-b7c3-cb5007959f09'::uuid,'674','997',3351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('06732ddb-6b1d-4901-99b5-a024f741703b'::uuid,'674','998',2903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f308c92-a5e4-47fd-9dd1-ef63660e3d80'::uuid,'674','999',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a44dae0d-5890-494a-848e-e296f0f6e786'::uuid,'675','995',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bbdf04d-f1d3-4ed3-9ad4-d0ff8c76bc7d'::uuid,'675','996',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7763bd23-292d-4fd3-a5b8-a037c7df76b2'::uuid,'675','997',3364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d74467b7-3894-46ea-9e73-0e832e1dee21'::uuid,'675','998',2915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aac8cffa-860f-4d1c-8574-32c59d095550'::uuid,'675','999',2693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a54aa94e-10b0-4f4a-be50-9eda3112ab7d'::uuid,'676','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8ccce4a7-f55a-4324-b18b-3022a0e59bc4'::uuid,'676','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77083d2b-7fbb-4459-8007-5bd8dd3956ac'::uuid,'676','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9a4f213-13f7-48cf-b2ab-c08e4054d34f'::uuid,'676','998',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85fcb517-4187-4c4f-9826-47920d486013'::uuid,'676','999',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('31cae2d9-cfe2-427d-b768-a22cb97cf58b'::uuid,'677','995',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cff5bdaf-3cba-47fc-858e-45201d20ffcd'::uuid,'677','996',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce258b4e-f403-40d6-b4e5-0fd1a1ce0210'::uuid,'677','997',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86ab2387-7b3f-4da0-8916-9fbcf85b1bbe'::uuid,'677','998',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e445bae-40e5-4133-ae16-d54ddf7f6925'::uuid,'677','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c55d290c-47ae-4b8e-b7e3-01ca08e2a964'::uuid,'678','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6dfc1f77-2452-43ac-a630-e69932254853'::uuid,'678','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89f659a6-10fe-4393-b285-5977cbcef6f9'::uuid,'678','997',3369,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4515022f-0fe6-4978-ab74-843208dd1ed9'::uuid,'678','998',2911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2770a1c-3619-4b33-b8d6-bac59cce9c66'::uuid,'678','999',2689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c985c0da-f8ed-412b-84f7-08a6c414969f'::uuid,'679','995',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2859e7e-8015-4b54-bf22-38274628035d'::uuid,'679','996',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32174ce5-9692-4228-8910-da0e41444feb'::uuid,'679','997',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fdea4026-ff19-4d37-9db1-d3739a37cb99'::uuid,'679','998',2957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c3c500-49f2-4fc9-90b7-9a0f5b71ef45'::uuid,'679','999',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00889718-aa74-43e1-8f63-30b0104dc994'::uuid,'680','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e1b895a-09a1-493f-8f98-53668599dfef'::uuid,'680','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3db1b6d6-149e-4425-80f2-aba96babf25f'::uuid,'680','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4be244d-fc06-47b4-9658-77bfe43b4907'::uuid,'680','998',2740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('653b6142-8bd7-4032-9b7d-18e00ac57554'::uuid,'680','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d9943eaf-c9e6-4e92-b673-471d6fdd7479'::uuid,'681','995',3327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03026783-06c4-411e-bb7b-e9c41623e36a'::uuid,'681','996',3327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84d2ac60-6f12-48be-ac6e-5667f1d9946b'::uuid,'681','997',3213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1cde235b-df7e-49ee-b470-db4f74f6c1b5'::uuid,'681','998',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99f243d9-9f03-43c2-a7a9-c083b13fd184'::uuid,'681','999',2541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ebedb53-c7ab-44c1-8cea-2c0befc32200'::uuid,'683','995',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a7204de4-0ca0-449a-b581-a391c3105451'::uuid,'683','996',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67694b0b-b268-404b-8106-c2700d046607'::uuid,'683','997',3256,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('edd43b75-d00c-4e2c-bb1b-98d5012e82fe'::uuid,'683','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d52a522-09ad-4792-b50e-54a07c61e36b'::uuid,'683','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2b0b1b17-8ca6-4fff-9a90-60d68d3f6177'::uuid,'684','995',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f674bb0-61cb-43ff-95f4-7570925ff782'::uuid,'684','996',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db0875fd-a992-4453-b977-b0a598a190d4'::uuid,'684','997',3256,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b9e38f32-7f4e-490a-8e97-10094257edeb'::uuid,'684','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d77465f8-b5fd-4459-a113-28e30715fdc7'::uuid,'684','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c3ed0d0-5356-4857-b98e-0c02670c77c5'::uuid,'685','995',3354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('50847682-2bc3-486b-917e-d15dac266ca0'::uuid,'685','996',3354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3f79a7f-ac1e-477d-a3dc-c6e48b6c8357'::uuid,'685','997',3240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8da5081b-c66c-41f2-b086-1a259ae19556'::uuid,'685','998',2792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('96d39bca-14dc-4511-849c-719497a5302d'::uuid,'685','999',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('211d583d-3c7b-48ad-aa43-431d8dd29673'::uuid,'686','995',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683d12f4-6311-4e25-b1be-3be1edd2fe15'::uuid,'686','996',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833a4241-0cf9-4c42-9510-ca4d3a9e8647'::uuid,'686','997',3164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0f3bff0-882d-4cfb-b437-afdca47dcb4b'::uuid,'686','998',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d7cb43f-5160-4fa3-9d48-2d1a91a36eda'::uuid,'686','999',2493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('142a5fda-4211-4f19-8cdb-389d987bd7f8'::uuid,'687','995',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fe50034-780c-4a3e-a20d-1e8a0d835491'::uuid,'687','996',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1b2e9c85-4df4-4039-b184-2e719ae3d873'::uuid,'687','997',3115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('747f6e3d-d5c6-4c19-9fe3-fd50b1eda9af'::uuid,'687','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0984fe2e-f20a-42d9-8aaf-780ae97776af'::uuid,'687','999',2408,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ef0b8b7e-6970-42cb-ae65-7eddb0662b05'::uuid,'688','995',3267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('08390057-cfea-4632-b90f-767d1e32e94d'::uuid,'688','996',3267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('efe7563e-1c33-464d-b7d0-08227f3d7679'::uuid,'688','997',3153,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('50e27e3f-3288-4ebc-9f78-74b4b919d82f'::uuid,'688','998',2705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54055077-ea56-4513-a7e8-0d54a4efe36c'::uuid,'688','999',2482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76c69654-9570-472f-b2db-6ce0db113a41'::uuid,'689','995',3318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf66f3a4-40d9-4f0d-9bcc-ef305adf5eea'::uuid,'689','996',3318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('840fe7b2-4a17-4ac7-84fc-c31121acb79f'::uuid,'689','997',3204,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15dbe8db-43e3-43b2-a2f9-0e14119dfe82'::uuid,'689','998',2756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f14c3c6-3106-4b8b-ab69-6b6e9738863a'::uuid,'689','999',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('800feff7-d812-41e2-9bee-f2eec7264259'::uuid,'690','995',3307,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12dce0ac-7e40-460d-b093-54ef8bcfee39'::uuid,'690','996',3307,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b00f9f4-c7aa-45d3-a303-c3652b7878fc'::uuid,'690','997',3193,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5171ae0-2ebf-4d92-b709-6dba98faaeb2'::uuid,'690','998',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c614c9df-8258-4f08-b3c3-4ffa47ad7241'::uuid,'690','999',2512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce42ddb3-cc8f-42a0-b176-1221e2030324'::uuid,'691','995',3224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('691a7786-16db-4bb9-929b-8fb09fdb9a42'::uuid,'691','996',3224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09b25677-8211-4a80-9de2-f13953653c6c'::uuid,'691','997',3110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6dc55e66-6e1d-47d8-970c-81a497056512'::uuid,'691','998',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6ba8cd4-772b-4204-96b9-8d87cc9a6a50'::uuid,'691','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ce915a9e-088a-4039-b4f4-f03e19bc65b1'::uuid,'692','995',3123,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d778277e-b7bb-40eb-8e5a-063e547f0cca'::uuid,'692','996',3123,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0732b6ab-9142-44cc-ad00-ae5603e58d24'::uuid,'692','997',3009,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43da48ed-7c3c-415b-992b-532c860ac01d'::uuid,'692','998',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f95eb2eb-aca2-4c8a-acfc-66d029e03dcf'::uuid,'692','999',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c535ba5e-bc9f-48a7-af2b-f8e926fb70da'::uuid,'693','995',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65693017-03d2-4bcf-9013-6ea9b5206581'::uuid,'693','996',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d5f862a-c505-4a27-b458-36478fab9c13'::uuid,'693','997',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1ebd89b-c187-42c4-9ab3-96fddd8b0a2d'::uuid,'693','998',2546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e762fadf-2d9f-44f6-8f5c-c94d2219993f'::uuid,'693','999',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88193497-2765-4f54-9fa1-a74912ccb357'::uuid,'700','995',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66015e3b-a8ef-4760-9f88-8dfb47d381b5'::uuid,'700','996',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('de4f3a72-8b67-4937-bbe6-861972477670'::uuid,'700','997',4197,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a0a1bc67-8aa5-404e-afa0-294dde97d513'::uuid,'700','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fa34098-93a4-45f8-abb7-bc35864e8904'::uuid,'700','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89b7db5f-3f4a-42e7-82db-26432fd19409'::uuid,'701','995',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6dbf171-edbd-495e-b569-115bd005da33'::uuid,'701','996',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5e59bb2a-ece3-4cf6-8650-a98792b9e0a3'::uuid,'701','997',4197,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6da21701-37fd-47a4-9e6f-15dd0a64f906'::uuid,'701','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54edea52-fbb9-4edd-8f3f-9720e8e6cde6'::uuid,'701','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4a1103f3-4b0c-4448-a0c4-6e45820bdc17'::uuid,'703','995',4313,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95ea0937-b3f9-4b9f-a2af-aec8523de8b3'::uuid,'703','996',4313,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ef6a583-45e0-43d5-bc0a-f8b2e7f26c4e'::uuid,'703','997',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bafe41c5-e4f9-410e-9602-0c67544d6107'::uuid,'703','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45085ad8-f866-490a-8627-1e135a72542c'::uuid,'703','999',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d7a271d-f991-4fba-b382-aec7176d297d'::uuid,'704','995',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd4029af-193e-4269-bf23-88164ba29cfa'::uuid,'704','996',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('168661e6-d64b-41bf-9fda-5c0925d9553c'::uuid,'704','997',4144,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29b0cfde-5915-4280-8112-1b40726ef57a'::uuid,'704','998',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5730f499-eb35-43cc-b037-b10147ad2b07'::uuid,'704','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2fbb97cd-73bf-453c-b993-140b8ab0453b'::uuid,'705','995',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cbcd53e5-3466-4c57-a1c5-659f2080ab2b'::uuid,'705','996',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e4a536f-8cc4-49ce-a2d3-76c67f062dda'::uuid,'705','997',4117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('407d8bbd-5e81-4bf3-ba5e-dc404ce9de5b'::uuid,'705','998',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c21a1d-cf80-4702-8bbc-e1cd57732a3e'::uuid,'705','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad66f655-19cb-4b78-b68c-9bd8340fad2d'::uuid,'706','995',4229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdd5a728-3c1f-47bb-992b-c8e8ba202e98'::uuid,'706','996',4229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7cef2579-17e9-43ca-a38b-153e02586a37'::uuid,'706','997',4115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12755424-33e4-45ec-b87a-88f6536bdf9f'::uuid,'706','998',3667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f2f7390-6a22-4715-8eac-add689cfd69c'::uuid,'706','999',3409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a22cbe7e-acbe-47db-92b3-d5c8a973afb6'::uuid,'707','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72a2f0da-b12f-47d2-9b41-cda82fce1af0'::uuid,'707','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a6afc28-e046-4ebd-b409-62edd673d160'::uuid,'707','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94fad128-1371-4472-8be3-f53972840835'::uuid,'707','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63250df3-dc03-4a4b-a460-ad6dd4cbd390'::uuid,'707','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21b3b2d7-0597-48d4-8d58-a916882c2213'::uuid,'708','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82f266e3-0cb4-4ec4-831b-1eb97cf41655'::uuid,'708','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3958497-87aa-4172-b14a-26952fa3c4ca'::uuid,'708','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45969e6c-b521-4893-b383-e8d8298d3812'::uuid,'708','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d83b2d9e-c470-4684-a9fa-dad81ad99148'::uuid,'708','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dadce986-ac09-470c-b182-0e622cb8e354'::uuid,'710','995',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('65a86284-4c02-4e5a-b2b6-d0e51e928d79'::uuid,'710','996',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e45d2ffa-6fac-4f1e-968f-d4a81fb4d6a7'::uuid,'710','997',3992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9507806-7ef7-4894-a704-22123578d681'::uuid,'710','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bbb7570-2e4b-4776-8c71-abf28c0a8cbb'::uuid,'710','999',3285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23585968-8f3e-4815-8d66-6c15b32a6751'::uuid,'711','995',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b2edfbc-f757-4987-9437-aa5d72681d94'::uuid,'711','996',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6140a42f-8728-488b-af93-91af2088ebff'::uuid,'711','997',3928,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a11d5b31-f9c4-4137-9309-091077a71abe'::uuid,'711','998',3480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be4d2511-5fb6-4865-b3f9-69dc19b632d2'::uuid,'711','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2e31498-c554-4f1f-aa42-387815e24730'::uuid,'712','995',4076,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70e4e2ba-c2af-4a3d-a18e-64da8a1d37b6'::uuid,'712','996',4076,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7a010cd3-578f-47ba-a9dd-f390206d1cf0'::uuid,'712','997',3962,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6425321-8c65-45ce-a8a7-a98d614dcc60'::uuid,'712','998',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8e21a26-976a-4c66-bf43-be183b8cf48d'::uuid,'712','999',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61072550-1880-4e79-b38d-c69dca93faf4'::uuid,'713','995',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('537ddb94-8eaa-45db-9386-fb1be935956b'::uuid,'713','996',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b6ef079-bf15-40e8-8e9b-1b0c668d947d'::uuid,'713','997',4048,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('59cea103-002f-4870-b297-389e12d72e7d'::uuid,'713','998',3599,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43b722e1-c70b-4dfb-baeb-ca404abec37f'::uuid,'713','999',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0acdc728-e201-4674-82a2-070dcedbacde'::uuid,'714','995',4120,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90e089b6-227f-4c28-8195-c614a5f643d8'::uuid,'714','996',4120,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5a28fdd-e077-4382-8fc9-92e428ebb990'::uuid,'714','997',4006,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7542f59-b9a6-47d1-9b4b-5f4321cd6550'::uuid,'714','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e8b4b8b-40b8-40f6-a478-4da958c71fb9'::uuid,'714','999',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89ad56ce-f999-4221-b74a-cf27eee2146d'::uuid,'716','995',3981,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('08df80f9-58a3-4243-94ff-2297d1e2ae89'::uuid,'716','996',3981,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0f3bd75d-eaf2-4df9-9494-f483befe7a75'::uuid,'716','997',3867,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bff1b2c1-2e59-446a-8258-0bf1e74aa2d5'::uuid,'716','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68c25cea-8787-4e09-a214-23000d196368'::uuid,'716','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c1d44784-c646-4dea-a1ac-b0a0a4ed6207'::uuid,'717','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0281bf2a-a9f7-43f5-b81b-d2bb2515c654'::uuid,'717','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93deaca2-01b3-4cec-91e7-97bc640847e8'::uuid,'717','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ef106d0-a0d4-4223-8433-e893677bd1d7'::uuid,'717','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11bdd44a-7948-4dc3-abdb-a8668b95e6e3'::uuid,'717','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2215da4d-d69e-4b04-9247-0678b61d8e52'::uuid,'718','995',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcd33adb-7063-488c-9d94-4ad4322ec071'::uuid,'718','996',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a85c84bb-15b9-45e9-911e-48a6f01eee9b'::uuid,'718','997',3855,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66a0fc1a-581d-4baf-809e-787dfbaa5eb8'::uuid,'718','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e674b17-887f-489a-a84f-a25e707ac6cf'::uuid,'718','999',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e9e24086-1e6a-49c0-916c-10ebf010b02f'::uuid,'719','995',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3b84ed9-f79e-423e-a69d-909e1a002355'::uuid,'719','996',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('382cab21-de98-4795-a831-2e6ae319c478'::uuid,'719','997',3791,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('146e3a1e-ccff-4116-805a-9a6fb83880b1'::uuid,'719','998',3342,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07033998-7b75-4699-ac0d-b32c87bf9513'::uuid,'719','999',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0ee17f8-0814-4a75-b19d-6378b267a0a8'::uuid,'720','995',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a0249104-15ab-4df8-8f45-8f19cc989a29'::uuid,'720','996',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad7dc8b4-4a20-464f-9fb2-3a8eae4cfd6f'::uuid,'720','997',3771,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('05fbc079-d809-4618-8346-537e1e2b9350'::uuid,'720','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52a8c415-4e3c-4626-b663-740d5b4d3508'::uuid,'720','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c8e26f42-3910-4bc5-84ae-f861422bf302'::uuid,'721','995',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba24fe89-aa60-4f10-aa31-94b2ceccc3ae'::uuid,'721','996',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('635c1937-84cb-4519-9b09-d914a5973737'::uuid,'721','997',3771,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14f429af-e365-400e-b46b-91cb72bac6cb'::uuid,'721','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91e2484d-f474-47e9-b3e0-f95aab65aaf4'::uuid,'721','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6df207cd-d655-41a5-ac77-ec703432122e'::uuid,'722','995',3890,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4b46b77c-b36a-4294-862a-793d4a3d7096'::uuid,'722','996',3890,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3502ed0d-fc14-469f-9a81-62926bc2b4aa'::uuid,'722','997',3776,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d4fd1c83-9c8f-44fd-8636-0b260a1c4589'::uuid,'722','998',3327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3458017e-16f2-4132-b8ec-1acb88a66627'::uuid,'722','999',3105,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ac1f5eeb-11a9-45d2-9706-4089e56cab85'::uuid,'723','995',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53de671a-8ef3-42d9-91f3-5aaf39f61439'::uuid,'723','996',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('575bb6f7-9c59-4944-80e9-c9c7b17a8b43'::uuid,'723','997',3835,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('243f3007-4b11-4ad9-9013-e846445d47ce'::uuid,'723','998',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba0e7443-502f-4690-b407-b12043b717f7'::uuid,'723','999',3164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36fa9d09-44a2-4015-8e6d-80adbf34bb67'::uuid,'724','995',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb122669-b374-4294-a643-94400598d2dd'::uuid,'724','996',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61b82b0c-9f6b-45c2-a1c1-0a2be1e3af21'::uuid,'724','997',3751,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e426c54-b960-45c6-a7f4-80770e503b05'::uuid,'724','998',3303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be86232a-a3e3-4d3a-86ca-13bf295566ad'::uuid,'724','999',3080,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9781138f-ab7b-4364-b604-2a18aa143d52'::uuid,'725','995',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e813686-c4b6-4d5f-a9d5-a598fa15992d'::uuid,'725','996',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('228fedd3-c0b1-4bb8-b3b6-3dadf308c60f'::uuid,'725','997',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ac5639e-d30e-4953-97f1-b56c45de43e8'::uuid,'725','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e058c9cd-aafe-4cd8-b244-fa58c3c6ee95'::uuid,'725','999',3043,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56cd9e03-efe3-4941-884a-74b60f18b3a3'::uuid,'726','995',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfc4f1f3-550a-4e87-ad9f-33f851933f04'::uuid,'726','996',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7089f8f5-7878-4cbc-aa5b-ed390e41bf7e'::uuid,'726','997',3656,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfa16fc2-d4e8-427d-8a87-9b71310368ad'::uuid,'726','998',3207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3e75e1f-f88f-42a8-8836-6b1ebf78a1a4'::uuid,'726','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c1a5af9c-c6f2-4348-989e-6ab860b4ee64'::uuid,'727','995',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5124fe80-e839-4020-b853-16435a3f91bb'::uuid,'727','996',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3c927ff-73ff-425a-abba-bfcebf06edd1'::uuid,'727','997',3623,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3b51211-85f6-4aeb-b74d-4a0a0e7f24bb'::uuid,'727','998',3175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2a8a643-e0f1-4b78-b23f-9b778867332e'::uuid,'727','999',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77e4dbda-b42b-4ebd-bd4d-7e51cd1c7c53'::uuid,'728','995',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ae35d45-f18b-4f1f-b11e-20c3a4ca4449'::uuid,'728','996',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e02c1857-5449-482d-9bf7-5be6d06b9257'::uuid,'728','997',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cac20f0-d294-4f10-bb3f-7390ac5e966d'::uuid,'728','998',3251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54095aad-6822-411c-8b8a-22c6de7d8cb3'::uuid,'728','999',3029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3c1b60cc-5f6f-46c9-820b-9fa2836a300b'::uuid,'729','995',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df8707b0-4c71-41ac-a98e-7c4f104ab588'::uuid,'729','996',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec19f8fa-7882-478e-b9c5-672bbaf56a28'::uuid,'729','997',3833,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79db6a0b-f041-4fb4-9c1b-17a7bb645df8'::uuid,'729','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51f17190-4f04-4073-b732-b5fd12400162'::uuid,'729','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a2402b5-b856-4d37-b567-5cac2e91b73c'::uuid,'730','995',3728,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2855985d-8f23-446a-ac70-08bfefe1274c'::uuid,'730','996',3728,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00457364-f858-4261-ba67-05b2853ee242'::uuid,'730','997',3614,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84042ce4-9935-4171-b81a-a466995ba8d4'::uuid,'730','998',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3816b9e-ea7c-4129-b2e2-cadb591ea9ea'::uuid,'730','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bdf292a9-8201-41fe-ad50-38f416bdcdf4'::uuid,'731','995',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2c9083b-e40e-4759-b16a-050999ed7c9d'::uuid,'731','996',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1b72b988-451c-43f9-bc8c-c1e55524e25e'::uuid,'731','997',3598,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10706464-443b-44c0-95ca-9397e36090ce'::uuid,'731','998',3149,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9eb8623-3eda-47b9-a495-2b5c7fa33a0b'::uuid,'731','999',2927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6ea9b02-f88c-49e2-9a04-cc0b3fc07baf'::uuid,'733','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('370d3a1a-3c96-44c0-8b6b-b36f191a5621'::uuid,'733','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7e4f21f-4db0-4c6a-95f9-ccc0d7e034c7'::uuid,'733','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56048c62-b4d9-42e6-8dc4-47218b1bfad7'::uuid,'733','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('213e8a6a-a2ae-4391-9c2e-ec0a123f5281'::uuid,'733','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('051c5a45-6e30-45e9-9fb6-e087374eeb2f'::uuid,'734','995',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a71ccff1-13d5-439f-94f0-b89749805a78'::uuid,'734','996',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33dd5b04-90d3-4083-b8ad-cab962cff067'::uuid,'734','997',3830,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a558a4a3-ac8c-4039-a2d4-7fda24039114'::uuid,'734','998',3246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('618ac59a-d227-484c-8313-82eb93b01868'::uuid,'734','999',3023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdaa2d61-2cf2-4e14-abb5-248e1e13f99e'::uuid,'735','995',3740,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41cefa13-300d-41e1-8bf7-395f4681a851'::uuid,'735','996',3740,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e16c901c-58fd-4d59-b755-8db1f94580ea'::uuid,'735','997',3626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9bff27a1-abf4-4f7e-805b-2989b8a33755'::uuid,'735','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aae6242-dfb1-49f1-bd1a-18ec5348c981'::uuid,'735','999',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b13aa411-6f1b-46ce-a930-917ad224dc9c'::uuid,'736','995',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92f1f99f-6528-44f9-a043-57617c467b07'::uuid,'736','996',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd363452-636d-45cd-ba47-6231109a7bca'::uuid,'736','997',3544,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d6dcd39a-1abd-47cd-adf2-e7343b3f4daf'::uuid,'736','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b179f06-47b3-4bbf-b418-e7eab14bc7cd'::uuid,'736','999',2873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5c69656-6d1d-4d88-a0bf-b0b671d000d6'::uuid,'737','995',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afe0cb0e-cd7b-4dd6-82ef-9d3057c2f086'::uuid,'737','996',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cec8e65-b10b-4cf6-9641-56166529cf66'::uuid,'737','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0eeebcfd-9f41-477a-9510-e3d2bafc2e85'::uuid,'737','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a24b5cd4-4243-4460-a471-01879b341b52'::uuid,'737','999',2874,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('adab8506-a23b-4acf-b8fd-f91359fdb755'::uuid,'738','995',3599,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e127f93-6a88-47ee-a271-814505ac61bc'::uuid,'738','996',3599,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5909bd5d-b5f3-4bcc-81b2-49da7eebc8ca'::uuid,'738','997',3485,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbe6e422-9b1e-4c7f-82a7-f4774d5c6894'::uuid,'738','998',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4428f34-50e8-4ee4-800c-97ef26543bcc'::uuid,'738','999',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0267434e-a055-4f66-b47c-6fc6c902fad5'::uuid,'739','995',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56b9ad03-7650-42f2-8c29-4f411a6a1066'::uuid,'739','996',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e1a9dcb-a58f-482f-b449-66680a3df527'::uuid,'739','997',3447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1a760300-54b9-4e43-8b86-b80f676c5402'::uuid,'739','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16c0cb97-b8c0-46b9-9a99-d71dd9a02663'::uuid,'739','999',2765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c6a81126-d91d-453c-b0f9-44b34f4a12cf'::uuid,'740','995',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1623e39f-52ac-45c3-9ce5-fbc52d05b8bc'::uuid,'740','996',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c7035e5-0cd3-4223-ab30-7989df2a5b3f'::uuid,'740','997',3576,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a539d535-1e6c-4cb1-9659-752795e0b674'::uuid,'740','998',3127,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('04ef9894-f0c9-455f-85de-f9bc33298bde'::uuid,'740','999',2905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31ac01dd-e2a5-431f-894a-f0b953a65cd0'::uuid,'741','995',3708,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8a8acdf-1115-468a-b80a-8da6d89b9177'::uuid,'741','996',3708,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0342f83d-6bd2-4c5e-ab11-98a35cde15ef'::uuid,'741','997',3594,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f3433ed7-a0e4-4527-b619-6e1571ceeccb'::uuid,'741','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8cc16d8-0b67-4947-818b-5b38e5983e41'::uuid,'741','999',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9cf2e445-f872-424b-8d55-dd557699fed4'::uuid,'743','995',3691,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7713cc01-1270-4e22-abc2-80f8ce8324af'::uuid,'743','996',3691,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f9162331-fa06-4af3-b05a-f5343ccb48d1'::uuid,'743','997',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d9e44ca-06de-42ab-918b-6994d982b5e3'::uuid,'743','998',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aaa4b2e6-bce7-4733-8fb4-1108bf2dec3b'::uuid,'743','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb132e5b-cce0-4cfa-accb-223180037e18'::uuid,'744','995',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97c463ee-46e9-4934-aea7-5629422b93da'::uuid,'744','996',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ece1f18-cd31-4fa6-b4ba-a47080ad5a03'::uuid,'744','997',3640,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c16ea93a-b2e4-473c-af26-980e504108bf'::uuid,'744','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c71d0081-6142-42fa-b71f-d99f33ec3510'::uuid,'744','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('55f47dec-8613-44b3-8cf1-98bbd0be5903'::uuid,'745','995',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86eb7418-abaa-46e9-9e95-75eb88329b0c'::uuid,'745','996',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45693e64-fbf2-423f-88aa-a4df8c6cbfa2'::uuid,'745','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ff7fbdb-6f17-4b37-b684-b5ee1f3b5068'::uuid,'745','998',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2375acc-4bbb-4372-a4c2-37dcb3695af1'::uuid,'745','999',3086,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f0543f4-ce57-453e-b273-fe190a503435'::uuid,'746','995',3634,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dad3b460-dbf2-445e-84ba-cc67dd172780'::uuid,'746','996',3634,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9af42d53-6899-4d90-90d7-30cb8308cfdd'::uuid,'746','997',3520,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9561186e-2378-47b3-94c5-900a2ef3330a'::uuid,'746','998',3071,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bae5b9e-d5ed-4c86-9092-a89c4ced986f'::uuid,'746','999',2814,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3cd1363f-49ac-4105-bde3-f7f0f13e71a5'::uuid,'747','995',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7300e595-eb53-4d39-8453-13d18742eb03'::uuid,'747','996',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fa5b6e1-3b62-437c-a2b5-a4fc051443f5'::uuid,'747','997',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('939e7de0-b646-4da6-a88d-46e247befaad'::uuid,'747','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1896cc1-4d51-47b3-a84c-a37d616c0cf0'::uuid,'747','999',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9159533c-c947-453b-ac23-5343be6ce9f7'::uuid,'748','995',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c16c88f1-0893-4b0a-912f-0ecd522d6f36'::uuid,'748','996',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32178e19-27e7-4888-b761-987bd960dbdd'::uuid,'748','997',3639,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff308d0d-79fb-4006-a23b-ccfd66a071c7'::uuid,'748','998',3191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13712051-7a49-4b04-aa95-9681159528aa'::uuid,'748','999',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('12292275-df8c-468b-8528-099217ea5878'::uuid,'749','995',3822,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2d5436c9-a95f-4086-8ffc-7978376a81e1'::uuid,'749','996',3822,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea15f45a-aba8-4c68-a6dd-5d89f1a67874'::uuid,'749','997',3708,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('910d8d5a-223c-44ca-b1bb-53809836c070'::uuid,'749','998',3260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1422f61-b2f3-4ed8-af2a-3a23d462b329'::uuid,'749','999',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa743ba0-cd8e-4f54-8e78-2df1434d938d'::uuid,'750','995',3907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6898092-a0d5-45fc-9cea-ebbebe5255b7'::uuid,'750','996',3907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('392f3502-4791-40b0-9750-68b0d4c61833'::uuid,'750','997',3793,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f60a0a2-755b-4647-817b-1840092fbd39'::uuid,'750','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3f07e3b-550c-4566-a8b0-1af8ddb6351b'::uuid,'750','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('544eb236-ddd5-4827-bf10-fe5ba007c520'::uuid,'751','995',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d25486e-7862-4a3a-887a-79159706fd94'::uuid,'751','996',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c03654bd-50e0-4c37-ab36-69b07a810825'::uuid,'751','997',3836,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e722204e-1529-4527-9d01-720d8879959e'::uuid,'751','998',3387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c423c86-f778-457f-bcb1-00f2c2e25e6e'::uuid,'751','999',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efcf4216-aee5-4ebd-a01c-9859876d98fe'::uuid,'752','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('200fbb87-ab82-4aba-a691-da7d6f64a1b7'::uuid,'752','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91fb2392-7674-4218-ae2c-0727a721e3e3'::uuid,'752','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('974f049c-2b4a-4bb7-8004-559354dca7bb'::uuid,'752','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('968cbf43-7ba9-406b-91db-aabe37e47479'::uuid,'752','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f401d56d-1a89-4a21-9535-2dee5fb7365c'::uuid,'753','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da0a54e2-b141-4691-86f7-fc9518846103'::uuid,'753','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd7be9c3-b28a-423a-96f1-fa357cd9b6cd'::uuid,'753','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01326b0b-b9ee-41ea-a8ad-7d92be2d241a'::uuid,'753','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16d27e40-e4f5-4e26-a1d0-b01c448f734d'::uuid,'753','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4e7a1c1-fbc2-471c-85a4-8e8cbbf4a40f'::uuid,'754','995',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc9c01e4-bae9-4b34-832c-b008f0ddb165'::uuid,'754','996',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f573ed76-1191-4ac6-bc39-2497b4428ef8'::uuid,'754','997',3945,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fbd7d290-4ede-4185-8a54-4af89595705d'::uuid,'754','998',3360,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b804d08e-654a-4de2-b960-16e4f7b02df2'::uuid,'754','999',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cad19077-555a-47fb-a346-2b87db6bf457'::uuid,'755','995',3977,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f6773fe-a02c-47f1-9458-b2d9434cb29c'::uuid,'755','996',3977,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('16e8c020-a88b-4a91-a8bb-1d3fc3b72bbd'::uuid,'755','997',3863,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41cd7635-bef7-46db-a960-504a8a8dde6c'::uuid,'755','998',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a500329-b353-4c1f-a140-fc6cc32af0f0'::uuid,'755','999',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b48e999b-48ba-4bba-879e-6299e7f2fb79'::uuid,'756','995',4005,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1837246e-ea93-4779-95b0-7640562a4616'::uuid,'756','996',4005,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('21fb32d4-e52d-4818-aeb2-b8fb1b096169'::uuid,'756','997',3891,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4ddfffe4-d7e4-440b-acd5-2a3cf02fce07'::uuid,'756','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d094cef2-640a-4727-a7ad-aac7cbe9dcf3'::uuid,'756','999',3220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b7211207-a742-4f70-ac16-7d6c5a9b1621'::uuid,'757','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c66c398-686e-453e-bcf9-fe8e31b2f3ba'::uuid,'757','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8963e3d3-e1b4-44b3-abb1-a3e10f907095'::uuid,'757','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e76ea27-315d-4979-8d82-3f36148de84f'::uuid,'757','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d9966b6-db5c-484c-9621-c2a2a4ef7ac9'::uuid,'757','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0dd1403a-2f88-411c-bdb4-89130fcac152'::uuid,'758','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9468d760-2145-4a66-8999-8b03ba6be44d'::uuid,'758','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f66f631b-34e9-42be-a6ea-1ed2b82fbaf3'::uuid,'758','997',3944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3630b5f6-6148-4cef-9ff9-0f700f16383a'::uuid,'758','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('759abcf2-36ab-4ee1-bc24-d930b5702ba8'::uuid,'758','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('baeab8c9-3f4d-46a8-996e-3e54baef0630'::uuid,'759','995',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('083ed095-b728-4a58-ae9a-a678fbda546d'::uuid,'759','996',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('50dfd293-9fcc-48ff-9b90-28fcfc8873b3'::uuid,'759','997',3975,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2f33ce9-a75c-4f52-8d6a-b0eacdc45328'::uuid,'759','998',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('160d0834-8138-4083-a5c4-b6fac0ae8119'::uuid,'759','999',3268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95b3bbbf-8b85-4fcb-96f6-e4518eb955b5'::uuid,'760','995',3923,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2883f10-2188-4c02-8e71-ebcdfba4ba31'::uuid,'760','996',3923,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a82d53f8-54f1-458d-9ff3-e3d5eca3f7e5'::uuid,'760','997',3809,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c24190f-7d6f-44d2-9262-400174e67937'::uuid,'760','998',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13c4971a-6212-4877-9a9c-899429bab619'::uuid,'760','999',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('93af5b39-b969-407c-9a7e-713f676e5d48'::uuid,'761','995',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('292fc7d8-1af8-483d-9ed5-48fd47e3d52b'::uuid,'761','996',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63c07925-ac6f-48e1-a2e1-705c9a51856d'::uuid,'761','997',3796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7542cfb3-5c45-4154-b5b6-d02d2ee541af'::uuid,'761','998',3348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('922e2988-0561-4205-bee6-28152a136897'::uuid,'761','999',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683f5a05-79e5-44a6-9c9e-7037d43bcf12'::uuid,'762','995',3862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb2d5174-537a-478f-b368-416637da6c4c'::uuid,'762','996',3862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd3e8167-cf52-4387-a876-ed2f3529bd30'::uuid,'762','997',3748,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a3ce0a6-b2e2-4d58-8347-652a89e5bb84'::uuid,'762','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc17424f-3ebb-46f7-a522-59f18d396b8b'::uuid,'762','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b310d30d-8cf6-434c-8b04-2fa49cff6520'::uuid,'763','995',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6700c72-9fa7-4d50-b7db-ce140f9dd247'::uuid,'763','996',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b100324-4de2-4fe6-933e-aa4ca15d5065'::uuid,'763','997',3849,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('764d91e2-8643-4b35-bd48-76cf5f110015'::uuid,'763','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5063c60e-e508-4590-8b68-8acadeea2f56'::uuid,'763','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20af318e-e28d-4b8a-a40c-ab337c0556c6'::uuid,'764','995',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be0347b3-58d5-485f-a42d-07dc58d6eea9'::uuid,'764','996',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95a833af-916d-4c08-bc5a-506e4144c0d5'::uuid,'764','997',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6ad669a-7fc8-42a5-b041-b72accea5fbd'::uuid,'764','998',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be16d5da-dbb3-428a-b592-64621097a869'::uuid,'764','999',3121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2346e1b7-a5f0-4b32-acac-a1e1b2f7bed0'::uuid,'765','995',4032,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('886e5b36-300f-4c31-baaf-5418689c3f61'::uuid,'765','996',4032,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09600bba-6554-49ee-9849-21476bf81213'::uuid,'765','997',3918,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('182b6a8f-0bb7-4fce-b738-00b45f0132fd'::uuid,'765','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da448aa9-1cd1-4969-b763-56e57c680b12'::uuid,'765','999',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ff44939-63e6-4b87-953b-de47998738a7'::uuid,'766','995',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cba1f7b0-38a9-4c06-8928-e7b714314049'::uuid,'766','996',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8d2ba4c7-1660-4149-87be-073bfb5a82ef'::uuid,'766','997',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('36eafc32-cd17-467d-802b-8b680dbe32fd'::uuid,'766','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('799f50af-a252-440f-8c97-9b7c7b06a660'::uuid,'766','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d51feaf0-8672-46ec-a24a-1726b20c2d4e'::uuid,'767','995',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78db9083-a0c4-406b-9e5b-487b57f83124'::uuid,'767','996',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74101bc6-4a9c-4bf1-84a6-aca2f131c77f'::uuid,'767','997',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c9231b56-277a-43f1-9073-0eab5e5f78e0'::uuid,'767','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fcad0a9-a9c2-4199-8140-cf5b01cd3f72'::uuid,'767','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fe2c8de-4a52-4329-8d85-7d3152b56983'::uuid,'768','995',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c78881f-dad8-4a72-8c02-138cb2533cb1'::uuid,'768','996',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d31f9d-fce3-4b85-9481-fe37e5349664'::uuid,'768','997',4012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58b21591-705f-47ea-8114-c8a9e6dd763c'::uuid,'768','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81cba574-5b67-4223-9705-356e38375f2c'::uuid,'768','999',3194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0407a9fd-b2b0-48f1-942a-444b3cf28ca6'::uuid,'769','995',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6098941b-0e60-4448-a068-8eb70c904b7d'::uuid,'769','996',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396a42c5-0350-4c88-af78-b339c869027f'::uuid,'769','997',3956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b569e27-a54a-471b-8459-86e6b6ec010d'::uuid,'769','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('492cb192-389b-4bc6-9d42-f9720577323f'::uuid,'769','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df57c217-cf89-4c31-8af9-b959c1c4f10e'::uuid,'770','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2835c53c-698f-4ca4-b5eb-6b3e55e9a2b4'::uuid,'770','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('021050cd-a3ef-4ed0-9deb-c580d7f3ab67'::uuid,'770','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6a64f1d2-7090-48b4-80af-684fce10e22c'::uuid,'770','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('793c0303-3195-4c7d-a575-19f8bcf95b4b'::uuid,'770','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('de42bcc0-cf2e-43ae-adc2-fccc34944435'::uuid,'771','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f305afb3-7f70-44ad-97f5-b51cda70b889'::uuid,'771','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9fe75b75-2ebf-487f-bc6c-eb9c187c02a9'::uuid,'771','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('739bb0be-8fe4-447d-b89f-4e175889ef7a'::uuid,'771','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17493edc-56b4-4016-a556-5af0bd715b8e'::uuid,'771','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba8acaf3-9c7f-4487-8fc4-57f235bf111f'::uuid,'772','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('496d56a6-e10f-45cc-acf7-65960f7a5fad'::uuid,'772','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbd6ba53-19a3-44f4-81c6-2f5873613dea'::uuid,'772','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72a05ea9-6d8c-4595-9832-03e3d8379b81'::uuid,'772','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a02ed40-127b-4d05-8ac8-961a0d7e5901'::uuid,'772','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('03d0169b-883d-44ef-907f-f542e97eb7e9'::uuid,'773','995',4134,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('62c979aa-e455-46bc-9ce7-4947e6b8891d'::uuid,'773','996',4134,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('460e2224-6e20-45e3-bb72-46e9aae56139'::uuid,'773','997',4020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8b772421-a8be-4e31-bdd3-e527f9f9ca16'::uuid,'773','998',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5791c1e-11bd-40f0-b2f8-0464272a1fe0'::uuid,'773','999',3314,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('970cc711-43b5-4606-8330-5d742811afea'::uuid,'774','995',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27083004-d71f-4e75-9765-7667533c30cd'::uuid,'774','996',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8613d847-c804-48c3-a733-263db5312856'::uuid,'774','997',4059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('848a6ec0-5e4e-4664-8517-0fc3b3029261'::uuid,'774','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df2c9835-9220-47f8-ac23-1d91efbce01c'::uuid,'774','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2eb2fba0-4481-4746-aa79-df17a9606fa4'::uuid,'775','995',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f96185-04f9-41ce-886d-64964710af6f'::uuid,'775','996',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a285a62e-d874-4862-ab4f-93c4580db3b5'::uuid,'775','997',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('058a3af7-3745-4407-a58b-71ddf684800d'::uuid,'775','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1cb01c5-f15f-480e-8b51-c3441e6fbedd'::uuid,'775','999',3398,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a088f7e0-e729-442b-871b-fbcaf2d4d7dd'::uuid,'776','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98ae01ad-c47a-42fe-847c-7762f8b8bb77'::uuid,'776','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c46387f1-57cc-441c-a827-552440f62719'::uuid,'776','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('843315e4-115d-42da-b257-375c4f5d4c14'::uuid,'776','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54b546b8-efaf-4199-8b2d-c90cedd15b1a'::uuid,'776','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02eca49c-4c68-437c-b23d-5d3974769c9e'::uuid,'777','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33d44b9f-1829-40df-9b72-194f6143bbe7'::uuid,'777','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d35d116-2b74-4a78-8096-4bb16b8fd5bd'::uuid,'777','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73886e26-3505-4833-aaba-e005efa1cf68'::uuid,'777','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cf86ab3-5ddd-47c7-93c8-a4812cb1d65c'::uuid,'777','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c612cf97-c61e-40e8-be41-90884141c31f'::uuid,'778','995',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ffbcead-bee9-4838-b385-4fca44c78d44'::uuid,'778','996',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('973ee4ce-bb55-4a19-aaa7-fe612c0babd6'::uuid,'778','997',4099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54d568c2-3475-44b8-b588-c518410ea58d'::uuid,'778','998',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef8190e9-66d3-41d3-be57-c5a6fab8c234'::uuid,'778','999',3292,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6168b880-eaf5-4d8e-93e1-7e73957446cb'::uuid,'779','995',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4388a0e4-a625-4338-bc6e-d6c0fcb034d7'::uuid,'779','996',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e5efc3b-adb6-4df4-873b-9782007b30df'::uuid,'779','997',4097,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5cec0b7-47bb-4e63-90e9-7ee62ef43342'::uuid,'779','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ef7f537-962d-48f6-af3c-d87aab7d1c42'::uuid,'779','999',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc7f6064-9ab7-491f-951f-92b95308e181'::uuid,'780','995',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e93eb9d0-5b26-4398-9994-d838286e60fe'::uuid,'780','996',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0c651ff-c292-4caa-93ae-46e531ed8af6'::uuid,'780','997',4046,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c8d59d6-c64a-42b3-aaa8-ef4e7acbd76a'::uuid,'780','998',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58deb89b-6ba4-436f-a3b8-3310eda2feba'::uuid,'780','999',3365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('79aa9c2c-7f14-48ba-9eef-ee79758d7605'::uuid,'781','995',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7dba16e7-bf56-4183-b533-fa1f8980c66a'::uuid,'781','996',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('647fb13a-6a3e-4420-974a-2995ec0fc94b'::uuid,'781','997',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2bfade10-9a6d-43f6-a084-bbe6b091c33c'::uuid,'781','998',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59ec7892-adb9-4e91-b52f-6303240658b2'::uuid,'781','999',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20d59d96-41e2-433a-890e-82a3427a0d0f'::uuid,'782','995',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eac61002-57d3-4c6a-aea9-be430e09ac7f'::uuid,'782','996',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f3d6144-6844-4566-822b-3c22c01f5c1c'::uuid,'782','997',4011,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9468666d-76da-4b97-81b3-2bb320f32b85'::uuid,'782','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7930bbd1-4262-4c11-b061-79108c8ee2c7'::uuid,'782','999',3294,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7c766fea-5acd-4105-8bf7-04d31f5c7929'::uuid,'783','995',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48360a60-26bc-4c4d-872a-46437d116887'::uuid,'783','996',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f7209b4-bcee-4251-a5b3-3522e3b0021f'::uuid,'783','997',4272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9601125-9d8b-4990-8e2e-523f6ed039f7'::uuid,'783','998',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40f4e44b-daab-4ff2-a6bc-d710873bb322'::uuid,'783','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65075a29-9ab2-4c81-b4b2-112ead7b8613'::uuid,'784','995',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b5f3c6b-d2ae-4b38-913e-2b2f3c65fed1'::uuid,'784','996',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e38a6492-4552-4255-bff8-988f3a089beb'::uuid,'784','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a39fb2e7-b90a-42e4-8cbb-2fba8dd42c07'::uuid,'784','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2392327a-e872-423e-bc2d-5e31ca8e3e3c'::uuid,'784','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dd3f4c65-d6a2-4376-8665-6b9d01dc520d'::uuid,'785','995',4362,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f65a124e-6351-46f6-bde2-7ccf3994b05b'::uuid,'785','996',4362,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('afa049b2-defc-435e-93d3-2a75ba94185f'::uuid,'785','997',4248,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e734cff5-3ef9-49a4-b5c6-91f589ef4639'::uuid,'785','998',3774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f55f7c4c-b9d2-4fd6-a074-0f3ab1b923b3'::uuid,'785','999',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0b0acb8-794a-4cc7-a75c-12f5818483d6'::uuid,'786','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dedab282-0320-4998-b1e4-453590876f87'::uuid,'786','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('711d0b3d-32a1-4845-8fe9-bf1899f090fc'::uuid,'786','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1301ce15-d5b3-42ef-b50c-6e67b45e8914'::uuid,'786','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94d438e7-84d6-46d3-aa34-0bf51f9294c5'::uuid,'786','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('debbf784-89e5-4189-9a10-dd7153035646'::uuid,'787','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f8cafab-0ee2-4fca-a4a6-3364a3316ee4'::uuid,'787','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c13816dd-1949-41ef-8934-fe8b6f0c96b6'::uuid,'787','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be9783ac-4a01-4a1b-8d3a-9cdddd9c39e8'::uuid,'787','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d80f3c35-5c1e-4926-9c3b-135c0a03ab7e'::uuid,'787','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1817dc6e-9b2a-4c1f-be39-6fdbe0821892'::uuid,'788','995',4110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9939939-8bf6-4043-b5f6-1ff9afd0dcf9'::uuid,'788','996',4110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9b8bd323-fc25-4c07-be92-46612645dfe1'::uuid,'788','997',3996,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('94fdfd63-53fd-470c-945e-602cd0463d50'::uuid,'788','998',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f39c91bc-df64-4eff-b5bf-3c2a9feafaab'::uuid,'788','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb632ff3-2e1b-48f2-b41a-d0796fa8dcc1'::uuid,'789','995',4137,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c71a406-f6d3-46a9-9e91-d0363cf79e42'::uuid,'789','996',4137,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d0a066ef-fef6-4d24-92ad-a8f27bea657e'::uuid,'789','997',4023,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aea0aae9-0644-4d82-b473-188fc8505b19'::uuid,'789','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('341a954e-985a-4225-946b-1f6ef0ddd2bf'::uuid,'789','999',3351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80aeef72-093b-4a6f-87b4-7bc371ae45cd'::uuid,'790','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e64f15d-1e23-4d4b-aafa-6dd695c69160'::uuid,'790','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45ef0651-c617-4687-b4f4-5166fe80f222'::uuid,'790','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d922574-fdcc-4570-8007-0047a706716e'::uuid,'790','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a7ea09b-a20e-4504-a578-7189c892acd3'::uuid,'790','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3262ae9b-1a6e-433b-8b2d-92d3eab24f91'::uuid,'791','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99bbfea1-5038-4b9f-9853-fd8bf3ca81d0'::uuid,'791','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18c70f17-e71c-4ab4-9b38-e4f611bdf12c'::uuid,'791','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40cf827d-5cdc-433b-9abd-78c9be336311'::uuid,'791','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65d9e55d-278d-4e0f-a36e-7de409084acc'::uuid,'791','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c89ad1a2-128d-44b8-801c-ba59a2ad15be'::uuid,'792','995',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4eca1f5-6318-482a-9bd5-ea4253b7c0b6'::uuid,'792','996',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13a4cb27-8b93-45f2-bf7c-65491803cc52'::uuid,'792','997',3633,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34c5b2dc-9339-4380-8d72-400172179263'::uuid,'792','998',3174,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ee8a918-51f9-4c39-9b5e-a8e717541edb'::uuid,'792','999',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('103c2dae-2573-4cf0-a9b2-c1d207f6b35b'::uuid,'793','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca80a5c4-74c9-4a9d-a209-85815a35c9ba'::uuid,'793','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b4cd4fc-eb03-4fb0-bce9-0267bd6cf8a9'::uuid,'793','997',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a23be17-9112-4143-8d60-aa31b96206fe'::uuid,'793','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ac078c0-2221-4a62-855d-82d55358eabd'::uuid,'793','999',2959,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e43f69c-42ea-4f88-8d6f-6397905a8dc1'::uuid,'794','995',3739,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f3fbb8f2-c084-4f50-bd67-d8bf113b2679'::uuid,'794','996',3739,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('19dcabad-21bd-4c8b-a7ae-efb3e692766e'::uuid,'794','997',3625,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5ce3e995-03ca-463b-8499-fa715c1d5757'::uuid,'794','998',3166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('626bd578-2191-4b82-abb2-1a5d9e798e8c'::uuid,'794','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ed7c53ee-f46b-49ed-befa-a8fca03e1a74'::uuid,'795','995',3850,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a4fed6bc-4466-4f42-a6ed-4bea3666c605'::uuid,'795','996',3850,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e1aa2a64-58c6-4b3b-8533-ff8b6e255ad7'::uuid,'795','997',3736,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bb6ecda-8830-432b-87c9-2a2ec8fcac29'::uuid,'795','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('173dbc5a-e580-49a1-9c66-27233383b73e'::uuid,'795','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f61e8ea3-1b8f-4e0c-98ba-ce36c2080236'::uuid,'796','995',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd8849ae-eb2e-4ef2-890e-f9891027897c'::uuid,'796','996',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a31637fb-a7fc-450e-86a3-08b6c91db07f'::uuid,'796','997',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8586b3bb-a16c-4eeb-9219-f3e32f787152'::uuid,'796','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d851c79-e243-478a-aba5-a993b146838d'::uuid,'796','999',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fa239f2c-3f97-41e2-a1d3-47c922c2ef78'::uuid,'797','995',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39cfb9c2-47a5-4b31-b318-4bd803fccb53'::uuid,'797','996',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9cfc85a0-bc85-44b0-a273-715d9bb3cafd'::uuid,'797','997',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54e58813-9822-47c2-9686-001b5f44cacf'::uuid,'797','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('503fd9cf-f7ab-4541-a4a8-29f1ecea2f1b'::uuid,'797','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aafe1f99-0981-410e-be20-7f2e277180f6'::uuid,'798','995',3932,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c63a568a-0666-4a09-8779-b43c17007d6c'::uuid,'798','996',3932,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6eb7df78-ad07-44d6-9de8-a5a26e40325d'::uuid,'798','997',3818,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('81d92e1a-ae7d-450c-9bbc-0bc72eaed820'::uuid,'798','998',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('638fa33f-c064-432c-b3ce-091583c16114'::uuid,'798','999',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d6666445-7913-4d39-92b0-5b4dda237f7c'::uuid,'799','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19a97b26-9e55-42be-991a-a6ffac1a5849'::uuid,'799','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f32712da-a79e-446a-b458-93f1778561ed'::uuid,'799','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fec4602f-8165-4141-a444-b130f732b1d1'::uuid,'799','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9fa853da-4d9b-43b7-b459-da13a4cca449'::uuid,'799','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bf20743-ad4f-45f1-b728-01a0ae51f6be'::uuid,'800','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5598f827-84c9-4056-bd50-a488e180e752'::uuid,'800','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9951e42c-96dc-4b07-99f9-ff45140668e3'::uuid,'800','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5712d751-91dc-4d44-83dd-c55660e26444'::uuid,'800','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6d8b692-3fa1-441c-9b7b-86834b130de5'::uuid,'800','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('af0154e3-c8bb-43ac-963e-0463ea755433'::uuid,'801','995',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5889d1a2-560a-4885-b53e-dabe65fcc6e6'::uuid,'801','996',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0050c4ea-a1b0-4316-aaa3-e4e15b9fe997'::uuid,'801','997',3121,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('68c40d72-a33c-4230-ac2f-ae7ec4919474'::uuid,'801','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('356d0bd7-6fe7-4534-a3b5-8d0798ffa854'::uuid,'801','999',2439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62ca44a3-a540-4b80-856e-5d8428896f20'::uuid,'802','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e466a53-cb2f-4e9b-ab84-0dec45a1febf'::uuid,'802','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9419d88-32f2-4c50-9b6a-be0bea4e64ea'::uuid,'802','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4c4121d-c40d-47a6-a250-9efca8190a45'::uuid,'802','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('739a057c-249c-40e9-8ac4-a817e8420a73'::uuid,'802','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b1d56db5-907c-4257-9f55-05e582751d9e'::uuid,'803','995',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a248ef5-8b8a-473e-a5c3-58e16d44779b'::uuid,'803','996',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('368ee8c2-dfd8-4ebf-9734-8426f33e3d1f'::uuid,'803','997',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89f97248-da28-4302-b020-4a7e0a0918a6'::uuid,'803','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a8c70f2-5ed7-4771-b58b-d42684ebb3fb'::uuid,'803','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312a5e79-37ee-4c2b-9f42-fa20b2da0c5f'::uuid,'804','995',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a1b9db4-60f8-4051-a3a0-a5e706ed0b7a'::uuid,'804','996',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('608e58fe-3ab4-44fb-abb0-34cdcdccecb1'::uuid,'804','997',3078,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14ef7610-340c-4f94-b42c-be7522677e42'::uuid,'804','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('636e3d92-0431-42c0-9d7b-885eb840b02d'::uuid,'804','999',2374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11543451-4c2c-432c-bc7c-7e6e5b38c5cd'::uuid,'805','995',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba3c1b1c-c9b2-4cde-a65b-d1e363c785ec'::uuid,'805','996',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b52e8261-1e50-49fb-a734-974ea6761de9'::uuid,'805','997',3027,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('52626361-2fa4-4e8f-9962-2b1365b08ad6'::uuid,'805','998',2568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14a95caf-d36e-462b-91fb-4a40d6e25f15'::uuid,'805','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca0e6ebe-a38f-4be8-98f1-1fb8a16c2f8c'::uuid,'806','995',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88e925c4-9c86-4bec-adc5-467826c15a0e'::uuid,'806','996',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da993681-3cfe-4e6f-8690-96dbbe09dead'::uuid,'806','997',3045,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6ca6afa8-267f-498a-b5d5-bb0d2d689e16'::uuid,'806','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fe8f985-93a4-447f-95da-0f427151b2e5'::uuid,'806','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('903482c3-e0db-43cc-a02a-77404736fd99'::uuid,'807','995',3222,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('81ca8e3f-2602-47ad-af4c-7d8913c59ab5'::uuid,'807','996',3222,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d3446f16-70ed-4b3a-80e0-6e2bf09a436f'::uuid,'807','997',3107,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6123d083-0768-43b0-af8a-9c3fdd69f1fc'::uuid,'807','998',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a108b92b-f6a7-4ccc-a978-588d5d530997'::uuid,'807','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('067164e8-a3c6-40a3-92a9-764bcabe5acf'::uuid,'808','995',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54f4aa8f-7aff-438e-8fd6-2bbcaa1403f7'::uuid,'808','996',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('793a9452-170b-4f1d-8c50-2d5104f66daa'::uuid,'808','997',3171,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff34b9de-4cde-4e00-bf36-2cd2f40bafbe'::uuid,'808','998',2712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbed833d-db65-4389-8a22-70292368a8e0'::uuid,'808','999',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7b1237cb-36a4-4bbd-b4a2-7479560532ec'::uuid,'809','995',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e7f1d3d-ed68-4d94-8431-7db0dbfbd638'::uuid,'809','996',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2771fcd-28c0-4458-814c-2f025ca7cdf5'::uuid,'809','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eea732fd-19d7-42ff-b2ed-44145047b758'::uuid,'809','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('383bf30f-40f5-412d-bdc8-95a50d5f1077'::uuid,'809','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91322b31-5bbc-42ab-82bc-6c4c64aa8280'::uuid,'810','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2214c5f5-3574-466c-ad93-64ef2f93d6f9'::uuid,'810','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('169e604b-4826-4ea0-818c-9eb1c24a9a05'::uuid,'810','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b6167d04-ae60-4086-a1d7-9d373768e84d'::uuid,'810','998',2807,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70378cab-228c-4afa-ad7c-dd05118cbdfa'::uuid,'810','999',2585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d421b793-c671-467f-8e29-6a3e6e0b2153'::uuid,'811','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('247528fc-1e67-40e5-a7c6-3c2802caa37c'::uuid,'811','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33fa5677-2a47-4615-bb62-bf7ba25ee51d'::uuid,'811','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71fc15e3-d7cc-4c29-9422-9c21ca684fa5'::uuid,'811','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b29c6b26-213f-4f91-b15b-842cd7f11f15'::uuid,'811','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae0e41b6-d25c-49ca-a305-5fe41cc3fe31'::uuid,'812','995',3323,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61689b7f-06ed-446b-b946-f50e73a9653b'::uuid,'812','996',3323,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53940126-fbb1-4f18-95b3-85c2da096b77'::uuid,'812','997',3209,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c9556aa-da6f-4961-9961-1b58fde8a42b'::uuid,'812','998',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fa35c18-af52-48e5-a065-66fac49e6cf3'::uuid,'812','999',2464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('155f8de7-b2ae-4b0a-9b19-83b07e209899'::uuid,'813','995',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdc13d09-0841-4696-bafd-a95f99b9a98e'::uuid,'813','996',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e174c72-1b11-40f4-81c3-bc680e6255cf'::uuid,'813','997',3200,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae7d1a86-446a-4a8f-93ec-dd7ab1b88f45'::uuid,'813','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('729c99a7-dde4-4e16-9a08-773a6dda94ad'::uuid,'813','999',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c7e80648-2451-488f-b8ac-c8480728ea03'::uuid,'814','995',3309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6575e2b-3371-431c-adf2-64309f77e7e9'::uuid,'814','996',3309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('659f4ce0-540d-4c95-b7f0-4a632ed3ecd3'::uuid,'814','997',3195,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e4c1532-9715-4209-a5b6-2df9f2fa5856'::uuid,'814','998',2592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ff15518-5857-4074-902d-485e2013284a'::uuid,'814','999',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3fe48fdd-edfd-485f-8475-5e128ac930e6'::uuid,'815','995',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a0671cd-2f79-46e6-a812-2bacd026b5f5'::uuid,'815','996',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19b2d708-82c2-4cc4-988f-e871fc6cb053'::uuid,'815','997',3133,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00e4a918-d697-423c-ad9d-7a2f66fd801b'::uuid,'815','998',2531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b2ff2af-f648-4146-8cd1-31477f6ab572'::uuid,'815','999',2308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7aba2af-7df5-43ca-8d88-13ada5df8106'::uuid,'816','995',3187,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c507df8a-6f33-4514-a162-ada119d84b80'::uuid,'816','996',3187,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0e36fe3e-18a2-4065-81bc-ba4accd4d214'::uuid,'816','997',3073,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7bd21e3e-ea6b-45c6-b428-e9f6142d3e71'::uuid,'816','998',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53ca18b5-10fb-40e5-acc6-202d8c6f795e'::uuid,'816','999',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1a0efbfd-c4ea-4a1e-9722-c77b03ca14d2'::uuid,'820','995',3077,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97e71607-c79b-4b78-919d-9427ea59f39e'::uuid,'820','996',3077,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44bcb51b-1149-47fc-9418-10c99f36d869'::uuid,'820','997',2963,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bcf4688f-0825-4753-9b19-47733ea77b2b'::uuid,'820','998',2504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe126a02-0c27-4bdd-bddc-07e9ae448c09'::uuid,'820','999',2281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b4a40c5-6573-45ba-ac9f-2081d29d69b7'::uuid,'821','995',2715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e52647e1-367a-41af-b6d8-4ad91709e7a4'::uuid,'821','996',2715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('211678ad-4edf-45a1-8bb4-f808fec6b083'::uuid,'821','997',2601,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c32d4a4f-0d54-4365-a9e4-7e2cc7ba18d1'::uuid,'821','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b9acb11-f79c-44e7-ae98-6532ffdfb711'::uuid,'821','999',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('437eea3d-4b6b-4044-a5cf-3baa00d2e3cd'::uuid,'822','995',3034,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f0db5686-597b-4c64-bab2-0a153c3f1bbd'::uuid,'822','996',3034,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c40aafe6-e602-4f17-88aa-41e0443cab14'::uuid,'822','997',2920,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1a381863-3687-42ca-91f2-96f39b5ed2dc'::uuid,'822','998',2461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d36a66de-58e3-4ee8-b01e-24ca754ba54d'::uuid,'822','999',2238,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c08b320-400c-403f-901a-994f5472bc66'::uuid,'823','995',3021,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f3f7353-1eea-4c44-8e21-2591319ab4c3'::uuid,'823','996',3021,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a90cbe1b-1007-4448-88b9-67de21e6d6e6'::uuid,'823','997',2907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('11ef91e0-4709-4062-952d-2615c602a513'::uuid,'823','998',2437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e71fe74-de57-4e9f-8c7e-79b8fec47dd3'::uuid,'823','999',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8fc89026-4bb5-4520-90e4-9b431be28b22'::uuid,'824','995',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64df49a8-a3c9-421c-a47c-952dfe68a30a'::uuid,'824','996',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2abffb70-419e-4b6e-9af7-4920504606fa'::uuid,'824','997',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c03d676-dae3-4a55-a414-cea4c1a9b56e'::uuid,'824','998',2201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a7efe2e-0b7f-43a7-98b6-30a149f3bd23'::uuid,'824','999',1978,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de1e377d-348e-4f8f-b27b-22c77a369230'::uuid,'825','995',2896,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7580ca33-889a-4dc1-a264-aacddc99e5b1'::uuid,'825','996',2896,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('04710b53-3ba7-49ee-9621-50897cce1c78'::uuid,'825','997',2782,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3e83014-a5a1-40b4-9572-d24e5dc410eb'::uuid,'825','998',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bd9305c-5dc7-41ed-aaef-3ad81ce4682e'::uuid,'825','999',2065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('50954769-384e-4676-889b-9f71ef62301c'::uuid,'826','995',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05f67669-fd93-4130-8795-c719ac4a4968'::uuid,'826','996',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43913918-5c2f-4cea-9204-958726c2cf2f'::uuid,'826','997',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd1d5754-27dd-4df2-a708-dc08c5fc5c19'::uuid,'826','998',2357,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f7f6bd7-54b3-4efe-afd0-878e1872a829'::uuid,'826','999',2135,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe5dfeec-665d-40bd-86ae-930bec5b0c33'::uuid,'827','995',2914,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98bf6506-ceb5-4f7a-8433-3e1a290fef75'::uuid,'827','996',2914,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('334fb3dd-aa41-4638-b763-2a0283f773d2'::uuid,'827','997',2800,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09a71777-88ad-40aa-ba5c-db4aa33f435e'::uuid,'827','998',2341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c8d7f2e-20cb-4aa9-a090-380655a20995'::uuid,'827','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5ef5ceef-0e63-4827-8a86-bb793e3e180d'::uuid,'828','995',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee91fdf8-0a69-4e0d-a5b0-168912b8adf1'::uuid,'828','996',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ff066ba-0a3c-4591-8e04-fa561f5cb030'::uuid,'828','997',2841,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f38237-d5f3-476e-bdc5-f5c43b272200'::uuid,'828','998',2246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b9256019-d088-4bc5-9ec2-fb8d3f9833ff'::uuid,'828','999',2023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97e8f6f8-3ac8-4783-b6ac-696ed204b340'::uuid,'829','995',2996,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6cde9170-10fe-442e-a242-916affb8180c'::uuid,'829','996',2996,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67bb9bb4-00be-4ca6-98b8-1d41db8b32a4'::uuid,'829','997',2882,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5770ec43-6d25-4417-8551-7f9a8bc61f3c'::uuid,'829','998',2328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1464a511-b5aa-47c3-bdc1-63e45e343446'::uuid,'829','999',2070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8f29f8b5-2626-4445-ad1c-455dd5d8c1be'::uuid,'830','995',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02782516-3e30-4fb5-85a9-46cd88fcc092'::uuid,'830','996',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5349e29e-4ce7-4bd3-aec1-b5d3b94eb2cf'::uuid,'830','997',2733,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('07c7b246-e924-42de-a610-949027c91b90'::uuid,'830','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07c16376-2f2c-4b16-92d2-b1fc8cedf2cb'::uuid,'830','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9334e04-b699-4bb4-9338-d1c0dae8be06'::uuid,'831','995',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc2d180e-a100-40d7-83f9-9836ac3e12db'::uuid,'831','996',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('baf2859e-1983-41d1-93e7-711360b1ebcd'::uuid,'831','997',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64ad98bd-b74f-4f55-833a-61ce4ad565f2'::uuid,'831','998',2221,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('365c3aa3-a55c-4d76-9400-8c05da56eaec'::uuid,'831','999',1998,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cf8c455e-bb04-484f-8453-1e0713c7b79e'::uuid,'832','995',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c74bd05-b17c-4887-983c-993f5de37cc2'::uuid,'832','996',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a537f332-1ac0-476f-ac56-e64e214f4e70'::uuid,'832','997',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83c904cb-cc71-4e7e-85fe-189121e37569'::uuid,'832','998',2103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da70f09f-4158-4d3c-9263-927e0f1b7fb3'::uuid,'832','999',1881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05f973cf-dd91-4627-9102-ea1a66bfc839'::uuid,'833','995',2814,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('330f4d9d-4ce6-4b68-a358-80e7e54ca48d'::uuid,'833','996',2814,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8ed9310d-30e3-4ea7-8adc-9576f1bf2122'::uuid,'833','997',2700,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c3fb0784-62c3-4a97-bbdb-165bbab3993c'::uuid,'833','998',2027,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21b3ce86-174f-4204-b46f-bfc9a6935953'::uuid,'833','999',1770,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5b7bb89b-b9ec-4da4-a872-6bdcb68f2ee1'::uuid,'834','995',2718,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0df446e4-21df-482c-8f5c-9e7280d0b329'::uuid,'834','996',2718,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80702540-f819-455e-b7a5-fcfa26848f54'::uuid,'834','997',2604,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c37210f-9fb7-4d61-9e96-06cc5c73f511'::uuid,'834','998',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('deba3e18-971d-43f8-b924-69d6e064832e'::uuid,'834','999',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5f968f0-5f4e-4a95-9169-0a4afd05f2c6'::uuid,'835','995',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dde0096e-012b-4d33-a590-34b2b4843164'::uuid,'835','996',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c640beb2-7f94-403a-9a7f-0a2d12e637a6'::uuid,'835','997',2413,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41898070-92c2-4b8b-bc4b-00e2fad3a448'::uuid,'835','998',1740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7ee0791-5cc3-4cd5-be95-5f719ef97fba'::uuid,'835','999',1517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('94579535-cd7d-4fbc-8488-a942b64eed13'::uuid,'836','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('729fe30d-1a8c-4991-ba64-b21cd2986d24'::uuid,'836','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c68ee9-956c-4aeb-87dd-7714885e6172'::uuid,'836','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('064e9193-e225-42bc-9fc4-33c7566669f3'::uuid,'836','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5c846a1-981e-413a-a822-78abb1443881'::uuid,'836','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3877b87e-1f73-4a59-921f-159e6930940b'::uuid,'837','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33fc932c-05b0-4978-aedc-44e8284d2663'::uuid,'837','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('615ab569-8f05-4571-8a68-b37a7d1b4bbf'::uuid,'837','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17d1550f-64a8-4d0e-b8ef-7ade458a28f1'::uuid,'837','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c5ff2e9-f473-4c84-9f82-ad159521a345'::uuid,'837','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5a5e13ff-c820-4a2f-8510-e030c7023b45'::uuid,'838','995',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4786806e-6280-4b37-b70d-530f9a20b3ba'::uuid,'838','996',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2cb4b259-e719-4dbe-bd81-4f13fff7bf73'::uuid,'838','997',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('799106b4-9417-44ba-b83f-414aab60fb4c'::uuid,'838','998',1611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca571b5e-4b7b-4ead-b508-1cf001fe7cfb'::uuid,'838','999',1388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02c9593c-33e5-4516-acbf-5c07f90864e0'::uuid,'840','995',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8acb321-484a-41dd-bc66-8094a2f6eefb'::uuid,'840','996',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e7da6e7-148a-4adc-b7c9-f37d0776bb89'::uuid,'840','997',2853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('af3ca401-4ef9-4f27-a294-02412ddf8cce'::uuid,'840','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f4e83cc-1c87-433b-80e5-7b85e378f8fb'::uuid,'840','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cee2e660-ffca-4eeb-b6bd-7efcc25bc9ee'::uuid,'841','995',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('380026a6-c517-4399-b989-a31bf79e9d19'::uuid,'841','996',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da48460c-7352-46c3-b6e9-1852a54043ea'::uuid,'841','997',2853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12e675bd-5f21-4312-9c83-69d375aad976'::uuid,'841','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c701b3d4-45a2-462e-8ef6-359877e4a51b'::uuid,'841','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10ffd602-6855-4256-b8f7-acbee8ad3202'::uuid,'842','995',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2985cab4-cc52-40fb-a441-d77eba906fe6'::uuid,'842','996',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e136f85d-8963-45ad-9c4a-af1df02e6cfb'::uuid,'842','997',2853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3eb9c5d-b6b5-47c6-aff5-9763c3523300'::uuid,'842','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acf0bbac-a468-4d9c-aff1-5afb9fe6f3f5'::uuid,'842','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7594a2c9-258d-402e-bdce-f4adb80525ec'::uuid,'843','995',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1758cfa-643d-4b43-a974-5af15a6d540b'::uuid,'843','996',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebf0607b-859e-4fa9-83f3-2d675dafa02d'::uuid,'843','997',2784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4ae54e8-6420-44df-9e27-7c2071a63773'::uuid,'843','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b01e169-4ea4-4f10-b3d2-05dc46894b06'::uuid,'843','999',1958,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2da5af0c-e1ae-4a3e-baf4-b2e361aa9e7a'::uuid,'844','995',2931,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3828df05-1053-4441-add4-927dbfb60016'::uuid,'844','996',2931,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31f9feda-7c07-4d14-999e-ebb300baffe6'::uuid,'844','997',2817,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7920523e-c939-4f0d-b946-a0ed5508a7aa'::uuid,'844','998',2213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f76bfc9-2225-4aa6-828e-b34b1258240d'::uuid,'844','999',1990,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3c6d98b7-6a9b-4334-9e58-be72c4333215'::uuid,'845','995',3200,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72693f2d-b96e-4b54-b013-a613bde0f374'::uuid,'845','996',3200,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eb45337f-bd66-4628-9d45-93bcb4baa9cd'::uuid,'845','997',3086,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c2a7a68-58b8-48a9-91c1-f3e5f0508c3f'::uuid,'845','998',2483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b11e9c22-6501-4a1e-8392-0e501e1559fb'::uuid,'845','999',2260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('641d1523-7fe5-4b77-b9c6-587bf1bad79f'::uuid,'846','995',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be04f3d2-0aec-4f61-8cd0-79865877c3f2'::uuid,'846','996',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52b7aa0c-16ae-4b3d-93c7-2e811035ec05'::uuid,'846','997',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e3ac5d2-49e4-4e62-8ef6-17988de2ac1b'::uuid,'846','998',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7739dc40-bd32-40b7-94c2-bb2bec096354'::uuid,'846','999',2147,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('14123361-02e7-4b28-9147-dfa55fdcb935'::uuid,'847','995',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8f2bf5c-0108-4782-85a8-b3268996cd11'::uuid,'847','996',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9e27d42-5e40-4077-b2ce-037abd9d2456'::uuid,'847','997',3237,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ffff393-4f3d-432e-95da-bf45cb096d70'::uuid,'847','998',2485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a30f0a2-2c69-4139-8932-ed6f23cbd736'::uuid,'847','999',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34ab62ac-24d4-4214-a2a2-8bcebd8edcc5'::uuid,'850','995',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('59476d65-f5bb-45d2-bc3b-7999eb5923e0'::uuid,'850','996',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f24fea7f-38f9-4d49-b256-834e67f5680c'::uuid,'850','997',3496,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1027bd1-3691-43f8-b3cc-8f41e2af432a'::uuid,'850','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('096e3f88-5166-4010-b791-3a6a67f13fc4'::uuid,'850','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b578789d-5217-4e00-a588-1a1ee5bcf40c'::uuid,'851','995',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d591dab-9d85-4dd4-9c6f-89dc79e2834d'::uuid,'851','996',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b34d6e90-3f06-49e6-aa45-03619c679443'::uuid,'851','997',3496,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7eda0e58-5da6-4b3b-9628-e26ab3ac02c1'::uuid,'851','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b07d6ead-fc84-4c03-9a6b-967dad0616b4'::uuid,'851','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0593ac6-71e0-4e68-b895-4b6f25842502'::uuid,'852','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c2530a2-f4c0-4ff2-bdcf-bcd2baec972e'::uuid,'852','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec64540e-b541-4a66-943c-c8edebb6878a'::uuid,'852','997',3562,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('375c640f-ed1c-4929-b916-21d89a393695'::uuid,'852','998',2904,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd80c77-1323-4e60-9ed2-f2455b12683c'::uuid,'852','999',2681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a16ea5d9-ed5e-4066-b4be-dfce0fa8ee25'::uuid,'853','995',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfbeb9c4-8cf4-4653-9556-f31cdf3a35ff'::uuid,'853','996',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a9581d2-3957-44de-9471-6973c8302d02'::uuid,'853','997',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1482554e-da01-4911-a496-88a8e3819e1c'::uuid,'853','998',2842,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0a328d6-6e75-45f2-910e-4b238259dfdc'::uuid,'853','999',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a73cd696-d9f7-4128-b430-4740f47e9113'::uuid,'855','995',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a747d1d2-1f8f-4442-8f2d-a22af56f81a0'::uuid,'855','996',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3128fdec-00ca-430b-a308-ea2113740106'::uuid,'855','997',3539,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('89f02de2-35de-4413-99a7-55416fbf9008'::uuid,'855','998',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ace99720-41d0-406d-8494-93536dbaf511'::uuid,'855','999',2706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('003764a6-e41b-4177-8019-aabee7140373'::uuid,'856','995',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29037999-8ff4-451f-86e6-a57f13d47d9d'::uuid,'856','996',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('979c8e8e-be9d-4b54-acb9-ad83a7939657'::uuid,'856','997',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1814a238-7078-48fc-b0e6-34a4b2233d53'::uuid,'856','998',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091e29ea-5573-4d73-a513-5bb72763fcdc'::uuid,'856','999',2779,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9edf504-e045-4f9f-9628-ad1c21cbdccd'::uuid,'857','995',3726,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('76b108ca-95d9-4c8a-adde-40584a17fc14'::uuid,'857','996',3726,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7851510e-0e20-40fe-98bf-1552ea96a639'::uuid,'857','997',3612,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f4138556-fc12-4ecd-b115-66ed813ea3ec'::uuid,'857','998',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc4d2c0d-fc9f-4dab-a59c-47765d8c5fd0'::uuid,'857','999',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('57b318e3-3be6-44b4-80db-b6e0101fcdfb'::uuid,'859','995',3565,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0d276664-2b68-4109-88dd-24055d1e366e'::uuid,'859','996',3565,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3d02f99-d600-4a7c-9649-151e23921419'::uuid,'859','997',3451,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29938f27-1720-4893-9467-c4418bea57f4'::uuid,'859','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32d2a8d5-9663-461e-bab5-62aa6b4a535d'::uuid,'859','999',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ca75492-9b7d-4650-8f76-d068cfdcab9d'::uuid,'860','995',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('974c7ba5-a367-491a-9c8c-29e775f45622'::uuid,'860','996',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('037deb3b-5080-4eb1-86ef-b56031a3c97f'::uuid,'860','997',3357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86cc5a3f-3b34-4989-adc6-505df87881cc'::uuid,'860','998',2753,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dda7de30-55c8-4b47-be18-9d0086a00e14'::uuid,'860','999',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ff4713de-de1c-473a-ba60-894a31585265'::uuid,'863','995',3564,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd15f9a8-8692-4c03-8745-3cc76b4c1da6'::uuid,'863','996',3564,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d538693f-ef9a-4955-bcc8-5c3b8dd9bbf3'::uuid,'863','997',3450,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cedb414d-55dc-4d92-9525-41cc212a23a8'::uuid,'863','998',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce518c21-d647-475f-b6b4-129e10ee1321'::uuid,'863','999',2547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0943c49-cc3a-4797-a920-d7010bb5390d'::uuid,'864','995',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd7ca0c4-ead2-4195-baf4-2816db87a424'::uuid,'864','996',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62f3e89a-d2fd-4b3d-9ec5-f27098cf303b'::uuid,'864','997',3330,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35207817-42d8-41da-affd-ce6bd5278636'::uuid,'864','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c77a0269-61c3-4696-9e82-24f32bc42b98'::uuid,'864','999',2435,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cbd9e177-f941-44ba-8d3a-8fd21f6a46c8'::uuid,'865','995',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c4bea6b-a670-45fc-b6ee-d4d2a4229eb1'::uuid,'865','996',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ee07699-e9a1-42ab-bee6-b8b54c1879b1'::uuid,'865','997',3318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f2ba5f6-5398-4886-8d61-d81339d1c825'::uuid,'865','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1431e86-d495-4c17-8c38-f53e227eca3a'::uuid,'865','999',2492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c09f830-b67c-4c25-ae21-3895570b2918'::uuid,'870','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9831ef14-d309-406c-bf5b-e6a2ed2bcd38'::uuid,'870','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8346070-9bce-49f3-b4da-78aacf33d6f0'::uuid,'870','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74a7191d-4a09-43ba-a3b0-98019a15e3e8'::uuid,'870','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00cb483f-f804-495b-8d19-e41cdeb1df11'::uuid,'870','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('74bf4e4a-49ee-4953-bfa3-a1d5265a0f0c'::uuid,'871','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da4e759f-dc6d-4af9-872a-300ea21a832a'::uuid,'871','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfd0b166-69a8-434a-a2df-0a4f888495d5'::uuid,'871','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('503ae9b3-47c5-451d-8dd1-86d7ddc4a84e'::uuid,'871','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdef1c81-206e-421e-b7f1-62302d357c6a'::uuid,'871','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d729b702-5bdd-424e-85d2-3590b8ba74b2'::uuid,'872','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('449f406a-fc61-433d-9afe-b3a02ebb4fe8'::uuid,'872','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3303401d-0b96-4766-ae34-1c2d77c48cd7'::uuid,'872','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('613bf0c9-279c-4719-a1bb-d937132af2ed'::uuid,'872','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b21d8a1-2b11-47a5-ba5a-37398b8c6fd7'::uuid,'872','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c595c2c5-b7f0-4e8f-af54-bbc2ea195b28'::uuid,'873','995',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('595fc89b-dc24-484f-8747-85354b94d563'::uuid,'873','996',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86eab86d-e948-44dd-a5c2-f6eb0007723e'::uuid,'873','997',3334,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53f13fa0-0445-4b5e-8303-6360e85d3810'::uuid,'873','998',2730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff7bf545-aae8-43ba-b305-487605400382'::uuid,'873','999',2507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5faacce-0572-4b91-9073-a344878c3566'::uuid,'874','995',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd6731b-4fca-4f8b-abd4-b7e7938fcc43'::uuid,'874','996',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7929f8b8-cf76-407b-8573-ca853558468d'::uuid,'874','997',3270,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9aaeddcc-5e55-4634-ae83-c892a833af05'::uuid,'874','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afbe0cf2-5d38-4d5e-8693-fbd35f819061'::uuid,'874','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0a8f5597-f8ec-4665-858f-397365c69f79'::uuid,'875','995',3486,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('532c2a23-6799-409f-904e-68ac6a38fcb5'::uuid,'875','996',3486,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f23be6b-123b-4337-9a6a-37e80a9bb5b0'::uuid,'875','997',3372,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43250438-8323-46bf-bbd5-9a131691fa0e'::uuid,'875','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('073107fd-48b7-4dec-8feb-c05cf3fb7a98'::uuid,'875','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1e96733-130a-450c-bcf9-5ef58128734e'::uuid,'877','995',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ca7a9c8-ade4-4899-80d7-89afbe9f5527'::uuid,'877','996',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cfafec32-a296-41e1-a5dc-287bbec54974'::uuid,'877','997',3376,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85b9165e-bb4b-46a9-be26-95bf34213fa0'::uuid,'877','998',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aec35b7e-8064-42b2-b872-8fecdd9971cc'::uuid,'877','999',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('321e1504-2ff8-4b05-85c7-5af79b7b3464'::uuid,'878','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d4d8260-f383-4fc6-903b-0ac75c2c3754'::uuid,'878','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43529c84-6e43-4b88-974c-7353be5c27e2'::uuid,'878','997',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e5976ec-18d5-4e78-a3cb-283a029df62a'::uuid,'878','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e308c44-744d-433f-9e1e-4967bd5c7438'::uuid,'878','999',2709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60647cf4-6d18-44bd-be9c-d6e7fcd119ad'::uuid,'879','995',3714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('988a5354-b394-4ab5-8404-cd9e4e317e2d'::uuid,'879','996',3714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f77fc0d9-77b8-4ff7-a9d9-29d1dc29cc69'::uuid,'879','997',3600,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c83db13-028f-41de-8417-4a6a4bfa02df'::uuid,'879','998',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5ac3534-d378-457b-9afb-7745dbb950e9'::uuid,'879','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2007125e-aa80-4027-bbfc-69067d9561aa'::uuid,'880','995',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef41e618-3dfb-459a-aace-5e473038c8d3'::uuid,'880','996',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('065dcba3-c527-4cc6-9d80-fbe9dfbaa106'::uuid,'880','997',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7092da3-3bb6-42be-8f8b-fd493590ea79'::uuid,'880','998',3038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bc46b9e-2671-4c93-9013-c86ddd55e6a5'::uuid,'880','999',2816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a1592c-999d-411a-bbdd-7c7d577126cc'::uuid,'881','995',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7318352-b9c9-4945-b87a-a2b75ebdecf1'::uuid,'881','996',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9549a8a-11b2-422a-baa6-765be2eff0ac'::uuid,'881','997',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdf0061b-0797-41cd-8b3f-5e5c50c20a33'::uuid,'881','998',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18933378-fdb1-43bf-bef6-85f30dc5d171'::uuid,'881','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7c686591-8b2b-4f40-ae8b-5f00535882c0'::uuid,'882','995',3792,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cee88612-18fc-4bc8-ae38-1d0adb45e111'::uuid,'882','996',3792,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a4c04f3-e8cd-461e-97e0-11b56683b87b'::uuid,'882','997',3678,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd9106e8-abfe-4762-8adb-411dfd39459c'::uuid,'882','998',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46545428-646c-4c5a-9a7e-1245b8c648a2'::uuid,'882','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('778cbd76-fa36-450b-bb24-09aff122c7c3'::uuid,'883','995',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ddde297b-056c-4b2b-89c0-33524505a61b'::uuid,'883','996',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1df09440-c73e-404d-ba29-98c89e7d5ac5'::uuid,'883','997',3639,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d64b62e9-0c39-487c-ba18-52ed6b55c0a9'::uuid,'883','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3793354-fb9c-4e7f-b3d8-ef73c1a57bae'::uuid,'883','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6eb9e0ef-75c6-41bd-a260-47e983f3dd72'::uuid,'884','995',3602,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1842f8b-f7df-458c-a7ca-3b42808f7cd5'::uuid,'884','996',3602,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('75143e1b-84be-4e74-b63b-605d98bc39be'::uuid,'884','997',3488,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3ced66ad-8fde-416f-b227-bf38e199ca34'::uuid,'884','998',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9472f6ae-c098-42a7-aad1-0871511b4668'::uuid,'884','999',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c52cef-94b9-487f-ac31-76742185350c'::uuid,'885','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05850e92-edaf-48ac-96b6-a5d46ea286b7'::uuid,'885','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eedccae1-2aeb-410b-afc3-5beeea52ea1e'::uuid,'885','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('246629f6-1ccf-4253-bb7b-fb0329d7d952'::uuid,'885','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ed3eb3e-3863-4143-a59f-cf75ef60ae23'::uuid,'885','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5d6aa648-1432-4c28-91b8-81e00005e43f'::uuid,'889','995',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc727d6f-f63f-47f6-9b04-8eb158acb6d9'::uuid,'889','996',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('703b3076-800e-4f65-a9f9-a6f66f93b30d'::uuid,'889','997',3205,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a6d8519-7487-4ab5-87d9-4480014db52e'::uuid,'889','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a077efc-17b4-492f-a137-d7bf25664134'::uuid,'889','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c2cc56e-717d-4dd8-8552-7112044378ba'::uuid,'890','995',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e522a29-0604-431c-bcf3-c7a6e91fbd7d'::uuid,'890','996',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23008283-ae57-4564-96b8-0a6b5451f6d9'::uuid,'890','997',3205,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4225a4e3-c5fb-4355-9ce6-cb1bff9090af'::uuid,'890','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8c45974-b9d5-482c-9c23-be6745fdac35'::uuid,'890','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('14a1b68b-d0bb-4ff5-9be2-6a0a30e4314c'::uuid,'891','995',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('088e72b8-a3c7-432d-a3b3-820cd9cfdf4f'::uuid,'891','996',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c22ba31-0f19-4e9e-8ff8-197959ce2215'::uuid,'891','997',3205,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e25e09c6-70b9-4d7f-8435-d07cc895be0e'::uuid,'891','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d263068-46a3-4fa3-9ed2-809f8fced7c7'::uuid,'891','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61f1a70a-5ff6-4cd1-98c7-ad0f4b6de49e'::uuid,'893','995',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76557d71-f357-4ba5-8e3a-c3563bd1c018'::uuid,'893','996',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('047035e9-e554-4175-a706-011446aef94b'::uuid,'893','997',2926,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('318efbf8-ba01-48e4-a88b-d899e74b72d3'::uuid,'893','998',2254,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f68548d1-b6ba-4140-ad20-1a9fbe6b2eed'::uuid,'893','999',2031,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('22308ee0-8a35-462b-8b32-7413ab2df8fb'::uuid,'894','995',2978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4ba1b9a7-101e-4aa6-9aad-0997752878bc'::uuid,'894','996',2978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1aa6c96a-7c05-43a2-9aa1-0682f4a5b465'::uuid,'894','997',2864,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2540999-44d1-4e97-9d41-b97cdc0eeac5'::uuid,'894','998',2191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36853432-bbf1-4630-8e8e-60eb6f74d646'::uuid,'894','999',1968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eba9d200-7f1a-4ae6-ba58-23e174c83cb9'::uuid,'895','995',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c294e484-2f3e-4182-85e7-0622dfdb2755'::uuid,'895','996',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('252bf16d-97fe-4850-9fac-6efce19562eb'::uuid,'895','997',2885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('caaa42a8-cea4-49a2-81b0-70d196499d5d'::uuid,'895','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('589fcc0e-ef03-4d34-9d75-8bdc21ed6ed9'::uuid,'895','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e0a44867-e2c6-42e4-a3cb-cf9a0081cb32'::uuid,'896','995',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('57eea73f-f392-4d61-978d-850665ad5dd3'::uuid,'896','996',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84681a43-50fc-4b05-900d-f1fed62b8696'::uuid,'896','997',2885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f26c49a-0faf-4f48-b720-7322dcb487df'::uuid,'896','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76f74300-db1f-416b-9f5f-8562fb0efe42'::uuid,'896','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d1c9e95-3efa-4350-a31f-202facb2256b'::uuid,'897','995',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bc392b2-e9cd-4985-8b77-21f98c182758'::uuid,'897','996',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af9e8f15-eb8c-4346-9112-a6ef4d43455f'::uuid,'897','997',3051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee99372a-f7e8-45e4-ab49-f45bd40dda4f'::uuid,'897','998',2242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f79d1fdc-d868-4a9b-8089-c324c1ba0236'::uuid,'897','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('91fadf8f-bfd6-49d7-8af1-0c875eb1837c'::uuid,'898','995',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40ee2eb2-0b2e-463c-a995-17f5b745b064'::uuid,'898','996',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00df1c64-dcd2-4da2-b659-fb1686d9a119'::uuid,'898','997',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75e7e76a-a288-4f0b-9ace-6aff15066d67'::uuid,'898','998',2140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d26ea265-c508-4887-bcbb-51e52be82d6b'::uuid,'898','999',1918,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e5606ce-1676-4808-8046-f0492f3593a8'::uuid,'900','995',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99661eff-f6e6-40bd-be53-8f7ba54584b7'::uuid,'900','996',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b87899aa-f988-45b9-9e23-d8737b86ad38'::uuid,'900','997',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77501771-13cb-4a23-a153-fb08e1d02372'::uuid,'900','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e2c4dd7-7650-41ee-bde0-4393baa5cb34'::uuid,'900','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('308b0d16-fe69-45cf-8ebc-f6d56363488a'::uuid,'901','995',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('992935a8-023f-4fa2-8065-0d8f3101bf21'::uuid,'901','996',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03e756fc-2cc8-47f1-a365-1b61410e3f0d'::uuid,'901','997',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85ee5102-bbe4-475d-90c5-d5b5fb21a0b4'::uuid,'901','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15daafbd-1892-4af2-ab2a-6b6fa0ff0f5c'::uuid,'901','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('483f1f42-8a51-49f7-bd14-a94c344ed126'::uuid,'902','995',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159bac5c-d6c2-4c8d-a935-a49fdf0795cf'::uuid,'902','996',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6333e31d-6514-43b3-8c78-d753872b0841'::uuid,'902','997',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28646c4b-5f0b-4c2f-9b0e-d2cd128d187d'::uuid,'902','998',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ecb18e7-a559-4708-9f83-605380ce43d7'::uuid,'902','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('022ced8d-1e04-48c0-91f9-8d551d4c9f5d'::uuid,'903','995',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bb8e3af-9c32-4e67-af7b-725a962dffe3'::uuid,'903','996',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a7d38a7-e2f6-4f5e-b5f9-992a71cac9b3'::uuid,'903','997',3290,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c638bdad-c0b2-4be5-b35f-bb749cf03d2a'::uuid,'903','998',2617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4111ca0a-eb3f-4a40-9107-cfedeab5797a'::uuid,'903','999',2395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86a12b6d-b89b-4126-bc28-2efcfc49ef27'::uuid,'904','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c2396f5-8e13-4b33-a761-146117df9b1a'::uuid,'904','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c455f3af-8003-4822-b320-9e47689a3999'::uuid,'904','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7607f73d-916d-4b79-9706-683842d7bab6'::uuid,'904','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2dd75ae-03d6-47e8-b4ba-b52dfdbc7489'::uuid,'904','999',2356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('66edd0f6-3107-4581-9413-53863d6410db'::uuid,'905','995',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f7476002-953d-4192-8264-f13c3b6ef685'::uuid,'905','996',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29bcee87-3c83-4f67-88e6-628313687ca1'::uuid,'905','997',3302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8e2105e-641e-48fc-acdd-c3c9743bb153'::uuid,'905','998',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26041a79-c8db-4185-8c8b-933113f466ae'::uuid,'905','999',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3057089-1889-443c-9016-59345946cc1b'::uuid,'906','995',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ee1c44c8-cc84-48c2-aef3-5c65c8e4d5a8'::uuid,'906','996',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23b55ef4-22b2-4e83-b307-67213d2f88a9'::uuid,'906','997',3302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c933c534-e28a-430a-89bc-d8c64764f99f'::uuid,'906','998',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77f38e7e-527f-4c14-a590-64f1fd6a2b4f'::uuid,'906','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4436e3ea-1a8e-4aae-aaaf-d515cdf83159'::uuid,'907','995',3420,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c8152844-3237-44fa-9fe5-5bcd701379e0'::uuid,'907','996',3420,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('369ff3e5-28ff-4853-a3ba-6802102b93e2'::uuid,'907','997',3306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('16ba1e86-cd40-4885-abf8-3d09ff58622d'::uuid,'907','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('875d68c8-aa33-483e-84b4-330d2cb12529'::uuid,'907','999',2411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3398a2ef-60ae-4812-a4c2-3b88edc5e7d7'::uuid,'908','995',3422,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2f1b2a7a-c0e8-4ef1-87cf-3e29cd2229e0'::uuid,'908','996',3422,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0fbe46f2-a73d-45a9-a8ea-0711dc926ce0'::uuid,'908','997',3308,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('852ed1e3-51ab-42bd-8016-a214213b2038'::uuid,'908','998',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59d3ea5c-c785-4591-a46e-d363f323047e'::uuid,'908','999',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f364acdd-e85a-402d-ab80-b20d4076fbb9'::uuid,'909','995',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('83961a47-fd34-4084-a2f1-6f3038704925'::uuid,'909','996',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('577a7428-9b50-4462-b7a9-3cfabb9e6d35'::uuid,'909','997',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cbf306a6-45d7-4ab9-aebd-0c2657ac0336'::uuid,'909','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ca8dbf1-c1d6-4e14-9afb-2fe8d830c4cd'::uuid,'909','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2adedd90-0e78-477b-8e92-ffb33ded8349'::uuid,'910','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('82fe7d07-7260-4a46-a152-398ac32a3746'::uuid,'910','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a99a669a-2df0-4969-bb93-83e72fc7def5'::uuid,'910','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e0b953a3-b94c-4599-acc4-6c2e3e2e1271'::uuid,'910','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('008344d9-ac7e-4cec-b5f4-0682cfc7932d'::uuid,'910','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02f742af-f9f1-404d-9d58-15a298e09850'::uuid,'911','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eae21f4e-f7a1-4fe8-afa1-a4d372587887'::uuid,'911','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c097fd33-68bc-4d80-bc87-addeebd74880'::uuid,'911','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2a23830f-6996-484a-a54f-85ba95c1feaa'::uuid,'911','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61bc56c1-5203-40f8-8231-baa7036b7f61'::uuid,'911','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fcea410-90ee-4bb2-9ed6-7351305a9877'::uuid,'912','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7545d896-5030-4ae8-97fe-e278bd1d264f'::uuid,'912','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41b11120-e02e-450e-8f0a-794b71767c52'::uuid,'912','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98127bc8-928b-4d6e-bb94-2bdfae9fc426'::uuid,'912','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e5d8546-5a7b-4b21-ac0f-d831bb826ac5'::uuid,'912','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('afd76365-c7f6-4519-a4a9-43d514f283cb'::uuid,'913','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f6993be-17d8-4faa-8ced-acf86d6ff8e8'::uuid,'913','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0f92d785-2d5d-440c-8ca3-1e48e760fdc9'::uuid,'913','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cda4b9a9-3ac6-4111-b460-414f69d77bd3'::uuid,'913','998',2593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68c9a20e-0c18-4564-8e4a-18c67468b888'::uuid,'913','999',2335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8aa965e9-dd8e-4011-9c83-69b682325822'::uuid,'914','995',3388,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b4f742a-b0dd-47ee-87f4-e4602bc55ef2'::uuid,'914','996',3388,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13b3bd26-3417-45ca-a110-ddf3605d70cb'::uuid,'914','997',3274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('58f2b5ab-153b-44a7-92b4-5a64dd1e103c'::uuid,'914','998',2601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f14a296-b152-4cf0-bf91-ed9a710abf4d'::uuid,'914','999',2343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('235e0118-cbc0-4ddd-a917-816b4ab33ebe'::uuid,'915','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc4d8ae8-8fd6-41d4-87ec-038b1d9c4bfe'::uuid,'915','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88fdca35-7353-4633-b8d8-48bf7edbdac9'::uuid,'915','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4263d6fa-f06e-4484-917c-7ad37b33a199'::uuid,'915','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a965f28-82a7-4e9f-bdd4-d92b91ac4342'::uuid,'915','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('819cdd81-9fbd-4c15-91e6-e9ef1f20caab'::uuid,'916','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae93b1af-36a8-4063-aaf1-6c19bebd172f'::uuid,'916','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db4aeea6-f983-4b3c-b78c-1fee6987ca50'::uuid,'916','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f17bab16-39cf-4462-a032-0dd1829d346b'::uuid,'916','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d8ce794-1d08-45dd-bb06-3e32b27f18ce'::uuid,'916','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b97ce934-d3ca-48d0-83e2-94a5560c1878'::uuid,'917','995',3417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c3b86d07-098f-4d56-b761-dab776c7aac5'::uuid,'917','996',3417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('864982cf-8e67-444b-a64c-6bc3fe94b5c9'::uuid,'917','997',3303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a0a82a3-ba2d-480f-8d4a-fa313cc1f93e'::uuid,'917','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b87c7f7b-d048-4a81-a421-ae1199381172'::uuid,'917','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f8c6394-91e1-40ed-976f-4a7ba2855e15'::uuid,'918','995',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58e1c51f-d579-405f-bbd3-f313e7ebd4ea'::uuid,'918','996',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41bdb145-135a-4709-b40c-3d3ea0bc0c9e'::uuid,'918','997',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a11ff6e4-24d9-4e37-8211-db3ed5a91446'::uuid,'918','998',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1f6ac02-325c-41e4-8092-dae3597c7f2e'::uuid,'918','999',2396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0b56958f-d9e8-4da6-855d-959e9b1fe4a4'::uuid,'919','995',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8cdfed5f-7986-4624-b035-f61c73e028e5'::uuid,'919','996',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0101f071-041b-414e-a09e-9c7257e88f5d'::uuid,'919','997',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ddfbcd7-8f37-4a8c-967a-c6384474b63e'::uuid,'919','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0c7f33e-d7fd-44a5-8dbf-1eab32bc63f6'::uuid,'919','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23429fc7-047e-4e1a-b141-ba764d21b6c8'::uuid,'920','995',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfae9b19-779a-4c62-826e-939da53c885d'::uuid,'920','996',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d216c69f-ea07-4312-8c7b-b70ccec34b81'::uuid,'920','997',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ca60699e-6647-4411-9a67-20d140b9195e'::uuid,'920','998',2726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03add82c-cecc-4a2d-aaa1-c43af8fb99fa'::uuid,'920','999',2468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('293d36c5-5897-4172-b6a1-9260eb1ac8e5'::uuid,'921','995',3520,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c019e273-0d1b-40e6-96d8-f84698184ba3'::uuid,'921','996',3520,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00ee3250-aa63-464a-9204-32606786e853'::uuid,'921','997',3406,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e765509c-fd6d-4b1e-bacb-9c7cac8088bd'::uuid,'921','998',2733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1685a26-6a91-4fe9-9bca-74fd41dff446'::uuid,'921','999',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b7fceba-c45c-4cde-81b6-81b2e874a7e6'::uuid,'922','995',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e835b22-3d2b-4a44-bd55-66f3d6d45221'::uuid,'922','996',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56be150d-9f68-43ca-9745-3262fb4725a9'::uuid,'922','997',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('447d06ea-c094-4a85-80aa-80003856a815'::uuid,'922','998',2759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64ff197d-fd33-4716-a25f-e80b20de435a'::uuid,'922','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('00590561-9a27-4913-b9e4-2501d5dde6d3'::uuid,'923','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('855f4b23-e92d-4bfd-9e9e-8264f943f6b5'::uuid,'923','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77a4591b-e1f4-40a3-b7ba-4119cb2e740f'::uuid,'923','997',3434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f702816e-a4b1-48b0-8237-a03eedd06615'::uuid,'923','998',2625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f24cdd04-e02d-4f4c-90e3-105d5a102d78'::uuid,'923','999',2402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73e8161e-272f-467e-b618-05430eefd9f5'::uuid,'924','995',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e179fbc-a7f1-4301-b34f-9758f35961a9'::uuid,'924','996',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b612e8fd-686a-4693-8d91-9a4d2815a460'::uuid,'924','997',3335,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1ea864bc-982d-47f4-8bb7-2667d500fae2'::uuid,'924','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc06ba3f-b7c2-4df8-95fd-7eb499504bcb'::uuid,'924','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('804f1732-228c-48e8-bedc-72ba7088e4d3'::uuid,'925','995',3452,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('11d2c101-7099-4629-b2dd-48b4030f0e3f'::uuid,'925','996',3452,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86f6a344-e032-4030-b0aa-4f940d071f50'::uuid,'925','997',3338,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7b58a050-4747-435c-81e0-ad3f7a62cc77'::uuid,'925','998',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43ac3624-34ff-48c1-9dd9-2a880baba0f0'::uuid,'925','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe6bc698-7f13-4a8d-8f94-f8203b3c7fb1'::uuid,'926','995',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35eae2f5-0146-49d4-b1d3-af2d42bd7e18'::uuid,'926','996',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2284669-b9d3-47da-bd2b-7de3f0e61ecd'::uuid,'926','997',3317,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d200e366-4b94-40c4-a3f3-7f41d0baff73'::uuid,'926','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77c59bbf-9917-466d-88d7-975f63be858f'::uuid,'926','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('23aeb394-aa74-4515-ae93-562c90d48994'::uuid,'927','995',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d343aeb2-2a71-4401-ba52-f77dde2e7c7a'::uuid,'927','996',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f7a57559-2acb-4f7f-b3b0-6ae5243fbf2c'::uuid,'927','997',3317,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('851010b5-be85-41db-8a30-82583d0095e1'::uuid,'927','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fc85b97-1304-4ba6-8f71-14eae5e6c4b1'::uuid,'927','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('183056f8-444a-415c-bd4b-3a6b23622d34'::uuid,'928','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f4b18d5-ca9a-4c06-92f6-ff36fb88e28c'::uuid,'928','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d74ff2-e916-4ff0-b346-3daecaa755c2'::uuid,'928','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aed5e0c5-ceca-4ffd-aeb8-a8f0a0c953c9'::uuid,'928','998',2639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aeab1f30-c8d3-46e6-bcaa-7380a3327c74'::uuid,'928','999',2416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('693f47b0-be26-4456-9931-ec38fefeae64'::uuid,'930','995',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39d2302a-8490-4a55-b57f-bcb706d96287'::uuid,'930','996',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a780746-eb2f-48f6-9733-78c363932a29'::uuid,'930','997',3295,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ebce3fc6-2495-410c-813b-08d3c81c7a52'::uuid,'930','998',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cf3833a-b417-4664-83b8-e296cdccad7d'::uuid,'930','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72a7b14b-b08a-4649-8695-0630f5686a64'::uuid,'931','995',3393,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a73a388-813b-4cc7-ac06-c8bbe76e05f3'::uuid,'931','996',3393,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdddfb8b-5d6e-4474-970c-5911260c9cd0'::uuid,'931','997',3279,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2b553df-96f4-42c9-bc9b-07cd7901a014'::uuid,'931','998',2606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b82513c-1c60-4bfe-a8ce-b39d3b62b9f6'::uuid,'931','999',2348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f4ce00dc-74b2-4ad4-a463-2359b858e570'::uuid,'932','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b041fa51-e93f-4a85-b271-bbe55d6e50d2'::uuid,'932','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed14623d-811f-4a0a-a358-c5b22d2c1185'::uuid,'932','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d82302fd-ee2c-452e-8821-b420a6f1c528'::uuid,'932','998',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac3eec1f-ec2a-440f-ac0b-82cdecc1c334'::uuid,'932','999',2253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8054c36-8100-499a-aedb-e6db8610ae68'::uuid,'933','995',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e69d29ca-3a9f-4d48-904a-1e4e830f4c95'::uuid,'933','996',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('059cccab-3b60-497b-b251-de2de6e6da28'::uuid,'933','997',3316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30b5cf86-b509-47e6-8dcf-61a9bde3df55'::uuid,'933','998',2508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e96a284a-bb41-44e5-81b8-934c407d5bdd'::uuid,'933','999',2285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('74ae2589-5e13-4659-87b7-d1dae9ce83e9'::uuid,'934','995',3288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34c6afd9-bcac-4031-b543-9ff8b0400caa'::uuid,'934','996',3288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('980d25d1-23ab-4ee7-a70f-407f5eba1622'::uuid,'934','997',3174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5ac2682d-b1b6-40d8-bfbe-324dc58dbb26'::uuid,'934','998',2501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d1556ba-5ae9-4764-bdaf-6cfb3b055950'::uuid,'934','999',2243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52ee892d-3904-4827-adb7-10685a01793c'::uuid,'935','995',3281,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc574784-b8a8-41ab-b640-01195ffc695c'::uuid,'935','996',3281,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4468f7e-643c-4fd3-9f00-3e1bd66344b1'::uuid,'935','997',3167,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e566ef79-7bc2-4a16-ada1-4d844a535d1e'::uuid,'935','998',2495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dd6ef0a-9423-49bf-ad4e-61fff33bcbab'::uuid,'935','999',2272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f407684e-ddf4-4027-a064-a50a7dcc3050'::uuid,'936','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4383b740-d29c-418c-b71c-8fce4be28edf'::uuid,'936','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb358211-591e-43d9-baa7-e43b9618c4b2'::uuid,'936','997',3070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('017ec8d0-16a9-4704-bfe0-a174b16a77cb'::uuid,'936','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('290ec10d-c0cf-46ce-ba1b-aea88480003a'::uuid,'936','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a06f0a8-00c2-4e06-943c-5af3710120c5'::uuid,'937','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ca8900b-ba83-4c28-bad7-33ab8c662f35'::uuid,'937','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bba2189-8095-4a79-a2d2-2a5ac39f2c61'::uuid,'937','997',3070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f18dc52a-8cf4-416c-906b-a88b8522ed42'::uuid,'937','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3f13314-6d74-4299-993c-3ffc1310eb10'::uuid,'937','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('19687533-5566-4416-a63e-3389e1dd2fa6'::uuid,'938','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e30308bb-c8cb-4de2-b4a4-7e55c287a20b'::uuid,'938','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8148a6e7-002d-45ab-a4e4-9073ea384901'::uuid,'938','997',3070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bebe7186-33ef-4b7e-8642-582e91ef0909'::uuid,'938','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f5e00f5-457b-4006-a7a3-aee9d2a61e5f'::uuid,'938','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45359820-0cc3-4b11-bb2c-0e5fa2aaf247'::uuid,'939','995',3163,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1c1e3bd-fc1a-4089-9469-83ff74b992ed'::uuid,'939','996',3163,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf39d04c-5b70-494c-aac0-9cfea509e9b9'::uuid,'939','997',3049,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53bc7d01-c175-455a-91c8-51bcb3eee33d'::uuid,'939','998',2376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ab75d47-bf2f-4b80-802e-b5f64c4792b4'::uuid,'939','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9280c152-c831-4684-8342-3d529f5a3c05'::uuid,'940','995',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3406ca4-25a3-4420-a7c0-f44786b447cb'::uuid,'940','996',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0452d48-6cf5-4955-8999-8a64bde87a13'::uuid,'940','997',3119,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5991f9c1-ebc6-4f03-b0ac-0d65c2a0f33b'::uuid,'940','998',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ae6c998-33c0-43e0-963a-d04baf540973'::uuid,'940','999',2087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aaf43032-ac79-4446-ab68-4b8ba5827f2e'::uuid,'941','995',3075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ef212642-40b3-456e-aa43-c2d0663acaaa'::uuid,'941','996',3075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a4be5583-501b-4832-a263-964c2a67b040'::uuid,'941','997',2961,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3aefeb0d-29ac-4e7c-bb99-4a42f4cdf445'::uuid,'941','998',2288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a34db64-a890-4cc9-aa45-e1a69ae9cce9'::uuid,'941','999',2030,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('86fb16e9-dbed-42b9-a8aa-2dedd5d9e086'::uuid,'942','995',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d811c335-6d1c-4f59-9214-d5f0468cf4f1'::uuid,'942','996',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14623bc4-a776-4643-818d-4518b39fc2fb'::uuid,'942','997',2906,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8dbc6437-3b8e-4708-a782-766e500b7e0a'::uuid,'942','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e8867b4-7670-454d-8af3-e3d83d4c085d'::uuid,'942','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f814cc53-bc52-4d79-b0ca-8a99db037108'::uuid,'943','995',3106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6808ddfd-b63a-4b9c-9f38-5321c93204b5'::uuid,'943','996',3106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95539c86-d8a2-4e82-b2ea-92e49f710454'::uuid,'943','997',2992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00f38731-9c78-45f6-ace9-aca58f54c5af'::uuid,'943','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac2dee37-892e-46e1-addd-e16713a1cfef'::uuid,'943','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('755a162f-e650-4c61-b62a-39bda8de699b'::uuid,'944','995',3094,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('28bd4f3a-d50e-4adf-981f-41b1716d28b5'::uuid,'944','996',3094,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('449cb0cf-ce32-4480-a482-3c0017f56de4'::uuid,'944','997',2980,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29284959-8065-4d45-a921-9be1c3b36486'::uuid,'944','998',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f41f1b07-f2cb-4381-8d1b-1acca7b69a5c'::uuid,'944','999',2049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd7739aa-b2fe-49d7-b18b-c48f68c3afb5'::uuid,'945','995',3060,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d3fa5c5d-8da4-4cba-a3c1-702aa67799e6'::uuid,'945','996',3060,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df6862a3-b429-44b3-bcba-1d33ea73d7d4'::uuid,'945','997',2946,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67df4e23-a3f3-4ad9-a120-207f67ce1991'::uuid,'945','998',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df9ec58a-6901-497b-b27e-ad5b9f537642'::uuid,'945','999',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4cdc60b9-c147-4704-8d86-a011d74d7ff8'::uuid,'946','995',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7534308c-64a6-41bc-9aa0-394de69172c7'::uuid,'946','996',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9f084e0-2d57-482e-b945-429bec5be2ab'::uuid,'946','997',2953,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cd523be2-1e7f-4e4f-82a5-ca6caadede0e'::uuid,'946','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('556035ab-46e7-4657-b30f-a7d829793fee'::uuid,'946','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b71234bd-3bdb-484c-94a3-a7b522b14ffc'::uuid,'947','995',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90448237-e101-4ebe-a2a0-b1afb77fdfa5'::uuid,'947','996',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c85fd86-bee0-4a5f-a550-691e0ea1aaa2'::uuid,'947','997',2953,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6030d06-f9fd-4b6d-9be3-ef406fec9707'::uuid,'947','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ca47423-74cd-4b95-8ae1-da7ae396e273'::uuid,'947','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('939e22dd-bfae-47f7-a646-4ffefb819514'::uuid,'948','995',3066,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7bee1f03-e6e5-4d40-a010-cd3dd8c219e6'::uuid,'948','996',3066,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ae69058c-8022-43dc-8833-139c2d7bc91f'::uuid,'948','997',2952,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98aa2bd4-d0bf-45e9-b85a-1fb921ff6e31'::uuid,'948','998',2279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e1da881-9023-4bb6-859f-90e7d4a3a316'::uuid,'948','999',2021,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cc3e71e-0954-4207-807d-2b1e5c3fe4e7'::uuid,'949','995',3071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f22fa7e-ef3d-42c5-b68c-89bf28eb169c'::uuid,'949','996',3071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8d5d42c-6fcb-4f3e-815f-346ca9a1809c'::uuid,'949','997',2957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15ac7628-a7f1-45a5-b4e6-c17b0f7095b3'::uuid,'949','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5891e070-5e15-4857-9e87-0354870bf62a'::uuid,'949','999',2026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0f3da50e-ebc6-42d1-9968-1907b71eb33c'::uuid,'950','995',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9617c28d-9571-4227-a96a-b77d36cc163c'::uuid,'950','996',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4875cab4-5dee-481e-8e2d-1d6a1eb3c8fd'::uuid,'950','997',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12c9b2fe-4dd4-40d3-9f41-ff77083da38d'::uuid,'950','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27aada10-6608-42b7-9f1f-793f27291e32'::uuid,'950','999',2125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bcfb91a-0490-4d1d-b29e-974b6ad0d60f'::uuid,'951','995',3103,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6fab1630-1322-4e27-9677-5c3eb732f44c'::uuid,'951','996',3103,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e8b48167-0a44-48f3-b1d2-cd5bde765e02'::uuid,'951','997',2989,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e384dd7-1f9d-497e-9667-b4dcb01775e1'::uuid,'951','998',2316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b0a20ee-16af-48ca-b607-ee0e5f1feaa8'::uuid,'951','999',2058,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4758fbe0-a3df-4e12-aa7c-2a0f1103cab9'::uuid,'952','995',3064,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4385882e-d18e-4704-935d-46b2c81ef538'::uuid,'952','996',3064,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfa6b8d9-333f-40b4-af55-3822b9bcf512'::uuid,'952','997',2950,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e4060a6-aa4f-455d-a805-534bc45f385b'::uuid,'952','998',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c9eac23-7275-4f12-9efe-b6ea8dd1b3a1'::uuid,'952','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9074e6ed-02ce-4907-bfaa-55583c2e6381'::uuid,'953','995',3092,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a133309f-49a8-4916-b500-3cf00f1af55b'::uuid,'953','996',3092,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6e46eba1-b31d-4d0c-918d-1fd28cccd7e4'::uuid,'953','997',2978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('51638b48-3129-4952-b721-8fd6cd6d7e56'::uuid,'953','998',2305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('06bcf225-d576-47e3-870a-c03d32d71fce'::uuid,'953','999',2082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aaffd517-06af-4392-861a-f9dda353d7d6'::uuid,'954','995',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfead90b-755d-4f85-8827-8505d540e0c2'::uuid,'954','996',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d688ea6-76b4-4999-ac48-07cde92beba3'::uuid,'954','997',2907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0c55ff7e-6a5e-41ba-948b-295459aae1c3'::uuid,'954','998',2234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92fbc802-ada3-4a01-92d2-73f42f38545c'::uuid,'954','999',2011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be63cd8c-08a1-4600-8608-5f5d6b4ec733'::uuid,'955','995',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e1b682-7788-4592-9474-1ad562b3cbfd'::uuid,'955','996',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69984096-4c1b-4bb2-b41f-19ecfa99ee60'::uuid,'955','997',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a56b9d5-c19e-4f04-b848-66e2d594719e'::uuid,'955','998',2063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a115aa9-061b-498a-afbf-4361997c6d9b'::uuid,'955','999',1840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b6815132-64fc-4673-8a18-414c7c889637'::uuid,'956','995',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37025990-fd34-40e9-81d7-4054750e03ab'::uuid,'956','996',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a572bd92-4e8b-4ba7-bf1e-80f3f9a16753'::uuid,'956','997',2906,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e0bb6c41-c987-4f26-9dcd-1afebbf6625e'::uuid,'956','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ab7a15e-3fd7-4c57-bd5c-190bd522dda6'::uuid,'956','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0cbf820-70a0-4e68-93aa-04caad971e61'::uuid,'957','995',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e2428ab-6b15-47b6-bb9b-a4722658095a'::uuid,'957','996',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1a7afaf-73b7-4862-b89d-03f9a252cfe6'::uuid,'957','997',2936,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1f8bb5bb-8a45-4093-bb5f-661809100a54'::uuid,'957','998',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53450b97-36d1-4429-b6c5-ae0dd9ce16f3'::uuid,'957','999',2040,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6d3712a0-c759-43a3-8b84-8c5044c2f3bf'::uuid,'958','995',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb77e1c5-2c3e-42dd-aba9-81730036b221'::uuid,'958','996',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('366c242b-7f3f-4702-9074-400e5bbf6652'::uuid,'958','997',2906,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84209b3f-99d6-4c9e-a9c4-c51212779159'::uuid,'958','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cb1f2666-1b36-45c4-82be-addbd99111bd'::uuid,'958','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d5ba2a2-9afb-4e85-b087-d7f62dcde772'::uuid,'959','995',2954,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33f8a138-2ab8-4d11-86b9-168ff04ca88c'::uuid,'959','996',2954,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bec15aa-d8d5-43fe-9dca-23fc0bb30ba5'::uuid,'959','997',2840,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('728aab7b-6e48-4d43-a3cf-86913597deea'::uuid,'959','998',2167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c383f13b-f374-4d43-af97-d4f52da1c988'::uuid,'959','999',1944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e158c855-1bbe-4eda-a254-d16eabba9ad8'::uuid,'960','995',2862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1598501b-5617-47ff-a488-34dc5209d543'::uuid,'960','996',2862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c7e53afd-d27e-45a8-bdc8-aca168c79ddb'::uuid,'960','997',2748,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5638c60c-6f7d-4cee-b2b0-fa436f818a5d'::uuid,'960','998',2075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2ff0a8d-ec69-4871-a599-182cc734beac'::uuid,'960','999',1817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('149b6699-76fc-4a98-942c-22834b6f54d7'::uuid,'961','995',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9cd510c-fe9f-4566-846a-39f956e5167c'::uuid,'961','996',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfdec56a-4737-45fd-bbc4-771eaf3c5cd5'::uuid,'961','997',2805,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70297ba9-f61e-46eb-bef6-3e4e2c1b329c'::uuid,'961','998',2132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84de9fa3-7ab5-4287-a1ee-4f50fcde907e'::uuid,'961','999',1910,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ee847d28-df8b-466b-9cca-a983fcd6662c'::uuid,'970','995',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2acb1e1a-9585-4742-b3ae-934c3a04e3c8'::uuid,'970','996',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5aa23d3-02fc-42a8-aea7-6cb3426b81ec'::uuid,'970','997',2327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('19267ad4-8113-47a0-8974-2c0dbc17b153'::uuid,'970','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b50e7b0d-23c0-4f0c-906a-aa88b557dd7a'::uuid,'970','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df336bc5-30c2-4cf5-a44b-cba6df98cf59'::uuid,'971','995',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78736c80-cd27-4c1a-8d0b-fff5c8c1f9f5'::uuid,'971','996',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c96692fb-bf9b-431c-bcf0-e7fea20725aa'::uuid,'971','997',2350,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b8a8dfd4-4a88-4d8a-a09c-934941a35901'::uuid,'971','998',1677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('186bb618-c2c8-46bd-8a94-83d3d650c502'::uuid,'971','999',1455,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0426254a-8457-4b8b-9e57-14dea3a85a26'::uuid,'972','995',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('380c48bc-09bf-4d67-b704-62c45ce048f7'::uuid,'972','996',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('934ab814-c8f7-4219-b93c-ebaf430113b4'::uuid,'972','997',2327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72d6bc1c-bbdd-417a-ba71-5fda033fa3f6'::uuid,'972','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c91eaf5a-dedf-408d-a028-50549c7674fd'::uuid,'972','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8786c1e-3428-4ddd-88b8-5726a3aece46'::uuid,'973','995',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6f63d00-9642-43bb-899b-0ef2a5cacecb'::uuid,'973','996',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b31a7abd-4b1d-47f9-a72b-92dd60f9a7a2'::uuid,'973','997',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b984d898-2991-4643-a1db-43bc6443b8d0'::uuid,'973','998',1724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('403239ed-6fde-4573-b177-55a1b6945275'::uuid,'973','999',1501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7a8e6f31-bb5f-4fc5-adf0-f90dc38b19ef'::uuid,'974','995',2626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('02ec434a-d175-4a5b-a05e-6be2a48b82e0'::uuid,'974','996',2626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('242fe901-6dc8-4f93-894a-c9950c5fcd77'::uuid,'974','997',2512,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fe53380-a00f-41c4-8717-24516391ebd3'::uuid,'974','998',1839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('167448d3-223d-4b0b-b573-4bead2c6ded5'::uuid,'974','999',1581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312fad39-cda3-48ba-ad0f-41fbcaad6993'::uuid,'975','995',2714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b650fc32-59aa-4507-b9de-53981ab70b77'::uuid,'975','996',2714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0819c5da-6760-4fa3-894b-0465a72192b4'::uuid,'975','997',2600,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f23b1654-cfb3-4553-87a2-b522994318a9'::uuid,'975','998',1927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d756af3-1ea1-43bc-8175-7c9e3db4dbea'::uuid,'975','999',1705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('54dbdd96-d1f8-4e2d-ad4c-ae5a34f4f752'::uuid,'976','995',2749,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cc247be1-e6e4-4176-8c6b-b9eb99591b1b'::uuid,'976','996',2749,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8265f30-64d9-4fb0-8260-4515cef6c4c6'::uuid,'976','997',2635,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99b79117-47f5-4926-beee-d07c941e8342'::uuid,'976','998',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65a26abd-75c2-484a-abd0-47377b2af00b'::uuid,'976','999',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e5d5b20-ceba-4efa-9040-efef0cb591e9'::uuid,'977','995',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('949a0ff1-250f-462d-8165-84aedc1a9a0e'::uuid,'977','996',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbedf4c6-07a9-45ad-803e-ab8e91ffa6f5'::uuid,'977','997',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e17841c-ba1f-4cf0-b4c0-461faeff9c5d'::uuid,'977','998',1810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('009c6f63-6b1d-41aa-95e0-d35571fff7ca'::uuid,'977','999',1587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ade4d7c5-d25d-45c8-b472-fd025da34e96'::uuid,'978','995',2554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ace1cc70-50cd-4a0f-86e2-cf4cbec6fff5'::uuid,'978','996',2554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30ad42d0-3f92-4c3d-b053-97d6742f0cd0'::uuid,'978','997',2440,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8adbbf84-607a-4325-888d-1843c74ccf65'::uuid,'978','998',1767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f910ca1b-984c-427f-a53e-d75f4662217a'::uuid,'978','999',1545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73f2dac7-4dce-4d96-bc2d-4e2293137aa7'::uuid,'979','995',2662,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('536e1438-5813-46b3-9dea-e591b905004f'::uuid,'979','996',2662,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('124ea666-4db2-459e-a888-6c0ff7039d0b'::uuid,'979','997',2548,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d811eb20-e8f9-4834-8fe6-a7892a84b93b'::uuid,'979','998',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99cf0bf7-1015-4d33-8455-e94b161d480f'::uuid,'979','999',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a9f05b90-4a9a-458c-b71c-1c586e1025e1'::uuid,'980','995',2287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ceb321d5-72a9-4672-a99d-8fb2ca558804'::uuid,'980','996',2287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('584aa83f-9962-40a8-ac55-2ca77d598949'::uuid,'980','997',2173,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4821731e-177e-465b-816d-d9b0d38c2bc8'::uuid,'980','998',1500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfdd7982-c17b-4a34-a04b-e474f13b5c43'::uuid,'980','999',1278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25f1a812-f54c-4f57-af41-f596dcf7ddc8'::uuid,'981','995',2269,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab0109fb-6405-4972-b0eb-34f9d9eb8cfa'::uuid,'981','996',2269,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2d4e3c4d-c5e6-4aa0-8768-f80fbde13422'::uuid,'981','997',2155,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('615e4af9-4756-41f7-874b-41493feb60a2'::uuid,'981','998',1482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7330afa3-3a7e-40b7-a5b2-54794266cfd9'::uuid,'981','999',1224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7b2e5d6e-c0c8-4386-afa1-964434d033ef'::uuid,'982','995',2199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14352f75-789f-4967-a269-e2905cfceef4'::uuid,'982','996',2199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('237596f9-3d38-4957-9641-7ad30a9f1845'::uuid,'982','997',2085,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c44908f7-fa65-4b26-a092-14f67cf0a4ae'::uuid,'982','998',1412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d74977b3-9949-4f95-9a8b-bf7c2987ba77'::uuid,'982','999',1154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e35945fb-df4f-4184-9ea5-547b061bb269'::uuid,'983','995',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea465b3c-a578-4d18-8d86-7ac793caf12c'::uuid,'983','996',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db2c7afc-1f37-41e9-8a49-dd7fa701b4b9'::uuid,'983','997',2186,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f548e0b-3f33-41a0-9c3b-9b8720ae1db0'::uuid,'983','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36b22b11-5724-41ef-9648-4cc7bbd63ad0'::uuid,'983','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fe855488-ef5b-490b-8b71-8bb3fa2b48ca'::uuid,'984','995',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('495dd38e-e155-4134-bea9-f1aca35cebdc'::uuid,'984','996',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4d51642-1a85-4a9d-baf6-f8f3fc2e8c67'::uuid,'984','997',2186,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5c3ae76-7ded-4729-8438-5671ed459fc9'::uuid,'984','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63037344-073d-414e-b6f0-bb3906a94bbc'::uuid,'984','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fa80007-cc09-4cb8-81fe-ed56a644a800'::uuid,'985','995',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c76a7ef-cee2-4cc8-88ef-818c15e9ad9a'::uuid,'985','996',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('107ac44d-3931-405b-9894-a7bd1f9f99f6'::uuid,'985','997',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4435924e-75a3-4ef0-9e11-45eb95716387'::uuid,'985','998',1560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd431a9a-c65a-4f81-9538-e3a73948da04'::uuid,'985','999',1337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('da191272-f540-4c3a-8193-853241d0f314'::uuid,'986','995',2447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7c79c69-0905-4443-b392-4ae81a3a8a31'::uuid,'986','996',2447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6f6e232-4451-40e9-9fd3-2e001266f336'::uuid,'986','997',2333,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44578e46-55a0-4deb-a605-9aa8d30a0df6'::uuid,'986','998',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8140c08a-48d3-453a-b413-5342b1b35148'::uuid,'986','999',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d58b652-08da-432c-97ec-6cefa9d39947'::uuid,'988','995',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d01dcbf-ee4b-47b6-ba37-09c77a42a4da'::uuid,'988','996',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27f0eee4-afca-4388-a157-83bd7cac8f03'::uuid,'988','997',2282,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bc1aef9-3863-4973-bda7-8c1195296bdc'::uuid,'988','998',1473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cfb0f14-3de8-4406-a31a-377746f3e638'::uuid,'988','999',1250,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('531cdde9-aba8-48a9-ba99-ad02405ba55c'::uuid,'989','995',2399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2feae6f-5d88-4565-8dcc-e778556a17a2'::uuid,'989','996',2399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('63fbd49b-7876-418f-b473-59c16bb8eaec'::uuid,'989','997',2285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90e6f7c4-c08d-44c0-ad11-94eedd993ad7'::uuid,'989','998',1354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1808028f-6342-41dc-bd1d-b2f9697d0c37'::uuid,'989','999',1227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fa4e09e9-a94c-4810-8555-ee3605ed8fe0'::uuid,'990','995',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10148f26-4791-495d-b859-a0187eb212a6'::uuid,'990','996',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e77e6827-cb04-415c-8112-59e55c398462'::uuid,'990','997',2254,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8bdd8590-2427-4126-bbee-54736be4f677'::uuid,'990','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16f8e729-0878-47f1-a212-a22b4ba5bde8'::uuid,'990','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('191e629a-cb16-497f-b985-0f11425b3e17'::uuid,'991','995',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f00adb20-d63f-4416-b1dc-babb8e713afa'::uuid,'991','996',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8850376b-e8dd-465f-81ef-92a6017f44da'::uuid,'991','997',2218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80cc80c5-bed1-4155-b012-22ea3ba76b51'::uuid,'991','998',1546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5445b0c2-0b76-4a6b-8a89-bb60788397bb'::uuid,'991','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dfbbea7-0503-4940-94e5-c150c2806b3b'::uuid,'992','995',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8951f6ca-316c-479d-b032-e897a440e130'::uuid,'992','996',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2a67e0d-afa7-42ea-b13e-536a2053a1a1'::uuid,'992','997',2254,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('414f0165-1087-40f3-83fd-69fa9d9caa83'::uuid,'992','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b20c0f3f-e17c-4dfd-ba5a-3a29b962c3ee'::uuid,'992','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('55557a49-403f-4bc0-b263-672c6daa0475'::uuid,'993','995',2413,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5afaa03-b8d4-4b7f-b47c-1a9a96bc80d0'::uuid,'993','996',2413,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a3aadf4-d1f2-4b3d-97fb-528832f21b32'::uuid,'993','997',2299,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('05c7f3d5-a027-4799-bb5f-cb80293eca61'::uuid,'993','998',1626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ee30ae6-7bac-475c-9492-c52e44fa72e0'::uuid,'993','999',1404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e98289e-97eb-48a0-b19e-668ede74690a'::uuid,'994','995',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ef44264-5fdc-42a0-af55-720459549963'::uuid,'994','996',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be0835f0-7119-489b-8df5-a1259251a538'::uuid,'994','997',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b19f547-e211-4be5-b59b-ad03fb852fba'::uuid,'994','998',1681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd00a1c7-c25e-4be9-a871-be904062680e'::uuid,'994','999',1458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f6378646-8ad2-4748-a395-12f945119023'::uuid,'995','996',329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e032eb39-1392-4143-9e37-a830ab5107c2'::uuid,'995','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f3b250e-23b2-44a3-839c-3997e54c246a'::uuid,'995','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aac845e4-d3c9-4707-8c37-35046af8c9d2'::uuid,'995','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce299517-637c-4ece-a514-1d26a4441f99'::uuid,'996','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa50ed06-8b18-4288-8035-c1a381c012de'::uuid,'996','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa818f47-e945-42dc-8a9c-8ce2340dd6b4'::uuid,'996','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6993533-2857-4ed4-b720-dfeef114f24d'::uuid,'997','998',1029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59280b50-2227-401b-8a14-0e9847a33fc0'::uuid,'997','999',1156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('297a3af8-5a07-4d88-b515-c359085b5eb9'::uuid,'998','999',316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ON CONFLICT (id) DO NOTHING; \ No newline at end of file diff --git a/migrations/app/schema/20241220213134_add_destination_gbloc_db_function.up.sql b/migrations/app/schema/20241220213134_add_destination_gbloc_db_function.up.sql new file mode 100644 index 00000000000..0375f64d044 --- /dev/null +++ b/migrations/app/schema/20241220213134_add_destination_gbloc_db_function.up.sql @@ -0,0 +1,90 @@ +-- this function will handle getting the destination GBLOC associated with a shipment's destination address +-- this only applies to OCONUS destination addresses on a shipment, but this can also checks domestic shipments +CREATE OR REPLACE FUNCTION get_destination_gbloc_for_shipment(shipment_id UUID) +RETURNS TEXT AS $$ +DECLARE + service_member_affiliation TEXT; + zip TEXT; + gbloc_result TEXT; + alaska_zone_ii BOOLEAN; + market_code TEXT; +BEGIN + -- get the shipment's market code to determine conditionals + SELECT ms.market_code + INTO market_code + FROM mto_shipments ms + WHERE ms.id = shipment_id; + + -- if it's a domestic shipment, use postal_code_to_gblocs + IF market_code = 'd' THEN + SELECT upc.uspr_zip_id + INTO zip + FROM addresses a + JOIN us_post_region_cities upc ON a.us_post_region_cities_id = upc.id + WHERE a.id = (SELECT destination_address_id FROM mto_shipments WHERE id = shipment_id); + + SELECT gbloc + INTO gbloc_result + FROM postal_code_to_gblocs + WHERE postal_code = zip + LIMIT 1; + + IF gbloc_result IS NULL THEN + RETURN NULL; + END IF; + + RETURN gbloc_result; + + ELSEIF market_code = 'i' THEN + -- if it's 'i' then we need to check for some exceptions + SELECT sm.affiliation + INTO service_member_affiliation + FROM service_members sm + JOIN orders o ON o.service_member_id = sm.id + JOIN moves m ON m.orders_id = o.id + JOIN mto_shipments ms ON ms.move_id = m.id + WHERE ms.id = shipment_id; + + -- if the service member is USMC, return 'USMC' + IF service_member_affiliation = 'MARINES' THEN + RETURN 'USMC'; + END IF; + + SELECT upc.uspr_zip_id + INTO zip + FROM addresses a + JOIN us_post_region_cities upc ON a.us_post_region_cities_id = upc.id + WHERE a.id = (SELECT destination_address_id FROM mto_shipments WHERE id = shipment_id); + + -- check if the postal code (uspr_zip_id) is in Alaska Zone II + SELECT EXISTS ( + SELECT 1 + FROM re_oconus_rate_areas ro + JOIN re_rate_areas ra ON ro.rate_area_id = ra.id + JOIN us_post_region_cities upc ON upc.id = ro.us_post_region_cities_id + WHERE upc.uspr_zip_id = zip + AND ra.code = 'US8190100' -- Alaska Zone II Code + ) + INTO alaska_zone_ii; + + -- if the service member is USAF or USSF and the address is in Alaska Zone II, return 'MBFL' + IF (service_member_affiliation = 'AIR_FORCE' OR service_member_affiliation = 'SPACE_FORCE') AND alaska_zone_ii THEN + RETURN 'MBFL'; + END IF; + + -- for all other branches except USMC, return the gbloc from the postal_code_to_gbloc table based on the zip + SELECT gbloc + INTO gbloc_result + FROM postal_code_to_gblocs + WHERE postal_code = zip + LIMIT 1; + + IF gbloc_result IS NULL THEN + RETURN NULL; + END IF; + + RETURN gbloc_result; + END IF; + +END; +$$ LANGUAGE plpgsql; diff --git a/migrations/app/schema/20241227153723_remove_empty_string_emplid_values.up.sql b/migrations/app/schema/20241227153723_remove_empty_string_emplid_values.up.sql new file mode 100644 index 00000000000..630b21b4522 --- /dev/null +++ b/migrations/app/schema/20241227153723_remove_empty_string_emplid_values.up.sql @@ -0,0 +1,4 @@ +-- removing empty string values from the emplid column +UPDATE service_members +SET emplid = null +WHERE emplid = ''; \ No newline at end of file diff --git a/migrations/app/schema/20241230190638_remove_AK_zips_from_zip3.up.sql b/migrations/app/schema/20241230190638_remove_AK_zips_from_zip3.up.sql new file mode 100644 index 00000000000..0316d9fb4b4 --- /dev/null +++ b/migrations/app/schema/20241230190638_remove_AK_zips_from_zip3.up.sql @@ -0,0 +1 @@ +DELETE FROM zip3_distances WHERE to_zip3 IN ('995','996','997','998','999'); \ No newline at end of file diff --git a/migrations/app/schema/20241230190647_add_missing_AK_zips_to_zip3_distances.up.sql b/migrations/app/schema/20241230190647_add_missing_AK_zips_to_zip3_distances.up.sql new file mode 100644 index 00000000000..5c89154c374 --- /dev/null +++ b/migrations/app/schema/20241230190647_add_missing_AK_zips_to_zip3_distances.up.sql @@ -0,0 +1,5005 @@ +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7e10f16e-52ba-41c6-912d-c64de6bac931'::uuid,'010','995',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('25b5456d-9430-42bc-8d92-393732d74a13'::uuid,'010','996',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80f7f10c-72d4-458a-acdd-31276d906be0'::uuid,'010','997',4318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c62a1c34-2fc9-4ed8-adb8-5a5519633537'::uuid,'010','998',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8438313-c130-4369-b633-99d208b740a8'::uuid,'010','999',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16d46153-d501-4847-8eb0-21c2e02f93be'::uuid,'011','995',4428,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e5ebea1-b88d-4b21-9c2d-0c422185479c'::uuid,'011','996',4428,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8d8ec08-dab6-47f7-b1e9-014f8121dd79'::uuid,'011','997',4314,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('894e9d41-3017-4b90-8ea5-4834ceb55dbd'::uuid,'011','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e99a6ca-35eb-4067-9a46-8a405a1dd771'::uuid,'011','999',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3d912b29-c5fd-42ce-86c2-357423ad341e'::uuid,'012','995',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7028c3e3-658c-4642-bca5-f61bb557b539'::uuid,'012','996',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1585b06f-f638-419d-8753-d3b8ff508733'::uuid,'012','997',4268,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f29c823-6e97-4e82-8d3d-eb3a99ad3502'::uuid,'012','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1c36b29-a964-4fac-9521-0226bc3de513'::uuid,'012','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('231eb38f-86a7-49dd-b3d9-4b4b566b0dfb'::uuid,'013','995',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30ea7960-4225-43aa-aec4-e2f11d57b03c'::uuid,'013','996',4693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe6c65d7-f24d-47c4-897e-f7b439661e9d'::uuid,'013','997',4300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb4d8727-3a63-4581-8478-99178eceae53'::uuid,'013','998',3852,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7a1ca72-4282-4194-b17f-849d2ac8c15d'::uuid,'013','999',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ac36b7b5-603e-49f7-ab17-7c0a7ab0846d'::uuid,'014','995',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fdaac4a-ebe5-4c60-9cbb-60129773a7da'::uuid,'014','996',4721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0154312d-334b-456b-9a88-e3242268d13e'::uuid,'014','997',4328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f307f161-034d-41ae-bbfc-eabb58639e9f'::uuid,'014','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4191c495-c3ad-4797-b389-a64377e0f6cc'::uuid,'014','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54cec149-d14f-4b5d-aa23-918fa0d6b839'::uuid,'015','995',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4cd12d07-fd20-4024-936e-e3fe047b962f'::uuid,'015','996',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3dba105-9c39-4ad7-8f2a-761fdd18d024'::uuid,'015','997',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09dd3498-1e2a-46b5-b5bb-06d275f902de'::uuid,'015','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e325c4b-ead2-4c45-b39f-f7f0b129e718'::uuid,'015','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('41667efb-4890-4538-9bfd-04e60124f29b'::uuid,'016','995',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df57dfbb-a3d1-4533-8837-205a286e7ff4'::uuid,'016','996',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f0b628b-d400-42c6-b956-b1bfc65a7985'::uuid,'016','997',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93d1c10b-db1a-4255-bdfc-2b69c3f65722'::uuid,'016','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd10b3c3-f70f-42a2-b7f5-c1634d20f2c4'::uuid,'016','999',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29d19b23-1a05-4bbc-be6a-81691ca7790a'::uuid,'017','995',4468,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad23741a-eb3d-4f81-83ec-ed3875fa1dc1'::uuid,'017','996',4468,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d270aa63-3433-43bb-baf7-c32eb072c2d5'::uuid,'017','997',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5729abad-cd5d-4dfb-8697-811c4d8c2a01'::uuid,'017','998',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52e93656-77d2-490b-ae8f-b01ca44cb5f8'::uuid,'017','999',3647,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('109a3e0c-2bda-416d-adc6-fb3fe47c2f28'::uuid,'018','995',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66f9922c-6ceb-4713-8183-dab65c3df0db'::uuid,'018','996',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e86ccef-d4f8-4a1c-abc8-3e698c90c5cd'::uuid,'018','997',4332,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('041bc235-5538-436e-b336-06ae1586a56f'::uuid,'018','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb8123a0-a309-4a16-9c88-67ebaccdd56a'::uuid,'018','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a123d9c-5b6b-4081-9956-82adb8e2fea7'::uuid,'019','995',4461,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ecd0fc12-d8d2-46ec-bfc3-68a4ff823d80'::uuid,'019','996',4461,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2befefae-edd6-4dfd-b050-fc5e57d58599'::uuid,'019','997',4347,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('752f897f-a538-4689-9dd0-10df33ddf447'::uuid,'019','998',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4717fe63-4847-467a-b5af-cd0ea227b250'::uuid,'019','999',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1beb9543-fbfe-44de-a05b-3662ac9e9edf'::uuid,'020','995',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb8fe68f-8228-4626-925a-fc5d14d5f729'::uuid,'020','996',4758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36163852-b9c2-4471-8d44-9169b0dcf5ca'::uuid,'020','997',4365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dff756cc-68b9-4ca7-a149-1ba3257955d6'::uuid,'020','998',3917,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bea1c968-30a3-4d75-ae10-e30f139f8ae4'::uuid,'020','999',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad15e112-f156-4cba-be31-72a193781be9'::uuid,'021','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('707712ef-3e94-4ae1-968a-eb5d3e124a89'::uuid,'021','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55aa9f05-5fbf-4bbb-ac9f-14be19fe9cf6'::uuid,'021','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43bffcc4-13a9-43a7-be29-10a49263b0ba'::uuid,'021','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27daa3e3-9d4a-4f21-941b-2c3c2ade1992'::uuid,'021','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('575c5e33-cbfd-4f23-a328-4b4c28ad6d35'::uuid,'022','995',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55c3f82e-6942-4182-9009-67fad4262aef'::uuid,'022','996',4745,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('527b5256-f3ff-4bf9-8a42-fcf63c25c23a'::uuid,'022','997',4487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75797cf2-8c72-4030-bdfa-15e779deee73'::uuid,'022','998',3903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29b732b6-f43d-474c-8e0d-8a301614d80e'::uuid,'022','999',3680,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84901878-5112-4040-95b3-3491bd60e59c'::uuid,'023','995',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d2a1682-b6af-4849-8a62-15e4aa488fee'::uuid,'023','996',4773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39960dbe-10d1-43b2-aff8-0deeeea95986'::uuid,'023','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b9fab0a-b371-4bc1-913f-7b52992ce666'::uuid,'023','998',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c932d332-363a-4349-9d85-b57da5188dca'::uuid,'023','999',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c3298bd9-a700-4ff6-80b4-d028939d1bb1'::uuid,'024','995',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ac7f1b1-b3d8-4011-9333-68939dbfd23f'::uuid,'024','996',4767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6f2b525-fdc3-4b4a-b227-cec597637681'::uuid,'024','997',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5037eb49-ca6f-4e7c-be87-2c6d386d36ca'::uuid,'024','998',3925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fec07b04-954e-4b36-af53-7a8ff1278535'::uuid,'024','999',3703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f318f19-2029-4022-a0c1-738919551bdb'::uuid,'025','995',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c4dc4ca3-403d-4f1c-9e08-15244ad23b6f'::uuid,'025','996',4802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c019c70-eb46-4d57-ab28-244cd3d5e4fc'::uuid,'025','997',4544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38a4cf6a-cfcb-45d7-84bd-2ed04844f4d9'::uuid,'025','998',3960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1b0ff3b-c932-4489-aeb9-703127328332'::uuid,'025','999',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8e9b1e76-27c5-451a-ac79-d0b1abfab03b'::uuid,'026','995',4538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1205ac26-5dbd-41d1-9568-e8d72614cd1c'::uuid,'026','996',4538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85609e5f-0fa9-4025-90ce-2e2637ae4cb3'::uuid,'026','997',4424,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b21c9f26-6670-4d0d-ab81-7685e9095cd8'::uuid,'026','998',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edbd084b-e275-44ab-ad96-28070b02017a'::uuid,'026','999',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cf56b05-9b6f-460d-9e41-77f748b561e5'::uuid,'027','995',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60983cb5-687b-452a-93d0-75af1a7bd8ec'::uuid,'027','996',4796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('590e01d7-611c-471f-b886-a63f2377e240'::uuid,'027','997',4403,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8fee2bc6-17f1-4397-be05-40ce49b17ed7'::uuid,'027','998',3954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e43d778a-e963-40e3-9438-c73c87eed163'::uuid,'027','999',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bd3d8556-e904-4f5a-ace7-bbdb369204bc'::uuid,'028','995',4511,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9eebf50e-da20-411d-bf67-05fa15c41326'::uuid,'028','996',4511,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eaa42ebc-b794-40be-b31f-221f11b0426c'::uuid,'028','997',4397,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d9fa6aa2-5f95-41d9-9374-ab862016f83b'::uuid,'028','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1123f091-1c50-47fb-8057-3e0a5cb52872'::uuid,'028','999',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0ebb6ec-668d-4282-979b-e092a5dcd946'::uuid,'029','995',4508,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea105ec6-c1d0-44f2-850f-535e88162ae7'::uuid,'029','996',4508,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eda0bcb1-38c8-4888-b8ef-5461b674ad74'::uuid,'029','997',4394,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('108c07e1-88c7-4beb-91ce-860d359f5859'::uuid,'029','998',3946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('554453cf-f6f8-4aef-a813-30c0d86a1735'::uuid,'029','999',3688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('304e11b2-87eb-4374-b950-b73377da922e'::uuid,'030','995',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f274a23b-1f47-421a-b24f-b15f263dcceb'::uuid,'030','996',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9c260b47-a2eb-4045-93a3-fdf795c2455e'::uuid,'030','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a784f80-6c6a-4ebd-b31c-acadadfb9acf'::uuid,'030','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb367795-e573-4da2-9cdb-f10038ffc169'::uuid,'030','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c38530e9-28e6-42dd-84b1-0c0ca40ea912'::uuid,'031','995',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('771108fd-7e9f-4c4a-9a9c-d79dc6c67d7b'::uuid,'031','996',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ef989e94-ac35-416d-9501-7e2399db94ee'::uuid,'031','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44016cfb-e114-4644-843d-7ce9e6b633b8'::uuid,'031','998',3854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a145a8b8-baae-4016-9da1-a61842546dd4'::uuid,'031','999',3632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb01b866-5838-4318-967c-b9c29a0c7501'::uuid,'032','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cc61834-fdcb-4730-b645-a82f3f251139'::uuid,'032','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9bd8ac0-274d-49d3-8e54-d2a23cd70064'::uuid,'032','997',4397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69d8a82e-2f9b-434e-95e2-682d3f3fb21c'::uuid,'032','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da413f37-b214-45e4-b538-1fd0872f6061'::uuid,'032','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc6c9afd-5e30-4a85-bb33-dbfe992e3f34'::uuid,'033','995',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f56c80e0-4e07-4494-9f4d-13690ff05d45'::uuid,'033','996',4681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('860def77-c65f-4c1d-b9eb-a815ae48b7d0'::uuid,'033','997',4424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00ba3ede-1430-495d-b6b0-e1cd0d2a2582'::uuid,'033','998',3839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5fbdfc4-3628-4894-b132-731286f0703f'::uuid,'033','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cf2127bb-e2a2-46cf-bfb5-ea213ffbca91'::uuid,'034','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a55782b0-d4dd-4fb4-9cba-2bdbf862c0bb'::uuid,'034','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9189a37d-c708-4fae-96ce-a734a5a91d73'::uuid,'034','997',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e39e2254-f233-49b1-999c-6961a27ce2aa'::uuid,'034','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fbef10b-3b96-4d91-84d6-6f03ad7f974a'::uuid,'034','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41ff3516-b6ff-4eac-8db4-4379e2d609a4'::uuid,'035','995',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4188e064-785b-4a8c-ac30-c8df36e8a69c'::uuid,'035','996',4591,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d935096f-54f0-4a2c-896c-9101dc3c333f'::uuid,'035','997',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0221a2ac-3cc3-4e20-b54b-3e5be6f35283'::uuid,'035','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67a30c66-e631-4eee-b2c3-681f88998838'::uuid,'035','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('edc51d86-0b41-4043-bb69-545e05c3a497'::uuid,'036','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('439f5c89-7e8e-442d-a67e-d1b7a0099f42'::uuid,'036','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c18b33a7-6820-4727-b1cd-b3e9c8ed3565'::uuid,'036','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acb7dba1-3b4c-4f66-9982-1ac3f2b35f1b'::uuid,'036','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('957a725f-7f62-4c82-aa55-9b9c86e2a5b0'::uuid,'036','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e201a19-fd30-48c4-ab20-cf5761d36daf'::uuid,'037','995',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2f8fbb99-0b9e-4657-928e-ae36bd54dfdf'::uuid,'037','996',4346,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc29ba7f-e7a0-46f2-b302-f6dc9f8d9a41'::uuid,'037','997',4232,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('627f8a8d-c572-4ba6-ba69-1c0bee437842'::uuid,'037','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d92a7af4-f29d-4d38-93b2-ee55b3c924f1'::uuid,'037','999',3561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('08fdd44a-d806-418a-9dc4-b14b32706bda'::uuid,'038','995',4418,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c03ad42e-7022-4835-bd1c-8644f683b442'::uuid,'038','996',4418,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84298760-fe46-43de-a2f1-b1613fa1fe3b'::uuid,'038','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54060ed6-d97d-41fd-be18-cff0a856bc2d'::uuid,'038','998',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3be61eba-09d0-4bba-a418-59a0c7af603f'::uuid,'038','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fbd9678-52fd-427c-a405-bdc2baff4d13'::uuid,'039','995',4451,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53302c85-78a3-44bf-bfcd-b23e10e9a62e'::uuid,'039','996',4451,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8819784-c760-4ad5-a256-8ce0cc63a3b0'::uuid,'039','997',4337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('606200ea-4d9b-4ad3-b5b7-766fdcbddadb'::uuid,'039','998',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b574cfa6-0b9e-4291-9215-db4b31d3f2a8'::uuid,'039','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('507bcb4f-63fe-4175-8a64-d00d37962e74'::uuid,'040','995',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c7d803af-32d1-45b8-8301-f11cd289426c'::uuid,'040','996',4417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e41a7091-1bff-4191-bf34-fce1296a2da5'::uuid,'040','997',4303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('55336cd9-3707-4bf4-a71d-160d72f3fa92'::uuid,'040','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a2636bd-ea9a-4f63-9744-812fcc2d4e15'::uuid,'040','999',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8402a6c2-4ef0-479f-8c88-fdadb39afe55'::uuid,'041','995',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31354e56-3c9b-43fd-830f-e0c98d421762'::uuid,'041','996',4432,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a3bc341-ce99-4e34-bc1e-8c7dc9626b23'::uuid,'041','997',4318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70be5ff2-e62c-4837-b456-6fe36d086d02'::uuid,'041','998',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cbbb707a-92e0-471e-811d-293baccd3f3f'::uuid,'041','999',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f07485fd-3353-45a2-90a2-4b562a5c294f'::uuid,'042','995',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('701ffab3-fce1-4774-828e-e81e97ebb3e3'::uuid,'042','996',4657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d12c0ad0-67d7-41d6-9abf-4eb25b96a331'::uuid,'042','997',4399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aeaa3a31-7fff-4c1c-ab09-0b7d5eafd8bb'::uuid,'042','998',3815,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e89da113-f614-4018-9419-b3fc4e783821'::uuid,'042','999',3592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b79011d7-66a1-45a4-91d3-9380ee9c649c'::uuid,'043','995',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d016e13-2921-4cf8-8a05-6f152b29783d'::uuid,'043','996',4700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73c99482-9f48-4e5b-8c23-e6c4d4f8ea5e'::uuid,'043','997',4443,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1727c04c-3a63-4497-8a8f-80f8a24145e8'::uuid,'043','998',3859,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a57a624-33d6-427e-9498-47eb9178ed26'::uuid,'043','999',3636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d927366a-79e1-47ab-9e21-ffe96438605e'::uuid,'044','995',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf3d9336-c729-4753-b64c-b16634903bb4'::uuid,'044','996',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a16b2ee4-45ff-4625-87e3-f42970367a10'::uuid,'044','997',4330,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0bb77d3a-a5df-431e-b7c7-bd131356f206'::uuid,'044','998',3881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('539fb784-eb15-4239-a703-727d35e6e541'::uuid,'044','999',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fca585f5-829c-4d72-9106-6ec718c3bc5c'::uuid,'045','995',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2e51c53a-b24a-4673-99eb-c8d19d45e12a'::uuid,'045','996',4444,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6b7bef3-2154-4036-b80a-cd2d52a96410'::uuid,'045','997',4330,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7b2c8971-01eb-4823-a190-1239b56c8b82'::uuid,'045','998',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39dcdc99-a113-4f79-81ce-f5566e4966e7'::uuid,'045','999',3624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fc12a2f9-3f2d-4c8d-ba4f-8b6198dae2e6'::uuid,'046','995',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e95afbd7-2fd0-4b97-96ed-fa99a066d659'::uuid,'046','996',4784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7172e1b-169b-4b62-bd41-68cd0b84ec38'::uuid,'046','997',4391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a395e2f-decc-461d-ac5d-77a72f37feeb'::uuid,'046','998',3943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03551858-f277-4b42-8bec-278ef5ed6478'::uuid,'046','999',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c32350c-ca01-428a-8471-91bf24103474'::uuid,'047','995',4516,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4857a437-9b55-4065-8adc-84ce50fad86d'::uuid,'047','996',4516,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5cb7c4b1-4821-485f-8fa1-d05faf4be67f'::uuid,'047','997',4402,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2479c8ff-05d9-4479-9dfe-90200c477db2'::uuid,'047','998',3953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f4adb4d-0ac3-4125-810d-79fe308e14e2'::uuid,'047','999',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('33de5a47-a837-445e-9e3e-4cce9a23be44'::uuid,'048','995',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a663e0cd-ae0d-4b78-81e4-6d2111e545ca'::uuid,'048','996',4460,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('898b6ea2-dbbe-4c4c-88e4-2d262110bdfc'::uuid,'048','997',4345,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f81cf056-5dcc-4073-a339-bf58bb959beb'::uuid,'048','998',3897,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39c9c7f0-7fee-4039-9908-f14d42f7e845'::uuid,'048','999',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7859a8bb-f171-4832-b891-9b128ac40895'::uuid,'049','995',4386,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eaea5f0f-b13c-4866-ba95-e814d2d33489'::uuid,'049','996',4386,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72dddd51-f7e7-4038-9b76-e3dd3d33e053'::uuid,'049','997',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('64d02180-174e-45da-b990-ad9ae6acba85'::uuid,'049','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47c25b99-95fb-4140-ac25-cc2cf3fc0580'::uuid,'049','999',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f70aa5ca-63aa-4ff9-bf8c-2a62287a4f02'::uuid,'050','995',4327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3610fa09-3fc9-425d-9459-6bfca23130e9'::uuid,'050','996',4327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db99e121-4ceb-4108-bf4c-352bdca6d4ae'::uuid,'050','997',4213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('788f3058-661c-4728-88b9-ae14ec7e918a'::uuid,'050','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68a33546-62c9-4f09-9418-d75eb0ad1f05'::uuid,'050','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f872255-fab8-4d0b-a106-16968b25d8f0'::uuid,'051','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dbf6b1c-e3ff-42d3-8197-7c7b8bf1d7dd'::uuid,'051','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43aba28f-90c9-4d99-bbcf-d155e0c11069'::uuid,'051','997',4380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba55e638-f6b4-47db-b3f6-334c3a386e9c'::uuid,'051','998',3796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c41b9706-40bd-4cac-900e-f22429d1d6f1'::uuid,'051','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6018a3dc-dfe1-402c-a080-eee2577f2ae4'::uuid,'052','995',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2ccdebf-bcdc-405f-b58b-0108b08aaf9f'::uuid,'052','996',4634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff63e3f3-9023-46c1-85ad-3357bb6c9dff'::uuid,'052','997',4377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1760aff9-81fc-4c81-835a-72e264b8be81'::uuid,'052','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b57bc0e-f095-43e3-9822-563ae214e94f'::uuid,'052','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('009b75bd-59fa-4fd9-964c-1d1ba59ec486'::uuid,'053','995',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2bd5ef2f-d86e-4a6c-ab31-6ca8a5c9df82'::uuid,'053','996',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('869a76ea-2461-4640-bab5-529f68d116fd'::uuid,'053','997',4260,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1018dab3-11d8-4713-aef2-e3dba80bfacb'::uuid,'053','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed604122-6288-4210-9882-23f83c6a53a9'::uuid,'053','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('01cca694-9d1e-4e1a-8344-448ad8111e4e'::uuid,'054','995',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da3b6de4-34dd-46c6-886b-8cba35ce5da6'::uuid,'054','996',4532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e2d84f0-fb1b-466a-8f55-a6e9a1fe8a44'::uuid,'054','997',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1542dfa-48dc-4bfd-8497-07af8384df28'::uuid,'054','998',3690,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ece731f-8a57-41e3-85b8-485dbc051183'::uuid,'054','999',3468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a94e09bc-7da1-4124-9ca2-f9b1c1a799d8'::uuid,'055','995',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2b680fb6-a0f8-474b-8118-16890438a616'::uuid,'055','996',4446,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dc8667d5-2fb5-4260-913d-ddf81e728b22'::uuid,'055','997',4332,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d0be4d32-7de9-4357-b107-2f3ce08fc6e5'::uuid,'055','998',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31cef20d-23a0-4a68-938b-391c1a8893eb'::uuid,'055','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f49cd618-80e7-4506-b4ff-215802b64be7'::uuid,'056','995',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eb37af78-25fb-4cae-b92b-4bafc394e108'::uuid,'056','996',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6e6467c-b761-433d-969b-780c4f5a4663'::uuid,'056','997',4175,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7522f2ba-b855-4739-94c9-96c85d84f580'::uuid,'056','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5b93935-5d76-4ef3-9920-6d705191885c'::uuid,'056','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a2fa4f9-249a-41dc-b371-cb052c482eb7'::uuid,'057','995',4321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('086da356-5f54-4214-b5f8-c5161c2c4861'::uuid,'057','996',4321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95289703-23ff-4847-b113-f4b7a81261c3'::uuid,'057','997',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a97be481-ef69-49d8-9082-99913f2da392'::uuid,'057','998',3758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea3c2aa4-0c2d-40d3-a92b-302a946bb5e4'::uuid,'057','999',3500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('161858d4-9649-43a8-9fe7-4933eaaadba5'::uuid,'058','995',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('508150b0-bb45-4da1-bbe9-2f4fb6b8430c'::uuid,'058','996',4289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5154206f-c601-4136-8dba-a0f8d9ae2fe6'::uuid,'058','997',4175,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('559388a0-b6dc-4018-9f72-d02fe3453723'::uuid,'058','998',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c720619-3d1e-4de4-8393-2121b1e20cb0'::uuid,'058','999',3469,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('839012d2-ebc8-4ac8-b4f9-80b5d23e8582'::uuid,'059','995',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66ff78b9-d042-47e4-8d95-d0addbc6ddd2'::uuid,'059','996',4590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1cea99d-68eb-4897-8f51-a95e7f5bfe21'::uuid,'059','997',4333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('49027fa6-de2b-4eee-8e6f-3d160d90a60b'::uuid,'059','998',3749,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f15152b-f0ce-4beb-88a2-c1dc14ec5329'::uuid,'059','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2a13c0e0-8f05-46c6-8bda-66b23b7e814d'::uuid,'060','995',4442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d0dcdf6a-6a72-4f90-9119-d30c6b8d35f8'::uuid,'060','996',4442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5633bee6-050d-4b61-a15b-f4e56cd142d8'::uuid,'060','997',4328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('044831e6-92f5-4dc4-8d16-f13f75ecc3e8'::uuid,'060','998',3880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a87a204-064f-448b-b172-6876453c09f4'::uuid,'060','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97ba64c8-307a-49ae-a898-ac1a8f921f15'::uuid,'061','995',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('281b6fde-f3b5-4d0d-8333-c706cbec5e71'::uuid,'061','996',4732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bcdb707-5d3b-4a59-904a-313946128dc9'::uuid,'061','997',4339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('be917bc5-a34d-4e6e-ab1f-44df1e464eb8'::uuid,'061','998',3891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f5109ea-08b0-434b-9de2-d825100f8cfe'::uuid,'061','999',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4ce9b339-e929-46a0-9ced-b4848be1bea7'::uuid,'062','995',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3fc6efe5-9161-43b8-b583-978d923c0640'::uuid,'062','996',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3721f57-3771-4cb6-b756-29e4bd5213c3'::uuid,'062','997',4363,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dac648a7-1e81-475a-bd5f-256c4ed01bee'::uuid,'062','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59ee21c8-a05d-4c10-91f3-076bc990063b'::uuid,'062','999',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65d9068c-e561-4f9c-bf72-8a9361353053'::uuid,'063','995',4485,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4dfd6ac-bf2e-47f5-9b57-5b138605afbb'::uuid,'063','996',4485,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3ec92a7-6237-45b3-b247-d69ddb13de47'::uuid,'063','997',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2a23bb0-6206-4447-bc0e-90390ee3c4ae'::uuid,'063','998',3922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce480feb-986f-43c5-b70a-469795dc57e2'::uuid,'063','999',3700,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8ce5a6fe-f708-414f-a8f1-89b97182ed10'::uuid,'064','995',4443,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('76aaba36-1d6a-4c9a-be65-e1a5098293b9'::uuid,'064','996',4443,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb88ce13-ab76-4226-a866-d053bd5f8f6f'::uuid,'064','997',4329,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('20607825-f03a-4473-bc69-6c93674f76c4'::uuid,'064','998',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61bff6b5-8560-4906-8264-9162c1e6f16c'::uuid,'064','999',3623,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74a9cb4b-2dfe-4902-8207-891e36251da9'::uuid,'065','995',4431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fcba035e-0b3a-4aac-adae-5d50e572f26b'::uuid,'065','996',4431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dea1f6ba-a236-4522-9dc2-4600fa1779e5'::uuid,'065','997',4317,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f99d969-ba61-4e10-a855-b6bcfea21a28'::uuid,'065','998',3868,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('308a7fd1-65ca-4653-8fac-d168ede3f6ba'::uuid,'065','999',3645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('56811aae-9b4c-453c-b990-686fc4c3b19a'::uuid,'066','995',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a62ce0d-f166-4bd8-be24-7f9e82b5ab82'::uuid,'066','996',4691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7108fc0-3fc9-46a8-800a-5d9dbf7ec50a'::uuid,'066','997',4434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e45c082a-be19-49ed-b832-e4a8b08a2a81'::uuid,'066','998',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d00be2e5-31ce-4969-840a-1de490fbefbd'::uuid,'066','999',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ed5130a-ce5a-4ed2-a84d-f41319d1902b'::uuid,'067','995',4426,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53c42208-8830-45e0-a728-80da93abdf26'::uuid,'067','996',4426,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9a8d895-c61e-4e01-b8c7-b5226a57076f'::uuid,'067','997',4312,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9eb0522-9dba-456c-ac23-75214964cfcf'::uuid,'067','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('101e9102-37e6-472c-ab6f-60180799c9a5'::uuid,'067','999',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8311ff47-aacd-4fae-a470-b1bf3ba8d092'::uuid,'068','995',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bdca919-666c-461e-b027-d656ab0bc645'::uuid,'068','996',4686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8da8ca0b-c805-4c36-b4ca-0b51a0931086'::uuid,'068','997',4293,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a1ed2aa-4e60-4995-b73d-6d56ca308053'::uuid,'068','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79c1a1af-784e-4b1c-8ccf-6b0dd3ac4917'::uuid,'068','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cffec8b-13e3-4b8c-b7d1-cbbd2fa89650'::uuid,'069','995',4391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df39dfad-8cba-4732-9916-3cb34611fd95'::uuid,'069','996',4391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8241f6a-7a80-4c1c-bea5-4d2d44170359'::uuid,'069','997',4276,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('040c40fc-9fbc-4c5f-8306-c149fe8581de'::uuid,'069','998',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('952e37ce-cc4d-43a6-a1f4-90e6e3666b83'::uuid,'069','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0eb42b1c-1d39-4726-82b3-49210fbcc577'::uuid,'070','995',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32e0c7d5-592c-45e7-b99e-9299075364da'::uuid,'070','996',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a34c8994-74c7-403b-8e60-8932c2c7a959'::uuid,'070','997',4240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e891c3f-88a5-4815-8b11-4cdf56c9f666'::uuid,'070','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46e7c90d-2cf9-4098-8354-d87dc8d6c08f'::uuid,'070','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('950dc19f-77b8-47bd-b533-9f5765c8bbea'::uuid,'071','995',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2716e302-2f8b-46c1-9f5e-852f38f9322a'::uuid,'071','996',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70f1b420-4f91-4c33-82ce-987c524de378'::uuid,'071','997',4240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba19a9ad-78ff-4c71-af32-d4ee1df703b0'::uuid,'071','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2feb6d5f-0394-4b5b-ba79-bc93c653ed8c'::uuid,'071','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ad7e46de-0eb2-40db-8fc3-c1c15b71c3be'::uuid,'072','995',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50f199f0-7bc3-4f72-9043-b45e9cb3ce79'::uuid,'072','996',4633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee2b5325-fb83-4212-9244-b7bdcbfa5032'::uuid,'072','997',4240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c074fbc-2f65-45ee-b65f-bc6cad939d39'::uuid,'072','998',3791,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b22d3520-25de-47b1-acfa-1c54c2fe5535'::uuid,'072','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('989b4d1a-1508-464f-b179-8d3fb5b76fab'::uuid,'073','995',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c43680c9-069a-466d-8c51-f9f4681cabfe'::uuid,'073','996',4637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e24ca92-b6cd-47d8-bad0-6acddb72dd5b'::uuid,'073','997',4244,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77bf717b-e164-4c4b-94df-93fa70723165'::uuid,'073','998',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc3d0498-9ae5-4b15-aef2-6f3593dee19e'::uuid,'073','999',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('84b028ff-9b7e-44b2-bb12-5968ddfb87e1'::uuid,'074','995',4348,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb87ec4a-35ab-4f55-842c-b4d7d273c495'::uuid,'074','996',4348,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cdbfdf51-2621-44df-9fde-aae30e08af3f'::uuid,'074','997',4234,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('57825824-f728-4686-ab9f-c4f53d635e7b'::uuid,'074','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('325213c0-03ed-4338-a9b1-749fab350140'::uuid,'074','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25bd69e3-1db1-4322-9e15-8b14353e3c6c'::uuid,'075','995',4345,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d482c940-de5d-47e7-8775-a10f347e807b'::uuid,'075','996',4345,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f17b75ba-26b1-4346-97ee-39b1a588f89e'::uuid,'075','997',4231,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b66831e5-f727-4309-8e59-c8d5b1183eb1'::uuid,'075','998',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b44c689b-95db-42f6-a8de-d4d7a814023e'::uuid,'075','999',3560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2c7f09c0-d996-46df-bb2e-641f96f99f52'::uuid,'076','995',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98207adf-ddc4-4580-8cfe-4443744b31eb'::uuid,'076','996',4354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7fa3268-9a7c-4891-ba3c-ec700a69a2fc'::uuid,'076','997',4240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('65e3bac6-ecb6-41f7-93de-464ddca737a1'::uuid,'076','998',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01e604ce-4338-4551-ac5a-2d52e0edf6e5'::uuid,'076','999',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da3f5eb1-c567-4a71-825e-a83b8b45f7f6'::uuid,'077','995',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e61d48c0-48e4-4502-9624-d8d867003ad1'::uuid,'077','996',4658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e17843c-6d32-46aa-97c7-0112d792e88b'::uuid,'077','997',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a994e92-42f5-4cc3-9fa3-1b3c8b18a4e1'::uuid,'077','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('393c7a86-c652-466d-be27-bc5752c463dd'::uuid,'077','999',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11b83dab-b8f5-412f-ba28-f7819170fdf6'::uuid,'078','995',4314,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15086056-bc1f-4d15-b0e6-4e1134e50445'::uuid,'078','996',4314,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3628e7bf-1bfd-4a5f-9270-bf13588ad28a'::uuid,'078','997',4200,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d280b6d4-00b0-495f-99b5-8b4a3193acf6'::uuid,'078','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edc18f24-a8ca-4b38-82ba-30a195a302aa'::uuid,'078','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c665cab8-c6d4-4f84-854c-a72c9df82096'::uuid,'079','995',4337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('241bed83-ec41-48ba-ad86-e064934622b5'::uuid,'079','996',4337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93540c12-d522-49cb-8ba5-90d8d42fc3a3'::uuid,'079','997',4223,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4400226-2408-4fcc-9324-59d93bd223d2'::uuid,'079','998',3775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3aa1c951-89b5-4ee5-882d-9b374744c50e'::uuid,'079','999',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a5062c1d-7cad-4b01-9269-8f44cc45aa4f'::uuid,'080','995',4342,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc770640-6324-4809-a5cd-bfea37554ca4'::uuid,'080','996',4342,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d0d4b51-303a-4d78-a449-216b9572f414'::uuid,'080','997',4228,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2e4e477b-f7c1-4e6f-b67b-842c5f2891ca'::uuid,'080','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d017863a-5f12-4e72-bc37-d67c0eddecc5'::uuid,'080','999',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98721205-5aca-44cb-aab9-f471cf5e3403'::uuid,'081','995',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9931c91-a0db-4ea9-a14f-61e0235f8d4d'::uuid,'081','996',4611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cae22910-ab82-411e-a869-a57849733f5b'::uuid,'081','997',4354,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('892b06af-8f9e-4222-a4b1-4b6cf360f74d'::uuid,'081','998',3769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c065a1a9-52ee-44c0-9584-0f6daf8e8f97'::uuid,'081','999',3547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7024eba7-0654-486e-b46e-6c436cd9dfd5'::uuid,'082','995',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39976156-181a-468b-ac7e-1290890732b2'::uuid,'082','996',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98616a0d-caed-4fb3-beeb-024ac389d533'::uuid,'082','997',4270,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0551b27f-d1f3-4177-bd6f-fc132b42a8ff'::uuid,'082','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('941b7e5a-3eee-4b41-8d70-895bfa32fae5'::uuid,'082','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b5f0286-cc95-4a49-a69b-122ac2ea977b'::uuid,'083','995',4360,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0c6b243-30a7-42d7-b8ae-54a9136bd7bd'::uuid,'083','996',4360,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('26e91a42-ea4a-4013-a027-513b7db73fe3'::uuid,'083','997',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5231073c-67f7-4fa7-809d-0926b07b44a0'::uuid,'083','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40c4114e-f636-433d-adbc-f33dbd5a9f9f'::uuid,'083','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c6a0ceb3-8eb9-4653-9ddb-c7691f4009d9'::uuid,'084','995',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43aa8580-619d-434d-9023-1a92b52bb41b'::uuid,'084','996',4662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c394216-40b5-4fb7-9cbc-f53a64e9486c'::uuid,'084','997',4405,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d9863a7-a8b3-4951-a56f-a0a47b15d407'::uuid,'084','998',3821,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fcd92fe-ec6d-404a-989b-58aeeab39f15'::uuid,'084','999',3598,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('659e0624-18f4-4b10-9ac9-45ad08e1231a'::uuid,'085','995',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3af2b3c-c51c-45ab-a180-fd3c6e7f38ba'::uuid,'085','996',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41477b22-0a31-47ab-a25d-6cac36443add'::uuid,'085','997',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84451f68-8c41-4de2-9a92-3d138073b7cf'::uuid,'085','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79bf192e-0936-4d63-8f68-244a6a2c77dd'::uuid,'085','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6ba58d4e-fabe-463c-b146-ffc5f977161a'::uuid,'086','995',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('955b7d45-dff5-4af5-aca9-7c37dbe22a3a'::uuid,'086','996',4341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('24f38932-05e7-4248-8eb3-15f0bb4c4dc4'::uuid,'086','997',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e46f50c3-4d5a-43f1-a4a0-5eada6a97935'::uuid,'086','998',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d2e802a-310e-45b5-ad3b-fe3ea3aec16d'::uuid,'086','999',3520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89788780-35af-4300-b7f8-62523422ad06'::uuid,'087','995',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89054b40-1533-4030-b956-8227331addc2'::uuid,'087','996',4664,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ef5b038-f747-4726-94fb-88ba6bbbdb49'::uuid,'087','997',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bedc4967-fbac-4650-a593-56cbe863d84d'::uuid,'087','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f47988c-0830-40c8-a73a-aa32fb4a45bd'::uuid,'087','999',3600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('04862d50-0f96-4f0a-aa52-27298320c3d7'::uuid,'088','995',4339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('76a16b5c-07ff-4084-97d8-e4f50e1850fd'::uuid,'088','996',4339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7a30c8b4-4d48-41b9-a6cb-977467a9b9d8'::uuid,'088','997',4225,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71dff20f-8bfe-48aa-9eba-8af8e24e5465'::uuid,'088','998',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5942b54-cb67-4148-a14e-1d3fc1955e0c'::uuid,'088','999',3519,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cec46fe5-d00d-437a-a017-0456ffe85de0'::uuid,'089','995',4357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('012e9d1c-5bad-4b17-a9a1-6e76ee977d2a'::uuid,'089','996',4357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5e037810-9928-48dd-b833-dd1b9e51a420'::uuid,'089','997',4243,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8c9be0f6-3eda-4f17-8473-660924f907ba'::uuid,'089','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19f3ed2e-1a7f-4a23-bdc4-84c2eaecb922'::uuid,'089','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ad76f3ea-59b1-4ec2-8f89-ea5abe57df91'::uuid,'100','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1ecd98da-f177-44fb-a47d-c863dcfd8cc2'::uuid,'100','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('858d9caa-1eec-41e1-9c04-a2feccd3c8ab'::uuid,'100','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf1fe661-59fc-4d7f-afe3-5ebd07146263'::uuid,'100','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f62fee5-27ea-4b2a-90e4-fbbdf003291d'::uuid,'100','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('171f81f3-d10c-451e-978e-4920339691f6'::uuid,'101','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('669437e7-cca4-419c-9488-575b0ca8107e'::uuid,'101','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e60d6646-8044-415d-8000-3dc2c3a032f5'::uuid,'101','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb07c05b-4c3c-4e80-9631-ecea13ee9bbc'::uuid,'101','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4dd640b-a387-405f-a901-2b38da452dad'::uuid,'101','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9c6fc1d6-ca5d-4ff3-98bd-390e2c7c6426'::uuid,'102','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('619619cc-cd81-4541-9d29-de14bfc94ab2'::uuid,'102','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c0dba64a-d976-4921-a4f0-c4e30c83a17a'::uuid,'102','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ec7a3d9e-e19e-4080-9ef6-5efa7cdddb85'::uuid,'102','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f33c616b-7860-41b2-986e-d4e446612abb'::uuid,'102','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6a79ebd-7ca8-45cc-8806-7a636f3858df'::uuid,'103','995',4364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8132a18d-d544-4909-898f-7d0687e8e77e'::uuid,'103','996',4364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d9e36cc-c20f-4955-b976-a0e9e0536730'::uuid,'103','997',4250,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ecc52a6b-5c6b-4674-8cf2-1237b37482fc'::uuid,'103','998',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35bbb867-64b9-42ee-823b-0c85ad66b234'::uuid,'103','999',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bc94c933-efeb-4ab1-8d5d-50dd01707cbc'::uuid,'104','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0f06a17c-e79a-4c1b-9113-c463623bdcc6'::uuid,'104','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3ba54df-36a3-4084-ad19-e3bd50e2b1a1'::uuid,'104','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcdadfc3-5a5b-402a-81b8-0c13d6a6434a'::uuid,'104','998',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aab1ef28-eb8e-408c-8da8-6559816a94d7'::uuid,'104','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b37297c-d667-4a82-8c7d-b4e8d67af687'::uuid,'105','995',4398,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0d45ea7f-3270-4de3-8fdd-de6c5692b984'::uuid,'105','996',4398,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5dd93294-de94-457d-a725-9be14a95f087'::uuid,'105','997',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4ab58ca-44b3-48eb-b861-eedce7040d9c'::uuid,'105','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('053820be-b1d2-4038-891f-cd1d0cbeaabd'::uuid,'105','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b1ec5dc1-90ed-47a2-9a22-9b92841493d2'::uuid,'106','995',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a88f621e-f6e1-4943-b44f-4db698b41f44'::uuid,'106','996',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1a2d4e5-6f28-416e-abc2-a70fc87703da'::uuid,'106','997',4264,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('79cede23-1ade-4647-870d-7a5adf760029'::uuid,'106','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a72672e-09db-4c16-bac7-65550bc229a6'::uuid,'106','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5307c217-3008-425a-8948-b86bebb94560'::uuid,'107','995',4367,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e476919d-1e82-4c83-8b94-4cf87f5e0a19'::uuid,'107','996',4367,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7417172a-dea6-4381-8c87-e6af7a4456f2'::uuid,'107','997',4253,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd16a9be-01fd-426a-8b86-bae159275a00'::uuid,'107','998',3547,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('249f8ee2-68c5-4b71-a875-57bec28284b1'::uuid,'107','999',3419,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3a682baa-2b83-43c0-9425-6fe9ae650342'::uuid,'108','995',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f0b760d-ad26-4534-81da-1de0eabe7b54'::uuid,'108','996',4374,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2fe0a7c-01ab-417d-a1bb-a3ac5df09f93'::uuid,'108','997',4260,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('451bc8a6-60d9-4fb4-bc2d-2a254268d37f'::uuid,'108','998',3811,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73155e69-3304-47df-be69-7ed2b9469b5d'::uuid,'108','999',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76c61e16-f055-4b1c-a64c-81dd448b1532'::uuid,'109','995',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd0beb21-2a51-417e-9113-974f5b6c0301'::uuid,'109','996',4631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e92a1e8a-d31a-46d4-b411-b0ee1cf3c24a'::uuid,'109','997',4373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48d85141-bf86-4863-a1db-37d7acbdf52d'::uuid,'109','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fe74840-3a77-4990-afe8-4721de7a089b'::uuid,'109','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8fdbc5ae-9edf-442f-936a-213e697df409'::uuid,'110','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f23ebd6a-ebef-4de8-96dc-d07316f79b2b'::uuid,'110','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2b3c0bf-2811-44d7-9a89-5859ce91c168'::uuid,'110','997',4261,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('124a4584-2526-4d7f-8c40-ee9c0235e237'::uuid,'110','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40038cab-e1db-4a29-a03d-c8ed00f81383'::uuid,'110','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c534524e-cb11-48d3-8896-c84c5f1551c2'::uuid,'111','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c1bb220-be5c-4b7a-87ae-21b31180502d'::uuid,'111','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('badbb0c1-8ff3-47d9-af44-af68a1766004'::uuid,'111','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('780a2173-437e-4ce0-be4e-fcc167a8c276'::uuid,'111','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b3a1f2e-0a4b-4d0b-8f57-98441501a60c'::uuid,'111','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b90e80fa-8748-4523-a5ee-c2bba9636cf0'::uuid,'112','995',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da68c42a-b211-4ada-9a37-430d17de0729'::uuid,'112','996',4371,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ec5058c-3dda-4c8a-a5a5-8b421c234902'::uuid,'112','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f543a880-97d1-4938-86ed-1c970cff0c26'::uuid,'112','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f382dc5e-fa2b-49de-8858-cab2c71c25a0'::uuid,'112','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c2f0bef-807a-4be8-bb75-c9420f7f816f'::uuid,'113','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98b7c844-ac29-400b-b413-8ba3f68f6dab'::uuid,'113','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0258bafc-6bd1-422d-9638-5976c89d39a5'::uuid,'113','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ceb2c93e-3477-4671-ae73-d5cd0bca7bbc'::uuid,'113','998',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf3f68d6-c37a-43a2-9aac-991fa24498f0'::uuid,'113','999',3586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('413075af-a1ab-4928-8c25-cfeffea4e8d9'::uuid,'114','995',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ab33e00-cd36-472e-98ba-eea80d3b9fad'::uuid,'114','996',4654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09b5f0a3-2bd4-45ab-b10a-f0e5236135e5'::uuid,'114','997',4261,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da5453a9-e657-4189-9dd7-76c1800aeb17'::uuid,'114','998',3813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20e0c6ff-f337-4db4-8bd1-f1db0680e0cf'::uuid,'114','999',3590,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b1dd9c1-e552-4be2-ae57-cea97fd939af'::uuid,'115','995',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9435c59-d91c-41ef-8ba4-33b11baf1ec2'::uuid,'115','996',4682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2bfb8aa-0367-4871-bbd9-0ffe05ed8d57'::uuid,'115','997',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cf1178d6-1cfd-46f0-af4d-e24d326c5445'::uuid,'115','998',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35a0b480-15bc-4879-999e-ef1ad726e23c'::uuid,'115','999',3617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('99cd28cd-cee6-48af-93c0-049c163f6456'::uuid,'116','995',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6fd9d8fc-8152-4641-bf30-0cc66e8ea4e2'::uuid,'116','996',4382,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86f98351-7159-4143-a2ff-ec98a862bf57'::uuid,'116','997',4268,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d1201ecd-f6d9-450e-9bb0-a5101859c612'::uuid,'116','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35401e05-8a7a-48eb-869a-3421ae05805e'::uuid,'116','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a07041b9-0072-4726-8637-4f727f188ba0'::uuid,'117','995',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae89cb2c-e90e-46b7-9f69-8d2774afa011'::uuid,'117','996',4678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('951a3aa2-7286-428f-9cd5-89bcd0c27d67'::uuid,'117','997',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('06e63684-12f0-4220-8665-177aa81e3565'::uuid,'117','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e6142fd-7e22-4813-86e8-e7c744eb1daf'::uuid,'117','999',3613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e43acdcb-f93e-4d34-8a69-88b1a43cb11c'::uuid,'118','995',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35c4f7bd-13c2-48bb-8511-85923e9d8ed0'::uuid,'118','996',4667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c9d9684-e914-4b8f-b0ca-7160e7b0d58c'::uuid,'118','997',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1d291ed-3cb8-4dea-9b7d-2c5d6c3f984e'::uuid,'118','998',3826,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8fbaff1-0ad3-4033-9662-3ffbc42399fc'::uuid,'118','999',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1fd52de-c778-4fd4-a550-35138fb7d07b'::uuid,'119','995',4435,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7963ea33-9971-413b-85f9-6801f751ef3e'::uuid,'119','996',4435,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e1a3c39-c312-496a-901f-4ade2f67ea8d'::uuid,'119','997',4321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2a88c77-0d67-480a-9372-7166631b9952'::uuid,'119','998',3873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8757b020-2541-47c7-a2a7-dc9642130a1c'::uuid,'119','999',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('652ebce4-1882-4dce-b78b-e32fa32796d5'::uuid,'120','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86e81bfd-76f3-4ece-af9f-7d88d9098aff'::uuid,'120','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('63628c12-38ea-4be5-ac9a-8d1230c8ed4d'::uuid,'120','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfbcbba7-4d1f-4eb1-8a08-3c779a565e26'::uuid,'120','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38bdac92-1185-47e3-bc9c-3a1916b87521'::uuid,'120','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f485fda0-b0c5-4ca5-a5c2-d0b68c9d1a39'::uuid,'121','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f99c3ec6-764a-497f-8d1b-4217c02c906a'::uuid,'121','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a14c2801-0954-4484-b68a-1f53c396c110'::uuid,'121','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb84ef94-288a-4bfd-88d1-6347bc72afd1'::uuid,'121','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6a4e653-6cf7-4ce0-8738-253d3effe860'::uuid,'121','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1790137d-2cb2-41f3-b672-80f3dc543505'::uuid,'122','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5870cf94-bdad-4298-a1ab-7698ea6be035'::uuid,'122','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a22f3fc4-979c-45d5-a401-36069cecc29b'::uuid,'122','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02ff0cfb-ef17-43f2-adba-5db6e7d5361d'::uuid,'122','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9522b35e-05a2-42d3-a101-be2590ff4dec'::uuid,'122','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('331e257f-e37c-459e-8c1b-e1c04cbaaede'::uuid,'123','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6e8c78e-6df8-4693-b4d0-df3fde8f30c0'::uuid,'123','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33cd1700-1e6a-4845-a03e-ac288ab7bfbf'::uuid,'123','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46c91f25-629e-4033-a108-a3b02d0a723f'::uuid,'123','998',3768,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5667d42-c000-442d-9f6b-404158def1d7'::uuid,'123','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d9732416-ea70-4017-a25f-29cca7614a06'::uuid,'124','995',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67e2a272-3afb-42a6-be99-98bf7990288b'::uuid,'124','996',4384,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d1c025c-6af9-4cbf-b17a-7845f0a68134'::uuid,'124','997',4270,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('224217ee-af43-4cc8-86e6-3f39de91f453'::uuid,'124','998',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb84cc03-f32d-4cac-a822-78a049ad2ef7'::uuid,'124','999',3564,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b13ecbde-f9ed-4404-a73c-183ef2737de8'::uuid,'125','995',4392,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a54f08f6-5a54-4cea-bb9a-73820e83e4c3'::uuid,'125','996',4392,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4738e157-0ab4-4813-a976-d6996812f4bd'::uuid,'125','997',4278,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fdc1c05d-efd4-4bf6-889c-3f0cb7524f75'::uuid,'125','998',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e261a390-a16f-46ff-b589-4e935c42fe85'::uuid,'125','999',3572,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ebaca5e7-bd77-42a9-9421-082163971160'::uuid,'126','995',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('762d9321-53b9-4ca4-982f-63ca533bef72'::uuid,'126','996',4378,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9139ba2f-4d2b-4e35-8ef7-6c65a93d2006'::uuid,'126','997',4264,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('449c7f2e-3f7e-4fcd-9e1c-e7f51f8db1e8'::uuid,'126','998',3816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ab3bb50-5c6a-44fc-8a84-99e83a456d83'::uuid,'126','999',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d57cb66-3350-476c-a0f8-2886f364f2c2'::uuid,'127','995',4351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f98eeb30-b0b7-495c-8194-d42d5f6f21e2'::uuid,'127','996',4351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8164e078-7968-4811-8783-73f6f39270e0'::uuid,'127','997',4237,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7320a630-18ae-4e18-83a5-8104a4a508ad'::uuid,'127','998',3789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c60b930-4c39-46d0-81b8-718c0b673825'::uuid,'127','999',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b485a4df-f2a6-4f33-afb6-cc936fc83ca7'::uuid,'128','995',4285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f5c06e0c-f5d8-4380-a543-a670f221ddef'::uuid,'128','996',4285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc340042-e072-4d5a-b2fd-20f433ed7b88'::uuid,'128','997',4171,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98520779-42e5-4ea0-8859-0e3cb1c5dd48'::uuid,'128','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00af1364-40cc-4041-85a9-9a84ab632041'::uuid,'128','999',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92039457-7701-44f8-b321-e44161c1ecf0'::uuid,'129','995',4235,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb07bb98-a682-4c50-befb-bd9a57145827'::uuid,'129','996',4235,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('daa94926-ce90-4e4b-a3a4-01df28ddd795'::uuid,'129','997',4121,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e658f0b0-1fc3-4ccb-81c6-8d4a3c892705'::uuid,'129','998',3673,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('502f98f3-b11a-401c-a20c-28c0249e1fdc'::uuid,'129','999',3450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8df9fac0-74cb-4aab-97e6-e76f141cbcc6'::uuid,'130','995',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46485f89-23bf-4a23-a9cb-ec410b2752d8'::uuid,'130','996',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0815ceae-805d-4677-afa2-615c95689252'::uuid,'130','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b203717f-92dc-405c-8384-27d8ba6a1a35'::uuid,'130','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0a943f8-e18c-4509-8620-89bda1554fd6'::uuid,'130','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65960366-6439-4c27-a72f-28a9974d9e74'::uuid,'131','995',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46789c4e-ecda-4322-a330-665e69fa9f42'::uuid,'131','996',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90ab1389-7daa-4cd0-8ee0-01efae851d4b'::uuid,'131','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('62870c5d-64b9-4839-9adf-cd41f4d82a44'::uuid,'131','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('947f9a85-faf3-430c-b308-41cde9eec944'::uuid,'131','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('44daa34f-d08f-4677-bc98-5672d9a73037'::uuid,'132','995',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('186d216b-6367-4b17-9cea-1e09e3a6503b'::uuid,'132','996',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3fe0fbb9-e525-465c-997a-2a7f617cae5a'::uuid,'132','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8ed42f73-7bca-4d4a-a734-f68fbb4bb352'::uuid,'132','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f09d86-8e42-4337-ae6a-2138ad65aaad'::uuid,'132','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ca3fbf5-f043-44c9-ba38-7ac57da20469'::uuid,'133','995',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('355ce44a-e6a5-4ead-a51d-7b9bca87443d'::uuid,'133','996',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4cd6f59c-ec24-4055-bf16-c0a44114c5c7'::uuid,'133','997',4143,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce52bc43-c9ae-4781-9dd4-23b04c1db3f2'::uuid,'133','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a84ddda7-821d-4cc8-aad5-fc1246a5fd9d'::uuid,'133','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fc124178-ea8e-4b68-9611-46e7f7369e90'::uuid,'134','995',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43cb7df4-20a3-4e48-a3a9-f1955b5b9ae6'::uuid,'134','996',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1218514c-052b-4045-ab41-c5d19fe15bb0'::uuid,'134','997',4143,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4379c234-65a2-4800-ae9a-a4172ceb6ac6'::uuid,'134','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01d553a3-884e-4ece-9798-3553c3baf182'::uuid,'134','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50f8cbe1-d4fa-4c0e-a77e-9f2ed7b5a44f'::uuid,'135','995',4253,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('75179eda-d2ef-4ad9-b7ca-19e4d9c47b4e'::uuid,'135','996',4253,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('87d6255d-836b-49b2-ad38-8b939f4cfbc4'::uuid,'135','997',4139,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7364cef9-629c-4ca9-bd42-d31bae45272f'::uuid,'135','998',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e816553e-69ec-4d3f-a61a-078c2cda42f3'::uuid,'135','999',3433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('af8d199a-7029-4631-9b61-9830fbf8a6c8'::uuid,'136','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0a0aef7-4b6f-4b3c-96b8-42313519d82f'::uuid,'136','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c582d4e-d713-4264-a1f4-c65c6097a83b'::uuid,'136','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ac863f73-98e5-46ef-b5af-5bf91c04144f'::uuid,'136','998',3594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c152e095-2c96-4b29-ac13-84e8050c826d'::uuid,'136','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c46fd3b-93e0-40b3-9954-f88e0b9f69be'::uuid,'137','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e8a171a-9480-42eb-a22a-8d85245a77fd'::uuid,'137','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97ae952d-fb6f-478c-aabe-8eff14c4c854'::uuid,'137','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff018b57-8712-40e9-b763-dfe5d977ed72'::uuid,'137','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9d8253c-1541-4cba-91f6-825d429cb14f'::uuid,'137','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7de8e3a1-49d2-464b-9f2c-74145fd944c1'::uuid,'138','995',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb4e7dc5-3f56-4e1a-ae34-82d0ab5a66e9'::uuid,'138','996',4577,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0a94cd0d-c7fb-4b3e-a548-5472f385d7c9'::uuid,'138','997',4320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d508bcd9-f096-49b7-ad83-cc5716d2fb36'::uuid,'138','998',3736,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff380303-a78a-45da-8ee3-720c483512d0'::uuid,'138','999',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e51ff67-91a9-4b24-b62e-d934105900b2'::uuid,'139','995',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bfc1648-9af1-42a4-8ef7-130a346023ac'::uuid,'139','996',4550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8ff9dbc-0dc3-4195-b79b-83c1dd895821'::uuid,'139','997',4293,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31a5b14b-6821-45bc-9a5e-f17811ddee85'::uuid,'139','998',3708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('423fca22-186f-481f-8959-4da0176d36e7'::uuid,'139','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('37b44b01-947f-4629-aa3b-943ad3771979'::uuid,'140','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159e07ae-a3ef-4e77-a86b-be9c2762c61d'::uuid,'140','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f33cd11-7697-4172-bff3-3f383c4e321d'::uuid,'140','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('213e8630-c1ca-47f5-9d64-a32c7181935a'::uuid,'140','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b3a50c4-e4c8-40d6-b8ef-b9e759ea242a'::uuid,'140','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f22a7d7-a8a9-45da-add6-ba102ea38e41'::uuid,'141','995',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccf90049-1a87-4701-8a08-df9f06d30826'::uuid,'141','996',4394,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38a22a3d-fcb2-4016-ad74-602cb1eb7027'::uuid,'141','997',4137,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88b292c5-d15b-4f24-8537-e58ae76660b7'::uuid,'141','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b57d327-1120-4e3a-a5c0-7832bc597330'::uuid,'141','999',3330,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4a9739db-ea42-402e-b32f-b3f9055f374a'::uuid,'142','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33d365c6-a74c-4dc4-8825-a9cd2b611b4b'::uuid,'142','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4ea5ca2-2c44-40f0-82de-8fdc035b2fe4'::uuid,'142','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683b0848-f54e-48d4-8f85-a2d9ae9db64f'::uuid,'142','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da25a9b1-4d17-43fa-83da-e2c66b2df56c'::uuid,'142','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8de5e075-b3da-444a-8d89-722139a6265d'::uuid,'143','995',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce73f3fb-9e49-41d3-b636-fdb62c05e07b'::uuid,'143','996',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a84f5654-48f0-4d73-9e9b-4b36ceb7723f'::uuid,'143','997',3992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f947c03-ebf9-4c67-a12b-6f7af2d8024d'::uuid,'143','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58cb913f-675c-422a-89ea-c9b1eb874324'::uuid,'143','999',3321,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('20befd77-54d4-4ec5-8d3c-329052b6abf2'::uuid,'144','995',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aa9c2828-0f1f-4382-8d4b-ae163e3f65b1'::uuid,'144','996',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7c7a50c-6184-4b0c-9095-a6fe3acdb341'::uuid,'144','997',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5e39655-2b10-4b3e-be16-fd9cc75ce3cd'::uuid,'144','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6aac0724-b83a-40b9-a81f-5e252881115f'::uuid,'144','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('108e0866-4dd4-46f9-bdbf-0811e24be9e5'::uuid,'145','995',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('51f21653-9f9c-4d52-adcb-984f8f288245'::uuid,'145','996',4185,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b6a60b26-de4f-4d3c-a69c-0e92177ceca5'::uuid,'145','997',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('036ca304-5318-4b01-92ac-202bc925333f'::uuid,'145','998',3622,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a129e503-1a9e-43aa-ae14-5c41979c9648'::uuid,'145','999',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a35d4109-34ed-4016-a31e-25622dbb4afb'::uuid,'146','995',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('639f637a-9b20-4848-9164-0f0ee0a44b3c'::uuid,'146','996',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5352df15-25b6-4dca-9756-178541077251'::uuid,'146','997',4052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('929c432b-1f9d-4c9f-8b12-834fe21ed4ed'::uuid,'146','998',3604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f175f551-5efd-4546-ae30-6a2a7d3bc49f'::uuid,'146','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35e02561-2a64-478c-af56-154aac1ef290'::uuid,'147','995',4080,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('28516c25-0cca-410d-9889-7b68e3fd6701'::uuid,'147','996',4080,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77b39be7-307d-4b1b-b008-37924b0b3323'::uuid,'147','997',3966,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2208d302-de88-49e8-a5e3-6b63641a0caf'::uuid,'147','998',3518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7ca20dc-4ee4-4706-96ad-451f55ab2c3c'::uuid,'147','999',3295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c5d89dad-8b29-498c-bca0-2f58a83819a4'::uuid,'148','995',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e05da48e-35d8-424e-a761-ed363902394d'::uuid,'148','996',4227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85d00020-8922-4c04-b3f8-f2a0f44146dc'::uuid,'148','997',4113,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e676a417-a50f-4bc9-bcd5-b1074a112489'::uuid,'148','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('215a3828-f797-4f44-b0ba-f59c3dd91f33'::uuid,'148','999',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d37f41fc-93d0-4e4f-8433-3926d229ef0a'::uuid,'149','995',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f386ef2-a76f-4106-8957-95aafdc4aec9'::uuid,'149','996',4493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('276e9cfa-5160-4061-a3d7-b32e9fa05e25'::uuid,'149','997',4100,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bf2cb76-ec5e-4621-91f5-e03ea8891301'::uuid,'149','998',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('735ac79f-9b65-4087-8d5b-02d0abec1b19'::uuid,'149','999',3429,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('58fc974f-be88-47f6-8a2c-5725da923845'::uuid,'150','995',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfe18d53-ee0a-4b11-b7ae-c3d0a4e75f48'::uuid,'150','996',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39ee6a83-1f10-49e9-a02c-dd9078c2467d'::uuid,'150','997',3897,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8732b23d-0be2-46d6-9ed4-8ece7c2c8a46'::uuid,'150','998',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b5a86fc-e137-469d-8473-68f4a454e02e'::uuid,'150','999',3225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f44eafc0-de75-4b8b-85eb-d2239486e460'::uuid,'151','995',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6331b4fc-f2c7-4233-9f0d-4f425e0178ad'::uuid,'151','996',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('978df44b-7106-47fa-8ab2-f18b06722787'::uuid,'151','997',3912,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e83d5bc-aa8b-45a7-a07e-8a77b2fb3db4'::uuid,'151','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('24412e32-fd5c-4627-837b-e639c510b715'::uuid,'151','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5ef272d6-589b-40f5-b071-1a7176393224'::uuid,'152','995',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('015b29b8-595b-40cf-9167-42f1e64bf7c6'::uuid,'152','996',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ca8cb772-fbf4-4858-8364-436cfb630c15'::uuid,'152','997',3912,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8d96619f-ee17-402d-b7e6-922ad7de95f5'::uuid,'152','998',3464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2e19e85-3fe1-4ad8-8a3f-151b5b528d54'::uuid,'152','999',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0e30183-2a68-4f15-a574-8588cee763a1'::uuid,'153','995',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9a60411-7fb7-4713-906f-37b69987eee1'::uuid,'153','996',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1924c650-830b-4be6-a9e0-504480d26571'::uuid,'153','997',3935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f362a7b-c5a6-4a9f-9e65-49c4b639ba33'::uuid,'153','998',3487,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c7d8791-f630-4400-abc6-c4fe319aae8e'::uuid,'153','999',3229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7686cbfb-ca54-4751-9286-26093a0a705c'::uuid,'154','995',4068,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2c2de4e7-1e02-4e2f-a43b-c2d217026b8b'::uuid,'154','996',4068,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6bc8c4db-ffdb-4545-a314-fd300c3039da'::uuid,'154','997',3954,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad753d7a-18e1-437e-a791-c24a2657b815'::uuid,'154','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfcf4aad-1868-4c51-affb-94f3a05b6440'::uuid,'154','999',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('242e7268-2ec2-474e-ba05-6ad4348b3c20'::uuid,'155','995',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12c65a40-8331-409c-af2f-4aff3edf249a'::uuid,'155','996',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf7e4b88-4b21-4cb6-b559-b92dc9edfdd6'::uuid,'155','997',4125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('555ecd88-620d-4244-b28b-4fe11b43ad40'::uuid,'155','998',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('352a8690-7c8b-48bc-8d9d-aa520ea184e0'::uuid,'155','999',3318,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e41079f2-98d0-4c15-8d94-543188550eaf'::uuid,'156','995',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('432130d0-9aa6-4b82-b48a-c36060ad2847'::uuid,'156','996',4336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d18919b-bc4b-4bce-822e-1fabd5444778'::uuid,'156','997',3943,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf566f76-58c3-4656-a11f-e8cf67b41630'::uuid,'156','998',3495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de90f81a-d7ce-4b7a-ac21-099a260c8d5b'::uuid,'156','999',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10cd9b13-c604-49a3-9d6e-f7d1079eaea8'::uuid,'157','995',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68a20935-6f34-4dbd-8de3-c428d14d3da0'::uuid,'157','996',4343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('715514af-5632-41c5-8bdc-8ab65f72dfec'::uuid,'157','997',3950,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f842a4b1-50cc-4b81-8b73-b97d0594f219'::uuid,'157','998',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('285bff3c-38ab-4f0e-96e4-d49851e7f2d3'::uuid,'157','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d8df3fa5-adcb-4e00-bd65-a7f1f9de6773'::uuid,'158','995',4099,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('469b3c95-cb93-40a9-a750-3c84cb1681ff'::uuid,'158','996',4099,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43399d29-1441-42a7-be5a-91f34bc8aab2'::uuid,'158','997',3985,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a0a7c8e5-5ca7-4e24-89ed-dfadaa46b2da'::uuid,'158','998',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c00c9066-74e5-4127-81df-b452c1044e5e'::uuid,'158','999',3279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c61ba7ed-4b29-4e06-bb02-13c82b2e598e'::uuid,'159','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87e7b5f7-f03b-497c-a1ed-fd98ccef7a33'::uuid,'159','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdcc23b1-9a99-4730-81e5-4d8c81160582'::uuid,'159','997',3978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5462f740-39fe-4bcc-a628-320db98e6543'::uuid,'159','998',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('499ab95a-1317-4011-9bce-0441cce1ab13'::uuid,'159','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1defd046-3335-4701-8deb-94ea602a6d2d'::uuid,'160','995',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbaf6b80-17a1-42c6-8bd4-a357ee3ef171'::uuid,'160','996',4295,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db80d6ec-360a-4fcf-98ca-e76c7f8b00ec'::uuid,'160','997',4038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba015da6-55de-41e1-a40b-835701612903'::uuid,'160','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6943cb9c-f423-498f-b881-29311b9551b0'::uuid,'160','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f00d9e0e-4c69-4dcd-a1b0-9fb1bf5b9040'::uuid,'161','995',3994,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f7d1d810-f5b2-481c-ac86-5a97329c12cf'::uuid,'161','996',3994,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14b7e6c6-409c-4f9e-b65e-20cd396b2c49'::uuid,'161','997',3880,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e8ee5de8-2663-4d60-8ed4-b5f7a01f808a'::uuid,'161','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c6fca82-2873-4024-8640-b03a07f41e18'::uuid,'161','999',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('db1dccf5-b4a9-46d8-a8d0-da2220c427fa'::uuid,'162','995',4042,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e753c93-0713-4c87-983a-ce9f141d5952'::uuid,'162','996',4042,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4b450802-f7fe-4fdb-8414-89719c695dfe'::uuid,'162','997',3928,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77f5e116-f922-4f2c-b462-3fc67b8c7f3e'::uuid,'162','998',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d842ed1b-c764-4c18-b1de-36e99c0412e4'::uuid,'162','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e9e2185-c886-498e-8480-d75c1456de94'::uuid,'163','995',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2402859-f001-4c71-90b6-a16505eaba4a'::uuid,'163','996',4325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('980b750a-fd3d-464b-b3dc-4303ae285879'::uuid,'163','997',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a7f4885f-4127-4567-84c1-5c0d13facd1c'::uuid,'163','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('535e1c72-cbdc-4615-916a-589559302a9e'::uuid,'163','999',3261,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('366eff11-5b81-4cc8-94ee-46070873d554'::uuid,'164','995',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da0ff9f3-50fe-47f9-b72a-fae74f07e427'::uuid,'164','996',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('492bb187-e212-4927-bac9-a60024b2bca5'::uuid,'164','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33ab3e3a-e3bf-4689-9d14-74b08edf3961'::uuid,'164','998',3445,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f0ef318-df43-4a13-824c-e71cb9a24d32'::uuid,'164','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8306512-0635-4e59-8f8e-cd032d5c9dc0'::uuid,'165','995',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0ddecdd-38bc-406c-9c80-1835f211e026'::uuid,'165','996',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2c38a24-3a5e-420a-8e3c-840851fe9bfd'::uuid,'165','997',3895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e12ceae9-9f8d-4547-9308-a8bd2ece6ca8'::uuid,'165','998',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('055580cb-e468-43ef-9c8e-90a8b9465fd8'::uuid,'165','999',3224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('08f08137-15e7-4584-b85e-88a6452e4429'::uuid,'166','995',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11c7e141-650b-4f05-867e-10ab794506ef'::uuid,'166','996',4395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1afdd139-0860-4d27-b985-b3fead509d41'::uuid,'166','997',4138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c86fb1e8-3ea8-4f19-986b-47db9d03fd99'::uuid,'166','998',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('765ee2d1-b182-45cf-8559-edeec03d4930'::uuid,'166','999',3331,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed70f4fd-beb9-41c4-8c4f-2e5bc5c83d82'::uuid,'167','995',4113,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('029c06ba-37de-4082-8e6f-1b8e18dd34fc'::uuid,'167','996',4113,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f08ba717-3e99-485f-b6bf-2d0da7e67802'::uuid,'167','997',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb608818-4d1f-4df0-8774-560281a3de5f'::uuid,'167','998',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9be61dd-8b86-4633-8a66-041fbaaa52b1'::uuid,'167','999',3328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3332350c-8b62-44f0-a233-0ce6778326b4'::uuid,'168','995',4136,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f387aee-75b0-4723-957e-01c17ced81ee'::uuid,'168','996',4136,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d61224b9-759d-4e41-b30b-cb03f8c174e0'::uuid,'168','997',4022,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd8b77ad-6c97-428b-8b09-c94e37e20d57'::uuid,'168','998',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e01c1a18-7343-4abc-9252-02957d86a9ab'::uuid,'168','999',3315,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef3aa739-5286-49ab-8ea8-8fd658f393c1'::uuid,'169','995',4179,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5faddde-b02b-4b1f-b2c9-6b2d837e6afe'::uuid,'169','996',4179,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a72171d-2871-4c26-9e72-0d254337b76c'::uuid,'169','997',4065,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98e26b0d-b871-4176-8b6b-4ee33aa0b37c'::uuid,'169','998',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a15d5a50-4f3a-42d8-81b0-22ea453288e0'::uuid,'169','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9bd8fc69-aa98-4232-895c-f0edcc835448'::uuid,'170','995',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b25c63ea-e563-4ac1-8026-5e2304dc8118'::uuid,'170','996',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84a079dc-ac93-49f9-ba68-285ea5353fe9'::uuid,'170','997',4085,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7655986d-0243-420b-a27c-b7a78d8d30eb'::uuid,'170','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba866f39-e825-4ac6-bb51-95ee03fd5c47'::uuid,'170','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8eb8d430-6e66-45d6-9586-945b3142b4fd'::uuid,'171','995',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('047b1ebb-6ec7-4da1-99fd-aaac54884eb4'::uuid,'171','996',4500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fcf22807-cc23-471f-ae65-cf24210f7c4f'::uuid,'171','997',4107,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14bd39d6-f9d7-416c-bb88-dd8e26af3e7f'::uuid,'171','998',3658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51ddfa0-b35f-4744-b4aa-fb7da2474c5a'::uuid,'171','999',3436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('398890b1-c627-430e-969b-8e776fba9543'::uuid,'172','995',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ac890d-606f-4b34-b12d-a9c957d12c46'::uuid,'172','996',4470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('611ac9e8-53df-473e-b564-d3ca76ec9dc4'::uuid,'172','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ae38b39-3f12-47e9-807b-b4609439f3e7'::uuid,'172','998',3629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea5b9bef-eeab-4ada-8c2e-a7a683692695'::uuid,'172','999',3406,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcbfa541-5fdf-4c78-8879-5a209e970554'::uuid,'173','995',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc3f276b-a41b-4e27-bbad-3ff12b88405a'::uuid,'173','996',4520,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2af378f-7aa2-4b64-8843-96fc464283f1'::uuid,'173','997',4263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b861617-2a04-4aee-a495-c6950b464742'::uuid,'173','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c26a73a7-1146-4c65-9b68-caa453cc8eed'::uuid,'173','999',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ebc672cf-9225-4424-8904-8a66548db2ce'::uuid,'174','995',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('389b9ee8-97d9-4eb0-8695-77485bc1376b'::uuid,'174','996',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a3d56ee-02df-4846-a14b-51ce3802b3fe'::uuid,'174','997',4132,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e519fe11-2527-4d68-bf15-f1d0fa72cea1'::uuid,'174','998',3426,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ac0afb8c-98f4-41e0-ab31-bdc951d1b152'::uuid,'174','999',3299,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b43738e3-39be-415f-80cc-e3f0687a0f07'::uuid,'175','995',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2387e3af-3b21-4510-a29c-d584868c6375'::uuid,'175','996',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e7c535a-55b9-45b1-b28f-bec9980cee9e'::uuid,'175','997',4145,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0645c658-94af-4467-ad3b-8b19acc1d6e3'::uuid,'175','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('826bae35-ad06-4e91-bd42-6d81f35e0785'::uuid,'175','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('65e46e46-271d-4cb8-bfaf-1d2c4625e5c8'::uuid,'176','995',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d2e537f-61d4-4c77-93b8-a2d362ad8d0e'::uuid,'176','996',4259,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e892ecfd-4164-46c3-b5d7-06396edad6d6'::uuid,'176','997',4145,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2cf30e30-ccb1-4c26-a372-7bfce3e3c1b9'::uuid,'176','998',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c10bb3fb-2d57-45e8-a682-e5204094587a'::uuid,'176','999',3474,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f69e810c-e895-4497-a88d-11a9375555d6'::uuid,'177','995',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0334e4c3-3a1e-454c-a31a-3fa1c97d441d'::uuid,'177','996',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34fa4421-04b6-499b-b737-826b8c053c77'::uuid,'177','997',4056,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('317ba659-8b33-46a4-a1fc-a697d724d33d'::uuid,'177','998',3607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a6b72bb-a0cd-4779-87fc-9c1fb1229d34'::uuid,'177','999',3385,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e2f78275-6c78-4e3b-994f-09fff246ebbb'::uuid,'178','995',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('861d5b4f-a1d9-40f3-9274-6dcbc0e986fb'::uuid,'178','996',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bbb6107-6e10-4202-b50f-5e3262ec9448'::uuid,'178','997',4085,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e5f8d756-05f3-4485-85c1-2c5e4d7a33b9'::uuid,'178','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f29bb90f-33f1-484d-bdf4-b554c39f26b1'::uuid,'178','999',3414,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30de071f-5eb9-485b-9980-9130717c2713'::uuid,'179','995',4242,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9d443997-9dce-4ac0-8c57-71714f9ad936'::uuid,'179','996',4242,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84520b92-cf3d-4a4f-9a0b-95d9c359d85b'::uuid,'179','997',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3bd1d4b2-4469-46aa-99e8-39fdc7578c75'::uuid,'179','998',3679,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f124808c-804b-40b8-8e56-14b9d553ad83'::uuid,'179','999',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('409163cb-9ade-4883-9520-60836f1e0ca7'::uuid,'180','995',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('489ad06d-20b9-4ff4-82ca-14764ff0aabe'::uuid,'180','996',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('132d4a0e-48c5-458f-8e31-c24a9c47cf95'::uuid,'180','997',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0fc5fca9-dd91-412d-9936-b6dac20ea11b'::uuid,'180','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8cea41b-5658-4135-9543-0b7dfa849835'::uuid,'180','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('406eba66-066b-4ad6-9af4-5a2dbd9b662c'::uuid,'181','995',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99d77f71-c29a-4251-8a08-08ea8e932744'::uuid,'181','996',4284,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c8256c7-b35c-46fc-8f83-c89a1befe68b'::uuid,'181','997',4170,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b39f1d8-8e5f-403f-8639-69a2b87e8e2a'::uuid,'181','998',3721,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93d77dab-9f7b-4b68-af7c-916b4e9f2426'::uuid,'181','999',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('26f2c49b-7b97-4d2e-a667-6211ee87eb29'::uuid,'182','995',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b90cb0f-4bd4-4d63-8488-69ff70f71736'::uuid,'182','996',4524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe7a7389-2033-4554-b53a-0f9997750c8e'::uuid,'182','997',4131,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d4479cc3-c422-4422-93b7-dedccb8230b7'::uuid,'182','998',3682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5cd16e0-815c-45fd-824f-3a2a640c0044'::uuid,'182','999',3460,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c0657c91-9e0b-4a33-b94e-dabad920c346'::uuid,'183','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f30c537-3ec2-4b4e-98e2-18c097651a10'::uuid,'183','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312bf713-b244-4f14-9a7a-8b85dd776617'::uuid,'183','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82fefd5b-cae0-40a1-993e-f8ed75469165'::uuid,'183','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e10687a9-c629-43ff-a678-4b4280003d1c'::uuid,'183','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d5ee2cb8-aaeb-4978-8441-641e54b7f2ef'::uuid,'184','995',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('870f5b8a-6099-4a56-9819-1b55bb535c6d'::uuid,'184','996',4575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dbaf1d7-046e-4aff-a2bc-cabcbbb07723'::uuid,'184','997',4182,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6cde9f7-5220-46f8-9f6f-a928d1c93ab6'::uuid,'184','998',3734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65b42231-1141-4025-b81f-85892aceb0ef'::uuid,'184','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('134d0edc-cb82-4852-a0c1-1ff9a59c3f90'::uuid,'185','995',4267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4004afec-0008-40f4-a0ba-bc6c33a9239c'::uuid,'185','996',4267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a42d045f-8d19-44d9-84b5-a58367d7a4ce'::uuid,'185','997',4153,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('108c9be2-ccf1-42de-afa9-54b7dcee3822'::uuid,'185','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc6796a6-373b-4d29-9dc6-e0e3755a5b91'::uuid,'185','999',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5524d749-2998-409c-854c-0108daf67891'::uuid,'186','995',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1b69361-77a8-4022-8986-d39ed878cb5d'::uuid,'186','996',4522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8339c8dd-a7da-43e9-9b65-57f3e3731d3e'::uuid,'186','997',4129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76535138-f67b-4107-8b6d-bb35ad43611c'::uuid,'186','998',3681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c12be40-ac34-4f73-bb4d-da805e0f31cd'::uuid,'186','999',3458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea150c77-5865-4d17-b934-cb8f117b2d7f'::uuid,'187','995',4252,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39e3d343-b05f-4fb0-b99d-43a16e7443b3'::uuid,'187','996',4252,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('561fd996-3b7e-40c0-a75e-79a3f4ffe4ef'::uuid,'187','997',4138,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a64b2a8-6239-4cc5-970c-6ee1cd95944b'::uuid,'187','998',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91004c6f-4214-4d9a-a178-e4336334df2e'::uuid,'187','999',3432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('07207abf-c0d2-4818-89e9-153e55f5d391'::uuid,'188','995',4255,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b29b6cad-38da-4c0e-bd5a-4971f2afe7f1'::uuid,'188','996',4255,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('809de613-2db6-4afe-81d1-fc05ee066c8d'::uuid,'188','997',4141,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('377c3eec-5f5e-4bef-a3e7-7f3794763e8f'::uuid,'188','998',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84053072-f259-4aef-a6c9-a1d6076a7e43'::uuid,'188','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4429064f-c683-4b28-986e-a449fc71819f'::uuid,'189','995',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a237892-91d6-4344-83a3-4ea0b72590e1'::uuid,'189','996',4593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3007af97-bb75-4b27-ba66-99d0fe478903'::uuid,'189','997',4199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3bfe79a8-9944-4ac4-8cec-aaf79c0955a5'::uuid,'189','998',3751,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7e7fb61-c72f-4f73-93e8-03d36b4aa25d'::uuid,'189','999',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ebf73fbf-9561-4ab4-814d-5437e5420db3'::uuid,'190','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2cab312-9f8c-41f2-8918-daebebec25e5'::uuid,'190','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('072efd0d-1d9a-437b-9a86-3c6bef46b4ce'::uuid,'190','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cb191415-c30c-4c51-834e-36ad3117ae39'::uuid,'190','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1dbbb97d-ad5c-4e8a-8ecb-c9159ba98acf'::uuid,'190','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd76ae1d-c5cc-4308-95be-446dd489e3bb'::uuid,'191','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('92ae83a8-2e7a-46c4-994a-3415df584f4f'::uuid,'191','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2028951-6a0b-4b9a-b61f-5d834d6635f0'::uuid,'191','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f789303-4d51-4e66-8d27-8328e8b5a00b'::uuid,'191','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4efcaa9-012a-4fcd-8ef5-927311b76761'::uuid,'191','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('634d6ebd-52fa-4880-a8dc-5213a638a820'::uuid,'192','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('21266355-9a70-4493-8958-f13e1590e644'::uuid,'192','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d97bfa3-9d4b-456d-a03b-9fb41ecff4b5'::uuid,'192','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba3809ae-7509-48ea-aa4d-d6e471274e31'::uuid,'192','998',3760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e01fa26-eac8-4216-8105-1cb6b9ca7370'::uuid,'192','999',3502,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92106873-acc9-46c7-b0eb-68fab6e36a47'::uuid,'193','995',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8d79db4-57e9-487f-ba9c-b305f7285f13'::uuid,'193','996',4571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5cd55de-fcd7-4d7b-a363-5ac2c4310ceb'::uuid,'193','997',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('340519aa-dbb9-4141-96eb-b2f2e3705b7d'::uuid,'193','998',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d42fd5e-de06-4c71-b01a-e46d4d94ea1f'::uuid,'193','999',3507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c860fff4-5f8c-4d87-8ec0-e7564e3d272e'::uuid,'194','995',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c79adad-473f-4a7b-954f-ef1408489cd2'::uuid,'194','996',4589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16c0c577-6e29-43f1-ad77-bc34b74e9b2b'::uuid,'194','997',4196,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce685ea3-7d6f-4540-9c04-9d7dc7ab88d8'::uuid,'194','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a934cff3-83f0-4a9a-b6a0-ad24658c0ae1'::uuid,'194','999',3525,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78028050-2132-4788-ba57-45d97fc8619c'::uuid,'195','995',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ef29e627-1456-418e-aee3-1d05a81ced13'::uuid,'195','996',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a696ec6-5dce-4873-84ac-ec8b576c70ba'::uuid,'195','997',4160,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30ac0e24-db73-49fe-a6d7-318c75cdd2c0'::uuid,'195','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff415e39-5610-4eb6-8543-a69a32a7e4ed'::uuid,'195','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('89fddf91-cbac-4460-aebd-7523fb7f58e7'::uuid,'196','995',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c934dab0-7689-4068-88fe-ba53028ad0f9'::uuid,'196','996',4274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6124eee8-8148-4889-869e-86959f2140b5'::uuid,'196','997',4160,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e415890-087f-4b47-ba07-819907ce7eef'::uuid,'196','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10121644-abb0-4ef2-b034-b29560e14c30'::uuid,'196','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('259eb1ce-0630-41f8-8ba2-2d2672b43bd6'::uuid,'197','995',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a29862fb-af75-4953-83e1-05d494880bf5'::uuid,'197','996',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfef327e-8a62-4e47-9421-281730cef84a'::uuid,'197','997',4216,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0e77050a-5e53-4387-98b5-0193a12ac167'::uuid,'197','998',3767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21d687a4-a183-498c-8845-669fb8100b1a'::uuid,'197','999',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb33adb9-53aa-406d-b4b7-212af343c71f'::uuid,'198','995',4309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0d2e04fd-e7d3-4625-b38c-ae38a0694a82'::uuid,'198','996',4309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c88fb3d4-cc5b-4f75-b160-29c02ef77b26'::uuid,'198','997',4195,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e0fb21f-f8ec-4703-bf57-e34bd5ad1819'::uuid,'198','998',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4176436-cc71-4e40-86ad-977cea2c6ed8'::uuid,'198','999',3488,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33e20eba-9907-4d0b-9781-6b9733280ba3'::uuid,'199','995',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5eb2752-9784-4aec-8639-bd317372cdde'::uuid,'199','996',4639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cefe153c-39a6-404d-951a-4f79982bdf7a'::uuid,'199','997',4246,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3addd556-22e4-47be-a55c-bb86991ee60a'::uuid,'199','998',3797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9069428-2fda-412c-b90c-528da9a31a1a'::uuid,'199','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('44310e9b-445b-4cf2-b32c-dba15e55cdfe'::uuid,'200','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1c011de-99b7-4839-b22a-62e817014d88'::uuid,'200','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9eb9929c-c70f-413f-899f-200ea67ab054'::uuid,'200','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4698b951-e74e-4c96-b726-7c78b1a62293'::uuid,'200','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95302999-7e1d-48af-a876-452a7684cb9c'::uuid,'200','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e775f55-4935-48f9-bbbd-e4ce110187fb'::uuid,'201','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ad6aba-1004-48df-8f41-46c0d059732a'::uuid,'201','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf35bf86-508f-41ff-b23f-2297090417be'::uuid,'201','997',4150,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2bf0614-893d-4332-8812-ca31404078f1'::uuid,'201','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7546deed-9313-4dac-80d1-ec8a554e7689'::uuid,'201','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d98a8839-0607-44fa-8ef5-4a1e999eaea5'::uuid,'202','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dac7ad9a-8af2-4b9e-acd0-29abdcd3a739'::uuid,'202','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aeeeef81-4608-4354-8cfe-17c77b4a367a'::uuid,'202','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8600ec1b-2eb5-4bb1-9f02-913abe2a52f6'::uuid,'202','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1194de8c-385a-4d28-9b09-dd03fed682f3'::uuid,'202','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560b645d-cf3f-4295-8f6c-258276175649'::uuid,'203','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e2e5614-03a1-4a23-98e3-c5049f5c0d29'::uuid,'203','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d9cac57-d666-47ae-b672-33d8558d9a01'::uuid,'203','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1bd5558a-b110-476a-b2ba-4c0f274db3d9'::uuid,'203','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b450b99b-38e2-4222-bf2f-7fa1a3083da8'::uuid,'203','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3d8b03f9-b278-4284-97d3-3be6c599bd0f'::uuid,'204','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e92938ce-db6e-426d-a5d6-636b211cd548'::uuid,'204','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3c18400-034f-47ef-86b3-e77f492321af'::uuid,'204','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12b3ec64-51ef-4c76-bb89-3ad327254315'::uuid,'204','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21d369f0-9aa4-455c-9e17-46350b9802a2'::uuid,'204','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12250952-bc38-4fcb-bcdf-8ce6b5ba8b4c'::uuid,'205','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8c9bd85d-ee7b-4a12-b51e-2a46a7e99a68'::uuid,'205','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6610fd62-c72d-49bc-ac7f-3d6095a18370'::uuid,'205','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dae1384e-634d-44a8-b19d-046187e69ecb'::uuid,'205','998',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6546e727-37da-47da-8444-95a62f8c1229'::uuid,'205','999',3451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('016259ab-d6d3-4454-9baa-216c6dcb0952'::uuid,'206','995',4315,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e699191-f877-4e12-8d82-c80651f59957'::uuid,'206','996',4315,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('533a2ec5-365c-4fac-9206-7805f238de47'::uuid,'206','997',4201,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a14986e-4330-4d71-85db-fd22dee6a253'::uuid,'206','998',3752,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4d3045c-c38d-4828-9922-5b7778fcafa7'::uuid,'206','999',3530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a223a8f-a65f-40ac-b180-4e9531e473c7'::uuid,'207','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a91bad46-fbbe-43e8-9c91-115325380720'::uuid,'207','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43453987-7c2a-48d2-81d0-9b15f5d3047e'::uuid,'207','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7691ea7f-2854-485e-91c4-8620343c9e9e'::uuid,'207','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bd33fff-e13d-4a7e-8a8e-e38d3c8719e7'::uuid,'207','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f2d6fb53-f223-435f-9814-ca909f7e041e'::uuid,'208','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b82254da-1040-4a91-ad49-b542f23f0843'::uuid,'208','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c92cd844-2f29-49f3-ab6f-395dd57f9ae8'::uuid,'208','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('123f3ad4-c560-49e5-b197-c9ea00c522d8'::uuid,'208','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac140f39-6ac4-4d02-a246-fc4298b3ae1b'::uuid,'208','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc8aaa05-de91-4811-8b39-589bac0315f3'::uuid,'209','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('052bbf2e-09ec-4f77-bb0b-5bf51e44d1ab'::uuid,'209','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8970f040-b6c2-431c-a392-ff282b436f92'::uuid,'209','997',4286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae6132e3-c17d-46bc-a77e-0cfb0c820c10'::uuid,'209','998',3701,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fc5f67a-8e29-4690-9fb9-b307e5ab7d92'::uuid,'209','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('62322f1b-19ce-4b29-862d-528c1156fa74'::uuid,'210','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86aaf8ee-227e-410a-a504-46286b72b376'::uuid,'210','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3083d1c0-8dae-4f1e-b845-fa39f0c42595'::uuid,'210','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cf94ba56-2d07-4522-b53d-afa141bcf0f1'::uuid,'210','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3e8940e-e54a-413d-809a-b567e3b13399'::uuid,'210','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2abe6e79-f02c-45a0-aae6-5e09a0dd4ad5'::uuid,'211','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58967ff0-84b7-40d4-88d6-d67f3545b718'::uuid,'211','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56193dd7-6cc3-4792-9d69-c1aa22a5f759'::uuid,'211','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b302217b-9966-4587-9903-3f7b09f4ca5e'::uuid,'211','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d42416fa-cb06-4f8d-9f10-725286d6b7b6'::uuid,'211','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aedbfe89-4dbb-495e-bf26-7cc1028fd698'::uuid,'212','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8349a6b2-e7ae-4658-9266-d2fafd55f8bf'::uuid,'212','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65cb4dfb-9b94-4501-88e2-1aefaa9f0306'::uuid,'212','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07571a9f-e604-49c3-b2cd-b4bf934c3174'::uuid,'212','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9468acdd-43e9-4e0e-a218-8bbabf8c1025'::uuid,'212','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ffaf6b4e-3f67-402d-ab94-f9c170d94cf4'::uuid,'213','995',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('907e8d42-2033-4c40-9bab-0d5a5d6e56e5'::uuid,'213','996',4545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b5f8adc-89a0-40cf-84b0-63047410b04e'::uuid,'213','997',4288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a48e361-9d1e-45d4-97c7-83249de94c7f'::uuid,'213','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ed8f019-43c1-4d0c-a7c8-8bc1b1b70f48'::uuid,'213','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4b9e4418-2500-4f5d-b34d-d07198f754cd'::uuid,'214','995',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43e128ae-2d13-4910-91c1-1d722ba113f3'::uuid,'214','996',4568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae75c908-7a96-4dcb-9a8b-fb2a426c862f'::uuid,'214','997',4310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cffc88a-9e01-42b1-996d-9c0fd5746980'::uuid,'214','998',3726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66c26f07-10a1-47cf-a5d1-e9b95f636829'::uuid,'214','999',3503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39187950-e2b7-4377-8fee-8114d63c5c0b'::uuid,'215','995',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfbc151e-3158-4e64-9bd5-1ba4cc9c4feb'::uuid,'215','996',4409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4df9394a-3a31-431d-9b92-4fd63ee709d3'::uuid,'215','997',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('50a40214-8861-44ea-a1fc-7a815843b997'::uuid,'215','998',3568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1e01f9d-bcbc-4c6f-afef-3b7203291c06'::uuid,'215','999',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5385610c-3a1b-463d-9dea-3884d5b0da7a'::uuid,'216','995',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6900f6dd-1286-4895-b086-1aab49f50578'::uuid,'216','996',4607,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e7d3d9f-3a07-48f2-b0e1-1deaa65b4a00'::uuid,'216','997',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc902afd-e87b-4a6b-9c67-fe5869dbe205'::uuid,'216','998',3765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9f7e136-6d30-4b65-9f0c-e9b705f6722f'::uuid,'216','999',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aadd64de-8b05-44bc-8b06-e26fd35c109c'::uuid,'217','995',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c56b3238-8e8a-4e73-ba04-036c0d722500'::uuid,'217','996',4484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('891139f5-f64a-47a9-a0e0-8fa5ba3f630d'::uuid,'217','997',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('038072cb-df9f-40a9-b9e8-e25eaa0b34e4'::uuid,'217','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41d00aa8-2142-4a15-9050-8582b44ecdec'::uuid,'217','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('203d59f1-0ab0-44b6-b9bf-2b2a0afdcdba'::uuid,'218','995',4375,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e81a1070-4d7f-4cd7-a4de-4fca2023fa96'::uuid,'218','996',4375,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8305494c-1908-4ff9-9548-b9b824565fa1'::uuid,'218','997',4261,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('192a5e13-dfa1-4af6-b066-ed709b54fff3'::uuid,'218','998',3812,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e6ea1ca-83b4-426e-96e9-ad26b5e381ad'::uuid,'218','999',3554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('934015f0-0008-4cf3-b85a-310118cefca5'::uuid,'219','995',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2bc0890-6b42-4f07-8c0e-da42545e9abf'::uuid,'219','996',4579,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('810867a6-fd99-4acf-be39-dbf2e6cfe90a'::uuid,'219','997',4322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd0fd2b6-a90d-499b-8cfa-4ef52ca5841c'::uuid,'219','998',3737,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efea7887-04fe-4946-94de-6d607d68453a'::uuid,'219','999',3515,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1f7f9e87-0b89-4ab9-aec5-9413dce49fbe'::uuid,'220','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfc26e7e-e54a-4240-881b-3bbe43b74ab8'::uuid,'220','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92595f24-3b07-4cff-8ed5-c271c40418dd'::uuid,'220','997',4150,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('36e339fe-d197-4990-b533-bbe5a963d161'::uuid,'220','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8993be4-a9e5-4dd3-9dfc-9f78d722b0a2'::uuid,'220','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09c595af-f00f-4e5b-ad42-204dd59d4997'::uuid,'221','995',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63025b32-412f-4015-9d8a-1bc5628b7857'::uuid,'221','996',4543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4db2b2dc-88d8-49d4-abcd-be092d7ed46d'::uuid,'221','997',4150,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc605ce8-e1ec-47c9-aef2-3862809cb6de'::uuid,'221','998',3702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a223da78-ccc6-4918-966b-fd70c3a8c33c'::uuid,'221','999',3479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3f4cdd7c-087d-490a-b7e5-eaa0f9417f56'::uuid,'222','995',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4662b2bd-2a83-442d-b6bb-931192c058a2'::uuid,'222','996',4547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad4b9c88-4816-4485-a422-42acf6f50305'::uuid,'222','997',4290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec31e3e9-a42a-4c4e-816e-dc82818ae71e'::uuid,'222','998',3706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ffccd86-aa5e-42fc-95cc-bf6a3d81d30d'::uuid,'222','999',3483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe49c7d1-ac49-4fdc-96de-7067b77cd2b5'::uuid,'223','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfb669f5-d0fe-42b3-a1ee-4e11a7182a38'::uuid,'223','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f82520dd-ca68-4ecd-8126-978aa53251f8'::uuid,'223','997',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb53756d-b37e-4d21-9078-cb3eff0d2078'::uuid,'223','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ad09352-e4e5-45f7-9e6d-b28b1fd28891'::uuid,'223','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c5bb8b80-3646-42a3-a94a-56a4ea4f6b2f'::uuid,'224','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1194220-5dc4-4b22-ae2a-a74cbe243341'::uuid,'224','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fccb15bc-7952-4ad9-ac78-41a24f3bf3bd'::uuid,'224','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('254f517e-e678-4d77-b9f6-fa20832ad64b'::uuid,'224','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63777069-3851-47ff-88cf-b24e835f93bd'::uuid,'224','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d1d32d2-5e5d-40c7-96dc-b1aef2353486'::uuid,'225','995',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82b84a54-5262-482b-8f92-ec1684bdec38'::uuid,'225','996',4597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('967a3343-fa00-44e5-9347-d6372a7593de'::uuid,'225','997',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7df11bb8-7035-408e-afef-836a79089a53'::uuid,'225','998',3755,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7645cef-7d75-43bf-b71f-85b49a8c6f45'::uuid,'225','999',3533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('303ab322-f7bf-45d4-906c-c290bb5f4113'::uuid,'226','995',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b9c726e6-115f-4d6f-bc1e-d204388f19d7'::uuid,'226','996',4513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4319f1f9-5706-4671-9f6d-04be908ac934'::uuid,'226','997',4120,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1cea46e8-1979-474e-a6ef-e539929bf50b'::uuid,'226','998',3672,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8bd777d-177f-45ae-9123-fe18e61f0ac7'::uuid,'226','999',3449,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebf234b9-9050-4d4e-8020-3eff7312c19b'::uuid,'227','995',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b910efc-43f8-454e-971d-be923f36714a'::uuid,'227','996',4554,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f43c5771-567a-42ae-aa5a-5399172a7f0a'::uuid,'227','997',4161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a4a71ae-1325-4242-aaab-3e7b3e4d1cd0'::uuid,'227','998',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77f48d29-d203-44a4-8646-67a9c3f4ba4f'::uuid,'227','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fdbf9b92-5054-4cff-849c-65b758112138'::uuid,'228','995',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac76abec-9b11-4efc-a1e9-34dcc3c1a6a2'::uuid,'228','996',4491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e9b4b0-159d-46fc-81dc-d77a61aa84af'::uuid,'228','997',4098,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dec78870-5ba7-46a2-8ba5-8e8669e74eb5'::uuid,'228','998',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7b4092c-7c61-413d-be77-f5c518e11785'::uuid,'228','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc7f0055-747c-4c3f-88f1-8c15677d3591'::uuid,'229','995',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2140439-0c00-4069-930d-a105a15e207e'::uuid,'229','996',4535,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81808db0-3bef-4391-82e3-478cc5b0d605'::uuid,'229','997',4278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41cf997b-55cf-4b56-9892-0c4f7660d611'::uuid,'229','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d1f7a1a-ee1e-4099-8d74-1327c874303f'::uuid,'229','999',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('41f401f1-d0c1-4306-a0cc-ea39cdc4de68'::uuid,'230','995',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30331936-f2b8-4f5c-8119-090b67ecc905'::uuid,'230','996',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1b5d632-7ccb-4044-9059-3edae2719959'::uuid,'230','997',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f5e0213-314f-4c6c-aae7-40b0849cdb93'::uuid,'230','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6df5accb-16eb-451c-90b9-05f045d76a92'::uuid,'230','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f15dbf52-ef48-4902-af50-14d73b1da6e5'::uuid,'231','995',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9ee584e5-4478-487a-887d-cc766cf20238'::uuid,'231','996',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7b34147-1fa8-45c3-b2d3-37e551886cae'::uuid,'231','997',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39b9f122-562c-4e78-a4cf-c923d463120f'::uuid,'231','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5acb201d-9fd8-4ce7-abc6-fe4e020b3fd0'::uuid,'231','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a5a3fbb8-a271-4ebb-ad42-860c4437c58b'::uuid,'232','995',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4279bd50-6dfc-45a5-8856-6a7aeff5f0ea'::uuid,'232','996',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fa5728d2-b2fb-479c-bd95-1d2c518f8d9c'::uuid,'232','997',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1d040592-011b-44dd-ba75-32b31446a6e8'::uuid,'232','998',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8214066-1af1-4cc9-aa90-fd5a9b867608'::uuid,'232','999',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb3ff900-97b5-42cf-821e-53e5920ba750'::uuid,'233','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3f271d2-7ef2-46ed-8efc-ab2d95471a30'::uuid,'233','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44d71e20-3501-49e6-b3ab-4beff6fcbc62'::uuid,'233','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c3e0cb9-1667-4319-ac18-d22f06972a63'::uuid,'233','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6f6f0e7-c4e3-4137-a207-b01f43353048'::uuid,'233','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e09ab15e-5de6-4e6e-ab8f-476d8b581417'::uuid,'234','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2215924-0ded-4fc5-ab74-e7016c0c91f8'::uuid,'234','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('38044a0a-c4c3-4e8b-af33-5cdf739b706d'::uuid,'234','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c50d64b7-ab47-4338-b33a-50e95d5ea033'::uuid,'234','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87219d1a-2890-4e83-bcd8-ed28fa5cd432'::uuid,'234','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5aa993d8-68f2-4fe9-9e77-54e85ab1c3cc'::uuid,'235','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45885be7-3369-47ab-aa61-38eedb0806eb'::uuid,'235','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('762105e7-a65f-4933-a341-4f7a49ae5f73'::uuid,'235','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('27ba4c6f-d69b-422d-bd40-8f7febe547e6'::uuid,'235','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4766a194-a112-4c62-a34b-29707a50cb4e'::uuid,'235','999',3630,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a9270764-23c2-4e2e-a3a4-fbc13d39563a'::uuid,'236','995',4399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea4320fb-3702-4293-9f3a-8b7c8645bc0c'::uuid,'236','996',4399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0306a80-60d1-4ad9-96a8-1c3b7c79a90b'::uuid,'236','997',4285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('006b31f6-3f68-4aab-88e7-1dedd59c1357'::uuid,'236','998',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2f69943-9bca-4796-a93f-a9a03d30719c'::uuid,'236','999',3614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c04bfd65-7a09-4258-97e9-5ec3423d2995'::uuid,'237','995',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97a4cc45-1bf0-4f91-b0bc-066ece01f927'::uuid,'237','996',4415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e75e17c-8932-4daa-8811-c5065ff9b1e0'::uuid,'237','997',4301,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c79787a-6443-4760-a820-88db8494972b'::uuid,'237','998',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca3a6e2f-55db-4318-8e9b-0254c6fbae7c'::uuid,'237','999',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dd670767-1148-4dca-a962-bd107faf5798'::uuid,'238','995',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b72cc58d-0d05-4471-ba9c-c1e97e53842f'::uuid,'238','996',4651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eff74f29-3ce6-44d8-9285-6ff95bf7730a'::uuid,'238','997',4258,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('79eb0082-7e9d-499d-98bd-63917fe61f1d'::uuid,'238','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15a5e748-1b8e-449c-a798-4750f4098853'::uuid,'238','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c2e7bfd-ad31-4895-b95e-2d642fa101ec'::uuid,'239','995',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('87e32289-ed6f-4478-b852-bfed5bbb0e74'::uuid,'239','996',4331,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd2d59e4-79f5-4f6b-88e9-34ac81eed8a0'::uuid,'239','997',4217,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('566bed6b-70e8-47bb-80f4-822d2c49c275'::uuid,'239','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cbe03e8-c07d-45bc-b8ab-c867d7f3624b'::uuid,'239','999',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('553415c7-006c-4a80-9b2d-ca330cc9d99f'::uuid,'240','995',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10adf753-d0cf-4cc9-92e0-fa7446a948bb'::uuid,'240','996',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a24b03c4-5503-4a0e-b018-daadbd188b8f'::uuid,'240','997',4093,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('905e12d2-7ae2-42c4-a55c-ab553ed32429'::uuid,'240','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7682c3e3-ac6d-4880-9d52-f4b61260e700'::uuid,'240','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b9f8dfe-63fe-4004-b2c7-49a74e2d39cb'::uuid,'241','995',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f04ccaa-803b-49e5-ba92-190809868009'::uuid,'241','996',4207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ab495a0-2af8-49ab-860e-1765bf0d19fa'::uuid,'241','997',4093,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb305beb-5fbe-4565-8956-c79c0c5ffbe7'::uuid,'241','998',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc87c8c5-e5de-4122-8420-5b48aaef0313'::uuid,'241','999',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('513f337a-b2ac-451c-a2dd-1355fe1dd0f5'::uuid,'242','995',4111,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c383c1f-f824-42b2-ab5a-6d786a134864'::uuid,'242','996',4111,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('724c09a4-4ce6-41bf-a9d8-34275b740ac6'::uuid,'242','997',3997,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b71a6885-1663-4641-8d45-9e75c9d7cf27'::uuid,'242','998',3549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f4fd5189-1cda-42c8-9075-079bfdd6c79f'::uuid,'242','999',3326,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0993d62-9373-4d11-a1e0-2bab4d208457'::uuid,'243','995',4162,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d882225-20c4-4b82-a65d-5fe896d59dc5'::uuid,'243','996',4162,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b494e85d-8801-48de-855e-f0cf5cba8eb9'::uuid,'243','997',4048,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('346729cb-4a2e-4e8d-81c9-53be04ef16f7'::uuid,'243','998',3341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e40f65b5-04a1-4249-be5e-b134401e43d9'::uuid,'243','999',3214,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('00e4b44c-54dc-4eab-942b-b3b2dc0782ce'::uuid,'244','995',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b69629d6-aa1b-4f87-922e-8fbf96d89f4b'::uuid,'244','996',4482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('041b01df-2188-4ce6-be92-b9a9c3652739'::uuid,'244','997',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e5bdc299-0ca8-4ab1-9a89-a3f93aa318cc'::uuid,'244','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8dd4f7cc-7f8b-4a66-99c8-41f09c753a31'::uuid,'244','999',3418,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62dcf114-a574-4faf-8f4d-b393211f06b8'::uuid,'245','995',4266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10a31f9a-6ced-43e3-bbc8-ae9ccf4f5afa'::uuid,'245','996',4266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('568fc47e-a813-4a67-a5b3-d9617ceb9fa9'::uuid,'245','997',4152,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('acb9f728-1388-43fc-a1c7-8422a4ffb8da'::uuid,'245','998',3704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b41c7b9-dbf5-4281-86b6-9e466a20b2a2'::uuid,'245','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('581664d4-682b-46ac-9ed0-96864c3091ea'::uuid,'246','995',4158,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12408aa2-19ed-42c2-84f8-353bb9fac4aa'::uuid,'246','996',4158,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03bffdea-ff47-498f-901d-7c5e0b4664e6'::uuid,'246','997',4044,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1dc32c4c-903c-4982-b771-9d1daf70c564'::uuid,'246','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('429e53b3-bf6e-476b-8945-62f6f43cb82d'::uuid,'246','999',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f94f183c-1854-414a-a67e-b40abd5b4c7f'::uuid,'247','995',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d22d07cb-1fb7-4b90-ad54-c2045e477bcc'::uuid,'247','996',4127,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('efa09d30-a0b3-4adb-a515-0ad784cfe1b5'::uuid,'247','997',4013,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74bedea3-4e05-4b15-936f-3e8a96653316'::uuid,'247','998',3565,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0a14f5ad-f1e4-4e18-b5d2-c9fbbe1d4be8'::uuid,'247','999',3307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7d2d8429-d6bc-4086-9133-c972b33218df'::uuid,'248','995',4130,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('17e1e367-cde3-4c8a-9946-8c9eeb9138e4'::uuid,'248','996',4130,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4fa505d-7dc7-43a1-909d-f1ddd2c46a7a'::uuid,'248','997',4016,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3cf68888-4991-46a5-a013-2dce852e7e4f'::uuid,'248','998',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d6e035b-cb0b-4ee8-9397-fc6fb788e239'::uuid,'248','999',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2db694a6-44f6-400a-b637-ca50c8577b38'::uuid,'249','995',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d17e2300-5433-4c36-b94a-37aa0674060a'::uuid,'249','996',4166,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f09ba524-f689-4d8c-ab69-4228d4b6646b'::uuid,'249','997',4052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('793e6a38-e689-4b00-98a6-b2e9e2abff33'::uuid,'249','998',3603,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c74255b9-3224-4c31-974a-e277422888cd'::uuid,'249','999',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1c6de55a-9841-47b6-a8f7-3dfab21a376f'::uuid,'250','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1807dff4-f21b-4f1a-a9eb-cebf156ca355'::uuid,'250','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c1d3783-c538-4985-8975-00a0a90c4efe'::uuid,'250','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833ea784-2f03-4747-ac60-72d85dd8b1d8'::uuid,'250','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5739785a-3b7f-4a35-b641-b7b97ade5d14'::uuid,'250','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd3ca38a-a07c-4e3f-b601-c39af4223932'::uuid,'251','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19ead668-dc8a-460b-9124-a1232a46e006'::uuid,'251','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8a445bc-5153-4b4a-a80f-2a61cf23e2a7'::uuid,'251','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cf7e890-720a-4124-85c7-cc9dae6207d0'::uuid,'251','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7681190-a16c-45ed-8bf8-31b2efedb117'::uuid,'251','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1baf2d71-c352-4296-8900-ed8cc27b09aa'::uuid,'252','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00afbd0c-6189-4843-b9f8-fba03986ee9c'::uuid,'252','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36f01c9b-4ef6-4515-8660-3784a3654412'::uuid,'252','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4957ea54-2505-485a-bf73-db88ddb5f66e'::uuid,'252','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80538887-8ba8-43c8-bc40-f0482f35b4a9'::uuid,'252','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abe65c0f-8c25-4e29-8418-50bd8b472139'::uuid,'253','995',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf4ea2d5-5d83-46ab-bf53-08e509fcfb73'::uuid,'253','996',4312,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f51f20f-0550-47e6-ac9b-382f54320c25'::uuid,'253','997',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e77f7ead-68d7-48bf-b3f7-2d6d73dc8c5b'::uuid,'253','998',3471,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79464f4c-1c86-4387-a393-dbfa515a1d40'::uuid,'253','999',3248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('df53deb0-3c5e-41bc-bc65-043a7f646b5f'::uuid,'254','995',4203,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72d583bf-c6c6-4a83-aaef-ca8dab31aeb2'::uuid,'254','996',4203,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d1f40e2-7a3d-4350-8bce-5025eeede7b3'::uuid,'254','997',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e275fdf-1bae-436e-94aa-96e87d24debc'::uuid,'254','998',3640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d000ac4-294b-455a-9037-bf1275544b25'::uuid,'254','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5e4c4c3-cfaf-40aa-acf9-a072462ee186'::uuid,'255','995',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a7ceea91-4b39-4156-9a14-720bbf2be451'::uuid,'255','996',4026,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('245295d7-2757-4315-8c40-16c053e3b117'::uuid,'255','997',3912,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6df715bd-2c76-4f7e-8d78-473457f5e10e'::uuid,'255','998',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff6a1611-4d78-42c4-a61b-f2369e58ad1c'::uuid,'255','999',3205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8e631987-5a55-417d-82db-86e1c1b38123'::uuid,'256','995',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8b837380-dcfd-480f-964a-73eaa4516a91'::uuid,'256','996',4071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('73bdf891-e5ba-4895-89c7-04381df1d78e'::uuid,'256','997',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37e33688-16de-4f7c-ad4b-5c2ffc5dd6b8'::uuid,'256','998',3508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('04e29a5b-8619-4414-a83b-e12ede1edb42'::uuid,'256','999',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c48476ee-5fd8-40b1-a19e-f7e2a92b5cdc'::uuid,'257','995',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('def6ff1c-3c0e-4dbd-9909-754c99bbbb89'::uuid,'257','996',4283,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dab43266-ab9e-4dbe-b9fb-f7533b69bcea'::uuid,'257','997',3890,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5cb71164-2538-4e41-819f-be38e7edd23f'::uuid,'257','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d3d44df-dc03-46d4-82ce-04c111e688a2'::uuid,'257','999',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e25680cc-81dc-43ac-a45f-6e763a2f9adb'::uuid,'258','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e37be9e-19ec-4f9c-a995-38fa7445347d'::uuid,'258','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('824259a0-330e-45e7-b3fa-aab8b5f4e089'::uuid,'258','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee3a8794-5a9d-4cd2-ae04-e0f9cc1f3a2e'::uuid,'258','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('124ff310-6527-405d-ba20-f6f250aeec50'::uuid,'258','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdc9c8d0-50c7-4bf6-9e48-26efc432a760'::uuid,'259','995',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('57a716ff-627d-4ff3-9bfc-42ee761980bd'::uuid,'259','996',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00957477-c456-454e-800b-2c0024a7282f'::uuid,'259','997',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c365287-ca66-4463-a31f-0d6fb0d6a367'::uuid,'259','998',3528,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('12d40e39-49dd-4b05-b185-99f064240bf0'::uuid,'259','999',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7bf49f41-f655-457a-b74d-d31fd506e4a6'::uuid,'260','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('037c2797-be93-4c53-bd58-15bb4e64d0e9'::uuid,'260','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb240937-7a1c-40a0-b370-cdde1b1528cd'::uuid,'260','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c732eced-3e08-4ebd-9746-65d3d02b101d'::uuid,'260','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d055639-e9ac-475c-91b3-7f6dcdf38234'::uuid,'260','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1b3250f-52b7-4c3e-8d8d-f46b458ce551'::uuid,'261','995',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5efafb55-168a-406e-a841-d1ae9af5c2ed'::uuid,'261','996',4307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd03749e-5c59-451b-8bb0-c3014fa5cb3e'::uuid,'261','997',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('700e5017-2fd8-411b-8706-bf0e9c953ba5'::uuid,'261','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('163b4a2e-c841-4cb3-bf0b-a4c531e0dbfd'::uuid,'261','999',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ef5cc3e9-db6a-4291-bc74-879e0d72b90a'::uuid,'262','995',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e52c8dec-0f2e-4d08-83d7-eb22c7a63840'::uuid,'262','996',4410,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aefddb7-0d4e-451c-8f79-b4065638086f'::uuid,'262','997',4017,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1ac65567-d072-42d7-8d98-01a90475c145'::uuid,'262','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bad9e1fe-9b73-4876-8f85-c2baeecf1e21'::uuid,'262','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ef3479f-6e1c-4bd9-8496-0841ba671b11'::uuid,'263','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f5a481d-8a57-4602-bb9e-28642ebbf561'::uuid,'263','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abf4add4-cc08-4df3-a654-05d2e43bf7ab'::uuid,'263','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091b1f21-9105-471a-a374-7f332ca4b6d9'::uuid,'263','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0180302a-f78b-4805-9c10-17adbaf32797'::uuid,'263','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5260a8ad-653e-421f-8c74-43be98fd1d37'::uuid,'264','995',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba09188d-1bae-4769-b821-0f195da24984'::uuid,'264','996',4340,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1015dbd6-4109-4548-9de4-2894533e01ee'::uuid,'264','997',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c961fbb-8905-4959-a195-96ea3ad09d7f'::uuid,'264','998',3498,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83155307-b12b-4b20-8f75-5df50b25505a'::uuid,'264','999',3276,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9001d557-34e7-410e-a881-fca1903bf213'::uuid,'265','995',4075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('255ecf1a-552e-469e-93cf-761f4e933f13'::uuid,'265','996',4075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6e8eac9-2723-474e-96d7-a92c0b174f9e'::uuid,'265','997',3961,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('023ad1df-61cf-46b7-bd7b-242fe6242fbd'::uuid,'265','998',3512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f803616-2354-4e12-8793-747aad08f54e'::uuid,'265','999',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0b398133-4c41-4128-bd82-1d145731c7f9'::uuid,'266','995',4090,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('817eebc9-efc2-4972-9edf-7d49c8f6f59e'::uuid,'266','996',4090,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c4b7cac-25de-4dc5-88d4-9092c728a98d'::uuid,'266','997',3976,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('479ba7dd-7269-407c-9211-879cd4404f32'::uuid,'266','998',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6f72c1e-404c-4e35-bf36-5366884b476e'::uuid,'266','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e219ca-a1eb-425d-a0a1-c3335df158ea'::uuid,'267','995',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67c59219-c616-4149-bf88-c032893a2157'::uuid,'267','996',4437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec38d1ed-33b7-41a0-9f80-036e03472b41'::uuid,'267','997',4044,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('05c525b7-70ea-41d9-aae2-16cdf2283759'::uuid,'267','998',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c7fa33c-a547-4057-9785-525260c601ad'::uuid,'267','999',3373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('49358197-13b7-440b-a27a-b796455f73cb'::uuid,'268','995',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f12ef0e-32a6-4b80-b91d-f89dcdfeed46'::uuid,'268','996',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9b82f3c8-c927-4235-bc89-58c360d1d505'::uuid,'268','997',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3ab51bd1-5d8e-4a47-8442-05a2def8ffc8'::uuid,'268','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ab005f5-6e48-4e95-84d1-a4fdd5d6196f'::uuid,'268','999',3344,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f87a307b-9688-4e9e-a2bf-7731bb7f762d'::uuid,'270','995',4236,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('018f4645-5ba6-4f5e-977a-98b4a68f5fdf'::uuid,'270','996',4236,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8bcbbcc-8330-451f-939b-252ccc91c1de'::uuid,'270','997',4122,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12028503-34ca-44f5-bf94-2ead0e267857'::uuid,'270','998',3415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5b0c3bb-a936-4c27-b513-4aa63b7b3f06'::uuid,'270','999',3288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('867a13f1-2465-456f-8c8c-0b281408e974'::uuid,'271','995',4247,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5336c88c-226f-43c3-a489-9f535c25a137'::uuid,'271','996',4247,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9bf85add-f386-4178-a797-5f76e5d8991b'::uuid,'271','997',4133,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('17b10528-7e97-4b7a-8d9b-d8a237dd00d7'::uuid,'271','998',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61b3a6b6-87f1-4a0b-98e1-36eeb2e88f90'::uuid,'271','999',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09b99083-d6fc-41ca-ad44-57bc68aa7eba'::uuid,'272','995',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e695f381-3766-4ce1-b9f5-b9e672697432'::uuid,'272','996',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37ba3eea-e135-4e6a-bde1-add04f5a549b'::uuid,'272','997',4192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e505b3cc-bc2d-4b47-9893-5b9978937f1f'::uuid,'272','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d41213b0-aeb6-4d1b-90c8-e935d27d0fa9'::uuid,'272','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5f5cf8e3-bece-432a-8f21-6d6c05af6876'::uuid,'273','995',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9531addd-31e5-4fd7-bb59-91a259afc7a7'::uuid,'273','996',4306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c35a5231-dbda-4fbf-bca9-18a96f988965'::uuid,'273','997',4192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('238ccfa9-93d7-495e-8282-94458d0d3c96'::uuid,'273','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32bfea58-7382-4afa-9f6a-36f2142f7f40'::uuid,'273','999',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b30455b1-e181-42f0-9e31-320407f95981'::uuid,'274','995',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3eb27388-4c24-4bbd-bcfd-3f200dc5d164'::uuid,'274','996',4553,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d5e6f5e-b668-486b-b975-87c47db52d9b'::uuid,'274','997',4160,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d43b22dd-e699-4d43-9a7e-b3332742e517'::uuid,'274','998',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfe2d6d9-3134-46e0-a86c-a3955282276c'::uuid,'274','999',3489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8d7c2a79-0a40-42db-90dd-180c3a1439af'::uuid,'275','995',4358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('24d05fee-1c4e-4c77-ab75-adbbdd871a59'::uuid,'275','996',4358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2c8c7e2a-0ed9-4983-ab32-31662855e373'::uuid,'275','997',4244,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8238dc0d-3ed3-4bdb-bea2-dcc6a7250c3e'::uuid,'275','998',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2186527e-21a8-42c1-a80a-a617b3204b75'::uuid,'275','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43cd628f-5caf-45e7-8266-e0b8cd206c8f'::uuid,'276','995',4349,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('626d1881-dfc8-417c-969c-8cb827ed0fd0'::uuid,'276','996',4349,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('312c9589-374d-4386-9814-5baa3a13becd'::uuid,'276','997',4235,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4502afc9-69e1-4610-93b6-190344703f1b'::uuid,'276','998',3786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b6e073-7c34-4058-8265-a496bb4690e4'::uuid,'276','999',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2be81df-500d-4f55-a1b3-74693c2e130b'::uuid,'277','995',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('466c81df-c22b-4d5b-b1db-8b0c27a128a9'::uuid,'277','996',4606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d82d67b-9390-47d1-9d9c-5780e38d8428'::uuid,'277','997',4213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14f858b0-e4dd-4489-8ac3-8a11b9b72e2d'::uuid,'277','998',3764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e4c413c-415e-4948-908d-d4885c2f1b45'::uuid,'277','999',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('556205fe-6e6c-4613-81a6-1c298c300c04'::uuid,'278','995',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54c05018-96a0-4ba0-88fe-707b6332f7e3'::uuid,'278','996',4708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c2e5190-5207-4984-b557-e70e0e913447'::uuid,'278','997',4451,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b61c3482-4497-439b-babe-f14a172cac0c'::uuid,'278','998',3866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('384b0613-a4bd-4b75-8918-78df2e31db33'::uuid,'278','999',3644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0cac00ab-4a8f-40b6-8b54-0ff1d81ef1fe'::uuid,'279','995',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b21d827c-e80d-4a35-871a-a88bc35e6061'::uuid,'279','996',4761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78013f89-9441-4218-9c8a-70abd24a1485'::uuid,'279','997',4368,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b96c3ab6-25a0-43c7-ae57-e3c6f6683554'::uuid,'279','998',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53ddc287-805e-4f96-a287-0e2f133e2d1e'::uuid,'279','999',3697,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('746d1d06-5485-42c3-af05-36fcb107f6fa'::uuid,'280','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b90b13a0-88cd-4760-abea-ec2e0cef5f7a'::uuid,'280','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99b1a005-e0a0-4b37-a492-f43ec93a8b13'::uuid,'280','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89e6fd2f-0688-424c-880b-c6ef59312c89'::uuid,'280','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27fd82dc-b996-4a18-ae3f-88bfa7ecbc29'::uuid,'280','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c75c2947-35d8-4ab6-9bbb-eb4fae5afec4'::uuid,'281','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d6bdd8e-5421-47aa-b0c7-84ea4db7ad86'::uuid,'281','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0aa49a9e-1751-4cfe-bff1-72eaf9166a32'::uuid,'281','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf20951b-83f5-4ef2-861d-a0aa2a92c7ee'::uuid,'281','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('448e151f-2801-432b-89f7-e1f305f6dd9b'::uuid,'281','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6eddb2fd-e815-4c9f-90c1-8f5b7d46658c'::uuid,'282','995',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7efb84f0-a666-489e-8916-23d8e6d451f5'::uuid,'282','996',4574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e96997e0-2ae8-489b-b588-044bd600fac3'::uuid,'282','997',4317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eaf87c9e-a98a-4e12-8ab9-5eb747723ef4'::uuid,'282','998',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c9865fd-5b32-48fa-b22c-4dbe8bf743ab'::uuid,'282','999',3510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f004d510-7224-43e1-91fe-191c832375a4'::uuid,'283','995',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01595b1d-5c45-4b8c-b1ff-7f0d57ec8e48'::uuid,'283','996',4661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f4aaf15-c5aa-4c3d-91d0-09ded28e8101'::uuid,'283','997',4268,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('381a8e54-4661-4f2d-b73d-a164564c004f'::uuid,'283','998',3820,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f58a095d-a4f2-4802-ac3a-202e751eb5ce'::uuid,'283','999',3597,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d992946-7857-436f-bb15-755ff38475cd'::uuid,'284','995',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a388580-b34f-4918-94ef-b1a55c1a1e05'::uuid,'284','996',4734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84053339-ff0f-4832-8327-0839e0ef07d2'::uuid,'284','997',4477,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1168f709-9dd9-4246-9f7e-db13e947e0dd'::uuid,'284','998',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc24d1c7-a33b-4168-af78-b15871b286a2'::uuid,'284','999',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f9920910-c355-4dd3-9218-931cbe46ff48'::uuid,'285','995',4462,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74eca53e-db79-43fe-b01e-18c33d0e97c8'::uuid,'285','996',4462,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('280d7f3a-a076-424f-8e50-39fa0a92811f'::uuid,'285','997',4348,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dac67a75-f058-4e9e-ad3e-5971453c8f63'::uuid,'285','998',3900,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df00f689-7d86-4db8-a1ab-95e8ea288b96'::uuid,'285','999',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d40d29-10a1-4f4d-bb11-3c1d1d58d5aa'::uuid,'286','995',4238,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2098fcb8-2d07-44e4-a401-8bacffb51175'::uuid,'286','996',4238,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c23462de-4fe0-4b9b-90b5-a16a66cdd7fb'::uuid,'286','997',4124,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3dea0ed9-8ac3-42f9-8ea2-d93ab3fc0cf0'::uuid,'286','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8745d9a-4151-44e3-9ff4-dbb3ecb270aa'::uuid,'286','999',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5f5c3c18-c56b-4577-8a58-bb6708e5aa93'::uuid,'287','995',4183,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e7fc6e5-7f4a-4c6d-8be9-c319cdb74a10'::uuid,'287','996',4183,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0466b3b5-428b-4672-8644-f84017a2c328'::uuid,'287','997',4069,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e358c08-45a4-4eb2-a5db-c66a66418028'::uuid,'287','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77cb2a97-1221-4ed6-8fb5-17825cf8e976'::uuid,'287','999',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b825841a-36d2-4649-b508-8f1137ebe072'::uuid,'288','995',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7504e3f9-6086-45b9-ac21-524269a87c0c'::uuid,'288','996',4479,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ac238b9-b565-4cd6-8d0f-955b8653e727'::uuid,'288','997',4222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1aeb4f2f-ad5e-4fb1-ba8d-8d1799900ef4'::uuid,'288','998',3637,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('543c38e3-068b-4e5e-89ca-bef3ff6eed6b'::uuid,'288','999',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('21c77ed5-2eda-4573-9149-a720e9e1031a'::uuid,'289','995',4215,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ff3faac-3e5f-4796-80c3-eb31b9603c50'::uuid,'289','996',4215,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39ab1561-9ef6-431f-9ca3-a51823204180'::uuid,'289','997',4101,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aad374c6-1197-4858-8918-c8fc4308853a'::uuid,'289','998',3653,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1efe0781-d02f-48ba-bdf5-10a0963d4e49'::uuid,'289','999',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('574eecee-a32b-4b34-981c-e2047cb33e95'::uuid,'290','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('264fff0d-6410-4918-b9c1-efb40dfa8435'::uuid,'290','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a097447f-4ecb-4850-a5f8-957471a627c4'::uuid,'290','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eaf36a2c-c561-4e19-8063-90615d771209'::uuid,'290','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b2eef92-147d-4a50-9006-b2ea2764944e'::uuid,'290','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('486f7153-e120-45be-a071-c87ae9723d92'::uuid,'291','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d526cab5-8f05-4e17-a347-246d61dd0489'::uuid,'291','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90a2c2d3-d5ab-4239-a9a9-45c996dd46c5'::uuid,'291','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f1712c2-2229-4438-b7cb-63bde9bc0559'::uuid,'291','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ae0ba2d-e01b-44a2-9b7b-0493143a3898'::uuid,'291','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fea5a98b-fe01-4294-b0b9-2fff6708b6ae'::uuid,'292','995',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51b7bc9-d4e3-4888-a44b-0757f241c96b'::uuid,'292','996',4626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c52c13c-8921-4601-8784-fe111d7b9009'::uuid,'292','997',4369,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('24cbe12d-7ba1-4a4b-8fd9-7823f7f1e49c'::uuid,'292','998',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce9465f8-e3df-4bcf-9324-0ccbba0cb732'::uuid,'292','999',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dc99306e-a930-4730-8339-f0831bca3aa9'::uuid,'293','995',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a9a89e0-1afa-483e-8ee6-7adda41bf45e'::uuid,'293','996',4557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8be25640-2b92-4b46-ad66-d4150bdc8c1a'::uuid,'293','997',4164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a36be853-a8b0-49b5-b403-3e2b25ddfcfd'::uuid,'293','998',3715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcf527f9-a17e-49bd-a50a-6137db4a698c'::uuid,'293','999',3493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f835e726-5d98-49be-91bf-1f08ffabde6c'::uuid,'294','995',4438,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('254981b4-4825-4b26-8143-ef781c11599a'::uuid,'294','996',4438,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eae86b2d-b8d5-4dd3-a60a-e44f444d912b'::uuid,'294','997',4324,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('348c1614-df7b-49cf-8cdb-c2eb16322cfa'::uuid,'294','998',3875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e043f3f2-b2f6-4d48-849c-5f7688788e66'::uuid,'294','999',3652,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6d89afe7-69a9-4390-8f4d-fdfb441022d8'::uuid,'295','995',4419,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a568350-7bb1-46a7-97a8-bba0b044689d'::uuid,'295','996',4419,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a1605d77-b4ae-4821-9c24-3696dca4ac7b'::uuid,'295','997',4305,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c7a05be8-7d23-4c01-b23f-c5321830f66d'::uuid,'295','998',3857,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae17f170-64bd-4862-9fec-703ca5a94d54'::uuid,'295','999',3634,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88bebd36-a305-407e-9608-d500b0625613'::uuid,'296','995',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('090a47d7-29af-4b15-aff7-3c65c03e48be'::uuid,'296','996',4561,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9536a3dc-b1c8-4083-8c1c-97bc356cdf6e'::uuid,'296','997',4304,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce12f03d-c312-4d97-8a8b-4fcc8a4e6f35'::uuid,'296','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51e2169e-82c5-4271-9468-d56d397c02df'::uuid,'296','999',3497,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e475d483-98fc-47f7-9c23-51e42908f27c'::uuid,'297','995',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3bc524a1-3054-45a0-8930-be02b969cf4a'::uuid,'297','996',4585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fb65308-c895-4971-8513-27dd5342be52'::uuid,'297','997',4328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1f876e8-731e-4e09-8974-5ae8209fdc64'::uuid,'297','998',3743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('370c1d52-0097-43d3-b5a2-063e080babec'::uuid,'297','999',3521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d8cc489-17d6-460d-b9a0-f2a5a5cd7f4f'::uuid,'298','995',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('673275c2-974f-45f2-b9da-f1a19d58b1ad'::uuid,'298','996',4640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('937c90c9-c245-48b2-b98c-bf136b241a4c'::uuid,'298','997',4382,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b3f964e5-d37c-4cd1-9cd3-3ae093cc542f'::uuid,'298','998',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cc44cdb-0b5a-42e9-a435-7699ee49db67'::uuid,'298','999',3575,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('44951017-67ae-40ca-ad99-d3ff30bb70c8'::uuid,'299','995',4458,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdb0eaf7-9c96-4d9a-9388-5e5c77ee8a1d'::uuid,'299','996',4458,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fa0496f-bfbf-4583-8530-3ddb825281bc'::uuid,'299','997',4344,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d5ce60f9-1b51-45cc-9039-7dcc16a890bf'::uuid,'299','998',3896,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fbdae02-b99d-4bac-9c58-62cb40e70d54'::uuid,'299','999',3638,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a80c574a-3796-439d-b436-f77dce59847b'::uuid,'300','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8d6b9a5-58f5-493c-a50b-c1c54a22504d'::uuid,'300','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3508dd44-12bc-428c-b07d-ef809a960b79'::uuid,'300','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4841c6b1-9f5f-4c00-b9ba-13777718c37c'::uuid,'300','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a8854ac-eabe-4412-affe-ab112549512d'::uuid,'300','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0fd3154f-d7cf-4ac0-8fdd-ca54fc12edc9'::uuid,'301','995',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('806f6b1c-68eb-439d-a629-ffea8deeeee3'::uuid,'301','996',4480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0d247dd-71c3-441a-b7b6-fc6f5c97973e'::uuid,'301','997',4223,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec82172f-c73d-43bd-a55d-d0e11b5aba97'::uuid,'301','998',3639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81cf50e4-3e58-4915-8ce6-b41b0aa7f985'::uuid,'301','999',3416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ee09e57-b03f-4ef9-acf7-9afb9185494c'::uuid,'302','995',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2109642b-06c3-4a1f-b683-ca02e45c243d'::uuid,'302','996',4288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1311faaf-7566-40e7-87d0-3dbb05808d0f'::uuid,'302','997',4174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a67776e1-1ad5-48be-813a-8d83a27ea78a'::uuid,'302','998',3725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ffb77760-b836-45b5-b0de-4bed04921375'::uuid,'302','999',3467,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0491b332-8916-4f24-98a9-f26738eb7a2c'::uuid,'303','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e71605af-17e3-4a9a-a47d-4d4cb8be41a2'::uuid,'303','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5597075-133f-4d9f-8cda-59a33d4ac63b'::uuid,'303','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75fca57a-07c0-4419-9c03-c60d6b5b717e'::uuid,'303','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('158e7b87-b9b2-44cd-b877-c91bc890540c'::uuid,'303','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d1dfc901-10e2-457b-8b26-e0ef29eded7a'::uuid,'304','995',4439,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d4f67eb6-13b6-40ea-bd5b-8cdcef959f3f'::uuid,'304','996',4439,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32786e2a-65a6-45dc-8ddf-5707f8df0b5c'::uuid,'304','997',4325,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('533efc44-27a8-4c7f-ae11-8a4b9cd41eee'::uuid,'304','998',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c32493a8-da50-45ad-91a5-a21f332e6507'::uuid,'304','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f377c71f-f771-460b-b8a1-2f1c4b601276'::uuid,'305','995',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c9f8200-203e-4648-8d32-3db256b5a2a4'::uuid,'305','996',4534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e06278-1a20-457b-abae-5619d7399f52'::uuid,'305','997',4277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c004971-3b81-4980-9856-4d7c22995d67'::uuid,'305','998',3693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95ac5e69-0d4c-4972-b746-cbf38546f181'::uuid,'305','999',3470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e36f4699-f8df-4e87-9391-b0793b61fefd'::uuid,'306','995',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab2cf5f3-0e8e-4921-a22d-7edea16aafba'::uuid,'306','996',4322,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc6fa435-6e25-4662-b17c-6f0480bb06d1'::uuid,'306','997',4208,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('999b9eaa-642f-48df-b5a1-275d9f7b5c13'::uuid,'306','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('526b086f-a98c-4269-8b42-a0e835505662'::uuid,'306','999',3537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b7b5fc09-7302-4331-8178-b5370b33212f'::uuid,'307','995',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99256076-a556-459a-9e7a-47f004765eaa'::uuid,'307','996',4444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8be92583-c884-40ac-b0f4-bb3002791e4c'::uuid,'307','997',4051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81b64d72-5c76-4294-b35b-3c2518929c17'::uuid,'307','998',3602,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f8761c2-3682-412e-8dfb-3485f912228a'::uuid,'307','999',3379,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f5cbbc8-5f01-46df-b55d-15dd68f9c645'::uuid,'308','995',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('890cff7b-0c22-42d8-9f39-dd1a44e09b71'::uuid,'308','996',4650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb45fa89-4988-4db7-a5eb-f87ae79a928f'::uuid,'308','997',4257,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('740c5d96-1269-40ca-8e64-bc3f07eb1089'::uuid,'308','998',3808,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2ec8366-a3df-4c63-8626-c651bb9b1f32'::uuid,'308','999',3585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cf75c82c-dada-456b-9a6f-3730aeb352e7'::uuid,'309','995',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c54c657-9bd7-443e-849b-f8f791b3533b'::uuid,'309','996',4644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3028237-34c2-4dbe-877d-5dfdb5800411'::uuid,'309','997',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1e9466c-327c-471f-8a52-8dd7b26ef93b'::uuid,'309','998',3803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3b53348-939f-43a3-88c0-62e15ba97390'::uuid,'309','999',3580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e045e367-0e2f-4ce3-a3cc-d02e6a95c733'::uuid,'310','995',4368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e932817e-1329-46b7-838c-2b04e52a0ca1'::uuid,'310','996',4368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1384a757-522f-4345-90ff-3a4eed01c440'::uuid,'310','997',4254,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74eacbaa-8809-40be-af05-e273c92ee5aa'::uuid,'310','998',3806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a64687bd-fb97-4d9a-b140-6b0786e88459'::uuid,'310','999',3583,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4b4271b2-594b-422b-b7b5-22fb71365391'::uuid,'311','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95704b9d-a8ad-4da7-835a-a62e59a11a6a'::uuid,'311','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('542d645d-dd45-4467-97a9-308b8bc9cf54'::uuid,'311','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eade56f4-0b47-454d-81b0-c2529e6e890e'::uuid,'311','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34845e0e-9baa-49ac-862f-0e70313c590e'::uuid,'311','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e7c4f58-b9ba-45a6-8ab1-2d92cf69b2b4'::uuid,'312','995',4336,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d817986a-7be6-4a7b-bab8-4b3c484eeb9a'::uuid,'312','996',4336,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fd70e60-4792-4e7c-a78a-d9a4ace55d84'::uuid,'312','997',4221,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7cabfb2e-8140-41c1-9ac8-4cc377434875'::uuid,'312','998',3773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f940bbf3-8019-4030-8306-694e3be22662'::uuid,'312','999',3550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a90f9de2-182f-4e00-b47c-a184cb74dabb'::uuid,'313','995',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bc196bf-8709-4fe0-8b2d-15d602bda174'::uuid,'313','996',4776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea3fb98b-fb8b-47e4-a309-6258b988c1bb'::uuid,'313','997',4383,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1cafc7ac-f216-43ec-82ce-2c5c34d0e6e5'::uuid,'313','998',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63208aac-72b4-4255-a631-5d35349bb2ad'::uuid,'313','999',3712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abb11104-850d-4b18-928b-4404a07f00a9'::uuid,'314','995',4489,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9031423-fa8b-456e-b26f-2321c305c7f0'::uuid,'314','996',4489,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9693eabc-a816-434d-80bd-c5fff2ae79dd'::uuid,'314','997',4375,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45f4f79b-df6a-4081-b230-f34a5d9d4158'::uuid,'314','998',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b867eca8-acc3-49de-a369-60bba434df15'::uuid,'314','999',3669,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e9836516-edb0-4130-895f-da9083ecb0d6'::uuid,'315','995',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c92dad1-b028-4d2f-9600-2f5f3f700850'::uuid,'315','996',4756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('397e60f3-6522-4667-bcc9-d54629db577a'::uuid,'315','997',4499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7cb2b047-a2b0-425e-a3a3-1691969576fa'::uuid,'315','998',3915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c55464ae-03f5-4bab-9bf4-9f9caa7ac4c3'::uuid,'315','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70cc0162-e50d-4b9e-a5bd-cb7cc7dca422'::uuid,'316','995',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('024f7f11-8016-4f63-b556-2c87dc3ac606'::uuid,'316','996',4477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56b6d098-31ac-4c65-b4be-165ff5423484'::uuid,'316','997',4363,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6c96a11-bd96-4cd6-af13-af873ab2a12b'::uuid,'316','998',3914,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b67dc948-63d8-4cb2-be38-6418b1bf9c6b'::uuid,'316','999',3692,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('93d4b82b-b03e-4529-8542-0a3395287dae'::uuid,'317','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3122414f-34b8-4852-b9ec-5163ca3f58ea'::uuid,'317','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80f63a6b-4e56-429d-8b34-a322a9b04448'::uuid,'317','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67925a9b-1d9d-47b4-b2c6-1a9c0153012b'::uuid,'317','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82a72092-7dae-40a0-921c-18749a9654df'::uuid,'317','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39013f90-4367-449b-a0a8-c519b6fdc24a'::uuid,'318','995',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('336e8d72-2217-4d41-9e0a-f26fea792fba'::uuid,'318','996',4636,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6448b3e0-898e-4047-91c3-3598784af444'::uuid,'318','997',4378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e185c6de-0b33-44e2-aa45-e25a6068c00d'::uuid,'318','998',3794,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea49605c-96dc-469b-96f7-c930917fbb48'::uuid,'318','999',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7f5471e2-7cd9-4e8a-8d7b-66d187de75af'::uuid,'319','995',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59fb6a19-1816-4a6f-8ad1-4b854c205eb6'::uuid,'319','996',4604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('978e0997-3d0a-4bc4-bda6-a5022684fc9a'::uuid,'319','997',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ad02c38-7720-431b-b835-3c3744f155f2'::uuid,'319','998',3763,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1f7c8cb-cb83-453c-a65e-caf200956cba'::uuid,'319','999',3540,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba0f188f-d358-484a-a4d7-ed0fd740604b'::uuid,'320','995',4570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('abc5bfbf-46d0-44fe-96ac-4410dd6d279b'::uuid,'320','996',4570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45cfad31-0567-4f4e-ad3f-b622e675c7d1'::uuid,'320','997',4456,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('066f884b-5761-4636-824e-c8ef803d0d30'::uuid,'320','998',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('528f1fad-45f1-49a4-a936-3bee3775cd62'::uuid,'320','999',3785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5c4d4871-0e13-435c-9ca1-e5bd9c66cc75'::uuid,'321','995',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ec6054e-9533-4cb2-bfcc-dc42770ea9d8'::uuid,'321','996',4919,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75038700-9e53-479a-85b4-defd6c1df4a9'::uuid,'321','997',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcbbcecd-07c3-4d86-a982-efb5d8048f9c'::uuid,'321','998',4078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86440a6b-109c-4004-81b4-4609fbd53f35'::uuid,'321','999',3855,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5380887f-d54f-4df1-a611-975ecbdc70c0'::uuid,'322','995',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e652a25-762a-4a25-9541-1fee75cfcd1b'::uuid,'322','996',4846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c3a420c-3c07-450d-8a08-8ad1b48e88ab'::uuid,'322','997',4453,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a27ab44-65ee-462e-8c32-85da68d4aa0a'::uuid,'322','998',4004,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46252aa5-d052-4ed6-8093-817a23c6a571'::uuid,'322','999',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7d94f962-8c89-4175-a9f8-1479c30cd754'::uuid,'323','995',4474,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2326f2c9-7dfc-412e-94f5-f966e6a58d1e'::uuid,'323','996',4474,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d81a40f-a881-48a8-83f9-8d2d3b29cc75'::uuid,'323','997',4360,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('beec250a-1a23-4566-9490-6c0243360d57'::uuid,'323','998',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('514c6a04-e142-411d-8787-98f9c11d64f0'::uuid,'323','999',3654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fcde787-df73-46d6-84af-060a364d7a6c'::uuid,'324','995',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b016ffd8-7018-48d0-a0f9-74dd8f58f6f4'::uuid,'324','996',4685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69485c6b-6df8-42a5-9dca-3290f3cca3b2'::uuid,'324','997',4428,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62ec5f8a-a3f5-48bc-ada5-a12325c3caf6'::uuid,'324','998',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebc328f0-0b86-4d6e-89e8-d630bf0eef27'::uuid,'324','999',3621,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aff2f194-4e3a-4eff-a01a-48f6d07d9cb6'::uuid,'325','995',4372,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('28641937-ddc5-4403-b4eb-bd262916a7eb'::uuid,'325','996',4372,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('88af4920-5df9-46de-ad14-60d06c18ec5b'::uuid,'325','997',4258,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('73aee377-09cf-4766-9577-6a7fe8a5377d'::uuid,'325','998',3810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7842f17-f356-459c-b91c-cba5f5ea9df1'::uuid,'325','999',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95e55c74-b911-4118-a14e-5a45da90ccec'::uuid,'326','995',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2af0eba-b4f9-424d-a8d8-db4a13d3c971'::uuid,'326','996',4866,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b930a62-d29b-46b2-9b8b-5201129969f2'::uuid,'326','997',4609,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47af5b35-d79e-4a94-b2b0-70f0f747f0e7'::uuid,'326','998',4024,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68f93cbf-adca-408b-91e6-ba113d404ab0'::uuid,'326','999',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('09deb6a8-1250-48fc-b546-504f6e8d25d4'::uuid,'327','995',4685,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03e8b9d3-0558-44f5-bae2-8b6029a5fdbf'::uuid,'327','996',4685,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a97a2797-8538-4f5b-874b-4e51ee9e01d3'::uuid,'327','997',4571,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ed768fe1-9ea4-4bc8-93c2-430f053ad88b'::uuid,'327','998',4122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79f02661-fa82-4084-ab1b-12e5667c9d18'::uuid,'327','999',3865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0cc7eed-312b-4ac7-8c46-81960887cf9a'::uuid,'328','995',4690,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('46d6bc88-d5bd-41ec-bd9a-985f41708393'::uuid,'328','996',4690,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a60d4308-c0f8-49ed-9a71-a0af8ab2ab01'::uuid,'328','997',4576,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9d0f36f6-a889-4dd2-a5bd-a46115eb2e53'::uuid,'328','998',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdffa565-85da-456b-8596-f8b919ff87a5'::uuid,'328','999',3905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88edc673-b67e-41f3-a2da-8db6881034a6'::uuid,'329','995',4741,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('416870a3-d6b9-4892-9f75-44119ff10747'::uuid,'329','996',4741,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c9cdd7c-bcf4-4033-9af6-6a864f5aca16'::uuid,'329','997',4626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a48765cb-bb09-4100-a62e-0e122916e579'::uuid,'329','998',4178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('670ed815-4789-42df-9929-03228667e436'::uuid,'329','999',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f21ae0b-02b9-4f19-b018-a44e6190637f'::uuid,'330','995',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('337443ca-c00d-419f-80f3-0193a64185de'::uuid,'330','996',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c93b510-abbb-4ef0-ad45-ba244f2afb5e'::uuid,'330','997',4796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41f043b6-f420-40f0-a04a-1b9fe3e44e35'::uuid,'330','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb08b24a-153c-4933-9556-d21f6c98acfa'::uuid,'330','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6ebfe7c2-af36-441f-a69e-6669f3a9d0b0'::uuid,'331','995',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c95de71-c4c0-4625-b83b-8a900b509e49'::uuid,'331','996',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ca38bcdc-361c-4754-8813-912db6dded05'::uuid,'331','997',4796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('be39f0a1-de58-41cf-85d0-975e1400ed71'::uuid,'331','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a698c8d-38d4-41f8-a52a-8634179be3e6'::uuid,'331','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0463ef4-2218-443b-9e4a-c7653dffaf49'::uuid,'332','995',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('873982bb-2466-49ab-936a-9d4d52082d2e'::uuid,'332','996',4910,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8df68e1d-69a0-4d86-93d1-6bf34cb54ea9'::uuid,'332','997',4796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5916400f-5057-448c-bb3d-00768c2f100b'::uuid,'332','998',4347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a801589e-8fd0-40ea-bfc9-0df7f9dbf95a'::uuid,'332','999',4124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a30ab952-e9d0-45ab-af32-d19cead1e44a'::uuid,'333','995',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09241860-f055-46bb-8e72-6690203f66c1'::uuid,'333','996',5166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44fb2c1b-3b69-4beb-8cea-00f286009531'::uuid,'333','997',4773,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b289fde-3b50-4f38-84de-0b6cd134bfcd'::uuid,'333','998',4324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('49e6accd-91b5-404f-83ee-7f7e0b821b54'::uuid,'333','999',4101,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4d22652-1060-410b-a2ba-30399b7900d3'::uuid,'334','995',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c44c37e4-fbd2-4922-8d70-6efe8eb2e2b5'::uuid,'334','996',5108,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71bd107e-3831-4fa6-bad5-b0f7d4f39835'::uuid,'334','997',4715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a4305a28-5b90-4d15-b1dc-bfb963d5180e'::uuid,'334','998',4267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('782c4445-8795-4e5f-830d-d9944ad2a61b'::uuid,'334','999',4044,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('987989f4-cb29-4ff0-95cc-f56357c23d7b'::uuid,'335','995',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b990201-79a5-4dd0-87c4-10b91c490f23'::uuid,'335','996',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9042027f-1158-4a97-899e-a90713d79765'::uuid,'335','997',4593,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5cc6ccd-e8f2-4561-9773-14d70a993b75'::uuid,'335','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7701a75f-5b49-4404-82e3-8c57aaf94e41'::uuid,'335','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc7b5a58-8b67-4031-9865-fb251380e788'::uuid,'336','995',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('522cfb5c-1d66-4d97-a39b-67a87787a8d2'::uuid,'336','996',4707,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e1efb2b-c89c-4d82-8d16-630143a274ec'::uuid,'336','997',4593,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('246c6b1f-16f0-4fcb-8a41-8f3b9a35123e'::uuid,'336','998',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acf1591f-270d-4a8c-a05a-1d409b1890e5'::uuid,'336','999',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2cda7123-260b-4431-83ca-dc826905be18'::uuid,'337','995',4721,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29a3cd36-7037-42de-a25f-1f9265588bfb'::uuid,'337','996',4721,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45a57259-4b02-4e98-a6a2-201e77418c14'::uuid,'337','997',4607,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f07ace9-bf7f-418a-9ca6-c2e2363f218b'::uuid,'337','998',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ed7f377-0d44-4b45-8b22-a09c5dd21c94'::uuid,'337','999',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2305e75a-f375-4df2-910b-87eeece111c5'::uuid,'338','995',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e66b04cc-8514-4ebc-aaa0-71beb3129634'::uuid,'338','996',5013,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5772116-16a8-47c5-9b4b-b90e610115c8'::uuid,'338','997',4620,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('928fc86d-ab08-41bb-8f67-995c8a91ee9b'::uuid,'338','998',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833c0877-1020-46d3-b69c-91a022848742'::uuid,'338','999',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('74d71b33-0b94-4d01-900b-68c5fe229a83'::uuid,'339','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b42a80b0-a90d-4936-a822-245a29ba1da7'::uuid,'339','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d347ac6b-b011-4205-a470-e3779f402faf'::uuid,'339','997',4697,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9bf9908-88d4-4839-a579-bfe28afeb000'::uuid,'339','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7f6ffca-1cba-488c-b352-906a20c15ddb'::uuid,'339','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfab6d7d-249f-403f-b807-f77726670270'::uuid,'341','995',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f0f5d8c-cf21-4f9d-8571-902ac6ba28e5'::uuid,'341','996',5090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7b9a533-07bf-4047-b434-0003b86f9b49'::uuid,'341','997',4697,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6a4ba4f-d466-4636-b33f-5e6989d36fb3'::uuid,'341','998',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb9d5419-4f4b-496d-a20d-08109af78e22'::uuid,'341','999',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('928903b5-d371-4c38-8ddb-83b42a78095d'::uuid,'342','995',4755,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('16b60ed8-b418-4420-8d1b-1779a4fe5595'::uuid,'342','996',4755,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e373d877-43ff-4808-b683-8367bdb6d2e7'::uuid,'342','997',4641,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff7113e5-f3bf-4d65-83c3-ba75d52fe4dd'::uuid,'342','998',4192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2dcec900-17b3-4bad-b2c4-c012e61c9eca'::uuid,'342','999',3935,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fabf2d6-01dc-47b1-a990-596cc4f5229f'::uuid,'344','995',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b214c4a2-23c9-402f-a44d-18fd40704b24'::uuid,'344','996',4902,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01a7f7ae-3f8c-4400-862c-2e9915edfcdb'::uuid,'344','997',4509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29c4815b-ccdd-44db-971b-da5423f83389'::uuid,'344','998',4060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c1f7751-a4cf-4abc-a613-d35bfa491f4d'::uuid,'344','999',3837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1d10d6c2-c6b3-4eb9-ab31-337012cf828e'::uuid,'346','995',4683,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93ceaa53-634e-4409-b769-5415be0b75f7'::uuid,'346','996',4683,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31e66b1f-cdf0-45fb-adbd-d14d55204290'::uuid,'346','997',4569,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b379b3e6-60dd-4e84-83fe-73505337be04'::uuid,'346','998',4121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c994cdcc-3f95-473b-baec-abe56e083caa'::uuid,'346','999',3863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28dbb463-8a9e-46f5-b9bc-7fe0ceb1fb17'::uuid,'347','995',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cdd939a-fe2c-4939-a563-19d34e321a2a'::uuid,'347','996',4981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdadf950-6a17-484e-a581-8505fc0ba21d'::uuid,'347','997',4587,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('678598f4-e667-4e5d-a9eb-1e96b4ca8c97'::uuid,'347','998',4139,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e71e65a-3a93-4880-a89f-27a4e7bbde51'::uuid,'347','999',3916,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f8b0cd73-8c11-42f4-b64f-3c1dccf24d60'::uuid,'349','995',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e939ad46-7fbf-4a79-bbcc-1fbaabab0204'::uuid,'349','996',5068,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ab1bd6c-b17e-43de-af06-2c5b36b4c5d5'::uuid,'349','997',4674,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5086e351-d77e-421d-9934-e5a2044b9026'::uuid,'349','998',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acd28542-237a-455c-b6e2-b15f8f0c1435'::uuid,'349','999',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('42a7c330-5264-48cb-8013-55b89966fd5d'::uuid,'350','995',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('903daadb-c8c3-4c60-b5fb-72dce7d6bf64'::uuid,'350','996',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('573fc18f-e2dc-408b-a24f-14f410a5dccd'::uuid,'350','997',4084,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c35874f4-97c4-4c9b-a306-bc0a767c447d'::uuid,'350','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4addd5fc-968d-440e-b844-96fa725aee57'::uuid,'350','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6cfaf08f-5136-42af-8530-e09a5b4f1fa1'::uuid,'351','995',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72a5edf8-5cf7-4b50-98ef-a6f61ed86550'::uuid,'351','996',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df85f4ba-b57c-441d-9328-9cc78bb35ca4'::uuid,'351','997',4084,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('96bc8ad6-9e73-4b90-92b2-a7b5270bcafb'::uuid,'351','998',3635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('39f0d7a3-b58b-475a-9a14-ed619e8b5b6a'::uuid,'351','999',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3419a3c-6976-4a2d-a2e2-392d5fb47bb5'::uuid,'352','995',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69938228-d68a-448d-9c0c-4519589106ad'::uuid,'352','996',4461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3ef1717-ac75-4305-90f4-8db08b5da020'::uuid,'352','997',4204,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9dcc22c7-7a3f-4d26-9b0e-84f5aa25cf4d'::uuid,'352','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6bb9a3b-2b7c-41de-a657-32f55d2e2f25'::uuid,'352','999',3397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a5caa996-63fd-4139-a003-de66001cb463'::uuid,'354','995',4184,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7b74ac53-4872-452c-a37d-efa74720d207'::uuid,'354','996',4184,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('94f45a7e-fc31-47e3-a374-14e2ac093b2e'::uuid,'354','997',4070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('317a6313-eb98-44e3-933d-4422709eba3a'::uuid,'354','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccd35856-949b-492e-8790-0940b2dc78cf'::uuid,'354','999',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b274b018-7bfc-4328-9e4f-1dda6f529db9'::uuid,'355','995',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a438cf92-c6aa-48f2-8f84-6ee7f62dc056'::uuid,'355','996',4416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55c91d67-cb77-4473-b930-29f164531d8e'::uuid,'355','997',4159,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29d6eb40-3e09-45d6-90bb-94b656de6a7b'::uuid,'355','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02761da5-ba9e-4ee0-94b4-1669ae6e3c94'::uuid,'355','999',3352,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('26c2b32a-7d75-4d11-bdf3-e0f3d810b4b8'::uuid,'356','995',4088,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54450ad0-ef7c-4ae8-81ba-440b2980b828'::uuid,'356','996',4088,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7240f9d8-acac-4993-89c1-083d89698e7f'::uuid,'356','997',3974,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f43c05a2-3430-4913-b310-ad7c463992ea'::uuid,'356','998',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56ebd485-75b3-49f8-9f3a-055db2ec358c'::uuid,'356','999',3267,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d697caca-c148-49fe-9a61-e13a35d65ccb'::uuid,'357','995',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9aced432-493f-4b24-baed-3de4fceeb1e2'::uuid,'357','996',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('104fcc24-2b8f-4bab-b028-9318a4627342'::uuid,'357','997',4010,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f2e656c-475d-40a8-b366-1fa12a43044c'::uuid,'357','998',3562,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8d894fd-1008-4b8b-975f-bf76c03d8b08'::uuid,'357','999',3339,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9795eef1-dfdf-4d76-9e12-c4acf179d961'::uuid,'358','995',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce0747e3-be2a-441e-87ac-a1365cd8b1ca'::uuid,'358','996',4387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0219c94c-afcd-4107-8295-891f954d3412'::uuid,'358','997',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0caef744-b63e-4c5e-98ca-8fd42953987e'::uuid,'358','998',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5765d1c5-62fc-4b24-b3f7-f743c97755ec'::uuid,'358','999',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c16fd64d-b4ec-4f52-9f3b-a52fdba1d1b7'::uuid,'359','995',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9250c82d-de32-4c72-952b-e08e14a698e4'::uuid,'359','996',4452,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcb813f7-c44a-425a-8b52-2fbfc5aeef73'::uuid,'359','997',4195,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d072c8c1-16dd-496e-9495-d9cddfa4e4b2'::uuid,'359','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('343b248f-20eb-4d12-ab14-4704f453faa7'::uuid,'359','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('34e845d2-e8a2-4a0d-b135-f2ce98d2b52f'::uuid,'360','995',4302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dc0b253e-eb3d-48f9-be6c-0c36888deab1'::uuid,'360','996',4302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f187241e-d4a3-4f98-8736-b6f601695ff4'::uuid,'360','997',4188,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41da94f6-2da9-4ef4-90da-718a0becda9c'::uuid,'360','998',3739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6ecedac-48e1-472d-9abb-3bff7e0dab21'::uuid,'360','999',3481,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce4c5332-9a59-499f-8052-1f0a69f7dfd3'::uuid,'361','995',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23fb83a0-7067-4cbb-9b24-868be4d3f58e'::uuid,'361','996',4271,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a206ce84-25b1-4952-bdf5-d4942b71c1e5'::uuid,'361','997',4157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13ac893b-91ac-4c2d-bb41-f67a5d987a33'::uuid,'361','998',3709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ac1f204-f2d7-491f-83b9-c9064d035d9c'::uuid,'361','999',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2e1109ce-d682-4e0e-9f41-179016268026'::uuid,'362','995',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ec6e2f8-bb3f-4319-a00a-e64590e378f6'::uuid,'362','996',4508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5f3f80c-0103-4614-902e-627e47f87ebc'::uuid,'362','997',4251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1144d2f2-deed-4a18-9082-106794968114'::uuid,'362','998',3666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2870647-e388-4f51-9866-43dc876df708'::uuid,'362','999',3444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5b951a6-9e2e-425c-8325-4ebfd85a24b3'::uuid,'363','995',4355,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad5754f4-b3ea-4a76-a63a-004e939c3d24'::uuid,'363','996',4355,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f77e1b4-480d-4d9d-b28a-9c1ae465e6ca'::uuid,'363','997',4241,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1af9346-b560-4e8e-8ad5-4ca4e1fe5b20'::uuid,'363','998',3793,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e87e2f-1e7c-4944-860b-e263145856ed'::uuid,'363','999',3570,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4faaba6b-fa03-4e40-97ce-6026ba13ba12'::uuid,'364','995',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1592fdc3-ed51-436a-8d12-2141da44601b'::uuid,'364','996',4600,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8d9f1a6b-07e1-4068-a21b-ab92cd284dd4'::uuid,'364','997',4207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68075639-8d3c-4e07-8913-29501ef1113c'::uuid,'364','998',3759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d88a333-9899-40f7-b333-1329c09c7016'::uuid,'364','999',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a384a3b2-3109-4ae7-822a-d2c96b6c8723'::uuid,'365','995',4312,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99429bd0-a28c-4025-8c88-62f2b4d2f7f9'::uuid,'365','996',4312,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77b6fa38-20e7-487a-86cb-cdaef2c16d80'::uuid,'365','997',4198,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a53704ab-486a-4308-adf8-f3e2bb0db652'::uuid,'365','998',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2154de3e-b053-4e28-ba1b-7a02ba744316'::uuid,'365','999',3527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f6f5b71c-823a-408a-8933-c9a0245c064b'::uuid,'366','995',4324,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a29286b2-e254-49ac-a2ab-7aaf8d1de1b0'::uuid,'366','996',4324,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('384910b0-ce50-4a6e-b5c9-3e367dc017a8'::uuid,'366','997',4210,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3292afbb-29b2-442b-820d-a7e6836d9389'::uuid,'366','998',3761,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('334dd1b7-1222-45fc-842a-fe4f20a9bbc7'::uuid,'366','999',3539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e12b8f30-921d-47bc-a11c-3d708f06322a'::uuid,'367','995',4224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fff96b3-bd7e-4dd0-b3e5-c7982211b2ec'::uuid,'367','996',4224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0efdfb74-f85d-4d94-a0bc-bacead5adb9d'::uuid,'367','997',4110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5499ac73-f031-4b79-bbc1-d611686de8b0'::uuid,'367','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5766c748-d158-48b8-a95c-9d3b7063b631'::uuid,'367','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ab81f6ed-49de-4a8f-8038-a70de6320e47'::uuid,'368','995',4294,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a846f54-afdc-4aca-93ae-de998b15f5b4'::uuid,'368','996',4294,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dfc773a9-a9f7-4749-8fc1-00924cca4f14'::uuid,'368','997',4180,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('343630de-2781-44b6-aba1-849eb6181a65'::uuid,'368','998',3732,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4052d909-39c0-48f4-80ec-b0c0faca08a7'::uuid,'368','999',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d649ade-4a72-4749-8571-77771e6df737'::uuid,'369','995',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5babc1fb-b480-4605-8de4-3c6e8e0d1c4c'::uuid,'369','996',4505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10ae8be5-8496-43ce-8807-2e9a16fe61a2'::uuid,'369','997',4247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ab3a171-01db-468d-b4da-df3e07db5984'::uuid,'369','998',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ab44752-2958-4887-b854-82df8619cbfa'::uuid,'369','999',3440,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1595fc80-bf83-4b52-a0e3-7be78e24c295'::uuid,'370','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ac95e0c-5515-4a39-af0c-e056cc043291'::uuid,'370','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d6850d2a-7d1d-49e8-8bc2-b6cf81a94cd3'::uuid,'370','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2552eec-bb3a-43a7-9328-c86c74d7904e'::uuid,'370','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88ce772a-a9ea-435f-9665-112a0fb77b28'::uuid,'370','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c99f82ea-2fa9-4dcd-b97a-623ee0170231'::uuid,'371','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('58d0c392-b338-4804-a281-8ed369f52f2f'::uuid,'371','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fe6cc244-6539-41ec-be5a-2db32d63ba69'::uuid,'371','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('17a791d5-ef5a-4be5-98eb-f6456cbdac4b'::uuid,'371','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('adfb832d-d82b-4966-b6f0-c7cd4eafdc46'::uuid,'371','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('acb18139-8aca-49a6-a9ef-de858069b877'::uuid,'372','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('42719632-a77b-46fc-a629-c337027045bb'::uuid,'372','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('62c07f24-9fcb-405f-9ef0-c904fe49a451'::uuid,'372','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3256aff4-755c-4292-aa18-0fadbdada500'::uuid,'372','998',3439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2be87918-686d-4dee-a938-2c58d0096de9'::uuid,'372','999',3217,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('023bc02f-d736-4d84-bfe7-b38d58ac2548'::uuid,'373','995',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da67a3bd-9e10-4428-b2a7-a00b6ba07616'::uuid,'373','996',4390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fa5a2476-a67d-4da3-80d1-d73dc1990a36'::uuid,'373','997',3997,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1ed6b1b-370c-4461-9904-11a027539c3c'::uuid,'373','998',3548,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcce6f14-fad6-4e1e-bdad-1e82abef5975'::uuid,'373','999',3325,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a25d8b28-bd21-461c-8f0d-7af77d5565b4'::uuid,'374','995',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce5637fe-fc28-4d8f-9c62-edc7358f0657'::uuid,'374','996',4411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac6c665b-404a-4579-b510-59ad783f97d4'::uuid,'374','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0f34b759-9d2a-45ce-8159-ad9183fdb3ca'::uuid,'374','998',3569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0930ea7c-b552-4658-bf38-d0e9241e2e92'::uuid,'374','999',3346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e201772-30c8-4471-99b9-356e6cac6a43'::uuid,'375','995',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3a6ef6a-c686-4827-a998-ef2d26f68efc'::uuid,'375','996',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b72df6f6-b29d-4b43-87fa-4880d525a586'::uuid,'375','997',3843,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31482a0c-0e45-4eb3-8807-f18d990fee7e'::uuid,'375','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14de41bf-9291-4678-b721-a85866be72aa'::uuid,'375','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bb00e4ef-d779-4cde-81e6-9eb7cdffbb17'::uuid,'376','995',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6784401-e195-4608-bcac-c53fb47288b4'::uuid,'376','996',4447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3108fb8f-5013-4bc5-a991-7417d3d9d4bd'::uuid,'376','997',4054,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6aace830-e50d-40ea-8291-78a4364afeb2'::uuid,'376','998',3606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01a02e3c-26a5-47be-990b-7c51942a4188'::uuid,'376','999',3383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33ed6a16-eff7-46e6-af12-9d82058741e7'::uuid,'377','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9faf62f8-abb4-4860-a84e-7ce3e0e2b518'::uuid,'377','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3283d2d5-5e28-4a93-a36b-b15d9dd43231'::uuid,'377','997',3990,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aa4f9273-e064-410f-8ebf-c82833268af7'::uuid,'377','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65b4f844-97db-49a5-9259-0cd132bee328'::uuid,'377','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4f458f05-b068-42e0-be07-03ba0021285d'::uuid,'378','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f56b8e5b-621c-470e-854e-cb83ab7d7cc5'::uuid,'378','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a73dbb29-b8ba-4b8f-bc75-7e36147d3732'::uuid,'378','997',3990,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14c0c3b4-a6ff-43a8-b659-dda768ca4f85'::uuid,'378','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8ff57a0-8752-4ffa-8124-a8a2d8f90667'::uuid,'378','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f699a21-f962-4ff7-a0fb-e22ed431764e'::uuid,'379','995',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa88c2ec-3e9d-4639-8145-93a98de29426'::uuid,'379','996',4383,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb294330-bec9-4864-b54c-c9626d3c716c'::uuid,'379','997',3990,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('abc8b7ff-75c0-4e8d-bf8f-f7d4451666fe'::uuid,'379','998',3542,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d157e47-58fe-45c4-bf6f-4142e05d5af9'::uuid,'379','999',3319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('69befc96-d1e4-44ff-82e3-f38deeeb639e'::uuid,'380','995',3939,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3124fdb-f2fb-4350-8773-50df151d9148'::uuid,'380','996',3939,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95fd1827-1044-4cd4-9b50-81bdd1a4d8cd'::uuid,'380','997',3825,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31d011af-9024-4b55-b7e2-49824b8ee034'::uuid,'380','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4937e54-ec9a-4774-b426-a32db6c1bb21'::uuid,'380','999',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('808a4ca5-5788-4dac-accd-c0eeb3c12ccd'::uuid,'381','995',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f703c37d-2e30-474a-bfce-a0db475d21ea'::uuid,'381','996',3957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('deeb8e86-954c-4242-af3b-3e1978cefec5'::uuid,'381','997',3843,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fc0a38b-50b3-402c-8480-9c609098ca93'::uuid,'381','998',3395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a75c026d-eff8-4210-be92-90331c0fda23'::uuid,'381','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fd6dca1b-636a-4fd6-bb26-db697e67f401'::uuid,'382','995',3929,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4752a2f5-a04c-4fe8-aef0-f87ae760fae8'::uuid,'382','996',3929,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3503f70e-1fde-4fe5-a807-c49925346e0f'::uuid,'382','997',3815,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('007db3cc-198f-44ca-a055-3401300a048d'::uuid,'382','998',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4381ab59-62d1-41ff-8bb5-677d1e153a3c'::uuid,'382','999',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('834f9cd9-c227-4efc-bafb-52594c33ce56'::uuid,'383','995',3986,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33cea76a-b269-4a53-91f1-8f77e826283e'::uuid,'383','996',3986,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('267eeec3-3e3b-4f59-9528-caf543a16780'::uuid,'383','997',3872,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2ca3f2e-5e19-4411-ba27-938538f3ce8f'::uuid,'383','998',3423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40372cad-872c-4e19-adf8-e63cabe7d1ed'::uuid,'383','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('73153580-2368-4fb0-a302-8a58b6e1aabe'::uuid,'384','995',4062,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6556d4dd-57b7-43a5-b152-80a10d79d5bd'::uuid,'384','996',4062,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('decc25dd-65cd-4fa8-baea-921965a41b74'::uuid,'384','997',3948,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('599660ec-5688-4b3a-a9ee-3c3a4dcb8e93'::uuid,'384','998',3499,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('080ea6a1-777b-4266-b75e-8d989b7c055e'::uuid,'384','999',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64288b3c-adc2-4593-bd79-f11ab844acea'::uuid,'385','995',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('136654a8-df21-40a3-80a9-4ce1954569fd'::uuid,'385','996',4345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7452fa1f-7c09-4e21-89c3-5c2087e5aa1d'::uuid,'385','997',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a98ca9b8-63b9-4d00-8fa6-5213ee8ee9ab'::uuid,'385','998',3504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bf466a9-972a-44a4-9c18-2ffc77ebeb5e'::uuid,'385','999',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('32b3a9fa-b1e8-42eb-accc-06628795e5ff'::uuid,'386','995',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98469886-2ced-4cbc-abd3-0d4f0d030691'::uuid,'386','996',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4b8c074-9736-4fe3-8841-f2eba3ae681b'::uuid,'386','997',3879,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('823064fe-1028-4747-b7ae-960d143094ab'::uuid,'386','998',3431,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312f4cfb-aa8d-4f19-ad16-9b3033ea8620'::uuid,'386','999',3173,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('049ee39c-efae-4f97-a8c4-3ff03aa0c4de'::uuid,'387','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('620bb21f-b7b0-4f11-8353-404ec32c663e'::uuid,'387','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac9f460a-67c6-4355-949a-63b1e2176083'::uuid,'387','997',3944,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f41f4c97-da63-43a6-bdda-8f0f87e75387'::uuid,'387','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c779791-18b1-4842-bb13-4b0b1b40b27c'::uuid,'387','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5bc49c73-9b23-47a8-8dca-099a5075e7b1'::uuid,'388','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f1b55b5-1412-44a8-b951-da954ca7bd64'::uuid,'388','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35d60a10-7d77-4dfa-9bf9-7bb967365393'::uuid,'388','997',4070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fc2fe24-e4b7-4a43-8518-bd14f184973e'::uuid,'388','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f620df4-1e51-4928-a191-8c9005978860'::uuid,'388','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d3684c6-f739-4944-83b7-a4358096ad26'::uuid,'389','995',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a896216a-0e45-4130-ab3e-2bfef3793ac0'::uuid,'389','996',4334,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e593792-0123-4bfc-bc41-7b2a6cd9c282'::uuid,'389','997',3941,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7721b39b-681f-4a21-a7f1-e0671bb12d6d'::uuid,'389','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51bdf420-e08b-4d94-a958-2e9928c711c6'::uuid,'389','999',3269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ee1eb773-f154-4c19-a037-ca59f45abe80'::uuid,'390','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91cdf814-8365-4313-8bc1-85a07619d3a8'::uuid,'390','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf68e613-128a-4fab-9908-d722b0cd7ff0'::uuid,'390','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f366d0f-7fc5-4d31-ac0b-f97729b1e82f'::uuid,'390','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60848180-a7f6-48b5-9b4b-50e0f57fcdc2'::uuid,'390','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9658a699-793a-4f29-a62e-24d7eaa0100e'::uuid,'391','995',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dea4d653-8988-477a-90b3-b1a2f4da4c98'::uuid,'391','996',4407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8e04dc4-ac04-4bd8-ae07-4b290ce7c952'::uuid,'391','997',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3501487a-bbfe-47bc-aa82-5e572e42c609'::uuid,'391','998',3566,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65a3f68d-b3b8-444e-8265-435f6a8bced8'::uuid,'391','999',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4258b5eb-56a4-4344-91b2-37bd6ff5467a'::uuid,'392','995',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e98d080-f450-4043-b284-5222b6f3cbcc'::uuid,'392','996',4423,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09139905-d2eb-483c-9193-411980d490d5'::uuid,'392','997',4030,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39bf0be1-8cfd-49d4-a992-e6897ae908af'::uuid,'392','998',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72b8ce71-f113-42ae-a053-619e64bc3918'::uuid,'392','999',3359,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7aa2e8f0-f27f-4179-a1bd-804456c6dbd0'::uuid,'393','995',4189,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6082740c-31cb-49f6-b34b-3e564b83d1e2'::uuid,'393','996',4189,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1670ccf2-feac-498d-8f56-b5e00c0f5958'::uuid,'393','997',4075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6a9a117c-5da4-4733-a3da-20772fef3315'::uuid,'393','998',3627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8874af70-7870-4d3b-a6d3-e8f17cc27134'::uuid,'393','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4d504d60-3ae5-4c78-bd52-1b50dabd7f22'::uuid,'394','995',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a94105-811a-4913-9aac-845e8c701a03'::uuid,'394','996',4512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8621af14-147a-47d7-9ac2-00d8fc711060'::uuid,'394','997',4119,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1f3aaee-932c-4a52-9b05-db6f967bbd8b'::uuid,'394','998',3671,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f605d8c-066c-4a9c-8453-f3982ae3e0e0'::uuid,'394','999',3448,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a52b8f8a-2909-4d69-bad6-685705acf282'::uuid,'395','995',4282,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33b6cd63-15c9-4347-abb9-af00ed8f637a'::uuid,'395','996',4282,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cab09945-a5fb-4efc-8e89-83e6e4720490'::uuid,'395','997',4168,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2e202c3-1415-4766-aa2b-2362b392ad1f'::uuid,'395','998',3720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c7dbfd-0248-4774-8089-6c1b51fa1b28'::uuid,'395','999',3462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('92d996cc-e46e-4be4-8d97-6a8eea14cb83'::uuid,'396','995',4204,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('255c3357-a0d2-4d99-add5-2a7ef3487b9d'::uuid,'396','996',4204,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9f8f46c-41ef-43bc-9025-644a2b73d3e8'::uuid,'396','997',4090,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbfad524-115e-4c8d-b70d-3cea9ccffe33'::uuid,'396','998',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('35212846-1823-42a6-880e-2c7158a3b52b'::uuid,'396','999',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f6cbaca-3249-401a-884c-85f0526dd5ad'::uuid,'397','995',4122,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d224bf09-cb02-4e8c-9185-ff6a5bc662b9'::uuid,'397','996',4122,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44bbb44b-b1d2-4c14-a2cd-7d1650956e96'::uuid,'397','997',4008,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09f76f18-2dd0-4e43-b9cb-c92918cbced9'::uuid,'397','998',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c13766d7-234c-4343-8635-f605e29ee8d5'::uuid,'397','999',3301,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0d63262f-6efe-480d-afe7-da538ba2f82e'::uuid,'398','995',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('739d7b3d-a973-4e3c-b7be-7eb8c847a1de'::uuid,'398','996',4689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a668630-ae00-4fb0-895c-0bfbdb51c567'::uuid,'398','997',4432,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7a081e6-ee39-4ce5-affd-2acdc2d61100'::uuid,'398','998',3847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44ed0a3f-1486-4e5c-817d-d10564c154b7'::uuid,'398','999',3625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cf617c9-35d3-4a7b-bff2-d221de9148ce'::uuid,'399','995',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b875a1f-78c0-42cc-a9d0-3693ee609b52'::uuid,'399','996',4527,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21c00a55-c156-4156-b557-86f2c2ea8286'::uuid,'399','997',4270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45714275-cd8a-48f3-b63e-8d329e2d1198'::uuid,'399','998',3686,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65e3db99-e414-4dbb-9e45-2718d3d710d8'::uuid,'399','999',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88d21213-bdbd-4316-9347-a18d2daf95b7'::uuid,'400','995',3898,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fa09050-5ed1-4a44-a4d0-a3d41168eadf'::uuid,'400','996',3898,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db9cebe3-6e1e-4b9c-bb6a-34969b7341d6'::uuid,'400','997',3784,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b6b6b69-3e2e-4332-8bc2-ae4017589ea0'::uuid,'400','998',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e49c5ca-c4da-4b3a-923b-8d597cfbd38c'::uuid,'400','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('867ff36b-689f-4331-af4e-73e6a7b8cb15'::uuid,'401','995',3903,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdfff041-adbc-47ce-b2b2-15b72be1bc08'::uuid,'401','996',3903,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('062d2a52-81f6-4684-9c9a-cbf9bacd7432'::uuid,'401','997',3789,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0727a48a-be59-4754-994f-8fb95a16283f'::uuid,'401','998',3341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4718051b-39a9-449a-9c13-ced79f0776bc'::uuid,'401','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e631e1c5-dae4-4a2f-a4c7-1b09b04dfe27'::uuid,'402','995',3867,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3049979b-0bc8-469c-bf63-0d91ab27367b'::uuid,'402','996',3867,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df70ae7a-5522-4e86-936e-dcf4e431f445'::uuid,'402','997',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54d31015-f40e-4c88-b0e8-142339c6cc0f'::uuid,'402','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cb6d127-9fbe-47fa-bce6-aac3aa0965a0'::uuid,'402','999',3082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('829dbb84-244c-44e5-a215-dbc581dc3ebc'::uuid,'403','995',3967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34917f0b-a6a3-4f99-b112-15a6636162f9'::uuid,'403','996',3967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1adcc12-b84d-4db3-a733-93ac014c2232'::uuid,'403','997',3853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3b519a3-3f7d-43b4-9fa0-7e291d4492a9'::uuid,'403','998',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e4ccb8e-6d18-40c5-84df-348088136caf'::uuid,'403','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fd7ff97e-e63f-4a26-9e91-496e6e18b19f'::uuid,'404','995',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd135615-0167-4814-897d-52495f191e32'::uuid,'404','996',4253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75781174-dacd-497f-bd5d-9b78ce7d26d9'::uuid,'404','997',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9969580-e73a-4093-a2ad-46db983c04fc'::uuid,'404','998',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8564954b-bedf-4669-87e5-5f6ed41cfc37'::uuid,'404','999',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51adbab-f0eb-4fec-96f9-6afdd2852f23'::uuid,'405','995',3937,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c99dbd2-4cfc-4908-8385-507c0895d596'::uuid,'405','996',3937,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3853847-70cc-4134-a53f-9c45dcc076c7'::uuid,'405','997',3823,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cdb25c90-9781-430c-8e61-e0597a20dfa8'::uuid,'405','998',3374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72aaeb04-f851-4e03-bb3d-82ec2fcd22ce'::uuid,'405','999',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fb086be5-5ffd-4d7d-aa11-e64e48647517'::uuid,'406','995',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7da705f-13df-4256-b6b2-42d00fe1d242'::uuid,'406','996',4196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('576d4f60-ad26-488d-9197-ddd9071ea8a6'::uuid,'406','997',3803,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4722139-83e6-4cda-85fa-190680ccf092'::uuid,'406','998',3355,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f4debc6-cbc2-4091-9d77-62a4f1e94771'::uuid,'406','999',3132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71ba2829-f7ce-47f6-8227-525e9e9545d3'::uuid,'407','995',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb4eaeb5-08cd-45af-9e71-26e47f954692'::uuid,'407','996',4306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a2808d72-b1b5-459e-b294-3633374ad8b9'::uuid,'407','997',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b69ea3d-0f0b-4253-9d53-2dbb2b9712cc'::uuid,'407','998',3465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ba993b5-f407-40b3-be10-c55a322d3c5e'::uuid,'407','999',3242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2d5551d9-f603-4952-a44f-c5ca11387961'::uuid,'408','995',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e86d8a2-2018-47b9-ba64-cd02346ccd93'::uuid,'408','996',4364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98147445-71ef-41cd-be63-9a802e2cdb66'::uuid,'408','997',3971,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e35dacff-3abc-4c62-83fe-4514717f4d01'::uuid,'408','998',3522,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae113128-7c7f-4921-ae37-40a633b0cfda'::uuid,'408','999',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d704b735-9153-43bc-b81f-6b7fcba4a724'::uuid,'409','995',4025,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('074a4549-d543-47ca-b463-4b8f8b4584e7'::uuid,'409','996',4025,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4e12ebc-8c5b-410a-9ec1-6bb877f00924'::uuid,'409','997',3911,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a924ec4-f174-45f9-92fc-108a524ac10f'::uuid,'409','998',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18ae6bfd-158d-45fd-876c-c6d6236cad66'::uuid,'409','999',3240,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a64629e9-4113-4a8f-a45d-7d7fee5a98b1'::uuid,'410','995',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc40dc80-9788-4f3a-8315-3d43c2603468'::uuid,'410','996',4180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75c3cbe7-ddf2-45ff-b810-4f1c3c6cd04a'::uuid,'410','997',3787,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e7d0a31-0897-4dbd-9bfc-06d781d6e699'::uuid,'410','998',3338,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a582b75-bd77-4b6d-9fcf-62daf1e80aea'::uuid,'410','999',3116,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c867619b-5827-4264-8479-e8754cdb79db'::uuid,'411','995',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('edc9a6de-f032-44f8-b696-8a422b21c856'::uuid,'411','996',4262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a820960-4843-4f34-ae43-7f2a5d8b90c1'::uuid,'411','997',3869,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('596dab0c-8ed5-4b8d-b9f8-6c4c418e76ca'::uuid,'411','998',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdcee7f2-9255-415a-9bea-a42f63bd8f1f'::uuid,'411','999',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('edd96b78-183b-4f54-895d-63b55b657640'::uuid,'412','995',4047,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b2b88af-9104-4102-a559-8e84499c808c'::uuid,'412','996',4047,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('abd276c9-ac99-4de9-922d-fd9a7b73ea80'::uuid,'412','997',3933,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1dd5d9ca-dd5e-48b3-ad63-171c45ccecad'::uuid,'412','998',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5891ddaf-0ccf-4016-9942-8cc16f7a2ac7'::uuid,'412','999',3262,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ab631f56-5615-4d99-866a-38ecf83e5e98'::uuid,'413','995',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('886f4b0b-04b6-4334-8987-0277bd530b2a'::uuid,'413','996',4296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('039cb738-018e-4d51-a331-496827aec269'::uuid,'413','997',3903,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1ed16d4-c684-4077-9085-d772898a6b6b'::uuid,'413','998',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e9a4d72-6ddb-4210-81c2-f0b659e27ce0'::uuid,'413','999',3231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c2c4f0b9-ffa0-4432-85fb-007d8424ab60'::uuid,'414','995',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9cbe709-41c7-4864-8ccb-59ba9aa4fcad'::uuid,'414','996',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5300681-91ac-4325-9dc4-12eff1a97359'::uuid,'414','997',3879,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78562018-9569-4ffc-8e69-157f5fd32e8f'::uuid,'414','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('499ba6ff-92f6-484f-8215-6ae68b0fd834'::uuid,'414','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a82c1ce5-6350-4773-8e17-93b80c665fed'::uuid,'415','995',4073,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2b8c6940-9bc0-4f30-99cc-b1075891878f'::uuid,'415','996',4073,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0ae854ac-2cd7-4706-b6b6-f23302ddaf04'::uuid,'415','997',3959,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6ade605-d894-4f30-8031-cea418adee41'::uuid,'415','998',3511,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26f50081-565c-4404-93c1-13a84ce8e660'::uuid,'415','999',3253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a3e05965-22fb-48bd-9451-69db01fc9657'::uuid,'416','995',4049,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('94890399-60eb-44eb-99f6-531b5ec0f4a1'::uuid,'416','996',4049,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6c0260a3-abe8-4298-a116-5fdf1de1a190'::uuid,'416','997',3935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33c2bc23-4bea-4870-8553-628484094689'::uuid,'416','998',3486,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28c0132a-c8e8-45e3-81ee-02209fe7465f'::uuid,'416','999',3228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560ea882-9d14-4cfa-a7fe-b4711943c036'::uuid,'417','995',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b77a31e8-3bad-46bc-b8a4-71b5b38eb700'::uuid,'417','996',4327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec1cab62-9941-4330-bae0-0c2565e90b4b'::uuid,'417','997',3934,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f0fac9af-312f-4344-927e-c0a1187182a0'::uuid,'417','998',3485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ef9ae51-152d-487a-a552-0479dd0b3aaf'::uuid,'417','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('68b52011-ea47-47f2-9960-2252971d5b2a'::uuid,'418','995',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bc38cb6-c3f6-4902-9c79-0a70c079ffb9'::uuid,'418','996',4351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('896d85dc-9a05-4c25-833d-0e8cf35f92ed'::uuid,'418','997',3958,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ce5cef89-d83d-43f1-b37b-54e661f42ec4'::uuid,'418','998',3509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a9454e1-1459-49d0-8731-1ac610df71d7'::uuid,'418','999',3287,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acbd8889-41d3-49b1-8fbb-1843a1ff07a0'::uuid,'420','995',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b1a6954-6952-4af9-b9f4-b3a8dcf9094f'::uuid,'420','996',4177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb2291da-7df9-4d5f-90dc-ee4cf0c72f37'::uuid,'420','997',3920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31fac67c-cd18-4feb-8fd0-32a2ebdc6833'::uuid,'420','998',3336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cdfdf0d-c176-4bdf-ab36-ec254d4e7b14'::uuid,'420','999',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('76386ffd-6e65-456c-a315-ef8775eefa90'::uuid,'421','995',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('951ce0dd-43ca-4d44-a520-ba6e40ebb0ee'::uuid,'421','996',4241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c1b8f53-3560-4f7a-900d-1c245fe96ea2'::uuid,'421','997',3847,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f516a855-b106-4a54-8e01-e2f9a334ba25'::uuid,'421','998',3399,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a39386ee-b511-4e83-b7ab-25354c8e5d79'::uuid,'421','999',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d26905ee-6a4b-47e8-99bd-737eec18aa87'::uuid,'422','995',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f86d01f-4707-45c3-ba11-d799bb3b8a57'::uuid,'422','996',4231,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0085648d-e52d-4957-97a2-b9f5da9b29e7'::uuid,'422','997',3838,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3de5b71-c9fe-43c1-a9b5-9dfabd649743'::uuid,'422','998',3390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ea77a06-6f39-424d-b3b0-bccb53bc0b78'::uuid,'422','999',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('251821bd-4f50-4329-a56a-8a88fbf18a0a'::uuid,'423','995',3908,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f84a030b-de41-4fdf-90ab-1b49378a47af'::uuid,'423','996',3908,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('700cfd43-7f30-4052-8d42-c321950e7d7b'::uuid,'423','997',3794,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b661e76-131d-4b69-9e43-96f1390b9365'::uuid,'423','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d93e8454-4eee-4997-815d-22d4ba756602'::uuid,'423','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe50e3a1-8376-4bfe-8f5b-6da2cc2e727b'::uuid,'424','995',3880,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('013bddd6-a803-493c-9192-47a799bf1f63'::uuid,'424','996',3880,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('496981af-22e5-40a6-b776-7b1cee7f1ab5'::uuid,'424','997',3766,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ceff5bbf-e30f-47c9-8486-2ba9b18d6d1e'::uuid,'424','998',3317,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df1a0250-070b-4f67-ab2a-18f22ea64aea'::uuid,'424','999',3060,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c1cb5213-0ef9-4f1c-9dad-43eade1c2118'::uuid,'425','995',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6a3b8f7e-8cac-4587-9366-a078c344aedf'::uuid,'425','996',3993,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('642d5f06-ad32-46f4-be48-e2845f804e06'::uuid,'425','997',3879,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13e9f2e8-9f1b-4b07-9b9d-a4af209f009d'::uuid,'425','998',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4dc8ceef-6116-4b60-a039-11a7999bbe99'::uuid,'425','999',3172,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4147b88b-b6ad-434c-86e3-5d118d0c3de4'::uuid,'426','995',4018,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7260ffe9-74fc-4625-8ec7-2ccb839a8eba'::uuid,'426','996',4018,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45f25913-c8de-420b-b021-277a0b8e0079'::uuid,'426','997',3904,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9aacf3a1-6238-4d37-ae01-5617b632b1bf'::uuid,'426','998',3456,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9f8080e9-1e5b-4038-99b9-acf83fb8fc50'::uuid,'426','999',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a0f8bc56-9274-4458-bbde-50ebed50caff'::uuid,'427','995',3942,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ecbd1de7-6995-4a57-b7d8-d3a68c0766e2'::uuid,'427','996',3942,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2a22727e-dd7b-4c1f-b711-4ccbc6381122'::uuid,'427','997',3828,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6c7f58e0-bfe6-42b7-84a8-79e757d892c8'::uuid,'427','998',3380,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b3089819-6515-4fd3-93b1-d0ecbc6077d3'::uuid,'427','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f520979-958d-4ac7-a8fe-1bb6f1355f71'::uuid,'430','995',3876,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43707a6e-94bf-4c3d-9640-be3165b889c6'::uuid,'430','996',3876,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4665afb3-7c12-46e0-aeeb-f2d3730a4874'::uuid,'430','997',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('841c81f2-524b-4c13-9db6-c65980e3335c'::uuid,'430','998',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fffc060c-fffb-4254-93d3-8c3e8c765ff8'::uuid,'430','999',3055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c60c1f58-f332-4f45-a8ca-123554051b6a'::uuid,'431','995',3899,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('244b50f1-7458-49a9-99d1-7d2b8c22e00a'::uuid,'431','996',3899,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2f5814e2-4d61-4f39-a2a8-b09732c16ce5'::uuid,'431','997',3785,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6d5874a5-517a-4712-90c4-9f46846c89d8'::uuid,'431','998',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a25e0f9-cdfa-4dc7-8824-ce56e704d535'::uuid,'431','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f049ed1-8e43-474a-b0a3-96b22e7a6305'::uuid,'432','995',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6774dd5d-9bc0-4ca6-8f01-d12847a412bc'::uuid,'432','996',4163,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d28aab05-1372-4013-8035-535d7dba7adf'::uuid,'432','997',3906,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed3b8733-e2c3-48f0-b84b-c2dea94d5584'::uuid,'432','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9451d51b-a66e-4a1c-ab9f-a33d742aa0c3'::uuid,'432','999',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88de2cb2-d334-4e72-b8cf-7dd9d17661e0'::uuid,'433','995',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('153d8b8c-b9e9-4fab-bcdc-320f9581951b'::uuid,'433','996',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6e4942e5-b58f-40b0-8c92-dee15a41d760'::uuid,'433','997',3725,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('362a6b37-3b96-4b39-ba99-6be12e8c2c28'::uuid,'433','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3addeacd-7e3e-4dc1-98c3-d0195fdbf512'::uuid,'433','999',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a3775d5-a26c-44e1-baf1-f1f8da8e9a6b'::uuid,'434','995',3820,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eae332cd-a35c-4113-9b06-2ed8885af9d9'::uuid,'434','996',3820,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99d60a67-89fb-4b4c-8b04-bc7b32672352'::uuid,'434','997',3706,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b65a76b4-acd5-41d5-a32c-60424ef3cce4'::uuid,'434','998',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78bcd8d4-444e-4ad0-8ba8-0fd4d081dda2'::uuid,'434','999',3000,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0733abf3-b074-420a-893a-92e67eb3ff4d'::uuid,'435','995',3781,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56cbd72d-3387-479f-9e68-d5e02afa35b3'::uuid,'435','996',3781,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6d19fa9-5198-45a3-ac76-fd4f9ca1fa16'::uuid,'435','997',3667,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6d31037f-6862-42de-a94e-8ed23ffda565'::uuid,'435','998',3218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73399d37-ff56-45b1-90ad-14232c839d71'::uuid,'435','999',2995,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94d5e713-05fc-449c-aced-b2656af91f0f'::uuid,'436','995',3808,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0ee70f5-e801-430c-85c4-9a8acbcae6e2'::uuid,'436','996',3808,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c35a5a43-aa99-47e8-8b7a-de6aff9ad4de'::uuid,'436','997',3694,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e812a4fd-bf37-4285-986c-ce1fda7fdd7d'::uuid,'436','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('907e8091-5cb1-439d-ab94-1cf86771e40a'::uuid,'436','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1e1dac34-bdf2-47ef-ac80-fbef30791239'::uuid,'437','995',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('497172f0-d467-423e-b976-d961e603060b'::uuid,'437','996',4233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77741c04-a634-4999-8b2e-2a0c2d2dabb3'::uuid,'437','997',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72235503-4007-49d3-875e-dc72093d4aab'::uuid,'437','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0e6b612-b56e-41e6-a1ed-39d2a5ee8a6a'::uuid,'437','999',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('263ee874-ae79-4ba9-9365-cce9366e0852'::uuid,'438','995',3934,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a422fbd-ecb0-4513-b1ce-950048ab4fe8'::uuid,'438','996',3934,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2b6a73da-a677-4e49-8127-b94ee23dd76c'::uuid,'438','997',3820,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fbe81dc6-a4ca-4438-98fc-35a892a6196a'::uuid,'438','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b4c6b5-cc48-4d3f-9d8e-f0dfa1f6295e'::uuid,'438','999',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fba0eb0c-690a-470d-8c89-3973a5472d17'::uuid,'439','995',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fe1240e-8ca4-414f-b55a-c9919451bb21'::uuid,'439','996',4260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1c97c205-12a7-45b3-bdc7-c6ed5434919f'::uuid,'439','997',4003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fa0fa4e-20fb-4d0b-9fef-9d0472b46d8e'::uuid,'439','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac4bc474-6364-4b5a-82bf-36eb445428b3'::uuid,'439','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80192fa0-1c1d-4d29-8c04-34143554fbe2'::uuid,'440','995',3925,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99f6c5b1-95c2-41c2-9774-cfafea9a8acf'::uuid,'440','996',3925,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7f6c8a1-94e3-416a-bfaf-73a21cf6bc09'::uuid,'440','997',3811,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4ed3ddcb-4aba-41d8-9df1-e1f29de3fe25'::uuid,'440','998',3363,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67afe44c-345b-4ba7-8d49-d9dd28d827e8'::uuid,'440','999',3140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('55ebba62-2563-4d93-bdb3-11ced1843a48'::uuid,'441','995',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcfcd15b-29df-4b67-8301-fd6458afb41b'::uuid,'441','996',4191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69e68fa0-0c37-469c-9291-bdf7bad09815'::uuid,'441','997',3933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03fe8047-d1b3-4099-8b91-97c9000ee553'::uuid,'441','998',3349,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3705e99c-64dd-46fb-9583-9a42261199f0'::uuid,'441','999',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97611df8-afa4-49c6-9b87-cea918a22e00'::uuid,'442','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cbe54f1-c190-46b5-b506-9643d086775c'::uuid,'442','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('390d67b9-3a08-468f-94ac-bf07ae1018b3'::uuid,'442','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0270ac8-875f-44dd-bcf2-b2b3e8cd8c03'::uuid,'442','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('757b84d1-0c54-4ad2-8048-730f21fedf82'::uuid,'442','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fd7e8067-fd20-4eb0-8f70-03bb52aa0ac7'::uuid,'443','995',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4970ddf2-62e9-4f38-b965-5165f1d66ca6'::uuid,'443','996',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b5857226-60e8-4e7f-aa2f-7ee984595b07'::uuid,'443','997',3948,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75a2a4f9-776d-4017-8bb8-a0c98bd9c415'::uuid,'443','998',3364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('daa44ed0-5959-430b-8138-e401a0b98e28'::uuid,'443','999',3141,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('abf32de7-9d0a-4270-bab9-76350bff4088'::uuid,'444','995',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e41c3e8e-b7b9-4c97-938d-e9dc8803e36c'::uuid,'444','996',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5de13bb3-fda4-43bc-8ec8-d318dcf7fdb2'::uuid,'444','997',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b9dfa71-66bb-47e3-a432-a7e1be28ab18'::uuid,'444','998',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e285b168-0232-45cd-9af0-9bb3626b5409'::uuid,'444','999',3024,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8169ce55-c34c-482a-93d0-d86cc3346882'::uuid,'445','995',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2075660-f933-439d-93d2-7afd9d063559'::uuid,'445','996',3972,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9c017e5e-9fdc-4555-9af5-d4e87073c314'::uuid,'445','997',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fc16c0a-419c-46b7-af9d-163531eaa330'::uuid,'445','998',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d453c906-fc33-41b5-ae01-b34a8ce7d69f'::uuid,'445','999',3024,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f72b8319-3f1d-4810-920a-2e9428ef8f20'::uuid,'446','995',3938,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61d4f749-d575-40af-a0c2-2ace556b1a29'::uuid,'446','996',3938,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('01e74f2b-df3a-424b-ad6c-be5281e2b911'::uuid,'446','997',3824,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a9860f4-051c-4334-a3c1-6aa0b07c11f6'::uuid,'446','998',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a51f465-d53c-45e2-8840-4315227c0433'::uuid,'446','999',3153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8c27d610-e00d-4ba6-968e-cabf8ad37b0e'::uuid,'447','995',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c24ad802-7b25-4131-9d01-8563c8abba31'::uuid,'447','996',4220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f70a311-7092-40f3-8bc2-fd7d49c33b44'::uuid,'447','997',3963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3c33215-1504-48d0-aaaa-dd127b0c1593'::uuid,'447','998',3378,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01f1981d-f656-499c-929d-2ecb987e8b19'::uuid,'447','999',3156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f37964a-a7b5-4ebb-bef3-c2d0e9b5180d'::uuid,'448','995',3868,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbadf3fb-d724-4e91-a04f-2f1d7c9b17f9'::uuid,'448','996',3868,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c8d157d-7c55-44f8-95b7-63ff108d8aca'::uuid,'448','997',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35d49a13-1d9a-4144-9eb4-e2c154a955a2'::uuid,'448','998',3305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2050e916-57ef-40f2-beb4-60840a21219e'::uuid,'448','999',3083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c7d2a2ec-2e1d-4c0b-90a1-1c3b223cdc2a'::uuid,'449','995',3882,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bb9f709-02e3-4982-8b93-58cc556f432d'::uuid,'449','996',3882,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d1752dfd-eada-4d76-bd1b-8dab49628526'::uuid,'449','997',3768,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dab946e1-0736-4258-ab9a-93015ed823cd'::uuid,'449','998',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7115450a-85c2-44d8-baa0-4754c1df2593'::uuid,'449','999',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88370dd9-4e5c-4b38-8ae8-a665f6d13c61'::uuid,'450','995',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfc84ff1-6eb8-4f21-b1f8-c3bd107bdd9e'::uuid,'450','996',4128,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee9d19f4-f13c-43cc-9f44-6dfb7dc10728'::uuid,'450','997',3735,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('be7f1e79-55e4-4872-80ef-48ee275cc9f2'::uuid,'450','998',3286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81690508-4669-46d9-965c-e77cd05eac88'::uuid,'450','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4405fb5d-c1fa-4ac8-a4e3-89f51c598ad3'::uuid,'451','995',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc86636c-7715-4a56-9c81-bd83f0bf7bdc'::uuid,'451','996',4171,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('941df88c-536a-45c7-bb7d-d3215a4148ba'::uuid,'451','997',3778,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fbeff0b-5ea7-4ae7-8cde-18165d3e31a0'::uuid,'451','998',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83e57663-ed01-44a2-90d2-a5ca05d8e339'::uuid,'451','999',3106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9b58721-7d7f-4944-9649-5a178be09fde'::uuid,'452','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('523d05a3-158b-4410-a64b-a4d6ca988d60'::uuid,'452','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6addf6b-7a54-4a90-aacd-01c102ae0854'::uuid,'452','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f86a8977-2c6f-488f-a0b4-063dce981d0c'::uuid,'452','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1464e778-f959-44b4-b82c-d180b78bc499'::uuid,'452','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('588e88a9-f48f-4f00-b03f-49b8ad2b853d'::uuid,'453','995',3830,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('04960393-a80b-48da-b55b-442ce5ea9592'::uuid,'453','996',3830,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c59d48a-3358-423d-ae81-e70a822037fc'::uuid,'453','997',3716,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7d0bf931-e8e9-48de-bcb1-5d768e4f82df'::uuid,'453','998',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48787c92-a71a-40e6-8a5b-72eb5f69ce2c'::uuid,'453','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e759d8c-1249-4739-8e8b-c00c8c235db4'::uuid,'454','995',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4498c00f-39bf-4e84-b8cb-28dd82d3aebf'::uuid,'454','996',4126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38038b36-8838-4fce-ab6a-1759ead4e2fb'::uuid,'454','997',3733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31113846-b614-44d2-92b0-e2f4f5f18ed9'::uuid,'454','998',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a242fbe8-2630-45e4-aadb-bc29d1e1718e'::uuid,'454','999',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('355c658a-f671-42e7-ab79-0a023a4cc9bd'::uuid,'455','995',3855,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a9f38a4-fd42-44ae-9fa2-15865007ab51'::uuid,'455','996',3855,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a8c4253-1013-4b92-8d10-5539a6433d97'::uuid,'455','997',3741,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('69853267-b14e-4040-9b3e-d1ec559d1560'::uuid,'455','998',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd5e40c7-7232-4446-a3b5-d472927fc998'::uuid,'455','999',3034,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d0c3b19-0f22-419a-bf32-bd5cf703bcc6'::uuid,'456','995',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0a692d6-e2cb-4f34-9376-4ae070a5a045'::uuid,'456','996',4226,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc3b33e4-e0fc-4cd3-8889-1b39d9f1a74a'::uuid,'456','997',3833,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6069e77f-24d6-4335-bbab-083e5d9a6886'::uuid,'456','998',3384,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c96cff2-fd9f-4ed5-8c12-882de16ddb69'::uuid,'456','999',3162,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('158e10de-3954-40f7-ae7c-4b47cb96f382'::uuid,'457','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1e3520b-d80c-4c57-a25d-9620bffbd905'::uuid,'457','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a437b1e2-23a9-4500-bd7d-08639a453bdd'::uuid,'457','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99828035-60ff-4781-b577-3b32e9078bab'::uuid,'457','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e62c8a6-be42-44c1-93d1-36f367bad859'::uuid,'457','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('670d8551-6059-4ff3-807e-834aee3b8ab7'::uuid,'458','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1035551a-d7b8-4695-ba0d-ed6fae3615c6'::uuid,'458','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6c0e1c0-a369-4674-9a63-966c05c5e526'::uuid,'458','997',3818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a156a5c-1b53-4ff8-b0ae-57611b33ee89'::uuid,'458','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('104fc361-570e-4712-a993-2e22013fbbea'::uuid,'458','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d7c5d3c7-4caf-40e7-9205-21ccf1ef6a07'::uuid,'459','995',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9de9789-b22b-4191-a9e7-e701673c0b00'::uuid,'459','996',4143,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('935df46a-3780-4670-a0ad-c90aaf5f1267'::uuid,'459','997',3886,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db1309c6-5411-4023-bc03-b434ce64e5a5'::uuid,'459','998',3302,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8f79bc2-4985-4191-9f83-4ed4e32065c9'::uuid,'459','999',3079,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4b236cbb-c54e-4dce-bc6e-b01d1de3d47e'::uuid,'460','995',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9296210b-17de-46f0-a14c-0dd9e0d080ca'::uuid,'460','996',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30ee9253-2cd1-4819-bc39-2815c4bde881'::uuid,'460','997',3633,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8d68bef-6b87-4661-b576-71972bdb35a2'::uuid,'460','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ea02bf1-ae6b-411f-8c24-233ef3f24c6d'::uuid,'460','999',2962,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e272f2c8-764f-4e13-91ed-e7e74be4ad55'::uuid,'461','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e187754-bff3-43db-ad3d-a7a0643f48f7'::uuid,'461','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26eedfaf-84af-48cb-b221-4dce5e47b5b3'::uuid,'461','997',3662,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3cf436f3-380e-4c82-8c3a-435d8b77244a'::uuid,'461','998',3213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b24e854-55ed-4884-8534-57f162b8167e'::uuid,'461','999',2991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03f4c248-0f3c-4614-be27-de0307d1667e'::uuid,'462','995',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5c226c5-0590-42fb-aa30-a90b7eb6db5a'::uuid,'462','996',4033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd98e07b-5c87-4edb-8750-0d1dc7a5c41d'::uuid,'462','997',3640,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f302f242-99f3-4eec-8121-6af20d8b3a5e'::uuid,'462','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6392d265-6444-45df-b6c6-a5f1a4f0be16'::uuid,'462','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('488a9acd-4f03-4ab9-91f8-83986a6202f6'::uuid,'463','995',3623,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2c55b854-7937-451c-b3a9-a2c1337b07b5'::uuid,'463','996',3623,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a93b746-3ee2-4c28-b90b-d5dbbee33058'::uuid,'463','997',3509,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c0532ae4-7cd0-4091-bc10-4b5a35d9fcd2'::uuid,'463','998',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36cffc74-5e99-44cc-8b2f-4707f1f22944'::uuid,'463','999',2803,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee7599a1-3a87-42bb-ae38-24db1fa78c87'::uuid,'464','995',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f28a03f-6658-41c2-8407-d1d1f641767f'::uuid,'464','996',3883,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cae7c22-d00b-4f57-b728-10fd0a1d9519'::uuid,'464','997',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6bc077f6-da5a-45a9-b75a-295082a62278'::uuid,'464','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81ea8513-e227-40a3-b3aa-8134d3226369'::uuid,'464','999',2818,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('717e67db-ea41-4b18-9117-a6cf6886e124'::uuid,'465','995',3680,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b64576e9-678e-4ef7-9220-e8af4d7ec048'::uuid,'465','996',3680,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35032849-4aa4-4d65-b941-08d3ff813f6d'::uuid,'465','997',3566,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2aa13f13-f4c4-4bd5-9b70-1f1a50e8909b'::uuid,'465','998',3117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff9520a1-ac61-40f8-9c31-dd3ce0c2337d'::uuid,'465','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2230bf8-d331-4d6c-916c-54a0745a03c7'::uuid,'466','995',3664,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb24e22b-9a69-46ae-98ea-7258854d486d'::uuid,'466','996',3664,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6166a60d-f080-4543-97bf-c77f0c869941'::uuid,'466','997',3550,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ada7e311-befe-4ce6-80d7-e94ac2cad1dd'::uuid,'466','998',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef122620-668e-4a05-bc02-28b99e6f995e'::uuid,'466','999',2844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7a376f57-795e-4b69-9c1b-e97b989f775b'::uuid,'467','995',3738,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('096296f6-e57c-42f7-9995-b9a92bbd2cbd'::uuid,'467','996',3738,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f74597c0-a1c0-4a81-9896-b9d82f0c004c'::uuid,'467','997',3624,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da4261cd-c73b-4e3c-9b44-c4e402d454ab'::uuid,'467','998',3176,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91e0ec97-321a-41f2-b6f0-e6e784eac949'::uuid,'467','999',2953,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6232335c-3c53-454f-82b6-68b204ad2e4b'::uuid,'468','995',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5a7c93-e1bf-465a-9110-32b116cdf69a'::uuid,'468','996',4011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0637c66d-b248-447f-912c-35774a48cf3b'::uuid,'468','997',3618,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd9014f5-4ecd-477d-90f7-546f20db046a'::uuid,'468','998',3169,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5aedf84-02cb-440f-a0f6-200f0e7ffdfd'::uuid,'468','999',2947,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fbecb12e-c80e-47c8-8d48-95b017c9abe0'::uuid,'469','995',3715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9180d1d6-c96f-49ec-9693-3cda71dca2d3'::uuid,'469','996',3715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2131b75e-bbaa-4008-8d56-3b1bb40a75c0'::uuid,'469','997',3600,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9ffc5db2-911c-4f44-b90d-5a64c6a7e828'::uuid,'469','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8149aa9-face-42be-b6b8-68d8de6ad635'::uuid,'469','999',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a26c4dc-a2ca-4823-b4a2-9a15556a6240'::uuid,'470','995',3828,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bcbbc296-6e31-4a84-99d7-efdb49015879'::uuid,'470','996',3828,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('219dea62-5c31-448a-970b-1411940507f2'::uuid,'470','997',3714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32723175-e1d7-46e6-8d70-f84509e0deb1'::uuid,'470','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d1ffc11-9255-4fd1-bcdf-dcb183635c7b'::uuid,'470','999',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6ca59880-bf85-4a8d-a627-cd13e08056ad'::uuid,'471','995',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('68160c34-2d43-4298-a233-92f9c03221d7'::uuid,'471','996',3858,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b7061c9d-5ee0-47ad-a4d1-92814f1501fe'::uuid,'471','997',3744,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f84580c2-8ee3-4171-9445-f7a1d7860535'::uuid,'471','998',3296,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55a0a192-0669-4abc-b23e-cad10412b5c6'::uuid,'471','999',3073,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8addeef4-af9b-4b93-a12d-6068e3c7fafd'::uuid,'472','995',3818,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3b35a9b4-03ec-4473-825c-2160657c1ea8'::uuid,'472','996',3818,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('49a035d5-a6fa-43a0-9023-92207defc3fe'::uuid,'472','997',3704,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c2374335-48f9-4b80-8578-720627a41f6c'::uuid,'472','998',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('559c811b-2819-4fef-afbe-efb5295fe888'::uuid,'472','999',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('69680c5a-93dd-4682-a117-30b55f9444cc'::uuid,'473','995',3796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5268a928-a5b4-4fef-a0da-d9ba76a6e0ec'::uuid,'473','996',3796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54e865a1-ef3d-42be-920e-e40fe1c315ea'::uuid,'473','997',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1f858580-b1bc-4703-897c-9947aee10580'::uuid,'473','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afcdef01-3f2b-4361-b740-50e94e87f185'::uuid,'473','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23d6b209-5f04-4cbb-8c9f-5e747d416345'::uuid,'474','995',3810,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('59b247cb-47fd-49b9-af3a-bd092a3e3574'::uuid,'474','996',3810,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b133afa5-2ff2-42b7-b8c9-35980b04d90a'::uuid,'474','997',3696,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7d606349-c417-47e7-b9ca-79280055398a'::uuid,'474','998',3247,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e67e2593-d1aa-438c-86ab-ce756f0aff81'::uuid,'474','999',3025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('741cf3c1-8248-45db-a1fc-f0224ad125c8'::uuid,'475','995',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e85d554-8e86-4aa4-913d-fa2d4c57cd43'::uuid,'475','996',4123,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27998ae6-4592-403c-938b-2cb37a1ddd6b'::uuid,'475','997',3730,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a350daba-291c-44be-be0a-47da9bcdbe21'::uuid,'475','998',3281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('263038f9-6480-4eff-a55b-b7d135992f15'::uuid,'475','999',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('44f683b0-9005-44fc-bd24-97893a77ee4a'::uuid,'476','995',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7a1b344-0dc7-4f95-8138-5daada4d3bf4'::uuid,'476','996',4142,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8994e86d-a997-4fde-9e6f-9ed0220fca0c'::uuid,'476','997',3885,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f34ea4a1-051d-4ba8-80a1-82b3264b525e'::uuid,'476','998',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ffbf2cb-d825-467c-950e-e0aaf0bd33fd'::uuid,'476','999',3078,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e3267571-baf6-411e-b579-fc5232f5fc66'::uuid,'477','995',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68696564-8c0b-470c-ab8b-ac2060e6a268'::uuid,'477','996',4131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6672af8-fc94-4223-a827-d0f2b3faaf33'::uuid,'477','997',3738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('236a3d78-6ab0-400c-9856-e21e849d66b1'::uuid,'477','998',3290,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fae4e74b-c563-4f1b-bf5f-9db58fec4261'::uuid,'477','999',3067,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d3c1175-149e-481e-988d-306854a29953'::uuid,'478','995',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56114714-932f-4355-9444-b363a5c71149'::uuid,'478','996',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d23788bd-be34-438a-b44a-057d1e375f77'::uuid,'478','997',3647,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('931aa427-a87e-4507-8957-177021bcdec0'::uuid,'478','998',3199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c51b9a3-912f-41e2-9a28-4f0dee5f10a8'::uuid,'478','999',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5d504910-d2df-4109-a499-ea2bf1846292'::uuid,'479','995',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8eeed57d-8758-4139-9294-5760e7b8fa13'::uuid,'479','996',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0c24e3ce-c262-4304-a757-79faa077e496'::uuid,'479','997',3568,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a8b2315-743c-4eb9-8f23-48fa12b8e493'::uuid,'479','998',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb71bd10-ad5d-4a36-91cf-e6100339f01d'::uuid,'479','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('479ef00d-1db7-46ab-a8cf-86258682c261'::uuid,'480','995',3834,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3fd93496-80b9-4ff1-89f3-31134b2c167d'::uuid,'480','996',3834,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('143e5129-242d-4cb4-8c98-d400347df98f'::uuid,'480','997',3720,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f025fdd-a879-4f60-8258-3d3bc38d6d33'::uuid,'480','998',3272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8332147-9e46-4537-b8c7-9aa4bb43e503'::uuid,'480','999',3049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('678e809d-1fbd-4829-b802-521710339d66'::uuid,'481','995',3813,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c2be95fa-61ce-4085-a779-2242048db553'::uuid,'481','996',3813,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fefd0e8-d55b-48e0-89f5-22bbf86f1910'::uuid,'481','997',3699,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab67540e-50e9-489f-a03c-7827d39816ed'::uuid,'481','998',2992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a93daedf-2cdb-407d-8de3-b02213484e07'::uuid,'481','999',2865,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84600821-6909-4628-88b0-bb359ffa6fb7'::uuid,'482','995',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea307d8e-f7e2-4553-9fb4-35a69d0c8d6e'::uuid,'482','996',4112,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2b614e3-faaa-4517-ba84-d75d52e25006'::uuid,'482','997',3719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c55f93a-13b1-42e9-8358-4ad0f206646c'::uuid,'482','998',3270,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90bc35d8-d08c-4b9a-ba88-5d11efa42e83'::uuid,'482','999',3048,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4914120d-88e9-4e73-83c0-6d8ac5d4a94a'::uuid,'483','995',3805,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('599fd986-0534-40c5-8c82-c01eac50bbce'::uuid,'483','996',3805,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6353b099-e4dd-4854-8ba5-e37940ba258d'::uuid,'483','997',3691,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('079c9d3b-76bc-41c6-bfb9-f7661ec86138'::uuid,'483','998',3243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c3ac99a-3d5d-47c7-b737-337161a3a129'::uuid,'483','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a79a551c-9c6c-4cd7-9112-d39aca738650'::uuid,'484','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aebda3cf-6ea2-4bf6-ad96-93da730e3546'::uuid,'484','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7de98410-49ac-495f-bf9c-d2dc375d7cae'::uuid,'484','997',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd653868-6cfd-44bb-9290-3c9a927c47b7'::uuid,'484','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e20f15ce-e68b-4750-98cd-f41a93bbf75b'::uuid,'484','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('67b9d13b-ebf5-42b1-b136-6f198ba071aa'::uuid,'485','995',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b358cf08-cbd1-40d1-b993-6be0269d024c'::uuid,'485','996',4050,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0372d56-4849-48d1-9357-c1eae085b5c3'::uuid,'485','997',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5084f12-a1b6-4751-88af-c9379f11a4fb'::uuid,'485','998',3208,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2a75629-66fc-4408-b370-b7747b3e908d'::uuid,'485','999',2986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a17825d3-e0c0-4520-aa5e-52e0982ad126'::uuid,'486','995',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5830d084-d686-485e-b365-f819ce719cdd'::uuid,'486','996',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c08a568d-5693-4a90-bf31-d0204baa9b5b'::uuid,'486','997',3584,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d114014-d769-44f4-bde6-062b197b4162'::uuid,'486','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6be3c1a-cedf-4326-bb58-203b84769614'::uuid,'486','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9ec5da65-b714-4cfb-a270-0f3c3f106def'::uuid,'487','995',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('91f5cf11-d708-4784-a3d8-e7b2026d7c6d'::uuid,'487','996',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5827113a-416a-404c-ab74-015497cbb77b'::uuid,'487','997',3584,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f861d0e0-d238-4bc6-a4a3-43f06b42b53e'::uuid,'487','998',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef2135d2-4d1d-4327-bf00-1422ac86b1fa'::uuid,'487','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13c0741a-a6b4-4afe-a646-d3f37bbbbc1d'::uuid,'488','995',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4951afdc-265e-40f1-a432-dcd070285819'::uuid,'488','996',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3bb8d463-71e1-44f1-ab6a-3d19522886e4'::uuid,'488','997',3639,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ebb4ec89-637a-439f-ba0f-4ecc0007f0f5'::uuid,'488','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d361b03-ffe7-4ad5-9be2-0b5ab306396d'::uuid,'488','999',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11d28902-628c-481f-ab50-f51d20eb4da3'::uuid,'489','995',3775,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c0d4471-4b07-4508-8471-f2dd726800bd'::uuid,'489','996',3775,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0afa4076-88db-4519-a5a0-a491904d16ad'::uuid,'489','997',3660,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0545c810-055c-4dae-a539-9ce918835424'::uuid,'489','998',3212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da2fa586-c5e7-4071-970c-2a78086a6e1a'::uuid,'489','999',2989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3654db8-d43e-4e4a-a99f-6ba36dd6b775'::uuid,'490','995',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f71dad92-a607-48f3-b318-b70e5684e18e'::uuid,'490','996',3996,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ac6a515-0185-4d57-b5f4-175a1753ccc1'::uuid,'490','997',3602,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5823d39f-0fe7-407c-be58-f94fe8ff8ac6'::uuid,'490','998',3154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54a13975-0f79-4ea8-a704-665cfe64d575'::uuid,'490','999',2931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2a2eeea-2735-47df-9cbc-359ac49f1ecb'::uuid,'491','995',3665,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e719dea0-5ceb-4dd5-aad1-dda8ec9eafe5'::uuid,'491','996',3665,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2493a11e-2354-403a-aba3-820eb3e6ec16'::uuid,'491','997',3551,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f9a75e6-b150-41f6-b321-448b5d8ec223'::uuid,'491','998',3103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07130ca0-bb6e-4389-9ae8-649c9af0cbcb'::uuid,'491','999',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1998b7a5-8cee-45ef-a199-9267a95a115b'::uuid,'492','995',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1256f315-a443-4a44-83c4-f29bcbe47ffc'::uuid,'492','996',4052,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91368955-435b-465b-9867-17341d9e1633'::uuid,'492','997',3659,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fce37ef-ad2d-4893-8573-9e3e034a7e4e'::uuid,'492','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad50629b-552b-4942-9e40-71558f9db0aa'::uuid,'492','999',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5901d033-b048-4955-96d8-c24ff5c9641e'::uuid,'493','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b248a7c2-5827-464b-8ce0-ffbb124f1da5'::uuid,'493','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d253bb53-2f46-47ae-8124-1bb27eb671a5'::uuid,'493','997',3632,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f85a7369-ef12-4286-beff-11a1c0216710'::uuid,'493','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c6185f4-f655-4180-8b5c-963ec15cb432'::uuid,'493','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88769a36-057f-4fcd-9645-eb217a78a74b'::uuid,'494','995',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbca66e2-473a-4079-a2a5-ee98598eea95'::uuid,'494','996',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c03879a-7aa4-47bb-a0b8-e73caa8218d2'::uuid,'494','997',3640,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f3e03e0b-1dd0-4a6e-9ecb-6c943fa6066d'::uuid,'494','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('282c91aa-8ad5-40f7-8406-97b39eb41716'::uuid,'494','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9f105d8c-edae-4e97-9555-f1fa54b8978f'::uuid,'495','995',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('465b025e-83f1-4f25-a6e6-52ba14c14271'::uuid,'495','996',4025,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09c0ea7f-fdae-45c4-88d9-a1c861e635d8'::uuid,'495','997',3632,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7d49732-893b-4ca0-9bda-cfc27d3a6931'::uuid,'495','998',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcfb0e26-f0ea-4285-9c1c-352f4b09a805'::uuid,'495','999',2961,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a727ea8-ca3c-446a-ab62-70544738d0cb'::uuid,'496','995',3660,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab4e8a62-ee6b-42d3-911a-31bffa603192'::uuid,'496','996',3660,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9151e380-f8a5-4a08-bc11-fd31f342a682'::uuid,'496','997',3546,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74c42e4a-d161-441f-8bf5-9d2b7278f584'::uuid,'496','998',3097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5de919a-35fb-4c38-8a5a-3a174b664c6b'::uuid,'496','999',2875,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ce962fe7-54f0-4bc2-ae97-47188fb430f2'::uuid,'497','995',3547,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84ea165c-7d9e-4fdb-8ac8-b048d44a1af4'::uuid,'497','996',3547,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('776cac8c-848e-42be-863d-890f559b7f5f'::uuid,'497','997',3433,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bc862f5d-c95f-4dea-bf52-ce194ea364a4'::uuid,'497','998',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5ace281-b626-4811-b049-f8d6b968c67e'::uuid,'497','999',2762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('288b4638-627b-4e93-afcc-923ba11dc7c7'::uuid,'498','995',3414,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db6a0cde-ac40-4221-b576-a85238a64641'::uuid,'498','996',3414,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78e95fc1-67e5-42c0-b5c6-abd9bd03e60f'::uuid,'498','997',3300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d9448715-cfc8-4f28-a07a-dde3d6f28ea0'::uuid,'498','998',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0853c83-5aff-498e-8916-8679fc8eb995'::uuid,'498','999',2594,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a7eaca52-1f79-4d92-8e3b-074071657a2c'::uuid,'499','995',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('293db368-968a-44e0-838b-f54e7d572111'::uuid,'499','996',3567,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0876cfcc-dd14-4488-972f-7486910993f9'::uuid,'499','997',3310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('308e4839-498b-4331-b80e-2f1c48d3ff42'::uuid,'499','998',2725,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59017588-5a5e-41f0-85de-109db0c05688'::uuid,'499','999',2503,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6d165b7-ca2b-4eb2-8cb8-1a0ab5b2d6a5'::uuid,'500','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc7bd7f9-097c-433c-a14b-8a28105c5998'::uuid,'500','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11c05742-0a71-4653-a7b0-414a3a31148f'::uuid,'500','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85040b1b-6033-4c0a-b475-76c20908d5cc'::uuid,'500','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebcdb609-7d9f-48df-ada7-70a1e50c232b'::uuid,'500','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('50f3bf41-59ca-4306-b69e-1b44dd930642'::uuid,'501','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53898e62-1c3e-47eb-81c9-87022698770c'::uuid,'501','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae6085e3-98be-416d-953d-9c0659c6c74c'::uuid,'501','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20d08c22-14cc-41fe-a198-29d41feda4fe'::uuid,'501','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7747373-d741-49d8-a7e4-00e7fb5bf204'::uuid,'501','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6aff899c-d16e-4250-92d6-273b8d31a522'::uuid,'502','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05b16f5e-4e39-4f4c-b36a-e6bcb01703a1'::uuid,'502','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8673ea86-f275-4f09-bba7-13cf1a3fcb82'::uuid,'502','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ce0348a-0c84-4cdd-b0b0-95b20d0139bc'::uuid,'502','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e3ea40d-cb60-4279-b6a4-65afef4b4495'::uuid,'502','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b592d2ff-7ca0-428b-941c-20a467f6e843'::uuid,'503','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9e51abe4-6ad2-4d3d-8c23-0c1d29acdaec'::uuid,'503','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66e27e3e-0fb5-4852-8186-f037e341b353'::uuid,'503','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5d99678-9559-45db-9024-d8cc459f404d'::uuid,'503','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('87e29bec-1b23-4a98-937f-457af738bb51'::uuid,'503','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('672a0156-9f4f-4da2-b17d-f95b13e6ad14'::uuid,'504','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08b903e4-fc9b-442e-8321-f880c9f4c2ca'::uuid,'504','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fcc89834-78ac-4096-8b6d-55b56e90151f'::uuid,'504','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('682736f7-72ec-497f-a190-5f68aaa9afb2'::uuid,'504','998',2739,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b02a1030-44dd-4c03-b6a6-c7726b317e94'::uuid,'504','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cb55e5ad-ea58-46dc-ab50-a950b258a29b'::uuid,'505','995',3286,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f72d38a-15ae-4998-9829-f1df7b3b2bc8'::uuid,'505','996',3286,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad8d7db4-dba1-44a4-9faa-e6df153708f5'::uuid,'505','997',3172,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90e11ed7-df73-4c1d-ac3a-312fd16b14ec'::uuid,'505','998',2723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25d5b746-85b2-4aab-8780-b62800a14e6f'::uuid,'505','999',2465,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('badce3d1-f4a0-41d7-958c-042c3931f0ff'::uuid,'506','995',3358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f50d8001-17b9-473b-bb6e-c7c23b429e31'::uuid,'506','996',3358,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cd40c85c-4a47-4f46-8293-6868d8921ffd'::uuid,'506','997',3244,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ace4d766-5305-4925-a2ba-9d06ad8010af'::uuid,'506','998',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e49e17f-4c3d-412e-8455-d95331be33ae'::uuid,'506','999',2538,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('66a6f294-7e3a-475a-9e5d-9ca8d59ccde8'::uuid,'507','995',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29eed9ef-1de1-49c8-b1fa-9b103551892f'::uuid,'507','996',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61caee36-e034-4855-923b-2116d501f1b5'::uuid,'507','997',3256,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9af983f0-01c2-4d0b-8828-4620bc70fd78'::uuid,'507','998',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c5d8f994-194a-4a5c-91c9-449f1c988a6c'::uuid,'507','999',2550,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db4540c1-8664-41ac-8d39-21dfc263d48d'::uuid,'508','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3d7539d-726e-4219-b3b2-c672111552e7'::uuid,'508','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('051a2ecb-0aa1-4a04-ade4-aedd93739dc5'::uuid,'508','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28fa3e2a-9a3a-4074-bb6b-e2caa662ee79'::uuid,'508','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('560cac6f-d809-4954-b41b-b9caa64fbd5f'::uuid,'508','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7a05a2a7-0ae6-46bd-9c14-0d98c07f03bf'::uuid,'509','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ac2e33b-7160-4940-aaa2-f4465d2c16ac'::uuid,'509','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7658de4-dfb0-4a08-a0f4-b4c1df11f25d'::uuid,'509','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78037109-49b4-42a9-a4fd-4954f0175ace'::uuid,'509','998',2850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd35fc2c-321c-49b0-8dfc-073e2132da46'::uuid,'509','999',2627,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88d5a085-a611-4a48-988f-5e405f9f2118'::uuid,'510','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('392735fb-85bd-4319-a893-4bc756bec532'::uuid,'510','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5e311d8-bf65-4337-a0bd-f915860a86b3'::uuid,'510','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ee5a825-794c-4cd4-8cc9-53de90cb6a0d'::uuid,'510','998',2699,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d83b8992-cd33-4574-9099-7beaea15c5eb'::uuid,'510','999',2476,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7cc09c71-a71f-4e22-bfe6-8096b6737194'::uuid,'511','995',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a1192a2-f481-4dd4-b20f-790cbf2dcaaf'::uuid,'511','996',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('490075ff-4e05-4ad0-ae27-de2f67e82089'::uuid,'511','997',3115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c7de705-37c2-4379-ba1c-189daf503304'::uuid,'511','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7de18435-a6b4-45ea-b6d2-8b65d92aa9d2'::uuid,'511','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb9bb9c7-92b4-47ed-ab6c-b5245e2ffb0a'::uuid,'512','995',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6ca08dd-95f1-4b32-9026-f1f7f570e021'::uuid,'512','996',3473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40315aa7-9e0c-490f-94f1-8af7f764e105'::uuid,'512','997',3080,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0ec1b5c-9442-49ab-8854-8ff675e1c649'::uuid,'512','998',2631,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01e02d1c-794a-4a9d-98aa-4933fa2e3d5a'::uuid,'512','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('82f5ef1e-baf0-4a8a-9fef-7a616305454c'::uuid,'513','995',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('150d55ab-7a8a-437f-a9d0-7410cce0d267'::uuid,'513','996',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7f5d77e8-67e3-4995-9a82-f5ceaab676a1'::uuid,'513','997',3115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2c3ab5c-0f7f-4645-9bfc-3c4c36a84074'::uuid,'513','998',2667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d37ca22-75b3-4dbe-952c-754d86ed0d57'::uuid,'513','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29404e16-639c-4378-9b6a-f91ca372c158'::uuid,'514','995',3321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6bea77d6-0c65-4cc5-9a4c-1bafe8bb2d86'::uuid,'514','996',3321,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7707d664-4819-4e46-b571-b11c47f06109'::uuid,'514','997',3207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cc8ed47e-fde9-456b-8378-3607ed0ca476'::uuid,'514','998',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bd277fd-ae1e-4496-b195-900f8269512f'::uuid,'514','999',2500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('37d5fca0-45af-4333-8d4a-2cac80a71bfe'::uuid,'515','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9c6b6a6-e8b5-4a49-a087-996ffe3a6744'::uuid,'515','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4797eb1d-4085-40bc-8131-e2489f2f12f2'::uuid,'515','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('deed655b-6136-4828-a0af-c18a111fa6ae'::uuid,'515','998',2773,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33e55130-8fa1-4cb1-92ea-c813dd96fae5'::uuid,'515','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd80efa8-eaf7-437d-b520-2092973a5a79'::uuid,'516','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('27b1fffe-b8e7-4f44-9f75-f6e2b67b2ecc'::uuid,'516','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5ccab14a-a979-4a61-b9f8-4077df4434d4'::uuid,'516','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f854cc80-23fe-4f07-88d6-d8ecad4e0b6a'::uuid,'516','998',2817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('624dd381-7631-4b18-a112-f44a11057a13'::uuid,'516','999',2559,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('80e9861a-f128-48ca-aaa1-55f17dd55d7c'::uuid,'520','995',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97163bf2-7471-41ad-907b-f71cf540fc85'::uuid,'520','996',3696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f034f1b1-7c36-46fa-8ec4-7e03ffa89b71'::uuid,'520','997',3303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72edd028-6546-46e0-b695-08b1537a7091'::uuid,'520','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5bcec1-936a-4418-aa6e-8288d5d1bc44'::uuid,'520','999',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da44bc22-9bff-4b7d-9bf7-a1447aeb9356'::uuid,'521','995',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b11f426-4d48-4dbb-aaa1-de753947af50'::uuid,'521','996',3615,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07b91069-3674-4a27-975b-6967a43bf4ad'::uuid,'521','997',3358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52a84590-f1e0-4392-986d-49ce670500a7'::uuid,'521','998',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1693e341-df34-4eca-bfd3-7b9b1ebe1bb6'::uuid,'521','999',2551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a36ec8f0-8b6f-4259-9340-000bb7ef1dff'::uuid,'522','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1715a64b-99da-4c88-84a1-559b96ac6399'::uuid,'522','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('364374e3-a6b1-4023-b15e-970a03f3e7af'::uuid,'522','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b6b6ff8-4093-49e9-b3e0-26f92b6a897b'::uuid,'522','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18cef7f3-cee0-4352-aa42-8e82ee72ff61'::uuid,'522','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6184722-426a-41fa-b444-5c8edba78c22'::uuid,'523','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54a5578a-e383-4ccd-b236-a8bc3e739ca4'::uuid,'523','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d062465-28b7-479a-99c5-2e73e9a735cf'::uuid,'523','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb7801c5-01ec-42df-a1e7-f405977282c6'::uuid,'523','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83569f57-af7a-41f5-bc46-6150badbd233'::uuid,'523','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bbfb6b63-f44c-4fae-ac0f-2bfb0fc29614'::uuid,'524','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6da75008-3d6f-4bab-81eb-976a72c2b3dd'::uuid,'524','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb6aa045-898e-4f44-bfba-0e07e118aa59'::uuid,'524','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b406496-2351-4ccb-8b24-af541a942eba'::uuid,'524','998',2863,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5e93ecd-96f1-4dca-856e-4993078d38f0'::uuid,'524','999',2640,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('644c6953-ffc2-4e4e-993c-4bb46e289ef3'::uuid,'525','995',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71df5aac-9f06-42f4-9b5e-c89813a7a024'::uuid,'525','996',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f54761b9-52b0-40fa-a8f4-190732fb9c36'::uuid,'525','997',3373,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('045b9b90-7d1b-4a97-86a0-a13b02749775'::uuid,'525','998',2925,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed775a7f-d766-4fd6-967e-f6796ded10c9'::uuid,'525','999',2702,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('46f9e86c-a3a1-440c-ae25-2d2bc9d9582a'::uuid,'526','995',3499,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0dbd0821-052a-4aa5-81ec-58abe9246169'::uuid,'526','996',3499,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b85c102-e6e4-40c4-bd83-c4a8d1a3a033'::uuid,'526','997',3385,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1d875264-80b3-42e0-b094-c6cce7e9c36f'::uuid,'526','998',2937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7505e80-0d1c-41a9-b6c2-102fc97d534b'::uuid,'526','999',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('707b3553-f1ea-405d-a5b9-063818a23aaa'::uuid,'527','995',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4f18f40-2902-415f-968b-6a98755ae756'::uuid,'527','996',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a1efd5f8-8c33-48a8-acb1-c076258c07e0'::uuid,'527','997',3351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b375919e-70b1-487c-b91c-cbc5c93f1c15'::uuid,'527','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4565e818-0c63-4994-8813-4daa97b6256a'::uuid,'527','999',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('584b7841-227c-481a-966d-bc5054c5176b'::uuid,'528','995',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d232818a-c7d2-4686-a9a7-c0b20c80c2bf'::uuid,'528','996',3782,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a5803583-470d-46b4-b5f1-abc036add53e'::uuid,'528','997',3389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b978a5e3-16ff-4f32-a379-a02f44b4437c'::uuid,'528','998',2940,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ce63fa2-a1ae-4fdf-b10c-7a6a8626348d'::uuid,'528','999',2718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bb777fc-445c-49ad-afd2-cebf0e262169'::uuid,'530','995',3481,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea5bfcc8-9cf6-4742-be42-219a414ec765'::uuid,'530','996',3481,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb4f6c28-7aab-4472-98ef-f1f44c0f3e75'::uuid,'530','997',3367,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a220e2c3-b9d4-4811-8490-fc55aa19583f'::uuid,'530','998',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2650f692-2775-4b1d-9858-2242f0f7fec2'::uuid,'530','999',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2a915e8c-6332-4a03-b83b-163df9988e5b'::uuid,'531','995',3507,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7d840e04-4686-4976-876e-c3da0ca4f2ce'::uuid,'531','996',3507,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8fb4fb96-3e6f-4b88-9173-64501ee314ca'::uuid,'531','997',3393,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8fff39dc-7e29-4fcc-940e-c0732ad4d8f0'::uuid,'531','998',2944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5143dc2e-3882-4480-a72f-6fbb85d6b823'::uuid,'531','999',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62dfc0b1-37ea-45c2-9951-03fbd7655ece'::uuid,'532','995',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5ac17bd-6057-4ac8-a925-7296bcb53e58'::uuid,'532','996',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37bfb9fb-852e-4349-9311-4e309c1385ae'::uuid,'532','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('154e2b80-9a5d-4d7c-9186-af81551379c5'::uuid,'532','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ecb3aa04-6de2-4afd-905e-be5c922f7e66'::uuid,'532','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('90576107-0bd7-496a-b9cd-24e2c1dd5629'::uuid,'533','995',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34a78337-715b-4a10-9704-4d0096f9f915'::uuid,'533','996',3504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e8f3ccd-0091-46bd-a95d-2059ec144f08'::uuid,'533','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b6d8c62-3bb5-447d-aa6b-f2df6c44e96e'::uuid,'533','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfefaffd-d3a8-4d3a-9290-cb91c1914ba7'::uuid,'533','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95e1e745-192e-42ca-bd3b-f5515cba8484'::uuid,'534','995',3530,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d27c73eb-ba0d-4296-8d6b-45189a2de2cd'::uuid,'534','996',3530,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('990de793-8677-4bb4-a096-30faf6939099'::uuid,'534','997',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95eefb0a-18e0-4a3d-8a12-0bba2669addc'::uuid,'534','998',2968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('443e9d2d-798f-4971-9a39-cb02d8de9903'::uuid,'534','999',2710,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ad34f0a2-1a85-45fa-b438-e66546585697'::uuid,'535','995',3447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('20ecb8ce-0cb2-4bf4-bf40-679cf4ccd394'::uuid,'535','996',3447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c2fecc73-3661-4d0f-afcd-f8627c0a2dfd'::uuid,'535','997',3333,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b9a3faa3-a369-4087-b5d0-3b576e12cf71'::uuid,'535','998',2884,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82cd8ee9-59c5-48c9-bf64-537e195a2832'::uuid,'535','999',2661,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('242b7d12-f8f8-4738-b85e-fc101cc24e8e'::uuid,'536','995',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71e834b7-8983-4220-b4ec-b184ae9fe14e'::uuid,'536','996',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('585b104d-8730-47c2-9f5f-edb60c2d6683'::uuid,'536','997',3328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('281c409a-768a-47e2-958b-45ac1711ee78'::uuid,'536','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52727088-9d26-4c48-b7d7-8749e086ab21'::uuid,'536','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('685e2fd5-0c01-41ba-98e6-c784cee40a95'::uuid,'537','995',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74b20dfa-6569-4780-9fc2-0e572f01c662'::uuid,'537','996',3442,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e43a1e51-f0fe-4940-9924-788251f22751'::uuid,'537','997',3328,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d59aa46-101c-4ebb-bc8b-3e1fde9e71e4'::uuid,'537','998',2880,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0a74cf0-51af-4be8-8327-48488e25f625'::uuid,'537','999',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('816d820b-d681-4c0e-86c2-31dafb573d29'::uuid,'538','995',3403,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e82d7e36-7b22-4ba2-b778-bdf0c393c92a'::uuid,'538','996',3403,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9fc95b98-2eae-4c6b-8f44-37c02abd363c'::uuid,'538','997',3289,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8134b658-70e0-4447-8f88-97def9eabffe'::uuid,'538','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d1dc09fa-9f73-44c0-8926-4739cce8e4be'::uuid,'538','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fb558c78-1306-4079-b276-4be05231c1fb'::uuid,'539','995',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13898b31-cb48-4cb5-b7e3-3af492150fc7'::uuid,'539','996',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eb3daadc-d6a1-4285-bce9-7eac48c1c04a'::uuid,'539','997',3295,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('307cc6f9-760f-42e9-b6f7-d41a8c318df2'::uuid,'539','998',2846,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b551bad6-ac5a-4940-aa87-8cdd2333743c'::uuid,'539','999',2588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7808e084-fe2a-4c91-b74f-00e0e2e29b2e'::uuid,'540','995',3219,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4a92e44-b924-4051-b198-f25b3b1b013c'::uuid,'540','996',3219,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a37231f6-2cb2-49f4-8f9a-ebfdc0cb6b97'::uuid,'540','997',3105,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c297c89a-4076-49cd-9a38-690d936b2aa5'::uuid,'540','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32ce3c5f-4677-4c82-94c2-97e756e655fe'::uuid,'540','999',2434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1f2e8eb6-f858-4d4a-a6ad-485c09f22527'::uuid,'541','995',3404,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8cbfd377-a3ba-407b-846f-e603afd39f85'::uuid,'541','996',3404,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c6a6aea-a1ea-4eac-b8e8-73fa7fde9594'::uuid,'541','997',3290,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9d6ace54-5385-4a98-bc19-2b2e6bcc9c40'::uuid,'541','998',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05badb97-1bd6-4402-8622-6cd3c46cd0ea'::uuid,'541','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d066efa-2832-40a5-a5a9-4c1b9c113d28'::uuid,'542','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da78b8f8-b9c8-443d-af62-9054febb398b'::uuid,'542','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3361e7b9-2362-4d26-b733-48cdd264ca98'::uuid,'542','997',3505,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5675ed58-620a-4a29-98a3-ff913f496355'::uuid,'542','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('509da96f-3093-4153-bcd0-47d883f8b4fc'::uuid,'542','999',2698,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9c50c2f1-ea66-4b01-b7dc-700ab2d52be8'::uuid,'543','995',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9250ae5-591d-4d98-bbe5-87748b33d893'::uuid,'543','996',3730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('38552f04-5e4c-4a03-93c9-838d2b00095c'::uuid,'543','997',3337,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cac1ceef-e647-4733-962a-25fe7e58a685'::uuid,'543','998',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4dbe36b-b057-4ea0-8c7f-b948fa7a1d34'::uuid,'543','999',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da35386f-def9-42bc-9eea-9dde3827078f'::uuid,'544','995',3357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7fa2a84-4f35-4a5c-bb21-8e806ec31894'::uuid,'544','996',3357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0e0846b0-a1ad-468c-b3f1-b75f54d4da79'::uuid,'544','997',3243,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c3c52f83-0181-42d4-9390-44c62a594e11'::uuid,'544','998',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d032616a-b99e-46a5-9f04-e874d1ae8d24'::uuid,'544','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('473f54f9-2663-4c35-b08e-f44415020d6c'::uuid,'545','995',3291,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('440b1d5c-19fa-4a41-8c01-91b96c27dece'::uuid,'545','996',3291,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74656ea2-9917-4a16-a31c-386c3010be92'::uuid,'545','997',3177,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('564ffd53-0df4-4ad9-8e6f-8a65294a7e93'::uuid,'545','998',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8268090b-9acc-4e8a-91d5-14758590c154'::uuid,'545','999',2470,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eafde64a-af81-4ecc-a630-a9dcfae4df9f'::uuid,'546','995',3344,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c79f8fc-7178-4d18-8523-d512aed65148'::uuid,'546','996',3344,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5498e693-b986-4971-9a36-2e9332578533'::uuid,'546','997',3230,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56e54fb9-b73b-4f24-b59a-3687afbca812'::uuid,'546','998',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f19e38ce-1db1-4521-a222-6bceb8186baa'::uuid,'546','999',2524,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0bc664ed-cdef-4665-9a46-d56ce1df89f9'::uuid,'547','995',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4d14354-19da-4bce-99bf-b8b921c14a03'::uuid,'547','996',3544,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b42dab02-79f1-4856-b5c9-1fbd1ce3c648'::uuid,'547','997',3151,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae710a5b-ee1b-4d72-aa33-bc3e4150956b'::uuid,'547','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3204b758-5cb4-49e5-9089-8b9c7fc52f17'::uuid,'547','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d357470a-36b5-49f2-b128-6208147ed14f'::uuid,'548','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07f6729e-e0f2-4dbe-954a-72ec0cc2b855'::uuid,'548','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bdbdbef5-102e-4de7-97f4-86ed0cc3b2de'::uuid,'548','997',3091,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1a256afb-77fe-4fe3-b8d1-b54296ac43ff'::uuid,'548','998',2642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac534684-53a1-47ac-8af2-ae9bb1989f59'::uuid,'548','999',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c53611b2-a777-4a0d-b1b0-b7ae6d1d2642'::uuid,'549','995',3400,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97a8cdbb-e5c2-4b98-87d0-9059e0fb7337'::uuid,'549','996',3400,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80613cf0-e086-4ede-9745-099c9f3de501'::uuid,'549','997',3286,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('862a322b-9b63-4fa4-8f00-43e39ff7eabc'::uuid,'549','998',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('430dde37-491f-4748-b232-7b9ef03d85cc'::uuid,'549','999',2580,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84c06531-7e26-4d12-b2a9-9eed5bdd9885'::uuid,'550','995',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7bb74a06-da5e-4e8d-8eb0-1f9439c7f6e5'::uuid,'550','996',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2bf619d5-f16e-4d55-aef3-f4840f810a07'::uuid,'550','997',3078,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e1d3a37-5ce7-4e8c-b3ce-e77fc2f0ad1e'::uuid,'550','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1573c59f-bf00-4184-86cf-117ba40420c2'::uuid,'550','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f37d6f39-1dc4-409b-a440-f0a589c21ed6'::uuid,'551','995',3182,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aa67ed16-196a-4bac-85d8-c874fb0a6d17'::uuid,'551','996',3182,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('40b6d1be-52eb-40e8-8ca4-40abd8749c0c'::uuid,'551','997',3068,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eaef8804-a559-4db3-b264-11210bd0a612'::uuid,'551','998',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4a2c77d-0eb5-46c3-8e5c-93a20a25f641'::uuid,'551','999',2361,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb5eee6b-dac0-408a-b321-37454554903a'::uuid,'553','995',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('56ec959a-badc-45a5-93f7-ace3ddc75669'::uuid,'553','996',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0df6e3c9-96b5-426c-b169-5525ff3fdd3d'::uuid,'553','997',3037,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e1258ac0-e9e7-4f7d-ae41-570109837123'::uuid,'553','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7aaf3717-7c83-4113-8cf5-5f8416401bef'::uuid,'553','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7d95504d-babc-4ac4-89f9-8f632b3689ed'::uuid,'554','995',3174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5c0363b-1225-45af-a276-a355fe4b3ddb'::uuid,'554','996',3174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0aa97b8d-626e-46a4-a300-15ee5998724f'::uuid,'554','997',3060,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e47c2a66-a16a-4b97-9776-970ffc670747'::uuid,'554','998',2611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdbf6c2a-cde0-42f4-ae17-700a8ac52d7b'::uuid,'554','999',2389,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fb14283-3939-4543-bfbd-32d95f7db727'::uuid,'555','995',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('45902b12-fed8-4830-bd39-f18406b9b72c'::uuid,'555','996',3151,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e4a5c031-ada7-4dc1-b08d-b6946008580c'::uuid,'555','997',3037,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2d6b1b6d-771f-4cba-912b-3d732e68ff3a'::uuid,'555','998',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4cdcf69-79a6-4f0c-8b27-8b36264ba3c7'::uuid,'555','999',2366,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fc68c3c7-be05-4e05-85e2-bfea6de1052a'::uuid,'556','995',3213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ad1beeb-3b3b-4b78-8099-feb2f7e63ad3'::uuid,'556','996',3213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('71031929-5d96-475f-bca4-5ea7e22a9488'::uuid,'556','997',3099,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f0cd533-bb45-49b2-a755-abbc95fcf1d8'::uuid,'556','998',2651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc157c16-3ab2-4426-b193-62664ca797bb'::uuid,'556','999',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e176ab82-d911-4316-85d5-23fe05a2aecf'::uuid,'557','995',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9df31a4-207d-4f91-a395-1dca7d339c63'::uuid,'557','996',3362,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdba86e5-90ab-47a2-9691-01a0559d7b86'::uuid,'557','997',2969,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0ee2d61a-58d4-4177-a3a3-1c8abb89e23b'::uuid,'557','998',2521,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3ffd31f-db57-4cec-87be-7f92c9d872f4'::uuid,'557','999',2298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2f316561-b131-40c2-9780-280a3eb0ef5e'::uuid,'558','995',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07cdd2a7-0ab7-4490-9b21-bb17bb66289b'::uuid,'558','996',3411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cecbb52-c01c-47bb-b342-515ec5167364'::uuid,'558','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a58cd870-34c3-447e-8a64-777350ca77d8'::uuid,'558','998',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8537d37f-d2c8-4541-a6cf-2f26d2bba7cd'::uuid,'558','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52cc86b4-123e-4315-bdbe-520ef59a67c4'::uuid,'559','995',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('47228aaf-640e-490e-a669-cbd088fd3340'::uuid,'559','996',3556,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd4c910-8316-4857-9042-8483b601e5a5'::uuid,'559','997',3299,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('42034574-4ba2-441c-9a8c-3ff316feb834'::uuid,'559','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('744093c5-b0d0-4ce5-98a2-c1fe24745cbd'::uuid,'559','999',2491,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a740abb5-18cd-4a1a-a5d5-6026c1d616cc'::uuid,'560','995',3207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80bcbcac-86c1-4908-899c-532c32748965'::uuid,'560','996',3207,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('89d1c467-98e4-4b6a-a44b-529ee15be4e3'::uuid,'560','997',3093,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a23c3a4-1ed7-4a01-9ad8-2fdf84c0f19a'::uuid,'560','998',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8feae52-93f4-4402-a396-8996fa2b4a46'::uuid,'560','999',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('04cf5de9-2ceb-4fd2-999b-867510b9681b'::uuid,'561','995',3157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c81a7e5d-ddc2-4a26-9cc7-c1365ffff840'::uuid,'561','996',3157,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('028d7f25-040b-4792-b311-8992b8d61e52'::uuid,'561','997',3042,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('badbb6ed-829e-448d-a8bf-be3aa63165e8'::uuid,'561','998',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b678d686-b8f2-4f22-a872-d56fc8f1ff5f'::uuid,'561','999',2336,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3606cb9f-eb9a-4d38-a7da-5727e7af78a0'::uuid,'562','995',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('093c06aa-2f54-4108-b3e3-bfb9995c8032'::uuid,'562','996',3350,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ea03b2f-c45a-48f1-b754-e3e424a15159'::uuid,'562','997',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5c6d0706-4d6d-4a53-ab43-0da43df1cf10'::uuid,'562','998',2509,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92e98c7d-0771-461b-b6f3-e7f591f182b9'::uuid,'562','999',2286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ab47fabb-2749-4130-a752-86af5b98d2ea'::uuid,'563','995',3069,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d1f49e3-53ef-4d56-951a-663a226e15a3'::uuid,'563','996',3069,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66d07a19-eccd-42bd-ba56-a3e60993b9c7'::uuid,'563','997',2955,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9e033c3-e258-4ca8-81b4-9f1e47e64b0f'::uuid,'563','998',2506,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e013fa19-d374-4a66-b574-443a03e0cdea'::uuid,'563','999',2248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c8051561-7b10-4cde-b820-4c8db36967f5'::uuid,'564','995',3052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('02b94a03-33d0-48a7-8ee2-72a341f3cb2c'::uuid,'564','996',3052,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('519ff7d3-af6d-457b-a622-d8a700554d46'::uuid,'564','997',2938,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23874d4e-1365-44ae-853b-7a6f8efdc310'::uuid,'564','998',2490,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5323124e-0e44-4b60-b7af-4867237dde6b'::uuid,'564','999',2232,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091f8b2f-01a7-4142-bb8b-90f630f28a66'::uuid,'565','995',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82ae642a-ab2a-4081-9993-d34207a02295'::uuid,'565','996',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a071e8-1b3b-4f3e-a706-e186d016927b'::uuid,'565','997',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd8cbbd4-25ce-4290-9fa9-608eae305d28'::uuid,'565','998',2422,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8136a4c-dbc3-42d2-9f5b-5731fb274c1e'::uuid,'565','999',2199,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e7d0d72c-3474-4bd9-bce5-838ac46ca3b6'::uuid,'566','995',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d002bef4-b344-4d7d-95f5-2abe3bf44774'::uuid,'566','996',3274,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae624527-b3ba-44f9-b52b-771333f3cfbf'::uuid,'566','997',3017,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01447a9d-40fa-4e97-b74e-9e8f56f9b237'::uuid,'566','998',2433,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ba9c60a-f7ee-4fec-a9c2-394040d87acd'::uuid,'566','999',2210,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bac06daa-e4ad-43e6-82d1-1f0dcda7dc21'::uuid,'567','995',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae82e5dd-69f9-4b0d-a99e-258ba6e8a57f'::uuid,'567','996',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a9f69ba-6238-45de-bcda-e56aadb95f8a'::uuid,'567','997',2745,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d344c598-11d5-4fc4-8c27-9688db7a236a'::uuid,'567','998',2297,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aaea3be-8ce2-4948-9983-e6f49c3829c7'::uuid,'567','999',2074,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3bc34563-614f-404b-b5ef-f9048e9b5468'::uuid,'570','995',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f27abefe-de8d-4111-98e0-7aa17ebe007d'::uuid,'570','996',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5de2b0ea-d211-43e2-9ff5-f8d062d31485'::uuid,'570','997',3035,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1bb320a-9f1f-4cb0-827a-1a6f7cebc96b'::uuid,'570','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de508cf4-9513-400d-b011-6d9c6f3e1a57'::uuid,'570','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bb0f7a44-0758-45d6-b56f-cc675dc5d79d'::uuid,'571','995',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a7ec7990-0e2b-496f-b80a-c7ce83a4d827'::uuid,'571','996',3149,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2b70e54-d9e0-4ace-8235-8fa36d62d8e7'::uuid,'571','997',3035,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f67871e0-e4ac-4409-9568-cc1af2a64b0c'::uuid,'571','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b325a32-de88-470e-b390-e9f1dda0bc92'::uuid,'571','999',2329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('defc5343-032a-440e-99df-02267e017e0d'::uuid,'572','995',3045,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6001af3-b945-4a6c-b007-b7e09a5c016b'::uuid,'572','996',3045,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5851bf8d-df1e-40a9-8010-3e49e3460546'::uuid,'572','997',2931,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('48f45265-d627-402a-ba7b-1bba82d2095a'::uuid,'572','998',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fa40f95e-fcc3-4236-a5e1-d156afa17e99'::uuid,'572','999',2225,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67040feb-4819-4cc8-a638-c4706504ed24'::uuid,'573','995',3095,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84dd0873-9d8a-4fbc-a065-d59465df74ba'::uuid,'573','996',3095,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4033ce2a-252d-440c-8182-3129865e5924'::uuid,'573','997',2981,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f230884b-fd02-4a67-9b83-eb9c50b37689'::uuid,'573','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73c0994b-ceaa-4816-9be0-f9f61aaff3c7'::uuid,'573','999',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('68174f83-a713-431a-bfa5-4c470ce5a495'::uuid,'574','995',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9602695a-9188-4a11-bab2-28eff43de1e0'::uuid,'574','996',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80fbff72-3484-4245-a8d8-c79a3b130b25'::uuid,'574','997',2841,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e0f739e1-7fe2-43c5-a6e7-ea2a93c54dde'::uuid,'574','998',2393,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8430abd-da25-4e06-9198-fad42e0f7389'::uuid,'574','999',2170,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6b8c092-01c7-42e7-a49d-ed707a214ed8'::uuid,'575','995',3012,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7142e1c-a5b4-48fb-9a0c-0ed6b60e9659'::uuid,'575','996',3012,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('529592c0-1ef3-45dd-ae73-23c1b59964ab'::uuid,'575','997',2898,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5674434d-f20f-45a8-8827-a956bd5670fe'::uuid,'575','998',2450,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb7a89ff-ec6b-4607-967b-394d378465ea'::uuid,'575','999',2227,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1dbfd8b0-1f42-4007-b510-59c7ad5cc2c4'::uuid,'576','995',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d0083a1-f589-44bb-b27f-d2ddc7032233'::uuid,'576','996',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('55e4c7fc-61fa-470e-8e23-9945d161c20f'::uuid,'576','997',2796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6fba924d-6058-4462-a4a0-620b97f5a315'::uuid,'576','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f011bd9-d5bd-4e82-a932-5e42e6d8eadf'::uuid,'576','999',2124,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16b8bba9-dc91-4537-9923-5b85688ac90d'::uuid,'577','995',2951,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('729f771a-5362-4c32-b849-ab2b65276aae'::uuid,'577','996',2951,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9fb6a3e7-bfa5-48a1-b1d1-a9a60fbc1618'::uuid,'577','997',2837,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('feb42382-5b2a-4721-b6bf-a4ade12fe36f'::uuid,'577','998',2388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('594eea09-6914-4e00-be9d-6ed478087384'::uuid,'577','999',2131,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8fc8db9a-26f5-4af8-9475-ea1d8c032ae5'::uuid,'580','995',2935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61fde359-2617-4c5a-aa71-f499553295d1'::uuid,'580','996',2935,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8648822-6b92-489b-934a-f8aeb6c6dc24'::uuid,'580','997',2821,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('38642e7f-b6e7-4b0d-9c76-fa029be473be'::uuid,'580','998',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95f96e81-3e71-4363-9efb-c01ff16495c2'::uuid,'580','999',2150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f61da887-6be8-4288-8d64-79a26785c5f0'::uuid,'581','995',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29a8b222-8b88-48d4-97e5-5f3b2daac3ff'::uuid,'581','996',3219,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad223705-5486-435a-b918-04137c425005'::uuid,'581','997',2826,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a6ff4392-87ce-4191-a2ad-0996aa18302a'::uuid,'581','998',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a05cf28a-8d3e-42a0-b032-c55762831cd9'::uuid,'581','999',2154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6043c1c7-9c3e-4801-9b34-0864c1d31eee'::uuid,'582','995',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159bd446-56fa-4cc5-a142-27ef71b23461'::uuid,'582','996',3161,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2889e245-c067-45c1-ab50-014b5bd1712c'::uuid,'582','997',2768,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('712b215c-4d71-4054-8d5f-75424a16bcf7'::uuid,'582','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f10eadcc-9dfa-422a-b864-8d90294bc51f'::uuid,'582','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cb9b480-8caa-4c23-96f9-8f0bbb7c838a'::uuid,'583','995',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('517b77ae-cbae-4740-a901-1856e750daba'::uuid,'583','996',3054,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b7e773cd-f27d-498f-a518-1b474d47a24e'::uuid,'583','997',2796,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6ed413e7-b246-4a82-8989-80684b4794a3'::uuid,'583','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0bef008b-cf07-4f76-9302-18b43943bba8'::uuid,'583','999',1989,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d6bc516a-f821-4242-890d-ea8d1cc7fe0e'::uuid,'584','995',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('caa142ff-d7c0-4732-8f4b-f206e6accb30'::uuid,'584','996',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3eacd7ab-46df-4188-92c5-ec9bbe6cf0db'::uuid,'584','997',2732,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2afcb1b9-1ade-4da9-9f4e-c58a2b30d084'::uuid,'584','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2a326983-9245-4801-be7a-a710f3cde4d8'::uuid,'584','999',2061,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f73026f2-aa01-406c-93a8-1c36d33a88fd'::uuid,'585','995',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef337442-c49e-4a20-b128-5c35770bed62'::uuid,'585','996',3063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4badeef4-bf49-46d5-9412-8b3e42281715'::uuid,'585','997',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('feeb4199-1677-428c-8d08-c7380320518b'::uuid,'585','998',2222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66c1438c-777c-4851-bcbe-458ceb6f90d2'::uuid,'585','999',1999,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b6c10648-7be0-4627-bda4-74e7627b524b'::uuid,'586','995',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ccae245a-7795-43cd-9ff8-422e4c8a7dbc'::uuid,'586','996',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd472422-5135-4ea9-a4ae-c9e6dfa04522'::uuid,'586','997',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a08ad7e4-f3e4-49b4-a5bc-f9372284c0fd'::uuid,'586','998',2186,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9676daa7-10c9-495d-938a-7e3aacec6d16'::uuid,'586','999',1963,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34fcc021-df26-43ff-a85d-9e0540bab693'::uuid,'587','995',2676,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d2c61fcb-3a3d-4afa-a7b3-dedab8ea219b'::uuid,'587','996',2676,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e62dd4e-f27e-4a12-8438-4b09f2008a04'::uuid,'587','997',2562,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e2adfc4-8eb4-4a24-82a2-6f21d7a1f697'::uuid,'587','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af24244c-76ba-43fb-be13-771d61583d80'::uuid,'587','999',1891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('21553092-78bb-4d92-a14c-06b4d5afada1'::uuid,'588','995',2618,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66b28fe9-8e1e-4c98-816f-a64b90019a71'::uuid,'588','996',2618,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('133838d7-fd1c-4214-b6a3-30235cb5c68c'::uuid,'588','997',2504,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8f1e398-1dc2-4922-a885-7a350af14934'::uuid,'588','998',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb59922b-edd3-4e72-90ab-8d7324d73b42'::uuid,'588','999',1797,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d39b639-e9ab-4404-9a49-cf1c0fa41a9f'::uuid,'590','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d342f80-5c02-4a09-92b8-665a9c77934c'::uuid,'590','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6af4587a-743e-4f33-8627-b00834c496f9'::uuid,'590','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9438b293-3f9e-40d8-bbd7-5c7321f37450'::uuid,'590','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15be0dae-9252-4a99-b486-a6a9f3b42a9a'::uuid,'590','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('26381dd8-91a6-430f-9b48-297884466d31'::uuid,'591','995',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a51c57dc-fb10-4485-8099-c5c7947460a8'::uuid,'591','996',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13a44dab-4221-49dd-8558-57cd8c951615'::uuid,'591','997',2675,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fa6015e-c4fb-4919-aced-3e803aff997d'::uuid,'591','998',2081,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4853fbca-4939-41a2-bbbb-6cda75664cf0'::uuid,'591','999',1858,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3420dee-8a61-4c13-9320-d32436d57735'::uuid,'592','995',2592,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9809db90-0321-4cbd-a701-b1925033affd'::uuid,'592','996',2592,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df690c70-3fa3-4a9c-ae41-3549ecb52ed0'::uuid,'592','997',2478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('affaf773-a264-4d2e-aec6-feab899adf92'::uuid,'592','998',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('883101bd-a053-460c-93b6-f834577ac4ef'::uuid,'592','999',1772,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('372ef217-531b-49b8-b3f0-4db3bfd07247'::uuid,'593','995',2752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fcb944ff-1386-4ed0-830e-488da0c6e980'::uuid,'593','996',2752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('900b77a2-d90e-481a-935b-9ffbe95f5e51'::uuid,'593','997',2638,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b240f71f-12e0-4f75-886f-0d42c0da24fb'::uuid,'593','998',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a9fd9a9-fcf4-44f7-9db4-c476b6c87741'::uuid,'593','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0f896af-9304-4d60-bc8c-dcac292467a5'::uuid,'594','995',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56e79e35-5671-47e6-85cf-132bdce31691'::uuid,'594','996',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e4bba32-5e24-4724-a01e-a3651feb40d7'::uuid,'594','997',2323,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4c33a30-60cc-44cc-88f7-864381153d9a'::uuid,'594','998',1864,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7f637b1f-e156-4b54-a018-aecd34fa7ccc'::uuid,'594','999',1642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a92f92cc-7415-43d5-bc98-5bbd6f4aaa69'::uuid,'595','995',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7161a1f0-11d4-482e-9329-77dd6ef26612'::uuid,'595','996',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0f1e77a-ba19-4553-880b-822071761f81'::uuid,'595','997',2341,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4e24817-ef2c-4781-836f-e46cc505de2f'::uuid,'595','998',1882,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08127592-22d2-4876-9c78-d9ad6501839b'::uuid,'595','999',1659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98b12e6d-9855-4c49-b95e-ed683359fac6'::uuid,'596','995',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5294ef9-d999-4f47-9eec-c6ce61aa2d4e'::uuid,'596','996',2776,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bb4daad-034b-4f2c-af0a-c5e51f730a4c'::uuid,'596','997',2383,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2fdeb60f-9816-4f98-8ca8-a4c95dc940e1'::uuid,'596','998',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('819118e1-c0ee-4ad5-a5ec-b92184a79797'::uuid,'596','999',1668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4d0bba16-b627-4205-b83a-e1f3bc97d5b4'::uuid,'597','995',2589,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a861997-81e3-45f8-825a-89e0d600c9ae'::uuid,'597','996',2589,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23461f9e-31b6-4264-a93e-e2cc1d2a2efb'::uuid,'597','997',2475,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad69452c-2e97-461b-8390-8e5b40834800'::uuid,'597','998',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2e6043d-aff1-419a-a2f0-86e75e92abfd'::uuid,'597','999',1682,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36cf8709-a1f9-404d-9ff4-c656158e5612'::uuid,'598','995',2513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('83996d3a-420c-4464-898e-154ef8de0d81'::uuid,'598','996',2513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d1b1739c-99a9-42d8-ab74-db06537448b9'::uuid,'598','997',2399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c8cce8b4-11db-411d-9dd2-5968655ffdfd'::uuid,'598','998',1777,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5109c8de-7420-450d-be53-8a12f0606a45'::uuid,'598','999',1555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('afe30946-7391-482a-a7d2-ff8053ed3102'::uuid,'599','995',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f164b9be-d465-4551-a0bd-b91f64b64460'::uuid,'599','996',2676,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('803d0868-e716-4af7-8afb-4544a81d660a'::uuid,'599','997',2283,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd468b6c-2bf6-473c-ade2-fded58b48c76'::uuid,'599','998',1741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('08d5937d-c8d0-460e-8c12-170bf37d9828'::uuid,'599','999',1518,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbc98432-fc0c-409b-9e8b-16f64259af35'::uuid,'600','995',3529,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6a0569b-dff5-498f-b678-5eb05425bdca'::uuid,'600','996',3529,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84c037bf-2fbc-4a8c-8229-ccd976a241f0'::uuid,'600','997',3415,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c17d1d35-2906-4e6d-b22f-c64eb9277dfb'::uuid,'600','998',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30ed0dc5-57d7-4640-be51-bc66828e4f3e'::uuid,'600','999',2708,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('efc0796b-a480-4f81-8f48-36d2ebd785fa'::uuid,'601','995',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29317075-b3de-48f4-b496-0c27cf78cf7e'::uuid,'601','996',3834,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a7c50eb-c604-495a-8a53-1bd94a24cf41'::uuid,'601','997',3441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b659c5fa-59ec-48a3-b4c5-9a1bc2d09514'::uuid,'601','998',2992,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5b3b684-c8c9-47d1-8bbf-e1fe384fb73b'::uuid,'601','999',2769,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9ba1b4e-2f46-483b-a265-b2d491832b31'::uuid,'602','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c58f40b6-97fb-40ca-a637-ce43e8c01449'::uuid,'602','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d6bab2f-a11a-42f0-9eaf-626d2f2580eb'::uuid,'602','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f133358-7d07-4915-996c-81381562fec3'::uuid,'602','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3c4ed3e3-ecc4-4cfb-8a1f-bd582468d4f4'::uuid,'602','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9a796351-a7ac-4f41-9c78-efbc5b08d65b'::uuid,'603','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0c32971-33f8-4fba-ab0a-12a5c8fcf6f2'::uuid,'603','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3259712-6d3e-425e-b09d-44924feabcbc'::uuid,'603','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5882c090-5502-4a20-a73e-e4cc55aca34e'::uuid,'603','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d114b51-4e75-4600-bc8a-7c0fc4a93800'::uuid,'603','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54d506b1-7791-4773-b312-bbb4714d3cb0'::uuid,'604','995',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51e7a6fa-55b4-44a7-9812-a357bddf4e02'::uuid,'604','996',3870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80a08f3a-69b0-4f78-8a03-58e672e54c4e'::uuid,'604','997',3477,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0036208c-c009-4d6e-8ec2-9312af1fef16'::uuid,'604','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e15bda6b-6233-4a4c-809e-d148d49cfed4'::uuid,'604','999',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ccdf067f-9e76-4e47-a946-bca37dad5265'::uuid,'605','995',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60a838a9-41ca-401d-948c-bb2e2cca6986'::uuid,'605','996',3845,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c28ab6a8-76e2-4680-a07b-f03747eec433'::uuid,'605','997',3588,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9418f8c3-c8c0-44e0-ba54-24eb13ad1e29'::uuid,'605','998',3003,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34a434e1-d287-40b3-a9dd-a657ac881964'::uuid,'605','999',2781,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5f363a8-62fc-420f-8fb6-01118c48d876'::uuid,'606','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('677819c8-1db4-469f-b920-d60dbafde746'::uuid,'606','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fa446ac-b92c-48a3-a190-2c2eef1b494c'::uuid,'606','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a3dbc30-7902-4ba3-a7f8-650987442530'::uuid,'606','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396d750a-f3d2-49a1-8e2f-42d2ce6693d1'::uuid,'606','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a7f2d255-6212-42fd-b852-36eb7ac4c3a3'::uuid,'607','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c7225724-e250-4fe9-bbb4-ea872b7d175f'::uuid,'607','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fa0f8c7-6f72-4ced-a990-7920bbedb4ec'::uuid,'607','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa4516e2-00f8-492c-a7bb-9875e2854bb8'::uuid,'607','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('313a7a0e-111e-485b-ac28-3a3f4141436e'::uuid,'607','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('216ed3b2-1b06-48fe-8110-c2ab1a849eda'::uuid,'608','995',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('089b5212-d62b-400b-83fd-73aaed0f74dd'::uuid,'608','996',3853,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bff9c00-9ebf-45fb-82be-29de6ebbf8dd'::uuid,'608','997',3596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60599c3b-7dea-42d2-8e48-094dd44c5874'::uuid,'608','998',3012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('473b3c00-1212-4636-951d-a3be619d066a'::uuid,'608','999',2789,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ef115955-f435-420d-bbc7-0d2b8cc85676'::uuid,'609','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3349128-7498-43b9-8bb3-6c1811221026'::uuid,'609','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bcc268a0-fe16-4e5c-9efa-b908e6f3f14a'::uuid,'609','997',3536,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85e11610-cf9d-45e5-96ac-6f6728e64b0b'::uuid,'609','998',3087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef6644b2-ad5b-40b4-a2e5-81f8deceb510'::uuid,'609','999',2865,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb403c20-c713-45b7-a08c-493abb0cdf0c'::uuid,'610','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92182b0c-a4b1-4132-8f08-b66cd190ab26'::uuid,'610','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa5812ae-47a8-4b9c-a855-a260c224e9fa'::uuid,'610','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a7fce7c-c4b0-4e7d-916a-02d2340acb66'::uuid,'610','998',2941,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d8ff7155-a628-4e04-a324-da93e574dcb2'::uuid,'610','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('360ff083-15fc-421f-acef-c3dd4af066d2'::uuid,'611','995',3505,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41cb1217-c14d-4573-9809-8c47be524923'::uuid,'611','996',3505,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c555f767-10ed-4ac4-92f1-19bf78409898'::uuid,'611','997',3391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a547a4a9-9448-4a2c-945a-e1f53de05574'::uuid,'611','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e5e24e5-8d3e-46b1-b3d4-06c9f50be386'::uuid,'611','999',2684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6312ef1d-f4c1-41d4-a724-123c4f0db011'::uuid,'612','995',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d82a5ebf-33ea-4114-973f-50151b7678d7'::uuid,'612','996',3788,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('520ba3c9-98bf-4fed-978e-f7fa86f0c6cb'::uuid,'612','997',3531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2eb6b8ba-ae42-46fd-aa90-9be947754afb'::uuid,'612','998',2946,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a6febd9f-0406-4628-b3b8-085ba04c162d'::uuid,'612','999',2724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('331b96b6-99eb-4350-b2bf-67803b753117'::uuid,'613','995',3570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32314154-d0d5-4142-afc8-faa0ef8075f0'::uuid,'613','996',3570,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2cfb376-3764-4c9b-ad61-a41bbb1891e6'::uuid,'613','997',3456,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5272acf-b89a-4fc2-be13-589567de068c'::uuid,'613','998',3007,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fc33253-02a9-4249-97ab-a71dc2dfee6c'::uuid,'613','999',2785,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('838e7a36-e099-4e80-a0df-6c90ff41e712'::uuid,'614','995',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('596e7115-4a8d-4386-9e99-052646458b61'::uuid,'614','996',3822,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c0fe8446-28da-48d0-8fa8-a9e616df3bb3'::uuid,'614','997',3429,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7708d37b-58ee-4774-82f3-8226a2f542c0'::uuid,'614','998',2981,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32ff3263-ab4f-421c-a1fa-427c75b9b0ec'::uuid,'614','999',2758,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e2e42a4d-5527-4dde-8b85-390d6b7339aa'::uuid,'615','995',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dc8c25aa-b10f-4c11-962a-2dde94058738'::uuid,'615','996',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('631c8ccf-8e0d-4df6-b9b9-0dbf0098226a'::uuid,'615','997',3476,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6d00dd3a-3e1e-4f45-aae1-46ad89c5669e'::uuid,'615','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ecbf1812-261d-4465-860a-a6641859ed0c'::uuid,'615','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71f1db50-add7-477d-9ee2-fde9f4281fd6'::uuid,'616','995',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('242238c5-6c7b-471f-b4b0-3877b964fbc6'::uuid,'616','996',3590,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb6de643-6dc7-4a27-b784-eb531659a33d'::uuid,'616','997',3476,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b71f945d-9171-4875-ae9f-ac8890a034bc'::uuid,'616','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f9b58b7-e0f8-4b10-9baa-5c5abe830cf9'::uuid,'616','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2f455a3d-893a-475f-a938-2e0cca36c49a'::uuid,'617','995',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ff5b3e4-3ced-43a7-b25d-d096776ab802'::uuid,'617','996',3907,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41260d35-1f4a-4c85-b1a0-66f7609d62ae'::uuid,'617','997',3650,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cce85e6d-9452-498c-a9de-31d432807505'::uuid,'617','998',3065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd46989e-5650-4e1c-9246-84834f254a1d'::uuid,'617','999',2843,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a259932b-3f21-476d-a607-95d4a2001ad6'::uuid,'618','995',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c0bc949b-c85b-49dd-899e-96807d298508'::uuid,'618','996',3698,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84977ef3-5cb8-4678-b80e-3e9bba63cdc1'::uuid,'618','997',3584,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ea3a67a-0dd1-4017-a8d5-2db91a02d9fa'::uuid,'618','998',3136,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0bb4720-943a-4cbb-8f10-eb1003bdcc48'::uuid,'618','999',2913,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4f7ed0be-33b8-40ec-899e-e9cca8072e7f'::uuid,'619','995',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('67b3a147-3139-4c3b-823e-2649e5dd057b'::uuid,'619','996',3986,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2ef8fdac-7e51-4d2c-b104-f17d5ae9dfb8'::uuid,'619','997',3729,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5410eda9-c2f0-40be-8c5c-ecd34e9cf2f7'::uuid,'619','998',3144,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e26b5c95-3e01-48c7-b10a-4b356626c92a'::uuid,'619','999',2922,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fba822cf-a42e-43a3-9872-f68f250176ec'::uuid,'620','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4fac0793-6233-4496-bf91-dd37ef6e5d9a'::uuid,'620','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f51378a3-bd0d-4389-9dc3-b00872095041'::uuid,'620','997',3562,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('111e5e34-38db-4c6c-b16b-64c147709b69'::uuid,'620','998',3113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4081bceb-b2e0-431e-8dfa-69261e04d1dd'::uuid,'620','999',2890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88ad2dc7-72f0-4ee1-ba26-a6a43da03f47'::uuid,'622','995',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bb0aa95-3a51-4236-8bcb-10a03fbb1737'::uuid,'622','996',4020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f77d538e-88f3-4191-9668-27679f287f62'::uuid,'622','997',3627,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84bf52d0-2b91-4e91-80d3-6b3fdc66e8e4'::uuid,'622','998',3178,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('001abfed-9b7c-41e7-8394-0d45e81ee301'::uuid,'622','999',2956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dca90755-c8ba-4803-8d56-5ed28aa702ad'::uuid,'623','995',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae809a3a-39fa-47ec-880a-8c65e9f13126'::uuid,'623','996',3869,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396b34b7-4496-42e3-b549-4677c637dae7'::uuid,'623','997',3612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25e94773-66da-4e4d-bafd-514fb9e41e99'::uuid,'623','998',3028,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8670ddd1-57bb-4102-be9a-72eb73ed3301'::uuid,'623','999',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('53ffa1a8-1685-4423-951a-70f127fb0613'::uuid,'624','995',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74b04afd-0878-4834-8fee-deaa13e9ef6a'::uuid,'624','996',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ddbc252-b24d-4ff9-8bee-69c717b518e7'::uuid,'624','997',3645,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a717fd44-ee96-49c0-90aa-41a6b1cb7b32'::uuid,'624','998',3197,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b08d747-c6e1-4631-a266-bdf0ddab1fa2'::uuid,'624','999',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c46f569e-5c73-478c-815f-60eed80d4452'::uuid,'625','995',3652,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15fc9ac0-65e6-4b51-bc46-7eda7cd267e0'::uuid,'625','996',3652,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('52568b51-77ff-4cfc-a496-b5c79198d276'::uuid,'625','997',3538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c59ca3f-c7d2-4937-b389-1fff6c42ae41'::uuid,'625','998',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7b017d23-102a-43b9-80b5-4399ca7fd9fb'::uuid,'625','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02f42e73-f25c-4edd-8fa8-2163270ae23d'::uuid,'626','995',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('09e9672b-7322-4f9b-a1ef-69b7db1db72b'::uuid,'626','996',3927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de36c531-c29e-44cb-bdba-d3756ad1444f'::uuid,'626','997',3534,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23ccb4c9-450e-48c3-8477-8027091418c0'::uuid,'626','998',3085,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b191cbbe-19a5-4e94-bfbc-f39cba25a996'::uuid,'626','999',2862,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6310fcf-363f-4405-bee6-25f7c0a5345a'::uuid,'627','995',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82a09106-2dbe-4458-8aa4-5caff133dd33'::uuid,'627','996',3931,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('430d0f22-38a5-4eca-8346-7aceba7a9905'::uuid,'627','997',3538,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff8c459c-02d2-45c4-94bd-72231bb55f19'::uuid,'627','998',3089,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c31db31d-5185-4fd6-8116-c9ba93f6851a'::uuid,'627','999',2867,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('70fa3f48-e552-4c08-9814-3cae56ed39ca'::uuid,'628','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59db1a4a-058e-44b2-8080-6570d0de38a3'::uuid,'628','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a547132-bc93-402c-9284-3c6dd97bfc86'::uuid,'628','997',3682,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53bc2164-eea9-4752-a117-d21f77155076'::uuid,'628','998',3234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2365bd9e-94c4-43b7-9ee3-5ab2f95e0627'::uuid,'628','999',3011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb874386-5e66-4be0-b20d-d1c1604b14bc'::uuid,'629','995',3841,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0bcf1663-4d4f-400f-b094-0bcc0e5e60d3'::uuid,'629','996',3841,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5033d39-3c01-4260-82fb-88dfeeb6f84d'::uuid,'629','997',3727,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f834141-ed6a-4a10-9b64-c9406930dce4'::uuid,'629','998',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fcf69349-d948-46ec-849f-40e1329015f9'::uuid,'629','999',3020,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4773cc1f-6bad-4530-811f-c8cbbc5cd868'::uuid,'630','995',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5cf87413-4e71-4e7b-b646-c57f380a97dd'::uuid,'630','996',3994,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b396a991-2064-4ee5-be1a-acbfc7653863'::uuid,'630','997',3601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('041be5b6-9aa3-4404-8e7a-bf7916acc3fa'::uuid,'630','998',3152,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83da839b-9b3c-464e-a81e-c0e56d15bac4'::uuid,'630','999',2930,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e3f9ef9-4d7d-47fd-85f0-22c5f01c6013'::uuid,'631','995',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8248576d-0a62-4535-bbe7-e9c92708b236'::uuid,'631','996',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('356784ef-bbbe-47f4-85ee-4314dcd26fd1'::uuid,'631','997',3598,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8646eaa0-d0a8-44c6-a0f7-c117c7861061'::uuid,'631','998',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ea921a9f-06dc-4b46-940d-73cbf0ce574f'::uuid,'631','999',2892,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aec45582-5c3a-478a-bf98-b6b1f660547b'::uuid,'633','995',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea02f568-11cf-4263-bd6c-47787be8a541'::uuid,'633','996',3657,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('257e2083-0256-4704-a2fe-d0dbc63f1151'::uuid,'633','997',3543,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('127928d5-92a6-45e7-95b1-6754671e6111'::uuid,'633','998',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ab003ee-3b2a-477b-84d6-49dd125f9393'::uuid,'633','999',2836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5cd339a-18b6-4c48-8e54-ae924ccbceef'::uuid,'634','995',3594,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5d820c62-2c27-421f-8c5c-474b2c11fb27'::uuid,'634','996',3594,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ed046673-0220-4eff-bf73-df099b7de8e4'::uuid,'634','997',3480,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e528be4c-2110-48da-9120-8e1dd52b0009'::uuid,'634','998',3032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3875b8fe-e20f-411d-a832-9314cd7120ed'::uuid,'634','999',2809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('56d1e786-40d7-47e3-ab24-bfa3c0a33308'::uuid,'635','995',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3f34a692-0500-4b10-a2a6-cd434a4a93dd'::uuid,'635','996',3828,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('150a5fe5-a216-4985-aa84-2c9e1b6ee8f8'::uuid,'635','997',3435,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d5a70347-4685-4e50-adb6-37f2e7d91526'::uuid,'635','998',2987,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c5a84bc-d037-4477-9f91-756b1c6ab794'::uuid,'635','999',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48f45851-aea8-4913-a991-df3d971ac991'::uuid,'636','995',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9071a24b-f6d3-49a8-b062-e0038a0428b5'::uuid,'636','996',4075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0086ae4-4225-422d-b1a4-6da9f79de1fd'::uuid,'636','997',3817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8eeecac7-d72d-4e2a-906e-b4abd580ef9b'::uuid,'636','998',3233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19b969e1-ce50-4659-b4f6-893e406ff8c8'::uuid,'636','999',3010,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ce9381c5-2384-4550-9f6e-569c2a192a8a'::uuid,'637','995',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('205a35bd-178b-42a8-a01a-2803bcbe3f1e'::uuid,'637','996',4083,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fa56b1d-5af5-4f91-aa18-7002dbadabc2'::uuid,'637','997',3690,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db120b5f-4625-40a5-b6bd-b34da5920b22'::uuid,'637','998',3241,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b7ad21d-09a6-482f-aa86-294ab98063e8'::uuid,'637','999',3018,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce1d1874-8ee3-46ca-968d-26ae756217d8'::uuid,'638','995',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a03f1f2a-0aff-4408-812b-e7dac99cab97'::uuid,'638','996',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09264cd6-1d39-468c-94ab-eb9b737708a9'::uuid,'638','997',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b64aa8cf-8fcb-4433-931d-9a272e6688f8'::uuid,'638','998',3311,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2fe50ea5-69d5-4de2-a5f6-24c2a1006049'::uuid,'638','999',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7c01bada-e29b-4059-999e-0c0eef70b232'::uuid,'639','995',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('edf1442d-cd2c-4269-a8ac-d5e7260358c7'::uuid,'639','996',3839,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1c9b26ac-4a7a-42bf-9fd9-3d2a555557d8'::uuid,'639','997',3725,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4fc9e3a-0dc9-4a13-a139-93c0085bd5ee'::uuid,'639','998',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3fdf37c-3386-4c99-87ce-76645d44c5f6'::uuid,'639','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a262ad5-ddb6-4e9e-9a0f-1830505f9272'::uuid,'640','995',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bf03d6f4-3760-42d0-8ea1-b393f34e9486'::uuid,'640','996',3805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52475a25-2c2a-4f8f-8cd9-5ff300067e82'::uuid,'640','997',3412,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33db773e-bcdd-4f04-89b2-df2828d16319'::uuid,'640','998',2964,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a53f9c86-be83-462b-bf45-b37b2a27ee98'::uuid,'640','999',2741,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('97761497-a131-4934-a08d-634895c2ed2e'::uuid,'641','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eefdf64f-7b97-4838-bd70-631843b0cd47'::uuid,'641','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d5acae5-11b6-46ab-87f5-22f45458ed80'::uuid,'641','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5991bbe3-a14c-406a-a03e-4488853b0492'::uuid,'641','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59300cc1-80e0-489b-850b-329f39817668'::uuid,'641','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a2ac9eb2-88b3-46ea-a2ab-826bfbc45e97'::uuid,'644','995',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('364e66a1-8630-4626-ade5-0564f3bf5fa8'::uuid,'644','996',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1fde60e2-258a-48d9-948a-306de3282f21'::uuid,'644','997',3335,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fecf1f7f-1eff-419a-811b-dea9bac54967'::uuid,'644','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca93fb41-62b3-42db-980f-607990efb09b'::uuid,'644','999',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4f43b338-46bd-4ad7-a897-51cbf0e9c1bc'::uuid,'645','995',3453,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('910e2299-efac-43a3-a1ff-b149b803f3da'::uuid,'645','996',3453,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('855667d6-5e46-4cd6-9ce1-ed77088d6938'::uuid,'645','997',3339,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2030bed4-a451-46cf-bc11-9b1206033b06'::uuid,'645','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e3fad0b-cef7-416b-802f-b7ca3863d2ba'::uuid,'645','999',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6cef11a7-6466-4821-ab70-876dadfc7617'::uuid,'646','995',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23c52a87-0d7f-455e-8513-c6d8c60802a8'::uuid,'646','996',3802,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4af1614-7012-48e2-82c3-87ba4b298ff7'::uuid,'646','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b100881-e6a3-4f99-bbdd-5713acd7e608'::uuid,'646','998',2960,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7bdcbbd0-e171-4596-ba1c-c49aa9a3fb2d'::uuid,'646','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d188b8dc-6230-4816-88b3-4dea75f8ea02'::uuid,'647','995',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8a7fc1ea-b770-4470-9ce8-05ce69a1f4bb'::uuid,'647','996',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1808eb5e-443e-4ece-b2d9-fd540341375e'::uuid,'647','997',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('838727ab-fd79-468b-81d6-12a419c461db'::uuid,'647','998',3008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd3905b1-c1a1-4f2d-bac9-0ae0ff3be177'::uuid,'647','999',2786,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3debcbd1-4986-42f1-b19b-39681dbd8d5d'::uuid,'648','995',3673,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da5e8845-c001-431e-a0b3-be5676196d4e'::uuid,'648','996',3673,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('493c6e30-9dd1-4f55-b4f6-bf652ca449d0'::uuid,'648','997',3559,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00045660-9ba6-4ec7-83a3-51792c3b5391'::uuid,'648','998',3111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6b1e691f-4eea-4591-a2eb-e176448b51b4'::uuid,'648','999',2888,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('901285f8-9473-4121-afde-d2830fb500cd'::uuid,'649','995',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9241ce99-aeac-47b5-8537-1a9fb1bb8674'::uuid,'649','996',3783,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18a44543-4d09-453d-b83c-673c94778ddc'::uuid,'649','997',3390,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8853c2d-c536-40e8-aabc-c29a92cb511b'::uuid,'649','998',2942,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3962b54-f414-4f24-8925-2542ed43dd66'::uuid,'649','999',2719,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f045f85e-8861-410d-b514-8ee96f97ea85'::uuid,'650','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('185b45bc-c9fa-4f51-bf12-36698c4da9ec'::uuid,'650','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('66d4b242-2068-4fba-8d9b-f716895e5fdf'::uuid,'650','997',3541,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('79094362-7f66-436e-86d7-9eb5f9c48692'::uuid,'650','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cce7911-a1c6-4eef-b225-7f6839d6b2da'::uuid,'650','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f15ef513-f9e0-4576-9e48-633e99350ff5'::uuid,'651','995',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce923100-6a30-47ea-a1dc-c935fce3ed09'::uuid,'651','996',3934,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca6a5747-6c0a-4f52-8edd-c20e5ca1cbf2'::uuid,'651','997',3541,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('81dd53c1-fa4e-44c3-9128-7fc1b76ed1e5'::uuid,'651','998',3093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26b67ccb-f8ef-42b8-9d55-4b5ab45d9364'::uuid,'651','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b3924a1-d61f-418c-ac92-56fd29445d66'::uuid,'652','995',3604,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a59aad56-00f6-4cdf-a9d4-de95ce161710'::uuid,'652','996',3604,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e087c127-926d-453b-8ec4-05f6c11e4a4d'::uuid,'652','997',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('47bba21c-d563-437e-8242-476ff5a33db4'::uuid,'652','998',3041,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2cc8d262-64c8-4666-992f-3b55d39972d0'::uuid,'652','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7f8683ab-f43a-49a7-9616-b07b33b5441f'::uuid,'653','995',3596,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f046f24-fb57-4f5f-b4ff-d6c923d36999'::uuid,'653','996',3596,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7acfd012-97fd-4424-9942-30eb982e4825'::uuid,'653','997',3482,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70fb57ad-b050-4143-864a-0185585b4ef5'::uuid,'653','998',3033,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e430efc7-905c-417c-b828-5e3d136552a6'::uuid,'653','999',2775,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e5807b0-7e2f-412c-811f-9fb720600331'::uuid,'654','995',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3190cf77-1b20-4bb7-80ca-dbcb9f8a03db'::uuid,'654','996',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43d02f37-04ad-4d62-aca3-54a7f963300e'::uuid,'654','997',3638,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('93aa5322-7e64-45ce-8a59-c5f3c383742b'::uuid,'654','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53e12b3a-2d76-44a4-8ffb-e89e2b342176'::uuid,'654','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c93734e9-df0b-4b47-9753-40032e5eb86a'::uuid,'655','995',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a95f4cf9-7911-4b97-8332-eb760080e8b7'::uuid,'655','996',3752,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6ac67bb9-28dc-43c8-a358-096d82a2f994'::uuid,'655','997',3638,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d706e46c-be40-471c-beab-8383e8d264b5'::uuid,'655','998',3189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2114cf20-cf17-4edb-a6ea-6a8ffba14aec'::uuid,'655','999',2967,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1eec2c2d-9684-4341-8540-062480dd4c15'::uuid,'656','995',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('635abc6d-a8e9-46d9-94de-33cf490d79f2'::uuid,'656','996',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('baeb17c0-a159-43b2-9cd3-3288596ff0ce'::uuid,'656','997',3561,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('88352316-b152-44f5-9f56-eb851ad74e1a'::uuid,'656','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0985853-0971-40a6-a456-b4f20501d535'::uuid,'656','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('47c027ea-781c-419d-b4dd-9a42f64960f4'::uuid,'657','995',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c901350b-b939-4ff5-af29-78e5b6a2f7a2'::uuid,'657','996',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('329473e5-cdcc-43ac-9b8e-22e2405968b5'::uuid,'657','997',3561,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3bdc9b9-c57d-4602-bd69-aad5fdbfc6bb'::uuid,'657','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f82cba4-3a53-4c42-91d3-ced56e23d19e'::uuid,'657','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa072242-d7d6-49cc-a7af-2a29561880b6'::uuid,'658','995',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b3a1b97f-1e88-4f1f-9012-c5831d342977'::uuid,'658','996',3675,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a95d5c84-d33c-4162-9123-bf5c9854fc77'::uuid,'658','997',3561,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3523d042-8593-4c83-88e1-2ecb4ff1e9cf'::uuid,'658','998',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcdc672f-2f04-41ab-a7a4-cf7454b7c787'::uuid,'658','999',2854,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ec51d39e-7fe7-4789-b182-b099bbe4e834'::uuid,'660','995',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f3cd05a-72bf-499b-98b3-e88ca41f4830'::uuid,'660','996',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78ea0b30-01d7-4b2c-88f0-049f0e683430'::uuid,'660','997',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e04375f0-7cff-4303-a2a5-68740c611b6c'::uuid,'660','998',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbe9eaca-37be-4776-b75b-127c539ffb5c'::uuid,'660','999',2728,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6f3343c-23eb-4063-b88b-70d37fdfc6c4'::uuid,'661','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efdb5ed7-2b0f-4682-96a1-6cd90cac24de'::uuid,'661','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86c56191-08ec-493e-8b6e-9f8104da647a'::uuid,'661','997',3391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba476972-2006-400a-9f49-87ea025d7676'::uuid,'661','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fc9c033-50ea-4e46-99be-4b86cb2084cf'::uuid,'661','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c9686765-c0c1-40c9-a7a5-ec2db079bf82'::uuid,'662','995',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7673477-ef45-46a8-9841-9cb59d0d5fbe'::uuid,'662','996',3784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e32aec83-694a-4e94-8dcd-5250f3f13077'::uuid,'662','997',3391,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0bc9de2f-f111-41ab-ae7c-5d6c3f161f42'::uuid,'662','998',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c93b75-1f5d-4008-b3b4-a18d0130f477'::uuid,'662','999',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90a79244-e9e0-45b8-a2bf-198849e519b7'::uuid,'664','995',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a6666422-eae5-4139-87c7-4e20ab366494'::uuid,'664','996',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d3fa685-3ce9-43a3-a4e5-80f9428ce0ec'::uuid,'664','997',3364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('75207433-0fa4-452c-af96-492479925e41'::uuid,'664','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('048dc895-c7b2-419c-8cbf-d48ff2c968ce'::uuid,'664','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f7998777-8918-4b08-bf71-665a49988452'::uuid,'665','995',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14e163b2-d8a5-4635-80b9-fbf33f6bd198'::uuid,'665','996',3478,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6922d4e-1ad5-4837-8eea-83700fe52d93'::uuid,'665','997',3364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8726ba13-9f00-45d0-9d14-b35d7dd1a81f'::uuid,'665','998',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eceb2c19-a80e-41b3-a997-4e651f682e09'::uuid,'665','999',2658,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8e23c12-6c9d-4046-8554-82873e39dfba'::uuid,'666','995',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1c7eb54-c458-4e8a-a0c0-f411bc3c1ccb'::uuid,'666','996',3487,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72c0c75e-cee7-40da-a9f2-ecde538ffdea'::uuid,'666','997',3373,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ee5112fb-93db-45c4-88a1-5c614d8c55e2'::uuid,'666','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d30af589-7c26-4175-9274-92dd9d4bd135'::uuid,'666','999',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aa97d875-2448-4856-825d-f66a4742e6d3'::uuid,'667','995',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('90f53d3d-3022-4637-9b94-a2874ba79996'::uuid,'667','996',3877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b11b5850-23aa-4321-96cb-c86086d3b1a0'::uuid,'667','997',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('574d460d-5b90-464d-b25b-e50bca204a5c'::uuid,'667','998',3035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe205168-41f4-491f-8c24-e008b7f51e27'::uuid,'667','999',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fb0bcdb-6473-4516-b08b-c731d27ef72a'::uuid,'668','995',3535,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0245bc1e-f2ee-4dda-b578-f65c86f50c00'::uuid,'668','996',3535,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('959943bd-f2a1-4dc6-8bc6-1a7cc791a906'::uuid,'668','997',3421,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('69073106-748f-48d2-a77f-6c2ee06aff0a'::uuid,'668','998',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d2580fe-de51-4096-ad75-f7da3b487c57'::uuid,'668','999',2715,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f01799ec-62d8-4d9a-bdc1-6ee03cc5ae17'::uuid,'669','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c69d9564-9aee-43f2-9c01-6bf9d24e01ed'::uuid,'669','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d83c828-7da9-4c79-944c-e954cfb8532c'::uuid,'669','997',3420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d4e1308-7c98-4fd2-846b-8c00f52f6f49'::uuid,'669','998',2835,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54fec7aa-27a5-4403-92c0-bd0cf6a7763e'::uuid,'669','999',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9c8e9e2-5fdf-4106-96e9-2094aaa502db'::uuid,'670','995',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3de81394-497e-4c14-b383-d99f118feec9'::uuid,'670','996',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e2c44e9-5a26-4727-8b9c-d6cb9fc21387'::uuid,'670','997',3463,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6c85d235-21c5-4ffd-9f0c-769c3e08804f'::uuid,'670','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f20d444c-27c9-4095-bca6-34064ebd56cb'::uuid,'670','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('991b3a57-5878-4944-9f29-c049983d5b35'::uuid,'671','995',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9ec375b4-6e37-499e-b372-8f1f711bde69'::uuid,'671','996',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53efdd59-8c16-47d4-9013-b52f5264b9b2'::uuid,'671','997',3463,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2200909-ffda-4120-b37a-f291f30d464f'::uuid,'671','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4c5a0f64-6881-4c32-9950-79ecf9bbd9c4'::uuid,'671','999',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79803ca5-0d9c-4673-b39d-6470b22cf2c3'::uuid,'672','995',3554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cf9b16b4-0837-4ea9-80bb-83706a76e454'::uuid,'672','996',3554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5472f44c-1594-43e2-9ce2-d65b80dde7b5'::uuid,'672','997',3440,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1e913d3d-1ac3-4755-83d4-8eab37458956'::uuid,'672','998',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6b341fb-b35e-4487-8731-b686764f622c'::uuid,'672','999',2734,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9710bab0-f869-4414-b99c-37a3bcd3365d'::uuid,'673','995',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6894b7f7-d298-4bec-84f0-79558241ae82'::uuid,'673','996',3901,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18e4b8f3-6e13-4cd1-8740-45ca5831c208'::uuid,'673','997',3508,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c904fa88-3a9b-4f69-a548-5d5cc0589d56'::uuid,'673','998',3059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd77e2d8-251a-46c8-b30a-fa491c67d756'::uuid,'673','999',2837,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c6777bf8-72e5-4af0-9350-6e8e7ba7752a'::uuid,'674','995',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7591d270-f0dc-4e17-af47-fb96778d739d'::uuid,'674','996',3465,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('21f606f3-4300-4140-b7c3-cb5007959f09'::uuid,'674','997',3351,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('06732ddb-6b1d-4901-99b5-a024f741703b'::uuid,'674','998',2903,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f308c92-a5e4-47fd-9dd1-ef63660e3d80'::uuid,'674','999',2645,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a44dae0d-5890-494a-848e-e296f0f6e786'::uuid,'675','995',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bbdf04d-f1d3-4ed3-9ad4-d0ff8c76bc7d'::uuid,'675','996',3757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7763bd23-292d-4fd3-a5b8-a037c7df76b2'::uuid,'675','997',3364,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d74467b7-3894-46ea-9e73-0e832e1dee21'::uuid,'675','998',2915,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aac8cffa-860f-4d1c-8574-32c59d095550'::uuid,'675','999',2693,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a54aa94e-10b0-4f4a-be50-9eda3112ab7d'::uuid,'676','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8ccce4a7-f55a-4324-b18b-3022a0e59bc4'::uuid,'676','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77083d2b-7fbb-4459-8007-5bd8dd3956ac'::uuid,'676','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9a4f213-13f7-48cf-b2ab-c08e4054d34f'::uuid,'676','998',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('85fcb517-4187-4c4f-9826-47920d486013'::uuid,'676','999',2560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('31cae2d9-cfe2-427d-b768-a22cb97cf58b'::uuid,'677','995',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cff5bdaf-3cba-47fc-858e-45201d20ffcd'::uuid,'677','996',3657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce258b4e-f403-40d6-b4e5-0fd1a1ce0210'::uuid,'677','997',3400,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86ab2387-7b3f-4da0-8916-9fbcf85b1bbe'::uuid,'677','998',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e445bae-40e5-4133-ae16-d54ddf7f6925'::uuid,'677','999',2584,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c55d290c-47ae-4b8e-b7e3-01ca08e2a964'::uuid,'678','995',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6dfc1f77-2452-43ac-a630-e69932254853'::uuid,'678','996',3762,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89f659a6-10fe-4393-b285-5977cbcef6f9'::uuid,'678','997',3369,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4515022f-0fe6-4978-ab74-843208dd1ed9'::uuid,'678','998',2911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2770a1c-3619-4b33-b8d6-bac59cce9c66'::uuid,'678','999',2689,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c985c0da-f8ed-412b-84f7-08a6c414969f'::uuid,'679','995',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b2859e7e-8015-4b54-bf22-38274628035d'::uuid,'679','996',3809,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32174ce5-9692-4228-8910-da0e41444feb'::uuid,'679','997',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fdea4026-ff19-4d37-9db1-d3739a37cb99'::uuid,'679','998',2957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c3c500-49f2-4fc9-90b7-9a0f5b71ef45'::uuid,'679','999',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00889718-aa74-43e1-8f63-30b0104dc994'::uuid,'680','995',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e1b895a-09a1-493f-8f98-53668599dfef'::uuid,'680','996',3581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3db1b6d6-149e-4425-80f2-aba96babf25f'::uuid,'680','997',3324,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b4be244d-fc06-47b4-9658-77bfe43b4907'::uuid,'680','998',2740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('653b6142-8bd7-4032-9b7d-18e00ac57554'::uuid,'680','999',2517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d9943eaf-c9e6-4e92-b673-471d6fdd7479'::uuid,'681','995',3327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03026783-06c4-411e-bb7b-e9c41623e36a'::uuid,'681','996',3327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84d2ac60-6f12-48be-ac6e-5667f1d9946b'::uuid,'681','997',3213,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1cde235b-df7e-49ee-b470-db4f74f6c1b5'::uuid,'681','998',2764,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99f243d9-9f03-43c2-a7a9-c083b13fd184'::uuid,'681','999',2541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ebedb53-c7ab-44c1-8cea-2c0befc32200'::uuid,'683','995',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a7204de4-0ca0-449a-b581-a391c3105451'::uuid,'683','996',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67694b0b-b268-404b-8106-c2700d046607'::uuid,'683','997',3256,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('edd43b75-d00c-4e2c-bb1b-98d5012e82fe'::uuid,'683','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d52a522-09ad-4792-b50e-54a07c61e36b'::uuid,'683','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2b0b1b17-8ca6-4fff-9a90-60d68d3f6177'::uuid,'684','995',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f674bb0-61cb-43ff-95f4-7570925ff782'::uuid,'684','996',3370,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db0875fd-a992-4453-b977-b0a598a190d4'::uuid,'684','997',3256,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b9e38f32-7f4e-490a-8e97-10094257edeb'::uuid,'684','998',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d77465f8-b5fd-4459-a113-28e30715fdc7'::uuid,'684','999',2549,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c3ed0d0-5356-4857-b98e-0c02670c77c5'::uuid,'685','995',3354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('50847682-2bc3-486b-917e-d15dac266ca0'::uuid,'685','996',3354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3f79a7f-ac1e-477d-a3dc-c6e48b6c8357'::uuid,'685','997',3240,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8da5081b-c66c-41f2-b086-1a259ae19556'::uuid,'685','998',2792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('96d39bca-14dc-4511-849c-719497a5302d'::uuid,'685','999',2569,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('211d583d-3c7b-48ad-aa43-431d8dd29673'::uuid,'686','995',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683d12f4-6311-4e25-b1be-3be1edd2fe15'::uuid,'686','996',3557,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('833a4241-0cf9-4c42-9510-ca4d3a9e8647'::uuid,'686','997',3164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b0f3bff0-882d-4cfb-b437-afdca47dcb4b'::uuid,'686','998',2716,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d7cb43f-5160-4fa3-9d48-2d1a91a36eda'::uuid,'686','999',2493,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('142a5fda-4211-4f19-8cdb-389d987bd7f8'::uuid,'687','995',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fe50034-780c-4a3e-a20d-1e8a0d835491'::uuid,'687','996',3229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1b2e9c85-4df4-4039-b184-2e719ae3d873'::uuid,'687','997',3115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('747f6e3d-d5c6-4c19-9fe3-fd50b1eda9af'::uuid,'687','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0984fe2e-f20a-42d9-8aaf-780ae97776af'::uuid,'687','999',2408,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ef0b8b7e-6970-42cb-ae65-7eddb0662b05'::uuid,'688','995',3267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('08390057-cfea-4632-b90f-767d1e32e94d'::uuid,'688','996',3267,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('efe7563e-1c33-464d-b7d0-08227f3d7679'::uuid,'688','997',3153,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('50e27e3f-3288-4ebc-9f78-74b4b919d82f'::uuid,'688','998',2705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54055077-ea56-4513-a7e8-0d54a4efe36c'::uuid,'688','999',2482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76c69654-9570-472f-b2db-6ce0db113a41'::uuid,'689','995',3318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf66f3a4-40d9-4f0d-9bcc-ef305adf5eea'::uuid,'689','996',3318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('840fe7b2-4a17-4ac7-84fc-c31121acb79f'::uuid,'689','997',3204,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15dbe8db-43e3-43b2-a2f9-0e14119dfe82'::uuid,'689','998',2756,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f14c3c6-3106-4b8b-ab69-6b6e9738863a'::uuid,'689','999',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('800feff7-d812-41e2-9bee-f2eec7264259'::uuid,'690','995',3307,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12dce0ac-7e40-460d-b093-54ef8bcfee39'::uuid,'690','996',3307,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b00f9f4-c7aa-45d3-a303-c3652b7878fc'::uuid,'690','997',3193,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5171ae0-2ebf-4d92-b709-6dba98faaeb2'::uuid,'690','998',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c614c9df-8258-4f08-b3c3-4ffa47ad7241'::uuid,'690','999',2512,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce42ddb3-cc8f-42a0-b176-1221e2030324'::uuid,'691','995',3224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('691a7786-16db-4bb9-929b-8fb09fdb9a42'::uuid,'691','996',3224,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09b25677-8211-4a80-9de2-f13953653c6c'::uuid,'691','997',3110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6dc55e66-6e1d-47d8-970c-81a497056512'::uuid,'691','998',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6ba8cd4-772b-4204-96b9-8d87cc9a6a50'::uuid,'691','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ce915a9e-088a-4039-b4f4-f03e19bc65b1'::uuid,'692','995',3123,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d778277e-b7bb-40eb-8e5a-063e547f0cca'::uuid,'692','996',3123,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0732b6ab-9142-44cc-ad00-ae5603e58d24'::uuid,'692','997',3009,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43da48ed-7c3c-415b-992b-532c860ac01d'::uuid,'692','998',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f95eb2eb-aca2-4c8a-acfc-66d029e03dcf'::uuid,'692','999',2303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c535ba5e-bc9f-48a7-af2b-f8e926fb70da'::uuid,'693','995',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65693017-03d2-4bcf-9013-6ea9b5206581'::uuid,'693','996',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1d5f862a-c505-4a27-b458-36478fab9c13'::uuid,'693','997',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1ebd89b-c187-42c4-9ab3-96fddd8b0a2d'::uuid,'693','998',2546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e762fadf-2d9f-44f6-8f5c-c94d2219993f'::uuid,'693','999',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('88193497-2765-4f54-9fa1-a74912ccb357'::uuid,'700','995',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66015e3b-a8ef-4760-9f88-8dfb47d381b5'::uuid,'700','996',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('de4f3a72-8b67-4937-bbe6-861972477670'::uuid,'700','997',4197,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a0a1bc67-8aa5-404e-afa0-294dde97d513'::uuid,'700','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fa34098-93a4-45f8-abb7-bc35864e8904'::uuid,'700','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89b7db5f-3f4a-42e7-82db-26432fd19409'::uuid,'701','995',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6dbf171-edbd-495e-b569-115bd005da33'::uuid,'701','996',4311,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5e59bb2a-ece3-4cf6-8650-a98792b9e0a3'::uuid,'701','997',4197,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6da21701-37fd-47a4-9e6f-15dd0a64f906'::uuid,'701','998',3748,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54edea52-fbb9-4edd-8f3f-9720e8e6cde6'::uuid,'701','999',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4a1103f3-4b0c-4448-a0c4-6e45820bdc17'::uuid,'703','995',4313,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95ea0937-b3f9-4b9f-a2af-aec8523de8b3'::uuid,'703','996',4313,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ef6a583-45e0-43d5-bc0a-f8b2e7f26c4e'::uuid,'703','997',4199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bafe41c5-e4f9-410e-9602-0c67544d6107'::uuid,'703','998',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45085ad8-f866-490a-8627-1e135a72542c'::uuid,'703','999',3492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5d7a271d-f991-4fba-b382-aec7176d297d'::uuid,'704','995',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd4029af-193e-4269-bf23-88164ba29cfa'::uuid,'704','996',4537,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('168661e6-d64b-41bf-9fda-5c0925d9553c'::uuid,'704','997',4144,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29b0cfde-5915-4280-8112-1b40726ef57a'::uuid,'704','998',3695,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5730f499-eb35-43cc-b037-b10147ad2b07'::uuid,'704','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2fbb97cd-73bf-453c-b993-140b8ab0453b'::uuid,'705','995',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cbcd53e5-3466-4c57-a1c5-659f2080ab2b'::uuid,'705','996',4510,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e4a536f-8cc4-49ce-a2d3-76c67f062dda'::uuid,'705','997',4117,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('407d8bbd-5e81-4bf3-ba5e-dc404ce9de5b'::uuid,'705','998',3668,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c21a1d-cf80-4702-8bbc-e1cd57732a3e'::uuid,'705','999',3446,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ad66f655-19cb-4b78-b68c-9bd8340fad2d'::uuid,'706','995',4229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdd5a728-3c1f-47bb-992b-c8e8ba202e98'::uuid,'706','996',4229,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7cef2579-17e9-43ca-a38b-153e02586a37'::uuid,'706','997',4115,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12755424-33e4-45ec-b87a-88f6536bdf9f'::uuid,'706','998',3667,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f2f7390-6a22-4715-8eac-add689cfd69c'::uuid,'706','999',3409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a22cbe7e-acbe-47db-92b3-d5c8a973afb6'::uuid,'707','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72a2f0da-b12f-47d2-9b41-cda82fce1af0'::uuid,'707','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a6afc28-e046-4ebd-b409-62edd673d160'::uuid,'707','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94fad128-1371-4472-8be3-f53972840835'::uuid,'707','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63250df3-dc03-4a4b-a460-ad6dd4cbd390'::uuid,'707','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21b3b2d7-0597-48d4-8d58-a916882c2213'::uuid,'708','995',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('82f266e3-0cb4-4ec4-831b-1eb97cf41655'::uuid,'708','996',4526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3958497-87aa-4172-b14a-26952fa3c4ca'::uuid,'708','997',4268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45969e6c-b521-4893-b383-e8d8298d3812'::uuid,'708','998',3684,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d83b2d9e-c470-4684-a9fa-dad81ad99148'::uuid,'708','999',3461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dadce986-ac09-470c-b182-0e622cb8e354'::uuid,'710','995',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('65a86284-4c02-4e5a-b2b6-d0e51e928d79'::uuid,'710','996',4106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e45d2ffa-6fac-4f1e-968f-d4a81fb4d6a7'::uuid,'710','997',3992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9507806-7ef7-4894-a704-22123578d681'::uuid,'710','998',3543,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bbb7570-2e4b-4776-8c71-abf28c0a8cbb'::uuid,'710','999',3285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23585968-8f3e-4815-8d66-6c15b32a6751'::uuid,'711','995',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0b2edfbc-f757-4987-9437-aa5d72681d94'::uuid,'711','996',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6140a42f-8728-488b-af93-91af2088ebff'::uuid,'711','997',3928,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a11d5b31-f9c4-4137-9309-091077a71abe'::uuid,'711','998',3480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be4d2511-5fb6-4865-b3f9-69dc19b632d2'::uuid,'711','999',3222,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b2e31498-c554-4f1f-aa42-387815e24730'::uuid,'712','995',4076,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70e4e2ba-c2af-4a3d-a18e-64da8a1d37b6'::uuid,'712','996',4076,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7a010cd3-578f-47ba-a9dd-f390206d1cf0'::uuid,'712','997',3962,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c6425321-8c65-45ce-a8a7-a98d614dcc60'::uuid,'712','998',3513,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c8e21a26-976a-4c66-bf43-be183b8cf48d'::uuid,'712','999',3255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61072550-1880-4e79-b38d-c69dca93faf4'::uuid,'713','995',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('537ddb94-8eaa-45db-9386-fb1be935956b'::uuid,'713','996',4441,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b6ef079-bf15-40e8-8e9b-1b0c668d947d'::uuid,'713','997',4048,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('59cea103-002f-4870-b297-389e12d72e7d'::uuid,'713','998',3599,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43b722e1-c70b-4dfb-baeb-ca404abec37f'::uuid,'713','999',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0acdc728-e201-4674-82a2-070dcedbacde'::uuid,'714','995',4120,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90e089b6-227f-4c28-8195-c614a5f643d8'::uuid,'714','996',4120,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5a28fdd-e077-4382-8fc9-92e428ebb990'::uuid,'714','997',4006,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7542f59-b9a6-47d1-9b4b-5f4321cd6550'::uuid,'714','998',3558,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e8b4b8b-40b8-40f6-a478-4da958c71fb9'::uuid,'714','999',3335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89ad56ce-f999-4221-b74a-cf27eee2146d'::uuid,'716','995',3981,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('08df80f9-58a3-4243-94ff-2297d1e2ae89'::uuid,'716','996',3981,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0f3bd75d-eaf2-4df9-9494-f483befe7a75'::uuid,'716','997',3867,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bff1b2c1-2e59-446a-8258-0bf1e74aa2d5'::uuid,'716','998',3419,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68c25cea-8787-4e09-a214-23000d196368'::uuid,'716','999',3196,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c1d44784-c646-4dea-a1ac-b0a0a4ed6207'::uuid,'717','995',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0281bf2a-a9f7-43f5-b81b-d2bb2515c654'::uuid,'717','996',4265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('93deaca2-01b3-4cec-91e7-97bc640847e8'::uuid,'717','997',4008,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ef106d0-a0d4-4223-8433-e893677bd1d7'::uuid,'717','998',3424,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('11bdd44a-7948-4dc3-abdb-a8668b95e6e3'::uuid,'717','999',3201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2215da4d-d69e-4b04-9247-0678b61d8e52'::uuid,'718','995',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dcd33adb-7063-488c-9d94-4ad4322ec071'::uuid,'718','996',4248,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a85c84bb-15b9-45e9-911e-48a6f01eee9b'::uuid,'718','997',3855,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('66a0fc1a-581d-4baf-809e-787dfbaa5eb8'::uuid,'718','998',3407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e674b17-887f-489a-a84f-a25e707ac6cf'::uuid,'718','999',3184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e9e24086-1e6a-49c0-916c-10ebf010b02f'::uuid,'719','995',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d3b84ed9-f79e-423e-a69d-909e1a002355'::uuid,'719','996',4184,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('382cab21-de98-4795-a831-2e6ae319c478'::uuid,'719','997',3791,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('146e3a1e-ccff-4116-805a-9a6fb83880b1'::uuid,'719','998',3342,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07033998-7b75-4699-ac0d-b32c87bf9513'::uuid,'719','999',3120,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e0ee17f8-0814-4a75-b19d-6378b267a0a8'::uuid,'720','995',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a0249104-15ab-4df8-8f45-8f19cc989a29'::uuid,'720','996',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ad7dc8b4-4a20-464f-9fb2-3a8eae4cfd6f'::uuid,'720','997',3771,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('05fbc079-d809-4618-8346-537e1e2b9350'::uuid,'720','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52a8c415-4e3c-4626-b663-740d5b4d3508'::uuid,'720','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c8e26f42-3910-4bc5-84ae-f861422bf302'::uuid,'721','995',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ba24fe89-aa60-4f10-aa31-94b2ceccc3ae'::uuid,'721','996',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('635c1937-84cb-4519-9b09-d914a5973737'::uuid,'721','997',3771,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14f429af-e365-400e-b46b-91cb72bac6cb'::uuid,'721','998',3322,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91e2484d-f474-47e9-b3e0-f95aab65aaf4'::uuid,'721','999',3064,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6df207cd-d655-41a5-ac77-ec703432122e'::uuid,'722','995',3890,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4b46b77c-b36a-4294-862a-793d4a3d7096'::uuid,'722','996',3890,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3502ed0d-fc14-469f-9a81-62926bc2b4aa'::uuid,'722','997',3776,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d4fd1c83-9c8f-44fd-8636-0b260a1c4589'::uuid,'722','998',3327,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3458017e-16f2-4132-b8ec-1acb88a66627'::uuid,'722','999',3105,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ac1f5eeb-11a9-45d2-9706-4089e56cab85'::uuid,'723','995',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53de671a-8ef3-42d9-91f3-5aaf39f61439'::uuid,'723','996',4228,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('575bb6f7-9c59-4944-80e9-c9c7b17a8b43'::uuid,'723','997',3835,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('243f3007-4b11-4ad9-9013-e846445d47ce'::uuid,'723','998',3386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba0e7443-502f-4690-b407-b12043b717f7'::uuid,'723','999',3164,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36fa9d09-44a2-4015-8e6d-80adbf34bb67'::uuid,'724','995',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb122669-b374-4294-a643-94400598d2dd'::uuid,'724','996',4145,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61b82b0c-9f6b-45c2-a1c1-0a2be1e3af21'::uuid,'724','997',3751,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e426c54-b960-45c6-a7f4-80770e503b05'::uuid,'724','998',3303,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be86232a-a3e3-4d3a-86ca-13bf295566ad'::uuid,'724','999',3080,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9781138f-ab7b-4364-b604-2a18aa143d52'::uuid,'725','995',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e813686-c4b6-4d5f-a9d5-a598fa15992d'::uuid,'725','996',4107,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('228fedd3-c0b1-4bb8-b3b6-3dadf308c60f'::uuid,'725','997',3850,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ac5639e-d30e-4953-97f1-b56c45de43e8'::uuid,'725','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e058c9cd-aafe-4cd8-b244-fa58c3c6ee95'::uuid,'725','999',3043,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56cd9e03-efe3-4941-884a-74b60f18b3a3'::uuid,'726','995',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfc4f1f3-550a-4e87-ad9f-33f851933f04'::uuid,'726','996',4049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7089f8f5-7878-4cbc-aa5b-ed390e41bf7e'::uuid,'726','997',3656,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfa16fc2-d4e8-427d-8a87-9b71310368ad'::uuid,'726','998',3207,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3e75e1f-f88f-42a8-8836-6b1ebf78a1a4'::uuid,'726','999',2985,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c1a5af9c-c6f2-4348-989e-6ab860b4ee64'::uuid,'727','995',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5124fe80-e839-4020-b853-16435a3f91bb'::uuid,'727','996',4016,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3c927ff-73ff-425a-abba-bfcebf06edd1'::uuid,'727','997',3623,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3b51211-85f6-4aeb-b74d-4a0a0e7f24bb'::uuid,'727','998',3175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2a8a643-e0f1-4b78-b23f-9b778867332e'::uuid,'727','999',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77e4dbda-b42b-4ebd-bd4d-7e51cd1c7c53'::uuid,'728','995',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9ae35d45-f18b-4f1f-b11e-20c3a4ca4449'::uuid,'728','996',4093,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e02c1857-5449-482d-9bf7-5be6d06b9257'::uuid,'728','997',3836,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4cac20f0-d294-4f10-bb3f-7390ac5e966d'::uuid,'728','998',3251,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54095aad-6822-411c-8b8a-22c6de7d8cb3'::uuid,'728','999',3029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3c1b60cc-5f6f-46c9-820b-9fa2836a300b'::uuid,'729','995',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df8707b0-4c71-41ac-a98e-7c4f104ab588'::uuid,'729','996',4091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec19f8fa-7882-478e-b9c5-672bbaf56a28'::uuid,'729','997',3833,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('79db6a0b-f041-4fb4-9c1b-17a7bb645df8'::uuid,'729','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('51f17190-4f04-4073-b732-b5fd12400162'::uuid,'729','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a2402b5-b856-4d37-b567-5cac2e91b73c'::uuid,'730','995',3728,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2855985d-8f23-446a-ac70-08bfefe1274c'::uuid,'730','996',3728,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00457364-f858-4261-ba67-05b2853ee242'::uuid,'730','997',3614,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84042ce4-9935-4171-b81a-a466995ba8d4'::uuid,'730','998',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3816b9e-ea7c-4129-b2e2-cadb591ea9ea'::uuid,'730','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('bdf292a9-8201-41fe-ad50-38f416bdcdf4'::uuid,'731','995',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2c9083b-e40e-4759-b16a-050999ed7c9d'::uuid,'731','996',3712,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1b72b988-451c-43f9-bc8c-c1e55524e25e'::uuid,'731','997',3598,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10706464-443b-44c0-95ca-9397e36090ce'::uuid,'731','998',3149,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9eb8623-3eda-47b9-a495-2b5c7fa33a0b'::uuid,'731','999',2927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6ea9b02-f88c-49e2-9a04-cc0b3fc07baf'::uuid,'733','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('370d3a1a-3c96-44c0-8b6b-b36f191a5621'::uuid,'733','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d7e4f21f-4db0-4c6a-95f9-ccc0d7e034c7'::uuid,'733','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56048c62-b4d9-42e6-8dc4-47218b1bfad7'::uuid,'733','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('213e8a6a-a2ae-4391-9c2e-ec0a123f5281'::uuid,'733','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('051c5a45-6e30-45e9-9fb6-e087374eeb2f'::uuid,'734','995',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a71ccff1-13d5-439f-94f0-b89749805a78'::uuid,'734','996',4088,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33dd5b04-90d3-4083-b8ad-cab962cff067'::uuid,'734','997',3830,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a558a4a3-ac8c-4039-a2d4-7fda24039114'::uuid,'734','998',3246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('618ac59a-d227-484c-8313-82eb93b01868'::uuid,'734','999',3023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdaa2d61-2cf2-4e14-abb5-248e1e13f99e'::uuid,'735','995',3740,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41cefa13-300d-41e1-8bf7-395f4681a851'::uuid,'735','996',3740,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e16c901c-58fd-4d59-b755-8db1f94580ea'::uuid,'735','997',3626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9bff27a1-abf4-4f7e-805b-2989b8a33755'::uuid,'735','998',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4aae6242-dfb1-49f1-bd1a-18ec5348c981'::uuid,'735','999',2920,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b13aa411-6f1b-46ce-a930-917ad224dc9c'::uuid,'736','995',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92f1f99f-6528-44f9-a043-57617c467b07'::uuid,'736','996',3937,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd363452-636d-45cd-ba47-6231109a7bca'::uuid,'736','997',3544,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d6dcd39a-1abd-47cd-adf2-e7343b3f4daf'::uuid,'736','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b179f06-47b3-4bbf-b418-e7eab14bc7cd'::uuid,'736','999',2873,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f5c69656-6d1d-4d88-a0bf-b0b671d000d6'::uuid,'737','995',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afe0cb0e-cd7b-4dd6-82ef-9d3057c2f086'::uuid,'737','996',3938,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1cec8e65-b10b-4cf6-9641-56166529cf66'::uuid,'737','997',3545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0eeebcfd-9f41-477a-9510-e3d2bafc2e85'::uuid,'737','998',3096,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a24b5cd4-4243-4460-a471-01879b341b52'::uuid,'737','999',2874,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('adab8506-a23b-4acf-b8fd-f91359fdb755'::uuid,'738','995',3599,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e127f93-6a88-47ee-a271-814505ac61bc'::uuid,'738','996',3599,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5909bd5d-b5f3-4bcc-81b2-49da7eebc8ca'::uuid,'738','997',3485,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bbe6e422-9b1e-4c7f-82a7-f4774d5c6894'::uuid,'738','998',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4428f34-50e8-4ee4-800c-97ef26543bcc'::uuid,'738','999',2778,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0267434e-a055-4f66-b47c-6fc6c902fad5'::uuid,'739','995',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56b9ad03-7650-42f2-8c29-4f411a6a1066'::uuid,'739','996',3840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e1a9dcb-a58f-482f-b449-66680a3df527'::uuid,'739','997',3447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1a760300-54b9-4e43-8b86-b80f676c5402'::uuid,'739','998',2988,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16c0cb97-b8c0-46b9-9a99-d71dd9a02663'::uuid,'739','999',2765,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c6a81126-d91d-453c-b0f9-44b34f4a12cf'::uuid,'740','995',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1623e39f-52ac-45c3-9ce5-fbc52d05b8bc'::uuid,'740','996',3969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c7035e5-0cd3-4223-ab30-7989df2a5b3f'::uuid,'740','997',3576,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a539d535-1e6c-4cb1-9659-752795e0b674'::uuid,'740','998',3127,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('04ef9894-f0c9-455f-85de-f9bc33298bde'::uuid,'740','999',2905,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('31ac01dd-e2a5-431f-894a-f0b953a65cd0'::uuid,'741','995',3708,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8a8acdf-1115-468a-b80a-8da6d89b9177'::uuid,'741','996',3708,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0342f83d-6bd2-4c5e-ab11-98a35cde15ef'::uuid,'741','997',3594,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f3433ed7-a0e4-4527-b619-6e1571ceeccb'::uuid,'741','998',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e8cc16d8-0b67-4947-818b-5b38e5983e41'::uuid,'741','999',2887,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9cf2e445-f872-424b-8d55-dd557699fed4'::uuid,'743','995',3691,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7713cc01-1270-4e22-abc2-80f8ce8324af'::uuid,'743','996',3691,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f9162331-fa06-4af3-b05a-f5343ccb48d1'::uuid,'743','997',3577,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4d9e44ca-06de-42ab-918b-6994d982b5e3'::uuid,'743','998',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aaa4b2e6-bce7-4733-8fb4-1108bf2dec3b'::uuid,'743','999',2870,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fb132e5b-cce0-4cfa-accb-223180037e18'::uuid,'744','995',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97c463ee-46e9-4934-aea7-5629422b93da'::uuid,'744','996',3754,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2ece1f18-cd31-4fa6-b4ba-a47080ad5a03'::uuid,'744','997',3640,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c16ea93a-b2e4-473c-af26-980e504108bf'::uuid,'744','998',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c71d0081-6142-42fa-b71f-d99f33ec3510'::uuid,'744','999',2969,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('55f47dec-8613-44b3-8cf1-98bbd0be5903'::uuid,'745','995',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86eb7418-abaa-46e9-9e95-75eb88329b0c'::uuid,'745','996',4150,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45693e64-fbf2-423f-88aa-a4df8c6cbfa2'::uuid,'745','997',3893,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ff7fbdb-6f17-4b37-b684-b5ee1f3b5068'::uuid,'745','998',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e2375acc-4bbb-4372-a4c2-37dcb3695af1'::uuid,'745','999',3086,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f0543f4-ce57-453e-b273-fe190a503435'::uuid,'746','995',3634,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dad3b460-dbf2-445e-84ba-cc67dd172780'::uuid,'746','996',3634,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9af42d53-6899-4d90-90d7-30cb8308cfdd'::uuid,'746','997',3520,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9561186e-2378-47b3-94c5-900a2ef3330a'::uuid,'746','998',3071,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bae5b9e-d5ed-4c86-9092-a89c4ced986f'::uuid,'746','999',2814,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3cd1363f-49ac-4105-bde3-f7f0f13e71a5'::uuid,'747','995',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7300e595-eb53-4d39-8453-13d18742eb03'::uuid,'747','996',4155,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3fa5b6e1-3b62-437c-a2b5-a4fc051443f5'::uuid,'747','997',3761,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('939e7de0-b646-4da6-a88d-46e247befaad'::uuid,'747','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1896cc1-4d51-47b3-a84c-a37d616c0cf0'::uuid,'747','999',3090,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9159533c-c947-453b-ac23-5343be6ce9f7'::uuid,'748','995',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c16c88f1-0893-4b0a-912f-0ecd522d6f36'::uuid,'748','996',3753,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('32178e19-27e7-4888-b761-987bd960dbdd'::uuid,'748','997',3639,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff308d0d-79fb-4006-a23b-ccfd66a071c7'::uuid,'748','998',3191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13712051-7a49-4b04-aa95-9681159528aa'::uuid,'748','999',2933,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('12292275-df8c-468b-8528-099217ea5878'::uuid,'749','995',3822,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2d5436c9-a95f-4086-8ffc-7978376a81e1'::uuid,'749','996',3822,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea15f45a-aba8-4c68-a6dd-5d89f1a67874'::uuid,'749','997',3708,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('910d8d5a-223c-44ca-b1bb-53809836c070'::uuid,'749','998',3260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1422f61-b2f3-4ed8-af2a-3a23d462b329'::uuid,'749','999',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa743ba0-cd8e-4f54-8e78-2df1434d938d'::uuid,'750','995',3907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6898092-a0d5-45fc-9cea-ebbebe5255b7'::uuid,'750','996',3907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('392f3502-4791-40b0-9750-68b0d4c61833'::uuid,'750','997',3793,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8f60a0a2-755b-4647-817b-1840092fbd39'::uuid,'750','998',3345,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3f07e3b-550c-4566-a8b0-1af8ddb6351b'::uuid,'750','999',3122,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('544eb236-ddd5-4827-bf10-fe5ba007c520'::uuid,'751','995',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d25486e-7862-4a3a-887a-79159706fd94'::uuid,'751','996',4229,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c03654bd-50e0-4c37-ab36-69b07a810825'::uuid,'751','997',3836,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e722204e-1529-4527-9d01-720d8879959e'::uuid,'751','998',3387,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c423c86-f778-457f-bcb1-00f2c2e25e6e'::uuid,'751','999',3165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('efcf4216-aee5-4ebd-a01c-9859876d98fe'::uuid,'752','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('200fbb87-ab82-4aba-a691-da7d6f64a1b7'::uuid,'752','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91fb2392-7674-4218-ae2c-0727a721e3e3'::uuid,'752','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('974f049c-2b4a-4bb7-8004-559354dca7bb'::uuid,'752','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('968cbf43-7ba9-406b-91db-aabe37e47479'::uuid,'752','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f401d56d-1a89-4a21-9535-2dee5fb7365c'::uuid,'753','995',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da0a54e2-b141-4691-86f7-fc9518846103'::uuid,'753','996',4194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd7be9c3-b28a-423a-96f1-fa357cd9b6cd'::uuid,'753','997',3801,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('01326b0b-b9ee-41ea-a8ad-7d92be2d241a'::uuid,'753','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16d27e40-e4f5-4e26-a1d0-b01c448f734d'::uuid,'753','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4e7a1c1-fbc2-471c-85a4-8e8cbbf4a40f'::uuid,'754','995',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fc9c01e4-bae9-4b34-832c-b008f0ddb165'::uuid,'754','996',4202,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f573ed76-1191-4ac6-bc39-2497b4428ef8'::uuid,'754','997',3945,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fbd7d290-4ede-4185-8a54-4af89595705d'::uuid,'754','998',3360,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b804d08e-654a-4de2-b960-16e4f7b02df2'::uuid,'754','999',3138,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cad19077-555a-47fb-a346-2b87db6bf457'::uuid,'755','995',3977,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f6773fe-a02c-47f1-9458-b2d9434cb29c'::uuid,'755','996',3977,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('16e8c020-a88b-4a91-a8bb-1d3fc3b72bbd'::uuid,'755','997',3863,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41cd7635-bef7-46db-a960-504a8a8dde6c'::uuid,'755','998',3415,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a500329-b353-4c1f-a140-fc6cc32af0f0'::uuid,'755','999',3192,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b48e999b-48ba-4bba-879e-6299e7f2fb79'::uuid,'756','995',4005,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1837246e-ea93-4779-95b0-7640562a4616'::uuid,'756','996',4005,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('21fb32d4-e52d-4818-aeb2-b8fb1b096169'::uuid,'756','997',3891,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4ddfffe4-d7e4-440b-acd5-2a3cf02fce07'::uuid,'756','998',3442,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d094cef2-640a-4727-a7ad-aac7cbe9dcf3'::uuid,'756','999',3220,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b7211207-a742-4f70-ac16-7d6c5a9b1621'::uuid,'757','995',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c66c398-686e-453e-bcf9-fe8e31b2f3ba'::uuid,'757','996',4002,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8963e3d3-e1b4-44b3-abb1-a3e10f907095'::uuid,'757','997',3888,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e76ea27-315d-4979-8d82-3f36148de84f'::uuid,'757','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d9966b6-db5c-484c-9621-c2a2a4ef7ac9'::uuid,'757','999',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0dd1403a-2f88-411c-bdb4-89130fcac152'::uuid,'758','995',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9468d760-2145-4a66-8999-8b03ba6be44d'::uuid,'758','996',4337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f66f631b-34e9-42be-a6ea-1ed2b82fbaf3'::uuid,'758','997',3944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3630b5f6-6148-4cef-9ff9-0f700f16383a'::uuid,'758','998',3496,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('759abcf2-36ab-4ee1-bc24-d930b5702ba8'::uuid,'758','999',3273,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('baeab8c9-3f4d-46a8-996e-3e54baef0630'::uuid,'759','995',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('083ed095-b728-4a58-ae9a-a678fbda546d'::uuid,'759','996',4089,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('50dfd293-9fcc-48ff-9b90-28fcfc8873b3'::uuid,'759','997',3975,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f2f33ce9-a75c-4f52-8d6a-b0eacdc45328'::uuid,'759','998',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('160d0834-8138-4083-a5c4-b6fac0ae8119'::uuid,'759','999',3268,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95b3bbbf-8b85-4fcb-96f6-e4518eb955b5'::uuid,'760','995',3923,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2883f10-2188-4c02-8e71-ebcdfba4ba31'::uuid,'760','996',3923,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a82d53f8-54f1-458d-9ff3-e3d5eca3f7e5'::uuid,'760','997',3809,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c24190f-7d6f-44d2-9262-400174e67937'::uuid,'760','998',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('13c4971a-6212-4877-9a9c-899429bab619'::uuid,'760','999',3102,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('93af5b39-b969-407c-9a7e-713f676e5d48'::uuid,'761','995',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('292fc7d8-1af8-483d-9ed5-48fd47e3d52b'::uuid,'761','996',4189,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63c07925-ac6f-48e1-a2e1-705c9a51856d'::uuid,'761','997',3796,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7542cfb3-5c45-4154-b5b6-d02d2ee541af'::uuid,'761','998',3348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('922e2988-0561-4205-bee6-28152a136897'::uuid,'761','999',3125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('683f5a05-79e5-44a6-9c9e-7037d43bcf12'::uuid,'762','995',3862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fb2d5174-537a-478f-b368-416637da6c4c'::uuid,'762','996',3862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd3e8167-cf52-4387-a876-ed2f3529bd30'::uuid,'762','997',3748,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4a3ce0a6-b2e2-4d58-8347-652a89e5bb84'::uuid,'762','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc17424f-3ebb-46f7-a522-59f18d396b8b'::uuid,'762','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b310d30d-8cf6-434c-8b04-2fa49cff6520'::uuid,'763','995',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f6700c72-9fa7-4d50-b7db-ce140f9dd247'::uuid,'763','996',4106,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3b100324-4de2-4fe6-933e-aa4ca15d5065'::uuid,'763','997',3849,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('764d91e2-8643-4b35-bd48-76cf5f110015'::uuid,'763','998',3265,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5063c60e-e508-4590-8b68-8acadeea2f56'::uuid,'763','999',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20af318e-e28d-4b8a-a40c-ab337c0556c6'::uuid,'764','995',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be0347b3-58d5-485f-a42d-07dc58d6eea9'::uuid,'764','996',4185,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('95a833af-916d-4c08-bc5a-506e4144c0d5'::uuid,'764','997',3792,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d6ad669a-7fc8-42a5-b041-b72accea5fbd'::uuid,'764','998',3343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be16d5da-dbb3-428a-b592-64621097a869'::uuid,'764','999',3121,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2346e1b7-a5f0-4b32-acac-a1e1b2f7bed0'::uuid,'765','995',4032,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('886e5b36-300f-4c31-baaf-5418689c3f61'::uuid,'765','996',4032,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09600bba-6554-49ee-9849-21476bf81213'::uuid,'765','997',3918,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('182b6a8f-0bb7-4fce-b738-00b45f0132fd'::uuid,'765','998',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da448aa9-1cd1-4969-b763-56e57c680b12'::uuid,'765','999',3211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ff44939-63e6-4b87-953b-de47998738a7'::uuid,'766','995',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cba1f7b0-38a9-4c06-8928-e7b714314049'::uuid,'766','996',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8d2ba4c7-1660-4149-87be-073bfb5a82ef'::uuid,'766','997',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('36eafc32-cd17-467d-802b-8b680dbe32fd'::uuid,'766','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('799f50af-a252-440f-8c97-9b7c7b06a660'::uuid,'766','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d51feaf0-8672-46ec-a24a-1726b20c2d4e'::uuid,'767','995',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('78db9083-a0c4-406b-9e5b-487b57f83124'::uuid,'767','996',3999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('74101bc6-4a9c-4bf1-84a6-aca2f131c77f'::uuid,'767','997',3885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c9231b56-277a-43f1-9073-0eab5e5f78e0'::uuid,'767','998',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fcad0a9-a9c2-4199-8140-cf5b01cd3f72'::uuid,'767','999',3179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1fe2c8de-4a52-4329-8d85-7d3152b56983'::uuid,'768','995',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c78881f-dad8-4a72-8c02-138cb2533cb1'::uuid,'768','996',4269,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d31f9d-fce3-4b85-9481-fe37e5349664'::uuid,'768','997',4012,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58b21591-705f-47ea-8114-c8a9e6dd763c'::uuid,'768','998',3417,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('81cba574-5b67-4223-9705-356e38375f2c'::uuid,'768','999',3194,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0407a9fd-b2b0-48f1-942a-444b3cf28ca6'::uuid,'769','995',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6098941b-0e60-4448-a068-8eb70c904b7d'::uuid,'769','996',4214,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('396a42c5-0350-4c88-af78-b339c869027f'::uuid,'769','997',3956,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b569e27-a54a-471b-8459-86e6b6ec010d'::uuid,'769','998',3353,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('492cb192-389b-4bc6-9d42-f9720577323f'::uuid,'769','999',3130,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df57c217-cf89-4c31-8af9-b959c1c4f10e'::uuid,'770','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2835c53c-698f-4ca4-b5eb-6b3e55e9a2b4'::uuid,'770','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('021050cd-a3ef-4ed0-9deb-c580d7f3ab67'::uuid,'770','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6a64f1d2-7090-48b4-80af-684fce10e22c'::uuid,'770','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('793c0303-3195-4c7d-a575-19f8bcf95b4b'::uuid,'770','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('de42bcc0-cf2e-43ae-adc2-fccc34944435'::uuid,'771','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f305afb3-7f70-44ad-97f5-b51cda70b889'::uuid,'771','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9fe75b75-2ebf-487f-bc6c-eb9c187c02a9'::uuid,'771','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('739bb0be-8fe4-447d-b89f-4e175889ef7a'::uuid,'771','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17493edc-56b4-4016-a556-5af0bd715b8e'::uuid,'771','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba8acaf3-9c7f-4487-8fc4-57f235bf111f'::uuid,'772','995',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('496d56a6-e10f-45cc-acf7-65960f7a5fad'::uuid,'772','996',4436,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbd6ba53-19a3-44f4-81c6-2f5873613dea'::uuid,'772','997',4043,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72a05ea9-6d8c-4595-9832-03e3d8379b81'::uuid,'772','998',3595,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a02ed40-127b-4d05-8ac8-961a0d7e5901'::uuid,'772','999',3372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('03d0169b-883d-44ef-907f-f542e97eb7e9'::uuid,'773','995',4134,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('62c979aa-e455-46bc-9ce7-4947e6b8891d'::uuid,'773','996',4134,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('460e2224-6e20-45e3-bb72-46e9aae56139'::uuid,'773','997',4020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8b772421-a8be-4e31-bdd3-e527f9f9ca16'::uuid,'773','998',3571,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5791c1e-11bd-40f0-b2f8-0464272a1fe0'::uuid,'773','999',3314,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('970cc711-43b5-4606-8330-5d742811afea'::uuid,'774','995',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27083004-d71f-4e75-9765-7667533c30cd'::uuid,'774','996',4453,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8613d847-c804-48c3-a733-263db5312856'::uuid,'774','997',4059,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('848a6ec0-5e4e-4664-8517-0fc3b3029261'::uuid,'774','998',3611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df2c9835-9220-47f8-ac23-1d91efbce01c'::uuid,'774','999',3388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2eb2fba0-4481-4746-aa79-df17a9606fa4'::uuid,'775','995',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f96185-04f9-41ce-886d-64964710af6f'::uuid,'775','996',4462,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a285a62e-d874-4862-ab4f-93c4580db3b5'::uuid,'775','997',4205,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('058a3af7-3745-4407-a58b-71ddf684800d'::uuid,'775','998',3620,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1cb01c5-f15f-480e-8b51-c3441e6fbedd'::uuid,'775','999',3398,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a088f7e0-e729-442b-871b-fbcaf2d4d7dd'::uuid,'776','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('98ae01ad-c47a-42fe-847c-7762f8b8bb77'::uuid,'776','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c46387f1-57cc-441c-a827-552440f62719'::uuid,'776','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('843315e4-115d-42da-b257-375c4f5d4c14'::uuid,'776','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54b546b8-efaf-4199-8b2d-c90cedd15b1a'::uuid,'776','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02eca49c-4c68-437c-b23d-5d3974769c9e'::uuid,'777','995',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33d44b9f-1829-40df-9b72-194f6143bbe7'::uuid,'777','996',4468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6d35d116-2b74-4a78-8096-4bb16b8fd5bd'::uuid,'777','997',4211,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73886e26-3505-4833-aaba-e005efa1cf68'::uuid,'777','998',3626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cf86ab3-5ddd-47c7-93c8-a4812cb1d65c'::uuid,'777','999',3404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c612cf97-c61e-40e8-be41-90884141c31f'::uuid,'778','995',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ffbcead-bee9-4838-b385-4fca44c78d44'::uuid,'778','996',4356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('973ee4ce-bb55-4a19-aaa7-fe612c0babd6'::uuid,'778','997',4099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('54d568c2-3475-44b8-b588-c518410ea58d'::uuid,'778','998',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef8190e9-66d3-41d3-be57-c5a6fab8c234'::uuid,'778','999',3292,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6168b880-eaf5-4d8e-93e1-7e73957446cb'::uuid,'779','995',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4388a0e4-a625-4338-bc6e-d6c0fcb034d7'::uuid,'779','996',4211,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e5efc3b-adb6-4df4-873b-9782007b30df'::uuid,'779','997',4097,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a5cec0b7-47bb-4e63-90e9-7ee62ef43342'::uuid,'779','998',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4ef7f537-962d-48f6-af3c-d87aab7d1c42'::uuid,'779','999',3391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc7f6064-9ab7-491f-951f-92b95308e181'::uuid,'780','995',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e93eb9d0-5b26-4398-9994-d838286e60fe'::uuid,'780','996',4439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b0c651ff-c292-4caa-93ae-46e531ed8af6'::uuid,'780','997',4046,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c8d59d6-c64a-42b3-aaa8-ef4e7acbd76a'::uuid,'780','998',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58deb89b-6ba4-436f-a3b8-3310eda2feba'::uuid,'780','999',3365,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('79aa9c2c-7f14-48ba-9eef-ee79758d7605'::uuid,'781','995',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7dba16e7-bf56-4183-b533-fa1f8980c66a'::uuid,'781','996',4164,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('647fb13a-6a3e-4420-974a-2995ec0fc94b'::uuid,'781','997',4050,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2bfade10-9a6d-43f6-a084-bbe6b091c33c'::uuid,'781','998',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59ec7892-adb9-4e91-b52f-6303240658b2'::uuid,'781','999',3333,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('20d59d96-41e2-433a-890e-82a3427a0d0f'::uuid,'782','995',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eac61002-57d3-4c6a-aea9-be430e09ac7f'::uuid,'782','996',4125,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6f3d6144-6844-4566-822b-3c22c01f5c1c'::uuid,'782','997',4011,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9468666d-76da-4b97-81b3-2bb320f32b85'::uuid,'782','998',3552,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7930bbd1-4262-4c11-b061-79108c8ee2c7'::uuid,'782','999',3294,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7c766fea-5acd-4105-8bf7-04d31f5c7929'::uuid,'783','995',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('48360a60-26bc-4c4d-872a-46437d116887'::uuid,'783','996',4529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f7209b4-bcee-4251-a5b3-3522e3b0021f'::uuid,'783','997',4272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9601125-9d8b-4990-8e2e-523f6ed039f7'::uuid,'783','998',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40f4e44b-daab-4ff2-a6bc-d710873bb322'::uuid,'783','999',3454,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65075a29-9ab2-4c81-b4b2-112ead7b8613'::uuid,'784','995',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b5f3c6b-d2ae-4b38-913e-2b2f3c65fed1'::uuid,'784','996',4546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e38a6492-4552-4255-bff8-988f3a089beb'::uuid,'784','997',4153,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a39fb2e7-b90a-42e4-8cbb-2fba8dd42c07'::uuid,'784','998',3694,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2392327a-e872-423e-bc2d-5e31ca8e3e3c'::uuid,'784','999',3472,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('dd3f4c65-d6a2-4376-8665-6b9d01dc520d'::uuid,'785','995',4362,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f65a124e-6351-46f6-bde2-7ccf3994b05b'::uuid,'785','996',4362,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('afa049b2-defc-435e-93d3-2a75ba94185f'::uuid,'785','997',4248,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e734cff5-3ef9-49a4-b5c6-91f589ef4639'::uuid,'785','998',3774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f55f7c4c-b9d2-4fd6-a074-0f3ab1b923b3'::uuid,'785','999',3551,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0b0acb8-794a-4cc7-a75c-12f5818483d6'::uuid,'786','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dedab282-0320-4998-b1e4-453590876f87'::uuid,'786','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('711d0b3d-32a1-4845-8fe9-bf1899f090fc'::uuid,'786','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1301ce15-d5b3-42ef-b50c-6e67b45e8914'::uuid,'786','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('94d438e7-84d6-46d3-aa34-0bf51f9294c5'::uuid,'786','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('debbf784-89e5-4189-9a10-dd7153035646'::uuid,'787','995',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f8cafab-0ee2-4fca-a4a6-3364a3316ee4'::uuid,'787','996',4371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c13816dd-1949-41ef-8934-fe8b6f0c96b6'::uuid,'787','997',4113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be9783ac-4a01-4a1b-8d3a-9cdddd9c39e8'::uuid,'787','998',3529,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d80f3c35-5c1e-4926-9c3b-135c0a03ab7e'::uuid,'787','999',3306,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1817dc6e-9b2a-4c1f-be39-6fdbe0821892'::uuid,'788','995',4110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a9939939-8bf6-4043-b5f6-1ff9afd0dcf9'::uuid,'788','996',4110,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9b8bd323-fc25-4c07-be92-46612645dfe1'::uuid,'788','997',3996,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('94fdfd63-53fd-470c-945e-602cd0463d50'::uuid,'788','998',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f39c91bc-df64-4eff-b5bf-3c2a9feafaab'::uuid,'788','999',3263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('eb632ff3-2e1b-48f2-b41a-d0796fa8dcc1'::uuid,'789','995',4137,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c71a406-f6d3-46a9-9e91-d0363cf79e42'::uuid,'789','996',4137,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d0a066ef-fef6-4d24-92ad-a8f27bea657e'::uuid,'789','997',4023,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('aea0aae9-0644-4d82-b473-188fc8505b19'::uuid,'789','998',3574,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('341a954e-985a-4225-946b-1f6ef0ddd2bf'::uuid,'789','999',3351,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80aeef72-093b-4a6f-87b4-7bc371ae45cd'::uuid,'790','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e64f15d-1e23-4d4b-aafa-6dd695c69160'::uuid,'790','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45ef0651-c617-4687-b4f4-5166fe80f222'::uuid,'790','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d922574-fdcc-4570-8007-0047a706716e'::uuid,'790','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a7ea09b-a20e-4504-a578-7189c892acd3'::uuid,'790','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3262ae9b-1a6e-433b-8b2d-92d3eab24f91'::uuid,'791','995',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99bbfea1-5038-4b9f-9853-fd8bf3ca81d0'::uuid,'791','996',3898,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18c70f17-e71c-4ab4-9b38-e4f611bdf12c'::uuid,'791','997',3641,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40cf827d-5cdc-433b-9abd-78c9be336311'::uuid,'791','998',3046,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65d9e55d-278d-4e0f-a36e-7de409084acc'::uuid,'791','999',2824,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c89ad1a2-128d-44b8-801c-ba59a2ad15be'::uuid,'792','995',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b4eca1f5-6318-482a-9bd5-ea4253b7c0b6'::uuid,'792','996',3747,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13a4cb27-8b93-45f2-bf7c-65491803cc52'::uuid,'792','997',3633,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34c5b2dc-9339-4380-8d72-400172179263'::uuid,'792','998',3174,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ee8a918-51f9-4c39-9b5e-a8e717541edb'::uuid,'792','999',2951,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('103c2dae-2573-4cf0-a9b2-c1d207f6b35b'::uuid,'793','995',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca80a5c4-74c9-4a9d-a209-85815a35c9ba'::uuid,'793','996',4055,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2b4cd4fc-eb03-4fb0-bce9-0267bd6cf8a9'::uuid,'793','997',3798,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a23be17-9112-4143-8d60-aa31b96206fe'::uuid,'793','998',3182,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5ac078c0-2221-4a62-855d-82d55358eabd'::uuid,'793','999',2959,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e43f69c-42ea-4f88-8d6f-6397905a8dc1'::uuid,'794','995',3739,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f3fbb8f2-c084-4f50-bd67-d8bf113b2679'::uuid,'794','996',3739,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('19dcabad-21bd-4c8b-a7ae-efb3e692766e'::uuid,'794','997',3625,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5ce3e995-03ca-463b-8499-fa715c1d5757'::uuid,'794','998',3166,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('626bd578-2191-4b82-abb2-1a5d9e798e8c'::uuid,'794','999',2943,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ed7c53ee-f46b-49ed-befa-a8fca03e1a74'::uuid,'795','995',3850,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a4fed6bc-4466-4f42-a6ed-4bea3666c605'::uuid,'795','996',3850,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e1aa2a64-58c6-4b3b-8533-ff8b6e255ad7'::uuid,'795','997',3736,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bb6ecda-8830-432b-87c9-2a2ec8fcac29'::uuid,'795','998',3277,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('173dbc5a-e580-49a1-9c66-27233383b73e'::uuid,'795','999',3019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f61e8ea3-1b8f-4e0c-98ba-ce36c2080236'::uuid,'796','995',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cd8849ae-eb2e-4ef2-890e-f9891027897c'::uuid,'796','996',4165,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a31637fb-a7fc-450e-86a3-08b6c91db07f'::uuid,'796','997',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8586b3bb-a16c-4eeb-9219-f3e32f787152'::uuid,'796','998',3313,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d851c79-e243-478a-aba5-a993b146838d'::uuid,'796','999',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fa239f2c-3f97-41e2-a1d3-47c922c2ef78'::uuid,'797','995',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39cfb9c2-47a5-4b31-b318-4bd803fccb53'::uuid,'797','996',3873,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9cfc85a0-bc85-44b0-a273-715d9bb3cafd'::uuid,'797','997',3759,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54e58813-9822-47c2-9686-001b5f44cacf'::uuid,'797','998',3249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('503fd9cf-f7ab-4541-a4a8-29f1ecea2f1b'::uuid,'797','999',3026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aafe1f99-0981-410e-be20-7f2e277180f6'::uuid,'798','995',3932,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c63a568a-0666-4a09-8779-b43c17007d6c'::uuid,'798','996',3932,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6eb7df78-ad07-44d6-9de8-a5a26e40325d'::uuid,'798','997',3818,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('81d92e1a-ae7d-450c-9bbc-0bc72eaed820'::uuid,'798','998',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('638fa33f-c064-432c-b3ce-091583c16114'::uuid,'798','999',2975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d6666445-7913-4d39-92b0-5b4dda237f7c'::uuid,'799','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19a97b26-9e55-42be-991a-a6ffac1a5849'::uuid,'799','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f32712da-a79e-446a-b458-93f1778561ed'::uuid,'799','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fec4602f-8165-4141-a444-b130f732b1d1'::uuid,'799','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9fa853da-4d9b-43b7-b459-da13a4cca449'::uuid,'799','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bf20743-ad4f-45f1-b728-01a0ae51f6be'::uuid,'800','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5598f827-84c9-4056-bd50-a488e180e752'::uuid,'800','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9951e42c-96dc-4b07-99f9-ff45140668e3'::uuid,'800','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5712d751-91dc-4d44-83dd-c55660e26444'::uuid,'800','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6d8b692-3fa1-441c-9b7b-86834b130de5'::uuid,'800','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('af0154e3-c8bb-43ac-963e-0463ea755433'::uuid,'801','995',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5889d1a2-560a-4885-b53e-dabe65fcc6e6'::uuid,'801','996',3514,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0050c4ea-a1b0-4316-aaa3-e4e15b9fe997'::uuid,'801','997',3121,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('68c40d72-a33c-4230-ac2f-ae7ec4919474'::uuid,'801','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('356d0bd7-6fe7-4534-a3b5-8d0798ffa854'::uuid,'801','999',2439,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62ca44a3-a540-4b80-856e-5d8428896f20'::uuid,'802','995',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e466a53-cb2f-4e9b-ab84-0dec45a1febf'::uuid,'802','996',3484,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d9419d88-32f2-4c50-9b6a-be0bea4e64ea'::uuid,'802','997',3091,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d4c4121d-c40d-47a6-a250-9efca8190a45'::uuid,'802','998',2632,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('739a057c-249c-40e9-8ac4-a817e8420a73'::uuid,'802','999',2409,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b1d56db5-907c-4257-9f55-05e582751d9e'::uuid,'803','995',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a248ef5-8b8a-473e-a5c3-58e16d44779b'::uuid,'803','996',3466,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('368ee8c2-dfd8-4ebf-9734-8426f33e3d1f'::uuid,'803','997',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('89f97248-da28-4302-b020-4a7e0a0918a6'::uuid,'803','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a8c70f2-5ed7-4771-b58b-d42684ebb3fb'::uuid,'803','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312a5e79-37ee-4c2b-9f42-fa20b2da0c5f'::uuid,'804','995',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5a1b9db4-60f8-4051-a3a0-a5e706ed0b7a'::uuid,'804','996',3192,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('608e58fe-3ab4-44fb-abb0-34cdcdccecb1'::uuid,'804','997',3078,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14ef7610-340c-4f94-b42c-be7522677e42'::uuid,'804','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('636e3d92-0431-42c0-9d7b-885eb840b02d'::uuid,'804','999',2374,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('11543451-4c2c-432c-bc7c-7e6e5b38c5cd'::uuid,'805','995',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ba3c1b1c-c9b2-4cde-a65b-d1e363c785ec'::uuid,'805','996',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b52e8261-1e50-49fb-a734-974ea6761de9'::uuid,'805','997',3027,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('52626361-2fa4-4e8f-9962-2b1365b08ad6'::uuid,'805','998',2568,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('14a95caf-d36e-462b-91fb-4a40d6e25f15'::uuid,'805','999',2346,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca0e6ebe-a38f-4be8-98f1-1fb8a16c2f8c'::uuid,'806','995',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88e925c4-9c86-4bec-adc5-467826c15a0e'::uuid,'806','996',3438,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da993681-3cfe-4e6f-8690-96dbbe09dead'::uuid,'806','997',3045,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6ca6afa8-267f-498a-b5d5-bb0d2d689e16'::uuid,'806','998',2586,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7fe8f985-93a4-447f-95da-0f427151b2e5'::uuid,'806','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('903482c3-e0db-43cc-a02a-77404736fd99'::uuid,'807','995',3222,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('81ca8e3f-2602-47ad-af4c-7d8913c59ab5'::uuid,'807','996',3222,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d3446f16-70ed-4b3a-80e0-6e2bf09a436f'::uuid,'807','997',3107,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6123d083-0768-43b0-af8a-9c3fdd69f1fc'::uuid,'807','998',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a108b92b-f6a7-4ccc-a978-588d5d530997'::uuid,'807','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('067164e8-a3c6-40a3-92a9-764bcabe5acf'::uuid,'808','995',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('54f4aa8f-7aff-438e-8fd6-2bbcaa1403f7'::uuid,'808','996',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('793a9452-170b-4f1d-8c50-2d5104f66daa'::uuid,'808','997',3171,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ff34b9de-4cde-4e00-bf36-2cd2f40bafbe'::uuid,'808','998',2712,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bbed833d-db65-4389-8a22-70292368a8e0'::uuid,'808','999',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7b1237cb-36a4-4bbd-b4a2-7479560532ec'::uuid,'809','995',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e7f1d3d-ed68-4d94-8431-7db0dbfbd638'::uuid,'809','996',3555,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2771fcd-28c0-4458-814c-2f025ca7cdf5'::uuid,'809','997',3298,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eea732fd-19d7-42ff-b2ed-44145047b758'::uuid,'809','998',2703,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('383bf30f-40f5-412d-bdc8-95a50d5f1077'::uuid,'809','999',2480,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('91322b31-5bbc-42ab-82bc-6c4c64aa8280'::uuid,'810','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2214c5f5-3574-466c-ad93-64ef2f93d6f9'::uuid,'810','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('169e604b-4826-4ea0-818c-9eb1c24a9a05'::uuid,'810','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b6167d04-ae60-4086-a1d7-9d373768e84d'::uuid,'810','998',2807,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('70378cab-228c-4afa-ad7c-dd05118cbdfa'::uuid,'810','999',2585,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('d421b793-c671-467f-8e29-6a3e6e0b2153'::uuid,'811','995',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('247528fc-1e67-40e5-a7c6-3c2802caa37c'::uuid,'811','996',3677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33fa5677-2a47-4615-bb62-bf7ba25ee51d'::uuid,'811','997',3284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('71fc15e3-d7cc-4c29-9422-9c21ca684fa5'::uuid,'811','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b29c6b26-213f-4f91-b15b-842cd7f11f15'::uuid,'811','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae0e41b6-d25c-49ca-a305-5fe41cc3fe31'::uuid,'812','995',3323,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('61689b7f-06ed-446b-b946-f50e73a9653b'::uuid,'812','996',3323,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53940126-fbb1-4f18-95b3-85c2da096b77'::uuid,'812','997',3209,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c9556aa-da6f-4961-9961-1b58fde8a42b'::uuid,'812','998',2722,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fa35c18-af52-48e5-a065-66fac49e6cf3'::uuid,'812','999',2464,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('155f8de7-b2ae-4b0a-9b19-83b07e209899'::uuid,'813','995',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fdc13d09-0841-4696-bafd-a95f99b9a98e'::uuid,'813','996',3593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e174c72-1b11-40f4-81c3-bc680e6255cf'::uuid,'813','997',3200,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae7d1a86-446a-4a8f-93ec-dd7ab1b88f45'::uuid,'813','998',2596,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('729c99a7-dde4-4e16-9a08-773a6dda94ad'::uuid,'813','999',2373,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c7e80648-2451-488f-b8ac-c8480728ea03'::uuid,'814','995',3309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e6575e2b-3371-431c-adf2-64309f77e7e9'::uuid,'814','996',3309,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('659f4ce0-540d-4c95-b7f0-4a632ed3ecd3'::uuid,'814','997',3195,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4e4c1532-9715-4209-a5b6-2df9f2fa5856'::uuid,'814','998',2592,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ff15518-5857-4074-902d-485e2013284a'::uuid,'814','999',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3fe48fdd-edfd-485f-8475-5e128ac930e6'::uuid,'815','995',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a0671cd-2f79-46e6-a812-2bacd026b5f5'::uuid,'815','996',3526,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('19b2d708-82c2-4cc4-988f-e871fc6cb053'::uuid,'815','997',3133,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00e4a918-d697-423c-ad9d-7a2f66fd801b'::uuid,'815','998',2531,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b2ff2af-f648-4146-8cd1-31477f6ab572'::uuid,'815','999',2308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7aba2af-7df5-43ca-8d88-13ada5df8106'::uuid,'816','995',3187,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c507df8a-6f33-4514-a162-ada119d84b80'::uuid,'816','996',3187,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0e36fe3e-18a2-4065-81bc-ba4accd4d214'::uuid,'816','997',3073,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7bd21e3e-ea6b-45c6-b428-e9f6142d3e71'::uuid,'816','998',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53ca18b5-10fb-40e5-acc6-202d8c6f795e'::uuid,'816','999',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('1a0efbfd-c4ea-4a1e-9722-c77b03ca14d2'::uuid,'820','995',3077,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('97e71607-c79b-4b78-919d-9427ea59f39e'::uuid,'820','996',3077,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44bcb51b-1149-47fc-9418-10c99f36d869'::uuid,'820','997',2963,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bcf4688f-0825-4753-9b19-47733ea77b2b'::uuid,'820','998',2504,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe126a02-0c27-4bdd-bddc-07e9ae448c09'::uuid,'820','999',2281,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b4a40c5-6573-45ba-ac9f-2081d29d69b7'::uuid,'821','995',2715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e52647e1-367a-41af-b6d8-4ad91709e7a4'::uuid,'821','996',2715,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('211678ad-4edf-45a1-8bb4-f808fec6b083'::uuid,'821','997',2601,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c32d4a4f-0d54-4365-a9e4-7e2cc7ba18d1'::uuid,'821','998',2113,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5b9acb11-f79c-44e7-ae98-6532ffdfb711'::uuid,'821','999',1890,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('437eea3d-4b6b-4044-a5cf-3baa00d2e3cd'::uuid,'822','995',3034,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f0db5686-597b-4c64-bab2-0a153c3f1bbd'::uuid,'822','996',3034,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c40aafe6-e602-4f17-88aa-41e0443cab14'::uuid,'822','997',2920,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1a381863-3687-42ca-91f2-96f39b5ed2dc'::uuid,'822','998',2461,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d36a66de-58e3-4ee8-b01e-24ca754ba54d'::uuid,'822','999',2238,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2c08b320-400c-403f-901a-994f5472bc66'::uuid,'823','995',3021,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3f3f7353-1eea-4c44-8e21-2591319ab4c3'::uuid,'823','996',3021,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a90cbe1b-1007-4448-88b9-67de21e6d6e6'::uuid,'823','997',2907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('11ef91e0-4709-4062-952d-2615c602a513'::uuid,'823','998',2437,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0e71fe74-de57-4e9f-8c7e-79b8fec47dd3'::uuid,'823','999',2179,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8fc89026-4bb5-4520-90e4-9b431be28b22'::uuid,'824','995',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64df49a8-a3c9-421c-a47c-952dfe68a30a'::uuid,'824','996',3053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2abffb70-419e-4b6e-9af7-4920504606fa'::uuid,'824','997',2660,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c03d676-dae3-4a55-a414-cea4c1a9b56e'::uuid,'824','998',2201,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a7efe2e-0b7f-43a7-98b6-30a149f3bd23'::uuid,'824','999',1978,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('de1e377d-348e-4f8f-b27b-22c77a369230'::uuid,'825','995',2896,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7580ca33-889a-4dc1-a264-aacddc99e5b1'::uuid,'825','996',2896,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('04710b53-3ba7-49ee-9621-50897cce1c78'::uuid,'825','997',2782,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3e83014-a5a1-40b4-9572-d24e5dc410eb'::uuid,'825','998',2323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bd9305c-5dc7-41ed-aaef-3ad81ce4682e'::uuid,'825','999',2065,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('50954769-384e-4676-889b-9f71ef62301c'::uuid,'826','995',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05f67669-fd93-4130-8795-c719ac4a4968'::uuid,'826','996',3209,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43913918-5c2f-4cea-9204-958726c2cf2f'::uuid,'826','997',2952,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dd1d5754-27dd-4df2-a708-dc08c5fc5c19'::uuid,'826','998',2357,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2f7f6bd7-54b3-4efe-afd0-878e1872a829'::uuid,'826','999',2135,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe5dfeec-665d-40bd-86ae-930bec5b0c33'::uuid,'827','995',2914,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98bf6506-ceb5-4f7a-8433-3e1a290fef75'::uuid,'827','996',2914,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('334fb3dd-aa41-4638-b763-2a0283f773d2'::uuid,'827','997',2800,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('09a71777-88ad-40aa-ba5c-db4aa33f435e'::uuid,'827','998',2341,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c8d7f2e-20cb-4aa9-a090-380655a20995'::uuid,'827','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5ef5ceef-0e63-4827-8a86-bb793e3e180d'::uuid,'828','995',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee91fdf8-0a69-4e0d-a5b0-168912b8adf1'::uuid,'828','996',3098,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ff066ba-0a3c-4591-8e04-fa561f5cb030'::uuid,'828','997',2841,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c2f38237-d5f3-476e-bdc5-f5c43b272200'::uuid,'828','998',2246,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b9256019-d088-4bc5-9ec2-fb8d3f9833ff'::uuid,'828','999',2023,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('97e8f6f8-3ac8-4783-b6ac-696ed204b340'::uuid,'829','995',2996,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6cde9170-10fe-442e-a242-916affb8180c'::uuid,'829','996',2996,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67bb9bb4-00be-4ca6-98b8-1d41db8b32a4'::uuid,'829','997',2882,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5770ec43-6d25-4417-8551-7f9a8bc61f3c'::uuid,'829','998',2328,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1464a511-b5aa-47c3-bdc1-63e45e343446'::uuid,'829','999',2070,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('8f29f8b5-2626-4445-ad1c-455dd5d8c1be'::uuid,'830','995',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02782516-3e30-4fb5-85a9-46cd88fcc092'::uuid,'830','996',3126,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5349e29e-4ce7-4bd3-aec1-b5d3b94eb2cf'::uuid,'830','997',2733,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('07c7b246-e924-42de-a610-949027c91b90'::uuid,'830','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('07c16376-2f2c-4b16-92d2-b1fc8cedf2cb'::uuid,'830','999',1957,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9334e04-b699-4bb4-9338-d1c0dae8be06'::uuid,'831','995',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc2d180e-a100-40d7-83f9-9836ac3e12db'::uuid,'831','996',3167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('baf2859e-1983-41d1-93e7-711360b1ebcd'::uuid,'831','997',2774,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64ad98bd-b74f-4f55-833a-61ce4ad565f2'::uuid,'831','998',2221,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('365c3aa3-a55c-4d76-9400-8c05da56eaec'::uuid,'831','999',1998,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cf8c455e-bb04-484f-8453-1e0713c7b79e'::uuid,'832','995',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7c74bd05-b17c-4887-983c-993f5de37cc2'::uuid,'832','996',3062,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a537f332-1ac0-476f-ac56-e64e214f4e70'::uuid,'832','997',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('83c904cb-cc71-4e7e-85fe-189121e37569'::uuid,'832','998',2103,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da70f09f-4158-4d3c-9263-927e0f1b7fb3'::uuid,'832','999',1881,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05f973cf-dd91-4627-9102-ea1a66bfc839'::uuid,'833','995',2814,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('330f4d9d-4ce6-4b68-a358-80e7e54ca48d'::uuid,'833','996',2814,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8ed9310d-30e3-4ea7-8adc-9576f1bf2122'::uuid,'833','997',2700,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c3fb0784-62c3-4a97-bbdb-165bbab3993c'::uuid,'833','998',2027,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('21b3ce86-174f-4204-b46f-bfc9a6935953'::uuid,'833','999',1770,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5b7bb89b-b9ec-4da4-a872-6bdcb68f2ee1'::uuid,'834','995',2718,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0df446e4-21df-482c-8f5c-9e7280d0b329'::uuid,'834','996',2718,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('80702540-f819-455e-b7a5-fcfa26848f54'::uuid,'834','997',2604,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c37210f-9fb7-4d61-9e96-06cc5c73f511'::uuid,'834','998',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('deba3e18-971d-43f8-b924-69d6e064832e'::uuid,'834','999',1825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5f968f0-5f4e-4a95-9169-0a4afd05f2c6'::uuid,'835','995',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dde0096e-012b-4d33-a590-34b2b4843164'::uuid,'835','996',2806,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c640beb2-7f94-403a-9a7f-0a2d12e637a6'::uuid,'835','997',2413,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41898070-92c2-4b8b-bc4b-00e2fad3a448'::uuid,'835','998',1740,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7ee0791-5cc3-4cd5-be95-5f719ef97fba'::uuid,'835','999',1517,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('94579535-cd7d-4fbc-8488-a942b64eed13'::uuid,'836','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('729fe30d-1a8c-4991-ba64-b21cd2986d24'::uuid,'836','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a4c68ee9-956c-4aeb-87dd-7714885e6172'::uuid,'836','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('064e9193-e225-42bc-9fc4-33c7566669f3'::uuid,'836','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d5c846a1-981e-413a-a822-78abb1443881'::uuid,'836','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3877b87e-1f73-4a59-921f-159e6930940b'::uuid,'837','995',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('33fc932c-05b0-4978-aedc-44e8284d2663'::uuid,'837','996',2977,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('615ab569-8f05-4571-8a68-b37a7d1b4bbf'::uuid,'837','997',2720,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('17d1550f-64a8-4d0e-b8ef-7ade458a28f1'::uuid,'837','998',1911,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c5ff2e9-f473-4c84-9f82-ad159521a345'::uuid,'837','999',1688,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5a5e13ff-c820-4a2f-8510-e030c7023b45'::uuid,'838','995',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4786806e-6280-4b37-b70d-530f9a20b3ba'::uuid,'838','996',2677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2cb4b259-e719-4dbe-bd81-4f13fff7bf73'::uuid,'838','997',2420,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('799106b4-9417-44ba-b83f-414aab60fb4c'::uuid,'838','998',1611,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ca571b5e-4b7b-4ead-b508-1cf001fe7cfb'::uuid,'838','999',1388,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('02c9593c-33e5-4516-acbf-5c07f90864e0'::uuid,'840','995',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8acb321-484a-41dd-bc66-8094a2f6eefb'::uuid,'840','996',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e7da6e7-148a-4adc-b7c9-f37d0776bb89'::uuid,'840','997',2853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('af3ca401-4ef9-4f27-a294-02412ddf8cce'::uuid,'840','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f4e83cc-1c87-433b-80e5-7b85e378f8fb'::uuid,'840','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cee2e660-ffca-4eeb-b6bd-7efcc25bc9ee'::uuid,'841','995',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('380026a6-c517-4399-b989-a31bf79e9d19'::uuid,'841','996',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('da48460c-7352-46c3-b6e9-1852a54043ea'::uuid,'841','997',2853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12e675bd-5f21-4312-9c83-69d375aad976'::uuid,'841','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c701b3d4-45a2-462e-8ef6-359877e4a51b'::uuid,'841','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('10ffd602-6855-4256-b8f7-acbee8ad3202'::uuid,'842','995',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2985cab4-cc52-40fb-a441-d77eba906fe6'::uuid,'842','996',2967,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e136f85d-8963-45ad-9c4a-af1df02e6cfb'::uuid,'842','997',2853,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e3eb9c5d-b6b5-47c6-aff5-9763c3523300'::uuid,'842','998',2249,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('acf0bbac-a468-4d9c-aff1-5afb9fe6f3f5'::uuid,'842','999',1991,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7594a2c9-258d-402e-bdce-f4adb80525ec'::uuid,'843','995',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f1758cfa-643d-4b43-a974-5af15a6d540b'::uuid,'843','996',3177,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ebf0607b-859e-4fa9-83f3-2d675dafa02d'::uuid,'843','997',2784,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e4ae54e8-6420-44df-9e27-7c2071a63773'::uuid,'843','998',2180,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9b01e169-4ea4-4f10-b3d2-05dc46894b06'::uuid,'843','999',1958,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2da5af0c-e1ae-4a3e-baf4-b2e361aa9e7a'::uuid,'844','995',2931,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3828df05-1053-4441-add4-927dbfb60016'::uuid,'844','996',2931,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('31f9feda-7c07-4d14-999e-ebb300baffe6'::uuid,'844','997',2817,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7920523e-c939-4f0d-b946-a0ed5508a7aa'::uuid,'844','998',2213,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4f76bfc9-2225-4aa6-828e-b34b1258240d'::uuid,'844','999',1990,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('3c6d98b7-6a9b-4334-9e58-be72c4333215'::uuid,'845','995',3200,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72693f2d-b96e-4b54-b013-a613bde0f374'::uuid,'845','996',3200,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eb45337f-bd66-4628-9d45-93bcb4baa9cd'::uuid,'845','997',3086,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7c2a7a68-58b8-48a9-91c1-f3e5f0508c3f'::uuid,'845','998',2483,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b11e9c22-6501-4a1e-8392-0e501e1559fb'::uuid,'845','999',2260,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('641d1523-7fe5-4b77-b9c6-587bf1bad79f'::uuid,'846','995',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be04f3d2-0aec-4f61-8cd0-79865877c3f2'::uuid,'846','996',3367,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52b7aa0c-16ae-4b3d-93c7-2e811035ec05'::uuid,'846','997',2974,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e3ac5d2-49e4-4e62-8ef6-17988de2ac1b'::uuid,'846','998',2370,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7739dc40-bd32-40b7-94c2-bb2bec096354'::uuid,'846','999',2147,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('14123361-02e7-4b28-9147-dfa55fdcb935'::uuid,'847','995',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8f2bf5c-0108-4782-85a8-b3268996cd11'::uuid,'847','996',3494,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c9e27d42-5e40-4077-b2ce-037abd9d2456'::uuid,'847','997',3237,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ffff393-4f3d-432e-95da-bf45cb096d70'::uuid,'847','998',2485,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1a30f0a2-2c69-4139-8932-ed6f23cbd736'::uuid,'847','999',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('34ab62ac-24d4-4214-a2a2-8bcebd8edcc5'::uuid,'850','995',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('59476d65-f5bb-45d2-bc3b-7999eb5923e0'::uuid,'850','996',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f24fea7f-38f9-4d49-b256-834e67f5680c'::uuid,'850','997',3496,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f1027bd1-3691-43f8-b3cc-8f41e2af432a'::uuid,'850','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('096e3f88-5166-4010-b791-3a6a67f13fc4'::uuid,'850','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b578789d-5217-4e00-a588-1a1ee5bcf40c'::uuid,'851','995',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3d591dab-9d85-4dd4-9c6f-89dc79e2834d'::uuid,'851','996',3610,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b34d6e90-3f06-49e6-aa45-03619c679443'::uuid,'851','997',3496,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7eda0e58-5da6-4b3b-9628-e26ab3ac02c1'::uuid,'851','998',2839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b07d6ead-fc84-4c03-9a6b-967dad0616b4'::uuid,'851','999',2581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0593ac6-71e0-4e68-b895-4b6f25842502'::uuid,'852','995',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8c2530a2-f4c0-4ff2-bdcf-bcd2baec972e'::uuid,'852','996',3955,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ec64540e-b541-4a66-943c-c8edebb6878a'::uuid,'852','997',3562,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('375c640f-ed1c-4929-b916-21d89a393695'::uuid,'852','998',2904,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd80c77-1323-4e60-9ed2-f2455b12683c'::uuid,'852','999',2681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a16ea5d9-ed5e-4066-b4be-dfce0fa8ee25'::uuid,'853','995',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfbeb9c4-8cf4-4653-9556-f31cdf3a35ff'::uuid,'853','996',3908,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7a9581d2-3957-44de-9471-6973c8302d02'::uuid,'853','997',3651,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1482554e-da01-4911-a496-88a8e3819e1c'::uuid,'853','998',2842,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0a328d6-6e75-45f2-910e-4b238259dfdc'::uuid,'853','999',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a73cd696-d9f7-4128-b430-4740f47e9113'::uuid,'855','995',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a747d1d2-1f8f-4442-8f2d-a22af56f81a0'::uuid,'855','996',3932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3128fdec-00ca-430b-a308-ea2113740106'::uuid,'855','997',3539,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('89f02de2-35de-4413-99a7-55416fbf9008'::uuid,'855','998',2929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ace99720-41d0-406d-8494-93536dbaf511'::uuid,'855','999',2706,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('003764a6-e41b-4177-8019-aabee7140373'::uuid,'856','995',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('29037999-8ff4-451f-86e6-a57f13d47d9d'::uuid,'856','996',4053,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('979c8e8e-be9d-4b54-acb9-ad83a7939657'::uuid,'856','997',3795,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1814a238-7078-48fc-b0e6-34a4b2233d53'::uuid,'856','998',3002,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('091e29ea-5573-4d73-a513-5bb72763fcdc'::uuid,'856','999',2779,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9edf504-e045-4f9f-9628-ad1c21cbdccd'::uuid,'857','995',3726,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('76b108ca-95d9-4c8a-adde-40584a17fc14'::uuid,'857','996',3726,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7851510e-0e20-40fe-98bf-1552ea96a639'::uuid,'857','997',3612,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f4138556-fc12-4ecd-b115-66ed813ea3ec'::uuid,'857','998',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bc4d2c0d-fc9f-4dab-a59c-47765d8c5fd0'::uuid,'857','999',2696,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('57b318e3-3be6-44b4-80db-b6e0101fcdfb'::uuid,'859','995',3565,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0d276664-2b68-4109-88dd-24055d1e366e'::uuid,'859','996',3565,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a3d02f99-d600-4a7c-9649-151e23921419'::uuid,'859','997',3451,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29938f27-1720-4893-9467-c4418bea57f4'::uuid,'859','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('32d2a8d5-9663-461e-bab5-62aa6b4a535d'::uuid,'859','999',2589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ca75492-9b7d-4650-8f76-d068cfdcab9d'::uuid,'860','995',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('974c7ba5-a367-491a-9c8c-29e775f45622'::uuid,'860','996',3750,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('037deb3b-5080-4eb1-86ef-b56031a3c97f'::uuid,'860','997',3357,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86cc5a3f-3b34-4989-adc6-505df87881cc'::uuid,'860','998',2753,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dda7de30-55c8-4b47-be18-9d0086a00e14'::uuid,'860','999',2530,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ff4713de-de1c-473a-ba60-894a31585265'::uuid,'863','995',3564,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('dd15f9a8-8692-4c03-8745-3cc76b4c1da6'::uuid,'863','996',3564,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d538693f-ef9a-4955-bcc8-5c3b8dd9bbf3'::uuid,'863','997',3450,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cedb414d-55dc-4d92-9525-41cc212a23a8'::uuid,'863','998',2805,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce518c21-d647-475f-b6b4-129e10ee1321'::uuid,'863','999',2547,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a0943c49-cc3a-4797-a920-d7010bb5390d'::uuid,'864','995',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd7ca0c4-ead2-4195-baf4-2816db87a424'::uuid,'864','996',3723,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('62f3e89a-d2fd-4b3d-9ec5-f27098cf303b'::uuid,'864','997',3330,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35207817-42d8-41da-affd-ce6bd5278636'::uuid,'864','998',2657,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c77a0269-61c3-4696-9e82-24f32bc42b98'::uuid,'864','999',2435,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('cbd9e177-f941-44ba-8d3a-8fd21f6a46c8'::uuid,'865','995',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0c4bea6b-a670-45fc-b6ee-d4d2a4229eb1'::uuid,'865','996',3711,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ee07699-e9a1-42ab-bee6-b8b54c1879b1'::uuid,'865','997',3318,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f2ba5f6-5398-4886-8d61-d81339d1c825'::uuid,'865','998',2714,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c1431e86-d495-4c17-8c38-f53e227eca3a'::uuid,'865','999',2492,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c09f830-b67c-4c25-ae21-3895570b2918'::uuid,'870','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9831ef14-d309-406c-bf5b-e6a2ed2bcd38'::uuid,'870','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8346070-9bce-49f3-b4da-78aacf33d6f0'::uuid,'870','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('74a7191d-4a09-43ba-a3b0-98019a15e3e8'::uuid,'870','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00cb483f-f804-495b-8d19-e41cdeb1df11'::uuid,'870','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('74bf4e4a-49ee-4953-bfa3-a1d5265a0f0c'::uuid,'871','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('da4e759f-dc6d-4af9-872a-300ea21a832a'::uuid,'871','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfd0b166-69a8-434a-a2df-0a4f888495d5'::uuid,'871','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('503ae9b3-47c5-451d-8dd1-86d7ddc4a84e'::uuid,'871','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdef1c81-206e-421e-b7f1-62302d357c6a'::uuid,'871','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d729b702-5bdd-424e-85d2-3590b8ba74b2'::uuid,'872','995',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('449f406a-fc61-433d-9afe-b3a02ebb4fe8'::uuid,'872','996',3844,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3303401d-0b96-4766-ae34-1c2d77c48cd7'::uuid,'872','997',3587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('613bf0c9-279c-4719-a1bb-d937132af2ed'::uuid,'872','998',2847,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b21d8a1-2b11-47a5-ba5a-37398b8c6fd7'::uuid,'872','999',2624,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('c595c2c5-b7f0-4e8f-af54-bbc2ea195b28'::uuid,'873','995',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('595fc89b-dc24-484f-8747-85354b94d563'::uuid,'873','996',3727,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86eab86d-e948-44dd-a5c2-f6eb0007723e'::uuid,'873','997',3334,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53f13fa0-0445-4b5e-8303-6360e85d3810'::uuid,'873','998',2730,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ff7bf545-aae8-43ba-b305-487605400382'::uuid,'873','999',2507,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5faacce-0572-4b91-9073-a344878c3566'::uuid,'874','995',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3cd6731b-4fca-4f8b-abd4-b7e7938fcc43'::uuid,'874','996',3663,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7929f8b8-cf76-407b-8573-ca853558468d'::uuid,'874','997',3270,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9aaeddcc-5e55-4634-ae83-c892a833af05'::uuid,'874','998',2666,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('afbe0cf2-5d38-4d5e-8693-fbd35f819061'::uuid,'874','999',2444,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0a8f5597-f8ec-4665-858f-397365c69f79'::uuid,'875','995',3486,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('532c2a23-6799-409f-904e-68ac6a38fcb5'::uuid,'875','996',3486,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f23be6b-123b-4337-9a6a-37e80a9bb5b0'::uuid,'875','997',3372,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('43250438-8323-46bf-bbd5-9a131691fa0e'::uuid,'875','998',2840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('073107fd-48b7-4dec-8feb-c05cf3fb7a98'::uuid,'875','999',2618,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b1e96733-130a-450c-bcf9-5ef58128734e'::uuid,'877','995',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7ca7a9c8-ade4-4899-80d7-89afbe9f5527'::uuid,'877','996',3490,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cfafec32-a296-41e1-a5dc-287bbec54974'::uuid,'877','997',3376,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85b9165e-bb4b-46a9-be26-95bf34213fa0'::uuid,'877','998',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aec35b7e-8064-42b2-b872-8fecdd9971cc'::uuid,'877','999',2659,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('321e1504-2ff8-4b05-85c7-5af79b7b3464'::uuid,'878','995',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d4d8260-f383-4fc6-903b-0ac75c2c3754'::uuid,'878','996',3929,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43529c84-6e43-4b88-974c-7353be5c27e2'::uuid,'878','997',3536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e5976ec-18d5-4e78-a3cb-283a029df62a'::uuid,'878','998',2932,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4e308c44-744d-433f-9e1e-4967bd5c7438'::uuid,'878','999',2709,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('60647cf4-6d18-44bd-be9c-d6e7fcd119ad'::uuid,'879','995',3714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('988a5354-b394-4ab5-8404-cd9e4e317e2d'::uuid,'879','996',3714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f77fc0d9-77b8-4ff7-a9d9-29d1dc29cc69'::uuid,'879','997',3600,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5c83db13-028f-41de-8417-4a6a4bfa02df'::uuid,'879','998',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e5ac3534-d378-457b-9afb-7745dbb950e9'::uuid,'879','999',2738,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('2007125e-aa80-4027-bbfc-69067d9561aa'::uuid,'880','995',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ef41e618-3dfb-459a-aace-5e473038c8d3'::uuid,'880','996',4035,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('065dcba3-c527-4cc6-9d80-fbe9dfbaa106'::uuid,'880','997',3642,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f7092da3-3bb6-42be-8f8b-fd493590ea79'::uuid,'880','998',3038,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bc46b9e-2671-4c93-9013-c86ddd55e6a5'::uuid,'880','999',2816,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03a1592c-999d-411a-bbdd-7c7d577126cc'::uuid,'881','995',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e7318352-b9c9-4945-b87a-a2b75ebdecf1'::uuid,'881','996',3982,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a9549a8a-11b2-422a-baa6-765be2eff0ac'::uuid,'881','997',3589,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cdf0061b-0797-41cd-8b3f-5e5c50c20a33'::uuid,'881','998',3099,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('18933378-fdb1-43bf-bef6-85f30dc5d171'::uuid,'881','999',2877,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7c686591-8b2b-4f40-ae8b-5f00535882c0'::uuid,'882','995',3792,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cee88612-18fc-4bc8-ae38-1d0adb45e111'::uuid,'882','996',3792,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a4c04f3-e8cd-461e-97e0-11b56683b87b'::uuid,'882','997',3678,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bd9106e8-abfe-4762-8adb-411dfd39459c'::uuid,'882','998',3118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('46545428-646c-4c5a-9a7e-1245b8c648a2'::uuid,'882','999',2895,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('778cbd76-fa36-450b-bb24-09aff122c7c3'::uuid,'883','995',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ddde297b-056c-4b2b-89c0-33524505a61b'::uuid,'883','996',4032,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1df09440-c73e-404d-ba29-98c89e7d5ac5'::uuid,'883','997',3639,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d64b62e9-0c39-487c-ba18-52ed6b55c0a9'::uuid,'883','998',3042,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c3793354-fb9c-4e7f-b3d8-ef73c1a57bae'::uuid,'883','999',2819,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6eb9e0ef-75c6-41bd-a260-47e983f3dd72'::uuid,'884','995',3602,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b1842f8b-f7df-458c-a7ca-3b42808f7cd5'::uuid,'884','996',3602,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('75143e1b-84be-4e74-b63b-605d98bc39be'::uuid,'884','997',3488,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3ced66ad-8fde-416f-b227-bf38e199ca34'::uuid,'884','998',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9472f6ae-c098-42a7-aad1-0871511b4668'::uuid,'884','999',2760,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99c52cef-94b9-487f-ac31-76742185350c'::uuid,'885','995',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('05850e92-edaf-48ac-96b6-a5d46ea286b7'::uuid,'885','996',4111,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eedccae1-2aeb-410b-afc3-5beeea52ea1e'::uuid,'885','997',3718,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('246629f6-1ccf-4253-bb7b-fb0329d7d952'::uuid,'885','998',3114,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ed3eb3e-3863-4143-a59f-cf75ef60ae23'::uuid,'885','999',2891,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('5d6aa648-1432-4c28-91b8-81e00005e43f'::uuid,'889','995',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc727d6f-f63f-47f6-9b04-8eb158acb6d9'::uuid,'889','996',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('703b3076-800e-4f65-a9f9-a6f66f93b30d'::uuid,'889','997',3205,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a6d8519-7487-4ab5-87d9-4480014db52e'::uuid,'889','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a077efc-17b4-492f-a137-d7bf25664134'::uuid,'889','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c2cc56e-717d-4dd8-8552-7112044378ba'::uuid,'890','995',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8e522a29-0604-431c-bcf3-c7a6e91fbd7d'::uuid,'890','996',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23008283-ae57-4564-96b8-0a6b5451f6d9'::uuid,'890','997',3205,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4225a4e3-c5fb-4355-9ce6-cb1bff9090af'::uuid,'890','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8c45974-b9d5-482c-9c23-be6745fdac35'::uuid,'890','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('14a1b68b-d0bb-4ff5-9be2-6a0a30e4314c'::uuid,'891','995',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('088e72b8-a3c7-432d-a3b3-820cd9cfdf4f'::uuid,'891','996',3319,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c22ba31-0f19-4e9e-8ff8-197959ce2215'::uuid,'891','997',3205,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e25e09c6-70b9-4d7f-8435-d07cc895be0e'::uuid,'891','998',2532,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d263068-46a3-4fa3-9ed2-809f8fced7c7'::uuid,'891','999',2309,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61f1a70a-5ff6-4cd1-98c7-ad0f4b6de49e'::uuid,'893','995',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76557d71-f357-4ba5-8e3a-c3563bd1c018'::uuid,'893','996',3320,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('047035e9-e554-4175-a706-011446aef94b'::uuid,'893','997',2926,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('318efbf8-ba01-48e4-a88b-d899e74b72d3'::uuid,'893','998',2254,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f68548d1-b6ba-4140-ad20-1a9fbe6b2eed'::uuid,'893','999',2031,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('22308ee0-8a35-462b-8b32-7413ab2df8fb'::uuid,'894','995',2978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4ba1b9a7-101e-4aa6-9aad-0997752878bc'::uuid,'894','996',2978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1aa6c96a-7c05-43a2-9aa1-0682f4a5b465'::uuid,'894','997',2864,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2540999-44d1-4e97-9d41-b97cdc0eeac5'::uuid,'894','998',2191,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36853432-bbf1-4630-8e8e-60eb6f74d646'::uuid,'894','999',1968,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eba9d200-7f1a-4ae6-ba58-23e174c83cb9'::uuid,'895','995',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c294e484-2f3e-4182-85e7-0622dfdb2755'::uuid,'895','996',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('252bf16d-97fe-4850-9fac-6efce19562eb'::uuid,'895','997',2885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('caaa42a8-cea4-49a2-81b0-70d196499d5d'::uuid,'895','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('589fcc0e-ef03-4d34-9d75-8bdc21ed6ed9'::uuid,'895','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e0a44867-e2c6-42e4-a3cb-cf9a0081cb32'::uuid,'896','995',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('57eea73f-f392-4d61-978d-850665ad5dd3'::uuid,'896','996',2999,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84681a43-50fc-4b05-900d-f1fed62b8696'::uuid,'896','997',2885,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f26c49a-0faf-4f48-b720-7322dcb487df'::uuid,'896','998',2212,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('76f74300-db1f-416b-9f5f-8562fb0efe42'::uuid,'896','999',1954,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d1c9e95-3efa-4350-a31f-202facb2256b'::uuid,'897','995',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9bc392b2-e9cd-4985-8b77-21f98c182758'::uuid,'897','996',3308,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('af9e8f15-eb8c-4346-9112-a6ef4d43455f'::uuid,'897','997',3051,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ee99372a-f7e8-45e4-ab49-f45bd40dda4f'::uuid,'897','998',2242,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f79d1fdc-d868-4a9b-8089-c324c1ba0236'::uuid,'897','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('91fadf8f-bfd6-49d7-8af1-0c875eb1837c'::uuid,'898','995',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('40ee2eb2-0b2e-463c-a995-17f5b745b064'::uuid,'898','996',3206,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('00df1c64-dcd2-4da2-b659-fb1686d9a119'::uuid,'898','997',2813,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('75e7e76a-a288-4f0b-9ace-6aff15066d67'::uuid,'898','998',2140,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d26ea265-c508-4887-bcbb-51e52be82d6b'::uuid,'898','999',1918,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7e5606ce-1676-4808-8046-f0492f3593a8'::uuid,'900','995',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99661eff-f6e6-40bd-be53-8f7ba54584b7'::uuid,'900','996',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b87899aa-f988-45b9-9e23-d8737b86ad38'::uuid,'900','997',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('77501771-13cb-4a23-a153-fb08e1d02372'::uuid,'900','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e2c4dd7-7650-41ee-bde0-4393baa5cb34'::uuid,'900','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('308b0d16-fe69-45cf-8ebc-f6d56363488a'::uuid,'901','995',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('992935a8-023f-4fa2-8065-0d8f3101bf21'::uuid,'901','996',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('03e756fc-2cc8-47f1-a365-1b61410e3f0d'::uuid,'901','997',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('85ee5102-bbe4-475d-90c5-d5b5fb21a0b4'::uuid,'901','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('15daafbd-1892-4af2-ab2a-6b6fa0ff0f5c'::uuid,'901','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('483f1f42-8a51-49f7-bd14-a94c344ed126'::uuid,'902','995',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('159bac5c-d6c2-4c8d-a935-a49fdf0795cf'::uuid,'902','996',3678,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6333e31d-6514-43b3-8c78-d753872b0841'::uuid,'902','997',3421,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('28646c4b-5f0b-4c2f-9b0e-d2cd128d187d'::uuid,'902','998',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ecb18e7-a559-4708-9f83-605380ce43d7'::uuid,'902','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('022ced8d-1e04-48c0-91f9-8d551d4c9f5d'::uuid,'903','995',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8bb8e3af-9c32-4e67-af7b-725a962dffe3'::uuid,'903','996',3683,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9a7d38a7-e2f6-4f5e-b5f9-992a71cac9b3'::uuid,'903','997',3290,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c638bdad-c0b2-4be5-b35f-bb749cf03d2a'::uuid,'903','998',2617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4111ca0a-eb3f-4a40-9107-cfedeab5797a'::uuid,'903','999',2395,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('86a12b6d-b89b-4126-bc28-2efcfc49ef27'::uuid,'904','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3c2396f5-8e13-4b33-a761-146117df9b1a'::uuid,'904','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c455f3af-8003-4822-b320-9e47689a3999'::uuid,'904','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7607f73d-916d-4b79-9706-683842d7bab6'::uuid,'904','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f2dd75ae-03d6-47e8-b4ba-b52dfdbc7489'::uuid,'904','999',2356,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('66edd0f6-3107-4581-9413-53863d6410db'::uuid,'905','995',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f7476002-953d-4192-8264-f13c3b6ef685'::uuid,'905','996',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29bcee87-3c83-4f67-88e6-628313687ca1'::uuid,'905','997',3302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8e2105e-641e-48fc-acdd-c3c9743bb153'::uuid,'905','998',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('26041a79-c8db-4185-8c8b-933113f466ae'::uuid,'905','999',2371,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f3057089-1889-443c-9016-59345946cc1b'::uuid,'906','995',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ee1c44c8-cc84-48c2-aef3-5c65c8e4d5a8'::uuid,'906','996',3416,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('23b55ef4-22b2-4e83-b307-67213d2f88a9'::uuid,'906','997',3302,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c933c534-e28a-430a-89bc-d8c64764f99f'::uuid,'906','998',2629,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77f38e7e-527f-4c14-a590-64f1fd6a2b4f'::uuid,'906','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4436e3ea-1a8e-4aae-aaaf-d515cdf83159'::uuid,'907','995',3420,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c8152844-3237-44fa-9fe5-5bcd701379e0'::uuid,'907','996',3420,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('369ff3e5-28ff-4853-a3ba-6802102b93e2'::uuid,'907','997',3306,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('16ba1e86-cd40-4885-abf8-3d09ff58622d'::uuid,'907','998',2633,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('875d68c8-aa33-483e-84b4-330d2cb12529'::uuid,'907','999',2411,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3398a2ef-60ae-4812-a4c2-3b88edc5e7d7'::uuid,'908','995',3422,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2f1b2a7a-c0e8-4ef1-87cf-3e29cd2229e0'::uuid,'908','996',3422,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0fbe46f2-a73d-45a9-a8ea-0711dc926ce0'::uuid,'908','997',3308,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('852ed1e3-51ab-42bd-8016-a214213b2038'::uuid,'908','998',2635,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59d3ea5c-c785-4591-a46e-d363f323047e'::uuid,'908','999',2377,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f364acdd-e85a-402d-ab80-b20d4076fbb9'::uuid,'909','995',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('83961a47-fd34-4084-a2f1-6f3038704925'::uuid,'909','996',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('577a7428-9b50-4462-b7a9-3cfabb9e6d35'::uuid,'909','997',3285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cbf306a6-45d7-4ab9-aebd-0c2657ac0336'::uuid,'909','998',2613,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ca8dbf1-c1d6-4e14-9afb-2fe8d830c4cd'::uuid,'909','999',2390,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2adedd90-0e78-477b-8e92-ffb33ded8349'::uuid,'910','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('82fe7d07-7260-4a46-a152-398ac32a3746'::uuid,'910','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a99a669a-2df0-4969-bb93-83e72fc7def5'::uuid,'910','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e0b953a3-b94c-4599-acc4-6c2e3e2e1271'::uuid,'910','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('008344d9-ac7e-4cec-b5f4-0682cfc7932d'::uuid,'910','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('02f742af-f9f1-404d-9d58-15a298e09850'::uuid,'911','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('eae21f4e-f7a1-4fe8-afa1-a4d372587887'::uuid,'911','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c097fd33-68bc-4d80-bc87-addeebd74880'::uuid,'911','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2a23830f-6996-484a-a54f-85ba95c1feaa'::uuid,'911','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('61bc56c1-5203-40f8-8231-baa7036b7f61'::uuid,'911','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5fcea410-90ee-4bb2-9ed6-7351305a9877'::uuid,'912','995',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7545d896-5030-4ae8-97fe-e278bd1d264f'::uuid,'912','996',3401,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('41b11120-e02e-450e-8f0a-794b71767c52'::uuid,'912','997',3287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98127bc8-928b-4d6e-bb94-2bdfae9fc426'::uuid,'912','998',2614,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3e5d8546-5a7b-4b21-ac0f-d831bb826ac5'::uuid,'912','999',2391,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('afd76365-c7f6-4519-a4a9-43d514f283cb'::uuid,'913','995',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5f6993be-17d8-4faa-8ced-acf86d6ff8e8'::uuid,'913','996',3380,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0f92d785-2d5d-440c-8ca3-1e48e760fdc9'::uuid,'913','997',3266,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cda4b9a9-3ac6-4111-b460-414f69d77bd3'::uuid,'913','998',2593,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('68c9a20e-0c18-4564-8e4a-18c67468b888'::uuid,'913','999',2335,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8aa965e9-dd8e-4011-9c83-69b682325822'::uuid,'914','995',3388,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6b4f742a-b0dd-47ee-87f4-e4602bc55ef2'::uuid,'914','996',3388,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('13b3bd26-3417-45ca-a110-ddf3605d70cb'::uuid,'914','997',3274,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('58f2b5ab-153b-44a7-92b4-5a64dd1e103c'::uuid,'914','998',2601,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f14a296-b152-4cf0-bf91-ed9a710abf4d'::uuid,'914','999',2343,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('235e0118-cbc0-4ddd-a917-816b4ab33ebe'::uuid,'915','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dc4d8ae8-8fd6-41d4-87ec-038b1d9c4bfe'::uuid,'915','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('88fdca35-7353-4633-b8d8-48bf7edbdac9'::uuid,'915','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4263d6fa-f06e-4484-917c-7ad37b33a199'::uuid,'915','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4a965f28-82a7-4e9f-bdd4-d92b91ac4342'::uuid,'915','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('819cdd81-9fbd-4c15-91e6-e9ef1f20caab'::uuid,'916','995',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ae93b1af-36a8-4063-aaf1-6c19bebd172f'::uuid,'916','996',3670,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('db4aeea6-f983-4b3c-b78c-1fee6987ca50'::uuid,'916','997',3412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f17bab16-39cf-4462-a032-0dd1829d346b'::uuid,'916','998',2604,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7d8ce794-1d08-45dd-bb06-3e32b27f18ce'::uuid,'916','999',2381,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b97ce934-d3ca-48d0-83e2-94a5560c1878'::uuid,'917','995',3417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c3b86d07-098f-4d56-b761-dab776c7aac5'::uuid,'917','996',3417,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('864982cf-8e67-444b-a64c-6bc3fe94b5c9'::uuid,'917','997',3303,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a0a82a3-ba2d-480f-8d4a-fa313cc1f93e'::uuid,'917','998',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b87c7f7b-d048-4a81-a421-ae1199381172'::uuid,'917','999',2372,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8f8c6394-91e1-40ed-976f-4a7ba2855e15'::uuid,'918','995',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('58e1c51f-d579-405f-bbd3-f313e7ebd4ea'::uuid,'918','996',3685,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('41bdb145-135a-4709-b40c-3d3ea0bc0c9e'::uuid,'918','997',3427,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a11ff6e4-24d9-4e37-8211-db3ed5a91446'::uuid,'918','998',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a1f6ac02-325c-41e4-8092-dae3597c7f2e'::uuid,'918','999',2396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0b56958f-d9e8-4da6-855d-959e9b1fe4a4'::uuid,'919','995',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8cdfed5f-7986-4624-b035-f61c73e028e5'::uuid,'919','996',3823,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0101f071-041b-414e-a09e-9c7257e88f5d'::uuid,'919','997',3430,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0ddfbcd7-8f37-4a8c-967a-c6384474b63e'::uuid,'919','998',2757,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0c7f33e-d7fd-44a5-8dbf-1eab32bc63f6'::uuid,'919','999',2534,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('23429fc7-047e-4e1a-b141-ba764d21b6c8'::uuid,'920','995',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfae9b19-779a-4c62-826e-939da53c885d'::uuid,'920','996',3513,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d216c69f-ea07-4312-8c7b-b70ccec34b81'::uuid,'920','997',3399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ca60699e-6647-4411-9a67-20d140b9195e'::uuid,'920','998',2726,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('03add82c-cecc-4a2d-aaa1-c43af8fb99fa'::uuid,'920','999',2468,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('293d36c5-5897-4172-b6a1-9260eb1ac8e5'::uuid,'921','995',3520,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c019e273-0d1b-40e6-96d8-f84698184ba3'::uuid,'921','996',3520,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00ee3250-aa63-464a-9204-32606786e853'::uuid,'921','997',3406,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e765509c-fd6d-4b1e-bacb-9c7cac8088bd'::uuid,'921','998',2733,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1685a26-6a91-4fe9-9bca-74fd41dff446'::uuid,'921','999',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8b7fceba-c45c-4cde-81b6-81b2e874a7e6'::uuid,'922','995',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5e835b22-3d2b-4a44-bd55-66f3d6d45221'::uuid,'922','996',3825,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('56be150d-9f68-43ca-9745-3262fb4725a9'::uuid,'922','997',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('447d06ea-c094-4a85-80aa-80003856a815'::uuid,'922','998',2759,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('64ff197d-fd33-4716-a25f-e80b20de435a'::uuid,'922','999',2536,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('00590561-9a27-4913-b9e4-2501d5dde6d3'::uuid,'923','995',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('855f4b23-e92d-4bfd-9e9e-8264f943f6b5'::uuid,'923','996',3691,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77a4591b-e1f4-40a3-b7ba-4119cb2e740f'::uuid,'923','997',3434,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f702816e-a4b1-48b0-8237-a03eedd06615'::uuid,'923','998',2625,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f24cdd04-e02d-4f4c-90e3-105d5a102d78'::uuid,'923','999',2402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73e8161e-272f-467e-b618-05430eefd9f5'::uuid,'924','995',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3e179fbc-a7f1-4301-b34f-9758f35961a9'::uuid,'924','996',3449,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b612e8fd-686a-4693-8d91-9a4d2815a460'::uuid,'924','997',3335,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1ea864bc-982d-47f4-8bb7-2667d500fae2'::uuid,'924','998',2662,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cc06ba3f-b7c2-4df8-95fd-7eb499504bcb'::uuid,'924','999',2404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('804f1732-228c-48e8-bedc-72ba7088e4d3'::uuid,'925','995',3452,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('11d2c101-7099-4629-b2dd-48b4030f0e3f'::uuid,'925','996',3452,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('86f6a344-e032-4030-b0aa-4f940d071f50'::uuid,'925','997',3338,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7b58a050-4747-435c-81e0-ad3f7a62cc77'::uuid,'925','998',2665,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('43ac3624-34ff-48c1-9dd9-2a880baba0f0'::uuid,'925','999',2407,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fe6bc698-7f13-4a8d-8f94-f8203b3c7fb1'::uuid,'926','995',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('35eae2f5-0146-49d4-b1d3-af2d42bd7e18'::uuid,'926','996',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2284669-b9d3-47da-bd2b-7de3f0e61ecd'::uuid,'926','997',3317,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d200e366-4b94-40c4-a3f3-7f41d0baff73'::uuid,'926','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('77c59bbf-9917-466d-88d7-975f63be858f'::uuid,'926','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('23aeb394-aa74-4515-ae93-562c90d48994'::uuid,'927','995',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d343aeb2-2a71-4401-ba52-f77dde2e7c7a'::uuid,'927','996',3431,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f7a57559-2acb-4f7f-b3b0-6ae5243fbf2c'::uuid,'927','997',3317,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('851010b5-be85-41db-8a30-82583d0095e1'::uuid,'927','998',2644,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0fc85b97-1304-4ba6-8f71-14eae5e6c4b1'::uuid,'927','999',2386,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('183056f8-444a-415c-bd4b-3a6b23622d34'::uuid,'928','995',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1f4b18d5-ca9a-4c06-92f6-ff36fb88e28c'::uuid,'928','996',3705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f9d74ff2-e916-4ff0-b346-3daecaa755c2'::uuid,'928','997',3447,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aed5e0c5-ceca-4ffd-aeb8-a8f0a0c953c9'::uuid,'928','998',2639,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aeab1f30-c8d3-46e6-bcaa-7380a3327c74'::uuid,'928','999',2416,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('693f47b0-be26-4456-9931-ec38fefeae64'::uuid,'930','995',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('39d2302a-8490-4a55-b57f-bcb706d96287'::uuid,'930','996',3409,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0a780746-eb2f-48f6-9733-78c363932a29'::uuid,'930','997',3295,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ebce3fc6-2495-410c-813b-08d3c81c7a52'::uuid,'930','998',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cf3833a-b417-4664-83b8-e296cdccad7d'::uuid,'930','999',2364,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('72a7b14b-b08a-4649-8695-0630f5686a64'::uuid,'931','995',3393,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8a73a388-813b-4cc7-ac06-c8bbe76e05f3'::uuid,'931','996',3393,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bdddfb8b-5d6e-4474-970c-5911260c9cd0'::uuid,'931','997',3279,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e2b553df-96f4-42c9-bc9b-07cd7901a014'::uuid,'931','998',2606,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0b82513c-1c60-4bfe-a8ce-b39d3b62b9f6'::uuid,'931','999',2348,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f4ce00dc-74b2-4ad4-a463-2359b858e570'::uuid,'932','995',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b041fa51-e93f-4a85-b271-bbe55d6e50d2'::uuid,'932','996',3541,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ed14623d-811f-4a0a-a358-c5b22d2c1185'::uuid,'932','997',3148,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d82302fd-ee2c-452e-8821-b420a6f1c528'::uuid,'932','998',2475,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac3eec1f-ec2a-440f-ac0b-82cdecc1c334'::uuid,'932','999',2253,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b8054c36-8100-499a-aedb-e6db8610ae68'::uuid,'933','995',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e69d29ca-3a9f-4d48-904a-1e4e830f4c95'::uuid,'933','996',3573,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('059cccab-3b60-497b-b251-de2de6e6da28'::uuid,'933','997',3316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('30b5cf86-b509-47e6-8dcf-61a9bde3df55'::uuid,'933','998',2508,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e96a284a-bb41-44e5-81b8-934c407d5bdd'::uuid,'933','999',2285,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('74ae2589-5e13-4659-87b7-d1dae9ce83e9'::uuid,'934','995',3288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('34c6afd9-bcac-4031-b543-9ff8b0400caa'::uuid,'934','996',3288,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('980d25d1-23ab-4ee7-a70f-407f5eba1622'::uuid,'934','997',3174,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5ac2682d-b1b6-40d8-bfbe-324dc58dbb26'::uuid,'934','998',2501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4d1556ba-5ae9-4764-bdaf-6cfb3b055950'::uuid,'934','999',2243,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('52ee892d-3904-4827-adb7-10685a01793c'::uuid,'935','995',3281,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fc574784-b8a8-41ab-b640-01195ffc695c'::uuid,'935','996',3281,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4468f7e-643c-4fd3-9f00-3e1bd66344b1'::uuid,'935','997',3167,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e566ef79-7bc2-4a16-ada1-4d844a535d1e'::uuid,'935','998',2495,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dd6ef0a-9423-49bf-ad4e-61fff33bcbab'::uuid,'935','999',2272,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f407684e-ddf4-4027-a064-a50a7dcc3050'::uuid,'936','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4383b740-d29c-418c-b71c-8fce4be28edf'::uuid,'936','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('eb358211-591e-43d9-baa7-e43b9618c4b2'::uuid,'936','997',3070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('017ec8d0-16a9-4704-bfe0-a174b16a77cb'::uuid,'936','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('290ec10d-c0cf-46ce-ba1b-aea88480003a'::uuid,'936','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a06f0a8-00c2-4e06-943c-5af3710120c5'::uuid,'937','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ca8900b-ba83-4c28-bad7-33ab8c662f35'::uuid,'937','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4bba2189-8095-4a79-a2d2-2a5ac39f2c61'::uuid,'937','997',3070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f18dc52a-8cf4-416c-906b-a88b8522ed42'::uuid,'937','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a3f13314-6d74-4299-993c-3ffc1310eb10'::uuid,'937','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('19687533-5566-4416-a63e-3389e1dd2fa6'::uuid,'938','995',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e30308bb-c8cb-4de2-b4a4-7e55c287a20b'::uuid,'938','996',3463,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8148a6e7-002d-45ab-a4e4-9073ea384901'::uuid,'938','997',3070,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bebe7186-33ef-4b7e-8642-582e91ef0909'::uuid,'938','998',2397,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6f5e00f5-457b-4006-a7a3-aee9d2a61e5f'::uuid,'938','999',2175,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('45359820-0cc3-4b11-bb2c-0e5fa2aaf247'::uuid,'939','995',3163,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c1c1e3bd-fc1a-4089-9469-83ff74b992ed'::uuid,'939','996',3163,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bf39d04c-5b70-494c-aac0-9cfea509e9b9'::uuid,'939','997',3049,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('53bc7d01-c175-455a-91c8-51bcb3eee33d'::uuid,'939','998',2376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ab75d47-bf2f-4b80-802e-b5f64c4792b4'::uuid,'939','999',2118,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('9280c152-c831-4684-8342-3d529f5a3c05'::uuid,'940','995',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e3406ca4-25a3-4420-a7c0-f44786b447cb'::uuid,'940','996',3376,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d0452d48-6cf5-4955-8999-8a64bde87a13'::uuid,'940','997',3119,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5991f9c1-ebc6-4f03-b0ac-0d65c2a0f33b'::uuid,'940','998',2310,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1ae6c998-33c0-43e0-963a-d04baf540973'::uuid,'940','999',2087,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aaf43032-ac79-4446-ab68-4b8ba5827f2e'::uuid,'941','995',3075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ef212642-40b3-456e-aa43-c2d0663acaaa'::uuid,'941','996',3075,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a4be5583-501b-4832-a263-964c2a67b040'::uuid,'941','997',2961,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('3aefeb0d-29ac-4e7c-bb99-4a42f4cdf445'::uuid,'941','998',2288,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6a34db64-a890-4cc9-aa45-e1a69ae9cce9'::uuid,'941','999',2030,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('86fb16e9-dbed-42b9-a8aa-2dedd5d9e086'::uuid,'942','995',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d811c335-6d1c-4f59-9214-d5f0468cf4f1'::uuid,'942','996',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14623bc4-a776-4643-818d-4518b39fc2fb'::uuid,'942','997',2906,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8dbc6437-3b8e-4708-a782-766e500b7e0a'::uuid,'942','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2e8867b4-7670-454d-8af3-e3d83d4c085d'::uuid,'942','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f814cc53-bc52-4d79-b0ca-8a99db037108'::uuid,'943','995',3106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6808ddfd-b63a-4b9c-9f38-5321c93204b5'::uuid,'943','996',3106,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('95539c86-d8a2-4e82-b2ea-92e49f710454'::uuid,'943','997',2992,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('00f38731-9c78-45f6-ace9-aca58f54c5af'::uuid,'943','998',2319,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ac2dee37-892e-46e1-addd-e16713a1cfef'::uuid,'943','999',2097,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('755a162f-e650-4c61-b62a-39bda8de699b'::uuid,'944','995',3094,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('28bd4f3a-d50e-4adf-981f-41b1716d28b5'::uuid,'944','996',3094,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('449cb0cf-ce32-4480-a482-3c0017f56de4'::uuid,'944','997',2980,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('29284959-8065-4d45-a921-9be1c3b36486'::uuid,'944','998',2307,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f41f1b07-f2cb-4381-8d1b-1acca7b69a5c'::uuid,'944','999',2049,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd7739aa-b2fe-49d7-b18b-c48f68c3afb5'::uuid,'945','995',3060,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d3fa5c5d-8da4-4cba-a3c1-702aa67799e6'::uuid,'945','996',3060,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('df6862a3-b429-44b3-bcba-1d33ea73d7d4'::uuid,'945','997',2946,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('67df4e23-a3f3-4ad9-a120-207f67ce1991'::uuid,'945','998',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df9ec58a-6901-497b-b27e-ad5b9f537642'::uuid,'945','999',2015,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4cdc60b9-c147-4704-8d86-a011d74d7ff8'::uuid,'946','995',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7534308c-64a6-41bc-9aa0-394de69172c7'::uuid,'946','996',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e9f084e0-2d57-482e-b945-429bec5be2ab'::uuid,'946','997',2953,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cd523be2-1e7f-4e4f-82a5-ca6caadede0e'::uuid,'946','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('556035ab-46e7-4657-b30f-a7d829793fee'::uuid,'946','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b71234bd-3bdb-484c-94a3-a7b522b14ffc'::uuid,'947','995',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90448237-e101-4ebe-a2a0-b1afb77fdfa5'::uuid,'947','996',3067,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4c85fd86-bee0-4a5f-a550-691e0ea1aaa2'::uuid,'947','997',2953,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6030d06-f9fd-4b6d-9be3-ef406fec9707'::uuid,'947','998',2280,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3ca47423-74cd-4b95-8ae1-da7ae396e273'::uuid,'947','999',2057,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('939e22dd-bfae-47f7-a646-4ffefb819514'::uuid,'948','995',3066,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7bee1f03-e6e5-4d40-a010-cd3dd8c219e6'::uuid,'948','996',3066,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ae69058c-8022-43dc-8833-139c2d7bc91f'::uuid,'948','997',2952,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('98aa2bd4-d0bf-45e9-b85a-1fb921ff6e31'::uuid,'948','998',2279,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8e1da881-9023-4bb6-859f-90e7d4a3a316'::uuid,'948','999',2021,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0cc3e71e-0954-4207-807d-2b1e5c3fe4e7'::uuid,'949','995',3071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9f22fa7e-ef3d-42c5-b68c-89bf28eb169c'::uuid,'949','996',3071,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a8d5d42c-6fcb-4f3e-815f-346ca9a1809c'::uuid,'949','997',2957,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('15ac7628-a7f1-45a5-b4e6-c17b0f7095b3'::uuid,'949','998',2284,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5891e070-5e15-4857-9e87-0354870bf62a'::uuid,'949','999',2026,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0f3da50e-ebc6-42d1-9968-1907b71eb33c'::uuid,'950','995',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9617c28d-9571-4227-a96a-b77d36cc163c'::uuid,'950','996',3413,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4875cab4-5dee-481e-8e2d-1d6a1eb3c8fd'::uuid,'950','997',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('12c9b2fe-4dd4-40d3-9f41-ff77083da38d'::uuid,'950','998',2347,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27aada10-6608-42b7-9f1f-793f27291e32'::uuid,'950','999',2125,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6bcfb91a-0490-4d1d-b29e-974b6ad0d60f'::uuid,'951','995',3103,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6fab1630-1322-4e27-9677-5c3eb732f44c'::uuid,'951','996',3103,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e8b48167-0a44-48f3-b1d2-cd5bde765e02'::uuid,'951','997',2989,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9e384dd7-1f9d-497e-9667-b4dcb01775e1'::uuid,'951','998',2316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b0a20ee-16af-48ca-b607-ee0e5f1feaa8'::uuid,'951','999',2058,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('4758fbe0-a3df-4e12-aa7c-2a0f1103cab9'::uuid,'952','995',3064,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4385882e-d18e-4704-935d-46b2c81ef538'::uuid,'952','996',3064,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bfa6b8d9-333f-40b4-af55-3822b9bcf512'::uuid,'952','997',2950,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('7e4060a6-aa4f-455d-a805-534bc45f385b'::uuid,'952','998',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9c9eac23-7275-4f12-9efe-b6ea8dd1b3a1'::uuid,'952','999',2019,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9074e6ed-02ce-4907-bfaa-55583c2e6381'::uuid,'953','995',3092,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a133309f-49a8-4916-b500-3cf00f1af55b'::uuid,'953','996',3092,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('6e46eba1-b31d-4d0c-918d-1fd28cccd7e4'::uuid,'953','997',2978,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('51638b48-3129-4952-b721-8fd6cd6d7e56'::uuid,'953','998',2305,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('06bcf225-d576-47e3-870a-c03d32d71fce'::uuid,'953','999',2082,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('aaffd517-06af-4392-861a-f9dda353d7d6'::uuid,'954','995',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bfead90b-755d-4f85-8827-8505d540e0c2'::uuid,'954','996',3300,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d688ea6-76b4-4999-ac48-07cde92beba3'::uuid,'954','997',2907,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0c55ff7e-6a5e-41ba-948b-295459aae1c3'::uuid,'954','998',2234,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('92fbc802-ada3-4a01-92d2-73f42f38545c'::uuid,'954','999',2011,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be63cd8c-08a1-4600-8608-5f5d6b4ec733'::uuid,'955','995',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f8e1b682-7788-4592-9474-1ad562b3cbfd'::uuid,'955','996',3129,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('69984096-4c1b-4bb2-b41f-19ecfa99ee60'::uuid,'955','997',2735,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3a56b9d5-c19e-4f04-b848-66e2d594719e'::uuid,'955','998',2063,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5a115aa9-061b-498a-afbf-4361997c6d9b'::uuid,'955','999',1840,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('b6815132-64fc-4673-8a18-414c7c889637'::uuid,'956','995',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('37025990-fd34-40e9-81d7-4054750e03ab'::uuid,'956','996',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('a572bd92-4e8b-4ba7-bf1e-80f3f9a16753'::uuid,'956','997',2906,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e0bb6c41-c987-4f26-9dcd-1afebbf6625e'::uuid,'956','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ab7a15e-3fd7-4c57-bd5c-190bd522dda6'::uuid,'956','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f0cbf820-70a0-4e68-93aa-04caad971e61'::uuid,'957','995',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e2428ab-6b15-47b6-bb9b-a4722658095a'::uuid,'957','996',3329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e1a7afaf-73b7-4862-b89d-03f9a252cfe6'::uuid,'957','997',2936,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1f8bb5bb-8a45-4093-bb5f-661809100a54'::uuid,'957','998',2263,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('53450b97-36d1-4429-b6c5-ae0dd9ce16f3'::uuid,'957','999',2040,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('6d3712a0-c759-43a3-8b84-8c5044c2f3bf'::uuid,'958','995',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('bb77e1c5-2c3e-42dd-aba9-81730036b221'::uuid,'958','996',3020,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('366c242b-7f3f-4702-9074-400e5bbf6652'::uuid,'958','997',2906,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('84209b3f-99d6-4c9e-a9c4-c51212779159'::uuid,'958','998',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cb1f2666-1b36-45c4-82be-addbd99111bd'::uuid,'958','999',1975,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9d5ba2a2-9afb-4e85-b087-d7f62dcde772'::uuid,'959','995',2954,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('33f8a138-2ab8-4d11-86b9-168ff04ca88c'::uuid,'959','996',2954,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5bec15aa-d8d5-43fe-9dca-23fc0bb30ba5'::uuid,'959','997',2840,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('728aab7b-6e48-4d43-a3cf-86913597deea'::uuid,'959','998',2167,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c383f13b-f374-4d43-af97-d4f52da1c988'::uuid,'959','999',1944,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('e158c855-1bbe-4eda-a254-d16eabba9ad8'::uuid,'960','995',2862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1598501b-5617-47ff-a488-34dc5209d543'::uuid,'960','996',2862,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c7e53afd-d27e-45a8-bdc8-aca168c79ddb'::uuid,'960','997',2748,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5638c60c-6f7d-4cee-b2b0-fa436f818a5d'::uuid,'960','998',2075,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d2ff0a8d-ec69-4871-a599-182cc734beac'::uuid,'960','999',1817,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('149b6699-76fc-4a98-942c-22834b6f54d7'::uuid,'961','995',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e9cd510c-fe9f-4566-846a-39f956e5167c'::uuid,'961','996',3198,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dfdec56a-4737-45fd-bbc4-771eaf3c5cd5'::uuid,'961','997',2805,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('70297ba9-f61e-46eb-bef6-3e4e2c1b329c'::uuid,'961','998',2132,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('84de9fa3-7ab5-4287-a1ee-4f50fcde907e'::uuid,'961','999',1910,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ee847d28-df8b-466b-9cca-a983fcd6662c'::uuid,'970','995',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2acb1e1a-9585-4742-b3ae-934c3a04e3c8'::uuid,'970','996',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5aa23d3-02fc-42a8-aea7-6cb3426b81ec'::uuid,'970','997',2327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('19267ad4-8113-47a0-8974-2c0dbc17b153'::uuid,'970','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b50e7b0d-23c0-4f0c-906a-aa88b557dd7a'::uuid,'970','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('df336bc5-30c2-4cf5-a44b-cba6df98cf59'::uuid,'971','995',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('78736c80-cd27-4c1a-8d0b-fff5c8c1f9f5'::uuid,'971','996',2743,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c96692fb-bf9b-431c-bcf0-e7fea20725aa'::uuid,'971','997',2350,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b8a8dfd4-4a88-4d8a-a09c-934941a35901'::uuid,'971','998',1677,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('186bb618-c2c8-46bd-8a94-83d3d650c502'::uuid,'971','999',1455,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('0426254a-8457-4b8b-9e57-14dea3a85a26'::uuid,'972','995',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('380c48bc-09bf-4d67-b704-62c45ce048f7'::uuid,'972','996',2441,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('934ab814-c8f7-4219-b93c-ebaf430113b4'::uuid,'972','997',2327,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('72d6bc1c-bbdd-417a-ba71-5fda033fa3f6'::uuid,'972','998',1654,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('c91eaf5a-dedf-408d-a028-50549c7674fd'::uuid,'972','999',1396,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('a8786c1e-3428-4ddd-88b8-5726a3aece46'::uuid,'973','995',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b6f63d00-9642-43bb-899b-0ef2a5cacecb'::uuid,'973','996',2790,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b31a7abd-4b1d-47f9-a72b-92dd60f9a7a2'::uuid,'973','997',2533,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b984d898-2991-4643-a1db-43bc6443b8d0'::uuid,'973','998',1724,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('403239ed-6fde-4573-b177-55a1b6945275'::uuid,'973','999',1501,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7a8e6f31-bb5f-4fc5-adf0-f90dc38b19ef'::uuid,'974','995',2626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('02ec434a-d175-4a5b-a05e-6be2a48b82e0'::uuid,'974','996',2626,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('242fe901-6dc8-4f93-894a-c9950c5fcd77'::uuid,'974','997',2512,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('5fe53380-a00f-41c4-8717-24516391ebd3'::uuid,'974','998',1839,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('167448d3-223d-4b0b-b573-4bead2c6ded5'::uuid,'974','999',1581,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('312fad39-cda3-48ba-ad0f-41fbcaad6993'::uuid,'975','995',2714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b650fc32-59aa-4507-b9de-53981ab70b77'::uuid,'975','996',2714,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('0819c5da-6760-4fa3-894b-0465a72192b4'::uuid,'975','997',2600,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f23b1654-cfb3-4553-87a2-b522994318a9'::uuid,'975','998',1927,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('3d756af3-1ea1-43bc-8175-7c9e3db4dbea'::uuid,'975','999',1705,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('54dbdd96-d1f8-4e2d-ad4c-ae5a34f4f752'::uuid,'976','995',2749,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('cc247be1-e6e4-4176-8c6b-b9eb99591b1b'::uuid,'976','996',2749,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d8265f30-64d9-4fb0-8260-4515cef6c4c6'::uuid,'976','997',2635,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('99b79117-47f5-4926-beee-d07c941e8342'::uuid,'976','998',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('65a26abd-75c2-484a-abd0-47377b2af00b'::uuid,'976','999',1704,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6e5d5b20-ceba-4efa-9040-efef0cb591e9'::uuid,'977','995',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('949a0ff1-250f-462d-8165-84aedc1a9a0e'::uuid,'977','996',2876,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('dbedf4c6-07a9-45ad-803e-ab8e91ffa6f5'::uuid,'977','997',2619,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e17841c-ba1f-4cf0-b4c0-461faeff9c5d'::uuid,'977','998',1810,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('009c6f63-6b1d-41aa-95e0-d35571fff7ca'::uuid,'977','999',1587,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('ade4d7c5-d25d-45c8-b472-fd025da34e96'::uuid,'978','995',2554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ace1cc70-50cd-4a0f-86e2-cf4cbec6fff5'::uuid,'978','996',2554,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('30ad42d0-3f92-4c3d-b053-97d6742f0cd0'::uuid,'978','997',2440,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8adbbf84-607a-4325-888d-1843c74ccf65'::uuid,'978','998',1767,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f910ca1b-984c-427f-a53e-d75f4662217a'::uuid,'978','999',1545,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('73f2dac7-4dce-4d96-bc2d-4e2293137aa7'::uuid,'979','995',2662,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('536e1438-5813-46b3-9dea-e591b905004f'::uuid,'979','996',2662,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('124ea666-4db2-459e-a888-6c0ff7039d0b'::uuid,'979','997',2548,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d811eb20-e8f9-4834-8fe6-a7892a84b93b'::uuid,'979','998',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('99cf0bf7-1015-4d33-8455-e94b161d480f'::uuid,'979','999',1617,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('a9f05b90-4a9a-458c-b71c-1c586e1025e1'::uuid,'980','995',2287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ceb321d5-72a9-4672-a99d-8fb2ca558804'::uuid,'980','996',2287,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('584aa83f-9962-40a8-ac55-2ca77d598949'::uuid,'980','997',2173,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4821731e-177e-465b-816d-d9b0d38c2bc8'::uuid,'980','998',1500,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('cfdd7982-c17b-4a34-a04b-e474f13b5c43'::uuid,'980','999',1278,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('25f1a812-f54c-4f57-af41-f596dcf7ddc8'::uuid,'981','995',2269,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ab0109fb-6405-4972-b0eb-34f9d9eb8cfa'::uuid,'981','996',2269,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('2d4e3c4d-c5e6-4aa0-8768-f80fbde13422'::uuid,'981','997',2155,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('615e4af9-4756-41f7-874b-41493feb60a2'::uuid,'981','998',1482,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7330afa3-3a7e-40b7-a5b2-54794266cfd9'::uuid,'981','999',1224,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('7b2e5d6e-c0c8-4386-afa1-964434d033ef'::uuid,'982','995',2199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('14352f75-789f-4967-a269-e2905cfceef4'::uuid,'982','996',2199,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('237596f9-3d38-4957-9641-7ad30a9f1845'::uuid,'982','997',2085,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c44908f7-fa65-4b26-a092-14f67cf0a4ae'::uuid,'982','998',1412,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('d74977b3-9949-4f95-9a8b-bf7c2987ba77'::uuid,'982','999',1154,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e35945fb-df4f-4184-9ea5-547b061bb269'::uuid,'983','995',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('ea465b3c-a578-4d18-8d86-7ac793caf12c'::uuid,'983','996',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('db2c7afc-1f37-41e9-8a49-dd7fa701b4b9'::uuid,'983','997',2186,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('4f548e0b-3f33-41a0-9c3b-9b8720ae1db0'::uuid,'983','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('36b22b11-5724-41ef-9648-4cc7bbd63ad0'::uuid,'983','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('fe855488-ef5b-490b-8b71-8bb3fa2b48ca'::uuid,'984','995',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('495dd38e-e155-4134-bea9-f1aca35cebdc'::uuid,'984','996',2300,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c4d51642-1a85-4a9d-baf6-f8f3fc2e8c67'::uuid,'984','997',2186,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b5c3ae76-7ded-4729-8438-5671ed459fc9'::uuid,'984','998',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('63037344-073d-414e-b6f0-bb3906a94bbc'::uuid,'984','999',1255,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8fa80007-cc09-4cb8-81fe-ed56a644a800'::uuid,'985','995',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('6c76a7ef-cee2-4cc8-88ef-818c15e9ad9a'::uuid,'985','996',2626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('107ac44d-3931-405b-9894-a7bd1f9f99f6'::uuid,'985','997',2233,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('4435924e-75a3-4ef0-9e11-45eb95716387'::uuid,'985','998',1560,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('bd431a9a-c65a-4f81-9538-e3a73948da04'::uuid,'985','999',1337,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('da191272-f540-4c3a-8193-853241d0f314'::uuid,'986','995',2447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('d7c79c69-0905-4443-b392-4ae81a3a8a31'::uuid,'986','996',2447,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('f6f6e232-4451-40e9-9fd3-2e001266f336'::uuid,'986','997',2333,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('44578e46-55a0-4deb-a605-9aa8d30a0df6'::uuid,'986','998',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8140c08a-48d3-453a-b413-5342b1b35148'::uuid,'986','999',1402,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('0d58b652-08da-432c-97ec-6cefa9d39947'::uuid,'988','995',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('2d01dcbf-ee4b-47b6-ba37-09c77a42a4da'::uuid,'988','996',2539,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('27f0eee4-afca-4388-a157-83bd7cac8f03'::uuid,'988','997',2282,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1bc1aef9-3863-4973-bda7-8c1195296bdc'::uuid,'988','998',1473,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('9cfb0f14-3de8-4406-a31a-377746f3e638'::uuid,'988','999',1250,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('531cdde9-aba8-48a9-ba99-ad02405ba55c'::uuid,'989','995',2399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2feae6f-5d88-4565-8dcc-e778556a17a2'::uuid,'989','996',2399,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('63fbd49b-7876-418f-b473-59c16bb8eaec'::uuid,'989','997',2285,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('90e6f7c4-c08d-44c0-ad11-94eedd993ad7'::uuid,'989','998',1354,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('1808028f-6342-41dc-bd1d-b2f9697d0c37'::uuid,'989','999',1227,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('fa4e09e9-a94c-4810-8555-ee3605ed8fe0'::uuid,'990','995',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('10148f26-4791-495d-b859-a0187eb212a6'::uuid,'990','996',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('e77e6827-cb04-415c-8112-59e55c398462'::uuid,'990','997',2254,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8bdd8590-2427-4126-bbee-54736be4f677'::uuid,'990','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('16f8e729-0878-47f1-a212-a22b4ba5bde8'::uuid,'990','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('191e629a-cb16-497f-b985-0f11425b3e17'::uuid,'991','995',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('f00adb20-d63f-4416-b1dc-babb8e713afa'::uuid,'991','996',2612,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8850376b-e8dd-465f-81ef-92a6017f44da'::uuid,'991','997',2218,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('80cc80c5-bed1-4155-b012-22ea3ba76b51'::uuid,'991','998',1546,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5445b0c2-0b76-4a6b-8a89-bb60788397bb'::uuid,'991','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7dfbbea7-0503-4940-94e5-c150c2806b3b'::uuid,'992','995',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('8951f6ca-316c-479d-b032-e897a440e130'::uuid,'992','996',2368,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('b2a67e0d-afa7-42ea-b13e-536a2053a1a1'::uuid,'992','997',2254,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('414f0165-1087-40f3-83fd-69fa9d9caa83'::uuid,'992','998',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('b20c0f3f-e17c-4dfd-ba5a-3a29b962c3ee'::uuid,'992','999',1323,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('55557a49-403f-4bc0-b263-672c6daa0475'::uuid,'993','995',2413,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('c5afaa03-b8d4-4b7f-b47c-1a9a96bc80d0'::uuid,'993','996',2413,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('9a3aadf4-d1f2-4b3d-97fb-528832f21b32'::uuid,'993','997',2299,'2024-12-18 16:32:42.426418','2024-12-18 16:32:42.426418'), + ('05c7f3d5-a027-4799-bb5f-cb80293eca61'::uuid,'993','998',1626,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('7ee30ae6-7bac-475c-9492-c52e44fa72e0'::uuid,'993','999',1404,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1e98289e-97eb-48a0-b19e-668ede74690a'::uuid,'994','995',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('8ef44264-5fdc-42a0-af55-720459549963'::uuid,'994','996',2747,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('be0835f0-7119-489b-8df5-a1259251a538'::uuid,'994','997',2489,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('1b19f547-e211-4be5-b59b-ad03fb852fba'::uuid,'994','998',1681,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('fd00a1c7-c25e-4be9-a871-be904062680e'::uuid,'994','999',1458,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); +INSERT INTO zip3_distances (id,from_zip3,to_zip3,distance_miles,created_at,updated_at) VALUES + ('f6378646-8ad2-4748-a395-12f945119023'::uuid,'995','996',329,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e032eb39-1392-4143-9e37-a830ab5107c2'::uuid,'995','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('5f3b250e-23b2-44a3-839c-3997e54c246a'::uuid,'995','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aac845e4-d3c9-4707-8c37-35046af8c9d2'::uuid,'995','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('ce299517-637c-4ece-a514-1d26a4441f99'::uuid,'996','997',358,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa50ed06-8b18-4288-8035-c1a381c012de'::uuid,'996','998',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('aa818f47-e945-42dc-8a9c-8ce2340dd6b4'::uuid,'996','999',1286,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('e6993533-2857-4ed4-b720-dfeef114f24d'::uuid,'997','998',1029,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('59280b50-2227-401b-8a14-0e9847a33fc0'::uuid,'997','999',1156,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'), + ('297a3af8-5a07-4d88-b515-c359085b5eb9'::uuid,'998','999',316,'2024-12-12 15:55:50.041957','2024-12-12 15:55:50.041957'); \ No newline at end of file diff --git a/migrations/app/secure/20241218201833_add_PPPO_BASE_ELIZABETH.up.sql b/migrations/app/secure/20241218201833_add_PPPO_BASE_ELIZABETH.up.sql new file mode 100644 index 00000000000..1c147d624fe --- /dev/null +++ b/migrations/app/secure/20241218201833_add_PPPO_BASE_ELIZABETH.up.sql @@ -0,0 +1,30 @@ +-- Local test migration. +-- This will be run on development environments. +-- It should mirror what you intend to apply on loadtest/demo/exp/stg/prd +-- DO NOT include any sensitive data. +INSERT INTO addresses +(id, street_address_1, street_address_2, city, state, postal_code, created_at, updated_at, street_address_3, county, is_oconus, country_id, us_post_region_cities_id) +VALUES('6f321986-86ff-4e16-9ec3-5fc561deaf9e', '1664 Weeksville Rd', '', 'Elizabeth City', 'NC', '27909', now(), now(), '', 'PASQUOTANK', false, '791899e6-cd77-46f2-981b-176ecb8d7098', 'd8541f35-2c8b-4bee-8fca-cb67582ce34e'); + + +INSERT INTO transportation_offices +(id, shipping_office_id, "name", address_id, latitude, longitude, hours, services, note, created_at, updated_at, gbloc, provides_ppm_closeout) +VALUES('4cd300fb-0a45-478a-8f55-5aba4c5921b3',null, 'PPPO Base Elizabeth City','6f321986-86ff-4e16-9ec3-5fc561deaf9e',36.302952, -76.245804, '', '', '', now(), now(), 'BGNC'::character varying, false); + + +INSERT INTO office_phone_lines +(id, transportation_office_id, "number", "label", is_dsn_number, "type", created_at, updated_at) +VALUES('f8661e7a-24c4-467a-9f55-9004ffac472e', '4cd300fb-0a45-478a-8f55-5aba4c5921b3', '(252)335-6362', '', false, 'voice'::text, now(), now()); + +insert into office_emails + (id, transportation_office_id, email, created_at, updated_at) +values + ('6a46978f-9ea2-4535-8f80-dae8e6a15595', '4cd300fb-0a45-478a-8f55-5aba4c5921b3', 'D05-SMB-BaseElizabethCity-HHG@uscg.mil', now(), now()); + +INSERT INTO duty_locations +(id, "name", affiliation, address_id, created_at, updated_at, transportation_office_id, provides_services_counseling) +VALUES('4b6c3be8-961d-44c6-b0f7-bd6c205cc3f6', 'PPPO Base Elizabeth City', 'USCG', '6f321986-86ff-4e16-9ec3-5fc561deaf9e', now(), now(), '4cd300fb-0a45-478a-8f55-5aba4c5921b3', true); + +INSERT INTO duty_location_names +(id, "name", duty_location_id, created_at, updated_at) +VALUES('837a16cd-5dbc-48af-a987-7ec238e7b186', 'PPPO Base Elizabeth City', '4b6c3be8-961d-44c6-b0f7-bd6c205cc3f6', now(), now()); \ No newline at end of file diff --git a/pkg/factory/domestic_other_prices.go b/pkg/factory/domestic_other_prices.go new file mode 100644 index 00000000000..b878e926d48 --- /dev/null +++ b/pkg/factory/domestic_other_prices.go @@ -0,0 +1,49 @@ +package factory + +import ( + "database/sql" + "log" + + "github.com/gobuffalo/pop/v6" + "github.com/gofrs/uuid" + + "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/testdatagen" +) + +func FetchOrMakeDomesticOtherPrice(db *pop.Connection, customs []Customization, traits []Trait) models.ReDomesticOtherPrice { + customs = setupCustomizations(customs, traits) + + var cReDomesticOtherPrice models.ReDomesticOtherPrice + if result := findValidCustomization(customs, ReDomesticOtherPrice); result != nil { + cReDomesticOtherPrice = result.Model.(models.ReDomesticOtherPrice) + if result.LinkOnly { + return cReDomesticOtherPrice + } + } + + // fetch first before creating + // the contractID, serviceID, peak, and schedule need to be unique + var reDomesticOtherPrice models.ReDomesticOtherPrice + if cReDomesticOtherPrice.ContractID != uuid.Nil && cReDomesticOtherPrice.ServiceID != uuid.Nil && cReDomesticOtherPrice.Schedule != 0 { + err := db.Where("contract_id = ? AND service_id = ? AND is_peak_period = ? AND schedule = ?", + cReDomesticOtherPrice.ContractID, + cReDomesticOtherPrice.ServiceID, + cReDomesticOtherPrice.IsPeakPeriod, + cReDomesticOtherPrice.Schedule). + First(&reDomesticOtherPrice) + if err != nil && err != sql.ErrNoRows { + log.Panic(err) + } + return reDomesticOtherPrice + } + + // Overwrite values with those from customizations + testdatagen.MergeModels(&reDomesticOtherPrice, cReDomesticOtherPrice) + + // If db is false, it's a stub. No need to create in database + if db != nil { + mustCreate(db, &reDomesticOtherPrice) + } + return reDomesticOtherPrice +} diff --git a/pkg/factory/domestic_other_prices_test.go b/pkg/factory/domestic_other_prices_test.go new file mode 100644 index 00000000000..a1e0ae08f11 --- /dev/null +++ b/pkg/factory/domestic_other_prices_test.go @@ -0,0 +1,30 @@ +package factory + +import ( + "github.com/gofrs/uuid" + + "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/unit" +) + +func (suite *FactorySuite) TestFetchOrMakeDomesticOtherPrice() { + suite.Run("Successful fetch of domestic other price", func() { + + id, err := uuid.FromString("51393fa4-b31c-40fe-bedf-b692703c46eb") + suite.NoError(err) + reService := FetchReServiceByCode(suite.DB(), models.ReServiceCodeDLH) + + domesticOtherPrice := FetchOrMakeDomesticOtherPrice(suite.DB(), []Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: id, + ServiceID: reService.ID, + IsPeakPeriod: true, + Schedule: 1, + PriceCents: unit.Cents(945), + }, + }, + }, nil) + suite.NotNil(domesticOtherPrice) + }) +} diff --git a/pkg/factory/domestic_service_area_price.go b/pkg/factory/domestic_service_area_price.go new file mode 100644 index 00000000000..ff9110849a8 --- /dev/null +++ b/pkg/factory/domestic_service_area_price.go @@ -0,0 +1,45 @@ +package factory + +import ( + "database/sql" + "log" + + "github.com/gobuffalo/pop/v6" + "github.com/gofrs/uuid" + + "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/testdatagen" +) + +func FetchOrMakeDomesticServiceAreaPrice(db *pop.Connection, customs []Customization, traits []Trait) models.ReDomesticServiceAreaPrice { + customs = setupCustomizations(customs, traits) + + var cReDomesticServiceAreaPrice models.ReDomesticServiceAreaPrice + if result := findValidCustomization(customs, ReDomesticServiceAreaPrice); result != nil { + cReDomesticServiceAreaPrice = result.Model.(models.ReDomesticServiceAreaPrice) + if result.LinkOnly { + return cReDomesticServiceAreaPrice + } + } + + // fetch first before creating + // the contractID, serviceID, peak, and schedule need to be unique + var reDomesticServiceAreaPrice models.ReDomesticServiceAreaPrice + if cReDomesticServiceAreaPrice.ContractID != uuid.Nil && cReDomesticServiceAreaPrice.ServiceID != uuid.Nil && cReDomesticServiceAreaPrice.DomesticServiceAreaID != uuid.Nil { + err := db.Where("contract_id = ? AND service_id = ? AND domestic_service_area_id = ? AND is_peak_period = ?", + cReDomesticServiceAreaPrice.ContractID, + cReDomesticServiceAreaPrice.ServiceID, + cReDomesticServiceAreaPrice.DomesticServiceAreaID, + cReDomesticServiceAreaPrice.IsPeakPeriod). + First(&reDomesticServiceAreaPrice) + if err != nil && err != sql.ErrNoRows { + log.Panic(err) + } else if err == sql.ErrNoRows { + // if it isn't found, then we need to create it + testdatagen.MergeModels(&reDomesticServiceAreaPrice, cReDomesticServiceAreaPrice) + mustCreate(db, &reDomesticServiceAreaPrice) + } + return reDomesticServiceAreaPrice + } + return reDomesticServiceAreaPrice +} diff --git a/pkg/factory/domestic_service_area_price_test.go b/pkg/factory/domestic_service_area_price_test.go new file mode 100644 index 00000000000..11f0258c8b4 --- /dev/null +++ b/pkg/factory/domestic_service_area_price_test.go @@ -0,0 +1,38 @@ +package factory + +import ( + "github.com/gofrs/uuid" + + "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/testdatagen" + "github.com/transcom/mymove/pkg/unit" +) + +func (suite *FactorySuite) TestFetchOrMakeDomesticServiceAreaPrice() { + suite.Run("Successful fetch of domestic service area price", func() { + + id, err := uuid.FromString("51393fa4-b31c-40fe-bedf-b692703c46eb") + suite.NoError(err) + reService := FetchReServiceByCode(suite.DB(), models.ReServiceCodeDLH) + serviceArea := testdatagen.FetchOrMakeReDomesticServiceArea(suite.DB(), testdatagen.Assertions{ + ReDomesticServiceArea: models.ReDomesticServiceArea{ + ServiceArea: "004", + ServicesSchedule: 2, + }, + ReContract: testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}), + }) + + domesticServiceAreaPrice := FetchOrMakeDomesticServiceAreaPrice(suite.DB(), []Customization{ + { + Model: models.ReDomesticServiceAreaPrice{ + ContractID: id, + ServiceID: reService.ID, + DomesticServiceAreaID: serviceArea.ID, + IsPeakPeriod: true, + PriceCents: unit.Cents(945), + }, + }, + }, nil) + suite.NotNil(domesticServiceAreaPrice) + }) +} diff --git a/pkg/factory/move_factory.go b/pkg/factory/move_factory.go index 15b0fb4154c..8561df50127 100644 --- a/pkg/factory/move_factory.go +++ b/pkg/factory/move_factory.go @@ -35,14 +35,6 @@ func BuildMove(db *pop.Connection, customs []Customization, traits []Trait) mode closeoutOffice = BuildTransportationOffice(db, tempCloseoutOfficeCustoms, nil) } - var counselingOffice models.TransportationOffice - tempCounselingOfficeCustoms := customs - counselingOfficeResult := findValidCustomization(customs, TransportationOffices.CounselingOffice) - if counselingOfficeResult != nil { - tempCounselingOfficeCustoms = convertCustomizationInList(tempCounselingOfficeCustoms, TransportationOffices.CounselingOffice, TransportationOffice) - counselingOffice = BuildTransportationOffice(db, tempCounselingOfficeCustoms, nil) - } - var scAssignedUser models.OfficeUser tempSCAssignedUserCustoms := customs scAssignedUserResult := findValidCustomization(customs, OfficeUsers.SCAssignedUser) @@ -51,6 +43,30 @@ func BuildMove(db *pop.Connection, customs []Customization, traits []Trait) mode scAssignedUser = BuildOfficeUser(db, tempSCAssignedUserCustoms, nil) } + var tooAssignedUser models.OfficeUser + tempTOOAssignedUserCustoms := customs + tooAssignedUserResult := findValidCustomization(customs, OfficeUsers.TOOAssignedUser) + if tooAssignedUserResult != nil { + tempTOOAssignedUserCustoms = convertCustomizationInList(tempTOOAssignedUserCustoms, OfficeUsers.TOOAssignedUser, OfficeUser) + tooAssignedUser = BuildOfficeUser(db, tempTOOAssignedUserCustoms, nil) + } + + var tioAssignedUser models.OfficeUser + tempTIOAssignedUserCustoms := customs + tioAssignedUserResult := findValidCustomization(customs, OfficeUsers.TIOAssignedUser) + if tioAssignedUserResult != nil { + tempTIOAssignedUserCustoms = convertCustomizationInList(tempTIOAssignedUserCustoms, OfficeUsers.TIOAssignedUser, OfficeUser) + tioAssignedUser = BuildOfficeUser(db, tempTIOAssignedUserCustoms, nil) + } + + var counselingOffice models.TransportationOffice + tempCounselingOfficeCustoms := customs + counselingOfficeResult := findValidCustomization(customs, TransportationOffices.CounselingOffice) + if counselingOfficeResult != nil { + tempCounselingOfficeCustoms = convertCustomizationInList(tempCounselingOfficeCustoms, TransportationOffices.CounselingOffice, TransportationOffice) + counselingOffice = BuildTransportationOffice(db, tempCounselingOfficeCustoms, nil) + } + var defaultReferenceID string var err error if db != nil { @@ -89,6 +105,16 @@ func BuildMove(db *pop.Connection, customs []Customization, traits []Trait) mode move.CloseoutOfficeID = &closeoutOffice.ID } + if tooAssignedUserResult != nil { + move.TOOAssignedUser = &tooAssignedUser + move.TOOAssignedID = &tooAssignedUser.ID + } + + if tioAssignedUserResult != nil { + move.TIOAssignedUser = &tioAssignedUser + move.TIOAssignedID = &tioAssignedUser.ID + } + if counselingOfficeResult != nil { move.CounselingOffice = &counselingOffice move.CounselingOfficeID = &counselingOffice.ID diff --git a/pkg/factory/move_factory_test.go b/pkg/factory/move_factory_test.go index 306e7f6ee44..9d6f39d498f 100644 --- a/pkg/factory/move_factory_test.go +++ b/pkg/factory/move_factory_test.go @@ -285,6 +285,59 @@ func (suite *FactorySuite) TestBuildMove() { suite.NotEmpty(move.MTOShipments) suite.Equal(models.MTOShipmentStatusSubmitted, move.MTOShipments[0].Status) }) + suite.Run("Successful creation of a move with an assigned SC", func() { + officeUser := BuildOfficeUserWithRoles(suite.DB(), nil, []roles.RoleType{roles.RoleTypeServicesCounselor}) + + move := BuildMoveWithShipment(suite.DB(), []Customization{ + { + Model: models.Move{ + Status: models.MoveStatusAPPROVED, + }, + }, + { + Model: officeUser, + LinkOnly: true, + Type: &OfficeUsers.SCAssignedUser, + }, + }, nil) + suite.Equal(officeUser.ID, *move.SCAssignedID) + }) + + suite.Run("Successful creation of a move with an assigned TOO", func() { + officeUser := BuildOfficeUserWithRoles(suite.DB(), nil, []roles.RoleType{roles.RoleTypeTOO}) + + move := BuildMoveWithShipment(suite.DB(), []Customization{ + { + Model: models.Move{ + Status: models.MoveStatusAPPROVED, + }, + }, + { + Model: officeUser, + LinkOnly: true, + Type: &OfficeUsers.TOOAssignedUser, + }, + }, nil) + suite.Equal(officeUser.ID, *move.TOOAssignedID) + }) + + suite.Run("Successful creation of a move with an assigned TIO", func() { + officeUser := BuildOfficeUserWithRoles(suite.DB(), nil, []roles.RoleType{roles.RoleTypeTIO}) + + move := BuildMoveWithShipment(suite.DB(), []Customization{ + { + Model: models.Move{ + Status: models.MoveStatusAPPROVED, + }, + }, + { + Model: officeUser, + LinkOnly: true, + Type: &OfficeUsers.TIOAssignedUser, + }, + }, nil) + suite.Equal(officeUser.ID, *move.TIOAssignedID) + }) suite.Run("Successful creation of customized move with shipment", func() { // Under test: BuildMoveWithShipment diff --git a/pkg/factory/shared.go b/pkg/factory/shared.go index b4e376f5425..037f2d352d5 100644 --- a/pkg/factory/shared.go +++ b/pkg/factory/shared.go @@ -80,6 +80,8 @@ var PrimeUpload CustomType = "PrimeUpload" var ProgearWeightTicket CustomType = "ProgearWeightTicket" var ProofOfServiceDoc CustomType = "ProofOfServiceDoc" var ReService CustomType = "ReService" +var ReDomesticOtherPrice CustomType = "ReDomesticOtherPrice" +var ReDomesticServiceAreaPrice CustomType = "ReDomesticServiceAreaPrice" var Role CustomType = "Role" var ServiceItemParamKey CustomType = "ServiceItemParamKey" var ServiceParam CustomType = "ServiceParam" @@ -146,6 +148,8 @@ var defaultTypesMap = map[string]CustomType{ "models.ProgearWeightTicket": ProgearWeightTicket, "models.ProofOfServiceDoc": ProofOfServiceDoc, "models.ReService": ReService, + "models.ReDomesticOtherPrice": ReDomesticOtherPrice, + "models.ReDomesticServiceAreaPrice": ReDomesticServiceAreaPrice, "models.ServiceItemParamKey": ServiceItemParamKey, "models.ServiceMember": ServiceMember, "models.ServiceRequestDocument": ServiceRequestDocument, @@ -270,11 +274,15 @@ var TransportationOffices = transportationOfficeGroup{ } type officeUserGroup struct { - SCAssignedUser CustomType + SCAssignedUser CustomType + TIOAssignedUser CustomType + TOOAssignedUser CustomType } var OfficeUsers = officeUserGroup{ - SCAssignedUser: "SCAssignedUser", + SCAssignedUser: "SCAssignedUser", + TIOAssignedUser: "TIOAssignedUser", + TOOAssignedUser: "TOOAssignedUser", } // uploadGroup is a grouping of all the upload related fields diff --git a/pkg/gen/ghcapi/embedded_spec.go b/pkg/gen/ghcapi/embedded_spec.go index fd5e1860d98..51113c85e01 100644 --- a/pkg/gen/ghcapi/embedded_spec.go +++ b/pkg/gen/ghcapi/embedded_spec.go @@ -6667,6 +6667,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true @@ -23749,6 +23754,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true diff --git a/pkg/gen/ghcmessages/address.go b/pkg/gen/ghcmessages/address.go index 47148e32cf7..42bd1d8d69e 100644 --- a/pkg/gen/ghcmessages/address.go +++ b/pkg/gen/ghcmessages/address.go @@ -36,6 +36,10 @@ type Address struct { // Example: LOS ANGELES County *string `json:"county,omitempty"` + // destination gbloc + // Pattern: ^[A-Z]{4}$ + DestinationGbloc *string `json:"destinationGbloc,omitempty"` + // e tag // Read Only: true ETag string `json:"eTag,omitempty"` @@ -91,6 +95,10 @@ func (m *Address) Validate(formats strfmt.Registry) error { res = append(res, err) } + if err := m.validateDestinationGbloc(formats); err != nil { + res = append(res, err) + } + if err := m.validateID(formats); err != nil { res = append(res, err) } @@ -138,6 +146,18 @@ func (m *Address) validateCountry(formats strfmt.Registry) error { return nil } +func (m *Address) validateDestinationGbloc(formats strfmt.Registry) error { + if swag.IsZero(m.DestinationGbloc) { // not required + return nil + } + + if err := validate.Pattern("destinationGbloc", "body", *m.DestinationGbloc, `^[A-Z]{4}$`); err != nil { + return err + } + + return nil +} + func (m *Address) validateID(formats strfmt.Registry) error { if swag.IsZero(m.ID) { // not required return nil diff --git a/pkg/gen/internalapi/embedded_spec.go b/pkg/gen/internalapi/embedded_spec.go index 9706d6c936b..0e198c6c4e6 100644 --- a/pkg/gen/internalapi/embedded_spec.go +++ b/pkg/gen/internalapi/embedded_spec.go @@ -3363,6 +3363,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true @@ -12482,6 +12487,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true diff --git a/pkg/gen/internalmessages/address.go b/pkg/gen/internalmessages/address.go index 529cc0d7110..733df1c0680 100644 --- a/pkg/gen/internalmessages/address.go +++ b/pkg/gen/internalmessages/address.go @@ -36,6 +36,10 @@ type Address struct { // Example: LOS ANGELES County *string `json:"county,omitempty"` + // destination gbloc + // Pattern: ^[A-Z]{4}$ + DestinationGbloc *string `json:"destinationGbloc,omitempty"` + // e tag // Read Only: true ETag string `json:"eTag,omitempty"` @@ -91,6 +95,10 @@ func (m *Address) Validate(formats strfmt.Registry) error { res = append(res, err) } + if err := m.validateDestinationGbloc(formats); err != nil { + res = append(res, err) + } + if err := m.validateID(formats); err != nil { res = append(res, err) } @@ -138,6 +146,18 @@ func (m *Address) validateCountry(formats strfmt.Registry) error { return nil } +func (m *Address) validateDestinationGbloc(formats strfmt.Registry) error { + if swag.IsZero(m.DestinationGbloc) { // not required + return nil + } + + if err := validate.Pattern("destinationGbloc", "body", *m.DestinationGbloc, `^[A-Z]{4}$`); err != nil { + return err + } + + return nil +} + func (m *Address) validateID(formats strfmt.Registry) error { if swag.IsZero(m.ID) { // not required return nil diff --git a/pkg/gen/pptasapi/embedded_spec.go b/pkg/gen/pptasapi/embedded_spec.go index 1757ac556cc..fc54f37df09 100644 --- a/pkg/gen/pptasapi/embedded_spec.go +++ b/pkg/gen/pptasapi/embedded_spec.go @@ -114,6 +114,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true @@ -1008,6 +1013,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true diff --git a/pkg/gen/pptasmessages/address.go b/pkg/gen/pptasmessages/address.go index 1e53ba6d230..0e5a9af985a 100644 --- a/pkg/gen/pptasmessages/address.go +++ b/pkg/gen/pptasmessages/address.go @@ -36,6 +36,10 @@ type Address struct { // Example: LOS ANGELES County *string `json:"county,omitempty"` + // destination gbloc + // Pattern: ^[A-Z]{4}$ + DestinationGbloc *string `json:"destinationGbloc,omitempty"` + // e tag // Read Only: true ETag string `json:"eTag,omitempty"` @@ -91,6 +95,10 @@ func (m *Address) Validate(formats strfmt.Registry) error { res = append(res, err) } + if err := m.validateDestinationGbloc(formats); err != nil { + res = append(res, err) + } + if err := m.validateID(formats); err != nil { res = append(res, err) } @@ -138,6 +146,18 @@ func (m *Address) validateCountry(formats strfmt.Registry) error { return nil } +func (m *Address) validateDestinationGbloc(formats strfmt.Registry) error { + if swag.IsZero(m.DestinationGbloc) { // not required + return nil + } + + if err := validate.Pattern("destinationGbloc", "body", *m.DestinationGbloc, `^[A-Z]{4}$`); err != nil { + return err + } + + return nil +} + func (m *Address) validateID(formats strfmt.Registry) error { if swag.IsZero(m.ID) { // not required return nil diff --git a/pkg/gen/primeapi/embedded_spec.go b/pkg/gen/primeapi/embedded_spec.go index 44582f2f3f1..5e8ac967ea9 100644 --- a/pkg/gen/primeapi/embedded_spec.go +++ b/pkg/gen/primeapi/embedded_spec.go @@ -1214,6 +1214,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true @@ -6158,6 +6163,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true diff --git a/pkg/gen/primemessages/address.go b/pkg/gen/primemessages/address.go index 2fe5ba87adb..4ff5b6f7932 100644 --- a/pkg/gen/primemessages/address.go +++ b/pkg/gen/primemessages/address.go @@ -36,6 +36,10 @@ type Address struct { // Example: LOS ANGELES County *string `json:"county,omitempty"` + // destination gbloc + // Pattern: ^[A-Z]{4}$ + DestinationGbloc *string `json:"destinationGbloc,omitempty"` + // e tag // Read Only: true ETag string `json:"eTag,omitempty"` @@ -91,6 +95,10 @@ func (m *Address) Validate(formats strfmt.Registry) error { res = append(res, err) } + if err := m.validateDestinationGbloc(formats); err != nil { + res = append(res, err) + } + if err := m.validateID(formats); err != nil { res = append(res, err) } @@ -138,6 +146,18 @@ func (m *Address) validateCountry(formats strfmt.Registry) error { return nil } +func (m *Address) validateDestinationGbloc(formats strfmt.Registry) error { + if swag.IsZero(m.DestinationGbloc) { // not required + return nil + } + + if err := validate.Pattern("destinationGbloc", "body", *m.DestinationGbloc, `^[A-Z]{4}$`); err != nil { + return err + } + + return nil +} + func (m *Address) validateID(formats strfmt.Registry) error { if swag.IsZero(m.ID) { // not required return nil diff --git a/pkg/gen/primev2api/embedded_spec.go b/pkg/gen/primev2api/embedded_spec.go index c1913d29667..74ee52d88c1 100644 --- a/pkg/gen/primev2api/embedded_spec.go +++ b/pkg/gen/primev2api/embedded_spec.go @@ -399,6 +399,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true @@ -4030,6 +4035,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true diff --git a/pkg/gen/primev2messages/address.go b/pkg/gen/primev2messages/address.go index 631419ea719..2f1631a297c 100644 --- a/pkg/gen/primev2messages/address.go +++ b/pkg/gen/primev2messages/address.go @@ -36,6 +36,10 @@ type Address struct { // Example: LOS ANGELES County *string `json:"county,omitempty"` + // destination gbloc + // Pattern: ^[A-Z]{4}$ + DestinationGbloc *string `json:"destinationGbloc,omitempty"` + // e tag // Read Only: true ETag string `json:"eTag,omitempty"` @@ -91,6 +95,10 @@ func (m *Address) Validate(formats strfmt.Registry) error { res = append(res, err) } + if err := m.validateDestinationGbloc(formats); err != nil { + res = append(res, err) + } + if err := m.validateID(formats); err != nil { res = append(res, err) } @@ -138,6 +146,18 @@ func (m *Address) validateCountry(formats strfmt.Registry) error { return nil } +func (m *Address) validateDestinationGbloc(formats strfmt.Registry) error { + if swag.IsZero(m.DestinationGbloc) { // not required + return nil + } + + if err := validate.Pattern("destinationGbloc", "body", *m.DestinationGbloc, `^[A-Z]{4}$`); err != nil { + return err + } + + return nil +} + func (m *Address) validateID(formats strfmt.Registry) error { if swag.IsZero(m.ID) { // not required return nil diff --git a/pkg/gen/primev3api/embedded_spec.go b/pkg/gen/primev3api/embedded_spec.go index a8b76579b0d..ec655b5ca41 100644 --- a/pkg/gen/primev3api/embedded_spec.go +++ b/pkg/gen/primev3api/embedded_spec.go @@ -405,6 +405,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true @@ -4721,6 +4726,11 @@ func init() { "x-nullable": true, "example": "LOS ANGELES" }, + "destinationGbloc": { + "type": "string", + "pattern": "^[A-Z]{4}$", + "x-nullable": true + }, "eTag": { "type": "string", "readOnly": true diff --git a/pkg/gen/primev3messages/address.go b/pkg/gen/primev3messages/address.go index edffd06b01c..43fbf3bc550 100644 --- a/pkg/gen/primev3messages/address.go +++ b/pkg/gen/primev3messages/address.go @@ -36,6 +36,10 @@ type Address struct { // Example: LOS ANGELES County *string `json:"county,omitempty"` + // destination gbloc + // Pattern: ^[A-Z]{4}$ + DestinationGbloc *string `json:"destinationGbloc,omitempty"` + // e tag // Read Only: true ETag string `json:"eTag,omitempty"` @@ -91,6 +95,10 @@ func (m *Address) Validate(formats strfmt.Registry) error { res = append(res, err) } + if err := m.validateDestinationGbloc(formats); err != nil { + res = append(res, err) + } + if err := m.validateID(formats); err != nil { res = append(res, err) } @@ -138,6 +146,18 @@ func (m *Address) validateCountry(formats strfmt.Registry) error { return nil } +func (m *Address) validateDestinationGbloc(formats strfmt.Registry) error { + if swag.IsZero(m.DestinationGbloc) { // not required + return nil + } + + if err := validate.Pattern("destinationGbloc", "body", *m.DestinationGbloc, `^[A-Z]{4}$`); err != nil { + return err + } + + return nil +} + func (m *Address) validateID(formats strfmt.Registry) error { if swag.IsZero(m.ID) { // not required return nil diff --git a/pkg/handlers/adminapi/moves_test.go b/pkg/handlers/adminapi/moves_test.go index 81e166a35e8..bfc3291df46 100644 --- a/pkg/handlers/adminapi/moves_test.go +++ b/pkg/handlers/adminapi/moves_test.go @@ -117,6 +117,8 @@ func (suite *HandlerSuite) TestUpdateMoveHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) return UpdateMoveHandler{ suite.HandlerConfig(), diff --git a/pkg/handlers/ghcapi/customer.go b/pkg/handlers/ghcapi/customer.go index 96d48177a35..4a481977671 100644 --- a/pkg/handlers/ghcapi/customer.go +++ b/pkg/handlers/ghcapi/customer.go @@ -216,6 +216,11 @@ func (h CreateCustomerWithOktaOptionHandler) Handle(params customercodeop.Create return customercodeop.NewCreateCustomerWithOktaOptionUnprocessableEntity().WithPayload(payload), badDataError } + // emplid needs to be unique so if it is not provided, we need to ensure it is nil by checking for empty strings + if payload.Emplid != nil && *payload.Emplid == "" { + payload.Emplid = nil + } + // declaring okta values outside of if statements so we can use them later var oktaSub string oktaUser := &models.CreatedOktaUser{} diff --git a/pkg/handlers/ghcapi/customer_test.go b/pkg/handlers/ghcapi/customer_test.go index 5f8bf0cf6a6..8187ced2bf3 100644 --- a/pkg/handlers/ghcapi/customer_test.go +++ b/pkg/handlers/ghcapi/customer_test.go @@ -218,6 +218,7 @@ func (suite *HandlerSuite) TestCreateCustomerWithOktaOptionHandler() { suite.Equal(body.BackupContact.Email, createdCustomerPayload.BackupContact.Email) // when CacUser is false, this indicates a non-CAC user so CacValidated is set to true suite.Equal(true, createdCustomerPayload.CacValidated) + suite.Nil(body.Emplid) }) suite.Run("Unable to create customer when using an existing DODID", func() { diff --git a/pkg/handlers/ghcapi/internal/payloads/model_to_payload_test.go b/pkg/handlers/ghcapi/internal/payloads/model_to_payload_test.go index cc62055b3ae..e170710f29f 100644 --- a/pkg/handlers/ghcapi/internal/payloads/model_to_payload_test.go +++ b/pkg/handlers/ghcapi/internal/payloads/model_to_payload_test.go @@ -14,6 +14,7 @@ import ( "github.com/transcom/mymove/pkg/models" "github.com/transcom/mymove/pkg/models/roles" "github.com/transcom/mymove/pkg/storage/test" + "github.com/transcom/mymove/pkg/unit" ) func TestOrder(_ *testing.T) { @@ -21,6 +22,90 @@ func TestOrder(_ *testing.T) { Order(order) } +func (suite *PayloadsSuite) TestOrderWithMove() { + move := factory.BuildMove(suite.DB(), nil, nil) + moves := models.Moves{} + moves = append(moves, move) + order := factory.BuildOrder(nil, []factory.Customization{ + { + Model: models.Order{ + ID: uuid.Must(uuid.NewV4()), + HasDependents: *models.BoolPointer(true), + Moves: moves, + }, + }, + }, nil) + Order(&order) +} + +func (suite *PayloadsSuite) TestBoatShipment() { + boat := factory.BuildBoatShipment(suite.DB(), nil, nil) + boatShipment := BoatShipment(nil, &boat) + suite.NotNil(boatShipment) + +} + +func (suite *PayloadsSuite) TestMobileHomeShipment() { + mobileHome := factory.BuildMobileHomeShipment(suite.DB(), nil, nil) + mobileHomeShipment := MobileHomeShipment(nil, &mobileHome) + suite.NotNil(mobileHomeShipment) +} + +func (suite *PayloadsSuite) TestMovingExpense() { + contractExpense := models.MovingExpenseReceiptTypeContractedExpense + weightStored := 2000 + sitLocation := models.SITLocationTypeDestination + sitReimburseableAmount := 500 + + movingExpense := models.MovingExpense{ + PPMShipmentID: uuid.Must(uuid.NewV4()), + DocumentID: uuid.Must(uuid.NewV4()), + MovingExpenseType: &contractExpense, + Reason: models.StringPointer("no good"), + SITStartDate: models.TimePointer(time.Now()), + SITEndDate: models.TimePointer(time.Now()), + WeightStored: (*unit.Pound)(&weightStored), + SITLocation: &sitLocation, + SITReimburseableAmount: (*unit.Cents)(&sitReimburseableAmount), + } + movingExpenseValues := MovingExpense(nil, &movingExpense) + suite.NotNil(movingExpenseValues) +} + +func (suite *PayloadsSuite) TestMovingExpenses() { + contractExpense := models.MovingExpenseReceiptTypeContractedExpense + weightStored := 2000 + sitLocation := models.SITLocationTypeDestination + sitReimburseableAmount := 500 + movingExpenses := models.MovingExpenses{} + + movingExpense := models.MovingExpense{ + PPMShipmentID: uuid.Must(uuid.NewV4()), + DocumentID: uuid.Must(uuid.NewV4()), + MovingExpenseType: &contractExpense, + Reason: models.StringPointer("no good"), + SITStartDate: models.TimePointer(time.Now()), + SITEndDate: models.TimePointer(time.Now()), + WeightStored: (*unit.Pound)(&weightStored), + SITLocation: &sitLocation, + SITReimburseableAmount: (*unit.Cents)(&sitReimburseableAmount), + } + movingExpenseTwo := models.MovingExpense{ + PPMShipmentID: uuid.Must(uuid.NewV4()), + DocumentID: uuid.Must(uuid.NewV4()), + MovingExpenseType: &contractExpense, + Reason: models.StringPointer("no good"), + SITStartDate: models.TimePointer(time.Now()), + SITEndDate: models.TimePointer(time.Now()), + WeightStored: (*unit.Pound)(&weightStored), + SITLocation: &sitLocation, + SITReimburseableAmount: (*unit.Cents)(&sitReimburseableAmount), + } + movingExpenses = append(movingExpenses, movingExpense, movingExpenseTwo) + movingExpensesValue := MovingExpenses(nil, movingExpenses) + suite.NotNil(movingExpensesValue) +} + // TestMove makes sure zero values/optional fields are handled func TestMove(t *testing.T) { _, err := Move(&models.Move{}, &test.FakeS3Storage{}) @@ -661,6 +746,81 @@ func (suite *PayloadsSuite) TestCreateCustomer() { }) } +func (suite *PayloadsSuite) TestMoveTaskOrder() { + move := factory.BuildMove(suite.DB(), nil, nil) + moveTaskOrder := MoveTaskOrder(&move) + suite.NotNil(moveTaskOrder) +} + +func (suite *PayloadsSuite) TestTransportationOffice() { + office := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ID: uuid.Must(uuid.NewV4()), + }, + }}, nil) + transportationOffice := TransportationOffice(&office) + suite.NotNil(transportationOffice) +} +func (suite *PayloadsSuite) TestTransportationOffices() { + office := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ID: uuid.Must(uuid.NewV4()), + }, + }}, nil) + officeTwo := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ID: uuid.Must(uuid.NewV4()), + }, + }}, nil) + transportationOfficeList := models.TransportationOffices{} + transportationOfficeList = append(transportationOfficeList, office, officeTwo) + value := TransportationOffices(transportationOfficeList) + suite.NotNil(value) +} +func (suite *PayloadsSuite) TestListMove() { + + marines := models.AffiliationMARINES + listMove := ListMove(nil) + + suite.Nil(listMove) + moveUSMC := factory.BuildMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &marines, + }, + }, + }, nil) + + listMove = ListMove(&moveUSMC) + suite.NotNil(listMove) +} + +func (suite *PayloadsSuite) TestListMoves() { + list := models.Moves{} + + marines := models.AffiliationMARINES + spaceForce := models.AffiliationSPACEFORCE + moveUSMC := factory.BuildMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &marines, + }, + }, + }, nil) + moveSF := factory.BuildMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &spaceForce, + }, + }, + }, nil) + list = append(list, moveUSMC, moveSF) + value := ListMoves(&list) + suite.NotNil(value) +} func (suite *PayloadsSuite) TestSearchMoves() { appCtx := suite.AppContextForTest() @@ -672,9 +832,8 @@ func (suite *PayloadsSuite) TestSearchMoves() { }, }, }, nil) - moves := models.Moves{moveUSMC} - suite.Run("Success - Returns a ghcmessages Upload payload from Upload Struct", func() { + suite.Run("Success - Returns a ghcmessages Upload payload from Upload Struct Marine move with no shipments", func() { payload := SearchMoves(appCtx, moves) suite.IsType(payload, &ghcmessages.SearchMoves{}) diff --git a/pkg/handlers/ghcapi/move_task_order_test.go b/pkg/handlers/ghcapi/move_task_order_test.go index 10e9630fc44..e93d756cf58 100644 --- a/pkg/handlers/ghcapi/move_task_order_test.go +++ b/pkg/handlers/ghcapi/move_task_order_test.go @@ -189,6 +189,8 @@ func (suite *HandlerSuite) TestUpdateMoveTaskOrderHandlerIntegrationSuccess() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) siCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -313,6 +315,8 @@ func (suite *HandlerSuite) TestUpdateMoveTaskOrderHandlerIntegrationWithIncomple mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { @@ -401,6 +405,8 @@ func (suite *HandlerSuite) TestUpdateMTOStatusServiceCounselingCompletedHandler( mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) siCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := UpdateMTOStatusServiceCounselingCompletedHandlerFunc{ @@ -620,6 +626,8 @@ func (suite *HandlerSuite) TestUpdateMoveTIORemarksHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/ghcapi/mto_service_items_test.go b/pkg/handlers/ghcapi/mto_service_items_test.go index 32707fa39ab..44daf40ed53 100644 --- a/pkg/handlers/ghcapi/mto_service_items_test.go +++ b/pkg/handlers/ghcapi/mto_service_items_test.go @@ -312,6 +312,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemStatusHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -564,6 +566,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemStatusHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) mtoServiceItemStatusUpdater := mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) @@ -625,6 +629,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemStatusHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) mtoServiceItemStatusUpdater := mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) @@ -759,6 +765,8 @@ func (suite *HandlerSuite) TestUpdateServiceItemSitEntryDateHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) diff --git a/pkg/handlers/ghcapi/mto_shipment.go b/pkg/handlers/ghcapi/mto_shipment.go index 9a49401e612..0ab30d6ed1a 100644 --- a/pkg/handlers/ghcapi/mto_shipment.go +++ b/pkg/handlers/ghcapi/mto_shipment.go @@ -1,11 +1,13 @@ package ghcapi import ( + "errors" "fmt" "github.com/go-openapi/runtime/middleware" "github.com/gobuffalo/validate/v3" "github.com/gofrs/uuid" + "github.com/lib/pq" "go.uber.org/zap" "github.com/transcom/mymove/pkg/appcontext" @@ -378,6 +380,16 @@ func (h UpdateShipmentHandler) Handle(params mtoshipmentops.UpdateMTOShipmentPar appCtx.Logger().Error("ghcapi.UpdateShipmentHandler error", zap.Error(e.Unwrap())) } + // Try to unwrap the error to access the underlying pq.Error (aka error from the db) + var pqErr *pq.Error + if errors.As(e.Unwrap(), &pqErr) { + appCtx.Logger().Error("QueryError message", zap.String("databaseError", pqErr.Message)) + databaseErrorMessage := fmt.Sprintf("Database error: %s", pqErr.Message) + return mtoshipmentops.NewUpdateMTOShipmentInternalServerError().WithPayload( + &ghcmessages.Error{Message: &databaseErrorMessage}, + ), err + } + msg := fmt.Sprintf("%v | Instance: %v", handlers.FmtString(err.Error()), h.GetTraceIDFromRequest(params.HTTPRequest)) return mtoshipmentops.NewUpdateMTOShipmentInternalServerError().WithPayload( diff --git a/pkg/handlers/ghcapi/mto_shipment_test.go b/pkg/handlers/ghcapi/mto_shipment_test.go index c224d022538..6ed5fea9a8c 100644 --- a/pkg/handlers/ghcapi/mto_shipment_test.go +++ b/pkg/handlers/ghcapi/mto_shipment_test.go @@ -603,6 +603,8 @@ func (suite *HandlerSuite) TestApproveShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) approver := mtoshipment.NewShipmentApprover( mtoshipment.NewShipmentRouter(), @@ -2123,6 +2125,8 @@ func (suite *HandlerSuite) TestRequestShipmentReweighHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2181,6 +2185,8 @@ func (suite *HandlerSuite) TestRequestShipmentReweighHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2236,6 +2242,8 @@ func (suite *HandlerSuite) TestRequestShipmentReweighHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2292,6 +2300,8 @@ func (suite *HandlerSuite) TestRequestShipmentReweighHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2349,6 +2359,8 @@ func (suite *HandlerSuite) TestRequestShipmentReweighHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2405,6 +2417,8 @@ func (suite *HandlerSuite) TestRequestShipmentReweighHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2743,6 +2757,8 @@ func (suite *HandlerSuite) TestApproveSITExtensionHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2883,6 +2899,8 @@ func (suite *HandlerSuite) CreateApprovedSITDurationUpdate() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -2966,6 +2984,8 @@ func (suite *HandlerSuite) CreateApprovedSITDurationUpdate() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -3139,6 +3159,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( builder, @@ -3223,6 +3245,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( builder, @@ -3279,6 +3303,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( builder, @@ -3331,6 +3357,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( builder, @@ -3378,6 +3406,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( builder, @@ -3462,6 +3492,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandlerUsingPPM() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( @@ -3673,6 +3705,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandlerUsingPPM() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( builder, @@ -3823,6 +3857,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandlerUsingPPM() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveTaskOrderUpdater := movetaskorder.NewMoveTaskOrderUpdater( builder, @@ -4028,6 +4064,8 @@ func (suite *HandlerSuite) TestUpdateShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(mtoshipment.NewShipmentReweighRequester()) @@ -4698,6 +4736,8 @@ func (suite *HandlerSuite) TestUpdateSITServiceItemCustomerExpenseHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) updater := mtoserviceitem.NewMTOServiceItemUpdater(planner, builder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) req := httptest.NewRequest("PATCH", fmt.Sprintf("/shipments/%s/sit-service-item/convert-to-customer-expense", approvedShipment.ID.String()), nil) @@ -4774,6 +4814,8 @@ func (suite *HandlerSuite) TestUpdateSITServiceItemCustomerExpenseHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) updater := mtoserviceitem.NewMTOServiceItemUpdater(planner, builder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) req := httptest.NewRequest("PATCH", fmt.Sprintf("/shipments/%s/sit-service-item/convert-to-customer-expense", approvedShipment.ID.String()), nil) diff --git a/pkg/handlers/ghcapi/orders_test.go b/pkg/handlers/ghcapi/orders_test.go index f62f1edaf73..6f554a05817 100644 --- a/pkg/handlers/ghcapi/orders_test.go +++ b/pkg/handlers/ghcapi/orders_test.go @@ -398,6 +398,8 @@ func (suite *HandlerSuite) TestUpdateOrderHandlerWithAmendedUploads() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/ghcapi/payment_request_test.go b/pkg/handlers/ghcapi/payment_request_test.go index 3d2f116accc..17136806724 100644 --- a/pkg/handlers/ghcapi/payment_request_test.go +++ b/pkg/handlers/ghcapi/payment_request_test.go @@ -228,17 +228,25 @@ func (suite *HandlerSuite) TestGetPaymentRequestsForMoveHandler() { func (suite *HandlerSuite) TestUpdatePaymentRequestStatusHandler() { paymentRequestID, _ := uuid.FromString("00000000-0000-0000-0000-000000000001") - officeUserUUID, _ := uuid.NewV4() setupTestData := func() models.OfficeUser { - officeUser := factory.BuildOfficeUser(nil, []factory.Customization{ - {Model: models.OfficeUser{ - ID: officeUserUUID, - }}, + + transportationOffice := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ProvidesCloseout: true, + }, + }, }, nil) - officeUser.User.Roles = append(officeUser.User.Roles, roles.Role{ - RoleType: roles.RoleTypeTIO, - }) + + officeUser := factory.BuildOfficeUserWithRoles(suite.DB(), []factory.Customization{ + { + Model: transportationOffice, + LinkOnly: true, + Type: &factory.TransportationOffices.CloseoutOffice, + }, + }, []roles.RoleType{roles.RoleTypeTIO}) + return officeUser } paymentRequest := models.PaymentRequest{ @@ -250,7 +258,6 @@ func (suite *HandlerSuite) TestUpdatePaymentRequestStatusHandler() { } statusUpdater := paymentrequest.NewPaymentRequestStatusUpdater(query.NewQueryBuilder()) - suite.Run("successful status update of payment request", func() { officeUser := setupTestData() pendingPaymentRequest := factory.BuildPaymentRequest(suite.DB(), nil, nil) diff --git a/pkg/handlers/ghcapi/ppm_shipment_test.go b/pkg/handlers/ghcapi/ppm_shipment_test.go index b476066d53a..d5e358feb4a 100644 --- a/pkg/handlers/ghcapi/ppm_shipment_test.go +++ b/pkg/handlers/ghcapi/ppm_shipment_test.go @@ -388,7 +388,7 @@ func (suite *HandlerSuite) TestGetPPMSITEstimatedCostHandler() { ppmShipment.DestinationAddress = destinationAddress mockedPlanner := &routemocks.Planner{} mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "90210", "30813").Return(2294, nil) + "90210", "30813", false, false).Return(2294, nil) }) setUpGetCostRequestAndParams := func() ppmsitops.GetPPMSITEstimatedCostParams { diff --git a/pkg/handlers/internalapi/mto_shipment_test.go b/pkg/handlers/internalapi/mto_shipment_test.go index 4d2b557286f..f227a704629 100644 --- a/pkg/handlers/internalapi/mto_shipment_test.go +++ b/pkg/handlers/internalapi/mto_shipment_test.go @@ -77,6 +77,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandlerV1() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/primeapi/move_task_order_test.go b/pkg/handlers/primeapi/move_task_order_test.go index 2bfa5abfbcc..b659b9386d9 100644 --- a/pkg/handlers/primeapi/move_task_order_test.go +++ b/pkg/handlers/primeapi/move_task_order_test.go @@ -1710,6 +1710,8 @@ func (suite *HandlerSuite) TestUpdateMTOPostCounselingInfo() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { @@ -1794,6 +1796,8 @@ func (suite *HandlerSuite) TestUpdateMTOPostCounselingInfo() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/primeapi/mto_service_item_test.go b/pkg/handlers/primeapi/mto_service_item_test.go index fc53a58a94a..19e91531a71 100644 --- a/pkg/handlers/primeapi/mto_service_item_test.go +++ b/pkg/handlers/primeapi/mto_service_item_test.go @@ -115,6 +115,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -173,6 +175,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -311,6 +315,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -355,6 +361,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -568,6 +576,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDomesticCratingHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -605,6 +615,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDomesticCratingHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -728,6 +740,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -774,6 +788,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -843,6 +859,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -927,6 +945,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandlerWithDOFSITNoA mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1037,6 +1057,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandlerWithDOFSITWit mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1210,6 +1232,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1284,6 +1308,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1317,6 +1343,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1373,6 +1401,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1427,6 +1457,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1625,6 +1657,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemDDDSIT() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) subtestData.handler = UpdateMTOServiceItemHandler{ suite.HandlerConfig(), @@ -1908,6 +1942,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemDOPSIT() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) subtestData.handler = UpdateMTOServiceItemHandler{ suite.HandlerConfig(), diff --git a/pkg/handlers/primeapi/mto_shipment_address_test.go b/pkg/handlers/primeapi/mto_shipment_address_test.go index 8a45daa4156..cb662b28dfe 100644 --- a/pkg/handlers/primeapi/mto_shipment_address_test.go +++ b/pkg/handlers/primeapi/mto_shipment_address_test.go @@ -47,6 +47,8 @@ func (suite *HandlerSuite) TestUpdateMTOShipmentAddressHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) // Create handler handler := UpdateMTOShipmentAddressHandler{ diff --git a/pkg/handlers/primeapi/mto_shipment_test.go b/pkg/handlers/primeapi/mto_shipment_test.go index 5b602de7873..917e10cdfc6 100644 --- a/pkg/handlers/primeapi/mto_shipment_test.go +++ b/pkg/handlers/primeapi/mto_shipment_test.go @@ -203,6 +203,8 @@ func (suite *HandlerSuite) TestUpdateMTOShipmentStatusHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) moveRouter := moveservices.NewMoveRouter() addressUpdater := address.NewAddressUpdater() @@ -223,6 +225,8 @@ func (suite *HandlerSuite) TestUpdateMTOShipmentStatusHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) handler := UpdateMTOShipmentStatusHandler{ handlerConfig, @@ -414,6 +418,8 @@ func (suite *HandlerSuite) TestDeleteMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/primeapi/payloads/model_to_payload_test.go b/pkg/handlers/primeapi/payloads/model_to_payload_test.go index e56a57c85ba..2626c7e119c 100644 --- a/pkg/handlers/primeapi/payloads/model_to_payload_test.go +++ b/pkg/handlers/primeapi/payloads/model_to_payload_test.go @@ -456,6 +456,20 @@ func (suite *PayloadsSuite) TestInternalServerError() { suite.Equal(traceID.String(), detailError.Instance.String()) } +func (suite *PayloadsSuite) TestNotImplementedError() { + traceID, _ := uuid.NewV4() + detail := "Err" + + noDetailError := NotImplementedError(nil, traceID) + suite.Equal(handlers.NotImplementedErrMessage, *noDetailError.Title) + suite.Equal(traceID.String(), noDetailError.Instance.String()) + + detailError := NotImplementedError(&detail, traceID) + suite.Equal(handlers.NotImplementedErrMessage, *detailError.Title) + suite.Equal(detail, *detailError.Detail) + suite.Equal(traceID.String(), detailError.Instance.String()) +} + func (suite *PayloadsSuite) TestGetDimension() { dimensionType := models.DimensionTypeItem dimensions := models.MTOServiceItemDimensions{ @@ -512,6 +526,80 @@ func (suite *PayloadsSuite) TestPaymentRequests() { suite.Equal(len(paymentRequests), len(*result)) } +func (suite *PayloadsSuite) TestMTOShipmentWithoutServiceItems() { + // Create the addresses + pickupAddress := factory.BuildAddress(suite.DB(), nil, nil) + destinationAddress := factory.BuildAddress(suite.DB(), nil, nil) + destinationType := models.DestinationTypeHomeOfRecord + secondaryPickupAddress := factory.BuildAddress(suite.DB(), nil, []factory.Trait{factory.GetTraitAddress2}) + secondaryDeliveryAddress := factory.BuildAddress(suite.DB(), nil, []factory.Trait{factory.GetTraitAddress4}) + dlhTestWeight := unit.Pound(4000) + + // Create the MTOShipment with populated PickupAddress and DestinationAddress + mtoShipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + PickupAddressID: &pickupAddress.ID, + DestinationAddressID: &destinationAddress.ID, + DestinationType: &destinationType, + SecondaryPickupAddressID: &secondaryPickupAddress.ID, + SecondaryDeliveryAddressID: &secondaryDeliveryAddress.ID, + PrimeEstimatedWeight: models.PoundPointer(unit.Pound(980)), + PrimeActualWeight: &dlhTestWeight, + NTSRecordedWeight: models.PoundPointer(unit.Pound(249)), + }, + }, + }, nil) + shipmentWithoutServiceItem := MTOShipmentWithoutServiceItems(&mtoShipment) + suite.NotNil(shipmentWithoutServiceItem) +} + +func (suite *PayloadsSuite) TestMTOShipmentsWithoutServiceItems() { + // Create the addresses + pickupAddress := factory.BuildAddress(suite.DB(), nil, nil) + destinationAddress := factory.BuildAddress(suite.DB(), nil, nil) + destinationType := models.DestinationTypeHomeOfRecord + secondaryPickupAddress := factory.BuildAddress(suite.DB(), nil, []factory.Trait{factory.GetTraitAddress2}) + secondaryDeliveryAddress := factory.BuildAddress(suite.DB(), nil, []factory.Trait{factory.GetTraitAddress4}) + dlhTestWeight := unit.Pound(4000) + + // Create the MTOShipment + mtoShipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + PickupAddressID: &pickupAddress.ID, + DestinationAddressID: &destinationAddress.ID, + DestinationType: &destinationType, + SecondaryPickupAddressID: &secondaryPickupAddress.ID, + SecondaryDeliveryAddressID: &secondaryDeliveryAddress.ID, + PrimeEstimatedWeight: models.PoundPointer(unit.Pound(980)), + PrimeActualWeight: &dlhTestWeight, + NTSRecordedWeight: models.PoundPointer(unit.Pound(249)), + }, + }, + }, nil) + + // Create the MTOShipment + mtoShipmentTwo := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + PickupAddressID: &pickupAddress.ID, + DestinationAddressID: &destinationAddress.ID, + DestinationType: &destinationType, + SecondaryPickupAddressID: &secondaryPickupAddress.ID, + SecondaryDeliveryAddressID: &secondaryDeliveryAddress.ID, + PrimeEstimatedWeight: models.PoundPointer(unit.Pound(980)), + PrimeActualWeight: &dlhTestWeight, + NTSRecordedWeight: models.PoundPointer(unit.Pound(249)), + }, + }, + }, nil) + shipmentList := models.MTOShipments{} + shipmentList = append(shipmentList, mtoShipmentTwo, mtoShipment) + value := MTOShipmentsWithoutServiceItems(&shipmentList) + suite.NotNil(value) +} + func (suite *PayloadsSuite) TestPaymentServiceItem() { paymentServiceItem := models.PaymentServiceItem{ ID: uuid.Must(uuid.NewV4()), @@ -605,8 +693,11 @@ func (suite *PayloadsSuite) TestShipmentAddressUpdate() { suite.Equal(strfmt.UUID(shipmentAddressUpdate.ID.String()), result.ID) } -func (suite *PayloadsSuite) TestMTOServiceItemDCRT() { +func (suite *PayloadsSuite) TestMTOServiceItemDCRTandDOFSITandDDFSIT() { reServiceCode := models.ReServiceCodeDCRT + reServiceCodeSIT := models.ReServiceCodeDOFSIT + reServiceCodeDDFSIT := models.ReServiceCodeDDFSIT + reason := "reason" dateOfContact1 := time.Now() timeMilitary1 := "1500Z" @@ -634,11 +725,83 @@ func (suite *PayloadsSuite) TestMTOServiceItemDCRT() { }, }, } + year, month, day := time.Now().Date() + aWeekAgo := time.Date(year, month, day-7, 0, 0, 0, 0, time.UTC) + departureDate := aWeekAgo.Add(time.Hour * 24 * 30) + actualPickupAddress := factory.BuildAddress(nil, nil, []factory.Trait{factory.GetTraitAddress2}) + requestApprovalRequestedStatus := false + mtoServiceItemDOFSIT := &models.MTOServiceItem{ + ID: uuid.Must(uuid.NewV4()), + ReService: models.ReService{Code: reServiceCodeSIT}, + Reason: &reason, + SITDepartureDate: &departureDate, + SITEntryDate: &aWeekAgo, + SITPostalCode: models.StringPointer("90210"), + SITOriginHHGActualAddress: &actualPickupAddress, + SITCustomerContacted: &aWeekAgo, + SITRequestedDelivery: &aWeekAgo, + SITOriginHHGOriginalAddress: &models.Address{ + StreetAddress1: "dummyStreet2", + City: "dummyCity2", + State: "FL", + PostalCode: "55555", + }, + RequestedApprovalsRequestedStatus: &requestApprovalRequestedStatus, + CustomerContacts: models.MTOServiceItemCustomerContacts{ + models.MTOServiceItemCustomerContact{ + DateOfContact: dateOfContact1, + TimeMilitary: timeMilitary1, + FirstAvailableDeliveryDate: firstAvailableDeliveryDate1, + Type: models.CustomerContactTypeFirst, + }, + models.MTOServiceItemCustomerContact{ + DateOfContact: dateOfContact2, + TimeMilitary: timeMilitary2, + FirstAvailableDeliveryDate: firstAvailableDeliveryDate2, + Type: models.CustomerContactTypeSecond, + }, + }, + } + mtoServiceItemDDFSIT := &models.MTOServiceItem{ + ID: uuid.Must(uuid.NewV4()), + ReService: models.ReService{Code: reServiceCodeDDFSIT}, + Reason: &reason, + SITDepartureDate: &departureDate, + SITEntryDate: &aWeekAgo, + SITPostalCode: models.StringPointer("90210"), + SITOriginHHGActualAddress: &actualPickupAddress, + SITCustomerContacted: &aWeekAgo, + SITRequestedDelivery: &aWeekAgo, + SITOriginHHGOriginalAddress: &models.Address{ + StreetAddress1: "dummyStreet2", + City: "dummyCity2", + State: "FL", + PostalCode: "55555", + }, + RequestedApprovalsRequestedStatus: &requestApprovalRequestedStatus, + CustomerContacts: models.MTOServiceItemCustomerContacts{ + models.MTOServiceItemCustomerContact{ + DateOfContact: dateOfContact1, + TimeMilitary: timeMilitary1, + FirstAvailableDeliveryDate: firstAvailableDeliveryDate1, + Type: models.CustomerContactTypeFirst, + }, + models.MTOServiceItemCustomerContact{ + DateOfContact: dateOfContact2, + TimeMilitary: timeMilitary2, + FirstAvailableDeliveryDate: firstAvailableDeliveryDate2, + Type: models.CustomerContactTypeSecond, + }, + }, + } resultDCRT := MTOServiceItem(mtoServiceItemDCRT) + resultDOFSIT := MTOServiceItem(mtoServiceItemDOFSIT) + resultDDFSIT := MTOServiceItem(mtoServiceItemDDFSIT) suite.NotNil(resultDCRT) - + suite.NotNil(resultDOFSIT) + suite.NotNil(resultDDFSIT) _, ok := resultDCRT.(*primemessages.MTOServiceItemDomesticCrating) suite.True(ok) diff --git a/pkg/handlers/primeapi/payment_request_test.go b/pkg/handlers/primeapi/payment_request_test.go index fd4e8dd14da..768e10c0033 100644 --- a/pkg/handlers/primeapi/payment_request_test.go +++ b/pkg/handlers/primeapi/payment_request_test.go @@ -28,7 +28,7 @@ import ( ) const ( - dlhTestServiceArea = "004" + dlhTestServiceArea = "042" dlhTestWeight = unit.Pound(4000) ) @@ -648,7 +648,7 @@ func (suite *HandlerSuite) setupDomesticLinehaulData() (models.Move, models.MTOS }, }) - baseLinehaulPrice := testdatagen.MakeReDomesticLinehaulPrice(suite.DB(), testdatagen.Assertions{ + baseLinehaulPrice := testdatagen.FetchOrMakeReDomesticLinehaulPrice(suite.DB(), testdatagen.Assertions{ ReDomesticLinehaulPrice: models.ReDomesticLinehaulPrice{ ContractID: contractYear.Contract.ID, Contract: contractYear.Contract, @@ -658,7 +658,7 @@ func (suite *HandlerSuite) setupDomesticLinehaulData() (models.Move, models.MTOS }, }) - _ = testdatagen.MakeReDomesticLinehaulPrice(suite.DB(), testdatagen.Assertions{ + _ = testdatagen.FetchOrMakeReDomesticLinehaulPrice(suite.DB(), testdatagen.Assertions{ ReDomesticLinehaulPrice: models.ReDomesticLinehaulPrice{ ContractID: contractYear.Contract.ID, Contract: contractYear.Contract, @@ -746,6 +746,8 @@ func (suite *HandlerSuite) TestCreatePaymentRequestHandlerNewPaymentRequestCreat mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", + false, + false, ).Return(defaultZipDistance, nil) paymentRequestCreator := paymentrequest.NewPaymentRequestCreator( @@ -905,6 +907,8 @@ func (suite *HandlerSuite) TestCreatePaymentRequestHandlerInvalidMTOReferenceID( mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", + false, + false, ).Return(defaultZipDistance, nil) paymentRequestCreator := paymentrequest.NewPaymentRequestCreator( @@ -970,6 +974,8 @@ func (suite *HandlerSuite) TestCreatePaymentRequestHandlerInvalidMTOReferenceID( mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", + false, + false, ).Return(defaultZipDistance, nil) paymentRequestCreator := paymentrequest.NewPaymentRequestCreator( diff --git a/pkg/handlers/primeapi/reweigh_test.go b/pkg/handlers/primeapi/reweigh_test.go index baa363a5d8a..d97b7f78d22 100644 --- a/pkg/handlers/primeapi/reweigh_test.go +++ b/pkg/handlers/primeapi/reweigh_test.go @@ -36,6 +36,8 @@ func (suite *HandlerSuite) TestUpdateReweighHandler() { mockPlanner.On("ZipTransitDistance", recalculateTestPickupZip, recalculateTestDestinationZip, + false, + false, ).Return(recalculateTestZip3Distance, nil) // Get shipment payment request recalculator service diff --git a/pkg/handlers/primeapiv2/mto_service_item_test.go b/pkg/handlers/primeapiv2/mto_service_item_test.go index c34d9e69cb1..8875c35a851 100644 --- a/pkg/handlers/primeapiv2/mto_service_item_test.go +++ b/pkg/handlers/primeapiv2/mto_service_item_test.go @@ -109,6 +109,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -167,6 +169,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -305,6 +309,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -349,6 +355,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -562,6 +570,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDomesticCratingHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -599,6 +609,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDomesticCratingHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -722,6 +734,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -768,6 +782,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -837,6 +853,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -921,6 +939,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandlerWithDOFSITNoA mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1029,6 +1049,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandlerWithDOFSITWit mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1196,6 +1218,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1270,6 +1294,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1303,6 +1329,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1359,6 +1387,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1423,6 +1453,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ diff --git a/pkg/handlers/primeapiv2/mto_shipment_test.go b/pkg/handlers/primeapiv2/mto_shipment_test.go index 314dc9c3a5f..aaf6ba180d6 100644 --- a/pkg/handlers/primeapiv2/mto_shipment_test.go +++ b/pkg/handlers/primeapiv2/mto_shipment_test.go @@ -52,6 +52,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/primeapiv3/mto_service_item_test.go b/pkg/handlers/primeapiv3/mto_service_item_test.go index 39afcbafc34..e5f36265a03 100644 --- a/pkg/handlers/primeapiv3/mto_service_item_test.go +++ b/pkg/handlers/primeapiv3/mto_service_item_test.go @@ -108,6 +108,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) subtestData := makeSubtestData() moveRouter := moverouter.NewMoveRouter() @@ -168,6 +170,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -306,6 +310,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -350,6 +356,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -563,6 +571,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDomesticCratingHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -600,6 +610,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDomesticCratingHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -723,6 +735,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -769,6 +783,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -838,6 +854,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -922,6 +940,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandlerWithDOFSITNoA mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1030,6 +1050,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemOriginSITHandlerWithDOFSITWit mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1197,6 +1219,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1271,6 +1295,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1304,6 +1330,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1360,6 +1388,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1424,6 +1454,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ @@ -1460,6 +1492,8 @@ func (suite *HandlerSuite) TestCreateMTOServiceItemDestSITHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) handler := CreateMTOServiceItemHandler{ diff --git a/pkg/handlers/primeapiv3/mto_shipment_test.go b/pkg/handlers/primeapiv3/mto_shipment_test.go index cff076d2fc4..dd527979e2a 100644 --- a/pkg/handlers/primeapiv3/mto_shipment_test.go +++ b/pkg/handlers/primeapiv3/mto_shipment_test.go @@ -58,6 +58,8 @@ func (suite *HandlerSuite) TestCreateMTOShipmentHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/primeapiv3/payloads/model_to_payload.go b/pkg/handlers/primeapiv3/payloads/model_to_payload.go index aeddd72ef96..b4bfaf6faa8 100644 --- a/pkg/handlers/primeapiv3/payloads/model_to_payload.go +++ b/pkg/handlers/primeapiv3/payloads/model_to_payload.go @@ -248,16 +248,17 @@ func Address(address *models.Address) *primev3messages.Address { return nil } return &primev3messages.Address{ - ID: strfmt.UUID(address.ID.String()), - StreetAddress1: &address.StreetAddress1, - StreetAddress2: address.StreetAddress2, - StreetAddress3: address.StreetAddress3, - City: &address.City, - State: &address.State, - PostalCode: &address.PostalCode, - Country: Country(address.Country), - ETag: etag.GenerateEtag(address.UpdatedAt), - County: address.County, + ID: strfmt.UUID(address.ID.String()), + StreetAddress1: &address.StreetAddress1, + StreetAddress2: address.StreetAddress2, + StreetAddress3: address.StreetAddress3, + City: &address.City, + State: &address.State, + PostalCode: &address.PostalCode, + Country: Country(address.Country), + ETag: etag.GenerateEtag(address.UpdatedAt), + County: address.County, + DestinationGbloc: address.DestinationGbloc, } } diff --git a/pkg/handlers/primeapiv3/payloads/model_to_payload_test.go b/pkg/handlers/primeapiv3/payloads/model_to_payload_test.go index 54892d9d515..a9c46fe2abb 100644 --- a/pkg/handlers/primeapiv3/payloads/model_to_payload_test.go +++ b/pkg/handlers/primeapiv3/payloads/model_to_payload_test.go @@ -150,12 +150,13 @@ func (suite *PayloadsSuite) TestMoveTaskOrder() { PostalCode: fairbanksAlaskaPostalCode, }, DestinationAddress: &models.Address{ - StreetAddress1: "123 Main St", - StreetAddress2: &streetAddress2, - StreetAddress3: &streetAddress3, - City: "Anchorage", - State: "AK", - PostalCode: anchorageAlaskaPostalCode, + StreetAddress1: "123 Main St", + StreetAddress2: &streetAddress2, + StreetAddress3: &streetAddress3, + City: "Anchorage", + State: "AK", + PostalCode: anchorageAlaskaPostalCode, + DestinationGbloc: models.StringPointer("JEAT"), }, }) newMove.MTOShipments = append(newMove.MTOShipments, models.MTOShipment{ @@ -168,12 +169,13 @@ func (suite *PayloadsSuite) TestMoveTaskOrder() { PostalCode: wasillaAlaskaPostalCode, }, DestinationAddress: &models.Address{ - StreetAddress1: "123 Main St", - StreetAddress2: &streetAddress2, - StreetAddress3: &streetAddress3, - City: "Wasilla", - State: "AK", - PostalCode: wasillaAlaskaPostalCode, + StreetAddress1: "123 Main St", + StreetAddress2: &streetAddress2, + StreetAddress3: &streetAddress3, + City: "Wasilla", + State: "AK", + PostalCode: wasillaAlaskaPostalCode, + DestinationGbloc: models.StringPointer("JEAT"), }, }) newMove.MTOShipments = append(newMove.MTOShipments, models.MTOShipment{ @@ -237,20 +239,22 @@ func (suite *PayloadsSuite) TestMoveTaskOrder() { }) newMove.MTOShipments = append(newMove.MTOShipments, models.MTOShipment{ PickupAddress: &models.Address{ - StreetAddress1: "123 Main St", - StreetAddress2: &streetAddress2, - StreetAddress3: &streetAddress3, - City: "Beverly Hills", - State: "CA", - PostalCode: "90210", + StreetAddress1: "123 Main St", + StreetAddress2: &streetAddress2, + StreetAddress3: &streetAddress3, + City: "Beverly Hills", + State: "CA", + PostalCode: "90210", + DestinationGbloc: models.StringPointer("JEAT"), }, DestinationAddress: &models.Address{ - StreetAddress1: "123 Main St", - StreetAddress2: &streetAddress2, - StreetAddress3: &streetAddress3, - City: "Beverly Hills", - State: "CA", - PostalCode: "90210", + StreetAddress1: "123 Main St", + StreetAddress2: &streetAddress2, + StreetAddress3: &streetAddress3, + City: "Beverly Hills", + State: "CA", + PostalCode: "90210", + DestinationGbloc: models.StringPointer("JEAT"), }, }) @@ -357,6 +361,7 @@ func (suite *PayloadsSuite) TestMoveTaskOrder() { } else { suite.NotNil(shipment.PickupAddress) suite.NotNil(shipment.DestinationAddress) + suite.NotNil(shipment.DestinationAddress.DestinationGbloc) if slices.Contains(expectedAlaskaPostalCodes, *shipment.PickupAddress.PostalCode) { ra, contains := shipmentPostalCodeRateAreaLookupMap[*shipment.PickupAddress.PostalCode] suite.True(contains) diff --git a/pkg/handlers/supportapi/move_task_order_test.go b/pkg/handlers/supportapi/move_task_order_test.go index f10fde1438e..b1241de3f32 100644 --- a/pkg/handlers/supportapi/move_task_order_test.go +++ b/pkg/handlers/supportapi/move_task_order_test.go @@ -173,6 +173,8 @@ func (suite *HandlerSuite) TestMakeMoveAvailableHandlerIntegrationSuccess() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { @@ -388,6 +390,8 @@ func (suite *HandlerSuite) TestCreateMoveTaskOrderRequestHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/handlers/supportapi/mto_service_item_test.go b/pkg/handlers/supportapi/mto_service_item_test.go index 97aede75143..931efac7953 100644 --- a/pkg/handlers/supportapi/mto_service_item_test.go +++ b/pkg/handlers/supportapi/mto_service_item_test.go @@ -86,6 +86,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemStatusHandlerApproveSuccess() mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) handler := UpdateMTOServiceItemStatusHandler{handlerConfig, mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher), @@ -143,6 +145,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemStatusHandlerRejectSuccess() mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) handler := UpdateMTOServiceItemStatusHandler{handlerConfig, mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher), @@ -200,6 +204,8 @@ func (suite *HandlerSuite) TestUpdateMTOServiceItemStatusHandlerRejectionFailedN mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) handler := UpdateMTOServiceItemStatusHandler{handlerConfig, mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher), diff --git a/pkg/handlers/supportapi/mto_shipment_test.go b/pkg/handlers/supportapi/mto_shipment_test.go index c1a9bb7018b..9a3a0c07a85 100644 --- a/pkg/handlers/supportapi/mto_shipment_test.go +++ b/pkg/handlers/supportapi/mto_shipment_test.go @@ -97,6 +97,8 @@ func (suite *HandlerSuite) TestUpdateMTOShipmentStatusHandler() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) siCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) planner.On("Zip5TransitDistanceLineHaul", diff --git a/pkg/models/address.go b/pkg/models/address.go index e683f7771ab..d89a163c9aa 100644 --- a/pkg/models/address.go +++ b/pkg/models/address.go @@ -34,6 +34,7 @@ type Address struct { IsOconus *bool `json:"is_oconus" db:"is_oconus"` UsPostRegionCityID *uuid.UUID `json:"us_post_region_cities_id" db:"us_post_region_cities_id"` UsPostRegionCity *UsPostRegionCity `belongs_to:"us_post_region_cities" fk_id:"us_post_region_cities_id"` + DestinationGbloc *string `db:"-"` // this tells Pop not to look in the db for this value } // TableName overrides the table name used by Pop. diff --git a/pkg/models/move.go b/pkg/models/move.go index 55253f40b61..f0b3ac49269 100644 --- a/pkg/models/move.go +++ b/pkg/models/move.go @@ -464,6 +464,21 @@ func SaveMoveDependencies(db *pop.Connection, move *Move) (*validate.Errors, err return responseVErrors, responseError } +// FetchMoveByMoveIDWithServiceItems returns a Move along with all the associations needed to determine +// the move service item's status. +func FetchMoveByMoveIDWithServiceItems(db *pop.Connection, moveID uuid.UUID) (Move, error) { + var move Move + err := db.Q().Eager().Where("show = TRUE").Find(&move, moveID) + + if err != nil { + if errors.Cause(err).Error() == RecordNotFoundErrorString { + return Move{}, ErrFetchNotFound + } + return Move{}, err + } + return move, nil +} + // FetchMoveForMoveDates returns a Move along with all the associations needed to determine // the move dates summary information. func FetchMoveForMoveDates(db *pop.Connection, moveID uuid.UUID) (Move, error) { diff --git a/pkg/models/mto_service_items.go b/pkg/models/mto_service_items.go index d4d4b54ff96..b65f2e7ac96 100644 --- a/pkg/models/mto_service_items.go +++ b/pkg/models/mto_service_items.go @@ -156,7 +156,9 @@ func FetchServiceItem(db *pop.Connection, serviceItemID uuid.UUID) (MTOServiceIt err := db.Eager("SITDestinationOriginalAddress", "SITDestinationFinalAddress", "ReService", - "CustomerContacts").Where("id = ?", serviceItemID).First(&serviceItem) + "CustomerContacts", + "MTOShipment.PickupAddress", + "MTOShipment.DestinationAddress").Where("id = ?", serviceItemID).First(&serviceItem) if err != nil { if errors.Cause(err).Error() == RecordNotFoundErrorString { diff --git a/pkg/models/mto_shipments.go b/pkg/models/mto_shipments.go index a4dbf53bdb7..57c58a7f2cc 100644 --- a/pkg/models/mto_shipments.go +++ b/pkg/models/mto_shipments.go @@ -1,6 +1,7 @@ package models import ( + "database/sql" "fmt" "time" @@ -422,6 +423,33 @@ func DetermineMarketCode(address1 *Address, address2 *Address) (MarketCode, erro } } +// PortLocationInfo holds the ZIP code and port type for a shipment +// this is used in the db function/query below +type PortLocationInfo struct { + UsprZipID string `db:"uspr_zip_id"` + PortType string `db:"port_type"` +} + +// GetPortLocationForShipment gets the ZIP and port type associated with the port for the POEFSC/PODFSC service item in a shipment +func GetPortLocationInfoForShipment(db *pop.Connection, shipmentID uuid.UUID) (*string, *string, error) { + var portLocationInfo PortLocationInfo + + err := db.RawQuery("SELECT * FROM get_port_location_info_for_shipment($1)", shipmentID). + First(&portLocationInfo) + + if err != nil && err != sql.ErrNoRows { + return nil, nil, fmt.Errorf("error fetching port location for shipment ID: %s with error %w", shipmentID, err) + } + + // return the ZIP code and port type, or nil if not found + if portLocationInfo.UsprZipID != "" && portLocationInfo.PortType != "" { + return &portLocationInfo.UsprZipID, &portLocationInfo.PortType, nil + } + + // if nothing was found, return nil - just means we don't have the port info from Prime yet + return nil, nil, nil +} + func CreateApprovedServiceItemsForShipment(db *pop.Connection, shipment *MTOShipment) error { err := db.RawQuery("CALL create_approved_service_items_for_shipment($1)", shipment.ID).Exec() if err != nil { @@ -434,8 +462,8 @@ func CreateApprovedServiceItemsForShipment(db *pop.Connection, shipment *MTOShip // a db stored proc that will handle updating the pricing_estimate columns of basic service items for shipment types: // iHHG // iUB -func UpdateEstimatedPricingForShipmentBasicServiceItems(db *pop.Connection, shipment *MTOShipment) error { - err := db.RawQuery("CALL update_service_item_pricing($1)", shipment.ID).Exec() +func UpdateEstimatedPricingForShipmentBasicServiceItems(db *pop.Connection, shipment *MTOShipment, mileage int) error { + err := db.RawQuery("CALL update_service_item_pricing($1, $2)", shipment.ID, mileage).Exec() if err != nil { return fmt.Errorf("error updating estimated pricing for shipment's service items: %w", err) } @@ -443,6 +471,25 @@ func UpdateEstimatedPricingForShipmentBasicServiceItems(db *pop.Connection, ship return nil } +// GetDestinationGblocForShipment gets the GBLOC associated with the shipment's destination address +// there are certain exceptions for OCONUS addresses in Alaska Zone II based on affiliation +func GetDestinationGblocForShipment(db *pop.Connection, shipmentID uuid.UUID) (*string, error) { + var gbloc *string + + err := db.RawQuery("SELECT * FROM get_destination_gbloc_for_shipment($1)", shipmentID). + First(&gbloc) + + if err != nil && err != sql.ErrNoRows { + return nil, fmt.Errorf("error fetching destination gbloc for shipment ID: %s with error %w", shipmentID, err) + } + + if gbloc != nil { + return gbloc, nil + } + + return nil, nil +} + // Returns a Shipment for a given id func FetchShipmentByID(db *pop.Connection, shipmentID uuid.UUID) (*MTOShipment, error) { var mtoShipment MTOShipment diff --git a/pkg/models/mto_shipments_test.go b/pkg/models/mto_shipments_test.go index b82c05dd217..506c69e4d5e 100644 --- a/pkg/models/mto_shipments_test.go +++ b/pkg/models/mto_shipments_test.go @@ -339,3 +339,149 @@ func (suite *ModelSuite) TestFindShipmentByID() { suite.Equal(models.ErrFetchNotFound, err) }) } + +func (suite *ModelSuite) TestGetDestinationGblocForShipment() { + suite.Run("success - get GBLOC for USAF in AK Zone II", func() { + // Create a USAF move in Alaska Zone II + // this is a hard coded uuid that is a us_post_region_cities_id within AK Zone II + // this should always return MBFL + zone2UUID, err := uuid.FromString("66768964-e0de-41f3-b9be-7ef32e4ae2b4") + suite.FatalNoError(err) + airForce := models.AffiliationAIRFORCE + postalCode := "99501" + + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + PostalCode: postalCode, + UsPostRegionCityID: &zone2UUID, + }, + }, + }, nil) + + move := factory.BuildAvailableToPrimeMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &airForce, + }, + }, + }, nil) + + shipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + MarketCode: models.MarketCodeInternational, + }, + }, + { + Model: move, + LinkOnly: true, + }, + { + Model: destinationAddress, + LinkOnly: true, + }, + }, nil) + + gbloc, err := models.GetDestinationGblocForShipment(suite.DB(), shipment.ID) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(*gbloc, "MBFL") + }) + suite.Run("success - get GBLOC for Army in AK Zone II", func() { + // Create an ARMY move in Alaska Zone II + zone2UUID, err := uuid.FromString("66768964-e0de-41f3-b9be-7ef32e4ae2b4") + suite.FatalNoError(err) + army := models.AffiliationARMY + postalCode := "99501" + // since we truncate the test db, we need to add the postal_code_to_gbloc value + factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), "99744", "JEAT") + + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + PostalCode: postalCode, + UsPostRegionCityID: &zone2UUID, + }, + }, + }, nil) + + move := factory.BuildAvailableToPrimeMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + + shipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + MarketCode: models.MarketCodeInternational, + }, + }, + { + Model: move, + LinkOnly: true, + }, + { + Model: destinationAddress, + LinkOnly: true, + }, + }, nil) + + gbloc, err := models.GetDestinationGblocForShipment(suite.DB(), shipment.ID) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(*gbloc, "JEAT") + }) + suite.Run("success - get GBLOC for USMC in AK Zone II", func() { + // Create a USMC move in Alaska Zone II + // this should always return USMC + zone2UUID, err := uuid.FromString("66768964-e0de-41f3-b9be-7ef32e4ae2b4") + suite.FatalNoError(err) + usmc := models.AffiliationMARINES + postalCode := "99501" + // since we truncate the test db, we need to add the postal_code_to_gbloc value + // this doesn't matter to the db function because it will check for USMC but we are just verifying it won't be JEAT despite the zip matching + factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), "99744", "JEAT") + + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + PostalCode: postalCode, + UsPostRegionCityID: &zone2UUID, + }, + }, + }, nil) + + move := factory.BuildAvailableToPrimeMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &usmc, + }, + }, + }, nil) + + shipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + MarketCode: models.MarketCodeInternational, + }, + }, + { + Model: move, + LinkOnly: true, + }, + { + Model: destinationAddress, + LinkOnly: true, + }, + }, nil) + + gbloc, err := models.GetDestinationGblocForShipment(suite.DB(), shipment.ID) + suite.NoError(err) + suite.NotNil(gbloc) + suite.Equal(*gbloc, "USMC") + }) +} diff --git a/pkg/models/re_zip3s_test.go b/pkg/models/re_zip3s_test.go index 3395842216d..79a5d70c613 100644 --- a/pkg/models/re_zip3s_test.go +++ b/pkg/models/re_zip3s_test.go @@ -4,7 +4,6 @@ import ( "github.com/gofrs/uuid" "github.com/transcom/mymove/pkg/models" - "github.com/transcom/mymove/pkg/testdatagen" ) func (suite *ModelSuite) TestReZip3Validations() { @@ -48,11 +47,6 @@ func (suite *ModelSuite) TestReZip3Validations() { suite.Run("test FetchReZip3Item", func() { zip3 := "606" - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ - ReZip3: models.ReZip3{ - Zip3: zip3, - }, - }) reZip3, err := models.FetchReZip3Item(suite.DB(), zip3) suite.Nil(err) diff --git a/pkg/payment_request/service_param_value_lookups/distance_zip_lookup.go b/pkg/payment_request/service_param_value_lookups/distance_zip_lookup.go index be5f2515e49..7b70c559d1d 100644 --- a/pkg/payment_request/service_param_value_lookups/distance_zip_lookup.go +++ b/pkg/payment_request/service_param_value_lookups/distance_zip_lookup.go @@ -83,7 +83,7 @@ func (r DistanceZipLookup) lookup(appCtx appcontext.AppContext, keyData *Service } if mtoShipment.DeliveryAddressUpdate != nil && mtoShipment.DeliveryAddressUpdate.Status == models.ShipmentAddressUpdateStatusApproved { - distanceMiles, err = planner.ZipTransitDistance(appCtx, pickupZip, mtoShipment.DeliveryAddressUpdate.NewAddress.PostalCode) + distanceMiles, err = planner.ZipTransitDistance(appCtx, pickupZip, mtoShipment.DeliveryAddressUpdate.NewAddress.PostalCode, false, false) if err != nil { return "", err } @@ -98,7 +98,7 @@ func (r DistanceZipLookup) lookup(appCtx appcontext.AppContext, keyData *Service if pickupZip == destinationZip { distanceMiles = 1 } else { - distanceMiles, err = planner.ZipTransitDistance(appCtx, pickupZip, destinationZip) + distanceMiles, err = planner.ZipTransitDistance(appCtx, pickupZip, destinationZip, false, false) if err != nil { return "", err } diff --git a/pkg/payment_request/service_param_value_lookups/distance_zip_lookup_test.go b/pkg/payment_request/service_param_value_lookups/distance_zip_lookup_test.go index 4f826c52009..f40692f2f1c 100644 --- a/pkg/payment_request/service_param_value_lookups/distance_zip_lookup_test.go +++ b/pkg/payment_request/service_param_value_lookups/distance_zip_lookup_test.go @@ -79,7 +79,7 @@ func (suite *ServiceParamValueLookupsSuite) TestDistanceLookup() { suite.NoError(err) planner := suite.planner.(*mocks.Planner) - planner.AssertCalled(suite.T(), "ZipTransitDistance", appContext, ppmShipment.PickupAddress.PostalCode, ppmShipment.DestinationAddress.PostalCode) + planner.AssertCalled(suite.T(), "ZipTransitDistance", appContext, ppmShipment.PickupAddress.PostalCode, ppmShipment.DestinationAddress.PostalCode, false, false) err = suite.DB().Reload(&ppmShipment.Shipment) suite.NoError(err) @@ -110,7 +110,7 @@ func (suite *ServiceParamValueLookupsSuite) TestDistanceLookup() { suite.NoError(err) planner := suite.planner.(*mocks.Planner) - planner.AssertCalled(suite.T(), "ZipTransitDistance", appContext, ppmShipment.PickupAddress.PostalCode, ppmShipment.DestinationAddress.PostalCode) + planner.AssertCalled(suite.T(), "ZipTransitDistance", appContext, ppmShipment.PickupAddress.PostalCode, ppmShipment.DestinationAddress.PostalCode, false, false) err = suite.DB().Reload(&ppmShipment.Shipment) suite.NoError(err) @@ -143,7 +143,7 @@ func (suite *ServiceParamValueLookupsSuite) TestDistanceLookup() { suite.NoError(err) planner := suite.planner.(*mocks.Planner) - planner.AssertNotCalled(suite.T(), "ZipTransitDistance", appContext, shipment.PickupAddress.PostalCode, shipment.DestinationAddress.PostalCode) + planner.AssertNotCalled(suite.T(), "ZipTransitDistance", appContext, shipment.PickupAddress.PostalCode, shipment.DestinationAddress.PostalCode, false, false) err = suite.DB().Reload(&shipment) suite.NoError(err) diff --git a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup.go b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup.go index 2136d7556bc..7ddc8651946 100644 --- a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup.go +++ b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup.go @@ -33,7 +33,7 @@ func (r DistanceZipSITDestLookup) lookup(appCtx appcontext.AppContext, keyData * if destZip == finalDestZip { distanceMiles = 1 } else { - distanceMiles, distanceErr = planner.ZipTransitDistance(appCtx, destZip, finalDestZip) + distanceMiles, distanceErr = planner.ZipTransitDistance(appCtx, destZip, finalDestZip, false, false) } if distanceErr != nil { diff --git a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup_test.go b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup_test.go index 8231238b831..997fcb409e7 100644 --- a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup_test.go +++ b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_dest_lookup_test.go @@ -211,6 +211,8 @@ func (suite *ServiceParamValueLookupsSuite) TestDistanceZipSITDestLookup() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(0, errors.New("error with ZipTransitDistance")) paramLookup, err := ServiceParamLookupInitialize(suite.AppContextForTest(), errorPlanner, mtoServiceItemSameZip3, paymentRequest.ID, paymentRequest.MoveTaskOrderID, nil) diff --git a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup.go b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup.go index e452adbed10..52178be8d65 100644 --- a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup.go +++ b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup.go @@ -39,7 +39,7 @@ func (r DistanceZipSITOriginLookup) lookup(appCtx appcontext.AppContext, keyData if originZip == actualOriginZip { distanceMiles = 1 } else { - distanceMiles, distanceErr = planner.ZipTransitDistance(appCtx, originZip, actualOriginZip) + distanceMiles, distanceErr = planner.ZipTransitDistance(appCtx, originZip, actualOriginZip, false, false) } if distanceErr != nil { return "", distanceErr diff --git a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup_test.go b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup_test.go index 31d766db385..6c055f7fd6b 100644 --- a/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup_test.go +++ b/pkg/payment_request/service_param_value_lookups/distance_zip_sit_origin_lookup_test.go @@ -184,6 +184,8 @@ func (suite *ServiceParamValueLookupsSuite) TestDistanceZipSITOriginLookup() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(0, errors.New("error with ZipTransitDistance")) paramLookup, err := ServiceParamLookupInitialize(suite.AppContextForTest(), errorPlanner, mtoServiceItemSameZip3, paymentRequest.ID, paymentRequest.MoveTaskOrderID, nil) diff --git a/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup.go b/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup.go index 9e5e29cc188..9d60fd9e7b1 100644 --- a/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup.go +++ b/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup.go @@ -22,7 +22,7 @@ func (r EIAFuelPriceLookup) lookup(appCtx appcontext.AppContext, _ *ServiceItemP // Make sure there is an actual pickup date since ActualPickupDate is nullable actualPickupDate := r.MTOShipment.ActualPickupDate if actualPickupDate == nil { - return "", fmt.Errorf("not found looking for pickup address") + return "", fmt.Errorf("not found looking for shipment pickup date") } // Find the GHCDieselFuelPrice object effective before the shipment's ActualPickupDate and ends after the ActualPickupDate diff --git a/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup_test.go b/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup_test.go index ded105300ab..2b310cbcdc0 100644 --- a/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup_test.go +++ b/pkg/payment_request/service_param_value_lookups/eia_fuel_price_lookup_test.go @@ -207,53 +207,16 @@ func (suite *ServiceParamValueLookupsSuite) TestEIAFuelPriceLookupWithInvalidAct suite.Run("lookup GHC diesel fuel price with nil actual pickup date", func() { setupTestData() - - paramLookup, err := ServiceParamLookupInitialize(suite.AppContextForTest(), suite.planner, mtoServiceItem, paymentRequest.ID, paymentRequest.MoveTaskOrderID, nil) + var shipment models.MTOShipment + err := suite.DB().Find(&shipment, mtoServiceItem.MTOShipmentID) suite.FatalNoError(err) - _, err = paramLookup.ServiceParamValue(suite.AppContextForTest(), key) - suite.Error(err) - suite.Contains(err.Error(), "EIAFuelPriceLookup with error Not found Looking for GHCDieselFuelPrice") - }) -} - -func (suite *ServiceParamValueLookupsSuite) TestEIAFuelPriceLookupWithNoGHCDieselFuelPriceData() { - key := models.ServiceItemParamNameEIAFuelPrice - var mtoServiceItem models.MTOServiceItem - var paymentRequest models.PaymentRequest - actualPickupDate := time.Date(2020, time.July, 15, 0, 0, 0, 0, time.UTC) - - setupTestData := func() { - testdatagen.MakeReContractYear(suite.DB(), testdatagen.Assertions{ - ReContractYear: models.ReContractYear{ - StartDate: time.Now().Add(-24 * time.Hour), - EndDate: time.Now().Add(24 * time.Hour), - }, - }) - mtoServiceItem = factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ - { - Model: models.MTOShipment{ - ActualPickupDate: &actualPickupDate, - }, - }, - }, []factory.Trait{ - factory.GetTraitAvailableToPrimeMove, - }) - - paymentRequest = factory.BuildPaymentRequest(suite.DB(), []factory.Customization{ - { - Model: mtoServiceItem.MoveTaskOrder, - LinkOnly: true, - }, - }, nil) - } - - suite.Run("lookup GHC diesel fuel price with no data", func() { - setupTestData() + shipment.ActualPickupDate = nil + suite.MustSave(&shipment) paramLookup, err := ServiceParamLookupInitialize(suite.AppContextForTest(), suite.planner, mtoServiceItem, paymentRequest.ID, paymentRequest.MoveTaskOrderID, nil) suite.FatalNoError(err) _, err = paramLookup.ServiceParamValue(suite.AppContextForTest(), key) suite.Error(err) - suite.Contains(err.Error(), "Looking for GHCDieselFuelPrice") + suite.Contains(err.Error(), "EIAFuelPriceLookup with error not found looking for shipment pickup date") }) } diff --git a/pkg/payment_request/service_param_value_lookups/service_param_value_lookups_test.go b/pkg/payment_request/service_param_value_lookups/service_param_value_lookups_test.go index 1bc5fc5be1a..02a067cb54d 100644 --- a/pkg/payment_request/service_param_value_lookups/service_param_value_lookups_test.go +++ b/pkg/payment_request/service_param_value_lookups/service_param_value_lookups_test.go @@ -46,6 +46,8 @@ func TestServiceParamValueLookupsSuite(t *testing.T) { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(defaultZipDistance, nil) ts := &ServiceParamValueLookupsSuite{ diff --git a/pkg/route/dtod_planner.go b/pkg/route/dtod_planner.go index 383de1dd923..61cf7addb26 100644 --- a/pkg/route/dtod_planner.go +++ b/pkg/route/dtod_planner.go @@ -44,7 +44,7 @@ func (p *dtodPlanner) Zip3TransitDistance(_ appcontext.AppContext, _ string, _ s } // ZipTransitDistance calculates the distance between two valid Zips -func (p *dtodPlanner) ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string) (int, error) { +func (p *dtodPlanner) ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string, useDTOD bool, isInternationalShipment bool) (int, error) { if len(source) < 5 { source = fmt.Sprintf("%05s", source) } diff --git a/pkg/route/dtod_planner_test.go b/pkg/route/dtod_planner_test.go index c8978eea831..1315f531fc6 100644 --- a/pkg/route/dtod_planner_test.go +++ b/pkg/route/dtod_planner_test.go @@ -18,7 +18,6 @@ import ( "github.com/transcom/mymove/pkg/models" "github.com/transcom/mymove/pkg/route/ghcmocks" - "github.com/transcom/mymove/pkg/testdatagen" "github.com/transcom/mymove/pkg/testingsuite" ) @@ -99,19 +98,9 @@ func (suite *GHCTestSuite) TestDTODZipTransitDistance() { mock.Anything, ).Return(soapResponseForDistance("150.33"), nil) - sourceZip3 := "303" - destinationZip3 := "309" - testdatagen.MakeZip3Distance(suite.DB(), testdatagen.Assertions{ - Zip3Distance: models.Zip3Distance{ - FromZip3: sourceZip3, - ToZip3: destinationZip3, - DistanceMiles: 150, - }, - }) - plannerMileage := NewDTODZip5Distance(fakeUsername, fakePassword, testSoapClient, false) planner := NewDTODPlanner(plannerMileage) - distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30301") + distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30301", false, false) suite.NoError(err) suite.Equal(150, distance) }) @@ -125,7 +114,7 @@ func (suite *GHCTestSuite) TestDTODZipTransitDistance() { plannerMileage := NewDTODZip5Distance(fakeUsername, fakePassword, testSoapClient, false) planner := NewDTODPlanner(plannerMileage) - distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30901") + distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30901", false, false) suite.Error(err) suite.Equal(0, distance) }) diff --git a/pkg/route/here_planner.go b/pkg/route/here_planner.go index e8d40c85521..e7114dd1bf2 100644 --- a/pkg/route/here_planner.go +++ b/pkg/route/here_planner.go @@ -219,7 +219,7 @@ func (p *herePlanner) Zip5TransitDistance(appCtx appcontext.AppContext, source s } // ZipTransitDistance calculates the distance between two valid Zip5s; it is used by the PPM flow -func (p *herePlanner) ZipTransitDistance(_ appcontext.AppContext, _ string, _ string) (int, error) { +func (p *herePlanner) ZipTransitDistance(_ appcontext.AppContext, _ string, _ string, _ bool, _ bool) (int, error) { // This might get retired after we transition over fully to GHC. panic("implement me") diff --git a/pkg/route/hhg_planner.go b/pkg/route/hhg_planner.go index 544d8f5eed7..88e1caa04a5 100644 --- a/pkg/route/hhg_planner.go +++ b/pkg/route/hhg_planner.go @@ -46,7 +46,7 @@ func (p *hhgPlanner) Zip3TransitDistance(_ appcontext.AppContext, _ string, _ st } // ZipTransitDistance calculates the distance between two valid Zips -func (p *hhgPlanner) ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string) (int, error) { +func (p *hhgPlanner) ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string, useDTOD bool, isInternationalShipment bool) (int, error) { sourceZip5 := source if len(source) < 5 { sourceZip5 = fmt.Sprintf("%05s", source) @@ -58,7 +58,7 @@ func (p *hhgPlanner) ZipTransitDistance(appCtx appcontext.AppContext, source str sourceZip3 := sourceZip5[0:3] destZip3 := destZip5[0:3] - if sourceZip3 == destZip3 { + if sourceZip3 == destZip3 || useDTOD { if sourceZip5 == destZip5 { return 1, nil } @@ -67,18 +67,21 @@ func (p *hhgPlanner) ZipTransitDistance(appCtx appcontext.AppContext, source str // Get reZip3s for origin and destination to compare base point cities. // Dont throw/return errors from this. If we dont find them, we'll just use randMcNallyZip3Distance - sourceReZip3, sErr := models.FetchReZip3Item(appCtx.DB(), sourceZip3) - if sErr != nil { - appCtx.Logger().Error("Failed to fetch the reZip3 item for sourceZip3", zap.Error(sErr)) - } - destinationReZip3, dErr := models.FetchReZip3Item(appCtx.DB(), destZip3) - if dErr != nil { - appCtx.Logger().Error("Failed to fetch the reZip3 item for destinationZip3", zap.Error(dErr)) - } + // this only applies to domestic shipments + if !isInternationalShipment { + sourceReZip3, sErr := models.FetchReZip3Item(appCtx.DB(), sourceZip3) + if sErr != nil { + appCtx.Logger().Error("Failed to fetch the reZip3 item for sourceZip3", zap.Error(sErr)) + } + destinationReZip3, dErr := models.FetchReZip3Item(appCtx.DB(), destZip3) + if dErr != nil { + appCtx.Logger().Error("Failed to fetch the reZip3 item for destinationZip3", zap.Error(dErr)) + } - // Different zip3, same base point city, use DTOD - if sourceReZip3 != nil && destinationReZip3 != nil && sourceReZip3.BasePointCity == destinationReZip3.BasePointCity { - return p.dtodPlannerMileage.DTODZip5Distance(appCtx, source, destination) + // Different zip3, same base point city, use DTOD + if sourceReZip3 != nil && destinationReZip3 != nil && sourceReZip3.BasePointCity == destinationReZip3.BasePointCity { + return p.dtodPlannerMileage.DTODZip5Distance(appCtx, source, destination) + } } return randMcNallyZip3Distance(appCtx, sourceZip3, destZip3) diff --git a/pkg/route/hhg_planner_test.go b/pkg/route/hhg_planner_test.go index e443788fd28..15c4fb03d14 100644 --- a/pkg/route/hhg_planner_test.go +++ b/pkg/route/hhg_planner_test.go @@ -15,7 +15,6 @@ import ( "github.com/transcom/mymove/pkg/models" "github.com/transcom/mymove/pkg/route/ghcmocks" - "github.com/transcom/mymove/pkg/testdatagen" ) func (suite *GHCTestSuite) TestHHGTransitDistance() { @@ -77,21 +76,11 @@ func (suite *GHCTestSuite) TestHHGZipTransitDistance() { mock.Anything, ).Return(soapResponseForDistance("150.33"), nil) - sourceZip3 := "303" - destinationZip3 := "309" - testdatagen.MakeZip3Distance(suite.DB(), testdatagen.Assertions{ - Zip3Distance: models.Zip3Distance{ - FromZip3: sourceZip3, - ToZip3: destinationZip3, - DistanceMiles: 150, - }, - }) - plannerMileage := NewDTODZip5Distance(fakeUsername, fakePassword, testSoapClient, false) planner := NewHHGPlanner(plannerMileage) - distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30301") + distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30301", false, false) suite.NoError(err) - suite.Equal(150, distance) + suite.Equal(149, distance) }) suite.Run("ZipTransitDistance returns a distance of 1 if origin and dest zips are the same", func() { @@ -99,7 +88,7 @@ func (suite *GHCTestSuite) TestHHGZipTransitDistance() { plannerMileage := NewDTODZip5Distance(fakeUsername, fakePassword, testSoapClient, false) planner := NewHHGPlanner(plannerMileage) - distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "11201", "11201") + distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "11201", "11201", false, false) suite.NoError(err) suite.Equal(1, distance) }) @@ -112,30 +101,11 @@ func (suite *GHCTestSuite) TestHHGZipTransitDistance() { mock.Anything, ).Return(soapResponseForDistance("166"), nil) - // Create two zip3s in the same base point city (Miami) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ - ReZip3: models.ReZip3{ - Zip3: "330", - BasePointCity: "Miami", - State: "FL", - }, - }) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ - ReZip3: models.ReZip3{ - Zip3: "331", - BasePointCity: "Miami", - State: "FL", - }, - ReDomesticServiceArea: models.ReDomesticServiceArea{ - ServiceArea: "005", - }, - }) - plannerMileage := NewDTODZip5Distance(fakeUsername, fakePassword, testSoapClient, false) planner := NewHHGPlanner(plannerMileage) // Get distance between two zips in the same base point city - distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "33169", "33040") + distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "33169", "33040", false, false) suite.NoError(err) // Ensure DTOD was used for distance @@ -151,7 +121,7 @@ func (suite *GHCTestSuite) TestHHGZipTransitDistance() { plannerMileage := NewDTODZip5Distance(fakeUsername, fakePassword, testSoapClient, false) planner := NewHHGPlanner(plannerMileage) - distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30901") + distance, err := planner.ZipTransitDistance(suite.AppContextForTest(), "30907", "30901", false, false) suite.Error(err) suite.Equal(0, distance) }) diff --git a/pkg/route/mocks/Planner.go b/pkg/route/mocks/Planner.go index 2cf26622df2..f6ce16a0e45 100644 --- a/pkg/route/mocks/Planner.go +++ b/pkg/route/mocks/Planner.go @@ -156,9 +156,9 @@ func (_m *Planner) Zip5TransitDistanceLineHaul(appCtx appcontext.AppContext, sou return r0, r1 } -// ZipTransitDistance provides a mock function with given fields: appCtx, source, destination -func (_m *Planner) ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string) (int, error) { - ret := _m.Called(appCtx, source, destination) +// ZipTransitDistance provides a mock function with given fields: appCtx, source, destination, useDTOD, isInternationalShipment +func (_m *Planner) ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string, useDTOD bool, isInternationalShipment bool) (int, error) { + ret := _m.Called(appCtx, source, destination, useDTOD, isInternationalShipment) if len(ret) == 0 { panic("no return value specified for ZipTransitDistance") @@ -166,17 +166,17 @@ func (_m *Planner) ZipTransitDistance(appCtx appcontext.AppContext, source strin var r0 int var r1 error - if rf, ok := ret.Get(0).(func(appcontext.AppContext, string, string) (int, error)); ok { - return rf(appCtx, source, destination) + if rf, ok := ret.Get(0).(func(appcontext.AppContext, string, string, bool, bool) (int, error)); ok { + return rf(appCtx, source, destination, useDTOD, isInternationalShipment) } - if rf, ok := ret.Get(0).(func(appcontext.AppContext, string, string) int); ok { - r0 = rf(appCtx, source, destination) + if rf, ok := ret.Get(0).(func(appcontext.AppContext, string, string, bool, bool) int); ok { + r0 = rf(appCtx, source, destination, useDTOD, isInternationalShipment) } else { r0 = ret.Get(0).(int) } - if rf, ok := ret.Get(1).(func(appcontext.AppContext, string, string) error); ok { - r1 = rf(appCtx, source, destination) + if rf, ok := ret.Get(1).(func(appcontext.AppContext, string, string, bool, bool) error); ok { + r1 = rf(appCtx, source, destination, useDTOD, isInternationalShipment) } else { r1 = ret.Error(1) } diff --git a/pkg/route/planner.go b/pkg/route/planner.go index ccc349be6d9..591dcec643b 100644 --- a/pkg/route/planner.go +++ b/pkg/route/planner.go @@ -120,7 +120,7 @@ type Planner interface { // Zip5TransitDistanceLineHaul is used by PPM flow and checks for minimum distance restriction as PPM doesn't allow short hauls // New code should probably make the minimum checks after calling Zip5TransitDistance over using this method Zip5TransitDistanceLineHaul(appCtx appcontext.AppContext, source string, destination string) (int, error) - ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string) (int, error) + ZipTransitDistance(appCtx appcontext.AppContext, source string, destination string, useDTOD bool, isInternationalShipment bool) (int, error) Zip3TransitDistance(appCtx appcontext.AppContext, source string, destination string) (int, error) Zip5TransitDistance(appCtx appcontext.AppContext, source string, destination string) (int, error) } diff --git a/pkg/route/planner_test.go b/pkg/route/planner_test.go index eb574873278..4a0d968c1f9 100644 --- a/pkg/route/planner_test.go +++ b/pkg/route/planner_test.go @@ -109,7 +109,7 @@ func (suite *PlannerFullSuite) TestZipDistance() { {zip1: "902101234", zip2: caZip, distanceMin: 30, distanceMax: 49}, } for _, ts := range tests { - distance, err := suite.planner.ZipTransitDistance(suite.AppContextForTest(), ts.zip1, ts.zip2) + distance, err := suite.planner.ZipTransitDistance(suite.AppContextForTest(), ts.zip1, ts.zip2, false, false) if len(ts.zip1) > 5 { suite.Error(err) suite.Equal(distance, 0) diff --git a/pkg/route/rand_mcnally_distance_test.go b/pkg/route/rand_mcnally_distance_test.go index 1710194636c..d8b227a5080 100644 --- a/pkg/route/rand_mcnally_distance_test.go +++ b/pkg/route/rand_mcnally_distance_test.go @@ -1,27 +1,20 @@ package route -import ( - "github.com/transcom/mymove/pkg/testdatagen" -) - func (suite *GHCTestSuite) TestRandMcNallyZip3Distance() { suite.Run("test basic distance check", func() { - testdatagen.MakeDefaultZip3Distance(suite.DB()) distance, err := randMcNallyZip3Distance(suite.AppContextForTest(), "010", "011") suite.NoError(err) - suite.Equal(24, distance) + suite.Equal(12, distance) }) suite.Run("fromZip3 is greater than toZip3", func() { - testdatagen.MakeDefaultZip3Distance(suite.DB()) distance, err := randMcNallyZip3Distance(suite.AppContextForTest(), "011", "010") suite.NoError(err) - suite.Equal(24, distance) + suite.Equal(12, distance) }) suite.Run("fromZip3 is the same as toZip3", func() { - testdatagen.MakeDefaultZip3Distance(suite.DB()) distance, err := randMcNallyZip3Distance(suite.AppContextForTest(), "010", "010") suite.Equal(0, distance) suite.NotNil(err) diff --git a/pkg/services/ghcdieselfuelprice/ghc_diesel_fuel_price_storer_test.go b/pkg/services/ghcdieselfuelprice/ghc_diesel_fuel_price_storer_test.go index 95188677e61..bbd563fc017 100644 --- a/pkg/services/ghcdieselfuelprice/ghc_diesel_fuel_price_storer_test.go +++ b/pkg/services/ghcdieselfuelprice/ghc_diesel_fuel_price_storer_test.go @@ -32,8 +32,8 @@ func (suite *GHCDieselFuelPriceServiceSuite) Test_ghcDieselFuelPriceStorer() { var ghcDieselFuelPrice models.GHCDieselFuelPrice err = suite.DB().Last(&ghcDieselFuelPrice) suite.NoError(err) - suite.Equal("2020-06-22T00:00:00Z", ghcDieselFuelPrice.PublicationDate.Format(time.RFC3339)) - suite.Equal(unit.Millicents(265900), ghcDieselFuelPrice.FuelPriceInMillicents) + suite.Equal("2020-04-06T00:00:00Z", ghcDieselFuelPrice.PublicationDate.Format(time.RFC3339)) + suite.Equal(unit.Millicents(254800), ghcDieselFuelPrice.FuelPriceInMillicents) }) diff --git a/pkg/services/ghcimport/import_re_domestic_linehaul_prices_test.go b/pkg/services/ghcimport/import_re_domestic_linehaul_prices_test.go index 7d79bf37b98..32b16b4fced 100644 --- a/pkg/services/ghcimport/import_re_domestic_linehaul_prices_test.go +++ b/pkg/services/ghcimport/import_re_domestic_linehaul_prices_test.go @@ -45,7 +45,7 @@ func (suite *GHCRateEngineImportSuite) Test_importREDomesticLinehaulPrices() { func (suite *GHCRateEngineImportSuite) helperVerifyDomesticLinehaulCount() { count, err := suite.DB().Count(&models.ReDomesticLinehaulPrice{}) suite.NoError(err) - suite.Equal(240, count) + suite.Equal(13800, count) } func (suite *GHCRateEngineImportSuite) helperCheckDomesticLinehaulValue() { diff --git a/pkg/services/ghcimport/import_re_domestic_other_prices_test.go b/pkg/services/ghcimport/import_re_domestic_other_prices_test.go index 8cf12ef8cbd..ca14e7f4ad9 100644 --- a/pkg/services/ghcimport/import_re_domestic_other_prices_test.go +++ b/pkg/services/ghcimport/import_re_domestic_other_prices_test.go @@ -85,7 +85,7 @@ func (suite *GHCRateEngineImportSuite) Test_importREDomesticOtherPricesFailures( func (suite *GHCRateEngineImportSuite) helperVerifyDomesticOtherPrices() { count, err := suite.DB().Count(&models.ReDomesticOtherPrice{}) suite.NoError(err) - suite.Equal(24, count) + suite.Equal(48, count) } func (suite *GHCRateEngineImportSuite) helperCheckDomesticOtherPriceValue() { diff --git a/pkg/services/ghcimport/import_re_domestic_service_area_prices_test.go b/pkg/services/ghcimport/import_re_domestic_service_area_prices_test.go index 7f89bb5f431..955a5ed3e63 100644 --- a/pkg/services/ghcimport/import_re_domestic_service_area_prices_test.go +++ b/pkg/services/ghcimport/import_re_domestic_service_area_prices_test.go @@ -70,7 +70,7 @@ func (suite *GHCRateEngineImportSuite) Test_importREDomesticServiceAreaPricesFai func (suite *GHCRateEngineImportSuite) helperVerifyDomesticServiceAreaPrices() { count, err := suite.DB().Count(&models.ReDomesticServiceAreaPrice{}) suite.NoError(err) - suite.Equal(70, count) + suite.Equal(3234, count) } func (suite *GHCRateEngineImportSuite) helperCheckDomesticServiceAreaPriceValue() { diff --git a/pkg/services/ghcimport/import_re_intl_other_prices_test.go b/pkg/services/ghcimport/import_re_intl_other_prices_test.go index 8818f531cc8..8dc6fd4ce47 100644 --- a/pkg/services/ghcimport/import_re_intl_other_prices_test.go +++ b/pkg/services/ghcimport/import_re_intl_other_prices_test.go @@ -49,7 +49,7 @@ func (suite *GHCRateEngineImportSuite) Test_importREInternationalOtherPrices() { func (suite *GHCRateEngineImportSuite) helperVerifyInternationalOtherPrices() { count, err := suite.DB().Count(&models.ReIntlOtherPrice{}) suite.NoError(err) - suite.Equal(180, count) + suite.Equal(2580, count) } func (suite *GHCRateEngineImportSuite) helperCheckInternationalOtherPriceRecords() { diff --git a/pkg/services/ghcimport/import_re_intl_prices_test.go b/pkg/services/ghcimport/import_re_intl_prices_test.go index 13d9f74ffd8..ae159e3197d 100644 --- a/pkg/services/ghcimport/import_re_intl_prices_test.go +++ b/pkg/services/ghcimport/import_re_intl_prices_test.go @@ -102,7 +102,7 @@ func (suite *GHCRateEngineImportSuite) Test_getRateAreaIDForKind() { func (suite *GHCRateEngineImportSuite) helperVerifyInternationalPrices() { count, err := suite.DB().Count(&models.ReIntlPrice{}) suite.NoError(err) - suite.Equal(276, count) + suite.Equal(46640, count) } func (suite *GHCRateEngineImportSuite) helperCheckInternationalPriceValues() { diff --git a/pkg/services/ghcrateengine/domestic_destination_first_day_sit_pricer_test.go b/pkg/services/ghcrateengine/domestic_destination_first_day_sit_pricer_test.go index b3589c58e11..f03ba1e4a53 100644 --- a/pkg/services/ghcrateengine/domestic_destination_first_day_sit_pricer_test.go +++ b/pkg/services/ghcrateengine/domestic_destination_first_day_sit_pricer_test.go @@ -14,11 +14,11 @@ import ( const ( ddfsitTestServiceArea = "456" ddfsitTestIsPeakPeriod = false - ddfsitTestBasePriceCents = unit.Cents(525) + ddfsitTestBasePriceCents = unit.Cents(1770) ddfsitTestContractYearName = "DDFSIT Test Year" ddfsitTestEscalationCompounded = 1.052 ddfsitTestWeight = unit.Pound(3300) - ddfsitTestPriceCents = unit.Cents(18216) + ddfsitTestPriceCents = unit.Cents(61446) ) var ddfsitTestRequestedPickupDate = time.Date(testdatagen.TestYear, time.January, 5, 7, 33, 11, 456, time.UTC) diff --git a/pkg/services/ghcrateengine/domestic_destination_sit_delivery_pricer_test.go b/pkg/services/ghcrateengine/domestic_destination_sit_delivery_pricer_test.go index a1b0950e605..25976f78a0d 100644 --- a/pkg/services/ghcrateengine/domestic_destination_sit_delivery_pricer_test.go +++ b/pkg/services/ghcrateengine/domestic_destination_sit_delivery_pricer_test.go @@ -22,8 +22,8 @@ const ( dddsitTestWeightUpper = unit.Pound(4999) dddsitTestMilesLower = 251 dddsitTestMilesUpper = 500 - dddsitTestDomesticOtherBasePriceCents = unit.Cents(2518) - dddsitTestDomesticLinehaulBasePriceMillicents = unit.Millicents(6500) + dddsitTestDomesticOtherBasePriceCents = unit.Cents(21796) + dddsitTestDomesticLinehaulBasePriceMillicents = unit.Millicents(237900) dddsitTestDomesticServiceAreaBasePriceCents = unit.Cents(153) ) @@ -35,7 +35,7 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticDestinationSITDeliveryPricer distance := unit.Miles(37) pricer := NewDomesticDestinationSITDeliveryPricer() - expectedPrice := unit.Cents(58365) // dddsitTestDomesticServiceAreaBasePriceCents * (dddsitTestWeight / 100) * distance * dddsitTestEscalationCompounded + expectedPrice := unit.Cents(505125) // dddsitTestDomesticServiceAreaBasePriceCents * (dddsitTestWeight / 100) * distance * dddsitTestEscalationCompounded suite.Run("success using PaymentServiceItemParams", func() { suite.setupDomesticOtherPrice(models.ReServiceCodeDDDSIT, dddsitTestSchedule, dddsitTestIsPeakPeriod, dddsitTestDomesticOtherBasePriceCents, dddsitTestContractYearName, dddsitTestEscalationCompounded) @@ -49,7 +49,6 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticDestinationSITDeliveryPricer {Key: models.ServiceItemParamNameContractYearName, Value: dddsitTestContractYearName}, {Key: models.ServiceItemParamNameEscalationCompounded, Value: FormatEscalation(dddsitTestEscalationCompounded)}, {Key: models.ServiceItemParamNameIsPeak, Value: FormatBool(dddsitTestIsPeakPeriod)}, - // {Key: models.ServiceItemParamNamePriceRateOrFactor, Value: FormatCents(dddsitTestDomesticServiceAreaBasePriceCents)}, {Key: models.ServiceItemParamNamePriceRateOrFactor, Value: FormatCents(dddsitTestDomesticOtherBasePriceCents)}, } suite.validatePricerCreatedParams(expectedParams, displayParams) @@ -103,16 +102,7 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticDestinationSITDeliveryPricer suite.Contains(err.Error(), "invalid SIT final destination postal code") }) - suite.Run("bad SIT final destination service area using ServiceAreaLookup", func() { - suite.setupDomesticServiceAreaPrice(models.ReServiceCodeDSH, "", dddsitTestIsPeakPeriod, dddsitTestDomesticServiceAreaBasePriceCents, dddsitTestContractYearName, dddsitTestEscalationCompounded) - - _, _, err := pricer.Price(suite.AppContextForTest(), testdatagen.DefaultContractCode, dddsitTestRequestedPickupDate, dddsitTestWeight, "111", dddsitTestSchedule, zipDest, zipSITDest, distance) - suite.Error(err) - suite.Contains(err.Error(), "could not fetch domestic destination SIT delivery rate") - }) - suite.Run("error from shorthaul pricer", func() { - //suite.setupDomesticServiceAreaPrice(models.ReServiceCodeDSH, dddsitTestServiceArea, dddsitTestIsPeakPeriod, dddsitTestDomesticServiceAreaBasePriceCents, dddsitTestContractYearName, dddsitTestEscalationCompounded) suite.setupDomesticOtherPrice(models.ReServiceCodeDDDSIT, dddsitTestSchedule, dddsitTestIsPeakPeriod, dddsitTestDomesticOtherBasePriceCents, dddsitTestContractYearName, dddsitTestEscalationCompounded) _, _, err := pricer.Price(suite.AppContextForTest(), "BOGUS", dddsitTestRequestedPickupDate, dddsitTestWeight, dddsitTestServiceArea, dddsitTestSchedule, zipDest, zipSITDest, distance) @@ -123,12 +113,11 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticDestinationSITDeliveryPricer func (suite *GHCRateEngineServiceSuite) TestDomesticDestinationSITDeliveryPricer50PlusMilesDiffZip3s() { zipDest := "30907" - zipSITDest := "36106" // different zip3 - //sitServiceAreaDest := "020" // different service Area + zipSITDest := "36106" // different zip3 distance := unit.Miles(305) // > 50 miles pricer := NewDomesticDestinationSITDeliveryPricer() - expectedPrice := unit.Cents(45979) + expectedPrice := unit.Cents(1681313) suite.Run("success using PaymentServiceItemParams", func() { suite.setupDomesticLinehaulPrice(dddsitTestServiceArea, dddsitTestIsPeakPeriod, dddsitTestWeightLower, dddsitTestWeightUpper, dddsitTestMilesLower, dddsitTestMilesUpper, dddsitTestDomesticLinehaulBasePriceMillicents, dddsitTestContractYearName, dddsitTestEscalationCompounded) @@ -170,7 +159,7 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticDestinationSITDeliveryPricer distance := unit.Miles(37) // <= 50 miles pricer := NewDomesticDestinationSITDeliveryPricer() - expectedPrice := unit.Cents(58365) + expectedPrice := unit.Cents(505125) suite.Run("success using PaymentServiceItemParams", func() { suite.setupDomesticOtherPrice(models.ReServiceCodeDDDSIT, dddsitTestSchedule, dddsitTestIsPeakPeriod, dddsitTestDomesticOtherBasePriceCents, dddsitTestContractYearName, dddsitTestEscalationCompounded) diff --git a/pkg/services/ghcrateengine/domestic_linehaul_pricer_test.go b/pkg/services/ghcrateengine/domestic_linehaul_pricer_test.go index 8a5b187fc2c..5365abdbb3c 100644 --- a/pkg/services/ghcrateengine/domestic_linehaul_pricer_test.go +++ b/pkg/services/ghcrateengine/domestic_linehaul_pricer_test.go @@ -18,12 +18,12 @@ const ( dlhTestWeightUpper = unit.Pound(4999) dlhTestMilesLower = 1001 dlhTestMilesUpper = 1500 - dlhTestBasePriceMillicents = unit.Millicents(5111) + dlhTestBasePriceMillicents = unit.Millicents(388600) dlhTestContractYearName = "DLH Test Year" dlhTestEscalationCompounded = 1.04071 dlhTestDistance = unit.Miles(1201) dlhTestWeight = unit.Pound(4001) - dlhPriceCents = unit.Cents(254676) + dlhPriceCents = unit.Cents(19432233) ) var dlhRequestedPickupDate = time.Date(testdatagen.TestYear, time.June, 5, 7, 33, 11, 456, time.UTC) @@ -32,7 +32,6 @@ func (suite *GHCRateEngineServiceSuite) TestPriceDomesticLinehaul() { linehaulServicePricer := NewDomesticLinehaulPricer() suite.Run("success using PaymentServiceItemParams", func() { - // serviceArea := "sa0" suite.setupDomesticLinehaulPrice(dlhTestServiceArea, dlhTestIsPeakPeriod, dlhTestWeightLower, dlhTestWeightUpper, dlhTestMilesLower, dlhTestMilesUpper, dlhTestBasePriceMillicents, dlhTestContractYearName, dlhTestEscalationCompounded) paymentServiceItem := suite.setupDomesticLinehaulServiceItem() priceCents, displayParams, err := linehaulServicePricer.PriceUsingParams(suite.AppContextForTest(), paymentServiceItem.PaymentServiceItemParams) @@ -87,7 +86,7 @@ func (suite *GHCRateEngineServiceSuite) TestPriceDomesticLinehaul() { // < 50 mile distance with PPM priceCents, _, err := linehaulServicePricer.Price(suite.AppContextForTest(), testdatagen.DefaultContractCode, dlhRequestedPickupDate, unit.Miles(49), dlhTestWeight, dlhTestServiceArea, isPPM) suite.NoError(err) - suite.Equal(unit.Cents(10391), priceCents) + suite.Equal(unit.Cents(526980), priceCents) }) suite.Run("successfully finds linehaul price for ppm with distance < 50 miles with PriceUsingParams method", func() { @@ -202,7 +201,7 @@ func (suite *GHCRateEngineServiceSuite) TestPriceDomesticLinehaul() { _, _, err = linehaulServicePricer.Price(suite.AppContextForTest(), testdatagen.DefaultContractCode, time.Date(testdatagen.TestYear+1, 1, 1, 1, 1, 1, 1, time.UTC), dlhTestDistance, dlhTestWeight, dlhTestServiceArea, isPPM) suite.Error(err) - suite.Contains(err.Error(), "could not fetch domestic linehaul rate") + suite.Contains(err.Error(), "could not lookup contract year") }) } diff --git a/pkg/services/ghcrateengine/domestic_nts_pack_pricer_test.go b/pkg/services/ghcrateengine/domestic_nts_pack_pricer_test.go index ce75ab4599c..b3c1c6c441f 100644 --- a/pkg/services/ghcrateengine/domestic_nts_pack_pricer_test.go +++ b/pkg/services/ghcrateengine/domestic_nts_pack_pricer_test.go @@ -18,9 +18,9 @@ const ( dnpkTestWeight = unit.Pound(2100) dnpkTestServicesScheduleOrigin = 1 dnpkTestContractYearName = "DNPK Test Year" - dnpkTestBasePriceCents = unit.Cents(6333) + dnpkTestBasePriceCents = unit.Cents(6544) dnpkTestFactor = 1.35 - dnpkTestPriceCents = unit.Cents(186855) + dnpkTestPriceCents = unit.Cents(193064) ) var dnpkTestRequestedPickupDate = time.Date(testdatagen.TestYear, peakStart.month, peakStart.day, 5, 5, 5, 5, time.UTC) @@ -116,15 +116,18 @@ func (suite *GHCRateEngineServiceSuite) setupDomesticNTSPackPrices(schedule int, }) packService := factory.FetchReServiceByCode(suite.DB(), models.ReServiceCodeDPK) - otherPrice := models.ReDomesticOtherPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: packService.ID, - IsPeakPeriod: isPeakPeriod, - Schedule: schedule, - PriceCents: priceCents, - } - suite.MustSave(&otherPrice) + factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: contractYear.Contract.ID, + ServiceID: packService.ID, + IsPeakPeriod: isPeakPeriod, + Schedule: schedule, + PriceCents: priceCents, + }, + }, + }, nil) ntsPackService := factory.FetchReServiceByCode(suite.DB(), models.ReServiceCodeDNPK) shipmentTypePrice := models.ReShipmentTypePrice{ diff --git a/pkg/services/ghcrateengine/domestic_origin_sit_pickup_pricer_test.go b/pkg/services/ghcrateengine/domestic_origin_sit_pickup_pricer_test.go index 3a443ee47f7..cdf36569170 100644 --- a/pkg/services/ghcrateengine/domestic_origin_sit_pickup_pricer_test.go +++ b/pkg/services/ghcrateengine/domestic_origin_sit_pickup_pricer_test.go @@ -22,9 +22,9 @@ const ( dopsitTestWeightUpper = unit.Pound(4999) dopsitTestMilesLower = 51 dopsitTestMilesUpper = 250 - dopsitTestDomesticOtherBasePriceCents = unit.Cents(2810) - dopsitTestDomesticLinehaulBasePriceMillicents = unit.Millicents(4455) - dopsitTestDomesticServiceAreaBasePriceCents = unit.Cents(223) + dopsitTestDomesticOtherBasePriceCents = unit.Cents(25030) + dopsitTestDomesticLinehaulBasePriceMillicents = unit.Millicents(200300) + dopsitTestDomesticServiceAreaBasePriceCents = unit.Cents(25030) ) var dopsitTestRequestedPickupDate = time.Date(testdatagen.TestYear, time.July, 5, 10, 22, 11, 456, time.UTC) @@ -35,7 +35,7 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticOriginSITPickupPricerSameZip distance := unit.Miles(12) // distance will follow pricer logic for moves under 50 miles pricer := NewDomesticOriginSITPickupPricer() - expectedPrice := unit.Cents(10613) // dopsitTestDomesticServiceAreaBasePriceCents * (dopsitTestWeight / 100) * distance * dopsitTestEscalationCompounded + expectedPrice := unit.Cents(1190859) // dopsitTestDomesticServiceAreaBasePriceCents * (dopsitTestWeight / 100) * distance * dopsitTestEscalationCompounded suite.Run("success using PaymentServiceItemParams", func() { suite.setupDomesticOtherPrice(models.ReServiceCodeDOPSIT, dopsitTestSchedule, dopsitTestIsPeakPeriod, dopsitTestDomesticServiceAreaBasePriceCents, dopsitTestContractYearName, dopsitTestEscalationCompounded) @@ -113,7 +113,7 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticOriginSITPickupPricer50PlusM distance := unit.Miles(77) // > 50 miles pricer := NewDomesticOriginSITPickupPricer() - expectedPrice := unit.Cents(16485) + expectedPrice := unit.Cents(733738) suite.Run("success using PaymentServiceItemParams", func() { suite.setupDomesticLinehaulPrice(dopsitTestServiceArea, dopsitTestIsPeakPeriod, dopsitTestWeightLower, dopsitTestWeightUpper, dopsitTestMilesLower, dopsitTestMilesUpper, dopsitTestDomesticLinehaulBasePriceMillicents, dopsitTestContractYearName, dopsitTestEscalationCompounded) @@ -154,7 +154,7 @@ func (suite *GHCRateEngineServiceSuite) TestDomesticOriginSITPickupPricer50Miles distance := unit.Miles(23) // <= 50 miles pricer := NewDomesticOriginSITPickupPricer() - expectedPrice := unit.Cents(133689) + expectedPrice := unit.Cents(1190859) suite.Run("success using PaymentServiceItemParams", func() { suite.setupDomesticOtherPrice(models.ReServiceCodeDOPSIT, dopsitTestSchedule, dopsitTestIsPeakPeriod, dopsitTestDomesticOtherBasePriceCents, dopsitTestContractYearName, dopsitTestEscalationCompounded) diff --git a/pkg/services/ghcrateengine/domestic_pack_pricer_test.go b/pkg/services/ghcrateengine/domestic_pack_pricer_test.go index 3939f72c43c..a043c440fa2 100644 --- a/pkg/services/ghcrateengine/domestic_pack_pricer_test.go +++ b/pkg/services/ghcrateengine/domestic_pack_pricer_test.go @@ -18,8 +18,8 @@ const ( dpkTestWeight = unit.Pound(2100) dpkTestServicesScheduleOrigin = 1 dpkTestContractYearName = "DPK Test Year" - dpkTestBasePriceCents = unit.Cents(146) - dpkTestPriceCents = unit.Cents(3192) + dpkTestBasePriceCents = unit.Cents(6544) + dpkTestPriceCents = unit.Cents(143010) ) var dpkTestRequestedPickupDate = time.Date(testdatagen.TestYear, peakStart.month, peakStart.day, 0, 0, 0, 0, time.UTC) diff --git a/pkg/services/ghcrateengine/domestic_unpack_pricer_test.go b/pkg/services/ghcrateengine/domestic_unpack_pricer_test.go index 41b5c834f80..f914f56857c 100644 --- a/pkg/services/ghcrateengine/domestic_unpack_pricer_test.go +++ b/pkg/services/ghcrateengine/domestic_unpack_pricer_test.go @@ -18,8 +18,8 @@ const ( dupkTestWeight = unit.Pound(3600) dupkTestServicesScheduleDest = 1 dupkTestContractYearName = "DUPK Test Year" - dupkTestBasePriceCents = unit.Cents(123) - dupkTestPriceCents = unit.Cents(5436) + dupkTestBasePriceCents = unit.Cents(8334) + dupkTestPriceCents = unit.Cents(369360) ) var dupkTestRequestedPickupDate = time.Date(testdatagen.TestYear, peakStart.month, peakStart.day, 0, 0, 0, 0, time.UTC).AddDate(0, 0, -1) diff --git a/pkg/services/ghcrateengine/ghc_rate_engine_service_test.go b/pkg/services/ghcrateengine/ghc_rate_engine_service_test.go index 0ed120492f8..8fcd52d9d34 100644 --- a/pkg/services/ghcrateengine/ghc_rate_engine_service_test.go +++ b/pkg/services/ghcrateengine/ghc_rate_engine_service_test.go @@ -38,7 +38,7 @@ func (suite *GHCRateEngineServiceSuite) setupTaskOrderFeeData(code models.ReServ } func (suite *GHCRateEngineServiceSuite) setupDomesticOtherPrice(code models.ReServiceCode, schedule int, isPeakPeriod bool, priceCents unit.Cents, contractYearName string, escalationCompounded float64) { - contractYear := testdatagen.MakeReContractYear(suite.DB(), + contractYear := testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ Name: contractYearName, @@ -48,19 +48,23 @@ func (suite *GHCRateEngineServiceSuite) setupDomesticOtherPrice(code models.ReSe service := factory.FetchReServiceByCode(suite.DB(), code) - otherPrice := models.ReDomesticOtherPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: service.ID, - IsPeakPeriod: isPeakPeriod, - Schedule: schedule, - PriceCents: priceCents, - } + otherPrice := factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: contractYear.Contract.ID, + ServiceID: service.ID, + IsPeakPeriod: isPeakPeriod, + Schedule: schedule, + PriceCents: priceCents, + }, + }, + }, nil) suite.MustSave(&otherPrice) } func (suite *GHCRateEngineServiceSuite) setupDomesticAccessorialPrice(code models.ReServiceCode, schedule int, perUnitCents unit.Cents, contractYearName string, escalationCompounded float64) { - contractYear := testdatagen.MakeReContractYear(suite.DB(), + contractYear := testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ Name: contractYearName, @@ -81,7 +85,7 @@ func (suite *GHCRateEngineServiceSuite) setupDomesticAccessorialPrice(code model } func (suite *GHCRateEngineServiceSuite) setupDomesticServiceAreaPrice(code models.ReServiceCode, serviceAreaCode string, isPeakPeriod bool, priceCents unit.Cents, contractYearName string, escalationCompounded float64) { - contractYear := testdatagen.MakeReContractYear(suite.DB(), + contractYear := testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ Name: contractYearName, @@ -91,27 +95,30 @@ func (suite *GHCRateEngineServiceSuite) setupDomesticServiceAreaPrice(code model service := factory.FetchReServiceByCode(suite.DB(), code) - serviceArea := testdatagen.MakeReDomesticServiceArea(suite.DB(), + serviceArea := testdatagen.FetchOrMakeReDomesticServiceArea(suite.DB(), testdatagen.Assertions{ ReDomesticServiceArea: models.ReDomesticServiceArea{ + ContractID: contractYear.Contract.ID, Contract: contractYear.Contract, ServiceArea: serviceAreaCode, }, }) - serviceAreaPrice := models.ReDomesticServiceAreaPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: service.ID, - IsPeakPeriod: isPeakPeriod, - DomesticServiceAreaID: serviceArea.ID, - PriceCents: priceCents, - } - - suite.MustSave(&serviceAreaPrice) + factory.FetchOrMakeDomesticServiceAreaPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticServiceAreaPrice{ + ContractID: contractYear.Contract.ID, + ServiceID: service.ID, + IsPeakPeriod: isPeakPeriod, + DomesticServiceAreaID: serviceArea.ID, + PriceCents: priceCents, + }, + }, + }, nil) } func (suite *GHCRateEngineServiceSuite) setupDomesticLinehaulPrice(serviceAreaCode string, isPeakPeriod bool, weightLower unit.Pound, weightUpper unit.Pound, milesLower int, milesUpper int, priceMillicents unit.Millicents, contractYearName string, escalationCompounded float64) { - contractYear := testdatagen.MakeReContractYear(suite.DB(), + contractYear := testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ Name: contractYearName, @@ -119,30 +126,18 @@ func (suite *GHCRateEngineServiceSuite) setupDomesticLinehaulPrice(serviceAreaCo }, }) - serviceArea := testdatagen.MakeReDomesticServiceArea(suite.DB(), + testdatagen.FetchOrMakeReDomesticServiceArea(suite.DB(), testdatagen.Assertions{ ReDomesticServiceArea: models.ReDomesticServiceArea{ + ContractID: contractYear.Contract.ID, Contract: contractYear.Contract, ServiceArea: serviceAreaCode, }, }) - - baseLinehaulPrice := models.ReDomesticLinehaulPrice{ - ContractID: contractYear.Contract.ID, - WeightLower: weightLower, - WeightUpper: weightUpper, - MilesLower: milesLower, - MilesUpper: milesUpper, - IsPeakPeriod: isPeakPeriod, - DomesticServiceAreaID: serviceArea.ID, - PriceMillicents: priceMillicents, - } - - suite.MustSave(&baseLinehaulPrice) } func (suite *GHCRateEngineServiceSuite) setupShipmentTypePrice(code models.ReServiceCode, market models.Market, factor float64, contractYearName string, escalationCompounded float64) { - contractYear := testdatagen.MakeReContractYear(suite.DB(), + contractYear := testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ Name: contractYearName, diff --git a/pkg/services/ghcrateengine/pricer_helpers_test.go b/pkg/services/ghcrateengine/pricer_helpers_test.go index 9adfa70f58e..be3648927e2 100644 --- a/pkg/services/ghcrateengine/pricer_helpers_test.go +++ b/pkg/services/ghcrateengine/pricer_helpers_test.go @@ -253,7 +253,7 @@ func (suite *GHCRateEngineServiceSuite) Test_priceDomesticPickupDeliverySITSameZ suite.setupDomesticOtherPrice(models.ReServiceCodeDDDSIT, dddsitTestSchedule, dddsitTestIsPeakPeriod, dddsitTestDomesticOtherBasePriceCents, dshContractName, dddsitTestEscalationCompounded) priceCents, displayParams, err := priceDomesticPickupDeliverySIT(suite.AppContextForTest(), models.ReServiceCodeDDDSIT, testdatagen.DefaultContractCode, dddsitTestRequestedPickupDate, dddsitTestWeight, dddsitTestServiceArea, dddsitTestSchedule, dshZipDest, dshZipSITDest, dshDistance) suite.NoError(err) - expectedPrice := unit.Cents(58365) // dddsitTestDomesticServiceAreaBasePriceCents * (dddsitTestWeight / 100) * distance * dddsitTestEscalationCompounded + expectedPrice := unit.Cents(505125) // dddsitTestDomesticServiceAreaBasePriceCents * (dddsitTestWeight / 100) * distance * dddsitTestEscalationCompounded suite.Equal(expectedPrice, priceCents) expectedParams := services.PricingDisplayParams{ @@ -308,7 +308,7 @@ func (suite *GHCRateEngineServiceSuite) Test_priceDomesticPickupDeliverySIT50Plu suite.setupDomesticLinehaulPrice(dddsitTestServiceArea, dddsitTestIsPeakPeriod, dddsitTestWeightLower, dddsitTestWeightUpper, dddsitTestMilesLower, dddsitTestMilesUpper, dddsitTestDomesticLinehaulBasePriceMillicents, dlhContractName, dddsitTestEscalationCompounded) priceCents, displayParams, err := priceDomesticPickupDeliverySIT(suite.AppContextForTest(), models.ReServiceCodeDDDSIT, testdatagen.DefaultContractCode, dddsitTestRequestedPickupDate, dddsitTestWeight, dddsitTestServiceArea, dddsitTestSchedule, dlhZipDest, dlhZipSITDest, dlhDistance) suite.NoError(err) - expectedPrice := unit.Cents(45979) + expectedPrice := unit.Cents(1681313) suite.Equal(expectedPrice, priceCents) @@ -338,7 +338,7 @@ func (suite *GHCRateEngineServiceSuite) Test_priceDomesticPickupDeliverySIT50Mil suite.setupDomesticOtherPrice(models.ReServiceCodeDDDSIT, dddsitTestSchedule, dddsitTestIsPeakPeriod, dddsitTestDomesticOtherBasePriceCents, domContractName, dddsitTestEscalationCompounded) priceCents, displayParams, err := priceDomesticPickupDeliverySIT(suite.AppContextForTest(), models.ReServiceCodeDDDSIT, testdatagen.DefaultContractCode, dddsitTestRequestedPickupDate, dddsitTestWeight, dddsitTestServiceArea, dddsitTestSchedule, domOtherZipDest, domOtherZipSITDest, domOtherDistance) suite.NoError(err) - expectedPrice := unit.Cents(58365) + expectedPrice := unit.Cents(505125) suite.Equal(expectedPrice, priceCents) expectedParams := services.PricingDisplayParams{ @@ -378,7 +378,7 @@ func (suite *GHCRateEngineServiceSuite) Test_priceDomesticPickupDeliverySIT50Mil suite.setupDomesticOtherPrice(models.ReServiceCodeDDDSIT, dddsitTestSchedule, dddsitTestIsPeakPeriod, dddsitTestDomesticOtherBasePriceCents, domContractName, dddsitTestEscalationCompounded) priceCents, displayParams, err := priceDomesticPickupDeliverySIT(suite.AppContextForTest(), models.ReServiceCodeDDDSIT, testdatagen.DefaultContractCode, dddsitTestRequestedPickupDate, dddsitTestWeight, dddsitTestServiceArea, dddsitTestSchedule, domOtherZipDest, domOtherZipSITDest, domOtherDistance) suite.NoError(err) - expectedPrice := unit.Cents(58365) + expectedPrice := unit.Cents(505125) suite.Equal(expectedPrice, priceCents) expectedParams := services.PricingDisplayParams{ diff --git a/pkg/services/move/move_weights.go b/pkg/services/move/move_weights.go index 92e10d4047f..e1fbda2e4f1 100644 --- a/pkg/services/move/move_weights.go +++ b/pkg/services/move/move_weights.go @@ -136,12 +136,22 @@ func saveMoveExcessWeightValues(appCtx appcontext.AppContext, move *models.Move, move.ExcessWeightQualifiedAt = nil } - // Check for risk of excess of UB allowance - if (int(float32(ubWeightAllowance)*RiskOfExcessThreshold) <= sumOfWeights.SumEstimatedWeightOfUbShipments) || (int(float32(ubWeightAllowance)*RiskOfExcessThreshold) <= sumOfWeights.SumActualWeightOfUbShipments) { + var hasUbShipments bool + for _, shipment := range move.MTOShipments { + if shipment.ShipmentType == models.MTOShipmentTypeUnaccompaniedBaggage { + hasUbShipments = true + } + } + + threshold := int(float32(ubWeightAllowance) * RiskOfExcessThreshold) + isWeightExceedingThreshold := (threshold <= sumOfWeights.SumEstimatedWeightOfUbShipments) || (threshold <= sumOfWeights.SumActualWeightOfUbShipments) + + // Check for risk of excess of UB allowance if there are UB shipments + if hasUbShipments && isWeightExceedingThreshold { isTheMoveBeingUpdated = true excessUbWeightQualifiedAt := now move.ExcessUnaccompaniedBaggageWeightQualifiedAt = &excessUbWeightQualifiedAt - } else if move.ExcessUnaccompaniedBaggageWeightQualifiedAt != nil { + } else if !hasUbShipments || move.ExcessUnaccompaniedBaggageWeightQualifiedAt != nil { // Reset qualified at isTheMoveBeingUpdated = true move.ExcessUnaccompaniedBaggageWeightQualifiedAt = nil diff --git a/pkg/services/move_history/move_history_fetcher_test.go b/pkg/services/move_history/move_history_fetcher_test.go index bfc5a5c953a..37fc718038d 100644 --- a/pkg/services/move_history/move_history_fetcher_test.go +++ b/pkg/services/move_history/move_history_fetcher_test.go @@ -375,6 +375,8 @@ func (suite *MoveHistoryServiceSuite) TestMoveHistoryFetcherScenarios() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) updater := mtoserviceitem.NewMTOServiceItemUpdater(planner, builder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) move := factory.BuildApprovalsRequestedMove(suite.DB(), nil, nil) @@ -550,6 +552,8 @@ func (suite *MoveHistoryServiceSuite) TestMoveHistoryFetcherScenarios() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -623,6 +627,8 @@ func (suite *MoveHistoryServiceSuite) TestMoveHistoryFetcherScenarios() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) diff --git a/pkg/services/move_task_order/move_task_order_fetcher.go b/pkg/services/move_task_order/move_task_order_fetcher.go index b63f5960290..1d30aef5ceb 100644 --- a/pkg/services/move_task_order/move_task_order_fetcher.go +++ b/pkg/services/move_task_order/move_task_order_fetcher.go @@ -278,6 +278,18 @@ func (f moveTaskOrderFetcher) FetchMoveTaskOrder(appCtx appcontext.AppContext, s return &models.Move{}, apperror.NewQueryError("MobileHomeShipment", loadErrMH, "") } } + // we need to get the destination GBLOC associated with a shipment's destination address + // USMC always goes to the USMC GBLOC + if mto.MTOShipments[i].DestinationAddress != nil { + if *mto.Orders.ServiceMember.Affiliation == models.AffiliationMARINES { + mto.MTOShipments[i].DestinationAddress.DestinationGbloc = models.StringPointer("USMC") + } else { + mto.MTOShipments[i].DestinationAddress.DestinationGbloc, err = models.GetDestinationGblocForShipment(appCtx.DB(), mto.MTOShipments[i].ID) + if err != nil { + return &models.Move{}, apperror.NewQueryError("Error getting shipment GBLOC", err, "") + } + } + } filteredShipments = append(filteredShipments, mto.MTOShipments[i]) } mto.MTOShipments = filteredShipments diff --git a/pkg/services/move_task_order/move_task_order_fetcher_test.go b/pkg/services/move_task_order/move_task_order_fetcher_test.go index 9ba9f7a8ba2..a80be4aa524 100644 --- a/pkg/services/move_task_order/move_task_order_fetcher_test.go +++ b/pkg/services/move_task_order/move_task_order_fetcher_test.go @@ -344,6 +344,102 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderFetcher() { } }) + suite.Run("Success with Prime available move, returns destination GBLOC in shipment dest address", func() { + zone2UUID, err := uuid.FromString("66768964-e0de-41f3-b9be-7ef32e4ae2b4") + suite.FatalNoError(err) + army := models.AffiliationARMY + postalCode := "99501" + // since we truncate the test db, we need to add the postal_code_to_gbloc value + factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), "99744", "JEAT") + + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + PostalCode: postalCode, + UsPostRegionCityID: &zone2UUID, + }, + }, + }, nil) + + move := factory.BuildAvailableToPrimeMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &army, + }, + }, + }, nil) + + factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + MarketCode: models.MarketCodeInternational, + }, + }, + { + Model: move, + LinkOnly: true, + }, + { + Model: destinationAddress, + LinkOnly: true, + }, + }, nil) + searchParams := services.MoveTaskOrderFetcherParams{ + IncludeHidden: false, + Locator: move.Locator, + ExcludeExternalShipments: true, + } + + actualMTO, err := mtoFetcher.FetchMoveTaskOrder(suite.AppContextForTest(), &searchParams) + suite.NoError(err) + suite.NotNil(actualMTO) + + if suite.Len(actualMTO.MTOShipments, 1) { + suite.Equal(move.ID.String(), actualMTO.ID.String()) + // the shipment should have a destination GBLOC value + suite.NotNil(actualMTO.MTOShipments[0].DestinationAddress.DestinationGbloc) + } + }) + + suite.Run("Success with Prime available move, returns USMC destination GBLOC for USMC move", func() { + usmc := models.AffiliationMARINES + + destinationAddress := factory.BuildAddress(suite.DB(), nil, nil) + move := factory.BuildAvailableToPrimeMove(suite.DB(), []factory.Customization{ + { + Model: models.ServiceMember{ + Affiliation: &usmc, + }, + }, + }, nil) + + factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: destinationAddress, + LinkOnly: true, + }, + }, nil) + searchParams := services.MoveTaskOrderFetcherParams{ + IncludeHidden: false, + Locator: move.Locator, + ExcludeExternalShipments: true, + } + + actualMTO, err := mtoFetcher.FetchMoveTaskOrder(suite.AppContextForTest(), &searchParams) + suite.NoError(err) + suite.NotNil(actualMTO) + + if suite.Len(actualMTO.MTOShipments, 1) { + suite.Equal(move.ID.String(), actualMTO.ID.String()) + suite.NotNil(actualMTO.MTOShipments[0].DestinationAddress.DestinationGbloc) + suite.Equal(*actualMTO.MTOShipments[0].DestinationAddress.DestinationGbloc, "USMC") + } + }) + suite.Run("Success with move that has only deleted shipments", func() { mtoWithAllShipmentsDeleted := factory.BuildMove(suite.DB(), nil, nil) factory.BuildMTOShipmentMinimal(suite.DB(), []factory.Customization{ diff --git a/pkg/services/move_task_order/move_task_order_updater.go b/pkg/services/move_task_order/move_task_order_updater.go index 71389da1a3a..25fbec6856a 100644 --- a/pkg/services/move_task_order/move_task_order_updater.go +++ b/pkg/services/move_task_order/move_task_order_updater.go @@ -59,6 +59,9 @@ func (o moveTaskOrderUpdater) UpdateStatusServiceCounselingCompleted(appCtx appc return err } + //When submiting a move for approval - remove the SC assigned user + move.SCAssignedID = nil + // Save the move. var verrs *validate.Errors verrs, err = appCtx.DB().ValidateAndSave(move) @@ -251,6 +254,9 @@ func (o *moveTaskOrderUpdater) MakeAvailableToPrime(appCtx appcontext.AppContext return &models.Move{}, apperror.NewPreconditionFailedError(move.ID, query.StaleIdentifierError{StaleIdentifier: eTag}) } + //When approving a shipment - remove the assigned TOO user + move.TOOAssignedID = nil + // If the move is already been made available to prime, we will not need to approve and update the move, // just the provided service items. updateMove := false diff --git a/pkg/services/move_task_order/move_task_order_updater_test.go b/pkg/services/move_task_order/move_task_order_updater_test.go index bd1e001e494..d38acd2e8ac 100644 --- a/pkg/services/move_task_order/move_task_order_updater_test.go +++ b/pkg/services/move_task_order/move_task_order_updater_test.go @@ -12,6 +12,7 @@ import ( "github.com/transcom/mymove/pkg/etag" "github.com/transcom/mymove/pkg/factory" "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/models/roles" routemocks "github.com/transcom/mymove/pkg/route/mocks" "github.com/transcom/mymove/pkg/services" "github.com/transcom/mymove/pkg/services/ghcrateengine" @@ -29,6 +30,26 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_UpdateStatusSer queryBuilder := query.NewQueryBuilder() planner := &routemocks.Planner{} ppmEstimator := &mocks.PPMEstimator{} + setupTestData := func() models.OfficeUser { + + transportationOffice := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ProvidesCloseout: true, + }, + }, + }, nil) + + officeUser := factory.BuildOfficeUserWithRoles(suite.DB(), []factory.Customization{ + { + Model: transportationOffice, + LinkOnly: true, + Type: &factory.TransportationOffices.CloseoutOffice, + }, + }, []roles.RoleType{roles.RoleTypeServicesCounselor}) + + return officeUser + } setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { mockCreator := &mocks.SignedCertificationCreator{} @@ -59,6 +80,8 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_UpdateStatusSer mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) mtoUpdater := mt.NewMoveTaskOrderUpdater( queryBuilder, @@ -66,6 +89,32 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_UpdateStatusSer moveRouter, setUpSignedCertificationCreatorMock(nil, nil), setUpSignedCertificationUpdaterMock(nil, nil), ppmEstimator, ) + suite.Run("Makes move available to Prime and Removes assigned TOO office user", func() { + session := suite.AppContextWithSessionForTest(&auth.Session{ + ApplicationName: auth.OfficeApp, + OfficeUserID: uuid.Must(uuid.NewV4()), + }) + + officeUser := setupTestData() + move := factory.BuildMoveWithShipment(suite.DB(), []factory.Customization{ + { + Model: models.Move{ + Status: models.MoveStatusNeedsServiceCounseling, + }, + }, + { + Model: officeUser, + LinkOnly: true, + Type: &factory.OfficeUsers.SCAssignedUser, + }, + }, nil) + + eTag := etag.GenerateEtag(move.UpdatedAt) + + actualMTO, err := mtoUpdater.UpdateStatusServiceCounselingCompleted(session, move.ID, eTag) + suite.NoError(err) + suite.Nil(actualMTO.SCAssignedID) + }) suite.Run("Move status is updated successfully (with HHG shipment)", func() { session := suite.AppContextWithSessionForTest(&auth.Session{ ApplicationName: auth.OfficeApp, @@ -346,6 +395,8 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_UpdatePostCouns mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { @@ -513,6 +564,8 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_ShowHide() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { @@ -650,6 +703,27 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_ShowHide() { func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_MakeAvailableToPrime() { ppmEstimator := &mocks.PPMEstimator{} + setupTestData := func() models.OfficeUser { + + transportationOffice := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ProvidesCloseout: true, + }, + }, + }, nil) + + officeUser := factory.BuildOfficeUserWithRoles(suite.DB(), []factory.Customization{ + { + Model: transportationOffice, + LinkOnly: true, + Type: &factory.TransportationOffices.CloseoutOffice, + }, + }, []roles.RoleType{roles.RoleTypeTIO}) + + return officeUser + } + setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { mockCreator := &mocks.SignedCertificationCreator{} @@ -754,6 +828,8 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_MakeAvailableTo mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) serviceItemCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) mtoUpdater := mt.NewMoveTaskOrderUpdater(queryBuilder, serviceItemCreator, moveRouter, setUpSignedCertificationCreatorMock(nil, nil), setUpSignedCertificationUpdaterMock(nil, nil), ppmEstimator) @@ -783,6 +859,32 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_MakeAvailableTo suite.NotNil(fetchedMove.ApprovedAt) suite.Equal(models.MoveStatusAPPROVED, fetchedMove.Status) }) + suite.Run("Makes move available to Prime and Removes assigned TOO office user", func() { + queryBuilder := query.NewQueryBuilder() + moveRouter := moverouter.NewMoveRouter() + planner := &routemocks.Planner{} + planner.On("ZipTransitDistance", + mock.AnythingOfType("*appcontext.appContext"), + mock.Anything, + mock.Anything, + ).Return(400, nil) + officeUser := setupTestData() + move := factory.BuildApprovalsRequestedMove(suite.DB(), []factory.Customization{ + { + Model: officeUser, + LinkOnly: true, + Type: &factory.OfficeUsers.TOOAssignedUser, + }, + }, nil) + + serviceItemCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) + mtoUpdater := mt.NewMoveTaskOrderUpdater(queryBuilder, serviceItemCreator, moveRouter, setUpSignedCertificationCreatorMock(nil, nil), setUpSignedCertificationUpdaterMock(nil, nil), ppmEstimator) + eTag := etag.GenerateEtag(move.UpdatedAt) + updatedMove, err := mtoUpdater.MakeAvailableToPrime(suite.AppContextForTest(), move.ID, eTag, false, false) + + suite.NoError(err) + suite.Nil(updatedMove.TOOAssignedID) + }) suite.Run("Makes move available to Prime and only creates Move management when it's the only one specified", func() { queryBuilder := query.NewQueryBuilder() @@ -792,6 +894,8 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_MakeAvailableTo mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) serviceItemCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) mtoUpdater := mt.NewMoveTaskOrderUpdater(queryBuilder, serviceItemCreator, moveRouter, setUpSignedCertificationCreatorMock(nil, nil), setUpSignedCertificationUpdaterMock(nil, nil), ppmEstimator) @@ -1041,6 +1145,8 @@ func (suite *MoveTaskOrderServiceSuite) TestMoveTaskOrderUpdater_UpdatePPMType() mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/services/mto_service_item/mto_service_item_creator.go b/pkg/services/mto_service_item/mto_service_item_creator.go index c4a53941d0f..3f672281e31 100644 --- a/pkg/services/mto_service_item/mto_service_item_creator.go +++ b/pkg/services/mto_service_item/mto_service_item_creator.go @@ -132,7 +132,7 @@ func (o *mtoServiceItemCreator) FindEstimatedPrice(appCtx appcontext.AppContext, return 0, err } if mtoShipment.PickupAddress != nil && mtoShipment.DestinationAddress != nil { - distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode) + distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode, false, false) if err != nil { return 0, err } @@ -148,7 +148,7 @@ func (o *mtoServiceItemCreator) FindEstimatedPrice(appCtx appcontext.AppContext, return 0, err } if mtoShipment.PickupAddress != nil && mtoShipment.DestinationAddress != nil { - distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode) + distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode, false, false) if err != nil { return 0, err } @@ -171,7 +171,7 @@ func (o *mtoServiceItemCreator) FindEstimatedPrice(appCtx appcontext.AppContext, } if mtoShipment.PickupAddress != nil && mtoShipment.DestinationAddress != nil { - distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode) + distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode, false, false) if err != nil { return 0, err } @@ -307,14 +307,14 @@ func (o *mtoServiceItemCreator) calculateSITDeliveryMiles(appCtx appcontext.AppC originalSITAddressZip = mtoShipment.PickupAddress.PostalCode } if mtoShipment.PickupAddress != nil && originalSITAddressZip != "" { - distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, originalSITAddressZip) + distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, originalSITAddressZip, false, false) } } if serviceItem.ReService.Code == models.ReServiceCodeDDFSIT || serviceItem.ReService.Code == models.ReServiceCodeDDASIT || serviceItem.ReService.Code == models.ReServiceCodeDDSFSC || serviceItem.ReService.Code == models.ReServiceCodeDDDSIT { // Creation: Destination SIT: distance between shipment destination address & service item destination address if mtoShipment.DestinationAddress != nil && serviceItem.SITDestinationFinalAddress != nil { - distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.DestinationAddress.PostalCode, serviceItem.SITDestinationFinalAddress.PostalCode) + distance, err = o.planner.ZipTransitDistance(appCtx, mtoShipment.DestinationAddress.PostalCode, serviceItem.SITDestinationFinalAddress.PostalCode, false, false) } } if err != nil { diff --git a/pkg/services/mto_service_item/mto_service_item_creator_test.go b/pkg/services/mto_service_item/mto_service_item_creator_test.go index 3a6e7030c19..c707eba0c96 100644 --- a/pkg/services/mto_service_item/mto_service_item_creator_test.go +++ b/pkg/services/mto_service_item/mto_service_item_creator_test.go @@ -193,6 +193,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateMTOServiceItemWithInvalidMove mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) serviceItemForUnapprovedMove := suite.buildValidServiceItemWithInvalidMove() @@ -221,6 +223,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateMTOServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1031,6 +1035,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateOriginSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1080,6 +1086,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateOriginSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1154,6 +1162,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateOriginSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1280,6 +1290,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateOriginSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1314,6 +1326,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateOriginSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1347,6 +1361,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateOriginSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1422,6 +1438,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateOriginSITServiceItemFailToCre mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1456,6 +1474,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateDestSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -1755,6 +1775,8 @@ func (suite *MTOServiceItemServiceSuite) TestCreateDestSITServiceItem() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) createdServiceItems, _, err := creator.CreateMTOServiceItem(suite.AppContextForTest(), &serviceItemDDASIT) @@ -1907,13 +1929,17 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { PriceCents: unit.Cents(1234), } - serviceAreaPriceDPK := models.ReDomesticOtherPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: reServiceCodeDPK.ID, - IsPeakPeriod: true, - Schedule: 1, - PriceCents: unit.Cents(121), - } + serviceAreaPriceDPK := factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: contractYear.Contract.ID, + ServiceID: reServiceCodeDPK.ID, + IsPeakPeriod: true, + Schedule: 1, + PriceCents: unit.Cents(121), + }, + }, + }, nil) serviceAreaPriceDDP := models.ReDomesticServiceAreaPrice{ ContractID: contractYear.Contract.ID, @@ -1923,13 +1949,17 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { PriceCents: unit.Cents(482), } - serviceAreaPriceDUPK := models.ReDomesticOtherPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: reServiceCodeDUPK.ID, - IsPeakPeriod: true, - Schedule: 1, - PriceCents: unit.Cents(945), - } + serviceAreaPriceDUPK := factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: contractYear.Contract.ID, + ServiceID: reServiceCodeDUPK.ID, + IsPeakPeriod: true, + Schedule: 1, + PriceCents: unit.Cents(945), + }, + }, + }, nil) serviceAreaPriceDLH := models.ReDomesticLinehaulPrice{ ContractID: contractYear.Contract.ID, @@ -1950,7 +1980,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { PriceCents: unit.Cents(999), } - testdatagen.MakeGHCDieselFuelPrice(suite.DB(), testdatagen.Assertions{ + testdatagen.FetchOrMakeGHCDieselFuelPrice(suite.DB(), testdatagen.Assertions{ GHCDieselFuelPrice: models.GHCDieselFuelPrice{ FuelPriceInMillicents: unit.Millicents(281400), PublicationDate: time.Date(2020, time.March, 9, 0, 0, 0, 0, time.UTC), @@ -1966,7 +1996,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { suite.MustSave(&serviceAreaPriceDLH) suite.MustSave(&serviceAreaPriceDSH) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ + testdatagen.FetchOrMakeReZip3(suite.DB(), testdatagen.Assertions{ ReZip3: models.ReZip3{ Contract: contract, ContractID: contract.ID, @@ -1975,7 +2005,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { }, }) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ + testdatagen.FetchOrMakeReZip3(suite.DB(), testdatagen.Assertions{ ReZip3: models.ReZip3{ Contract: contract, ContractID: contract.ID, @@ -2084,29 +2114,31 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) dopEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDOP, shipment) - suite.Equal(unit.Cents(83280), dopEstimatedPriceInCents) + suite.Equal(unit.Cents(61080), dopEstimatedPriceInCents) dpkEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDPK, shipment) - suite.Equal(unit.Cents(8160), dpkEstimatedPriceInCents) + suite.Equal(unit.Cents(540000), dpkEstimatedPriceInCents) ddpEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDDP, shipment) - suite.Equal(unit.Cents(32520), ddpEstimatedPriceInCents) + suite.Equal(unit.Cents(42240), ddpEstimatedPriceInCents) dupkEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDUPK, shipment) - suite.Equal(unit.Cents(63780), dupkEstimatedPriceInCents) + suite.Equal(unit.Cents(43860), dupkEstimatedPriceInCents) dlhEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDLH, shipment) - suite.Equal(unit.Cents(14400), dlhEstimatedPriceInCents) + suite.Equal(unit.Cents(12381600), dlhEstimatedPriceInCents) dshEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDSH, shipment) - suite.Equal(unit.Cents(26976000), dshEstimatedPriceInCents) + suite.Equal(unit.Cents(10080000), dshEstimatedPriceInCents) fscEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemFSC, shipment) - suite.Equal(unit.Cents(786), fscEstimatedPriceInCents) + suite.Equal(unit.Cents(-168), fscEstimatedPriceInCents) }) suite.Run("Calcuating price estimated on creation for NTS shipment ", func() { @@ -2161,7 +2193,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { reason := "lorem ipsum" contract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) - contractYear := testdatagen.MakeReContractYear(suite.DB(), + contractYear := testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ Name: "Test Contract Year", @@ -2171,7 +2203,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { }, }) - serviceArea := testdatagen.MakeReDomesticServiceArea(suite.DB(), + serviceArea := testdatagen.FetchOrMakeReDomesticServiceArea(suite.DB(), testdatagen.Assertions{ ReDomesticServiceArea: models.ReDomesticServiceArea{ Contract: contractYear.Contract, @@ -2197,13 +2229,17 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { PriceCents: unit.Cents(1234), } - serviceAreaPriceDPK := models.ReDomesticOtherPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: reServiceCodeDPK.ID, - IsPeakPeriod: true, - Schedule: 1, - PriceCents: unit.Cents(121), - } + serviceAreaPriceDPK := factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: contractYear.Contract.ID, + ServiceID: reServiceCodeDPK.ID, + IsPeakPeriod: true, + Schedule: 1, + PriceCents: unit.Cents(121), + }, + }, + }, nil) serviceAreaPriceDDP := models.ReDomesticServiceAreaPrice{ ContractID: contractYear.Contract.ID, @@ -2213,13 +2249,17 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { PriceCents: unit.Cents(482), } - serviceAreaPriceDUPK := models.ReDomesticOtherPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: reServiceCodeDUPK.ID, - IsPeakPeriod: true, - Schedule: 1, - PriceCents: unit.Cents(945), - } + serviceAreaPriceDUPK := factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: contractYear.Contract.ID, + ServiceID: reServiceCodeDUPK.ID, + IsPeakPeriod: true, + Schedule: 1, + PriceCents: unit.Cents(945), + }, + }, + }, nil) serviceAreaPriceDLH := models.ReDomesticLinehaulPrice{ ContractID: contractYear.Contract.ID, @@ -2240,7 +2280,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { PriceCents: unit.Cents(999), } - testdatagen.MakeGHCDieselFuelPrice(suite.DB(), testdatagen.Assertions{ + testdatagen.FetchOrMakeGHCDieselFuelPrice(suite.DB(), testdatagen.Assertions{ GHCDieselFuelPrice: models.GHCDieselFuelPrice{ FuelPriceInMillicents: unit.Millicents(281400), PublicationDate: time.Date(2020, time.March, 9, 0, 0, 0, 0, time.UTC), @@ -2256,7 +2296,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { suite.MustSave(&serviceAreaPriceDLH) suite.MustSave(&serviceAreaPriceDSH) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ + testdatagen.FetchOrMakeReZip3(suite.DB(), testdatagen.Assertions{ ReZip3: models.ReZip3{ Contract: contract, ContractID: contract.ID, @@ -2265,7 +2305,7 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { }, }) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ + testdatagen.FetchOrMakeReZip3(suite.DB(), testdatagen.Assertions{ ReZip3: models.ReZip3{ Contract: contract, ContractID: contract.ID, @@ -2374,29 +2414,31 @@ func (suite *MTOServiceItemServiceSuite) TestPriceEstimator() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, - ).Return(400, nil) + false, + false, + ).Return(800, nil) creator := NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) dopEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDOP, shipment) - suite.Equal(unit.Cents(91608), dopEstimatedPriceInCents) + suite.Equal(unit.Cents(67188), dopEstimatedPriceInCents) dpkEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDPK, shipment) - suite.Equal(unit.Cents(8976), dpkEstimatedPriceInCents) + suite.Equal(unit.Cents(594000), dpkEstimatedPriceInCents) ddpEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDDP, shipment) - suite.Equal(unit.Cents(35772), ddpEstimatedPriceInCents) + suite.Equal(unit.Cents(46464), ddpEstimatedPriceInCents) dupkEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDUPK, shipment) - suite.Equal(unit.Cents(70158), dupkEstimatedPriceInCents) + suite.Equal(unit.Cents(48246), dupkEstimatedPriceInCents) dlhEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDLH, shipment) - suite.Equal(unit.Cents(15840), dlhEstimatedPriceInCents) + suite.Equal(unit.Cents(29990400), dlhEstimatedPriceInCents) dshEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemDSH, shipment) - suite.Equal(unit.Cents(29673600), dshEstimatedPriceInCents) + suite.Equal(unit.Cents(22176000), dshEstimatedPriceInCents) fscEstimatedPriceInCents, _ := creator.FindEstimatedPrice(suite.AppContextForTest(), &serviceItemFSC, shipment) - suite.Equal(unit.Cents(786), fscEstimatedPriceInCents) + suite.Equal(unit.Cents(-335), fscEstimatedPriceInCents) }) } diff --git a/pkg/services/mto_service_item/mto_service_item_updater.go b/pkg/services/mto_service_item/mto_service_item_updater.go index 834eb93a574..e7460944030 100644 --- a/pkg/services/mto_service_item/mto_service_item_updater.go +++ b/pkg/services/mto_service_item/mto_service_item_updater.go @@ -209,7 +209,7 @@ func (p *mtoServiceItemUpdater) findEstimatedPrice(appCtx appcontext.AppContext, return 0, err } if mtoShipment.PickupAddress != nil && mtoShipment.DestinationAddress != nil { - distance, err = p.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode) + distance, err = p.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode, false, false) if err != nil { return 0, err } @@ -237,7 +237,7 @@ func (p *mtoServiceItemUpdater) findEstimatedPrice(appCtx appcontext.AppContext, return 0, err } if mtoShipment.DestinationAddress != nil { - distance, err = p.planner.ZipTransitDistance(appCtx, serviceItem.SITDestinationFinalAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode) + distance, err = p.planner.ZipTransitDistance(appCtx, serviceItem.SITDestinationFinalAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode, false, false) if err != nil { return 0, err } @@ -250,7 +250,7 @@ func (p *mtoServiceItemUpdater) findEstimatedPrice(appCtx appcontext.AppContext, // destination sit fuel surcharge if serviceItem.ReService.Code == models.ReServiceCodeDDSFSC && serviceItem.SITDestinationFinalAddress != nil { if mtoShipment.DestinationAddress != nil { - distance, err = p.planner.ZipTransitDistance(appCtx, serviceItem.SITDestinationFinalAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode) + distance, err = p.planner.ZipTransitDistance(appCtx, serviceItem.SITDestinationFinalAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode, false, false) if err != nil { return 0, err } @@ -275,7 +275,7 @@ func (p *mtoServiceItemUpdater) findEstimatedPrice(appCtx appcontext.AppContext, // fuel surcharge if serviceItem.ReService.Code == models.ReServiceCodeFSC { if mtoShipment.PickupAddress != nil && mtoShipment.DestinationAddress != nil { - distance, err = p.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode) + distance, err = p.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, mtoShipment.DestinationAddress.PostalCode, false, false) if err != nil { return 0, err } @@ -343,7 +343,34 @@ func (p *mtoServiceItemUpdater) approveOrRejectServiceItem( if err != nil { return err } + move := serviceItem.MoveTaskOrder + moveWithServiceItems, err := models.FetchMoveByMoveIDWithServiceItems(txnAppCtx.DB(), move.ID) + if err != nil { + return err + } + + serviceItemsNeedingReview := false + for _, request := range moveWithServiceItems.MTOServiceItems { + if request.Status == models.MTOServiceItemStatusSubmitted { + serviceItemsNeedingReview = true + break + } + } + + //remove assigned user when all service items have been reviewed + if !serviceItemsNeedingReview { + move.TOOAssignedID = nil + } + + //When updating a service item - remove the TOO assigned user + verrs, err := appCtx.DB().ValidateAndSave(&move) + if verrs != nil && verrs.HasAny() { + return apperror.NewInvalidInputError(move.ID, nil, verrs, "") + } + if err != nil { + return err + } if _, err = p.moveRouter.ApproveOrRequestApproval(txnAppCtx, move); err != nil { return err @@ -429,7 +456,7 @@ func (p *mtoServiceItemUpdater) updateServiceItem(appCtx appcontext.AppContext, if serviceItem.ReService.Code == models.ReServiceCodeDDDSIT || serviceItem.ReService.Code == models.ReServiceCodeDDSFSC { // Destination SIT: distance between shipment destination address & service item ORIGINAL destination address - milesCalculated, err := p.planner.ZipTransitDistance(appCtx, mtoShipment.DestinationAddress.PostalCode, serviceItem.SITDestinationOriginalAddress.PostalCode) + milesCalculated, err := p.planner.ZipTransitDistance(appCtx, mtoShipment.DestinationAddress.PostalCode, serviceItem.SITDestinationOriginalAddress.PostalCode, false, false) if err != nil { return nil, err } @@ -441,7 +468,7 @@ func (p *mtoServiceItemUpdater) updateServiceItem(appCtx appcontext.AppContext, if serviceItem.ReService.Code == models.ReServiceCodeDOPSIT || serviceItem.ReService.Code == models.ReServiceCodeDOSFSC { // Origin SIT: distance between shipment pickup address & service item ORIGINAL pickup address - milesCalculated, err := p.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, serviceItem.SITOriginHHGOriginalAddress.PostalCode) + milesCalculated, err := p.planner.ZipTransitDistance(appCtx, mtoShipment.PickupAddress.PostalCode, serviceItem.SITOriginHHGOriginalAddress.PostalCode, false, false) if err != nil { return nil, err } @@ -584,7 +611,7 @@ func (p *mtoServiceItemUpdater) UpdateMTOServiceItemPrime( func calculateOriginSITRequiredDeliveryDate(appCtx appcontext.AppContext, shipment models.MTOShipment, planner route.Planner, sitCustomerContacted *time.Time, sitDepartureDate *time.Time) (*time.Time, error) { // Get a distance calculation between pickup and destination addresses. - distance, err := planner.ZipTransitDistance(appCtx, shipment.PickupAddress.PostalCode, shipment.DestinationAddress.PostalCode) + distance, err := planner.ZipTransitDistance(appCtx, shipment.PickupAddress.PostalCode, shipment.DestinationAddress.PostalCode, false, false) if err != nil { return nil, apperror.NewUnprocessableEntityError("cannot calculate distance between pickup and destination addresses") @@ -812,6 +839,38 @@ func (p *mtoServiceItemUpdater) UpdateMTOServiceItem( // Make the update and create a InvalidInputError if there were validation issues verrs, updateErr := txnAppCtx.DB().ValidateAndUpdate(validServiceItem) + // if the port information was updated, then we need to update the basic service item pricing since distance has changed + // this only applies to international shipments + if oldServiceItem.POELocationID != mtoServiceItem.POELocationID || oldServiceItem.PODLocationID != mtoServiceItem.PODLocationID { + shipment := oldServiceItem.MTOShipment + if shipment.PickupAddress != nil && shipment.DestinationAddress != nil && + (mtoServiceItem.POELocation != nil && mtoServiceItem.POELocation.UsPostRegionCity.UsprZipID != "" || + mtoServiceItem.PODLocation != nil && mtoServiceItem.PODLocation.UsPostRegionCity.UsprZipID != "") { + var pickupZip string + var destZip string + // if the port type is POEFSC this means the shipment is CONUS -> OCONUS (pickup -> port) + // if the port type is PODFSC this means the shipment is OCONUS -> CONUS (port -> destination) + if mtoServiceItem.POELocation != nil { + pickupZip = shipment.PickupAddress.PostalCode + destZip = mtoServiceItem.POELocation.UsPostRegionCity.UsprZipID + } else if mtoServiceItem.PODLocation != nil { + pickupZip = mtoServiceItem.PODLocation.UsPostRegionCity.UsprZipID + destZip = shipment.DestinationAddress.PostalCode + } + // we need to get the mileage from DTOD first, the db proc will consume that + mileage, err := p.planner.ZipTransitDistance(appCtx, pickupZip, destZip, true, true) + if err != nil { + return err + } + + // update the service item pricing if relevant fields have changed + err = models.UpdateEstimatedPricingForShipmentBasicServiceItems(appCtx.DB(), &shipment, mileage) + if err != nil { + return err + } + } + } + // If there were validation errors create an InvalidInputError type if verrs != nil && verrs.HasAny() { return apperror.NewInvalidInputError(validServiceItem.ID, updateErr, verrs, "Invalid input found while updating the service item.") diff --git a/pkg/services/mto_service_item/mto_service_item_updater_test.go b/pkg/services/mto_service_item/mto_service_item_updater_test.go index 7b11b968fc5..8fb839e8df2 100644 --- a/pkg/services/mto_service_item/mto_service_item_updater_test.go +++ b/pkg/services/mto_service_item/mto_service_item_updater_test.go @@ -21,6 +21,7 @@ import ( "github.com/transcom/mymove/pkg/factory" "github.com/transcom/mymove/pkg/handlers" "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/models/roles" mocks "github.com/transcom/mymove/pkg/route/mocks" "github.com/transcom/mymove/pkg/services/address" "github.com/transcom/mymove/pkg/services/ghcrateengine" @@ -50,6 +51,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) updater := NewMTOServiceItemUpdater(planner, builder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) @@ -327,6 +330,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -451,6 +456,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -579,6 +586,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -705,6 +714,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -781,6 +792,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -851,6 +864,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -959,6 +974,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -1074,6 +1091,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -1234,6 +1253,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, nil) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -1344,6 +1365,8 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1234, apperror.UnprocessableEntityError{}) ghcDomesticTransitTime := models.GHCDomesticTransitTime{ @@ -1372,6 +1395,203 @@ func (suite *MTOServiceItemServiceSuite) TestMTOServiceItemUpdater() { suite.Error(err) suite.IsType(apperror.UnprocessableEntityError{}, err) }) + + suite.Run("Successful update of port service item with updated pricing estimates of basic iHHG service items ", func() { + planner.On("ZipTransitDistance", + mock.AnythingOfType("*appcontext.appContext"), + "50314", + "98158", + true, + true, + ).Return(1000, nil) + + ghcDomesticTransitTime := models.GHCDomesticTransitTime{ + MaxDaysTransitTime: 12, + WeightLbsLower: 0, + WeightLbsUpper: 10000, + DistanceMilesLower: 0, + DistanceMilesUpper: 10000, + } + _, _ = suite.DB().ValidateAndCreate(&ghcDomesticTransitTime) + + testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ + ReContractYear: models.ReContractYear{ + StartDate: time.Now().Add(-24 * time.Hour), + EndDate: time.Now().Add(24 * time.Hour), + }, + }) + + move := factory.BuildAvailableToPrimeMove(suite.DB(), nil, nil) + + pickupUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "50314") + suite.FatalNoError(err) + pickupAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + StreetAddress1: "Tester Address", + City: "Des Moines", + State: "IA", + PostalCode: "50314", + IsOconus: models.BoolPointer(false), + UsPostRegionCityID: &pickupUSPRC.ID, + }, + }, + }, nil) + + destUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99505") + suite.FatalNoError(err) + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + StreetAddress1: "JBER", + City: "Anchorage", + State: "AK", + PostalCode: "99505", + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &destUSPRC.ID, + }, + }, + }, nil) + + pickupDate := time.Now() + requestedPickup := time.Now() + estimatedWeight := unit.Pound(1212) + shipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + Status: models.MTOShipmentStatusApproved, + PickupAddressID: &pickupAddress.ID, + DestinationAddressID: &destinationAddress.ID, + ScheduledPickupDate: &pickupDate, + RequestedPickupDate: &requestedPickup, + PrimeEstimatedWeight: &estimatedWeight, + }, + }, + { + Model: move, + LinkOnly: true, + }, + }, nil) + + // building service items with NO pricing estimates + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeISLH, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeIHPK, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeIHUPK, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + }, nil) + portLocation := factory.FetchPortLocation(suite.DB(), []factory.Customization{ + { + Model: models.Port{ + PortCode: "PDX", + }, + }, + }, nil) + poefsc := factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodePOEFSC, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + { + Model: portLocation, + LinkOnly: true, + Type: &factory.PortLocations.PortOfEmbarkation, + }, + }, nil) + + eTag := etag.GenerateEtag(poefsc.UpdatedAt) + + // update the port + newServiceItemPrime := poefsc + newServiceItemPrime.POELocation.Port.PortCode = "SEA" + + // Update MTO service item + _, err = updater.UpdateMTOServiceItemPrime(suite.AppContextForTest(), &newServiceItemPrime, planner, shipment, eTag) + suite.NoError(err) + + // checking the service item data + var serviceItems []models.MTOServiceItem + err = suite.AppContextForTest().DB().EagerPreload("ReService").Where("mto_shipment_id = ?", shipment.ID).Order("created_at asc").All(&serviceItems) + suite.NoError(err) + + suite.Equal(4, len(serviceItems)) + for i := 0; i < len(serviceItems); i++ { + // because the estimated weight is provided & POEFSC has a port location now, estimated pricing should be updated + suite.NotNil(serviceItems[i].PricingEstimate) + } + }) } func (suite *MTOServiceItemServiceSuite) TestValidateUpdateMTOServiceItem() { @@ -1960,6 +2180,8 @@ func (suite *MTOServiceItemServiceSuite) TestUpdateMTOServiceItemStatus() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) updater := NewMTOServiceItemUpdater(planner, builder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) @@ -1987,6 +2209,50 @@ func (suite *MTOServiceItemServiceSuite) TestUpdateMTOServiceItemStatus() { suite.Nil(serviceItem.RejectedAt) suite.NotNil(updatedServiceItem) }) + suite.Run("Handling assigned user When TOO reviews move and approves service item", func() { + transportationOffice := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ProvidesCloseout: true, + }, + }, + }, nil) + + officeUser := factory.BuildOfficeUserWithRoles(suite.DB(), []factory.Customization{ + { + Model: transportationOffice, + LinkOnly: true, + Type: &factory.TransportationOffices.CloseoutOffice, + }, + }, []roles.RoleType{roles.RoleTypeTOO}) + + move := factory.BuildApprovalsRequestedMove(suite.DB(), []factory.Customization{ + { + Model: officeUser, + LinkOnly: true, + Type: &factory.OfficeUsers.TOOAssignedUser, + }, + }, nil) + + serviceItem := factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + }, nil) + + suite.NotNil(move.TOOAssignedUser) + eTag := etag.GenerateEtag(serviceItem.UpdatedAt) + updatedServiceItem, err := updater.ApproveOrRejectServiceItem( + suite.AppContextForTest(), serviceItem.ID, models.MTOServiceItemStatusApproved, rejectionReason, eTag) + suite.NoError(err) + err = suite.DB().Find(&move, move.ID) + suite.NoError(err) + err = suite.DB().Find(&serviceItem, serviceItem.ID) + suite.NoError(err) + suite.Nil(move.TOOAssignedID) + suite.Equal(models.MTOServiceItemStatusApproved, updatedServiceItem.Status) + }) suite.Run("When TOO approves a DDDSIT service item with an existing SITDestinationFinalAddress", func() { move := factory.BuildApprovalsRequestedMove(suite.DB(), nil, nil) @@ -2604,6 +2870,8 @@ func (suite *MTOServiceItemServiceSuite) TestUpdateMTOServiceItemPricingEstimate mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) updater := NewMTOServiceItemUpdater(planner, builder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) diff --git a/pkg/services/mto_shipment/mto_shipment_address_updater.go b/pkg/services/mto_shipment/mto_shipment_address_updater.go index edab362940f..b000991dea4 100644 --- a/pkg/services/mto_shipment/mto_shipment_address_updater.go +++ b/pkg/services/mto_shipment/mto_shipment_address_updater.go @@ -72,9 +72,9 @@ func UpdateOriginSITServiceItemSITDeliveryMiles(planner route.Planner, shipment // Origin SIT: distance between shipment pickup address & service item ORIGINAL pickup address if serviceItem.SITOriginHHGOriginalAddress != nil { - milesCalculated, err = planner.ZipTransitDistance(appCtx, newAddress.PostalCode, serviceItem.SITOriginHHGOriginalAddress.PostalCode) + milesCalculated, err = planner.ZipTransitDistance(appCtx, newAddress.PostalCode, serviceItem.SITOriginHHGOriginalAddress.PostalCode, false, false) } else { - milesCalculated, err = planner.ZipTransitDistance(appCtx, oldAddress.PostalCode, newAddress.PostalCode) + milesCalculated, err = planner.ZipTransitDistance(appCtx, oldAddress.PostalCode, newAddress.PostalCode, false, false) } if err != nil { return nil, err diff --git a/pkg/services/mto_shipment/mto_shipment_address_updater_test.go b/pkg/services/mto_shipment/mto_shipment_address_updater_test.go index 44c773ef06f..da9621dd279 100644 --- a/pkg/services/mto_shipment/mto_shipment_address_updater_test.go +++ b/pkg/services/mto_shipment/mto_shipment_address_updater_test.go @@ -19,6 +19,8 @@ func (suite *MTOShipmentServiceSuite) TestUpdateMTOShipmentAddress() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) addressCreator := address.NewAddressCreator() addressUpdater := address.NewAddressUpdater() @@ -169,6 +171,8 @@ func (suite *MTOShipmentServiceSuite) TestUpdateMTOShipmentAddress() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(465, nil) mtoServiceItems, _ := UpdateOriginSITServiceItemSITDeliveryMiles(planner, &externalShipment, &newAddress, &oldAddress, suite.AppContextForTest()) suite.Equal(2, len(*mtoServiceItems)) diff --git a/pkg/services/mto_shipment/mto_shipment_updater.go b/pkg/services/mto_shipment/mto_shipment_updater.go index 9b3cc3fd892..ab1301d358a 100644 --- a/pkg/services/mto_shipment/mto_shipment_updater.go +++ b/pkg/services/mto_shipment/mto_shipment_updater.go @@ -850,6 +850,46 @@ func (f *mtoShipmentUpdater) updateShipmentRecord(appCtx appcontext.AppContext, return err } + // if the shipment has an estimated weight, we need to update the service item pricing + // we only need to do this if the estimated weight, primary addresses, and pickup date are being updated since those all impact pricing + // we will compare data here to see if we even need to update the pricing + if newShipment.MarketCode == models.MarketCodeInternational && + (newShipment.PrimeEstimatedWeight != nil || + newShipment.PickupAddress != nil && newShipment.PickupAddress.PostalCode != dbShipment.PickupAddress.PostalCode || + newShipment.DestinationAddress != nil && newShipment.DestinationAddress.PostalCode != dbShipment.DestinationAddress.PostalCode || + newShipment.RequestedPickupDate != nil && newShipment.RequestedPickupDate.Format("2006-01-02") != dbShipment.RequestedPickupDate.Format("2006-01-02")) { + + portZip, portType, err := models.GetPortLocationInfoForShipment(appCtx.DB(), newShipment.ID) + if err != nil { + return err + } + // if we don't have the port data, then we won't worry about pricing because we need the distance from/to the ports + if portZip != nil && portType != nil { + var pickupZip string + var destZip string + // if the port type is POEFSC this means the shipment is CONUS -> OCONUS (pickup -> port) + // if the port type is PODFSC this means the shipment is OCONUS -> CONUS (port -> destination) + if *portType == models.ReServiceCodePOEFSC.String() { + pickupZip = newShipment.PickupAddress.PostalCode + destZip = *portZip + } else if *portType == models.ReServiceCodePODFSC.String() { + pickupZip = *portZip + destZip = newShipment.DestinationAddress.PostalCode + } + // we need to get the mileage from DTOD first, the db proc will consume that + mileage, err := f.planner.ZipTransitDistance(appCtx, pickupZip, destZip, true, true) + if err != nil { + return err + } + + // update the service item pricing if relevant fields have changed + err = models.UpdateEstimatedPricingForShipmentBasicServiceItems(appCtx.DB(), newShipment, mileage) + if err != nil { + return err + } + } + } + // // Perform shipment recalculate payment request // @@ -1027,7 +1067,7 @@ func (o *mtoShipmentStatusUpdater) setRequiredDeliveryDate(appCtx appcontext.App pickupLocation = shipment.PickupAddress deliveryLocation = shipment.DestinationAddress } - requiredDeliveryDate, calcErr := CalculateRequiredDeliveryDate(appCtx, o.planner, *pickupLocation, *deliveryLocation, *shipment.ScheduledPickupDate, weight.Int()) + requiredDeliveryDate, calcErr := CalculateRequiredDeliveryDate(appCtx, o.planner, *pickupLocation, *deliveryLocation, *shipment.ScheduledPickupDate, weight.Int(), shipment.MarketCode) if calcErr != nil { return calcErr } @@ -1144,7 +1184,7 @@ func reServiceCodesForShipment(shipment models.MTOShipment) []models.ReServiceCo // CalculateRequiredDeliveryDate function is used to get a distance calculation using the pickup and destination addresses. It then uses // the value returned to make a fetch on the ghc_domestic_transit_times table and returns a required delivery date // based on the max_days_transit_time. -func CalculateRequiredDeliveryDate(appCtx appcontext.AppContext, planner route.Planner, pickupAddress models.Address, destinationAddress models.Address, pickupDate time.Time, weight int) (*time.Time, error) { +func CalculateRequiredDeliveryDate(appCtx appcontext.AppContext, planner route.Planner, pickupAddress models.Address, destinationAddress models.Address, pickupDate time.Time, weight int, marketCode models.MarketCode) (*time.Time, error) { // Okay, so this is something to get us able to take care of the 20 day condition over in the gdoc linked in this // story: https://dp3.atlassian.net/browse/MB-1141 // We unfortunately didn't get a lot of guidance regarding vicinity. So for now we're taking zip codes that are the @@ -1156,8 +1196,9 @@ func CalculateRequiredDeliveryDate(appCtx appcontext.AppContext, planner route.P "99615", "99619", "99624", "99643", "99644", "99697", "99650", "99801", "99802", "99803", "99811", "99812", "99950", "99824", "99850", "99901", "99928", "99950", "99835"} + internationalShipment := marketCode == models.MarketCodeInternational // Get a distance calculation between pickup and destination addresses. - distance, err := planner.ZipTransitDistance(appCtx, pickupAddress.PostalCode, destinationAddress.PostalCode) + distance, err := planner.ZipTransitDistance(appCtx, pickupAddress.PostalCode, destinationAddress.PostalCode, false, internationalShipment) if err != nil { return nil, err } @@ -1308,11 +1349,11 @@ func UpdateDestinationSITServiceItemsSITDeliveryMiles(planner route.Planner, app if TOOApprovalRequired { if serviceItem.SITDestinationOriginalAddress != nil { // if TOO approval was required, shipment destination address has been updated at this point - milesCalculated, err = planner.ZipTransitDistance(appCtx, shipment.DestinationAddress.PostalCode, serviceItem.SITDestinationOriginalAddress.PostalCode) + milesCalculated, err = planner.ZipTransitDistance(appCtx, shipment.DestinationAddress.PostalCode, serviceItem.SITDestinationOriginalAddress.PostalCode, false, false) } } else { // if TOO approval was not required, use the newAddress - milesCalculated, err = planner.ZipTransitDistance(appCtx, newAddress.PostalCode, serviceItem.SITDestinationOriginalAddress.PostalCode) + milesCalculated, err = planner.ZipTransitDistance(appCtx, newAddress.PostalCode, serviceItem.SITDestinationOriginalAddress.PostalCode, false, false) } if err != nil { return err diff --git a/pkg/services/mto_shipment/mto_shipment_updater_test.go b/pkg/services/mto_shipment/mto_shipment_updater_test.go index b937637509a..7d9ad664b82 100644 --- a/pkg/services/mto_shipment/mto_shipment_updater_test.go +++ b/pkg/services/mto_shipment/mto_shipment_updater_test.go @@ -50,6 +50,8 @@ func (suite *MTOShipmentServiceSuite) TestMTOShipmentUpdater() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(1000, nil) moveRouter := moveservices.NewMoveRouter() moveWeights := moveservices.NewMoveWeights(NewShipmentReweighRequester()) @@ -457,6 +459,212 @@ func (suite *MTOShipmentServiceSuite) TestMTOShipmentUpdater() { suite.Equal(updatedShipment.MarketCode, models.MarketCodeInternational) }) + suite.Run("Successful update on international shipment with estimated weight results in the update of estimated pricing for basic service items", func() { + setupTestData() + planner.On("ZipTransitDistance", + mock.AnythingOfType("*appcontext.appContext"), + "50314", + "99505", + false, + true, + ).Return(1000, nil) + + planner.On("ZipTransitDistance", + mock.AnythingOfType("*appcontext.appContext"), + "50314", + "97220", + true, + true, + ).Return(1000, nil) + + ghcDomesticTransitTime := models.GHCDomesticTransitTime{ + MaxDaysTransitTime: 12, + WeightLbsLower: 0, + WeightLbsUpper: 10000, + DistanceMilesLower: 0, + DistanceMilesUpper: 10000, + } + _, _ = suite.DB().ValidateAndCreate(&ghcDomesticTransitTime) + + testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ + ReContractYear: models.ReContractYear{ + StartDate: time.Now().Add(-24 * time.Hour), + EndDate: time.Now().Add(24 * time.Hour), + }, + }) + + move := factory.BuildAvailableToPrimeMove(suite.DB(), nil, nil) + + pickupUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "50314") + suite.FatalNoError(err) + pickupAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + StreetAddress1: "Tester Address", + City: "Des Moines", + State: "IA", + PostalCode: "50314", + IsOconus: models.BoolPointer(false), + UsPostRegionCityID: &pickupUSPRC.ID, + }, + }, + }, nil) + + destUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99505") + suite.FatalNoError(err) + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + StreetAddress1: "JBER", + City: "Anchorage", + State: "AK", + PostalCode: "99505", + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &destUSPRC.ID, + }, + }, + }, nil) + + pickupDate := now.AddDate(0, 0, 10) + requestedPickup := time.Now() + oldShipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + Status: models.MTOShipmentStatusApproved, + PrimeEstimatedWeight: nil, + PickupAddressID: &pickupAddress.ID, + DestinationAddressID: &destinationAddress.ID, + ScheduledPickupDate: &pickupDate, + RequestedPickupDate: &requestedPickup, + MarketCode: models.MarketCodeInternational, + }, + }, + { + Model: move, + LinkOnly: true, + }, + }, nil) + + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: oldShipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeISLH, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: oldShipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeIHPK, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: oldShipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeIHUPK, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + }, nil) + portLocation := factory.FetchPortLocation(suite.DB(), []factory.Customization{ + { + Model: models.Port{ + PortCode: "PDX", + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: oldShipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodePOEFSC, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: nil, + }, + }, + { + Model: portLocation, + LinkOnly: true, + Type: &factory.PortLocations.PortOfEmbarkation, + }, + }, nil) + + eTag := etag.GenerateEtag(oldShipment.UpdatedAt) + + updatedShipment := models.MTOShipment{ + ID: oldShipment.ID, + PrimeEstimatedWeight: &primeEstimatedWeight, + } + + session := auth.Session{} + _, err = mtoShipmentUpdaterPrime.UpdateMTOShipment(suite.AppContextWithSessionForTest(&session), &updatedShipment, eTag, "test") + suite.NoError(err) + + // checking the service item data + var serviceItems []models.MTOServiceItem + err = suite.AppContextForTest().DB().EagerPreload("ReService").Where("mto_shipment_id = ?", oldShipment.ID).Order("created_at asc").All(&serviceItems) + suite.NoError(err) + + suite.Equal(4, len(serviceItems)) + for i := 0; i < len(serviceItems); i++ { + // because the estimated weight is provided & POEFSC has a port location, estimated pricing should be updated + suite.NotNil(serviceItems[i].PricingEstimate) + } + }) + suite.Run("Successful update to a minimal MTO shipment", func() { setupTestData() @@ -1127,10 +1335,6 @@ func (suite *MTOShipmentServiceSuite) TestMTOShipmentUpdater() { suite.Run("Prime not able to update an existing prime estimated weight", func() { setupTestData() - // This test was added because of a bug that nullified the ApprovedDate - // when ScheduledPickupDate was included in the payload. See PR #6919. - // ApprovedDate affects shipment diversions, so we want to make sure it - // never gets nullified, regardless of which fields are being updated. move := factory.BuildAvailableToPrimeMove(suite.DB(), nil, nil) oldShipment := factory.BuildMTOShipmentMinimal(suite.DB(), []factory.Customization{ { @@ -1795,6 +1999,8 @@ func (suite *MTOShipmentServiceSuite) TestUpdateMTOShipmentStatus() { mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("string"), mock.AnythingOfType("string"), + false, + false, ).Return(500, nil).Run(func(args mock.Arguments) { TransitDistancePickupArg = args.Get(1).(string) TransitDistanceDestinationArg = args.Get(2).(string) @@ -2949,6 +3155,8 @@ func (suite *MTOShipmentServiceSuite) TestUpdateStatusServiceItems() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) siCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) updater := NewMTOShipmentStatusUpdater(builder, siCreator, planner) @@ -2989,7 +3197,16 @@ func (suite *MTOShipmentServiceSuite) TestUpdateStatusServiceItems() { err = appCtx.DB().EagerPreload("ReService").Where("mto_shipment_id = ?", updatedShipment.ID).All(&serviceItems) suite.NoError(err) - suite.Equal(models.ReServiceCodeDLH, serviceItems[0].ReService.Code) + foundDLH := false + for _, serviceItem := range serviceItems { + if serviceItem.ReService.Code == models.ReServiceCodeDLH { + foundDLH = true + break + } + } + + // at least one service item should have the DLH code + suite.True(foundDLH, "Expected to find at least one service item with ReService code DLH") }) suite.Run("Shipments with same origin/destination ZIP3 have shorthaul service item", func() { diff --git a/pkg/services/mto_shipment/rules.go b/pkg/services/mto_shipment/rules.go index 7bc4fa17f94..e9579b24aae 100644 --- a/pkg/services/mto_shipment/rules.go +++ b/pkg/services/mto_shipment/rules.go @@ -343,7 +343,7 @@ func checkPrimeValidationsOnModel(planner route.Planner) validator { weight = older.NTSRecordedWeight } requiredDeliveryDate, err := CalculateRequiredDeliveryDate(appCtx, planner, *latestPickupAddress, - *latestDestinationAddress, *latestSchedPickupDate, weight.Int()) + *latestDestinationAddress, *latestSchedPickupDate, weight.Int(), older.MarketCode) if err != nil { verrs.Add("requiredDeliveryDate", err.Error()) } diff --git a/pkg/services/mto_shipment/shipment_approver.go b/pkg/services/mto_shipment/shipment_approver.go index d52d7388ec4..de81ce0440e 100644 --- a/pkg/services/mto_shipment/shipment_approver.go +++ b/pkg/services/mto_shipment/shipment_approver.go @@ -77,14 +77,55 @@ func (f *shipmentApprover) ApproveShipment(appCtx appcontext.AppContext, shipmen } } - // create international shipment service items - if shipment.ShipmentType == models.MTOShipmentTypeHHG && shipment.MarketCode == models.MarketCodeInternational { - err := models.CreateApprovedServiceItemsForShipment(appCtx.DB(), shipment) - if err != nil { - return shipment, err - } - } transactionError := appCtx.NewTransaction(func(txnAppCtx appcontext.AppContext) error { + // create international shipment service items before approving + // we use a database proc to create the basic auto-approved service items + if shipment.ShipmentType == models.MTOShipmentTypeHHG && shipment.MarketCode == models.MarketCodeInternational { + err := models.CreateApprovedServiceItemsForShipment(appCtx.DB(), shipment) + if err != nil { + return err + } + + // Update the service item pricing if we have the estimated weight + if shipment.PrimeEstimatedWeight != nil { + portZip, portType, err := models.GetPortLocationInfoForShipment(appCtx.DB(), shipment.ID) + if err != nil { + return err + } + // if we don't have the port data, then we won't worry about pricing + if portZip != nil && portType != nil { + var pickupZip string + var destZip string + // if the port type is POEFSC this means the shipment is CONUS -> OCONUS (pickup -> port) + // if the port type is PODFSC this means the shipment is OCONUS -> CONUS (port -> destination) + if *portType == models.ReServiceCodePOEFSC.String() { + pickupZip = shipment.PickupAddress.PostalCode + destZip = *portZip + } else if *portType == models.ReServiceCodePODFSC.String() { + pickupZip = *portZip + destZip = shipment.DestinationAddress.PostalCode + } + // we need to get the mileage from DTOD first, the db proc will consume that + mileage, err := f.planner.ZipTransitDistance(appCtx, pickupZip, destZip, true, true) + if err != nil { + return err + } + + // update the service item pricing if relevant fields have changed + err = models.UpdateEstimatedPricingForShipmentBasicServiceItems(appCtx.DB(), shipment, mileage) + if err != nil { + return err + } + } + } + } else { + // after approving shipment, shipment level service items must be created (this is for domestic shipments only) + err = f.createShipmentServiceItems(txnAppCtx, shipment) + if err != nil { + return err + } + } + verrs, err := txnAppCtx.DB().ValidateAndSave(shipment) if verrs != nil && verrs.HasAny() { invalidInputError := apperror.NewInvalidInputError(shipment.ID, nil, verrs, "There was an issue with validating the updates") @@ -95,11 +136,6 @@ func (f *shipmentApprover) ApproveShipment(appCtx appcontext.AppContext, shipmen return err } - // after approving shipment, shipment level service items must be created - err = f.createShipmentServiceItems(txnAppCtx, shipment) - if err != nil { - return err - } return nil }) @@ -169,7 +205,7 @@ func (f *shipmentApprover) setRequiredDeliveryDate(appCtx appcontext.AppContext, deliveryLocation = shipment.DestinationAddress weight = shipment.PrimeEstimatedWeight.Int() } - requiredDeliveryDate, calcErr := CalculateRequiredDeliveryDate(appCtx, f.planner, *pickupLocation, *deliveryLocation, *shipment.ScheduledPickupDate, weight) + requiredDeliveryDate, calcErr := CalculateRequiredDeliveryDate(appCtx, f.planner, *pickupLocation, *deliveryLocation, *shipment.ScheduledPickupDate, weight, shipment.MarketCode) if calcErr != nil { return calcErr } diff --git a/pkg/services/mto_shipment/shipment_approver_test.go b/pkg/services/mto_shipment/shipment_approver_test.go index 3c1d36a4795..8185aad43e5 100644 --- a/pkg/services/mto_shipment/shipment_approver_test.go +++ b/pkg/services/mto_shipment/shipment_approver_test.go @@ -14,7 +14,6 @@ import ( "github.com/transcom/mymove/pkg/etag" "github.com/transcom/mymove/pkg/factory" "github.com/transcom/mymove/pkg/models" - "github.com/transcom/mymove/pkg/route" "github.com/transcom/mymove/pkg/route/mocks" "github.com/transcom/mymove/pkg/services" "github.com/transcom/mymove/pkg/services/ghcrateengine" @@ -91,6 +90,8 @@ func (suite *MTOShipmentServiceSuite) createApproveShipmentSubtestData() (subtes mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) siCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, builder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) subtestData.planner = &mocks.Planner{} @@ -190,50 +191,100 @@ func (suite *MTOShipmentServiceSuite) createApproveShipmentSubtestData() (subtes } func (suite *MTOShipmentServiceSuite) TestApproveShipment() { - suite.Run("If the international mtoShipment is approved successfully it should create pre approved mtoServiceItems", func() { - internationalShipment := factory.BuildMTOShipment(suite.AppContextForTest().DB(), []factory.Customization{ + suite.Run("If the international mtoShipment is approved successfully it should create pre approved mtoServiceItems and should NOT update pricing without port data", func() { + move := factory.BuildAvailableToPrimeMove(suite.DB(), []factory.Customization{ { Model: models.Move{ Status: models.MoveStatusAPPROVED, }, + }}, nil) + + // we need to get the usPostRegionCityIDs based off of the ZIP for the addresses + pickupUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "50314") + suite.FatalNoError(err) + pickupAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + StreetAddress1: "Tester Address", + City: "Des Moines", + State: "IA", + PostalCode: "50314", + IsOconus: models.BoolPointer(false), + UsPostRegionCityID: &pickupUSPRC.ID, + }, }, + }, nil) + + destUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99505") + suite.FatalNoError(err) + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ { Model: models.Address{ - StreetAddress1: "Tester Address", - City: "Des Moines", - State: "IA", - PostalCode: "50314", - IsOconus: models.BoolPointer(false), + StreetAddress1: "JBER", + City: "Anchorage", + State: "AK", + PostalCode: "99505", + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &destUSPRC.ID, }, - Type: &factory.Addresses.PickupAddress, }, + }, nil) + + pickupDate := time.Now() + internationalShipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ { Model: models.MTOShipment{ - MarketCode: "i", - Status: models.MTOShipmentStatusSubmitted, + Status: models.MTOShipmentStatusSubmitted, + MarketCode: models.MarketCodeInternational, + PrimeEstimatedWeight: models.PoundPointer(unit.Pound(4000)), + PickupAddressID: &pickupAddress.ID, + DestinationAddressID: &destinationAddress.ID, + RequestedPickupDate: &pickupDate, }, }, { - Model: models.Address{ - StreetAddress1: "JBER", - City: "Anchorage", - State: "AK", - PostalCode: "99505", - IsOconus: models.BoolPointer(true), - }, - Type: &factory.Addresses.DeliveryAddress, + Model: move, + LinkOnly: true, }, }, nil) internationalShipmentEtag := etag.GenerateEtag(internationalShipment.UpdatedAt) + testdatagen.MakeReContractYear(suite.DB(), testdatagen.Assertions{ + ReContractYear: models.ReContractYear{ + StartDate: time.Now().Add(-24 * time.Hour), + EndDate: time.Now().Add(24 * time.Hour), + }, + }) + shipmentRouter := NewShipmentRouter() + moveWeights := moverouter.NewMoveWeights(NewShipmentReweighRequester()) var serviceItemCreator services.MTOServiceItemCreator - var planner route.Planner - var moveWeights services.MoveWeights + appCtx := suite.AppContextWithSessionForTest(&auth.Session{ + ApplicationName: auth.OfficeApp, + OfficeUserID: uuid.Must(uuid.NewV4()), + }) + + ghcDomesticTransitTime := models.GHCDomesticTransitTime{ + MaxDaysTransitTime: 12, + WeightLbsLower: 0, + WeightLbsUpper: 10000, + DistanceMilesLower: 0, + DistanceMilesUpper: 10000, + } + _, _ = suite.DB().ValidateAndCreate(&ghcDomesticTransitTime) + + planner := &mocks.Planner{} + planner.On("ZipTransitDistance", + mock.AnythingOfType("*appcontext.appContext"), + mock.Anything, + mock.Anything, + false, + true, + ).Return(500, nil) // Approve international shipment shipmentApprover := NewShipmentApprover(shipmentRouter, serviceItemCreator, planner, moveWeights) - _, err := shipmentApprover.ApproveShipment(suite.AppContextForTest(), internationalShipment.ID, internationalShipmentEtag) + _, err = shipmentApprover.ApproveShipment(appCtx, internationalShipment.ID, internationalShipmentEtag) suite.NoError(err) // Get created pre approved service items @@ -252,6 +303,8 @@ func (suite *MTOShipmentServiceSuite) TestApproveShipment() { for i := 0; i < len(serviceItems); i++ { actualReServiceCode := serviceItems[i].ReService.Code suite.True(slices.Contains(expectedReserviceCodes, actualReServiceCode)) + // because the estimated weight is provided, estimated pricing should be updated + suite.Nil(serviceItems[i].PricingEstimate) } }) @@ -287,6 +340,8 @@ func (suite *MTOShipmentServiceSuite) TestApproveShipment() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(500, nil) preApprovalTime := time.Now() @@ -406,6 +461,8 @@ func (suite *MTOShipmentServiceSuite) TestApproveShipment() { mock.AnythingOfType("*appcontext.appContext"), createdShipment.PickupAddress.PostalCode, createdShipment.DestinationAddress.PostalCode, + false, + false, ).Return(500, nil) shipmentHeavyEtag := etag.GenerateEtag(shipmentHeavy.UpdatedAt) @@ -681,6 +738,8 @@ func (suite *MTOShipmentServiceSuite) TestApproveShipment() { mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("string"), mock.AnythingOfType("string"), + false, + false, ).Return(500, nil).Run(func(args mock.Arguments) { TransitDistancePickupArg = args.Get(1).(string) TransitDistanceDestinationArg = args.Get(2).(string) @@ -735,6 +794,8 @@ func (suite *MTOShipmentServiceSuite) TestApproveShipment() { mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("string"), mock.AnythingOfType("string"), + false, + false, ).Return(500, nil) suite.Equal(8000, *shipment.MoveTaskOrder.Orders.Entitlement.AuthorizedWeight()) @@ -775,6 +836,8 @@ func (suite *MTOShipmentServiceSuite) TestApproveShipment() { mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("string"), mock.AnythingOfType("string"), + false, + false, ).Return(500, nil) shipmentEtag := etag.GenerateEtag(shipment.UpdatedAt) diff --git a/pkg/services/mto_shipment/shipment_deleter_test.go b/pkg/services/mto_shipment/shipment_deleter_test.go index 1e0ca2796f6..35c86bc68ac 100644 --- a/pkg/services/mto_shipment/shipment_deleter_test.go +++ b/pkg/services/mto_shipment/shipment_deleter_test.go @@ -29,6 +29,8 @@ func (suite *MTOShipmentServiceSuite) TestShipmentDeleter() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { @@ -259,6 +261,8 @@ func (suite *MTOShipmentServiceSuite) TestPrimeShipmentDeleter() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) setUpSignedCertificationCreatorMock := func(returnValue ...interface{}) services.SignedCertificationCreator { diff --git a/pkg/services/payment_request/payment_request_creator_test.go b/pkg/services/payment_request/payment_request_creator_test.go index 61edc1c6fa8..cc8d50d01d2 100644 --- a/pkg/services/payment_request/payment_request_creator_test.go +++ b/pkg/services/payment_request/payment_request_creator_test.go @@ -327,6 +327,8 @@ func (suite *PaymentRequestServiceSuite) TestCreatePaymentRequest() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(0, nil) }) @@ -568,6 +570,8 @@ func (suite *PaymentRequestServiceSuite) TestCreatePaymentRequest() { mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(0, nil) failingCreator := NewPaymentRequestCreator(planner, failingServiceItemPricer) @@ -1346,7 +1350,7 @@ func (suite *PaymentRequestServiceSuite) TestCreatePaymentRequestCheckOnNTSRelea testZip3Distance := 1234 // ((testOriginalWeight / 100.0) * testZip3Distance * testDLHRate * testEscalationCompounded) / 1000 - testDLHTotalPrice := unit.Cents(279407) + testDLHTotalPrice := unit.Cents(17485484) // // Test data setup @@ -1459,6 +1463,8 @@ func (suite *PaymentRequestServiceSuite) TestCreatePaymentRequestCheckOnNTSRelea mock.AnythingOfType("*appcontext.appContext"), testStorageFacilityZip, testDestinationZip, + false, + false, ).Return(testZip3Distance, nil) // Create an initial payment request. diff --git a/pkg/services/payment_request/payment_request_recalculator_test.go b/pkg/services/payment_request/payment_request_recalculator_test.go index 4a91e7f9a10..7d5120dcd55 100644 --- a/pkg/services/payment_request/payment_request_recalculator_test.go +++ b/pkg/services/payment_request/payment_request_recalculator_test.go @@ -55,6 +55,8 @@ func (suite *PaymentRequestServiceSuite) TestRecalculatePaymentRequestSuccess() mock.AnythingOfType("*appcontext.appContext"), recalculateTestPickupZip, recalculateTestDestinationZip, + false, + false, ).Return(recalculateTestZip3Distance, nil) // Create an initial payment request. @@ -164,7 +166,7 @@ func (suite *PaymentRequestServiceSuite) TestRecalculatePaymentRequestSuccess() { paymentRequest: &oldPaymentRequest, serviceCode: models.ReServiceCodeDLH, - priceCents: unit.Cents(279407), + priceCents: unit.Cents(17485484), paramsToCheck: []paramMap{ {models.ServiceItemParamNameWeightOriginal, strTestOriginalWeight}, {models.ServiceItemParamNameWeightBilled, strTestOriginalWeight}, @@ -182,7 +184,7 @@ func (suite *PaymentRequestServiceSuite) TestRecalculatePaymentRequestSuccess() { paymentRequest: &oldPaymentRequest, serviceCode: models.ReServiceCodeDOASIT, - priceCents: unit.Cents(254910), + priceCents: unit.Cents(41633), paramsToCheck: []paramMap{ {models.ServiceItemParamNameWeightOriginal, strTestOriginalWeight}, {models.ServiceItemParamNameWeightBilled, strTestOriginalWeight}, @@ -208,7 +210,7 @@ func (suite *PaymentRequestServiceSuite) TestRecalculatePaymentRequestSuccess() isNewPaymentRequest: true, paymentRequest: newPaymentRequest, serviceCode: models.ReServiceCodeDLH, - priceCents: unit.Cents(261045), + priceCents: unit.Cents(16336383), paramsToCheck: []paramMap{ {models.ServiceItemParamNameWeightOriginal, strTestChangedOriginalWeight}, {models.ServiceItemParamNameWeightBilled, strTestChangedOriginalWeight}, @@ -228,7 +230,7 @@ func (suite *PaymentRequestServiceSuite) TestRecalculatePaymentRequestSuccess() isNewPaymentRequest: true, paymentRequest: newPaymentRequest, serviceCode: models.ReServiceCodeDOASIT, - priceCents: unit.Cents(238158), // Price same as before since new weight still in same weight bracket + priceCents: unit.Cents(38897), // Price same as before since new weight still in same weight bracket paramsToCheck: []paramMap{ {models.ServiceItemParamNameWeightOriginal, strTestChangedOriginalWeight}, {models.ServiceItemParamNameWeightBilled, strTestChangedOriginalWeight}, @@ -295,6 +297,8 @@ func (suite *PaymentRequestServiceSuite) TestRecalculatePaymentRequestErrors() { mock.AnythingOfType("*appcontext.appContext"), recalculateTestPickupZip, recalculateTestDestinationZip, + false, + false, ).Return(recalculateTestZip3Distance, nil) // Create an initial payment request. @@ -478,21 +482,6 @@ func (suite *PaymentRequestServiceSuite) setupRecalculateData1() (models.Move, m } suite.MustSave(&domServiceAreaPriceDOP) - // Domestic Pack - dpkService := factory.FetchReServiceByCode(suite.DB(), models.ReServiceCodeDPK) - - // Domestic Other Price - domOtherPriceDPK := models.ReDomesticOtherPrice{ - ContractID: contractYear.Contract.ID, - ServiceID: dpkService.ID, - IsPeakPeriod: false, - Schedule: 2, - PriceCents: recalculateTestDomOtherPrice, - Contract: contractYear.Contract, - Service: dpkService, - } - suite.MustSave(&domOtherPriceDPK) - // Build up a payment request with service item references for creating a payment request. paymentRequestArg := models.PaymentRequest{ MoveTaskOrderID: moveTaskOrder.ID, diff --git a/pkg/services/payment_request/payment_request_shipment_recalculate_test.go b/pkg/services/payment_request/payment_request_shipment_recalculate_test.go index 238a622bc90..d32beaa61b7 100644 --- a/pkg/services/payment_request/payment_request_shipment_recalculate_test.go +++ b/pkg/services/payment_request/payment_request_shipment_recalculate_test.go @@ -27,6 +27,8 @@ func (suite *PaymentRequestServiceSuite) TestRecalculateShipmentPaymentRequestSu mock.AnythingOfType("*appcontext.appContext"), recalculateTestPickupZip, recalculateTestDestinationZip, + false, + false, ).Return(recalculateTestZip3Distance, nil) // Create an initial payment request. @@ -136,6 +138,8 @@ func (suite *PaymentRequestServiceSuite) TestRecalculateShipmentPaymentRequestEr mock.AnythingOfType("*appcontext.appContext"), recalculateTestPickupZip, recalculateTestDestinationZip, + false, + false, ).Return(recalculateTestZip3Distance, nil) creator := NewPaymentRequestCreator(mockPlanner, ghcrateengine.NewServiceItemPricer()) diff --git a/pkg/services/payment_request/payment_request_status_updater.go b/pkg/services/payment_request/payment_request_status_updater.go index 5bc9f04c030..8ed84b5479c 100644 --- a/pkg/services/payment_request/payment_request_status_updater.go +++ b/pkg/services/payment_request/payment_request_status_updater.go @@ -8,7 +8,9 @@ import ( "github.com/transcom/mymove/pkg/appcontext" "github.com/transcom/mymove/pkg/apperror" "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/models/roles" "github.com/transcom/mymove/pkg/services" + moveservice "github.com/transcom/mymove/pkg/services/move" "github.com/transcom/mymove/pkg/services/query" ) @@ -48,6 +50,9 @@ func (p *paymentRequestStatusUpdater) UpdatePaymentRequestStatus(appCtx appconte } } + paymentRequests := models.PaymentRequests{} + moveID := paymentRequest.MoveTaskOrderID + var verrs *validate.Errors var err error if eTag == "" { @@ -60,6 +65,29 @@ func (p *paymentRequestStatusUpdater) UpdatePaymentRequestStatus(appCtx appconte return nil, apperror.NewInvalidInputError(id, err, verrs, "") } + Qerr := appCtx.DB().Q().InnerJoin("moves", "payment_requests.move_id = moves.id").Where("moves.id = ?", moveID).All(&paymentRequests) + if Qerr != nil { + return nil, Qerr + } + + paymentRequestNeedingReview := false + for _, request := range paymentRequests { + if request.Status != models.PaymentRequestStatusReviewed && + request.Status != models.PaymentRequestStatusReviewedAllRejected { + paymentRequestNeedingReview = true + break + } + } + + if !paymentRequestNeedingReview { + _, err := moveservice.AssignedOfficeUserUpdater.DeleteAssignedOfficeUser(moveservice.AssignedOfficeUserUpdater{}, appCtx, moveID, roles.RoleTypeTIO) + if err != nil { + return nil, err + } + paymentRequest.MoveTaskOrder.TIOAssignedID = nil + paymentRequest.MoveTaskOrder.TIOAssignedUser = nil + } + if err != nil { switch err.(type) { case query.StaleIdentifierError: diff --git a/pkg/services/payment_request/payment_request_status_updater_test.go b/pkg/services/payment_request/payment_request_status_updater_test.go index 178f4437437..8ca36ccf5d0 100644 --- a/pkg/services/payment_request/payment_request_status_updater_test.go +++ b/pkg/services/payment_request/payment_request_status_updater_test.go @@ -7,12 +7,50 @@ import ( "github.com/transcom/mymove/pkg/etag" "github.com/transcom/mymove/pkg/factory" "github.com/transcom/mymove/pkg/models" + "github.com/transcom/mymove/pkg/models/roles" "github.com/transcom/mymove/pkg/services/query" "github.com/transcom/mymove/pkg/unit" ) func (suite *PaymentRequestServiceSuite) TestUpdatePaymentRequestStatus() { builder := query.NewQueryBuilder() + suite.Run("When the last payment request is updated remove the assigend user.", func() { + setupTestData := func() models.OfficeUser { + transportationOffice := factory.BuildTransportationOffice(suite.DB(), []factory.Customization{ + { + Model: models.TransportationOffice{ + ProvidesCloseout: true, + }, + }, + }, nil) + + officeUser := factory.BuildOfficeUserWithRoles(suite.DB(), []factory.Customization{ + { + Model: transportationOffice, + LinkOnly: true, + Type: &factory.TransportationOffices.CloseoutOffice, + }, + }, []roles.RoleType{roles.RoleTypeTIO}) + + return officeUser + } + officeUser := setupTestData() + paymentRequest := factory.BuildPaymentRequest(suite.DB(), []factory.Customization{ + { + Model: officeUser, + LinkOnly: true, + Type: &factory.OfficeUsers.TIOAssignedUser, + }, + }, nil) + + paymentRequest.Status = models.PaymentRequestStatusReviewed + updater := NewPaymentRequestStatusUpdater(builder) + updatedPr, err := updater.UpdatePaymentRequestStatus(suite.AppContextForTest(), &paymentRequest, etag.GenerateEtag(paymentRequest.UpdatedAt)) + + suite.NoError(err) + suite.Nil(updatedPr.MoveTaskOrder.TIOAssignedID) + suite.Nil(updatedPr.MoveTaskOrder.TIOAssignedUser) + }) suite.Run("If we get a payment request pointer with a status it should update and return no error", func() { paymentRequest := factory.BuildPaymentRequest(suite.DB(), nil, nil) diff --git a/pkg/services/port_location/port_location_fetcher.go b/pkg/services/port_location/port_location_fetcher.go index fb26549934f..9d25b2d94a2 100644 --- a/pkg/services/port_location/port_location_fetcher.go +++ b/pkg/services/port_location/port_location_fetcher.go @@ -17,7 +17,7 @@ func NewPortLocationFetcher() services.PortLocationFetcher { func (p *portLocationFetcher) FetchPortLocationByPortCode(appCtx appcontext.AppContext, portCode string) (*models.PortLocation, error) { portLocation := models.PortLocation{} - err := appCtx.DB().Eager("Port").Where("is_active = TRUE").InnerJoin("ports p", "port_id = p.id").Where("p.port_code = $1", portCode).First(&portLocation) + err := appCtx.DB().Eager("Port", "UsPostRegionCity").Where("is_active = TRUE").InnerJoin("ports p", "port_id = p.id").Where("p.port_code = $1", portCode).First(&portLocation) if err != nil { return nil, apperror.NewQueryError("PortLocation", err, "") } diff --git a/pkg/services/postal_codes/postal_code_validator_test.go b/pkg/services/postal_codes/postal_code_validator_test.go index 80da05fce2d..13986827a60 100644 --- a/pkg/services/postal_codes/postal_code_validator_test.go +++ b/pkg/services/postal_codes/postal_code_validator_test.go @@ -59,29 +59,10 @@ func (suite *ValidatePostalCodeTestSuite) TestValidatePostalCode() { suite.Contains(err.Error(), "not found in postal_code_to_gblocs") }) - suite.Run("Postal code is not in zip3_distances table", func() { - testPostalCode := "30183" - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), testPostalCode, "CNNQ") - - valid, err := postalCodeValidator.ValidatePostalCode(suite.AppContextForTest(), testPostalCode) - - suite.False(valid) - suite.Error(err) - suite.IsType(&apperror.UnsupportedPostalCodeError{}, err) - suite.Contains(err.Error(), "not found in zip3_distances") - }) - suite.Run("Contract year cannot be found", func() { testPostalCode := "30183" factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), testPostalCode, "CNNQ") - testdatagen.MakeZip3Distance(suite.DB(), testdatagen.Assertions{ - Zip3Distance: models.Zip3Distance{ - FromZip3: testPostalCode[:3], - ToZip3: "993", - }, - }) - suite.buildContractYear(testdatagen.GHCTestYear - 1) valid, err := postalCodeValidator.ValidatePostalCode(suite.AppContextForTest(), testPostalCode) @@ -91,128 +72,11 @@ func (suite *ValidatePostalCodeTestSuite) TestValidatePostalCode() { suite.IsType(&apperror.UnsupportedPostalCodeError{}, err) suite.Contains(err.Error(), "could not find contract year") }) - - suite.Run("Postal code is not in re_zip3s table", func() { - testPostalCode := "30183" - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), testPostalCode, "CNNQ") - - testdatagen.MakeZip3Distance(suite.DB(), testdatagen.Assertions{ - Zip3Distance: models.Zip3Distance{ - FromZip3: testPostalCode[:3], - ToZip3: "993", - }, - }) - - suite.buildContractYear(testdatagen.GHCTestYear) - - valid, err := postalCodeValidator.ValidatePostalCode(suite.AppContextForTest(), testPostalCode) - - suite.False(valid) - suite.Error(err) - suite.IsType(&apperror.UnsupportedPostalCodeError{}, err) - suite.Contains(err.Error(), "not found in re_zip3s") - }) - - suite.Run("Postal code is not in re_zip5_rate_areas table", func() { - testPostalCode := "32102" - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), testPostalCode, "CNNQ") - - testdatagen.MakeZip3Distance(suite.DB(), testdatagen.Assertions{ - Zip3Distance: models.Zip3Distance{ - FromZip3: testPostalCode[:3], - ToZip3: "993", - }, - }) - - reContractYear := suite.buildContractYear(testdatagen.GHCTestYear) - serviceArea := testdatagen.MakeDefaultReDomesticServiceArea(suite.DB()) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ - ReZip3: models.ReZip3{ - Zip3: testPostalCode[:3], - Contract: reContractYear.Contract, - DomesticServiceArea: serviceArea, - HasMultipleRateAreas: true, - }, - }) - - valid, err := postalCodeValidator.ValidatePostalCode(suite.AppContextForTest(), testPostalCode) - - suite.False(valid) - suite.Error(err) - suite.IsType(&apperror.UnsupportedPostalCodeError{}, err) - suite.Contains(err.Error(), "not found in re_zip5_rate_areas") - }) - - suite.Run("Valid postal code for zip3 with single rate area", func() { - testPostalCode := "30813" - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), testPostalCode, "CNNQ") - - testdatagen.MakeZip3Distance(suite.DB(), testdatagen.Assertions{ - Zip3Distance: models.Zip3Distance{ - FromZip3: testPostalCode[:3], - ToZip3: "993", - }, - }) - - reContractYear := suite.buildContractYear(testdatagen.GHCTestYear) - serviceArea := testdatagen.MakeDefaultReDomesticServiceArea(suite.DB()) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ - ReZip3: models.ReZip3{ - Zip3: testPostalCode[:3], - Contract: reContractYear.Contract, - DomesticServiceArea: serviceArea, - }, - }) - - valid, err := postalCodeValidator.ValidatePostalCode(suite.AppContextForTest(), testPostalCode) - - suite.True(valid) - suite.NoError(err) - }) - - suite.Run("Valid postal code for zip3 with multiple rate areas", func() { - testPostalCode := "32102" - factory.FetchOrBuildPostalCodeToGBLOC(suite.DB(), testPostalCode, "CNNQ") - - testdatagen.MakeZip3Distance(suite.DB(), testdatagen.Assertions{ - Zip3Distance: models.Zip3Distance{ - FromZip3: testPostalCode[:3], - ToZip3: "993", - }, - }) - - reContractYear := suite.buildContractYear(testdatagen.GHCTestYear) - serviceArea := testdatagen.MakeDefaultReDomesticServiceArea(suite.DB()) - testdatagen.MakeReZip3(suite.DB(), testdatagen.Assertions{ - ReZip3: models.ReZip3{ - Zip3: testPostalCode[:3], - Contract: reContractYear.Contract, - DomesticServiceArea: serviceArea, - HasMultipleRateAreas: true, - }, - }) - - rateArea := testdatagen.FetchOrMakeReRateArea(suite.DB(), testdatagen.Assertions{ - ReContractYear: reContractYear, - }) - testdatagen.MakeReZip5RateArea(suite.DB(), testdatagen.Assertions{ - ReZip5RateArea: models.ReZip5RateArea{ - Zip5: testPostalCode, - }, - ReContract: reContractYear.Contract, - ReRateArea: rateArea, - }) - - valid, err := postalCodeValidator.ValidatePostalCode(suite.AppContextForTest(), testPostalCode) - - suite.True(valid) - suite.NoError(err) - }) } func (suite *ValidatePostalCodeTestSuite) buildContractYear(testYear int) models.ReContractYear { - reContract := testdatagen.MakeDefaultReContract(suite.DB()) - reContractYear := testdatagen.MakeReContractYear(suite.DB(), testdatagen.Assertions{ + reContract := testdatagen.FetchOrMakeReContract(suite.DB(), testdatagen.Assertions{}) + reContractYear := testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ Contract: reContract, StartDate: time.Date(testYear, time.January, 1, 0, 0, 0, 0, time.UTC), diff --git a/pkg/services/ppm_closeout/ppm_closeout_test.go b/pkg/services/ppm_closeout/ppm_closeout_test.go index 2564a06b468..c1479c140ea 100644 --- a/pkg/services/ppm_closeout/ppm_closeout_test.go +++ b/pkg/services/ppm_closeout/ppm_closeout_test.go @@ -184,53 +184,42 @@ func (suite *PPMCloseoutSuite) TestPPMShipmentCreator() { dpkService := factory.FetchReServiceByCode(suite.AppContextForTest().DB(), models.ReServiceCodeDPK) - testdatagen.FetchOrMakeReDomesticOtherPrice(suite.AppContextForTest().DB(), testdatagen.Assertions{ - ReDomesticOtherPrice: models.ReDomesticOtherPrice{ - ContractID: originDomesticServiceArea.ContractID, - Contract: originDomesticServiceArea.Contract, - ServiceID: dpkService.ID, - Service: dpkService, - IsPeakPeriod: false, - Schedule: 3, - PriceCents: 7395, + factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: originDomesticServiceArea.ContractID, + ServiceID: dpkService.ID, + IsPeakPeriod: true, + Schedule: 3, + PriceCents: 7395, + }, }, - }) - testdatagen.FetchOrMakeReDomesticOtherPrice(suite.AppContextForTest().DB(), testdatagen.Assertions{ - ReDomesticOtherPrice: models.ReDomesticOtherPrice{ - ContractID: originDomesticServiceArea.ContractID, - Contract: originDomesticServiceArea.Contract, - ServiceID: dpkService.ID, - Service: dpkService, - IsPeakPeriod: true, - Schedule: 3, - PriceCents: 7395, - }, - }) + }, nil) dupkService := factory.FetchReServiceByCode(suite.AppContextForTest().DB(), models.ReServiceCodeDUPK) - testdatagen.FetchOrMakeReDomesticOtherPrice(suite.AppContextForTest().DB(), testdatagen.Assertions{ - ReDomesticOtherPrice: models.ReDomesticOtherPrice{ - ContractID: destDomesticServiceArea.ContractID, - Contract: destDomesticServiceArea.Contract, - ServiceID: dupkService.ID, - Service: dupkService, - IsPeakPeriod: false, - Schedule: 2, - PriceCents: 597, + factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: destDomesticServiceArea.ContractID, + ServiceID: dupkService.ID, + IsPeakPeriod: false, + Schedule: 2, + PriceCents: 597, + }, }, - }) - testdatagen.FetchOrMakeReDomesticOtherPrice(suite.AppContextForTest().DB(), testdatagen.Assertions{ - ReDomesticOtherPrice: models.ReDomesticOtherPrice{ - ContractID: destDomesticServiceArea.ContractID, - Contract: destDomesticServiceArea.Contract, - ServiceID: dupkService.ID, - Service: dupkService, - IsPeakPeriod: true, - Schedule: 2, - PriceCents: 597, + }, nil) + factory.FetchOrMakeDomesticOtherPrice(suite.DB(), []factory.Customization{ + { + Model: models.ReDomesticOtherPrice{ + ContractID: destDomesticServiceArea.ContractID, + ServiceID: dupkService.ID, + IsPeakPeriod: true, + Schedule: 2, + PriceCents: 597, + }, }, - }) + }, nil) dofsitService := factory.FetchReServiceByCode(suite.AppContextForTest().DB(), models.ReServiceCodeDOFSIT) @@ -348,7 +337,7 @@ func (suite *PPMCloseoutSuite) TestPPMShipmentCreator() { appCtx := suite.AppContextForTest() mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) mockedPaymentRequestHelper.On( "FetchServiceParamsForServiceItems", @@ -404,7 +393,7 @@ func (suite *PPMCloseoutSuite) TestPPMShipmentCreator() { appCtx := suite.AppContextForTest() mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) mockedPaymentRequestHelper.On( "FetchServiceParamsForServiceItems", diff --git a/pkg/services/ppmshipment/ppm_estimator_test.go b/pkg/services/ppmshipment/ppm_estimator_test.go index 4826d396a33..71b0749a7ea 100644 --- a/pkg/services/ppmshipment/ppm_estimator_test.go +++ b/pkg/services/ppmshipment/ppm_estimator_test.go @@ -492,25 +492,25 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) linehaul, fuel, origin, dest, packing, unpacking, _, err := ppmEstimator.PriceBreakdown(suite.AppContextForTest(), &ppmShipment) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(unit.Pound(4000), *ppmShipment.EstimatedWeight) - suite.Equal(unit.Cents(37841824), linehaul) + suite.Equal(unit.Cents(43384128), linehaul) suite.Equal(unit.Cents(3004), fuel) - suite.Equal(unit.Cents(16160), origin) + suite.Equal(unit.Cents(21760), origin) suite.Equal(unit.Cents(33280), dest) - suite.Equal(unit.Cents(295800), packing) + suite.Equal(unit.Cents(290000), packing) suite.Equal(unit.Cents(23880), unpacking) total := linehaul + fuel + origin + dest + packing + unpacking - suite.Equal(unit.Cents(38213948), total) + suite.Equal(unit.Cents(43756052), total) }) suite.Run("Estimated Incentive", func() { @@ -537,18 +537,18 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmEstimate, _, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.PickupAddress.PostalCode, newPPM.PickupAddress.PostalCode) suite.Equal(unit.Pound(5000), *newPPM.EstimatedWeight) - suite.Equal(unit.Cents(70064364), *ppmEstimate) + suite.Equal(unit.Cents(80249474), *ppmEstimate) }) suite.Run("Estimated Incentive - Success using db authorize weight and not estimated incentive", func() { @@ -574,13 +574,13 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmEstimate, _, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.PickupAddress.PostalCode, newPPM.PickupAddress.PostalCode) @@ -608,18 +608,18 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmEstimate, _, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.PickupAddress.PostalCode, newPPM.PickupAddress.PostalCode) suite.Equal(unit.Pound(5000), *newPPM.EstimatedWeight) - suite.Equal(unit.Cents(70064364), *ppmEstimate) + suite.Equal(unit.Cents(80249474), *ppmEstimate) }) suite.Run("Estimated Incentive - Success when old Estimated Incentive is zero", func() { @@ -642,18 +642,18 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmEstimate, _, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.PickupAddress.PostalCode, newPPM.PickupAddress.PostalCode) suite.Equal(unit.Pound(5000), *newPPM.EstimatedWeight) - suite.Equal(unit.Cents(70064364), *ppmEstimate) + suite.Equal(unit.Cents(80249474), *ppmEstimate) }) suite.Run("Estimated Incentive - Success - clears advance and advance requested values", func() { @@ -678,13 +678,13 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil).Once() + "50309", "30813", false, false).Return(2294, nil).Once() ppmEstimate, _, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) suite.Nil(newPPM.HasRequestedAdvance) suite.Nil(newPPM.AdvanceAmountRequested) - suite.Equal(unit.Cents(38213948), *ppmEstimate) + suite.Equal(unit.Cents(43754569), *ppmEstimate) }) suite.Run("Estimated Incentive - does not change when required fields are the same", func() { @@ -764,16 +764,16 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { mock.AnythingOfType("[]models.MTOServiceItem")).Return(serviceParams, nil) mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) maxIncentive, err := ppmEstimator.MaxIncentive(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) - suite.Equal(unit.Cents(112102682), *maxIncentive) + suite.Equal(unit.Cents(128398858), *maxIncentive) }) suite.Run("Max Incentive - Success - is skipped when Estimated Weight is missing", func() { @@ -825,13 +825,13 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmFinal, err := ppmEstimator.FinalIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.ActualPickupPostalCode, newPPM.ActualPickupPostalCode) @@ -839,7 +839,7 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { originalWeight, newWeight := SumWeightTickets(oldPPMShipment, newPPM) suite.Equal(unit.Pound(5000), originalWeight) suite.Equal(unit.Pound(5000), newWeight) - suite.Equal(unit.Cents(70064364), *ppmFinal) + suite.Equal(unit.Cents(80249474), *ppmFinal) }) suite.Run("Final Incentive - Success with allowable weight less than net weight", func() { @@ -876,12 +876,12 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { mock.AnythingOfType("[]models.MTOServiceItem")).Return(serviceParams, nil) // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles - mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "50309", "30813").Return(2294, nil) + mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "50309", "30813", false, false).Return(2294, nil) ppmFinal, err := ppmEstimator.FinalIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) - mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "50309", "30813") + mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.ActualPickupPostalCode, newPPM.ActualPickupPostalCode) @@ -889,7 +889,7 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { originalWeight, newWeight := SumWeightTickets(oldPPMShipment, newPPM) suite.Equal(unit.Pound(5000), originalWeight) suite.Equal(unit.Pound(5000), newWeight) - suite.Equal(unit.Cents(70064364), *ppmFinal) + suite.Equal(unit.Cents(80249474), *ppmFinal) // Repeat the above shipment with an allowable weight less than the net weight weightOverride = unit.Pound(19500) @@ -927,12 +927,12 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmFinalIncentiveLimitedByAllowableWeight, err := ppmEstimator.FinalIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) - mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "50309", "30813") + mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.ActualPickupPostalCode, newPPM.ActualPickupPostalCode) @@ -982,13 +982,13 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmFinal, err := ppmEstimator.FinalIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) suite.Equal(oldPPMShipment.ActualPickupPostalCode, newPPM.ActualPickupPostalCode) @@ -996,7 +996,7 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { originalWeight, newWeight := SumWeightTickets(oldPPMShipment, newPPM) suite.Equal(unit.Pound(4000), originalWeight) suite.Equal(unit.Pound(5000), newWeight) - suite.Equal(unit.Cents(70064364), *ppmFinal) + suite.Equal(unit.Cents(80249474), *ppmFinal) }) suite.Run("Final Incentive - Success with disregarding rejected weight tickets", func() { @@ -1039,13 +1039,13 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmFinal, err := ppmEstimator.FinalIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) originalWeight, newWeight := SumWeightTickets(oldPPMShipment, newPPM) @@ -1101,19 +1101,19 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmFinal, err := ppmEstimator.FinalIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) originalWeight, newWeight := SumWeightTickets(oldPPMShipment, newPPM) suite.Equal(unit.Pound(8000), originalWeight) suite.Equal(unit.Pound(4000), newWeight) - suite.Equal(unit.Cents(38213948), *ppmFinal) + suite.Equal(unit.Cents(43756052), *ppmFinal) suite.NotEqual(oldPPMShipment.FinalIncentive, *ppmFinal) }) @@ -1171,19 +1171,19 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { // DTOD distance is going to be less than the HHG Rand McNally distance of 2361 miles mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) ppmFinal, err := ppmEstimator.FinalIncentiveWithDefaultChecks(suite.AppContextForTest(), oldPPMShipment, &newPPM) suite.NilOrNoVerrs(err) mockedPlanner.AssertCalled(suite.T(), "ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813") + "50309", "30813", false, false) mockedPaymentRequestHelper.AssertCalled(suite.T(), "FetchServiceParamsForServiceItems", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("[]models.MTOServiceItem")) originalWeight, newWeight := SumWeightTickets(oldPPMShipment, newPPM) suite.Equal(unit.Pound(8000), originalWeight) suite.Equal(unit.Pound(3000), newWeight) - suite.Equal(unit.Cents(28661212), *ppmFinal) + suite.Equal(unit.Cents(32817790), *ppmFinal) suite.NotEqual(oldPPMShipment.FinalIncentive, *ppmFinal) }) @@ -1666,13 +1666,13 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { }, nil) mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) _, estimatedSITCost, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), models.PPMShipment{}, &shipmentOriginSIT) suite.NoError(err) suite.NotNil(estimatedSITCost) - suite.Equal(50660, estimatedSITCost.Int()) + suite.Equal(56660, estimatedSITCost.Int()) }) suite.Run("Success - Destination First Day and Additional Day SIT", func() { @@ -1728,7 +1728,7 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { }, nil) mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) _, estimatedSITCost, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), models.PPMShipment{}, &shipmentDestinationSIT) @@ -1790,7 +1790,7 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { }, }, nil) mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30813").Return(2294, nil) + "50309", "30813", false, false).Return(2294, nil) _, estimatedSITCost, err := ppmEstimator.EstimateIncentiveWithDefaultChecks(suite.AppContextForTest(), models.PPMShipment{}, &shipmentOriginSIT) @@ -1980,10 +1980,10 @@ func (suite *PPMShipmentSuite) TestPPMEstimator() { shipmentDifferentDeparture.ExpectedDepartureDate = originalShipment.ExpectedDepartureDate.Add(time.Hour * 24 * 70) mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "90211", "30813").Return(2294, nil) + "90211", "30813", false, false).Return(2294, nil) mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "50309", "30814").Return(2290, nil) + "50309", "30814", false, false).Return(2290, nil) // SIT specific field changes will likely cause the price to change, although adjusting dates may not change // the total number of days in SIT. diff --git a/pkg/services/ppmshipment/ppm_shipment_updater_test.go b/pkg/services/ppmshipment/ppm_shipment_updater_test.go index 8d21e74baf6..607491af64c 100644 --- a/pkg/services/ppmshipment/ppm_shipment_updater_test.go +++ b/pkg/services/ppmshipment/ppm_shipment_updater_test.go @@ -1504,7 +1504,7 @@ func (suite *PPMShipmentSuite) TestUpdatePPMShipment() { originalPPM.DestinationAddress = destinationAddress mockedPlanner := &routemocks.Planner{} mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "90210", "30813").Return(2294, nil) + "90210", "30813", false, false).Return(2294, nil) updatedPPM, err := subtestData.ppmShipmentUpdater.UpdatePPMShipmentSITEstimatedCost(appCtx, &originalPPM) @@ -1560,7 +1560,7 @@ func (suite *PPMShipmentSuite) TestUpdatePPMShipment() { originalPPM.DestinationAddress = destinationAddress mockedPlanner := &routemocks.Planner{} mockedPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "90210", "30813").Return(2294, nil) + "90210", "30813", false, false).Return(2294, nil) updatedPPM, err := subtestData.ppmShipmentUpdater.UpdatePPMShipmentSITEstimatedCost(appCtx, &originalPPM) diff --git a/pkg/services/reweigh/reweigh_updater_test.go b/pkg/services/reweigh/reweigh_updater_test.go index ad2ab0da981..77805ecf4ac 100644 --- a/pkg/services/reweigh/reweigh_updater_test.go +++ b/pkg/services/reweigh/reweigh_updater_test.go @@ -31,6 +31,8 @@ func (suite *ReweighSuite) TestReweighUpdater() { mockPlanner.On("ZipTransitDistance", recalculateTestPickupZip, recalculateTestDestinationZip, + false, + false, ).Return(recalculateTestZip3Distance, nil) // Get shipment payment request recalculator service diff --git a/pkg/services/shipment_address_update/shipment_address_update_requester.go b/pkg/services/shipment_address_update/shipment_address_update_requester.go index d43d406546a..d4be7910def 100644 --- a/pkg/services/shipment_address_update/shipment_address_update_requester.go +++ b/pkg/services/shipment_address_update/shipment_address_update_requester.go @@ -41,7 +41,7 @@ func NewShipmentAddressUpdateRequester(planner route.Planner, addressCreator ser func (f *shipmentAddressUpdateRequester) isAddressChangeDistanceOver50(appCtx appcontext.AppContext, addressUpdate models.ShipmentAddressUpdate) (bool, error) { //We calculate and set the distance between the old and new address - distance, err := f.planner.ZipTransitDistance(appCtx, addressUpdate.OriginalAddress.PostalCode, addressUpdate.NewAddress.PostalCode) + distance, err := f.planner.ZipTransitDistance(appCtx, addressUpdate.OriginalAddress.PostalCode, addressUpdate.NewAddress.PostalCode, false, false) if err != nil { return false, err } @@ -92,11 +92,11 @@ func (f *shipmentAddressUpdateRequester) doesDeliveryAddressUpdateChangeMileageB return false, nil } - previousDistance, err := f.planner.ZipTransitDistance(appCtx, originalPickupAddress.PostalCode, originalDeliveryAddress.PostalCode) + previousDistance, err := f.planner.ZipTransitDistance(appCtx, originalPickupAddress.PostalCode, originalDeliveryAddress.PostalCode, false, false) if err != nil { return false, err } - newDistance, err := f.planner.ZipTransitDistance(appCtx, originalPickupAddress.PostalCode, newDeliveryAddress.PostalCode) + newDistance, err := f.planner.ZipTransitDistance(appCtx, originalPickupAddress.PostalCode, newDeliveryAddress.PostalCode, false, false) if err != nil { return false, err } @@ -308,14 +308,14 @@ func (f *shipmentAddressUpdateRequester) RequestShipmentDeliveryAddressUpdate(ap if addressUpdate.NewSitDistanceBetween != nil { distanceBetweenOld = *addressUpdate.NewSitDistanceBetween } else { - distanceBetweenOld, err = f.planner.ZipTransitDistance(appCtx, addressUpdate.SitOriginalAddress.PostalCode, addressUpdate.OriginalAddress.PostalCode) + distanceBetweenOld, err = f.planner.ZipTransitDistance(appCtx, addressUpdate.SitOriginalAddress.PostalCode, addressUpdate.OriginalAddress.PostalCode, false, false) } if err != nil { return nil, err } // calculating distance between the new address update & the SIT - distanceBetweenNew, err = f.planner.ZipTransitDistance(appCtx, addressUpdate.SitOriginalAddress.PostalCode, addressUpdate.NewAddress.PostalCode) + distanceBetweenNew, err = f.planner.ZipTransitDistance(appCtx, addressUpdate.SitOriginalAddress.PostalCode, addressUpdate.NewAddress.PostalCode, false, false) if err != nil { return nil, err } @@ -500,7 +500,7 @@ func (f *shipmentAddressUpdateRequester) ReviewShipmentAddressChange(appCtx appc shipmentHasApprovedDestSIT := f.doesShipmentContainApprovedDestinationSIT(shipmentDetails) for i, serviceItem := range shipmentDetails.MTOServiceItems { - if shipment.PrimeEstimatedWeight != nil || shipment.PrimeActualWeight != nil { + if shipment.MarketCode != models.MarketCodeInternational && shipment.PrimeEstimatedWeight != nil || shipment.MarketCode != models.MarketCodeInternational && shipment.PrimeActualWeight != nil { var updatedServiceItem *models.MTOServiceItem if serviceItem.ReService.Code == models.ReServiceCodeDDP || serviceItem.ReService.Code == models.ReServiceCodeDUPK { updatedServiceItem, err = serviceItemUpdater.UpdateMTOServiceItemPricingEstimate(appCtx, &serviceItem, shipment, etag.GenerateEtag(serviceItem.UpdatedAt)) @@ -597,7 +597,6 @@ func (f *shipmentAddressUpdateRequester) ReviewShipmentAddressChange(appCtx appc } } } - if tooApprovalStatus == models.ShipmentAddressUpdateStatusRejected { addressUpdate.Status = models.ShipmentAddressUpdateStatusRejected addressUpdate.OfficeRemarks = &tooRemarks @@ -635,6 +634,42 @@ func (f *shipmentAddressUpdateRequester) ReviewShipmentAddressChange(appCtx appc return err } + // if the shipment has an estimated weight, we need to update the service item pricing since we know the distances have changed + // this only applies to international shipments that the TOO is approving the address change for + if shipment.PrimeEstimatedWeight != nil && + shipment.MarketCode == models.MarketCodeInternational && + tooApprovalStatus == models.ShipmentAddressUpdateStatusApproved { + portZip, portType, err := models.GetPortLocationInfoForShipment(appCtx.DB(), shipment.ID) + if err != nil { + return err + } + // if we don't have the port data, then we won't worry about pricing + if portZip != nil && portType != nil { + var pickupZip string + var destZip string + // if the port type is POEFSC this means the shipment is CONUS -> OCONUS (pickup -> port) + // if the port type is PODFSC this means the shipment is OCONUS -> CONUS (port -> destination) + if *portType == models.ReServiceCodePOEFSC.String() { + pickupZip = shipment.PickupAddress.PostalCode + destZip = *portZip + } else if *portType == models.ReServiceCodePODFSC.String() { + pickupZip = *portZip + destZip = shipment.DestinationAddress.PostalCode + } + // we need to get the mileage from DTOD first, the db proc will consume that + mileage, err := f.planner.ZipTransitDistance(appCtx, pickupZip, destZip, true, true) + if err != nil { + return err + } + + // update the service item pricing if relevant fields have changed + err = models.UpdateEstimatedPricingForShipmentBasicServiceItems(appCtx.DB(), &shipment, mileage) + if err != nil { + return err + } + } + } + _, err = f.moveRouter.ApproveOrRequestApproval(appCtx, shipment.MoveTaskOrder) if err != nil { return err diff --git a/pkg/services/shipment_address_update/shipment_address_update_requester_test.go b/pkg/services/shipment_address_update/shipment_address_update_requester_test.go index b2edfc521dd..dcf580670d8 100644 --- a/pkg/services/shipment_address_update/shipment_address_update_requester_test.go +++ b/pkg/services/shipment_address_update/shipment_address_update_requester_test.go @@ -2,6 +2,7 @@ package shipmentaddressupdate import ( "fmt" + "slices" "time" "github.com/stretchr/testify/mock" @@ -106,11 +107,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", + false, + false, ).Return(2500, nil).Twice() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "94535", + false, + false, ).Return(2500, nil).Once() move := setupTestData() shipment := factory.BuildMTOShipmentWithMove(&move, suite.DB(), nil, nil) @@ -159,8 +164,10 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres suite.Run("Failed distance calculation should error", func() { mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - mock.AnythingOfType("90210"), - mock.AnythingOfType("94535"), + mock.AnythingOfType("string"), + mock.AnythingOfType("string"), + false, + false, ).Return(0, fmt.Errorf("error calculating distance 2")).Once() testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ @@ -177,6 +184,28 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres State: "CA", PostalCode: "90210", } + // building DDASIT service item to get dest SIT checks + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + SITDestinationOriginalAddressID: shipment.DestinationAddressID, + }, + }, + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeDDASIT, + }, + }, + }, nil) update, err := addressUpdateRequester.RequestShipmentDeliveryAddressUpdate(suite.AppContextForTest(), shipment.ID, newAddress, "we really need to change the address", etag.GenerateEtag(shipment.UpdatedAt)) suite.Error(err) suite.Nil(update) @@ -278,11 +307,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", + false, + false, ).Return(2500, nil).Times(4) mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "94535", + false, + false, ).Return(2500, nil).Twice() update, err := addressUpdateRequester.RequestShipmentDeliveryAddressUpdate(suite.AppContextForTest(), shipment.ID, newAddress, "we really need to change the address", etag.GenerateEtag(shipment.UpdatedAt)) @@ -308,11 +341,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres mock.AnythingOfType("*appcontext.appContext"), "89523", "89503", + false, + false, ).Return(2500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "89523", "90210", + false, + false, ).Return(2500, nil).Once() newAddress := models.Address{ StreetAddress1: "123 Any St", @@ -353,11 +390,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres mock.AnythingOfType("*appcontext.appContext"), "89523", "89503", + false, + false, ).Return(2500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "89523", "90210", + false, + false, ).Return(2500, nil).Once() move := setupTestData() shipment := factory.BuildMTOShipmentWithMove(&move, suite.DB(), []factory.Customization{ @@ -398,11 +439,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", + false, + false, ).Return(0, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "90210", "89503", + false, + false, ).Return(200, nil).Once() testdatagen.MakeReContractYear(suite.DB(), testdatagen.Assertions{ ReContractYear: models.ReContractYear{ @@ -525,11 +570,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("string"), "87108", + false, + false, ).Return(500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.AnythingOfType("string"), "87053", + false, + false, ).Return(501, nil).Once() suite.NotEmpty(move.MTOShipments) update, err := addressUpdateRequester.RequestShipmentDeliveryAddressUpdate(suite.AppContextForTest(), shipment.ID, newAddress, "we really need to change the address", etag.GenerateEtag(shipment.UpdatedAt)) @@ -583,16 +632,22 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestCreateApprovedShipmentAddres mock.AnythingOfType("*appcontext.appContext"), "94535", "94535", + false, + false, ).Return(0, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94523", "90210", + false, + false, ).Return(500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "90210", + false, + false, ).Return(501, nil).Once() // request the update @@ -618,6 +673,8 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) addressUpdateRequester := NewShipmentAddressUpdateRequester(mockPlanner, addressCreator, moveRouter) @@ -824,6 +881,242 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp suite.Equal(updatedShipment.MarketCode, models.MarketCodeInternational) }) + + suite.Run("Successfully update estiamted pricing on service items when address update is approved by TOO", func() { + ghcDomesticTransitTime := models.GHCDomesticTransitTime{ + MaxDaysTransitTime: 12, + WeightLbsLower: 0, + WeightLbsUpper: 10000, + DistanceMilesLower: 0, + DistanceMilesUpper: 10000, + } + _, _ = suite.DB().ValidateAndCreate(&ghcDomesticTransitTime) + + testdatagen.FetchOrMakeReContractYear(suite.DB(), testdatagen.Assertions{ + ReContractYear: models.ReContractYear{ + StartDate: time.Now().Add(-24 * time.Hour), + EndDate: time.Now().Add(24 * time.Hour), + }, + }) + + move := factory.BuildAvailableToPrimeMove(suite.DB(), nil, nil) + pickupUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "50314") + suite.FatalNoError(err) + pickupAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + StreetAddress1: "Tester Address", + City: "Des Moines", + State: "IA", + PostalCode: "50314", + IsOconus: models.BoolPointer(false), + UsPostRegionCityID: &pickupUSPRC.ID, + }, + }, + }, nil) + + destUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99505") + suite.FatalNoError(err) + destinationAddress := factory.BuildAddress(suite.DB(), []factory.Customization{ + { + Model: models.Address{ + StreetAddress1: "JBER", + City: "Anchorage", + State: "AK", + PostalCode: "99505", + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &destUSPRC.ID, + }, + }, + }, nil) + + now := time.Now() + shipment := factory.BuildMTOShipment(suite.DB(), []factory.Customization{ + { + Model: models.MTOShipment{ + Status: models.MTOShipmentStatusApproved, + PrimeEstimatedWeight: models.PoundPointer(4000), + PickupAddressID: &pickupAddress.ID, + DestinationAddressID: &destinationAddress.ID, + ScheduledPickupDate: &now, + RequestedPickupDate: &now, + MarketCode: models.MarketCodeInternational, + }, + }, + { + Model: move, + LinkOnly: true, + }, + }, nil) + + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeISLH, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: models.CentPointer(1000), + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeIHPK, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: models.CentPointer(1000), + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodeIHUPK, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: models.CentPointer(1000), + }, + }, + }, nil) + // POEFSC needs a port location + portLocation := factory.FetchPortLocation(suite.DB(), []factory.Customization{ + { + Model: models.Port{ + PortCode: "PDX", + }, + }, + }, nil) + factory.BuildMTOServiceItem(suite.DB(), []factory.Customization{ + { + Model: move, + LinkOnly: true, + }, + { + Model: shipment, + LinkOnly: true, + }, + { + Model: models.ReService{ + Code: models.ReServiceCodePOEFSC, + }, + }, + { + Model: models.MTOServiceItem{ + Status: models.MTOServiceItemStatusApproved, + PricingEstimate: models.CentPointer(1000), + }, + }, + { + Model: portLocation, + LinkOnly: true, + Type: &factory.PortLocations.PortOfEmbarkation, + }, + }, nil) + + mockPlanner.On("ZipTransitDistance", + mock.AnythingOfType("*appcontext.appContext"), + mock.Anything, + mock.Anything, + false, + false, + ).Return(300, nil) + + mockPlanner.On("ZipTransitDistance", + mock.AnythingOfType("*appcontext.appContext"), + mock.Anything, + mock.Anything, + true, + true, + ).Return(300, nil) + + newDestUSPRC, err := models.FindByZipCode(suite.AppContextForTest().DB(), "99703") + suite.FatalNoError(err) + factory.BuildShipmentAddressUpdate(suite.DB(), []factory.Customization{ + { + Model: shipment, + LinkOnly: true, + }, + { + Model: move, + LinkOnly: true, + }, + { + Model: models.Address{ + StreetAddress1: "Cold Ave.", + City: "Fairbanks", + State: "AK", + PostalCode: "99703", + IsOconus: models.BoolPointer(true), + UsPostRegionCityID: &newDestUSPRC.ID, + }, + Type: &factory.Addresses.NewAddress, + }, + }, []factory.Trait{factory.GetTraitShipmentAddressUpdateRequested}) + + officeRemarks := "Changing to another OCONUS address" + update, err := addressUpdateRequester.ReviewShipmentAddressChange(suite.AppContextForTest(), shipment.ID, "APPROVED", officeRemarks) + + suite.NoError(err) + suite.NotNil(update) + suite.Equal(models.ShipmentAddressUpdateStatusApproved, update.Status) + + // checking out the service items + var serviceItems []models.MTOServiceItem + err = suite.AppContextForTest().DB().EagerPreload("ReService").Where("mto_shipment_id = ?", shipment.ID).Order("created_at asc").All(&serviceItems) + suite.NoError(err) + + expectedReserviceCodes := []models.ReServiceCode{ + models.ReServiceCodePOEFSC, + models.ReServiceCodeISLH, + models.ReServiceCodeIHPK, + models.ReServiceCodeIHUPK, + } + + initialPrice := 1000 + suite.Equal(4, len(serviceItems)) + for i := 0; i < len(serviceItems); i++ { + actualReServiceCode := serviceItems[i].ReService.Code + suite.True(slices.Contains(expectedReserviceCodes, actualReServiceCode)) + // pricing should not be nil + suite.NotNil(serviceItems[i].PricingEstimate) + // initially we set them all to 1000 and they should all be changed + suite.NotEqual(serviceItems[i].PricingEstimate, &initialPrice) + } + }) } func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUpdateRequestChangedPricing() { @@ -880,11 +1173,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp mock.AnythingOfType("*appcontext.appContext"), "89523", "89503", + false, + false, ).Return(2500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "89523", "90210", + false, + false, ).Return(2500, nil).Once() move := setupTestData() @@ -949,11 +1246,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp mock.AnythingOfType("*appcontext.appContext"), "89523", "89503", + false, + false, ).Return(2500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "89523", "90210", + false, + false, ).Return(2500, nil).Once() move := setupTestData() @@ -1033,11 +1334,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", + false, + false, ).Return(2500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "94535", + false, + false, ).Return(2500, nil).Once() addressChange, _ := addressUpdateRequester.RequestShipmentDeliveryAddressUpdate(suite.AppContextForTest(), shipment.ID, newAddress, "we really need to change the address", etag.GenerateEtag(shipment.UpdatedAt)) @@ -1059,11 +1364,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp mock.AnythingOfType("*appcontext.appContext"), "89523", "89503", + false, + false, ).Return(2500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "89523", "90210", + false, + false, ).Return(2500, nil).Once() move := setupTestData() @@ -1123,11 +1432,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp mock.AnythingOfType("*appcontext.appContext"), "89523", "89503", + false, + false, ).Return(2500, nil).Once() mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "89523", "90210", + false, + false, ).Return(2500, nil).Once() newAddress := models.Address{ StreetAddress1: "123 Any St", @@ -1180,12 +1493,15 @@ func (suite *ShipmentAddressUpdateServiceSuite) TestTOOApprovedShipmentAddressUp suite.Equal(autoRejectionRemark, *shorthaul[0].RejectionReason) suite.Equal(linehaul[0].Status, models.MTOServiceItemStatusApproved) }) + suite.Run("Successfully update shipment and its service items without error", func() { mockPlanner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "94535", - ).Return(30, nil).Once() + false, + false, + ).Return(30, nil) move := setupTestData() shipment := factory.BuildMTOShipmentWithMove(&move, suite.DB(), nil, nil) diff --git a/pkg/services/sit_extension/sit_extension_denier.go b/pkg/services/sit_extension/sit_extension_denier.go index 9513609196c..56724c27c04 100644 --- a/pkg/services/sit_extension/sit_extension_denier.go +++ b/pkg/services/sit_extension/sit_extension_denier.go @@ -34,6 +34,8 @@ func NewSITExtensionDenier(moveRouter services.MoveRouter) services.SITExtension mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) return &sitExtensionDenier{moveRouter, mtoserviceitem.NewMTOServiceItemUpdater(planner, query.NewQueryBuilder(), moveRouter, mtoshipment.NewMTOShipmentFetcher(), address.NewAddressCreator(), ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portlocation.NewPortLocationFetcher())} } diff --git a/pkg/testdatagen/make_pricing_data.go b/pkg/testdatagen/make_pricing_data.go index 02a855a8c93..61ebfb7231d 100644 --- a/pkg/testdatagen/make_pricing_data.go +++ b/pkg/testdatagen/make_pricing_data.go @@ -20,7 +20,7 @@ func SetupServiceAreaRateArea(db *pop.Connection, assertions Assertions) (models mergeModels(&contractYear, assertions.ReContractYear) - contractYear = MakeReContractYear(db, Assertions{ReContractYear: contractYear}) + contractYear = FetchOrMakeReContractYear(db, Assertions{ReContractYear: contractYear}) serviceArea := models.ReDomesticServiceArea{ Contract: contractYear.Contract, @@ -29,7 +29,7 @@ func SetupServiceAreaRateArea(db *pop.Connection, assertions Assertions) (models mergeModels(&serviceArea, assertions.ReDomesticServiceArea) - serviceArea = MakeReDomesticServiceArea(db, + serviceArea = FetchOrMakeReDomesticServiceArea(db, Assertions{ ReDomesticServiceArea: serviceArea, }) @@ -64,7 +64,7 @@ func SetupServiceAreaRateArea(db *pop.Connection, assertions Assertions) (models mergeModels(&reZip3, assertions.ReZip3) - reZip3 = MakeReZip3(db, Assertions{ + reZip3 = FetchOrMakeReZip3(db, Assertions{ ReZip3: reZip3, }) diff --git a/pkg/testdatagen/make_re_domestic_service_area.go b/pkg/testdatagen/make_re_domestic_service_area.go index 411dee468ca..5f57b4cd3dc 100644 --- a/pkg/testdatagen/make_re_domestic_service_area.go +++ b/pkg/testdatagen/make_re_domestic_service_area.go @@ -54,10 +54,16 @@ func FetchOrMakeReDomesticServiceArea(db *pop.Connection, assertions Assertions) } var reDomesticServiceArea models.ReDomesticServiceArea - err := db.Where("re_domestic_service_areas.contract_id = ? AND re_domestic_service_areas.service_area = ?", contractID, assertions.ReDomesticServiceArea.ServiceArea).First(&reDomesticServiceArea) - - if err != nil && err != sql.ErrNoRows { - log.Panic(err) + if assertions.ReDomesticServiceArea.ServiceArea != "" { + err := db.Where("re_domestic_service_areas.service_area = ?", assertions.ReDomesticServiceArea.ServiceArea).First(&reDomesticServiceArea) + if err != nil && err != sql.ErrNoRows { + log.Panic(err) + } + } else { + err := db.Where("re_domestic_service_areas.contract_id = ? AND re_domestic_service_areas.service_area = ?", contractID, assertions.ReDomesticServiceArea.ServiceArea).First(&reDomesticServiceArea) + if err != nil && err != sql.ErrNoRows { + log.Panic(err) + } } if reDomesticServiceArea.ID == uuid.Nil { diff --git a/pkg/testdatagen/scenario/shared.go b/pkg/testdatagen/scenario/shared.go index 9886bc24519..eee981b5ea1 100644 --- a/pkg/testdatagen/scenario/shared.go +++ b/pkg/testdatagen/scenario/shared.go @@ -4211,6 +4211,8 @@ func createHHGWithOriginSITServiceItems( mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) queryBuilder := query.NewQueryBuilder() @@ -4238,7 +4240,7 @@ func createHHGWithOriginSITServiceItems( // called for zip 3 domestic linehaul service item planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "90210", "30813").Return(2361, nil) + "90210", "30813", false, false).Return(2361, nil) shipmentUpdater := mtoshipment.NewMTOShipmentStatusUpdater(queryBuilder, serviceItemCreator, planner) _, updateErr := shipmentUpdater.UpdateMTOShipmentStatus(appCtx, shipment.ID, models.MTOShipmentStatusApproved, nil, nil, etag.GenerateEtag(shipment.UpdatedAt)) @@ -4289,6 +4291,8 @@ func createHHGWithOriginSITServiceItems( mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) serviceItemUpdator := mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) @@ -4480,6 +4484,8 @@ func createHHGWithDestinationSITServiceItems(appCtx appcontext.AppContext, prime mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) serviceItemCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -4507,7 +4513,7 @@ func createHHGWithDestinationSITServiceItems(appCtx appcontext.AppContext, prime // called for zip 3 domestic linehaul service item planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "90210", "30813").Return(2361, nil) + "90210", "30813", false, false).Return(2361, nil) shipmentUpdater := mtoshipment.NewMTOShipmentStatusUpdater(queryBuilder, serviceItemCreator, planner) _, updateErr := shipmentUpdater.UpdateMTOShipmentStatus(appCtx, shipment.ID, models.MTOShipmentStatusApproved, nil, nil, etag.GenerateEtag(shipment.UpdatedAt)) @@ -4553,6 +4559,8 @@ func createHHGWithDestinationSITServiceItems(appCtx appcontext.AppContext, prime mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) serviceItemUpdator := mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) @@ -4889,7 +4897,7 @@ func createHHGWithPaymentServiceItems( queryBuilder := query.NewQueryBuilder() planner := &routemocks.Planner{} - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything).Return(123, nil).Once() + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, false, false).Return(123, nil).Once() serviceItemCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -4914,33 +4922,33 @@ func createHHGWithPaymentServiceItems( logger.Fatal("Error approving move") } // called using the addresses with origin zip of 90210 and destination zip of 94535 - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything).Return(348, nil).Times(2) + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, false, false).Return(348, nil).Times(2) // called using the addresses with origin zip of 90210 and destination zip of 90211 - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything).Return(3, nil).Times(5) + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, false, false).Return(3, nil).Times(5) // called for zip 3 domestic linehaul service item planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), - "94535", "94535").Return(348, nil).Times(2) + "94535", "94535", false).Return(348, nil).Times(2) // called for zip 5 domestic linehaul service item - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "94535").Return(348, nil).Once() + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "94535", false, false).Return(348, nil).Times(2) // called for domestic shorthaul service item planner.On("Zip5TransitDistance", mock.AnythingOfType("*appcontext.appContext"), "90210", "90211").Return(3, nil).Times(7) // called for domestic shorthaul service item - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "90210", "90211").Return(348, nil).Times(10) + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "90210", "90211", false, false).Return(348, nil).Times(10) // called for domestic origin SIT pickup service item - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "90210", "94535").Return(348, nil).Once() + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "90210", "94535", false, false).Return(348, nil).Once() // called for domestic destination SIT delivery service item - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "90210").Return(348, nil).Times(2) + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), "94535", "90210", false, false).Return(348, nil).Times(2) // called for DLH, DSH, FSC service item estimated price calculations - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything).Return(400, nil).Times(3) + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, false, false).Return(400, nil).Times(3) for _, shipment := range []models.MTOShipment{longhaulShipment, shorthaulShipment, shipmentWithOriginalWeight, shipmentWithOriginalAndReweighWeight, shipmentWithOriginalAndReweighWeightReweihBolded, shipmentWithOriginalReweighAndAdjustedWeight, shipmentWithOriginalAndAdjustedWeight} { shipmentUpdater := mtoshipment.NewMTOShipmentStatusUpdater(queryBuilder, serviceItemCreator, planner) @@ -5035,6 +5043,8 @@ func createHHGWithPaymentServiceItems( mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(400, nil) serviceItemUpdater := mtoserviceitem.NewMTOServiceItemUpdater(planner, queryBuilder, moveRouter, shipmentFetcher, addressCreator, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer(), ghcrateengine.NewDomesticDestinationSITDeliveryPricer(), ghcrateengine.NewDomesticOriginSITFuelSurchargePricer(), portLocationFetcher) @@ -5522,6 +5532,8 @@ func createHHGMoveWithPaymentRequest(appCtx appcontext.AppContext, userUploader mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, + false, + false, ).Return(910, nil) paymentRequestCreator := paymentrequest.NewPaymentRequestCreator( diff --git a/pkg/testdatagen/testharness/make_move.go b/pkg/testdatagen/testharness/make_move.go index 50acd913415..aae7c83ecfa 100644 --- a/pkg/testdatagen/testharness/make_move.go +++ b/pkg/testdatagen/testharness/make_move.go @@ -3823,7 +3823,7 @@ func MakeHHGMoveWithApprovedNTSShipmentsForTOO(appCtx appcontext.AppContext) mod planner := &routemocks.Planner{} // mock any and all planner calls - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything).Return(2361, nil) + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, false, false).Return(2361, nil) queryBuilder := query.NewQueryBuilder() serviceItemCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) @@ -3927,7 +3927,7 @@ func MakeHHGMoveWithApprovedNTSRShipmentsForTOO(appCtx appcontext.AppContext) mo planner := &routemocks.Planner{} // mock any and all planner calls - planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything).Return(2361, nil) + planner.On("ZipTransitDistance", mock.AnythingOfType("*appcontext.appContext"), mock.Anything, mock.Anything, false, false).Return(2361, nil) queryBuilder := query.NewQueryBuilder() serviceItemCreator := mtoserviceitem.NewMTOServiceItemCreator(planner, queryBuilder, moveRouter, ghcrateengine.NewDomesticUnpackPricer(), ghcrateengine.NewDomesticPackPricer(), ghcrateengine.NewDomesticLinehaulPricer(), ghcrateengine.NewDomesticShorthaulPricer(), ghcrateengine.NewDomesticOriginPricer(), ghcrateengine.NewDomesticDestinationPricer(), ghcrateengine.NewFuelSurchargePricer()) diff --git a/scripts/db-truncate b/scripts/db-truncate index 29c54a8f616..13835108703 100755 --- a/scripts/db-truncate +++ b/scripts/db-truncate @@ -9,7 +9,13 @@ DO \$\$ DECLARE r RECORD; BEGIN FOR r IN (SELECT tablename FROM pg_tables WHERE schemaname = current_schema() - AND tablename NOT IN ('us_post_region_cities', 're_countries', 're_states', 're_cities', 're_us_post_regions', 're_oconus_rate_areas', 're_rate_areas', 're_intl_transit_times', 'ub_allowances','re_services','re_service_items', 'ports', 'port_locations', 're_fsc_multipliers')) LOOP + AND tablename NOT IN ('us_post_region_cities', 're_countries', 're_states', 're_cities', + 're_us_post_regions', 're_oconus_rate_areas', 're_rate_areas', + 're_intl_transit_times', 'ub_allowances', 're_services', 're_service_items', + 'ports','port_locations', 're_fsc_multipliers', 'ghc_diesel_fuel_prices', + 're_zip3s','zip3_distances', 're_contracts', 're_domestic_service_areas', + 're_intl_prices', 're_intl_other_prices', 're_domestic_linehaul_prices', + 're_domestic_service_area_prices', 're_domestic_other_prices')) LOOP EXECUTE 'TRUNCATE TABLE ' || quote_ident(r.tablename) || ' CASCADE'; END LOOP; END \$\$; diff --git a/src/components/Customer/Home/Helper/Helper.stories.jsx b/src/components/Customer/Home/Helper/Helper.stories.jsx index 3e23865065c..383509723f0 100644 --- a/src/components/Customer/Home/Helper/Helper.stories.jsx +++ b/src/components/Customer/Home/Helper/Helper.stories.jsx @@ -54,9 +54,11 @@ export const NeedsShipment = () => ; export const NeedsSubmitMove = () => ; export const SubmittedMove = () => ; export const AmendedOrders = () => ; + +const defaultProps = { orderId: '12345' }; export const ApprovedMove = () => ( - + ); export const PPMCloseoutSubmitted = () => ; diff --git a/src/components/Office/OrdersDetailForm/OrdersDetailForm.jsx b/src/components/Office/OrdersDetailForm/OrdersDetailForm.jsx index b24ff3ae670..046c4ae9169 100644 --- a/src/components/Office/OrdersDetailForm/OrdersDetailForm.jsx +++ b/src/components/Office/OrdersDetailForm/OrdersDetailForm.jsx @@ -8,6 +8,7 @@ import { CheckboxField, DropdownInput, DatePickerInput, DutyLocationInput } from import TextField from 'components/form/fields/TextField/TextField'; import MaskedTextField from 'components/form/fields/MaskedTextField/MaskedTextField'; import { DropdownArrayOf } from 'types/form'; +import { SPECIAL_ORDERS_TYPES } from 'constants/orders'; const OrdersDetailForm = ({ deptIndicatorOptions, @@ -82,12 +83,20 @@ const OrdersDetailForm = ({ { setFormOrdersType(e.target.value); setFieldValue('ordersType', e.target.value); }} - isDisabled={formIsDisabled || formOrdersType === 'SAFETY'} + isDisabled={ + formIsDisabled || + formOrdersType === SPECIAL_ORDERS_TYPES.SAFETY || + formOrdersType === SPECIAL_ORDERS_TYPES.BLUEBARK + } /> {showOrdersTypeDetail && ( { showNTSTac: false, showNTSSac: false, showOrdersAcknowledgement: false, - ordersType: 'SAFETY', + ordersType: 'Safety', + }); + + // correct labels are visible + expect(await screen.findByLabelText('Orders type')).toBeDisabled(); + }); + it('has orders type dropdown disabled if bluebark move', async () => { + renderOrdersDetailForm({ + showDepartmentIndicator: false, + showOrdersNumber: false, + showOrdersTypeDetail: false, + showHHGTac: false, + showHHGSac: false, + showNTSTac: false, + showNTSSac: false, + showOrdersAcknowledgement: false, + ordersType: 'BLUEBARK', }); // correct labels are visible diff --git a/src/components/Office/ServiceItemDetails/ServiceItemDetails.jsx b/src/components/Office/ServiceItemDetails/ServiceItemDetails.jsx index c6be9ec77af..689a790ca64 100644 --- a/src/components/Office/ServiceItemDetails/ServiceItemDetails.jsx +++ b/src/components/Office/ServiceItemDetails/ServiceItemDetails.jsx @@ -487,7 +487,12 @@ const ServiceItemDetails = ({ id, code, details, serviceRequestDocs, shipment, s case 'DOP': case 'DDP': case 'DPK': - case 'DUPK': { + case 'DUPK': + case 'ISLH': + case 'IHPK': + case 'IHUPK': + case 'POEFSC': + case 'PODFSC': { detailSection = (
diff --git a/src/components/Office/TXOTabNav/TXOTabNav.jsx b/src/components/Office/TXOTabNav/TXOTabNav.jsx index ee7705bd391..d6e509528cd 100644 --- a/src/components/Office/TXOTabNav/TXOTabNav.jsx +++ b/src/components/Office/TXOTabNav/TXOTabNav.jsx @@ -53,7 +53,7 @@ const TXOTabNav = ({ moveTaskOrderTagCount += unapprovedServiceItemCount; } if (excessWeightRiskCount > 0) { - moveTaskOrderTagCount += 1; + moveTaskOrderTagCount += excessWeightRiskCount; } if (unapprovedSITExtensionCount > 0) { moveTaskOrderTagCount += unapprovedSITExtensionCount; diff --git a/src/pages/MyMove/Home/HomeHelpers.jsx b/src/pages/MyMove/Home/HomeHelpers.jsx index 7a73196a168..206b16c8381 100644 --- a/src/pages/MyMove/Home/HomeHelpers.jsx +++ b/src/pages/MyMove/Home/HomeHelpers.jsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Link } from 'react-router-dom'; +import { generatePath, Link } from 'react-router-dom'; import { Link as ExternalLink } from '@trussworks/react-uswds'; import styles from './Home.module.scss'; @@ -96,35 +96,41 @@ export const HelperSubmittedMove = () => ( ); -export const HelperApprovedMove = () => ( - -
-

Talk to your counselor or to your movers to make any changes to your move.

-
-
-

- For PPM shipments -

-

- When you are done moving your things, select Upload PPM Documents to document your PPM, - calculate your final incentive, and create a payment request packet. You will upload weight tickets, receipts, - and other documentation that a counselor will review. -

-
-
-

- If you receive new orders while your move is underway -

-
    -
  • Talk to your counselor
  • -
  • Talk to your movers
  • -
  • - Upload a copy of your new orders -
  • -
-
-
-); +export const HelperApprovedMove = ({ orderId }) => { + const path = generatePath(customerRoutes.ORDERS_AMEND_PATH, { + orderId, + }); + + return ( + +
+

Talk to your counselor or to your movers to make any changes to your move.

+
+
+

+ For PPM shipments +

+

+ When you are done moving your things, select Upload PPM Documents to document your PPM, + calculate your final incentive, and create a payment request packet. You will upload weight tickets, receipts, + and other documentation that a counselor will review. +

+
+
+

+ If you receive new orders while your move is underway +

+
    +
  • Talk to your counselor
  • +
  • Talk to your movers
  • +
  • + Upload a copy of your new orders +
  • +
+
+
+ ); +}; export const HelperAmendedOrders = () => ( diff --git a/src/pages/MyMove/Home/MoveHome.jsx b/src/pages/MyMove/Home/MoveHome.jsx index 9af82b0bbcf..69afb201a28 100644 --- a/src/pages/MyMove/Home/MoveHome.jsx +++ b/src/pages/MyMove/Home/MoveHome.jsx @@ -417,7 +417,7 @@ const MoveHome = ({ serviceMemberMoves, isProfileComplete, serviceMember, signed if (!hasSubmittedMove()) return ; if (hasSubmittedPPMCloseout()) return ; if (hasUnapprovedAmendedOrders()) return ; - if (isMoveApproved()) return ; + if (isMoveApproved()) return ; return ; }; diff --git a/src/pages/MyMove/Home/index.jsx b/src/pages/MyMove/Home/index.jsx index 830c1b17cae..33f7d5bfb34 100644 --- a/src/pages/MyMove/Home/index.jsx +++ b/src/pages/MyMove/Home/index.jsx @@ -241,12 +241,14 @@ export class Home extends Component { }; renderHelper = () => { + const { orders } = this.props; if (!this.hasOrders) return ; if (!this.hasAnyShipments) return ; if (!this.hasSubmittedMove) return ; if (this.hasSubmittedPPMCloseout) return ; if (this.hasUnapprovedAmendedOrders) return ; - if (this.isMoveApproved) return ; + if (this.isMoveApproved) return ; + return ; }; diff --git a/src/pages/MyMove/Home/index.stories.jsx b/src/pages/MyMove/Home/index.stories.jsx index e70e0e04a6b..6e67f7d84c7 100644 --- a/src/pages/MyMove/Home/index.stories.jsx +++ b/src/pages/MyMove/Home/index.stories.jsx @@ -153,6 +153,15 @@ const propsForApprovedPPMShipment = { status: MOVE_STATUSES.APPROVED, submitted_at: '2020-12-24', }, + orders: { + id: '12345', + origin_duty_location: { + name: 'NAS Norfolk', + }, + new_duty_location: { + name: 'NAS Jacksonville', + }, + }, }; const propsForCloseoutCompletePPMShipment = { diff --git a/src/pages/Office/CustomerOnboarding/CreateCustomerForm.jsx b/src/pages/Office/CustomerOnboarding/CreateCustomerForm.jsx index 835f31ab9e1..6b4bd9830cb 100644 --- a/src/pages/Office/CustomerOnboarding/CreateCustomerForm.jsx +++ b/src/pages/Office/CustomerOnboarding/CreateCustomerForm.jsx @@ -63,7 +63,7 @@ export const CreateCustomerForm = ({ userPrivileges, setFlashMessage, setCanAddO const initialValues = { affiliation: '', edipi: '', - emplid: '', + emplid: null, first_name: '', middle_name: '', last_name: '', @@ -112,7 +112,7 @@ export const CreateCustomerForm = ({ userPrivileges, setFlashMessage, setCanAddO const body = { affiliation: values.affiliation, edipi: values.edipi, - emplid: values.emplid || '', + emplid: values.emplid, firstName: values.first_name, middleName: values.middle_name, lastName: values.last_name, @@ -237,7 +237,7 @@ export const CreateCustomerForm = ({ userPrivileges, setFlashMessage, setCanAddO ...values, affiliation: '', edipi: '', - emplid: '', + emplid: null, is_safety_move: 'false', }); } @@ -258,7 +258,7 @@ export const CreateCustomerForm = ({ userPrivileges, setFlashMessage, setCanAddO ...values, affiliation: e.target.value, edipi: '', - emplid: '', + emplid: null, }); } else if (e.target.value !== departmentIndicators.COAST_GUARD && isSafetyMove) { setShowEmplid(false); @@ -266,7 +266,7 @@ export const CreateCustomerForm = ({ userPrivileges, setFlashMessage, setCanAddO ...values, affiliation: e.target.value, edipi: uniqueDodid, - emplid: '', + emplid: null, }); } else { setShowEmplid(false); @@ -274,7 +274,7 @@ export const CreateCustomerForm = ({ userPrivileges, setFlashMessage, setCanAddO ...values, affiliation: e.target.value, edipi: '', - emplid: '', + emplid: null, }); } }; diff --git a/src/pages/Office/CustomerOnboarding/CreateCustomerForm.test.jsx b/src/pages/Office/CustomerOnboarding/CreateCustomerForm.test.jsx index 83f896707bf..345fa0d491d 100644 --- a/src/pages/Office/CustomerOnboarding/CreateCustomerForm.test.jsx +++ b/src/pages/Office/CustomerOnboarding/CreateCustomerForm.test.jsx @@ -119,7 +119,7 @@ const fakePayload = { }, create_okta_account: 'true', cac_user: 'false', - is_safety_move: false, + is_safety_move: 'false', is_bluebark: 'false', }; @@ -421,7 +421,11 @@ describe('CreateCustomerForm', () => { await userEvent.click(saveBtn); await waitFor(() => { - expect(createCustomerWithOktaOption).toHaveBeenCalled(); + expect(createCustomerWithOktaOption).toHaveBeenCalledWith( + expect.objectContaining({ + body: expect.objectContaining({ emplid: null }), + }), + ); expect(testProps.setCanAddOrders).toHaveBeenCalledWith(true); expect(mockNavigate).toHaveBeenCalledWith(ordersPath, { state: { @@ -496,6 +500,15 @@ describe('CreateCustomerForm', () => { await waitFor(() => { expect(saveBtn).toBeEnabled(); // EMPLID is set now, all validations true }); + await userEvent.click(saveBtn); + + await waitFor(() => { + expect(createCustomerWithOktaOption).toHaveBeenCalledWith( + expect.objectContaining({ + body: expect.objectContaining({ emplid: '1234567' }), + }), + ); + }); }, 20000); it('allows safety privileged users to pass safety move status to orders screen', async () => { @@ -665,8 +678,6 @@ describe('CreateCustomerForm', () => { const saveBtn = await screen.findByRole('button', { name: 'Save' }); expect(saveBtn).toBeInTheDocument(); - // check the safety move box - await userEvent.type(getByTestId('is-safety-move-no'), bluebarkPayload.is_safety_move); await userEvent.type(getByTestId('is-bluebark-yes'), bluebarkPayload.is_bluebark); await userEvent.selectOptions(getByLabelText('Branch of service'), ['ARMY']); @@ -723,4 +734,4 @@ describe('CreateCustomerForm', () => { }); }); }, 50000); -}); +}, 60000); diff --git a/src/pages/Office/MoveQueue/MoveQueue.jsx b/src/pages/Office/MoveQueue/MoveQueue.jsx index 9bf07843137..c4ba38e6677 100644 --- a/src/pages/Office/MoveQueue/MoveQueue.jsx +++ b/src/pages/Office/MoveQueue/MoveQueue.jsx @@ -364,7 +364,7 @@ const MoveQueue = ({ isQueueManagementFFEnabled }) => { handleClick={handleClick} useQueries={useDestinationRequestsQueueQueries} showCSVExport - csvExportFileNamePrefix="Task-Order-Queue" + csvExportFileNamePrefix="Destination-Requests-Queue" csvExportQueueFetcher={getDestinationRequestsQueue} csvExportQueueFetcherKey="queueMoves" sessionStorageKey={queueType} diff --git a/src/pages/Office/MoveTaskOrder/MoveTaskOrder.jsx b/src/pages/Office/MoveTaskOrder/MoveTaskOrder.jsx index ab40eef89bd..a1fe5abec1c 100644 --- a/src/pages/Office/MoveTaskOrder/MoveTaskOrder.jsx +++ b/src/pages/Office/MoveTaskOrder/MoveTaskOrder.jsx @@ -128,6 +128,7 @@ export const MoveTaskOrder = (props) => { const [estimatedNTSWeightTotal, setEstimatedNTSWeightTotal] = useState(null); const [estimatedNTSReleaseWeightTotal, setEstimatedNTSReleaseWeightTotal] = useState(null); const [estimatedPPMWeightTotal, setEstimatedPPMWeightTotal] = useState(null); + const [estimatedUBWeightTotal, setEstimatedUBWeightTotal] = useState(null); const [, setSubmittedChangeTime] = useState(Date.now()); const [breakdownVisible, setBreakdownVisible] = useState(false); @@ -861,6 +862,7 @@ export const MoveTaskOrder = (props) => { setEstimatedHHGWeightTotal(calculateEstimatedWeight(nonPPMShipments, SHIPMENT_OPTIONS.HHG)); setEstimatedNTSWeightTotal(calculateEstimatedWeight(nonPPMShipments, SHIPMENT_OPTIONS.NTS)); setEstimatedNTSReleaseWeightTotal(calculateEstimatedWeight(nonPPMShipments, SHIPMENT_OPTIONS.NTSR)); + setEstimatedUBWeightTotal(calculateEstimatedWeight(nonPPMShipments, SHIPMENT_OPTIONS.UNACCOMPANIED_BAGGAGE)); setEstimatedPPMWeightTotal(calculateEstimatedWeight(onlyPPMShipments)); let excessBillableWeightCount = 0; const riskOfExcessAcknowledged = !!move?.excess_weight_acknowledged_at; @@ -976,6 +978,10 @@ export const MoveTaskOrder = (props) => { ? formatWeight(Math.round(estimatedNTSReleaseWeightTotal * 1.1)) : '—'}
+
110% Estimated UB
+
+ {Number.isFinite(estimatedUBWeightTotal) ? formatWeight(Math.round(estimatedUBWeightTotal * 1.1)) : '—'} +
); diff --git a/src/pages/Office/MoveTaskOrder/MoveTaskOrder.test.jsx b/src/pages/Office/MoveTaskOrder/MoveTaskOrder.test.jsx index 41accec8f72..81a65bd6098 100644 --- a/src/pages/Office/MoveTaskOrder/MoveTaskOrder.test.jsx +++ b/src/pages/Office/MoveTaskOrder/MoveTaskOrder.test.jsx @@ -29,6 +29,9 @@ import { useMoveTaskOrderQueries, useMovePaymentRequestsQueries, useGHCGetMoveHi import { MockProviders } from 'testUtils'; import { permissionTypes } from 'constants/permissions'; import SERVICE_ITEM_STATUS from 'constants/serviceItems'; +import { SITStatusOrigin } from 'components/Office/ShipmentSITDisplay/ShipmentSITDisplayTestParams'; +import { SHIPMENT_OPTIONS } from 'shared/constants'; +import { formatWeight } from 'utils/formatters'; jest.mock('hooks/queries', () => ({ useMoveTaskOrderQueries: jest.fn(), @@ -865,4 +868,63 @@ describe('MoveTaskOrder', () => { expect(screen.queryByText('Flag move for financial review')).not.toBeInTheDocument(); }); }); + + describe('estimated weight breakdown', () => { + it('should show UB estimated weight', () => { + const testShipments = [ + { + id: '1', + moveTaskOrderID: '2', + shipmentType: SHIPMENT_OPTIONS.UNACCOMPANIED_BAGGAGE, + scheduledPickupDate: '2020-03-16', + requestedPickupDate: '2020-03-15', + pickupAddress: { + streetAddress1: '932 Baltic Avenue', + city: 'Chicago', + state: 'IL', + postalCode: '60601', + }, + destinationAddress: { + streetAddress1: '10 Park Place', + city: 'Atlantic City', + state: 'NJ', + postalCode: '08401', + }, + status: 'APPROVED', + eTag: '1234', + primeEstimatedWeight: 1850, + primeActualWeight: 1841, + sitExtensions: [], + sitStatus: SITStatusOrigin, + }, + ]; + useMoveTaskOrderQueries.mockReturnValue({ + ...riskOfExcessWeightQueryExternalUBShipment, + mtoShipments: testShipments, + }); + + render( + + + , + ); + + const breakdownToggle = screen.queryByText('Show Breakdown'); + expect(breakdownToggle).toBeInTheDocument(); + + breakdownToggle.click(); + expect(breakdownToggle).toHaveTextContent('Hide Breakdown'); + expect(screen.queryByText('110% Estimated UB')).toBeInTheDocument(); + + const ubEstimatedWeightValue = screen.getByTestId('breakdownUBEstimatedWeight'); + expect(ubEstimatedWeightValue).toBeInTheDocument(); + expect(ubEstimatedWeightValue).toHaveTextContent(`${formatWeight(testShipments[0].primeEstimatedWeight * 1.1)}`); + }); + }); }); diff --git a/src/pages/PrimeUI/Shipment/PrimeUIShipmentUpdate.test.jsx b/src/pages/PrimeUI/Shipment/PrimeUIShipmentUpdate.test.jsx index d6dc8f74b67..936cebbb572 100644 --- a/src/pages/PrimeUI/Shipment/PrimeUIShipmentUpdate.test.jsx +++ b/src/pages/PrimeUI/Shipment/PrimeUIShipmentUpdate.test.jsx @@ -903,7 +903,7 @@ describe('successful submission of form', () => { await waitFor(() => { expect(mockNavigate).toHaveBeenCalledWith(moveDetailsURL); }); - }); + }, 50000); it('successful submission of form when updating a shipments actual weight but not estimated weight', async () => { usePrimeSimulatorGetMove.mockReturnValue(readyReturnValueWithOneHHG); diff --git a/swagger-def/definitions/Address.yaml b/swagger-def/definitions/Address.yaml index baa869f59b3..0c018795ee2 100644 --- a/swagger-def/definitions/Address.yaml +++ b/swagger-def/definitions/Address.yaml @@ -161,6 +161,10 @@ properties: type: string format: uuid example: c56a4180-65aa-42ec-a945-5fd21dec0538 + destinationGbloc: + type: string + pattern: '^[A-Z]{4}$' + x-nullable: true required: - streetAddress1 - city diff --git a/swagger/ghc.yaml b/swagger/ghc.yaml index f1d89bde632..d8247650b54 100644 --- a/swagger/ghc.yaml +++ b/swagger/ghc.yaml @@ -8539,6 +8539,10 @@ definitions: type: string format: uuid example: c56a4180-65aa-42ec-a945-5fd21dec0538 + destinationGbloc: + type: string + pattern: ^[A-Z]{4}$ + x-nullable: true required: - streetAddress1 - city diff --git a/swagger/internal.yaml b/swagger/internal.yaml index 91bf98ecf28..99da9030213 100644 --- a/swagger/internal.yaml +++ b/swagger/internal.yaml @@ -2758,6 +2758,10 @@ definitions: type: string format: uuid example: c56a4180-65aa-42ec-a945-5fd21dec0538 + destinationGbloc: + type: string + pattern: ^[A-Z]{4}$ + x-nullable: true required: - streetAddress1 - city diff --git a/swagger/pptas.yaml b/swagger/pptas.yaml index e2aa9b3c525..6b4223b52f7 100644 --- a/swagger/pptas.yaml +++ b/swagger/pptas.yaml @@ -245,6 +245,10 @@ definitions: type: string format: uuid example: c56a4180-65aa-42ec-a945-5fd21dec0538 + destinationGbloc: + type: string + pattern: ^[A-Z]{4}$ + x-nullable: true required: - streetAddress1 - city diff --git a/swagger/prime.yaml b/swagger/prime.yaml index 1bd53595301..551a4661fe7 100644 --- a/swagger/prime.yaml +++ b/swagger/prime.yaml @@ -2983,6 +2983,10 @@ definitions: type: string format: uuid example: c56a4180-65aa-42ec-a945-5fd21dec0538 + destinationGbloc: + type: string + pattern: ^[A-Z]{4}$ + x-nullable: true required: - streetAddress1 - city diff --git a/swagger/prime_v2.yaml b/swagger/prime_v2.yaml index 8e58e9c4258..f8f79ca6ce4 100644 --- a/swagger/prime_v2.yaml +++ b/swagger/prime_v2.yaml @@ -1566,6 +1566,10 @@ definitions: type: string format: uuid example: c56a4180-65aa-42ec-a945-5fd21dec0538 + destinationGbloc: + type: string + pattern: ^[A-Z]{4}$ + x-nullable: true required: - streetAddress1 - city diff --git a/swagger/prime_v3.yaml b/swagger/prime_v3.yaml index d6a2e4aaeba..a87ccba5cb8 100644 --- a/swagger/prime_v3.yaml +++ b/swagger/prime_v3.yaml @@ -1654,6 +1654,10 @@ definitions: type: string format: uuid example: c56a4180-65aa-42ec-a945-5fd21dec0538 + destinationGbloc: + type: string + pattern: ^[A-Z]{4}$ + x-nullable: true required: - streetAddress1 - city